@vendasta/ai-assistants 0.14.0 → 0.16.0

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.
@@ -8,7 +8,8 @@ export declare enum ChatChannel {
8
8
  CHAT_CHANNEL_INVALID = 0,
9
9
  CHAT_CHANNEL_UNSPECIFIED = 1,
10
10
  CHAT_CHANNEL_WEB = 2,
11
- CHAT_CHANNEL_SMS = 3
11
+ CHAT_CHANNEL_SMS = 3,
12
+ CHAT_CHANNEL_WHATSAPP = 4
12
13
  }
13
14
  export declare enum ChatMessageRole {
14
15
  CHAT_MESSAGE_ROLE_INVALID = 0,
@@ -7,5 +7,6 @@ export declare enum AssistantType {
7
7
  }
8
8
  export declare enum VendorModel {
9
9
  VENDOR_MODEL_UNSPECIFIED = 0,
10
- VENDOR_MODEL_OPEN_AI_REALTIME = 1
10
+ VENDOR_MODEL_OPEN_AI_REALTIME = 1,
11
+ VENDOR_MODEL_DEEPGRAM = 2
11
12
  }
@@ -63,27 +63,27 @@ export interface DeployPromptRequestInterface {
63
63
  id?: string;
64
64
  version?: string;
65
65
  }
66
- export interface ListGoalsRequestFiltersInterface {
66
+ export interface ListPromptModuleRequestFiltersInterface {
67
67
  namespace?: NamespaceInterface;
68
- type?: e.GoalType;
69
- supportedChannels?: e.GoalChannel[];
68
+ }
69
+ export interface ListConnectionsRequestFiltersInterface {
70
+ namespace?: NamespaceInterface;
71
+ assistantType?: e.AssistantType;
70
72
  }
71
73
  export interface ListFunctionRequestFiltersInterface {
72
74
  namespace?: NamespaceInterface;
73
75
  }
74
- export interface ListAssistantRequestFiltersInterface {
76
+ export interface ListGoalsRequestFiltersInterface {
75
77
  namespace?: NamespaceInterface;
76
- type?: e.AssistantType;
78
+ type?: e.GoalType;
79
+ supportedChannels?: e.GoalChannel[];
77
80
  }
78
81
  export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
79
82
  type?: e.AssistantType;
80
83
  }
81
- export interface ListConnectionsRequestFiltersInterface {
82
- namespace?: NamespaceInterface;
83
- assistantType?: e.AssistantType;
84
- }
85
- export interface ListPromptModuleRequestFiltersInterface {
84
+ export interface ListAssistantRequestFiltersInterface {
86
85
  namespace?: NamespaceInterface;
86
+ type?: e.AssistantType;
87
87
  }
88
88
  export interface GenerateChatAnswerRequestInterface {
89
89
  connectionKey?: ConnectionKeyInterface;
@@ -291,6 +291,9 @@ export interface GenerateChatAnswerRequestOptionsInterface {
291
291
  export interface CreatePromptModuleVersionRequestOptionsInterface {
292
292
  shouldDeploy?: boolean;
293
293
  }
294
+ export interface UpsertAssistantRequestOptionsInterface {
295
+ applyDefaults?: boolean;
296
+ }
294
297
  export interface SetAssistantConnectionsRequestInterface {
295
298
  associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
296
299
  assistantKey?: AssistantKeyInterface;
@@ -308,6 +311,7 @@ export interface UpdatePromptRequestInterface {
308
311
  }
309
312
  export interface UpsertAssistantRequestInterface {
310
313
  assistant?: AssistantInterface;
314
+ options?: UpsertAssistantRequestOptionsInterface;
311
315
  }
312
316
  export interface UpsertAssistantResponseInterface {
313
317
  assistant?: AssistantInterface;
@@ -1,4 +1,4 @@
1
- import { GoalKeyInterface } from './goal.interface';
1
+ import { GoalInterface } from './goal.interface';
2
2
  import { NamespaceInterface } from './namespace.interface';
3
3
  import * as e from '../enums';
4
4
  export interface AssistantInterface {
@@ -19,7 +19,10 @@ export interface ConfigInterface {
19
19
  voiceConfig?: ConfigVoiceConfigInterface;
20
20
  }
21
21
  export interface ConfigurableGoalInterface {
22
- goalKey?: GoalKeyInterface;
22
+ goal?: GoalInterface;
23
+ }
24
+ export interface DeepgramConfigInterface {
25
+ voice?: string;
23
26
  }
24
27
  export interface ConfigInboxConfigInterface {
25
28
  leadCaptureEnabled?: boolean;
@@ -27,6 +30,7 @@ export interface ConfigInboxConfigInterface {
27
30
  }
28
31
  export interface ModelConfigInterface {
29
32
  openaiRealtimeConfig?: OpenAIRealtimeConfigInterface;
33
+ deepgramConfig?: DeepgramConfigInterface;
30
34
  }
31
35
  export interface OpenAIRealtimeConfigInterface {
32
36
  voice?: string;
@@ -1,6 +1,6 @@
1
- import { FunctionKeyInterface } from './function.interface';
1
+ import { FunctionInterface } from './function.interface';
2
2
  import { NamespaceInterface } from './namespace.interface';
3
- import { PromptModuleKeyInterface } from './prompt.interface';
3
+ import { PromptModuleInterface } from './prompt.interface';
4
4
  import * as e from '../enums';
5
5
  export interface GoalInterface {
6
6
  id?: string;
@@ -8,8 +8,8 @@ export interface GoalInterface {
8
8
  name?: string;
9
9
  description?: string;
10
10
  type?: e.GoalType;
11
- promptModules?: PromptModuleKeyInterface[];
12
- functions?: FunctionKeyInterface[];
11
+ promptModules?: PromptModuleInterface[];
12
+ functions?: FunctionInterface[];
13
13
  updatedBy?: string;
14
14
  updated?: Date;
15
15
  supportedChannels?: e.GoalChannel[];
@@ -2,10 +2,10 @@ export { NamespaceAccountGroupNamespaceInterface, NamespaceAccountGroupsForGroup
2
2
  export { FunctionInterface, FunctionKeyInterface, FunctionParameterInterface, } from './function.interface';
3
3
  export { PromptInterface, PromptModuleInterface, PromptModuleKeyInterface, PromptModuleVersionInterface, PromptVersionInterface, } from './prompt.interface';
4
4
  export { GoalInterface, GoalKeyInterface, } from './goal.interface';
5
- export { AssistantInterface, AssistantKeyInterface, ConfigInterface, ConfigurableGoalInterface, ConfigInboxConfigInterface, ModelConfigInterface, OpenAIRealtimeConfigInterface, OpenAIRealtimeConfigTurnDetectionInterface, ConfigVoiceConfigInterface, } from './assistant.interface';
5
+ export { AssistantInterface, AssistantKeyInterface, ConfigInterface, ConfigurableGoalInterface, DeepgramConfigInterface, ConfigInboxConfigInterface, ModelConfigInterface, OpenAIRealtimeConfigInterface, OpenAIRealtimeConfigTurnDetectionInterface, ConfigVoiceConfigInterface, } from './assistant.interface';
6
6
  export { ConnectionInterface, ConnectionKeyInterface, } from './connection.interface';
7
7
  export { KeyValuePairInterface, } from './common.interface';
8
8
  export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJobResultInterface, ChatMessageInterface, ChatUserInfoInterface, } from './answer.interface';
9
9
  export { AccessInterface, } from './annotations.interface';
10
10
  export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
11
- export { SetAssistantConnectionsRequestConnectionStateInterface, CreatePromptModuleRequestInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ListGoalsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListAssistantRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
11
+ export { SetAssistantConnectionsRequestConnectionStateInterface, CreatePromptModuleRequestInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ListPromptModuleRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListAssistantRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
@@ -101,12 +101,17 @@ export declare class DeployPromptRequest implements i.DeployPromptRequestInterfa
101
101
  constructor(kwargs?: i.DeployPromptRequestInterface);
102
102
  toApiJson(): object;
103
103
  }
104
- export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
104
+ export declare class ListPromptModuleRequestFilters implements i.ListPromptModuleRequestFiltersInterface {
105
105
  namespace: Namespace;
106
- type: e.GoalType;
107
- supportedChannels: e.GoalChannel[];
108
- static fromProto(proto: any): ListGoalsRequestFilters;
109
- constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
106
+ static fromProto(proto: any): ListPromptModuleRequestFilters;
107
+ constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
108
+ toApiJson(): object;
109
+ }
110
+ export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
111
+ namespace: Namespace;
112
+ assistantType: e.AssistantType;
113
+ static fromProto(proto: any): ListConnectionsRequestFilters;
114
+ constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
110
115
  toApiJson(): object;
111
116
  }
112
117
  export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
@@ -115,11 +120,12 @@ export declare class ListFunctionRequestFilters implements i.ListFunctionRequest
115
120
  constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
116
121
  toApiJson(): object;
117
122
  }
118
- export declare class ListAssistantRequestFilters implements i.ListAssistantRequestFiltersInterface {
123
+ export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
119
124
  namespace: Namespace;
120
- type: e.AssistantType;
121
- static fromProto(proto: any): ListAssistantRequestFilters;
122
- constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
125
+ type: e.GoalType;
126
+ supportedChannels: e.GoalChannel[];
127
+ static fromProto(proto: any): ListGoalsRequestFilters;
128
+ constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
123
129
  toApiJson(): object;
124
130
  }
125
131
  export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
@@ -128,17 +134,11 @@ export declare class ListAllAssistantsAssociatedToConnectionRequestFilters imple
128
134
  constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
129
135
  toApiJson(): object;
130
136
  }
131
- export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
132
- namespace: Namespace;
133
- assistantType: e.AssistantType;
134
- static fromProto(proto: any): ListConnectionsRequestFilters;
135
- constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
136
- toApiJson(): object;
137
- }
138
- export declare class ListPromptModuleRequestFilters implements i.ListPromptModuleRequestFiltersInterface {
137
+ export declare class ListAssistantRequestFilters implements i.ListAssistantRequestFiltersInterface {
139
138
  namespace: Namespace;
140
- static fromProto(proto: any): ListPromptModuleRequestFilters;
141
- constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
139
+ type: e.AssistantType;
140
+ static fromProto(proto: any): ListAssistantRequestFilters;
141
+ constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
142
142
  toApiJson(): object;
143
143
  }
144
144
  export declare class GenerateChatAnswerRequest implements i.GenerateChatAnswerRequestInterface {
@@ -509,6 +509,12 @@ export declare class CreatePromptModuleVersionRequestOptions implements i.Create
509
509
  constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
510
510
  toApiJson(): object;
511
511
  }
512
+ export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
513
+ applyDefaults: boolean;
514
+ static fromProto(proto: any): UpsertAssistantRequestOptions;
515
+ constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
516
+ toApiJson(): object;
517
+ }
512
518
  export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
513
519
  associationStates: SetAssistantConnectionsRequestConnectionState[];
514
520
  assistantKey: AssistantKey;
@@ -535,6 +541,7 @@ export declare class UpdatePromptRequest implements i.UpdatePromptRequestInterfa
535
541
  }
536
542
  export declare class UpsertAssistantRequest implements i.UpsertAssistantRequestInterface {
537
543
  assistant: Assistant;
544
+ options: UpsertAssistantRequestOptions;
538
545
  static fromProto(proto: any): UpsertAssistantRequest;
539
546
  constructor(kwargs?: i.UpsertAssistantRequestInterface);
540
547
  toApiJson(): object;
@@ -1,5 +1,5 @@
1
1
  import * as i from '../interfaces';
2
- import { GoalKey } from './goal';
2
+ import { Goal } from './goal';
3
3
  import { Namespace } from './namespace';
4
4
  import * as e from '../enums';
5
5
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
@@ -30,11 +30,17 @@ export declare class Config implements i.ConfigInterface {
30
30
  toApiJson(): object;
31
31
  }
32
32
  export declare class ConfigurableGoal implements i.ConfigurableGoalInterface {
33
- goalKey: GoalKey;
33
+ goal: Goal;
34
34
  static fromProto(proto: any): ConfigurableGoal;
35
35
  constructor(kwargs?: i.ConfigurableGoalInterface);
36
36
  toApiJson(): object;
37
37
  }
38
+ export declare class DeepgramConfig implements i.DeepgramConfigInterface {
39
+ voice: string;
40
+ static fromProto(proto: any): DeepgramConfig;
41
+ constructor(kwargs?: i.DeepgramConfigInterface);
42
+ toApiJson(): object;
43
+ }
38
44
  export declare class ConfigInboxConfig implements i.ConfigInboxConfigInterface {
39
45
  leadCaptureEnabled: boolean;
40
46
  additionalInstructions: string;
@@ -44,6 +50,7 @@ export declare class ConfigInboxConfig implements i.ConfigInboxConfigInterface {
44
50
  }
45
51
  export declare class ModelConfig implements i.ModelConfigInterface {
46
52
  openaiRealtimeConfig: OpenAIRealtimeConfig;
53
+ deepgramConfig: DeepgramConfig;
47
54
  static fromProto(proto: any): ModelConfig;
48
55
  constructor(kwargs?: i.ModelConfigInterface);
49
56
  toApiJson(): object;
@@ -1,7 +1,7 @@
1
1
  import * as i from '../interfaces';
2
- import { FunctionKey } from './function';
2
+ import { Function } from './function';
3
3
  import { Namespace } from './namespace';
4
- import { PromptModuleKey } from './prompt';
4
+ import { PromptModule } from './prompt';
5
5
  import * as e from '../enums';
6
6
  export declare function enumStringToValue<E>(enumRef: any, value: string): E;
7
7
  export declare class Goal implements i.GoalInterface {
@@ -10,8 +10,8 @@ export declare class Goal implements i.GoalInterface {
10
10
  name: string;
11
11
  description: string;
12
12
  type: e.GoalType;
13
- promptModules: PromptModuleKey[];
14
- functions: FunctionKey[];
13
+ promptModules: PromptModule[];
14
+ functions: Function[];
15
15
  updatedBy: string;
16
16
  updated: Date;
17
17
  supportedChannels: e.GoalChannel[];
@@ -2,10 +2,10 @@ export { NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace
2
2
  export { Function, FunctionKey, FunctionParameter, } from './function';
3
3
  export { Prompt, PromptModule, PromptModuleKey, PromptModuleVersion, PromptVersion, } from './prompt';
4
4
  export { Goal, GoalKey, } from './goal';
5
- export { Assistant, AssistantKey, Config, ConfigurableGoal, ConfigInboxConfig, ModelConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, ConfigVoiceConfig, } from './assistant';
5
+ export { Assistant, AssistantKey, Config, ConfigurableGoal, DeepgramConfig, ConfigInboxConfig, ModelConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, ConfigVoiceConfig, } from './assistant';
6
6
  export { Connection, ConnectionKey, } from './connection';
7
7
  export { KeyValuePair, } from './common';
8
8
  export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, } from './answer';
9
9
  export { Access, } from './annotations';
10
10
  export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
11
- export { SetAssistantConnectionsRequestConnectionState, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ListGoalsRequestFilters, ListFunctionRequestFilters, ListAssistantRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, CreatePromptModuleVersionRequestOptions, SetAssistantConnectionsRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
11
+ export { SetAssistantConnectionsRequestConnectionState, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ListPromptModuleRequestFilters, ListConnectionsRequestFilters, ListFunctionRequestFilters, ListGoalsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAssistantRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, CreatePromptModuleVersionRequestOptions, UpsertAssistantRequestOptions, SetAssistantConnectionsRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/ai-assistants",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"