UNPKG

@signalwire/compatibility-api

Version:
464 lines (442 loc) 15.8 kB
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ import Page = require('../../../base/Page'); import Response = require('../../../http/response'); import V1 = require('../V1'); import { DefaultsList } from './assistant/defaults'; import { DefaultsListInstance } from './assistant/defaults'; import { DialogueList } from './assistant/dialogue'; import { DialogueListInstance } from './assistant/dialogue'; import { FieldTypeList } from './assistant/fieldType'; import { FieldTypeListInstance } from './assistant/fieldType'; import { ModelBuildList } from './assistant/modelBuild'; import { ModelBuildListInstance } from './assistant/modelBuild'; import { QueryList } from './assistant/query'; import { QueryListInstance } from './assistant/query'; import { SerializableClass } from '../../../interfaces'; import { StyleSheetList } from './assistant/styleSheet'; import { StyleSheetListInstance } from './assistant/styleSheet'; import { TaskList } from './assistant/task'; import { TaskListInstance } from './assistant/task'; import { WebhookList } from './assistant/webhook'; import { WebhookListInstance } from './assistant/webhook'; /** * Initialize the AssistantList * * PLEASE NOTE that this class contains preview products that are subject to * change. Use them with caution. If you currently do not have developer preview * access, please contact help@twilio.com. * * @param version - Version of the resource */ declare function AssistantList(version: V1): AssistantListInstance; /** * Options to pass to update * * @property callbackEvents - Reserved * @property callbackUrl - Reserved * @property defaults - A JSON object that defines the Assistant's {@link https://www.twilio.com/docs/autopilot/api/assistant/defaults|default tasks} for various scenarios * @property developmentStage - A string describing the state of the assistant. * @property friendlyName - A string to describe the resource * @property logQueries - Whether queries should be logged and kept after training * @property styleSheet - A JSON string that defines the Assistant's style sheet * @property uniqueName - An application-defined string that uniquely identifies the resource */ interface AssistantInstanceUpdateOptions { callbackEvents?: string; callbackUrl?: string; defaults?: object; developmentStage?: string; friendlyName?: string; logQueries?: boolean; styleSheet?: object; uniqueName?: string; } interface AssistantListInstance { /** * @param sid - sid of instance */ (sid: string): AssistantContext; /** * create a AssistantInstance * * @param callback - Callback to handle processed record */ create(callback?: (error: Error | null, item: AssistantInstance) => any): Promise<AssistantInstance>; /** * create a AssistantInstance * * @param opts - Options for request * @param callback - Callback to handle processed record */ create(opts?: AssistantListInstanceCreateOptions, callback?: (error: Error | null, item: AssistantInstance) => any): Promise<AssistantInstance>; /** * Streams AssistantInstance records from the API. * * This operation lazily loads records as efficiently as possible until the limit * is reached. * * The results are passed into the callback function, so this operation is memory * efficient. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param callback - Function to process each record */ each(callback?: (item: AssistantInstance, done: (err?: Error) => void) => void): void; /** * Streams AssistantInstance records from the API. * * This operation lazily loads records as efficiently as possible until the limit * is reached. * * The results are passed into the callback function, so this operation is memory * efficient. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param opts - Options for request * @param callback - Function to process each record */ each(opts?: AssistantListInstanceEachOptions, callback?: (item: AssistantInstance, done: (err?: Error) => void) => void): void; /** * Constructs a assistant * * @param sid - The unique string that identifies the resource */ get(sid: string): AssistantContext; /** * Retrieve a single target page of AssistantInstance records from the API. * * The request is executed immediately. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param callback - Callback to handle list of records */ getPage(callback?: (error: Error | null, items: AssistantPage) => any): Promise<AssistantPage>; /** * Retrieve a single target page of AssistantInstance records from the API. * * The request is executed immediately. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param targetUrl - API-generated URL for the requested results page * @param callback - Callback to handle list of records */ getPage(targetUrl?: string, callback?: (error: Error | null, items: AssistantPage) => any): Promise<AssistantPage>; /** * Lists AssistantInstance records from the API as a list. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param callback - Callback to handle list of records */ list(callback?: (error: Error | null, items: AssistantInstance[]) => any): Promise<AssistantInstance[]>; /** * Lists AssistantInstance records from the API as a list. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param opts - Options for request * @param callback - Callback to handle list of records */ list(opts?: AssistantListInstanceOptions, callback?: (error: Error | null, items: AssistantInstance[]) => any): Promise<AssistantInstance[]>; /** * Retrieve a single page of AssistantInstance records from the API. * * The request is executed immediately. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param callback - Callback to handle list of records */ page(callback?: (error: Error | null, items: AssistantPage) => any): Promise<AssistantPage>; /** * Retrieve a single page of AssistantInstance records from the API. * * The request is executed immediately. * * If a function is passed as the first argument, it will be used as the callback * function. * * @param opts - Options for request * @param callback - Callback to handle list of records */ page(opts?: AssistantListInstancePageOptions, callback?: (error: Error | null, items: AssistantPage) => any): Promise<AssistantPage>; /** * Provide a user-friendly representation */ toJSON(): any; } /** * Options to pass to create * * @property callbackEvents - Reserved * @property callbackUrl - Reserved * @property defaults - A JSON object that defines the Assistant's default tasks for various scenarios * @property friendlyName - A string to describe the new resource * @property logQueries - Whether queries should be logged and kept after training * @property styleSheet - A JSON string that defines the Assistant's style sheet * @property uniqueName - An application-defined string that uniquely identifies the new resource */ interface AssistantListInstanceCreateOptions { callbackEvents?: string; callbackUrl?: string; defaults?: object; friendlyName?: string; logQueries?: boolean; styleSheet?: object; uniqueName?: string; } /** * Options to pass to each * * @property callback - * Function to process each record. If this and a positional * callback are passed, this one will be used * @property done - Function to be called upon completion of streaming * @property limit - * Upper limit for the number of records to return. * each() guarantees never to return more than limit. * Default is no limit * @property pageSize - * Number of records to fetch per request, * when not set will use the default value of 50 records. * If no pageSize is defined but a limit is defined, * each() will attempt to read the limit with the most efficient * page size, i.e. min(limit, 1000) */ interface AssistantListInstanceEachOptions { callback?: (item: AssistantInstance, done: (err?: Error) => void) => void; done?: Function; limit?: number; pageSize?: number; } /** * Options to pass to list * * @property limit - * Upper limit for the number of records to return. * list() guarantees never to return more than limit. * Default is no limit * @property pageSize - * Number of records to fetch per request, * when not set will use the default value of 50 records. * If no page_size is defined but a limit is defined, * list() will attempt to read the limit with the most * efficient page size, i.e. min(limit, 1000) */ interface AssistantListInstanceOptions { limit?: number; pageSize?: number; } /** * Options to pass to page * * @property pageNumber - Page Number, this value is simply for client state * @property pageSize - Number of records to return, defaults to 50 * @property pageToken - PageToken provided by the API */ interface AssistantListInstancePageOptions { pageNumber?: number; pageSize?: number; pageToken?: string; } interface AssistantPayload extends AssistantResource, Page.TwilioResponsePayload { } interface AssistantResource { account_sid: string; callback_events: string; callback_url: string; date_created: Date; date_updated: Date; development_stage: string; friendly_name: string; latest_model_build_sid: string; links: string; log_queries: boolean; needs_model_build: boolean; sid: string; unique_name: string; url: string; } interface AssistantSolution { } declare class AssistantContext { /** * Initialize the AssistantContext * * PLEASE NOTE that this class contains preview products that are subject to * change. Use them with caution. If you currently do not have developer preview * access, please contact help@twilio.com. * * @param version - Version of the resource * @param sid - The unique string that identifies the resource */ constructor(version: V1, sid: string); defaults: DefaultsListInstance; dialogues: DialogueListInstance; /** * fetch a AssistantInstance * * @param callback - Callback to handle processed record */ fetch(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; fieldTypes: FieldTypeListInstance; modelBuilds: ModelBuildListInstance; queries: QueryListInstance; /** * remove a AssistantInstance * * @param callback - Callback to handle processed record */ remove(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<boolean>; styleSheet: StyleSheetListInstance; tasks: TaskListInstance; /** * Provide a user-friendly representation */ toJSON(): any; /** * update a AssistantInstance * * @param callback - Callback to handle processed record */ update(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; /** * update a AssistantInstance * * @param opts - Options for request * @param callback - Callback to handle processed record */ update(opts?: AssistantInstanceUpdateOptions, callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; webhooks: WebhookListInstance; } declare class AssistantInstance extends SerializableClass { /** * Initialize the AssistantContext * * PLEASE NOTE that this class contains preview products that are subject to * change. Use them with caution. If you currently do not have developer preview * access, please contact help@twilio.com. * * @param version - Version of the resource * @param payload - The instance payload * @param sid - The unique string that identifies the resource */ constructor(version: V1, payload: AssistantPayload, sid: string); private _proxy: AssistantContext; accountSid: string; callbackEvents: string; callbackUrl: string; dateCreated: Date; dateUpdated: Date; /** * Access the defaults */ defaults(): DefaultsListInstance; developmentStage: string; /** * Access the dialogues */ dialogues(): DialogueListInstance; /** * fetch a AssistantInstance * * @param callback - Callback to handle processed record */ fetch(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; /** * Access the fieldTypes */ fieldTypes(): FieldTypeListInstance; friendlyName: string; latestModelBuildSid: string; links: string; logQueries: boolean; /** * Access the modelBuilds */ modelBuilds(): ModelBuildListInstance; needsModelBuild: boolean; /** * Access the queries */ queries(): QueryListInstance; /** * remove a AssistantInstance * * @param callback - Callback to handle processed record */ remove(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<boolean>; sid: string; /** * Access the styleSheet */ styleSheet(): StyleSheetListInstance; /** * Access the tasks */ tasks(): TaskListInstance; /** * Provide a user-friendly representation */ toJSON(): any; uniqueName: string; /** * update a AssistantInstance * * @param callback - Callback to handle processed record */ update(callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; /** * update a AssistantInstance * * @param opts - Options for request * @param callback - Callback to handle processed record */ update(opts?: AssistantInstanceUpdateOptions, callback?: (error: Error | null, items: AssistantInstance) => any): Promise<AssistantInstance>; url: string; /** * Access the webhooks */ webhooks(): WebhookListInstance; } declare class AssistantPage extends Page<V1, AssistantPayload, AssistantResource, AssistantInstance> { /** * Initialize the AssistantPage * * PLEASE NOTE that this class contains preview products that are subject to * change. Use them with caution. If you currently do not have developer preview * access, please contact help@twilio.com. * * @param version - Version of the resource * @param response - Response from the API * @param solution - Path solution */ constructor(version: V1, response: Response<string>, solution: AssistantSolution); /** * Build an instance of AssistantInstance * * @param payload - Payload response from the API */ getInstance(payload: AssistantPayload): AssistantInstance; /** * Provide a user-friendly representation */ toJSON(): any; } export { AssistantContext, AssistantInstance, AssistantInstanceUpdateOptions, AssistantList, AssistantListInstance, AssistantListInstanceCreateOptions, AssistantListInstanceEachOptions, AssistantListInstanceOptions, AssistantListInstancePageOptions, AssistantPage, AssistantPayload, AssistantResource, AssistantSolution }