@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
@@ -303,6 +303,9 @@ class Function {
303
303
  if (proto.updated) {
304
304
  m.updated = new Date(proto.updated);
305
305
  }
306
+ if (proto.headers) {
307
+ m.headers = proto.headers.map(FunctionHeader.fromProto);
308
+ }
306
309
  return m;
307
310
  }
308
311
  constructor(kwargs) {
@@ -337,6 +340,35 @@ class Function {
337
340
  if (typeof this.updated !== 'undefined' && this.updated !== null) {
338
341
  toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
339
342
  }
343
+ if (typeof this.headers !== 'undefined' && this.headers !== null) {
344
+ toReturn['headers'] = 'toApiJson' in this.headers ? this.headers.toApiJson() : this.headers;
345
+ }
346
+ if (typeof this.managed !== 'undefined') {
347
+ toReturn['managed'] = this.managed;
348
+ }
349
+ return toReturn;
350
+ }
351
+ }
352
+ class FunctionHeader {
353
+ static fromProto(proto) {
354
+ let m = new FunctionHeader();
355
+ m = Object.assign(m, proto);
356
+ return m;
357
+ }
358
+ constructor(kwargs) {
359
+ if (!kwargs) {
360
+ return;
361
+ }
362
+ Object.assign(this, kwargs);
363
+ }
364
+ toApiJson() {
365
+ const toReturn = {};
366
+ if (typeof this.key !== 'undefined') {
367
+ toReturn['key'] = this.key;
368
+ }
369
+ if (typeof this.value !== 'undefined') {
370
+ toReturn['value'] = this.value;
371
+ }
340
372
  return toReturn;
341
373
  }
342
374
  }
@@ -502,6 +534,9 @@ class PromptModule {
502
534
  if (typeof this.deployed !== 'undefined' && this.deployed !== null) {
503
535
  toReturn['deployed'] = 'toApiJson' in this.deployed ? this.deployed.toApiJson() : this.deployed;
504
536
  }
537
+ if (typeof this.managed !== 'undefined') {
538
+ toReturn['managed'] = this.managed;
539
+ }
505
540
  return toReturn;
506
541
  }
507
542
  }
@@ -676,6 +711,9 @@ class Goal {
676
711
  if (typeof this.supportedChannels !== 'undefined') {
677
712
  toReturn['supportedChannels'] = this.supportedChannels;
678
713
  }
714
+ if (typeof this.managed !== 'undefined') {
715
+ toReturn['managed'] = this.managed;
716
+ }
679
717
  return toReturn;
680
718
  }
681
719
  }
@@ -1352,6 +1390,61 @@ function enumStringToValue(enumRef, value) {
1352
1390
  }
1353
1391
  return enumRef[value];
1354
1392
  }
1393
+ class BuildDefaultAssistantRequest {
1394
+ static fromProto(proto) {
1395
+ let m = new BuildDefaultAssistantRequest();
1396
+ m = Object.assign(m, proto);
1397
+ if (proto.namespace) {
1398
+ m.namespace = Namespace.fromProto(proto.namespace);
1399
+ }
1400
+ if (proto.type) {
1401
+ m.type = enumStringToValue(AssistantType, proto.type);
1402
+ }
1403
+ return m;
1404
+ }
1405
+ constructor(kwargs) {
1406
+ if (!kwargs) {
1407
+ return;
1408
+ }
1409
+ Object.assign(this, kwargs);
1410
+ }
1411
+ toApiJson() {
1412
+ const toReturn = {};
1413
+ if (typeof this.id !== 'undefined') {
1414
+ toReturn['id'] = this.id;
1415
+ }
1416
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1417
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1418
+ }
1419
+ if (typeof this.type !== 'undefined') {
1420
+ toReturn['type'] = this.type;
1421
+ }
1422
+ return toReturn;
1423
+ }
1424
+ }
1425
+ class BuildDefaultAssistantResponse {
1426
+ static fromProto(proto) {
1427
+ let m = new BuildDefaultAssistantResponse();
1428
+ m = Object.assign(m, proto);
1429
+ if (proto.assistant) {
1430
+ m.assistant = Assistant.fromProto(proto.assistant);
1431
+ }
1432
+ return m;
1433
+ }
1434
+ constructor(kwargs) {
1435
+ if (!kwargs) {
1436
+ return;
1437
+ }
1438
+ Object.assign(this, kwargs);
1439
+ }
1440
+ toApiJson() {
1441
+ const toReturn = {};
1442
+ if (typeof this.assistant !== 'undefined' && this.assistant !== null) {
1443
+ toReturn['assistant'] = 'toApiJson' in this.assistant ? this.assistant.toApiJson() : this.assistant;
1444
+ }
1445
+ return toReturn;
1446
+ }
1447
+ }
1355
1448
  class SetAssistantConnectionsRequestConnectionState {
1356
1449
  static fromProto(proto) {
1357
1450
  let m = new SetAssistantConnectionsRequestConnectionState();
@@ -1410,6 +1503,9 @@ class CreatePromptModuleRequest {
1410
1503
  if (typeof this.content !== 'undefined') {
1411
1504
  toReturn['content'] = this.content;
1412
1505
  }
1506
+ if (typeof this.managed !== 'undefined') {
1507
+ toReturn['managed'] = this.managed;
1508
+ }
1413
1509
  return toReturn;
1414
1510
  }
1415
1511
  }
@@ -1731,13 +1827,16 @@ class ListConnectionsRequestFilters {
1731
1827
  return toReturn;
1732
1828
  }
1733
1829
  }
