@vendasta/ai-assistants 0.29.0 → 0.30.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.
@@ -1,5 +1,5 @@
1
- import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, DeleteAssistantRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, SetAssistantConnectionsRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
2
- import { BuildDefaultAssistantRequestInterface, DeleteAssistantRequestInterface, ExecuteFunctionRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, SetAssistantConnectionsRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
1
+ import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CreateAssistantRequest, CreateAssistantResponse, DeleteAssistantRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
2
+ import { BuildDefaultAssistantRequestInterface, CreateAssistantRequestInterface, DeleteAssistantRequestInterface, ExecuteFunctionRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
3
3
  import { HttpResponse } from '@angular/common/http';
4
4
  import { Observable } from 'rxjs';
5
5
  import * as i0 from "@angular/core";
@@ -9,6 +9,8 @@ export declare class AssistantApiService {
9
9
  private _host;
10
10
  private apiOptions;
11
11
  upsertAssistant(r: UpsertAssistantRequest | UpsertAssistantRequestInterface): Observable<UpsertAssistantResponse>;
12
+ createAssistant(r: CreateAssistantRequest | CreateAssistantRequestInterface): Observable<CreateAssistantResponse>;
13
+ updateAssistant(r: UpdateAssistantRequest | UpdateAssistantRequestInterface): Observable<HttpResponse<null>>;
12
14
  getAssistant(r: GetAssistantRequest | GetAssistantRequestInterface): Observable<GetAssistantResponse>;
13
15
  buildDefaultAssistant(r: BuildDefaultAssistantRequest | BuildDefaultAssistantRequestInterface): Observable<BuildDefaultAssistantResponse>;
14
16
  deleteAssistant(r: DeleteAssistantRequest | DeleteAssistantRequestInterface): Observable<HttpResponse<null>>;
@@ -24,4 +24,5 @@ export interface ChatUserInfoInterface {
24
24
  state?: string;
25
25
  country?: string;
26
26
  zipCode?: string;
27
+ timezone?: string;
27
28
  }
@@ -1,6 +1,7 @@
1
1
  import { AssistantInterface, AssistantKeyInterface } from './assistant.interface';
2
2
  import { ChatMessageInterface, ChatUserInfoInterface, ChatAnswerFunctionExecutionJobInterface } from './answer.interface';
3
3
  import { ConnectionKeyInterface, ConnectionInterface } from './connection.interface';
4
+ import { FieldMaskInterface } from './field-mask.interface';
4
5
  import { FunctionKeyInterface, FunctionInterface } from './function.interface';
5
6
  import { GoalInterface, GoalKeyInterface } from './goal.interface';
6
7
  import { KeyValuePairInterface } from './common.interface';
@@ -20,6 +21,13 @@ export interface SetAssistantConnectionsRequestConnectionStateInterface {
20
21
  connectionKey?: ConnectionKeyInterface;
21
22
  isAssociated?: boolean;
22
23
  }
24
+ export interface CreateAssistantRequestInterface {
25
+ assistant?: AssistantInterface;
26
+ options?: CreateAssistantRequestOptionsInterface;
27
+ }
28
+ export interface CreateAssistantResponseInterface {
29
+ assistant?: AssistantInterface;
30
+ }
23
31
  export interface CreateGoalRequestInterface {
24
32
  goal?: GoalInterface;
25
33
  }
@@ -90,13 +98,6 @@ export interface ExecuteFunctionResponseInterface {
90
98
  output?: string;
91
99
  metadata?: KeyValuePairInterface[];
92
100
  }
93
- export interface ListAssistantRequestFiltersInterface {
94
- namespace?: NamespaceInterface;
95
- type?: e.AssistantType;
96
- }
97
- export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
98
- type?: e.AssistantType;
99
- }
100
101
  export interface ListFunctionRequestFiltersInterface {
101
102
  namespace?: NamespaceInterface;
102
103
  }
@@ -107,6 +108,13 @@ export interface ListConnectionsRequestFiltersInterface {
107
108
  export interface ListPromptModuleRequestFiltersInterface {
108
109
  namespace?: NamespaceInterface;
109
110
  }
111
+ export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
112
+ type?: e.AssistantType;
113
+ }
114
+ export interface ListAssistantRequestFiltersInterface {
115
+ namespace?: NamespaceInterface;
116
+ type?: e.AssistantType;
117
+ }
110
118
  export interface ListGoalsRequestFiltersInterface {
111
119
  namespace?: NamespaceInterface;
112
120
  type?: e.GoalType;
@@ -318,6 +326,12 @@ export interface ListPromptVersionsResponseInterface {
318
326
  promptVersions?: PromptVersionInterface[];
319
327
  metadata?: PagedResponseMetadataInterface;
320
328
  }
329
+ export interface CreateAssistantRequestOptionsInterface {
330
+ applyDefaults?: boolean;
331
+ }
332
+ export interface CreatePromptModuleVersionRequestOptionsInterface {
333
+ shouldDeploy?: boolean;
334
+ }
321
335
  export interface GenerateChatAnswerRequestOptionsInterface {
322
336
  includeAllCitations?: boolean;
323
337
  enableAsyncFunctions?: boolean;
@@ -326,13 +340,14 @@ export interface GenerateChatAnswerRequestOptionsInterface {
326
340
  export interface UpsertAssistantRequestOptionsInterface {
327
341
  applyDefaults?: boolean;
328
342
  }
329
- export interface CreatePromptModuleVersionRequestOptionsInterface {
330
- shouldDeploy?: boolean;
331
- }
332
343
  export interface SetAssistantConnectionsRequestInterface {
333
344
  associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
334
345
  assistantKey?: AssistantKeyInterface;
335
346
  }
347
+ export interface UpdateAssistantRequestInterface {
348
+ assistant?: AssistantInterface;
349
+ fieldMask?: FieldMaskInterface;
350
+ }
336
351
  export interface UpdateGoalRequestInterface {
337
352
  goal?: GoalInterface;
338
353
  }
@@ -0,0 +1,3 @@
1
+ export interface FieldMaskInterface {
2
+ paths?: string[];
3
+ }
@@ -8,4 +8,5 @@ export { ConnectionInterface, ConnectionKeyInterface, } from './connection.inter
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 { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAssistantRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, 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, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
11
+ export { FieldMaskInterface, } from './field-mask.interface';
12
+ export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListFunctionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListAssistantRequestFiltersInterface, ListGoalsRequestFiltersInterface, 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, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, CreateAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, GenerateChatAnswerRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
@@ -35,6 +35,7 @@ export declare class ChatUserInfo implements i.ChatUserInfoInterface {
35
35
  state: string;
36
36
  country: string;
37
37
  zipCode: string;
38
+ timezone: string;
38
39
  static fromProto(proto: any): ChatUserInfo;
39
40
  constructor(kwargs?: i.ChatUserInfoInterface);
40
41
  toApiJson(): object;
@@ -2,6 +2,7 @@ import * as i from '../interfaces';
2
2
  import { Assistant, AssistantKey } from './assistant';
3
3
  import { ChatMessage, ChatUserInfo, ChatAnswerFunctionExecutionJob } from './answer';
4
4
  import { ConnectionKey, Connection } from './connection';
5
+ import { FieldMask } from './field-mask';
5
6
  import { FunctionKey, Function } from './function';
6
7
  import { Goal, GoalKey } from './goal';
7
8
  import { KeyValuePair } from './common';
@@ -31,6 +32,19 @@ export declare class SetAssistantConnectionsRequestConnectionState implements i.
31
32
  constructor(kwargs?: i.SetAssistantConnectionsRequestConnectionStateInterface);
32
33
  toApiJson(): object;
33
34
  }
35
+ export declare class CreateAssistantRequest implements i.CreateAssistantRequestInterface {
36
+ assistant: Assistant;
37
+ options: CreateAssistantRequestOptions;
38
+ static fromProto(proto: any): CreateAssistantRequest;
39
+ constructor(kwargs?: i.CreateAssistantRequestInterface);
40
+ toApiJson(): object;
41
+ }
42
+ export declare class CreateAssistantResponse implements i.CreateAssistantResponseInterface {
43
+ assistant: Assistant;
44
+ static fromProto(proto: any): CreateAssistantResponse;
45
+ constructor(kwargs?: i.CreateAssistantResponseInterface);
46
+ toApiJson(): object;
47
+ }
34
48
  export declare class CreateGoalRequest implements i.CreateGoalRequestInterface {
35
49
  goal: Goal;
36
50
  static fromProto(proto: any): CreateGoalRequest;
@@ -157,10 +171,11 @@ export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFilter
157
171
  constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
158
172
  toApiJson(): object;
159
173
  }
160
- export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
161
- type: e.AssistantType;
162
- static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
163
- constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
174
+ export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
175
+ namespace: Namespace;
176
+ assistantType: e.AssistantType;
177
+ static fromProto(proto: any): ListConnectionsRequestFilters;
178
+ constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
164
179
  toApiJson(): object;
165
180
  }
166
181
  export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
@@ -169,6 +184,12 @@ export declare class ListFunctionRequestFilters implements i.ListFunctionRequest
169
184
  constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
170
185
  toApiJson(): object;
171
186
  }
187
+ export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
188
+ type: e.AssistantType;
189
+ static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
190
+ constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
191
+ toApiJson(): object;
192
+ }
172
193
  export declare class ListAssistantRequestFilters implements i.ListAssistantRequestFiltersInterface {
173
194
  namespace: Namespace;
174
195
  type: e.AssistantType;
@@ -182,13 +203,6 @@ export declare class ListPromptModuleRequestFilters implements i.ListPromptModul
182
203
  constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
183
204
  toApiJson(): object;
184
205
  }
185
- export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
186
- namespace: Namespace;
187
- assistantType: e.AssistantType;
188
- static fromProto(proto: any): ListConnectionsRequestFilters;
189
- constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
190
- toApiJson(): object;
191
- }
192
206
  export declare class GenerateChatAnswerRequest implements i.GenerateChatAnswerRequestInterface {
193
207
  connectionKey: ConnectionKey;
194
208
  chatHistory: ChatMessage[];
@@ -565,10 +579,10 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
565
579
  constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
566
580
  toApiJson(): object;
567
581
  }
568
- export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
582
+ export declare class CreateAssistantRequestOptions implements i.CreateAssistantRequestOptionsInterface {
569
583
  applyDefaults: boolean;
570
- static fromProto(proto: any): UpsertAssistantRequestOptions;
571
- constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
584
+ static fromProto(proto: any): CreateAssistantRequestOptions;
585
+ constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
572
586
  toApiJson(): object;
573
587
  }
574
588
  export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
@@ -577,6 +591,12 @@ export declare class CreatePromptModuleVersionRequestOptions implements i.Create
577
591
  constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
578
592
  toApiJson(): object;
579
593
  }
594
+ export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
595
+ applyDefaults: boolean;
596
+ static fromProto(proto: any): UpsertAssistantRequestOptions;
597
+ constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
598
+ toApiJson(): object;
599
+ }
580
600
  export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
