@vendasta/ai-assistants 0.48.0 → 0.50.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 (40) hide show
  1. package/esm2020/lib/_internal/assistant.api.service.mjs +1 -1
  2. package/esm2020/lib/_internal/enums/api.enum.mjs +20 -0
  3. package/esm2020/lib/_internal/enums/assistant-type.enum.mjs +18 -0
  4. package/esm2020/lib/_internal/enums/assistant.enum.mjs +1 -12
  5. package/esm2020/lib/_internal/enums/constraints.enum.mjs +19 -0
  6. package/esm2020/lib/_internal/enums/index.mjs +6 -2
  7. package/esm2020/lib/_internal/enums/namespace.enum.mjs +15 -0
  8. package/esm2020/lib/_internal/function.api.service.mjs +6 -2
  9. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  10. package/esm2020/lib/_internal/interfaces/constraints.interface.mjs +8 -0
  11. package/esm2020/lib/_internal/interfaces/function.interface.mjs +1 -1
  12. package/esm2020/lib/_internal/interfaces/goal.interface.mjs +1 -1
  13. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  14. package/esm2020/lib/_internal/objects/api.mjs +123 -75
  15. package/esm2020/lib/_internal/objects/constraints.mjs +101 -0
  16. package/esm2020/lib/_internal/objects/function.mjs +63 -1
  17. package/esm2020/lib/_internal/objects/goal.mjs +8 -1
  18. package/esm2020/lib/_internal/objects/index.mjs +4 -3
  19. package/fesm2015/vendasta-ai-assistants.mjs +366 -87
  20. package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
  21. package/fesm2020/vendasta-ai-assistants.mjs +366 -87
  22. package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
  23. package/lib/_internal/enums/api.enum.d.ts +11 -0
  24. package/lib/_internal/enums/assistant-type.enum.d.ts +10 -0
  25. package/lib/_internal/enums/assistant.enum.d.ts +0 -10
  26. package/lib/_internal/enums/constraints.enum.d.ts +10 -0
  27. package/lib/_internal/enums/index.d.ts +5 -1
  28. package/lib/_internal/enums/namespace.enum.d.ts +7 -0
  29. package/lib/_internal/function.api.service.d.ts +3 -2
  30. package/lib/_internal/interfaces/api.interface.d.ts +28 -19
  31. package/lib/_internal/interfaces/constraints.interface.d.ts +14 -0
  32. package/lib/_internal/interfaces/function.interface.d.ts +11 -0
  33. package/lib/_internal/interfaces/goal.interface.d.ts +2 -0
  34. package/lib/_internal/interfaces/index.d.ts +3 -2
  35. package/lib/_internal/objects/api.d.ts +48 -36
  36. package/lib/_internal/objects/constraints.d.ts +25 -0
  37. package/lib/_internal/objects/function.d.ts +17 -0
  38. package/lib/_internal/objects/goal.d.ts +2 -0
  39. package/lib/_internal/objects/index.d.ts +3 -2
  40. package/package.json +1 -1
@@ -26,6 +26,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
26
26
  args: [{ providedIn: 'root' }]
27
27
  }] });
28
28
 