1734
- class ListFunctionRequestFilters {
1830
+ class ListAssistantRequestFilters {
1735
1831
  static fromProto(proto) {
1736
- let m = new ListFunctionRequestFilters();
1832
+ let m = new ListAssistantRequestFilters();
1737
1833
  m = Object.assign(m, proto);
1738
1834
  if (proto.namespace) {
1739
1835
  m.namespace = Namespace.fromProto(proto.namespace);
1740
1836
  }
1837
+ if (proto.type) {
1838
+ m.type = enumStringToValue(AssistantType, proto.type);
1839
+ }
1741
1840
  return m;
1742
1841
  }
1743
1842
  constructor(kwargs) {
@@ -1751,6 +1850,9 @@ class ListFunctionRequestFilters {
1751
1850
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1752
1851
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1753
1852
  }
1853
+ if (typeof this.type !== 'undefined') {
1854
+ toReturn['type'] = this.type;
1855
+ }
1754
1856
  return toReturn;
1755
1857
  }
1756
1858
  }
@@ -1812,16 +1914,13 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
1812
1914
  return toReturn;
1813
1915
  }
1814
1916
  }
1815
- class ListAssistantRequestFilters {
1917
+ class ListFunctionRequestFilters {
1816
1918
  static fromProto(proto) {
1817
- let m = new ListAssistantRequestFilters();
1919
+ let m = new ListFunctionRequestFilters();
1818
1920
  m = Object.assign(m, proto);
1819
1921
  if (proto.namespace) {
1820
1922
  m.namespace = Namespace.fromProto(proto.namespace);
1821
1923
  }
1822
- if (proto.type) {
1823
- m.type = enumStringToValue(AssistantType, proto.type);
1824
- }
1825
1924
  return m;
1826
1925
  }
1827
1926
  constructor(kwargs) {
@@ -1835,9 +1934,6 @@ class ListAssistantRequestFilters {
1835
1934
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
1836
1935
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
1837
1936
  }
1838
- if (typeof this.type !== 'undefined') {
1839
- toReturn['type'] = this.type;
1840
- }
1841
1937
  return toReturn;
1842
1938
  }
1843
1939
  }
@@ -2698,6 +2794,46 @@ class GetPromptVersionResponse {
2698
2794
  return toReturn;
2699
2795
  }
2700
2796
  }
