@vendasta/ai-assistants 0.16.0 → 0.18.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.
Files changed (29) hide show
  1. package/esm2020/lib/_internal/assistant.api.service.mjs +7 -2
  2. package/esm2020/lib/_internal/goal.api.service.mjs +7 -2
  3. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/function.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/goal.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/prompt.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/api.mjs +120 -22
  9. package/esm2020/lib/_internal/objects/function.mjs +33 -1
  10. package/esm2020/lib/_internal/objects/goal.mjs +4 -1
  11. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  12. package/esm2020/lib/_internal/objects/prompt.mjs +4 -1
  13. package/fesm2015/vendasta-ai-assistants.mjs +168 -22
  14. package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
  15. package/fesm2020/vendasta-ai-assistants.mjs +168 -22
  16. package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
  17. package/lib/_internal/assistant.api.service.d.ts +3 -2
  18. package/lib/_internal/goal.api.service.d.ts +3 -2
  19. package/lib/_internal/interfaces/api.interface.d.ts +23 -8
  20. package/lib/_internal/interfaces/function.interface.d.ts +6 -0
  21. package/lib/_internal/interfaces/goal.interface.d.ts +1 -0
  22. package/lib/_internal/interfaces/index.d.ts +2 -2
  23. package/lib/_internal/interfaces/prompt.interface.d.ts +1 -0
  24. package/lib/_internal/objects/api.d.ts +43 -16
  25. package/lib/_internal/objects/function.d.ts +9 -0
  26. package/lib/_internal/objects/goal.d.ts +1 -0
  27. package/lib/_internal/objects/index.d.ts +2 -2
  28. package/lib/_internal/objects/prompt.d.ts +1 -0
  29. package/package.json +1 -1
@@ -302,6 +302,9 @@ class Function {
302
302
  if (proto.updated) {
303
303
  m.updated = new Date(proto.updated);
304
304
  }
305
+ if (proto.headers) {
306
+ m.headers = proto.headers.map(FunctionHeader.fromProto);
307
+ }
305
308
  return m;
306
309
  }
307
310
  constructor(kwargs) {
@@ -336,6 +339,35 @@ class Function {
336
339
  if (typeof this.updated !== 'undefined' && this.updated !== null) {
337
340
  toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
338
341
  }
342
+ if (typeof this.headers !== 'undefined' && this.headers !== null) {
343
+ toReturn['headers'] = 'toApiJson' in this.headers ? this.headers.toApiJson() : this.headers;
344
+ }
345
+ if (typeof this.managed !== 'undefined') {
346
+ toReturn['managed'] = this.managed;
347
+ }
348
+ return toReturn;
349
+ }
350
+ }
351
+ class FunctionHeader {
352
+ static fromProto(proto) {
353
+ let m = new FunctionHeader();
354
+ m = Object.assign(m, proto);
355
+ return m;
356
+ }
357
+ constructor(kwargs) {
358
+ if (!kwargs) {
359
+ return;
360
+ }
361
+ Object.assign(this, kwargs);
362
+ }
363
+ toApiJson() {
364
+ const toReturn = {};
365
+ if (typeof this.key !== 'undefined') {
366
+ toReturn['key'] = this.key;
367
+ }
368
+ if (typeof this.value !== 'undefined') {
369
+ toReturn['value'] = this.value;
370
+ }
339
371
  return toReturn;
340
372
  }
341
373
  }
@@ -501,6 +533,9 @@ class PromptModule {
501
533
  if (typeof this.deployed !== 'undefined' && this.deployed !== null) {
502
534
  toReturn['deployed'] = 'toApiJson' in this.deployed ? this.deployed.toApiJson() : this.deployed;
503
535
  }
536
+ if (typeof this.managed !== 'undefined') {
537
+ toReturn['managed'] = this.managed;
538
+ }
504
539
  return toReturn;
505
540
  }
506
541
  }