29
+ // *********************************
30
+ // Code generated by sdkgen
31
+ // DO NOT EDIT!.
32
+ //
33
+ // Enums.
34
+ // *********************************
35
+ var NamespaceType;
36
+ (function (NamespaceType) {
37
+ NamespaceType[NamespaceType["NAMESPACE_TYPE_UNSPECIFIED"] = 0] = "NAMESPACE_TYPE_UNSPECIFIED";
38
+ NamespaceType[NamespaceType["NAMESPACE_TYPE_ACCOUNT_GROUP"] = 1] = "NAMESPACE_TYPE_ACCOUNT_GROUP";
39
+ NamespaceType[NamespaceType["NAMESPACE_TYPE_PARTNER"] = 2] = "NAMESPACE_TYPE_PARTNER";
40
+ NamespaceType[NamespaceType["NAMESPACE_TYPE_SYSTEM"] = 3] = "NAMESPACE_TYPE_SYSTEM";
41
+ NamespaceType[NamespaceType["NAMESPACE_TYPE_GLOBAL"] = 4] = "NAMESPACE_TYPE_GLOBAL";
42
+ })(NamespaceType || (NamespaceType = {}));
43
+
44
+ // *********************************
45
+ // Code generated by sdkgen
46
+ // DO NOT EDIT!.
47
+ //
48
+ // Enums.
49
+ // *********************************
50
+ var AssistantType;
51
+ (function (AssistantType) {
52
+ AssistantType[AssistantType["ASSISTANT_TYPE_UNSPECIFIED"] = 0] = "ASSISTANT_TYPE_UNSPECIFIED";
53
+ AssistantType[AssistantType["ASSISTANT_TYPE_SYSTEM"] = 1] = "ASSISTANT_TYPE_SYSTEM";
54
+ AssistantType[AssistantType["ASSISTANT_TYPE_INBOX"] = 2] = "ASSISTANT_TYPE_INBOX";
55
+ AssistantType[AssistantType["ASSISTANT_TYPE_SOCIAL_MARKETING"] = 3] = "ASSISTANT_TYPE_SOCIAL_MARKETING";
56
+ AssistantType[AssistantType["ASSISTANT_TYPE_VOICE_RECEPTIONIST"] = 4] = "ASSISTANT_TYPE_VOICE_RECEPTIONIST";
57
+ AssistantType[AssistantType["ASSISTANT_TYPE_CUSTOM"] = 5] = "ASSISTANT_TYPE_CUSTOM";
58
+ AssistantType[AssistantType["ASSISTANT_TYPE_SALES_COACH"] = 6] = "ASSISTANT_TYPE_SALES_COACH";
59
+ AssistantType[AssistantType["ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT"] = 7] = "ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT";
60
+ })(AssistantType || (AssistantType = {}));
61
+
62
+ // *********************************
63
+ // Code generated by sdkgen
64
+ // DO NOT EDIT!.
65
+ //
66
+ // Enums.
67
+ // *********************************
68
+ var Action;
69
+ (function (Action) {
70
+ Action[Action["ACTION_UNSPECIFIED"] = 0] = "ACTION_UNSPECIFIED";
71
+ Action[Action["ACTION_ASSIGN"] = 1] = "ACTION_ASSIGN";
72
+ Action[Action["ACTION_VIEW"] = 2] = "ACTION_VIEW";
73
+ })(Action || (Action = {}));
74
+ var Effect;
75
+ (function (Effect) {
76
+ Effect[Effect["EFFECT_UNSPECIFIED"] = 0] = "EFFECT_UNSPECIFIED";
77
+ Effect[Effect["EFFECT_ALLOW"] = 1] = "EFFECT_ALLOW";
78
+ Effect[Effect["EFFECT_DENY"] = 2] = "EFFECT_DENY";
79
+ })(Effect || (Effect = {}));
80
+
29
81
  // *********************************
30
82
  // Code generated by sdkgen
31
83
  // DO NOT EDIT!.
@@ -97,17 +149,6 @@ var ModelVendor;
97
149
  //
98
150
  // Enums.
99
151
  // *********************************
100
- var AssistantType;
101
- (function (AssistantType) {
102
- AssistantType[AssistantType["ASSISTANT_TYPE_UNSPECIFIED"] = 0] = "ASSISTANT_TYPE_UNSPECIFIED";
103
- AssistantType[AssistantType["ASSISTANT_TYPE_SYSTEM"] = 1] = "ASSISTANT_TYPE_SYSTEM";
104
- AssistantType[AssistantType["ASSISTANT_TYPE_INBOX"] = 2] = "ASSISTANT_TYPE_INBOX";
105
- AssistantType[AssistantType["ASSISTANT_TYPE_SOCIAL_MARKETING"] = 3] = "ASSISTANT_TYPE_SOCIAL_MARKETING";
106
- AssistantType[AssistantType["ASSISTANT_TYPE_VOICE_RECEPTIONIST"] = 4] = "ASSISTANT_TYPE_VOICE_RECEPTIONIST";
107
- AssistantType[AssistantType["ASSISTANT_TYPE_CUSTOM"] = 5] = "ASSISTANT_TYPE_CUSTOM";
108
- AssistantType[AssistantType["ASSISTANT_TYPE_SALES_COACH"] = 6] = "ASSISTANT_TYPE_SALES_COACH";
109
- AssistantType[AssistantType["ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT"] = 7] = "ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT";
110
- })(AssistantType || (AssistantType = {}));
111
152
  var VendorModel;
112
153
  (function (VendorModel) {
113
154
  VendorModel[VendorModel["VENDOR_MODEL_UNSPECIFIED"] = 0] = "VENDOR_MODEL_UNSPECIFIED";
@@ -162,6 +203,26 @@ var SortDirection;
162
203
  SortDirection[SortDirection["SORT_DIRECTION_DESCENDING"] = 2] = "SORT_DIRECTION_DESCENDING";
163
204
  })(SortDirection || (SortDirection = {}));