581
601
  associationStates: SetAssistantConnectionsRequestConnectionState[];
582
602
  assistantKey: AssistantKey;
@@ -584,6 +604,13 @@ export declare class SetAssistantConnectionsRequest implements i.SetAssistantCon
584
604
  constructor(kwargs?: i.SetAssistantConnectionsRequestInterface);
585
605
  toApiJson(): object;
586
606
  }
607
+ export declare class UpdateAssistantRequest implements i.UpdateAssistantRequestInterface {
608
+ assistant: Assistant;
609
+ fieldMask: FieldMask;
610
+ static fromProto(proto: any): UpdateAssistantRequest;
611
+ constructor(kwargs?: i.UpdateAssistantRequestInterface);
612
+ toApiJson(): object;
613
+ }
587
614
  export declare class UpdateGoalRequest implements i.UpdateGoalRequestInterface {
588
615
  goal: Goal;
589
616
  static fromProto(proto: any): UpdateGoalRequest;
@@ -0,0 +1,8 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class FieldMask implements i.FieldMaskInterface {
4
+ paths: string[];
5
+ static fromProto(proto: any): FieldMask;
6
+ constructor(kwargs?: i.FieldMaskInterface);
7
+ toApiJson(): object;
8
+ }
@@ -8,4 +8,5 @@ export { Connection, ConnectionKey, } from './connection';
8
8
  export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, } from './answer';
9
9
  export { Access, } from './annotations';
10
10
  export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
11
- export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListConnectionsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListFunctionRequestFilters, ListGoalsRequestFilters, ListPromptModuleRequestFilters, 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, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, UpsertAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, SetAssistantConnectionsRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
11
+ export { FieldMask, } from './field-mask';
12
+ export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListPromptModuleRequestFilters, ListConnectionsRequestFilters, ListGoalsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAssistantRequestFilters, ListFunctionRequestFilters, 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, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, CreatePromptModuleVersionRequestOptions, GenerateChatAnswerRequestOptions, CreateAssistantRequestOptions, UpsertAssistantRequestOptions, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpdateGoalRequest, 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.29.0",
3
+ "version": "0.30.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"