@@ -675,6 +710,9 @@ class Goal {
675
710
  if (typeof this.supportedChannels !== 'undefined') {
676
711
  toReturn['supportedChannels'] = this.supportedChannels;
677
712
  }
713
+ if (typeof this.managed !== 'undefined') {
714
+ toReturn['managed'] = this.managed;
715
+ }
678
716
  return toReturn;
679
717
  }
680
718
  }
@@ -1351,6 +1389,61 @@ function enumStringToValue(enumRef, value) {
1351
1389
  }
1352
1390
  return enumRef[value];
1353
1391
  }
1392
+ class BuildDefaultAssistantRequest {
1393
+ static fromProto(proto) {
1394
+ let m = new BuildDefaultAssistantRequest();
1395
+ m = Object.assign(m, proto);
1396
+ if (proto.namespace) {
1397
+ m.namespace = Namespace.fromProto(proto.namespace);
1398
+ }
1399
+ if (proto.type) {
1400
+ m.type = enumStringToValue(AssistantType, proto.type);
1401
+ }
1402
+ return m;
1403
+ }
1404
+ constructor(kwargs) {
1405
+ if (!kwargs) {
1406
+ return;
1407
+ }
1408
+ Object.assign(this, kwargs);
1409
+ }
1410
+ toApiJson() {
1411
+ const toReturn = {};
1412
+ if (typeof this.id !== 'undefined') {
1413
+ toReturn['id'] = this.id;
1414
+ }
1415
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1416
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1417
+ }
1418
+ if (typeof this.type !== 'undefined') {
1419
+ toReturn['type'] = this.type;
1420
+ }
1421
+ return toReturn;
1422
+ }
1423
+ }
1424
+ class BuildDefaultAssistantResponse {
1425
+ static fromProto(proto) {
1426
+ let m = new BuildDefaultAssistantResponse();
1427
+ m = Object.assign(m, proto);
1428
+ if (proto.assistant) {
1429
+ m.assistant = Assistant.fromProto(proto.assistant);
1430
+ }
1431
+ return m;
1432
+ }
1433
+ constructor(kwargs) {
1434
+ if (!kwargs) {
1435
+ return;
1436
+ }
1437
+ Object.assign(this, kwargs);
1438
+ }
1439
+ toApiJson() {
1440
+ const toReturn = {};
1441
+ if (typeof this.assistant !== 'undefined' && this.assistant !== null) {
1442
+ toReturn['assistant'] = 'toApiJson' in this.assistant ? this.assistant.toApiJson() : this.assistant;
1443
+ }
1444
+ return toReturn;
1445
+ }
1446
+ }
1354
1447
  class SetAssistantConnectionsRequestConnectionState {
1355
1448
  static fromProto(proto) {
1356
1449
  let m = new SetAssistantConnectionsRequestConnectionState();
@@ -1409,6 +1502,9 @@ class CreatePromptModuleRequest {
1409
1502
  if (typeof this.content !== 'undefined') {
1410
1503
  toReturn['content'] = this.content;
1411
1504
  }
1505
+ if (typeof this.managed !== 'undefined') {
1506
+ toReturn['managed'] = this.managed;
1507
+ }
1412
1508
  return toReturn;
1413
1509
  }
1414
1510
  }
@@ -1730,13 +1826,16 @@ class ListConnectionsRequestFilters {
1730
1826
  return toReturn;
1731
1827
  }
1732
1828
  }
1733
- class ListFunctionRequestFilters {
1829
+ class ListAssistantRequestFilters {
1734
1830
  static fromProto(proto) {
1735
- let m = new ListFunctionRequestFilters();
1831
+ let m = new ListAssistantRequestFilters();
1736
1832
  m = Object.assign(m, proto);
1737
1833
  if (proto.namespace) {
1738
1834
  m.namespace = Namespace.fromProto(proto.namespace);
1739
1835
  }
1836
+ if (proto.type) {
1837
+ m.type = enumStringToValue(AssistantType, proto.type);
1838
+ }
1740
1839
  return m;
1741
1840
  }
1742
1841
  constructor(kwargs) {
@@ -1750,6 +1849,9 @@ class ListFunctionRequestFilters {
1750
1849
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1751
1850
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1752
1851
  }
1852
+ if (typeof this.type !== 'undefined') {
1853
+ toReturn['type'] = this.type;
1854
+ }
1753
1855
  return toReturn;
1754
1856
  }
1755
1857
  }
@@ -1811,16 +1913,13 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
1811
1913
  return toReturn;
1812
1914
  }