164
205
 
206
+ // *********************************
207
+ // Code generated by sdkgen
208
+ // DO NOT EDIT!.
209
+ //
210
+ // Enums.
211
+ // *********************************
212
+ var StreamingGenerateChatAnswerResponseContentType;
213
+ (function (StreamingGenerateChatAnswerResponseContentType) {
214
+ StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["CONTENT_TYPE_UNSPECIFIED"] = 0] = "CONTENT_TYPE_UNSPECIFIED";
215
+ StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["REASONING"] = 1] = "REASONING";
216
+ StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ANSWER"] = 2] = "ANSWER";
217
+ StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ACTION_DESCRIPTION"] = 3] = "ACTION_DESCRIPTION";
218
+ StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["WORKING"] = 4] = "WORKING";
219
+ })(StreamingGenerateChatAnswerResponseContentType || (StreamingGenerateChatAnswerResponseContentType = {}));
220
+ var ListGoalsRequestSortingOrder;
221
+ (function (ListGoalsRequestSortingOrder) {
222
+ ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_ASCENDING"] = 0] = "GOAL_SORTING_ORDER_ASCENDING";
223
+ ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_DESCENDING"] = 1] = "GOAL_SORTING_ORDER_DESCENDING";
224
+ })(ListGoalsRequestSortingOrder || (ListGoalsRequestSortingOrder = {}));
225
+
165
226
  // *********************************
166
227
  // Code generated by sdkgen
167
228
  // DO NOT EDIT!.
@@ -169,7 +230,7 @@ var SortDirection;
169
230
  // Enums Index.
170
231
  // *********************************
171
232
 
