@getsupervisor/agents-studio-sdk 1.40.0 → 1.41.0-patch.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -245,7 +245,7 @@ type components = {
245
245
  criticalRules?: string[];
246
246
  topicsAllowed?: string[];
247
247
  topicsForbidden?: string[];
248
- contentHash?: string | null;
248
+ contentHash: string | null;
249
249
  contentVariables: string[];
250
250
  variablesCache: string[];
251
251
  createdAt: string;
@@ -306,7 +306,7 @@ type components = {
306
306
  metadata?: {
307
307
  [key: string]: unknown;
308
308
  } | null;
309
- contentHash?: string | null;
309
+ contentHash: string | null;
310
310
  variables: string[];
311
311
  createdAt: string;
312
312
  updatedAt: string;
@@ -452,6 +452,7 @@ type components = {
452
452
  message?: string;
453
453
  };
454
454
  ToolConnectionRequest: {
455
+ connectionKey?: string;
455
456
  agentId: string;
456
457
  metadata?: {
457
458
  [key: string]: unknown;
@@ -459,7 +460,7 @@ type components = {
459
460
  auth?: components['schemas']['ToolConnectionAuth'];
460
461
  };
461
462
  ToolConnectionResponse: {
462
- status: 'connected' | 'pending' | 'error';
463
+ status: 'connected' | 'pending' | 'error' | 'revoked';
463
464
  toolAgentConnectionId?: string | null;
464
465
  toolId: string;
465
466
  workspaceId: string;
@@ -472,7 +473,7 @@ type components = {
472
473
  };
473
474
  };
474
475
  ToolConnectionAuth: {
475
- type: 'none' | 'oauth2' | 'api_key';
476
+ type: 'none' | 'oauth2' | 'api_key' | 'custom';
476
477
  data?: {
477
478
  [key: string]: unknown;
478
479
  };
@@ -495,6 +496,7 @@ type components = {
495
496
  toolId: string;
496
497
  toolAgentConnectionId?: string | null;
497
498
  providerRef?: string | null;
499
+ toolExecutionId: string;
498
500
  message?: string | null;
499
501
  };
500
502
  CatalogItemLinks: {
@@ -609,6 +611,45 @@ type components = {
609
611
  UpdateEventSubscriptionRequest: {
610
612
  isActive?: boolean;
611
613
  };
614
+ Campaign: {
615
+ campaignId: string;
616
+ workspaceId: string;
617
+ agentId: string;
618
+ agentVersionId: string;
619
+ name: string;
620
+ objective?: string | null;
621
+ status: components['schemas']['CampaignStatus'];
622
+ inputFileKey: string;
623
+ totalRecords: number;
624
+ processedRecords: number;
625
+ successfulRecords: number;
626
+ failedRecords: number;
627
+ createdAt: string;
628
+ updatedAt: string;
629
+ startedAt?: string | null;
630
+ completedAt?: string | null;
631
+ };
632
+ CampaignListResponse: {
633
+ data: components['schemas']['Campaign'][];
634
+ meta: components['schemas']['PaginationMeta'];
635
+ };
636
+ CampaignExecution: {
637
+ campaignExecutionId: string;
638
+ campaignId: string;
639
+ rowNumber: number;
640
+ status: 'PENDING' | 'SUCCESS' | 'ERROR';
641
+ agentExecutionId?: string | null;
642
+ inputData: {
643
+ [key: string]: unknown;
644
+ };
645
+ errorMessage?: string | null;
646
+ createdAt: string;
647
+ };
648
+ CampaignExecutionListResponse: {
649
+ data: components['schemas']['CampaignExecution'][];
650
+ meta: components['schemas']['PaginationMeta'];
651
+ };
652
+ CampaignStatus: 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'PARTIALLY_COMPLETED';
612
653
  ForkAgentFromTemplateRequest: {
613
654
  templateId: string;
614
655
  templateVersionId?: string;
@@ -653,6 +694,14 @@ type components = {
653
694
  CreateApiKeyResponse: components['schemas']['ApiKeySummary'] & {
654
695
  key: string;
655
696
  };
697
+ WorkspaceSummary: {
698
+ id: string;
699
+ name: string;
700
+ };
701
+ WorkspaceListResponse: {
702
+ data: components['schemas']['WorkspaceSummary'][];
703
+ meta: components['schemas']['PaginationMeta'];
704
+ };
656
705
  ToolConfigSchemaActionPrompts: {
657
706
  assistant?: string;
658
707
  user?: string;
@@ -676,6 +725,21 @@ type components = {
676
725
  [key: string]: components['schemas']['ToolConfigSchemaAction'];
677
726
  };
678
727
  };
728
+ CreateToolConnectionRequest: {
729
+ toolId: string;
730
+ agentId: string;
731
+ connectionKey?: string;
732
+ metadata?: {
733
+ [key: string]: unknown;
734
+ };
735
+ auth?: components['schemas']['ToolConnectionAuth'];
736
+ };
737
+ ExecuteToolConnectionRequest: {
738
+ action: string;
739
+ args?: {
740
+ [key: string]: unknown;
741
+ };
742
+ };
679
743
  CatalogItemLanguageMetadata: {
680
744
  code: string;
681
745
  locale?: string | null;
@@ -712,6 +776,7 @@ type components = {
712
776
  TagId: string;
713
777
  StageId: string;
714
778
  TriggerId: string;
779
+ CampaignId: string;
715
780
  WorkspaceId: string;
716
781
  ToolId: string;
717
782
  ResourceId: string;
@@ -730,7 +795,9 @@ type components = {
730
795
  OrParam?: components['schemas']['QueryOrGroups'];
731
796
  ScheduleId: string;
732
797
  ApiKeyId: string;
798
+ XCacheRefresh?: boolean;
733
799
  IdempotencyKey: string;
800
+ XApiKey?: string;
734
801
  };
735
802
  requestBodies: never;
736
803
  headers: never;
@@ -799,6 +866,8 @@ type WorkspacePhonesResponse = components['schemas']['WorkspacePhonesResponse'];
799
866
  type WorkspacePhoneChannel = 'voice';
800
867
  type WorkspaceEnableRequest = components['schemas']['WorkspaceEnableRequest'];
801
868
  type WorkspaceEnableResponse = components['schemas']['WorkspaceEnableResponse'];
869
+ type WorkspaceSummary = components['schemas']['WorkspaceSummary'];
870
+ type WorkspaceListResponse = components['schemas']['WorkspaceListResponse'];
802
871
  type VoiceSummary = components['schemas']['VoiceSummary'];
803
872
  type VoiceListResponse = components['schemas']['VoiceListResponse'];
804
873
  type CatalogItemLinks = components['schemas']['CatalogItemLinks'];
@@ -983,9 +1052,16 @@ type ToolResourceUploadRequest = components['schemas']['ToolResourceUploadReques
983
1052
  type ToolResourceUploadResponse = components['schemas']['ToolResourceUploadResponse'];
984
1053
  type ToolResourceReloadResponse = components['schemas']['ToolResourceReloadResponse'];
985
1054
  type ToolConnectionAuth = components['schemas']['ToolConnectionAuth'];
1055
+ type CreateToolConnectionRequest = components['schemas']['CreateToolConnectionRequest'];
986
1056
  type ToolConnectionRequest = components['schemas']['ToolConnectionRequest'];
987
1057
  type ToolConnectionResponse = components['schemas']['ToolConnectionResponse'];
1058
+ type ExecuteToolConnectionRequest = components['schemas']['ExecuteToolConnectionRequest'];
988
1059
  type ErrorResponse = components['schemas']['ErrorResponse'];
1060
+ type CampaignStatus = components['schemas']['CampaignStatus'];
1061
+ type Campaign = components['schemas']['Campaign'];
1062
+ type CampaignListResponse = components['schemas']['CampaignListResponse'];
1063
+ type CampaignExecution = components['schemas']['CampaignExecution'];
1064
+ type CampaignExecutionListResponse = components['schemas']['CampaignExecutionListResponse'];
989
1065
  type WebhookSummary = components['schemas']['WebhookSummary'];
990
1066
  type WebhookDetail = components['schemas']['WebhookDetail'];
991
1067
  type WebhookListResponse = components['schemas']['WebhookListResponse'];
@@ -1014,6 +1090,9 @@ declare class NetworkError extends Error {
1014
1090
  url?: string;
1015
1091
  constructor(cause?: unknown, url?: string);
1016
1092
  }
1093
+ declare class WorkspaceNotSelectedError extends Error {
1094
+ constructor();
1095
+ }
1017
1096
  type RetryPolicy = {
1018
1097
  maxRetries?: number;
1019
1098
  baseDelayMs?: number;
@@ -1039,17 +1118,6 @@ declare function createAgentPhonesApi(cfg: ClientConfig & {
1039
1118
  disconnect(agentId: string, phoneId: string): Promise<void>;
1040
1119
  };
1041
1120
 
1042
- type ListAgentScheduleExceptionsOptions = ListQueryOptions;
1043
- declare function createAgentScheduleExceptionsApi(cfg: ClientConfig & {
1044
- retry?: RetryPolicy;
1045
- }): {
1046
- list(agentId: string, options?: ListAgentScheduleExceptionsOptions): Promise<PaginatedResult<AgentScheduleExceptionListResponse, ListAgentScheduleExceptionsOptions>>;
1047
- get(agentId: string, exceptionId: string): Promise<AgentScheduleException>;
1048
- create(agentId: string, payload: CreateAgentScheduleExceptionRequest): Promise<AgentScheduleException>;
1049
- update(agentId: string, exceptionId: string, payload: UpdateAgentScheduleExceptionRequest): Promise<AgentScheduleException>;
1050
- delete(agentId: string, exceptionId: string): Promise<void>;
1051
- };
1052
-
1053
1121
  type ListAgentSchedulesOptions = ListQueryOptions;
1054
1122
  type AgentScheduleApi = {
1055
1123
  list(agentId: string, options?: ListAgentSchedulesOptions): Promise<PaginatedResult<AgentScheduleListResponse, ListAgentSchedulesOptions>>;
@@ -1061,6 +1129,17 @@ declare function createAgentScheduleApi(cfg: ClientConfig & {
1061
1129
  retry?: RetryPolicy;
1062
1130
  }): AgentScheduleApi;
1063
1131
 
1132
+ type ListAgentScheduleExceptionsOptions = ListQueryOptions;
1133
+ declare function createAgentScheduleExceptionsApi(cfg: ClientConfig & {
1134
+ retry?: RetryPolicy;
1135
+ }): {
1136
+ list(agentId: string, options?: ListAgentScheduleExceptionsOptions): Promise<PaginatedResult<AgentScheduleExceptionListResponse, ListAgentScheduleExceptionsOptions>>;
1137
+ get(agentId: string, exceptionId: string): Promise<AgentScheduleException>;
1138
+ create(agentId: string, payload: CreateAgentScheduleExceptionRequest): Promise<AgentScheduleException>;
1139
+ update(agentId: string, exceptionId: string, payload: UpdateAgentScheduleExceptionRequest): Promise<AgentScheduleException>;
1140
+ delete(agentId: string, exceptionId: string): Promise<void>;
1141
+ };
1142
+
1064
1143
  type ListAgentStageTriggersOptions = ListQueryOptions;
1065
1144
  type AgentStageTriggersApi$1 = {
1066
1145
  list(agentId: string, blueprintId: string, stageId: string, options?: ListAgentStageTriggersOptions): Promise<PaginatedResult<BlueprintStageTriggerListResponse, ListAgentStageTriggersOptions>>;
@@ -1560,6 +1639,22 @@ declare function createApiKeysApi(cfg: ClientConfig & {
1560
1639
  retry?: RetryPolicy;
1561
1640
  }): ApiKeysApi;
1562
1641
 
1642
+ type ListCampaignsOptions = ListQueryOptions;
1643
+ type ListCampaignExecutionsOptions = Pick<ListQueryOptions, 'page' | 'limit'>;
1644
+ type CreateCampaignPayload = {
1645
+ name: string;
1646
+ file: unknown;
1647
+ objective?: string | null;
1648
+ } | FormData;
1649
+ declare function createCampaignsApi(cfg: ClientConfig & {
1650
+ retry?: RetryPolicy;
1651
+ }): {
1652
+ list(options?: ListCampaignsOptions): Promise<PaginatedResult<CampaignListResponse, ListCampaignsOptions>>;
1653
+ get(campaignId: string): Promise<Campaign>;
1654
+ create(agentId: string, versionId: string, payload: CreateCampaignPayload): Promise<Campaign>;
1655
+ listExecutions(campaignId: string, options?: ListCampaignExecutionsOptions): Promise<PaginatedResult<CampaignExecutionListResponse, ListCampaignExecutionsOptions>>;
1656
+ };
1657
+
1563
1658
  type ListCatalogTemplatesOptions = {
1564
1659
  visibility?: CatalogTemplateVisibility;
1565
1660
  tags?: string[];
@@ -1603,6 +1698,8 @@ declare function createToolsApi(cfg: ClientConfig & {
1603
1698
  reloadResource(toolId: string, resourceId: string): Promise<ToolResourceReloadResponse>;
1604
1699
  execute(toolId: string, payload: ExecuteToolRequest, options?: IdempotentRequestOptions): Promise<ExecuteToolResponse>;
1605
1700
  connect(toolId: string, payload: ToolConnectionRequest, options?: IdempotentRequestOptions): Promise<ToolConnectionResponse>;
1701
+ createConnection(payload: CreateToolConnectionRequest, options?: IdempotentRequestOptions): Promise<ToolConnectionResponse>;
1702
+ executeConnection(toolAgentConnectionId: string, payload: ExecuteToolConnectionRequest, options?: IdempotentRequestOptions): Promise<ExecuteToolResponse>;
1606
1703
  };
1607
1704
 
1608
1705
  type ListVoicesOptions = ListQueryOptions & {
@@ -1638,9 +1735,13 @@ declare function createWebhooksApi(cfg: ClientConfig & {
1638
1735
  type ListWorkspacePhonesOptions = ListQueryOptions & {
1639
1736
  channel?: WorkspacePhoneChannel;
1640
1737
  };
1738
+ type ListWorkspacesOptions = ListQueryOptions & {
1739
+ refreshCache?: boolean;
1740
+ };
1641
1741
  declare function createWorkspacesApi(cfg: ClientConfig & {
1642
1742
  retry?: RetryPolicy;
1643
1743
  }): {
1744
+ list(options?: ListWorkspacesOptions): Promise<PaginatedResult<WorkspaceListResponse, ListWorkspacesOptions>>;
1644
1745
  listPhones(workspaceId: string, opts?: ListWorkspacePhonesOptions): Promise<PaginatedResult<WorkspacePhonesResponse, ListWorkspacePhonesOptions>>;
1645
1746
  enable(workspaceId: string, payload: WorkspaceEnableRequest): Promise<WorkspaceEnableResponse>;
1646
1747
  };
@@ -1735,6 +1836,7 @@ declare function createClient(initialCfg: ClientConfig & {
1735
1836
  update(agentId: string, payload: UpdateAgentRequest): Promise<AgentEntity>;
1736
1837
  };
1737
1838
  workspaces: {
1839
+ list(options?: ListWorkspacesOptions): Promise<PaginatedResult<WorkspaceListResponse, ListWorkspacesOptions>>;
1738
1840
  listPhones(workspaceId: string, opts?: ListWorkspacePhonesOptions): Promise<PaginatedResult<WorkspacePhonesResponse, ListWorkspacePhonesOptions>>;
1739
1841
  enable(workspaceId: string, payload: WorkspaceEnableRequest): Promise<WorkspaceEnableResponse>;
1740
1842
  };
@@ -1759,6 +1861,12 @@ declare function createClient(initialCfg: ClientConfig & {
1759
1861
  connect(toolId: string, payload: ToolConnectionRequest, options?: {
1760
1862
  idempotencyKey?: string;
1761
1863
  }): Promise<ToolConnectionResponse>;
1864
+ createConnection(payload: CreateToolConnectionRequest, options?: {
1865
+ idempotencyKey?: string;
1866
+ }): Promise<ToolConnectionResponse>;
1867
+ executeConnection(toolAgentConnectionId: string, payload: ExecuteToolConnectionRequest, options?: {
1868
+ idempotencyKey?: string;
1869
+ }): Promise<ExecuteToolResponse>;
1762
1870
  };
1763
1871
  catalogs: {
1764
1872
  templates: {
@@ -1770,6 +1878,12 @@ declare function createClient(initialCfg: ClientConfig & {
1770
1878
  create(payload: CatalogItemCreateRequest): Promise<CatalogItemDetail>;
1771
1879
  remove(itemId: string): Promise<void>;
1772
1880
  };
1881
+ campaigns: {
1882
+ list(options?: ListCampaignsOptions): Promise<PaginatedResult<CampaignListResponse, ListCampaignsOptions>>;
1883
+ get(campaignId: string): Promise<Campaign>;
1884
+ create(agentId: string, versionId: string, payload: CreateCampaignPayload): Promise<Campaign>;
1885
+ listExecutions(campaignId: string, options?: ListCampaignExecutionsOptions): Promise<PaginatedResult<CampaignExecutionListResponse, ListCampaignExecutionsOptions>>;
1886
+ };
1773
1887
  voices: {
1774
1888
  list(options?: ListVoicesOptions): Promise<PaginatedResult<VoiceListResponse, ListVoicesOptions>>;
1775
1889
  };
@@ -1842,6 +1956,7 @@ declare function createClient(initialCfg: ClientConfig & {
1842
1956
  update(agentId: string, payload: UpdateAgentRequest): Promise<AgentEntity>;
1843
1957
  };
1844
1958
  workspaces: {
1959
+ list(options?: ListWorkspacesOptions): Promise<PaginatedResult<WorkspaceListResponse, ListWorkspacesOptions>>;
1845
1960
  listPhones(workspaceId: string, opts?: ListWorkspacePhonesOptions): Promise<PaginatedResult<WorkspacePhonesResponse, ListWorkspacePhonesOptions>>;
1846
1961
  enable(workspaceId: string, payload: WorkspaceEnableRequest): Promise<WorkspaceEnableResponse>;
1847
1962
  };
@@ -1866,6 +1981,12 @@ declare function createClient(initialCfg: ClientConfig & {
1866
1981
  connect(toolId: string, payload: ToolConnectionRequest, options?: {
1867
1982
  idempotencyKey?: string;
1868
1983
  }): Promise<ToolConnectionResponse>;
1984
+ createConnection(payload: CreateToolConnectionRequest, options?: {
1985
+ idempotencyKey?: string;
1986
+ }): Promise<ToolConnectionResponse>;
1987
+ executeConnection(toolAgentConnectionId: string, payload: ExecuteToolConnectionRequest, options?: {
1988
+ idempotencyKey?: string;
1989
+ }): Promise<ExecuteToolResponse>;
1869
1990
  };
1870
1991
  catalogs: {
1871
1992
  templates: {
@@ -1877,6 +1998,12 @@ declare function createClient(initialCfg: ClientConfig & {
1877
1998
  create(payload: CatalogItemCreateRequest): Promise<CatalogItemDetail>;
1878
1999
  remove(itemId: string): Promise<void>;
1879
2000
  };
2001
+ campaigns: {
2002
+ list(options?: ListCampaignsOptions): Promise<PaginatedResult<CampaignListResponse, ListCampaignsOptions>>;
2003
+ get(campaignId: string): Promise<Campaign>;
2004
+ create(agentId: string, versionId: string, payload: CreateCampaignPayload): Promise<Campaign>;
2005
+ listExecutions(campaignId: string, options?: ListCampaignExecutionsOptions): Promise<PaginatedResult<CampaignExecutionListResponse, ListCampaignExecutionsOptions>>;
2006
+ };
1880
2007
  voices: {
1881
2008
  list(options?: ListVoicesOptions): Promise<PaginatedResult<VoiceListResponse, ListVoicesOptions>>;
1882
2009
  };
@@ -1918,4 +2045,4 @@ declare function createHttp(cfg: ClientConfig & {
1918
2045
  resolveAccessToken: () => string;
1919
2046
  };
1920
2047
 
1921
- export { type AgentBlueprint, type AgentBlueprintListItem, type AgentBlueprintListResponse, type AgentBlueprintsApi$1 as AgentBlueprintsApi, type AgentDetail, type AgentEntity, type AgentEntityFactoryOptions, type AgentListResponse, type AgentSchedule, type AgentScheduleApi, type AgentScheduleException, type AgentScheduleExceptionListResponse, type AgentScheduleListResponse, type AgentStageTriggersApi$1 as AgentStageTriggersApi, type AgentStagesApi$1 as AgentStagesApi, type AgentSummary, type AgentTagRequest, type AgentTagsResponse, type AgentVersionDetail, type AgentVersionListResponse, type AgentVersionSummary, type AgentsApi, type AgentsApiWithEntities, type ApiKeyListResponse, type ApiKeySummary, type ApiKeysApi, type BlueprintStage, type BlueprintStageListResponse, type BlueprintStageReorderRequest, type BlueprintStageTrigger, type BlueprintStageTriggerListResponse, type CatalogItemCreateRequest, type CatalogItemDetail, type CatalogItemLinks, type CatalogItemListResponse, type CatalogItemSummary, type CatalogTemplateDetail, type CatalogTemplateListResponse, type CatalogTemplateSummary, type CatalogTemplateVisibility, type ClientConfig, type ConnectPhoneRequest, type CreateAgentBlueprintRequest, type CreateAgentRequest, type CreateAgentScheduleExceptionRequest, type CreateAgentVersionRequest, type CreateApiKeyRequest, type CreateApiKeyResponse, type CreateBlueprintStageRequest, type CreateBlueprintStageTriggerRequest, type CreateEventSubscriptionRequest, type CreateInstructionRequest, type CreateWebhookRequest, type ErrorResponse, type EventSubscriptionDetail, type EventSubscriptionListResponse, type EventSubscriptionSummary, type ExecuteToolRequest, type ExecuteToolResponse, type ForkAgentFromTemplateRequest, HttpError, type Instruction, type InstructionCreatedResponse, type InstructionListResponse, type ListAgentBlueprintsOptions, type ListAgentScheduleExceptionsOptions, type ListAgentSchedulesOptions, type ListAgentStageTriggersOptions, type ListAgentStagesOptions, type ListAgentVersionInstructionsOptions, type ListAgentVersionsOptions, type ListAgentsOptions, type ListCatalogItemsOptions, type ListCatalogTemplatesOptions, type ListQueryOptions, type ListToolResourcesOptions, type ListToolsOptions, type ListVoicesOptions, type ListWebhooksOptions, type ListWorkspacePhonesOptions, NetworkError, type PaginatedResult, type PaginationMeta, type PhoneAssignmentResponse, type PublishAgentVersionRequest, type QueryBuilderInput, type QueryBuilderSerializable, type QueryFilterOperators, type QueryFilters, type QueryOrGroups, type QueryValue, type RetryPolicy, TimeoutError, type ToolConnectionAuth, type ToolConnectionRequest, type ToolConnectionResponse, type ToolListResponse, type ToolResourceListResponse, type ToolResourceReloadResponse, type ToolResourceSummary, type ToolResourceUploadRequest, type ToolResourceUploadResponse, type ToolSummary, type UpdateAgentBlueprintRequest, type UpdateAgentRequest, type UpdateAgentScheduleExceptionRequest, type UpdateAgentScheduleRequest, type UpdateAgentVersionNotesRequest, type UpdateBlueprintStageRequest, type UpdateBlueprintStageTriggerRequest, type UpdateEventSubscriptionRequest, type UpdateInstructionRequest, type UpdateWebhookRequest, type VoiceListResponse, type VoiceSummary, type WebhookDetail, type WebhookListResponse, type WebhookSummary, type WorkspaceEnableRequest, type WorkspaceEnableResponse, type WorkspacePhone, type WorkspacePhoneChannel, type WorkspacePhonesResponse, bindAgentBlueprints, bindAgentPhones, bindAgentSchedule, bindAgentScheduleExceptions, bindAgentSchedules, bindAgentStageTriggers, bindAgentStages, bindAgentTags, bindAgentVersions, createAgentBlueprintsApi, createAgentEntity, createAgentPhonesApi, createAgentScheduleApi, createAgentScheduleExceptionsApi, createAgentStageTriggersApi, createAgentStagesApi, createAgentTagsApi, createAgentVersionsApi, createAgentsApi, createApiKeysApi, createCatalogTemplatesApi, createCatalogsApi, createClient, createHttp, createToolsApi, createVoicesApi, createWebhooksApi, createWorkspacesApi };
2048
+ export { type AgentBlueprint, type AgentBlueprintListItem, type AgentBlueprintListResponse, type AgentBlueprintsApi$1 as AgentBlueprintsApi, type AgentDetail, type AgentEntity, type AgentEntityFactoryOptions, type AgentListResponse, type AgentSchedule, type AgentScheduleApi, type AgentScheduleException, type AgentScheduleExceptionListResponse, type AgentScheduleListResponse, type AgentStageTriggersApi$1 as AgentStageTriggersApi, type AgentStagesApi$1 as AgentStagesApi, type AgentSummary, type AgentTagRequest, type AgentTagsResponse, type AgentVersionDetail, type AgentVersionListResponse, type AgentVersionSummary, type AgentsApi, type AgentsApiWithEntities, type ApiKeyListResponse, type ApiKeySummary, type ApiKeysApi, type BlueprintStage, type BlueprintStageListResponse, type BlueprintStageReorderRequest, type BlueprintStageTrigger, type BlueprintStageTriggerListResponse, type Campaign, type CampaignExecution, type CampaignExecutionListResponse, type CampaignListResponse, type CampaignStatus, type CatalogItemCreateRequest, type CatalogItemDetail, type CatalogItemLinks, type CatalogItemListResponse, type CatalogItemSummary, type CatalogTemplateDetail, type CatalogTemplateListResponse, type CatalogTemplateSummary, type CatalogTemplateVisibility, type ClientConfig, type ConnectPhoneRequest, type CreateAgentBlueprintRequest, type CreateAgentRequest, type CreateAgentScheduleExceptionRequest, type CreateAgentVersionRequest, type CreateApiKeyRequest, type CreateApiKeyResponse, type CreateBlueprintStageRequest, type CreateBlueprintStageTriggerRequest, type CreateCampaignPayload, type CreateEventSubscriptionRequest, type CreateInstructionRequest, type CreateToolConnectionRequest, type CreateWebhookRequest, type ErrorResponse, type EventSubscriptionDetail, type EventSubscriptionListResponse, type EventSubscriptionSummary, type ExecuteToolConnectionRequest, type ExecuteToolRequest, type ExecuteToolResponse, type ForkAgentFromTemplateRequest, HttpError, type Instruction, type InstructionCreatedResponse, type InstructionListResponse, type ListAgentBlueprintsOptions, type ListAgentScheduleExceptionsOptions, type ListAgentSchedulesOptions, type ListAgentStageTriggersOptions, type ListAgentStagesOptions, type ListAgentVersionInstructionsOptions, type ListAgentVersionsOptions, type ListAgentsOptions, type ListCampaignExecutionsOptions, type ListCampaignsOptions, type ListCatalogItemsOptions, type ListCatalogTemplatesOptions, type ListQueryOptions, type ListToolResourcesOptions, type ListToolsOptions, type ListVoicesOptions, type ListWebhooksOptions, type ListWorkspacePhonesOptions, type ListWorkspacesOptions, NetworkError, type PaginatedResult, type PaginationMeta, type PhoneAssignmentResponse, type PublishAgentVersionRequest, type QueryBuilderInput, type QueryBuilderSerializable, type QueryFilterOperators, type QueryFilters, type QueryOrGroups, type QueryValue, type RetryPolicy, TimeoutError, type ToolConnectionAuth, type ToolConnectionRequest, type ToolConnectionResponse, type ToolListResponse, type ToolResourceListResponse, type ToolResourceReloadResponse, type ToolResourceSummary, type ToolResourceUploadRequest, type ToolResourceUploadResponse, type ToolSummary, type UpdateAgentBlueprintRequest, type UpdateAgentRequest, type UpdateAgentScheduleExceptionRequest, type UpdateAgentScheduleRequest, type UpdateAgentVersionNotesRequest, type UpdateBlueprintStageRequest, type UpdateBlueprintStageTriggerRequest, type UpdateEventSubscriptionRequest, type UpdateInstructionRequest, type UpdateWebhookRequest, type VoiceListResponse, type VoiceSummary, type WebhookDetail, type WebhookListResponse, type WebhookSummary, type WorkspaceEnableRequest, type WorkspaceEnableResponse, type WorkspaceListResponse, WorkspaceNotSelectedError, type WorkspacePhone, type WorkspacePhoneChannel, type WorkspacePhonesResponse, type WorkspaceSummary, bindAgentBlueprints, bindAgentPhones, bindAgentSchedule, bindAgentScheduleExceptions, bindAgentSchedules, bindAgentStageTriggers, bindAgentStages, bindAgentTags, bindAgentVersions, createAgentBlueprintsApi, createAgentEntity, createAgentPhonesApi, createAgentScheduleApi, createAgentScheduleExceptionsApi, createAgentStageTriggersApi, createAgentStagesApi, createAgentTagsApi, createAgentVersionsApi, createAgentsApi, createApiKeysApi, createCampaignsApi, createCatalogTemplatesApi, createCatalogsApi, createClient, createHttp, createToolsApi, createVoicesApi, createWebhooksApi, createWorkspacesApi };