1813
1915
  }
1814
- class ListAssistantRequestFilters {
1916
+ class ListFunctionRequestFilters {
1815
1917
  static fromProto(proto) {
1816
- let m = new ListAssistantRequestFilters();
1918
+ let m = new ListFunctionRequestFilters();
1817
1919
  m = Object.assign(m, proto);
1818
1920
  if (proto.namespace) {
1819
1921
  m.namespace = Namespace.fromProto(proto.namespace);
1820
1922
  }
1821
- if (proto.type) {
1822
- m.type = enumStringToValue(AssistantType, proto.type);
1823
- }
1824
1923
  return m;
1825
1924
  }
1826
1925
  constructor(kwargs) {
@@ -1834,9 +1933,6 @@ class ListAssistantRequestFilters {
1834
1933
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1835
1934
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1836
1935
  }
1837
- if (typeof this.type !== 'undefined') {
1838
- toReturn['type'] = this.type;
1839
- }
1840
1936
  return toReturn;
1841
1937
  }
1842
1938
  }
@@ -2697,6 +2793,46 @@ class GetPromptVersionResponse {
2697
2793
  return toReturn;
2698
2794
  }
2699
2795
  }
2796
+ class GoalsDisabledForGroupRequest {
2797
+ static fromProto(proto) {
2798
+ let m = new GoalsDisabledForGroupRequest();
2799
+ m = Object.assign(m, proto);
2800
+ return m;
2801
+ }
2802
+ constructor(kwargs) {
2803
+ if (!kwargs) {
2804
+ return;
2805
+ }
2806
+ Object.assign(this, kwargs);
2807
+ }
2808
+ toApiJson() {
2809
+ const toReturn = {};
2810
+ if (typeof this.groupId !== 'undefined') {
2811
+ toReturn['groupId'] = this.groupId;
2812
+ }
2813
+ return toReturn;
2814
+ }
2815
+ }
2816
+ class GoalsDisabledForGroupResponse {
2817
+ static fromProto(proto) {
2818
+ let m = new GoalsDisabledForGroupResponse();
2819
+ m = Object.assign(m, proto);
2820
+ return m;
2821
+ }
2822
+ constructor(kwargs) {
2823
+ if (!kwargs) {
2824
+ return;
2825
+ }
2826
+ Object.assign(this, kwargs);
2827
+ }
2828
+ toApiJson() {
2829
+ const toReturn = {};
2830
+ if (typeof this.goalsDisabled !== 'undefined') {
2831
+ toReturn['goalsDisabled'] = this.goalsDisabled;
2832
+ }
2833
+ return toReturn;
2834
+ }
2835
+ }
2700
2836
  class ListAllAssistantsAssociatedToConnectionRequest {
2701
2837
  static fromProto(proto) {
2702
2838
  let m = new ListAllAssistantsAssociatedToConnectionRequest();
@@ -3222,9 +3358,9 @@ class ListPromptVersionsResponse {
3222
3358
  return toReturn;
3223
3359
  }
3224
3360
  }
3225
- class GenerateChatAnswerRequestOptions {
3361
+ class UpsertAssistantRequestOptions {
3226
3362
  static fromProto(proto) {
3227
- let m = new GenerateChatAnswerRequestOptions();
3363
+ let m = new UpsertAssistantRequestOptions();
3228
3364
  m = Object.assign(m, proto);
3229
3365
  return m;
3230
3366
  }
@@ -3236,11 +3372,8 @@ class GenerateChatAnswerRequestOptions {
3236
3372
  }
3237
3373
  toApiJson() {
3238
3374
  const toReturn = {};
3239
- if (typeof this.includeAllCitations !== 'undefined') {
3240
- toReturn['includeAllCitations'] = this.includeAllCitations;
3241
- }
3242
- if (typeof this.enableAsyncFunctions !== 'undefined') {
3243
- toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
3375
+ if (typeof this.applyDefaults !== 'undefined') {
3376
+ toReturn['applyDefaults'] = this.applyDefaults;
3244
3377
  }
3245
3378
  return toReturn;
3246
3379
  }
@@ -3265,9 +3398,9 @@ class CreatePromptModuleVersionRequestOptions {
3265
3398
  return toReturn;
3266
3399
  }
3267
3400
  }
3268
- class UpsertAssistantRequestOptions {
3401
+ class GenerateChatAnswerRequestOptions {
3269
3402
  static fromProto(proto) {
3270
- let m = new UpsertAssistantRequestOptions();
3403
+ let m = new GenerateChatAnswerRequestOptions();
3271
3404
  m = Object.assign(m, proto);
3272
3405
  return m;
3273
3406
  }
@@ -3279,8 +3412,11 @@ class UpsertAssistantRequestOptions {
3279
3412
  }
3280
3413
  toApiJson() {
3281
3414
  const toReturn = {};
3282
- if (typeof this.applyDefaults !== 'undefined') {
3283
- toReturn['applyDefaults'] = this.applyDefaults;
3415
+ if (typeof this.includeAllCitations !== 'undefined') {
3416
+ toReturn['includeAllCitations'] = this.includeAllCitations;
3417
+ }
3418
+ if (typeof this.enableAsyncFunctions !== 'undefined') {
3419
+ toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
3284
3420
  }
3285
3421
  return toReturn;
3286
3422
  }
@@ -3531,6 +3667,11 @@ class AssistantApiService {
3531
3667
  return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/GetAssistant", request.toApiJson(), this.apiOptions())
3532
3668
  .pipe(map(resp => GetAssistantResponse.fromProto(resp)));
3533
3669
  }
3670
+ buildDefaultAssistant(r) {
3671
+ const request = (r.toApiJson) ? r : new BuildDefaultAssistantRequest(r);
3672
+ return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/BuildDefaultAssistant", request.toApiJson(), this.apiOptions())
3673
+ .pipe(map(resp => BuildDefaultAssistantResponse.fromProto(resp)));
3674
+ }
3534
3675
  deleteAssistant(r) {
3535
3676
  const request = (r.toApiJson) ? r : new DeleteAssistantRequest(r);
3536
3677
  return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/DeleteAssistant", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
@@ -3707,6 +3848,11 @@ class GoalApiService {
3707
3848
  return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/List", request.toApiJson(), this.apiOptions())
3708
3849
  .pipe(map(resp => ListGoalsResponse.fromProto(resp)));
3709
3850
  }
3851
+ goalsDisabledForGroup(r) {
3852
+ const request = (r.toApiJson) ? r : new GoalsDisabledForGroupRequest(r);
3853
+ return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/GoalsDisabledForGroup", request.toApiJson(), this.apiOptions())
3854
+ .pipe(map(resp => GoalsDisabledForGroupResponse.fromProto(resp)));
3855
+ }
3710
3856
  }
3711
3857
  GoalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3712
3858
  GoalApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, providedIn: 'root' });
@@ -3883,5 +4029,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3883
4029
  * Generated bundle index. Do not edit.
3884
4030
  */
3885
4031
 
3886
- export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, FunctionKey, FunctionParameter, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, 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, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, HostService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ModelConfig, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, VendorModel };
4032
+ export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, FunctionHeader, FunctionKey, FunctionParameter, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, 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, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForGroupRequest, GoalsDisabledForGroupResponse, HostService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ModelConfig, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, VendorModel };
3887
4033
  //# sourceMappingURL=vendasta-ai-assistants.mjs.map