172
- function enumStringToValue$d(enumRef, value) {
233
+ function enumStringToValue$e(enumRef, value) {
173
234
  if (typeof value === 'number') {
174
235
  return value;
175
236
  }
@@ -291,6 +352,106 @@ class NamespaceSystemNamespace {
291
352
  }
292
353
  }
293
354
 
355
+ function enumStringToValue$d(enumRef, value) {
356
+ if (typeof value === 'number') {
357
+ return value;
358
+ }
359
+ return enumRef[value];
360
+ }
361
+ class Constraint {
362
+ static fromProto(proto) {
363
+ let m = new Constraint();
364
+ m = Object.assign(m, proto);
365
+ if (proto.action) {
366
+ m.action = enumStringToValue$d(Action, proto.action);
367
+ }
368
+ if (proto.scope) {
369
+ m.scope = Scope.fromProto(proto.scope);
370
+ }
371
+ if (proto.effect) {
372
+ m.effect = enumStringToValue$d(Effect, proto.effect);
373
+ }
374
+ return m;
375
+ }
376
+ constructor(kwargs) {
377
+ if (!kwargs) {
378
+ return;
379
+ }
380
+ Object.assign(this, kwargs);
381
+ }
382
+ toApiJson() {
383
+ const toReturn = {};
384
+ if (typeof this.action !== 'undefined') {
385
+ toReturn['action'] = this.action;
386
+ }
387
+ if (typeof this.scope !== 'undefined' && this.scope !== null) {
388
+ toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
389
+ }
390
+ if (typeof this.effect !== 'undefined') {
391
+ toReturn['effect'] = this.effect;
392
+ }
393
+ return toReturn;
394
+ }
395
+ }
396
+ class ConstraintFilter {
397
+ static fromProto(proto) {
398
+ let m = new ConstraintFilter();
399
+ m = Object.assign(m, proto);
400
+ if (proto.action) {
401
+ m.action = enumStringToValue$d(Action, proto.action);
402
+ }
403
+ if (proto.scope) {
404
+ m.scope = Scope.fromProto(proto.scope);
405
+ }
406
+ return m;
407
+ }
408
+ constructor(kwargs) {
409
+ if (!kwargs) {
410
+ return;
411
+ }
412
+ Object.assign(this, kwargs);
413
+ }
414
+ toApiJson() {
415
+ const toReturn = {};
416
+ if (typeof this.action !== 'undefined') {
417
+ toReturn['action'] = this.action;
418
+ }
419
+ if (typeof this.scope !== 'undefined' && this.scope !== null) {
420
+ toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
421
+ }
422
+ return toReturn;
423
+ }
424
+ }
425
+ class Scope {
426
+ static fromProto(proto) {
427
+ let m = new Scope();
428
+ m = Object.assign(m, proto);
429
+ if (proto.assistantNamespaceType) {
430
+ m.assistantNamespaceType = enumStringToValue$d(NamespaceType, proto.assistantNamespaceType);
431
+ }
432
+ if (proto.assistantType) {
433
+ m.assistantType = enumStringToValue$d(AssistantType, proto.assistantType);
434
+ }
435
+ return m;
436
+ }
437
+ constructor(kwargs) {
438
+ if (!kwargs) {
439
+ return;
440
+ }
441
+ Object.assign(this, kwargs);
442
+ }
443
+ toApiJson() {
444
+ const toReturn = {};
445
+ if (typeof this.assistantNamespaceType !== 'undefined') {
446
+ toReturn['assistantNamespaceType'] = this.assistantNamespaceType;
447
+ }
448
+ if (typeof this.assistantType !== 'undefined') {
449
+ toReturn['assistantType'] = this.assistantType;
450
+ }
451
+ return toReturn;
452
+ }
453
+ }
454
+
294
455
  function enumStringToValue$c(enumRef, value) {
295
456
  if (typeof value === 'number') {
296
457
  return value;
@@ -359,6 +520,55 @@ function enumStringToValue$b(enumRef, value) {
359
520
  }
360
521
  return enumRef[value];
361
522
  }
523
+ class FunctionAuthStrategyConnectedIntegrationAuthStrategy {
524
+ static fromProto(proto) {
525
+ let m = new FunctionAuthStrategyConnectedIntegrationAuthStrategy();
526
+ m = Object.assign(m, proto);
527
+ return m;
528
+ }
529
+ constructor(kwargs) {
530
+ if (!kwargs) {
531
+ return;
532
+ }
533
+ Object.assign(this, kwargs);
534
+ }
535
+ toApiJson() {
536
+ const toReturn = {};
537
+ if (typeof this.connectionId !== 'undefined') {
538
+ toReturn['connectionId'] = this.connectionId;
539
+ }
540
+ return toReturn;
541
+ }
542
+ }
543
+ class CreateMCPFromIntegrationRequest {
544
+ static fromProto(proto) {
545
+ let m = new CreateMCPFromIntegrationRequest();
546
+ m = Object.assign(m, proto);
547
+ if (proto.namespace) {
548
+ m.namespace = Namespace.fromProto(proto.namespace);
549
+ }
550
+ return m;
551
+ }
552
+ constructor(kwargs) {
553
+ if (!kwargs) {
554
+ return;
555
+ }
556
+ Object.assign(this, kwargs);
557
+ }
558
+ toApiJson() {
559
+ const toReturn = {};
560
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
561
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
562
+ }
563
+ if (typeof this.mcpId !== 'undefined') {
564
+ toReturn['mcpId'] = this.mcpId;
565
+ }
566
+ if (typeof this.connectionId !== 'undefined') {
567
+ toReturn['connectionId'] = this.connectionId;
568
+ }
569
+ return toReturn;
570
+ }
571
+ }
362
572
  class DeleteMCPRequest {
363
573
  static fromProto(proto) {
364
574
  let m = new DeleteMCPRequest();
@@ -430,6 +640,9 @@ class Function {
430
640
  if (proto.authStrategy) {
431
641
  m.authStrategy = FunctionAuthStrategy.fromProto(proto.authStrategy);
432
642
  }
643
+ if (proto.constraints) {
644
+ m.constraints = proto.constraints.map(Constraint.fromProto);
645
+ }
433
646
  return m;
434
647
  }
435
648
  constructor(kwargs) {
@@ -476,6 +689,9 @@ class Function {
476
689
  if (typeof this.mcpId !== 'undefined') {
477
690
  toReturn['mcpId'] = this.mcpId;
478
691
  }
692
+ if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
693
+ toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
694
+ }
479
695
  return toReturn;
480
696
  }
481
697
  }
@@ -489,6 +705,9 @@ class FunctionAuthStrategy {
489
705
  if (proto.platformManaged) {
490
706
  m.platformManaged = FunctionAuthStrategyPlatformManagedFunctionAuthStrategy.fromProto(proto.platformManaged);
491
707
  }
708
+ if (proto.connectedIntegration) {
709
+ m.connectedIntegration = FunctionAuthStrategyConnectedIntegrationAuthStrategy.fromProto(proto.connectedIntegration);
710
+ }
492
711
  return m;
493
712
  }
494
713
  constructor(kwargs) {
@@ -505,6 +724,9 @@ class FunctionAuthStrategy {
505
724
  if (typeof this.platformManaged !== 'undefined' && this.platformManaged !== null) {
506
725
  toReturn['platformManaged'] = 'toApiJson' in this.platformManaged ? this.platformManaged.toApiJson() : this.platformManaged;
507
726
  }
727
+ if (typeof this.connectedIntegration !== 'undefined' && this.connectedIntegration !== null) {
728
+ toReturn['connectedIntegration'] = 'toApiJson' in this.connectedIntegration ? this.connectedIntegration.toApiJson() : this.connectedIntegration;
729
+ }
508
730
  return toReturn;
509
731
  }
510
732
  }
@@ -1077,6 +1299,9 @@ class Goal {
1077
1299
  if (proto.overrideOf) {
1078
1300
  m.overrideOf = GoalKey.fromProto(proto.overrideOf);
1079
1301
  }
1302
+ if (proto.constraints) {
1303
+ m.constraints = proto.constraints.map(Constraint.fromProto);
1304
+ }
1080
1305
  return m;
1081
1306
  }
1082
1307
  constructor(kwargs) {
@@ -1123,6 +1348,9 @@ class Goal {
1123
1348
  if (typeof this.overrideOf !== 'undefined' && this.overrideOf !== null) {
1124
1349
  toReturn['overrideOf'] = 'toApiJson' in this.overrideOf ? this.overrideOf.toApiJson() : this.overrideOf;
1125
1350
  }
1351
+ if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
1352
+ toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
1353
+ }
1126
1354
  return toReturn;
1127
1355
  }
1128
1356
  }
@@ -3007,15 +3235,12 @@ class ExecuteFunctionResponse {
3007
3235
  return toReturn;
3008
3236
  }
3009
3237
  }