2797
+ class GoalsDisabledForGroupRequest {
2798
+ static fromProto(proto) {
2799
+ let m = new GoalsDisabledForGroupRequest();
2800
+ m = Object.assign(m, proto);
2801
+ return m;
2802
+ }
2803
+ constructor(kwargs) {
2804
+ if (!kwargs) {
2805
+ return;
2806
+ }
2807
+ Object.assign(this, kwargs);
2808
+ }
2809
+ toApiJson() {
2810
+ const toReturn = {};
2811
+ if (typeof this.groupId !== 'undefined') {
2812
+ toReturn['groupId'] = this.groupId;
2813
+ }
2814
+ return toReturn;
2815
+ }
2816
+ }
2817
+ class GoalsDisabledForGroupResponse {
2818
+ static fromProto(proto) {
2819
+ let m = new GoalsDisabledForGroupResponse();
2820
+ m = Object.assign(m, proto);
2821
+ return m;
2822
+ }
2823
+ constructor(kwargs) {
2824
+ if (!kwargs) {
2825
+ return;
2826
+ }
2827
+ Object.assign(this, kwargs);
2828
+ }
2829
+ toApiJson() {
2830
+ const toReturn = {};
2831
+ if (typeof this.goalsDisabled !== 'undefined') {
2832
+ toReturn['goalsDisabled'] = this.goalsDisabled;
2833
+ }
2834
+ return toReturn;
2835
+ }
2836
+ }
2701
2837
  class ListAllAssistantsAssociatedToConnectionRequest {
2702
2838
  static fromProto(proto) {
2703
2839
  let m = new ListAllAssistantsAssociatedToConnectionRequest();
@@ -3223,9 +3359,9 @@ class ListPromptVersionsResponse {
3223
3359
  return toReturn;
3224
3360
  }
3225
3361
  }
3226
- class GenerateChatAnswerRequestOptions {
3362
+ class UpsertAssistantRequestOptions {
3227
3363
  static fromProto(proto) {
3228
- let m = new GenerateChatAnswerRequestOptions();
3364
+ let m = new UpsertAssistantRequestOptions();
3229
3365
  m = Object.assign(m, proto);
3230
3366
  return m;
3231
3367
  }
@@ -3237,11 +3373,8 @@ class GenerateChatAnswerRequestOptions {
3237
3373
  }
3238
3374
  toApiJson() {
3239
3375
  const toReturn = {};
3240
- if (typeof this.includeAllCitations !== 'undefined') {
3241
- toReturn['includeAllCitations'] = this.includeAllCitations;
3242
- }
3243
- if (typeof this.enableAsyncFunctions !== 'undefined') {
3244
- toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
3376
+ if (typeof this.applyDefaults !== 'undefined') {
3377
+ toReturn['applyDefaults'] = this.applyDefaults;
3245
3378
  }
3246
3379
  return toReturn;
3247
3380
  }
@@ -3266,9 +3399,9 @@ class CreatePromptModuleVersionRequestOptions {
3266
3399
  return toReturn;
3267
3400
  }
3268
3401
  }
3269
- class UpsertAssistantRequestOptions {
3402
+ class GenerateChatAnswerRequestOptions {
3270
3403
  static fromProto(proto) {
3271
- let m = new UpsertAssistantRequestOptions();
3404
+ let m = new GenerateChatAnswerRequestOptions();
3272
3405
  m = Object.assign(m, proto);
3273
3406
  return m;
3274
3407
  }
@@ -3280,8 +3413,11 @@ class UpsertAssistantRequestOptions {
3280
3413
  }
3281
3414
  toApiJson() {
3282
3415
  const toReturn = {};
3283
- if (typeof this.applyDefaults !== 'undefined') {
3284
- toReturn['applyDefaults'] = this.applyDefaults;
3416
+ if (typeof this.includeAllCitations !== 'undefined') {
3417
+ toReturn['includeAllCitations'] = this.includeAllCitations;
3418
+ }
3419
+ if (typeof this.enableAsyncFunctions !== 'undefined') {
3420
+ toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
3285
3421
  }
3286
3422
  return toReturn;
3287
3423
  }
@@ -3532,6 +3668,11 @@ class AssistantApiService {
3532
3668
  return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/GetAssistant", request.toApiJson(), this.apiOptions())
3533
3669
  .pipe(map(resp => GetAssistantResponse.fromProto(resp)));
3534
3670
  }
3671
+ buildDefaultAssistant(r) {
3672
+ const request = (r.toApiJson) ? r : new BuildDefaultAssistantRequest(r);
3673
+ return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/BuildDefaultAssistant", request.toApiJson(), this.apiOptions())
3674
+ .pipe(map(resp => BuildDefaultAssistantResponse.fromProto(resp)));
3675
+ }
3535
3676
  deleteAssistant(r) {
3536
3677
  const request = (r.toApiJson) ? r : new DeleteAssistantRequest(r);
3537
3678
  return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/DeleteAssistant", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
@@ -3708,6 +3849,11 @@ class GoalApiService {
3708
3849
  return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/List", request.toApiJson(), this.apiOptions())
3709
3850
  .pipe(map(resp => ListGoalsResponse.fromProto(resp)));
3710
3851
  }
3852
+ goalsDisabledForGroup(r) {
3853
+ const request = (r.toApiJson) ? r : new GoalsDisabledForGroupRequest(r);
3854
+ return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/GoalsDisabledForGroup", request.toApiJson(), this.apiOptions())
3855
+ .pipe(map(resp => GoalsDisabledForGroupResponse.fromProto(resp)));
3856
+ }
3711
3857
  }
3712
3858
  GoalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3713
3859
  GoalApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, providedIn: 'root' });
@@ -3884,5 +4030,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3884
4030
  * Generated bundle index. Do not edit.
3885
4031
  */
3886
4032
 
3887
- 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 };
4033
+ 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 };
3888
4034
  //# sourceMappingURL=vendasta-ai-assistants.mjs.map