3010
- class ListFunctionRequestFilters {
3238
+ class ListAllAssistantsAssociatedToConnectionRequestFilters {
3011
3239
  static fromProto(proto) {
3012
- let m = new ListFunctionRequestFilters();
3240
+ let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
3013
3241
  m = Object.assign(m, proto);
3014
- if (proto.namespace) {
3015
- m.namespace = Namespace.fromProto(proto.namespace);
3016
- }
3017
- if (proto.namespaces) {
3018
- m.namespaces = proto.namespaces.map(Namespace.fromProto);
3242
+ if (proto.type) {
3243
+ m.type = enumStringToValue(AssistantType, proto.type);
3019
3244
  }
3020
3245
  return m;
3021
3246
  }
@@ -3027,25 +3252,22 @@ class ListFunctionRequestFilters {
3027
3252
  }
3028
3253
  toApiJson() {
3029
3254
  const toReturn = {};
3030
- if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3031
- toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3032
- }
3033
- if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3034
- toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3035
- }
3036
- if (typeof this.mcpId !== 'undefined') {
3037
- toReturn['mcpId'] = this.mcpId;
3255
+ if (typeof this.type !== 'undefined') {
3256
+ toReturn['type'] = this.type;
3038
3257
  }
3039
3258
  return toReturn;
3040
3259
  }
3041
3260
  }
3042
- class ListPromptModuleRequestFilters {
3261
+ class ListConnectionsRequestFilters {
3043
3262
  static fromProto(proto) {
3044
- let m = new ListPromptModuleRequestFilters();
3263
+ let m = new ListConnectionsRequestFilters();
3045
3264
  m = Object.assign(m, proto);
3046
3265
  if (proto.namespace) {
3047
3266
  m.namespace = Namespace.fromProto(proto.namespace);
3048
3267
  }
3268
+ if (proto.assistantType) {
3269
+ m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
3270
+ }
3049
3271
  return m;
3050
3272
  }
3051
3273
  constructor(kwargs) {
@@ -3059,19 +3281,19 @@ class ListPromptModuleRequestFilters {
3059
3281
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3060
3282
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3061
3283
  }
3284
+ if (typeof this.assistantType !== 'undefined') {
3285
+ toReturn['assistantType'] = this.assistantType;
3286
+ }
3062
3287
  return toReturn;
3063
3288
  }
3064
3289
  }
3065
- class ListAssistantRequestFilters {
3290
+ class ListPromptModuleRequestFilters {
3066
3291
  static fromProto(proto) {
3067
- let m = new ListAssistantRequestFilters();
3292
+ let m = new ListPromptModuleRequestFilters();
3068
3293
  m = Object.assign(m, proto);
3069
3294
  if (proto.namespace) {
3070
3295
  m.namespace = Namespace.fromProto(proto.namespace);
3071
3296
  }
3072
- if (proto.type) {
3073
- m.type = enumStringToValue(AssistantType, proto.type);
3074
- }
3075
3297
  return m;
3076
3298
  }
3077
3299
  constructor(kwargs) {
@@ -3085,21 +3307,30 @@ class ListAssistantRequestFilters {
3085
3307
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3086
3308
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3087
3309
  }
3088
- if (typeof this.type !== 'undefined') {
3089
- toReturn['type'] = this.type;
3090
- }
3091
3310
  return toReturn;
3092
3311
  }
3093
3312
  }
3094
- class ListConnectionsRequestFilters {
3313
+ class ListGoalsRequestFilters {
3095
3314
  static fromProto(proto) {
3096
- let m = new ListConnectionsRequestFilters();
3315
+ let m = new ListGoalsRequestFilters();
3097
3316
  m = Object.assign(m, proto);
3098
3317
  if (proto.namespace) {
3099
3318
  m.namespace = Namespace.fromProto(proto.namespace);
3100
3319
  }
3101
- if (proto.assistantType) {
3102
- m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
3320
+ if (proto.type) {
3321
+ m.type = enumStringToValue(GoalType, proto.type);
3322
+ }
3323
+ if (proto.supportedChannels) {
3324
+ m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
3325
+ }
3326
+ if (proto.namespaces) {
3327
+ m.namespaces = proto.namespaces.map(Namespace.fromProto);
3328
+ }
3329
+ if (proto.constraintFilters) {
3330
+ m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
3331
+ }
3332
+ if (proto.sortOptions) {
3333
+ m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
3103
3334
  }
3104
3335
  return m;
3105
3336
  }
@@ -3114,8 +3345,23 @@ class ListConnectionsRequestFilters {
3114
3345
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3115
3346
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3116
3347
  }
3117
- if (typeof this.assistantType !== 'undefined') {
3118
- toReturn['assistantType'] = this.assistantType;
3348
+ if (typeof this.type !== 'undefined') {
3349
+ toReturn['type'] = this.type;
3350
+ }
3351
+ if (typeof this.supportedChannels !== 'undefined') {
3352
+ toReturn['supportedChannels'] = this.supportedChannels;
3353
+ }
3354
+ if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3355
+ toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3356
+ }
3357
+ if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3358
+ toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
3359
+ }
3360
+ if (typeof this.searchTerm !== 'undefined') {
3361
+ toReturn['searchTerm'] = this.searchTerm;
3362
+ }
3363
+ if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
3364
+ toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
3119
3365
  }
3120
3366
  return toReturn;
3121
3367
  }
@@ -3149,22 +3395,19 @@ class ListAvailableModelsRequestFilters {
3149
3395
  return toReturn;
3150
3396
  }
3151
3397
  }
3152
- class ListGoalsRequestFilters {
3398
+ class ListFunctionRequestFilters {
3153
3399
  static fromProto(proto) {
3154
- let m = new ListGoalsRequestFilters();
3400
+ let m = new ListFunctionRequestFilters();
3155
3401
  m = Object.assign(m, proto);
3156
3402
  if (proto.namespace) {
3157
3403
  m.namespace = Namespace.fromProto(proto.namespace);
3158
3404
  }
3159
- if (proto.type) {
3160
- m.type = enumStringToValue(GoalType, proto.type);
3161
- }
3162
- if (proto.supportedChannels) {
3163
- m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
3164
- }
3165
3405
  if (proto.namespaces) {
3166
3406
  m.namespaces = proto.namespaces.map(Namespace.fromProto);
3167
3407
  }
3408
+ if (proto.constraintFilters) {
3409
+ m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
3410
+ }
3168
3411
  return m;
3169
3412
  }
3170
3413
  constructor(kwargs) {
@@ -3178,22 +3421,25 @@ class ListGoalsRequestFilters {
3178
3421
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3179
3422
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3180
3423
  }
3181
- if (typeof this.type !== 'undefined') {
3182
- toReturn['type'] = this.type;
3183
- }
3184
- if (typeof this.supportedChannels !== 'undefined') {
3185
- toReturn['supportedChannels'] = this.supportedChannels;
3186
- }
3187
3424
  if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3188
3425
  toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3189
3426
  }
3427
+ if (typeof this.mcpId !== 'undefined') {
3428
+ toReturn['mcpId'] = this.mcpId;
3429
+ }
3430
+ if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3431
+ toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
3432
+ }
3190
3433
  return toReturn;
3191
3434
  }
3192
3435
  }
3193
- class ListAllAssistantsAssociatedToConnectionRequestFilters {
3436
+ class ListAssistantRequestFilters {
3194
3437
  static fromProto(proto) {
3195
- let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
3438
+ let m = new ListAssistantRequestFilters();
3196
3439
  m = Object.assign(m, proto);
3440
+ if (proto.namespace) {
3441
+ m.namespace = Namespace.fromProto(proto.namespace);
3442
+ }
3197
3443
  if (proto.type) {
3198
3444
  m.type = enumStringToValue(AssistantType, proto.type);
3199
3445
  }
@@ -3207,6 +3453,9 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
3207
3453
  }
3208
3454
  toApiJson() {
3209
3455
  const toReturn = {};
3456
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3457
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3458
+ }
3210
3459
  if (typeof this.type !== 'undefined') {
3211
3460
  toReturn['type'] = this.type;
3212
3461
  }
@@ -4757,10 +5006,13 @@ class ListPromptVersionsResponse {
4757
5006
  return toReturn;
4758
5007
  }
4759
5008
  }
4760
- class CreatePromptModuleVersionRequestOptions {
5009
+ class GenerateChatAnswerRequestOptions {
4761
5010
  static fromProto(proto) {
4762
- let m = new CreatePromptModuleVersionRequestOptions();
5011
+ let m = new GenerateChatAnswerRequestOptions();
4763
5012
  m = Object.assign(m, proto);
5013
+ if (proto.maxTokens) {
5014
+ m.maxTokens = parseInt(proto.maxTokens, 10);
5015
+ }
4764
5016
  return m;
4765
5017
  }
4766
5018
  constructor(kwargs) {
@@ -4771,19 +5023,22 @@ class CreatePromptModuleVersionRequestOptions {
4771
5023
  }
4772
5024
  toApiJson() {
4773
5025
  const toReturn = {};
4774
- if (typeof this.shouldDeploy !== 'undefined') {
4775
- toReturn['shouldDeploy'] = this.shouldDeploy;
5026
+ if (typeof this.includeAllCitations !== 'undefined') {
5027
+ toReturn['includeAllCitations'] = this.includeAllCitations;
5028
+ }
5029
+ if (typeof this.enableAsyncFunctions !== 'undefined') {
5030
+ toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
5031
+ }
5032
+ if (typeof this.maxTokens !== 'undefined') {
5033
+ toReturn['maxTokens'] = this.maxTokens;
4776
5034
  }
4777
5035
  return toReturn;
4778
5036
  }
4779
5037
  }
4780
- class GenerateChatAnswerRequestOptions {
5038
+ class GetMultiAssistantRequestOptions {
4781
5039
  static fromProto(proto) {
4782
- let m = new GenerateChatAnswerRequestOptions();
5040
+ let m = new GetMultiAssistantRequestOptions();
4783
5041
  m = Object.assign(m, proto);
4784
- if (proto.maxTokens) {
4785
- m.maxTokens = parseInt(proto.maxTokens, 10);
4786
- }
4787
5042
  return m;
4788
5043
  }
4789
5044
  constructor(kwargs) {
@@ -4794,21 +5049,15 @@ class GenerateChatAnswerRequestOptions {
4794
5049
  }
4795
5050
  toApiJson() {
4796
5051
  const toReturn = {};
4797
- if (typeof this.includeAllCitations !== 'undefined') {
4798
- toReturn['includeAllCitations'] = this.includeAllCitations;
4799
- }
4800
- if (typeof this.enableAsyncFunctions !== 'undefined') {
4801
- toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
4802
- }
4803
- if (typeof this.maxTokens !== 'undefined') {
4804
- toReturn['maxTokens'] = this.maxTokens;
5052
+ if (typeof this.skipGoalsHydration !== 'undefined') {
5053
+ toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
4805
5054
  }
4806
5055
  return toReturn;
4807
5056
  }
4808
5057
  }
4809
- class UpsertAssistantRequestOptions {
5058
+ class CreatePromptModuleVersionRequestOptions {
4810
5059
  static fromProto(proto) {
4811
- let m = new UpsertAssistantRequestOptions();
5060
+ let m = new CreatePromptModuleVersionRequestOptions();
4812
5061
  m = Object.assign(m, proto);
4813
5062
  return m;
4814
5063
  }
@@ -4820,15 +5069,15 @@ class UpsertAssistantRequestOptions {
4820
5069
  }
4821
5070
  toApiJson() {
4822
5071
  const toReturn = {};
4823
- if (typeof this.applyDefaults !== 'undefined') {
4824
- toReturn['applyDefaults'] = this.applyDefaults;
5072
+ if (typeof this.shouldDeploy !== 'undefined') {
5073
+ toReturn['shouldDeploy'] = this.shouldDeploy;
4825
5074
  }
4826
5075
  return toReturn;
4827
5076
  }
4828
5077
  }
4829
- class CreateAssistantRequestOptions {
5078
+ class UpsertAssistantRequestOptions {
4830
5079
  static fromProto(proto) {
4831
- let m = new CreateAssistantRequestOptions();
5080
+ let m = new UpsertAssistantRequestOptions();
4832
5081
  m = Object.assign(m, proto);
4833
5082
  return m;
4834
5083
  }
@@ -4846,9 +5095,9 @@ class CreateAssistantRequestOptions {
4846
5095
  return toReturn;
4847
5096
  }
4848
5097
  }
4849
- class GetMultiAssistantRequestOptions {
5098
+ class CreateAssistantRequestOptions {
4850
5099
  static fromProto(proto) {
4851
- let m = new GetMultiAssistantRequestOptions();
5100
+ let m = new CreateAssistantRequestOptions();
4852
5101
  m = Object.assign(m, proto);
4853
5102
  return m;
4854
5103
  }
@@ -4860,8 +5109,8 @@ class GetMultiAssistantRequestOptions {
4860
5109
  }
4861
5110
  toApiJson() {
4862
5111
  const toReturn = {};
4863
- if (typeof this.skipGoalsHydration !== 'undefined') {
4864
- toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
5112
+ if (typeof this.applyDefaults !== 'undefined') {
5113
+ toReturn['applyDefaults'] = this.applyDefaults;
4865
5114
  }
4866
5115
  return toReturn;
4867
5116
  }
@@ -4915,6 +5164,32 @@ class SetAssistantConnectionsRequest {
4915
5164
  return toReturn;
4916
5165
  }
4917
5166
  }
5167
+ class ListGoalsRequestSortOptions {
5168
+ static fromProto(proto) {
5169
+ let m = new ListGoalsRequestSortOptions();
5170
+ m = Object.assign(m, proto);
5171
+ if (proto.order) {
5172
+ m.order = enumStringToValue(ListGoalsRequestSortingOrder, proto.order);
5173
+ }
5174
+ return m;
5175
+ }
5176
+ constructor(kwargs) {
5177
+ if (!kwargs) {
5178
+ return;
5179
+ }
5180
+ Object.assign(this, kwargs);
5181
+ }
5182
+ toApiJson() {
5183
+ const toReturn = {};
5184
+ if (typeof this.field !== 'undefined') {
5185
+ toReturn['field'] = this.field;
5186
+ }
5187
+ if (typeof this.order !== 'undefined') {
5188
+ toReturn['order'] = this.order;
5189
+ }
5190
+ return toReturn;
5191
+ }
5192
+ }
4918
5193
  class UpdateAssistantRequest {
4919
5194
  static fromProto(proto) {
4920
5195
  let m = new UpdateAssistantRequest();
@@ -5399,6 +5674,10 @@ class FunctionApiService {
5399
5674
  const request = (r.toApiJson) ? r : new DeleteMCPRequest(r);
5400
5675
  return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/DeleteMCP", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
5401
5676
  }
5677
+ createMcpFromIntegration(r) {
5678
+ const request = (r.toApiJson) ? r : new CreateMCPFromIntegrationRequest(r);
5679
+ return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/CreateMCPFromIntegration", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
5680
+ }
5402
5681
  }
5403
5682
  FunctionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5404
5683
  FunctionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, providedIn: 'root' });
@@ -5706,5 +5985,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5706
5985
  * Generated bundle index. Do not edit.
5707
5986
  */
5708
5987
 
5709
- export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
5988
+ export { Access, Action, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, Constraint, ConstraintFilter, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreateMCPFromIntegrationRequest, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsRequestSortOptions, ListGoalsRequestSortingOrder, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, Scope, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
5710
5989
  //# sourceMappingURL=vendasta-ai-assistants.mjs.map