@vendasta/ai-assistants 0.48.0 → 0.49.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.
- package/esm2020/lib/_internal/enums/assistant-type.enum.mjs +18 -0
- package/esm2020/lib/_internal/enums/assistant.enum.mjs +1 -12
- package/esm2020/lib/_internal/enums/constraints.enum.mjs +19 -0
- package/esm2020/lib/_internal/enums/index.mjs +5 -2
- package/esm2020/lib/_internal/enums/namespace.enum.mjs +15 -0
- package/esm2020/lib/_internal/function.api.service.mjs +6 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/constraints.interface.mjs +8 -0
- package/esm2020/lib/_internal/interfaces/function.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/goal.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +81 -68
- package/esm2020/lib/_internal/objects/constraints.mjs +101 -0
- package/esm2020/lib/_internal/objects/function.mjs +63 -1
- package/esm2020/lib/_internal/objects/goal.mjs +8 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -3
- package/fesm2015/vendasta-ai-assistants.mjs +304 -80
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +304 -80
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/assistant-type.enum.d.ts +10 -0
- package/lib/_internal/enums/assistant.enum.d.ts +0 -10
- package/lib/_internal/enums/constraints.enum.d.ts +10 -0
- package/lib/_internal/enums/index.d.ts +4 -1
- package/lib/_internal/enums/namespace.enum.d.ts +7 -0
- package/lib/_internal/function.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +19 -16
- package/lib/_internal/interfaces/constraints.interface.d.ts +14 -0
- package/lib/_internal/interfaces/function.interface.d.ts +11 -0
- package/lib/_internal/interfaces/goal.interface.d.ts +2 -0
- package/lib/_internal/interfaces/index.d.ts +3 -2
- package/lib/_internal/objects/api.d.ts +33 -30
- package/lib/_internal/objects/constraints.d.ts +25 -0
- package/lib/_internal/objects/function.d.ts +17 -0
- package/lib/_internal/objects/goal.d.ts +2 -0
- package/lib/_internal/objects/index.d.ts +3 -2
- package/package.json +1 -1
|
@@ -27,6 +27,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27
27
|
args: [{ providedIn: 'root' }]
|
|
28
28
|
}] });
|
|
29
29
|
|
|
30
|
+
// *********************************
|
|
31
|
+
// Code generated by sdkgen
|
|
32
|
+
// DO NOT EDIT!.
|
|
33
|
+
//
|
|
34
|
+
// Enums.
|
|
35
|
+
// *********************************
|
|
36
|
+
var NamespaceType;
|
|
37
|
+
(function (NamespaceType) {
|
|
38
|
+
NamespaceType[NamespaceType["NAMESPACE_TYPE_UNSPECIFIED"] = 0] = "NAMESPACE_TYPE_UNSPECIFIED";
|
|
39
|
+
NamespaceType[NamespaceType["NAMESPACE_TYPE_ACCOUNT_GROUP"] = 1] = "NAMESPACE_TYPE_ACCOUNT_GROUP";
|
|
40
|
+
NamespaceType[NamespaceType["NAMESPACE_TYPE_PARTNER"] = 2] = "NAMESPACE_TYPE_PARTNER";
|
|
41
|
+
NamespaceType[NamespaceType["NAMESPACE_TYPE_SYSTEM"] = 3] = "NAMESPACE_TYPE_SYSTEM";
|
|
42
|
+
NamespaceType[NamespaceType["NAMESPACE_TYPE_GLOBAL"] = 4] = "NAMESPACE_TYPE_GLOBAL";
|
|
43
|
+
})(NamespaceType || (NamespaceType = {}));
|
|
44
|
+
|
|
45
|
+
// *********************************
|
|
46
|
+
// Code generated by sdkgen
|
|
47
|
+
// DO NOT EDIT!.
|
|
48
|
+
//
|
|
49
|
+
// Enums.
|
|
50
|
+
// *********************************
|
|
51
|
+
var AssistantType;
|
|
52
|
+
(function (AssistantType) {
|
|
53
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_UNSPECIFIED"] = 0] = "ASSISTANT_TYPE_UNSPECIFIED";
|
|
54
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_SYSTEM"] = 1] = "ASSISTANT_TYPE_SYSTEM";
|
|
55
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_INBOX"] = 2] = "ASSISTANT_TYPE_INBOX";
|
|
56
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_SOCIAL_MARKETING"] = 3] = "ASSISTANT_TYPE_SOCIAL_MARKETING";
|
|
57
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_VOICE_RECEPTIONIST"] = 4] = "ASSISTANT_TYPE_VOICE_RECEPTIONIST";
|
|
58
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_CUSTOM"] = 5] = "ASSISTANT_TYPE_CUSTOM";
|
|
59
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_SALES_COACH"] = 6] = "ASSISTANT_TYPE_SALES_COACH";
|
|
60
|
+
AssistantType[AssistantType["ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT"] = 7] = "ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT";
|
|
61
|
+
})(AssistantType || (AssistantType = {}));
|
|
62
|
+
|
|
63
|
+
// *********************************
|
|
64
|
+
// Code generated by sdkgen
|
|
65
|
+
// DO NOT EDIT!.
|
|
66
|
+
//
|
|
67
|
+
// Enums.
|
|
68
|
+
// *********************************
|
|
69
|
+
var Action;
|
|
70
|
+
(function (Action) {
|
|
71
|
+
Action[Action["ACTION_UNSPECIFIED"] = 0] = "ACTION_UNSPECIFIED";
|
|
72
|
+
Action[Action["ACTION_ASSIGN"] = 1] = "ACTION_ASSIGN";
|
|
73
|
+
Action[Action["ACTION_VIEW"] = 2] = "ACTION_VIEW";
|
|
74
|
+
})(Action || (Action = {}));
|
|
75
|
+
var Effect;
|
|
76
|
+
(function (Effect) {
|
|
77
|
+
Effect[Effect["EFFECT_UNSPECIFIED"] = 0] = "EFFECT_UNSPECIFIED";
|
|
78
|
+
Effect[Effect["EFFECT_ALLOW"] = 1] = "EFFECT_ALLOW";
|
|
79
|
+
Effect[Effect["EFFECT_DENY"] = 2] = "EFFECT_DENY";
|
|
80
|
+
})(Effect || (Effect = {}));
|
|
81
|
+
|
|
30
82
|
// *********************************
|
|
31
83
|
// Code generated by sdkgen
|
|
32
84
|
// DO NOT EDIT!.
|
|
@@ -98,17 +150,6 @@ var ModelVendor;
|
|
|
98
150
|
//
|
|
99
151
|
// Enums.
|
|
100
152
|
// *********************************
|
|
101
|
-
var AssistantType;
|
|
102
|
-
(function (AssistantType) {
|
|
103
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_UNSPECIFIED"] = 0] = "ASSISTANT_TYPE_UNSPECIFIED";
|
|
104
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_SYSTEM"] = 1] = "ASSISTANT_TYPE_SYSTEM";
|
|
105
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_INBOX"] = 2] = "ASSISTANT_TYPE_INBOX";
|
|
106
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_SOCIAL_MARKETING"] = 3] = "ASSISTANT_TYPE_SOCIAL_MARKETING";
|
|
107
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_VOICE_RECEPTIONIST"] = 4] = "ASSISTANT_TYPE_VOICE_RECEPTIONIST";
|
|
108
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_CUSTOM"] = 5] = "ASSISTANT_TYPE_CUSTOM";
|
|
109
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_SALES_COACH"] = 6] = "ASSISTANT_TYPE_SALES_COACH";
|
|
110
|
-
AssistantType[AssistantType["ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT"] = 7] = "ASSISTANT_TYPE_REPUTATION_MANAGEMENT_REVIEW_AGENT";
|
|
111
|
-
})(AssistantType || (AssistantType = {}));
|
|
112
153
|
var VendorModel;
|
|
113
154
|
(function (VendorModel) {
|
|
114
155
|
VendorModel[VendorModel["VENDOR_MODEL_UNSPECIFIED"] = 0] = "VENDOR_MODEL_UNSPECIFIED";
|
|
@@ -170,7 +211,7 @@ var SortDirection;
|
|
|
170
211
|
// Enums Index.
|
|
171
212
|
// *********************************
|
|
172
213
|
|
|
173
|
-
function enumStringToValue$
|
|
214
|
+
function enumStringToValue$e(enumRef, value) {
|
|
174
215
|
if (typeof value === 'number') {
|
|
175
216
|
return value;
|
|
176
217
|
}
|
|
@@ -292,6 +333,106 @@ class NamespaceSystemNamespace {
|
|
|
292
333
|
}
|
|
293
334
|
}
|
|
294
335
|
|
|
336
|
+
function enumStringToValue$d(enumRef, value) {
|
|
337
|
+
if (typeof value === 'number') {
|
|
338
|
+
return value;
|
|
339
|
+
}
|
|
340
|
+
return enumRef[value];
|
|
341
|
+
}
|
|
342
|
+
class Constraint {
|
|
343
|
+
static fromProto(proto) {
|
|
344
|
+
let m = new Constraint();
|
|
345
|
+
m = Object.assign(m, proto);
|
|
346
|
+
if (proto.action) {
|
|
347
|
+
m.action = enumStringToValue$d(Action, proto.action);
|
|
348
|
+
}
|
|
349
|
+
if (proto.scope) {
|
|
350
|
+
m.scope = Scope.fromProto(proto.scope);
|
|
351
|
+
}
|
|
352
|
+
if (proto.effect) {
|
|
353
|
+
m.effect = enumStringToValue$d(Effect, proto.effect);
|
|
354
|
+
}
|
|
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.action !== 'undefined') {
|
|
366
|
+
toReturn['action'] = this.action;
|
|
367
|
+
}
|
|
368
|
+
if (typeof this.scope !== 'undefined' && this.scope !== null) {
|
|
369
|
+
toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
|
|
370
|
+
}
|
|
371
|
+
if (typeof this.effect !== 'undefined') {
|
|
372
|
+
toReturn['effect'] = this.effect;
|
|
373
|
+
}
|
|
374
|
+
return toReturn;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
class ConstraintFilter {
|
|
378
|
+
static fromProto(proto) {
|
|
379
|
+
let m = new ConstraintFilter();
|
|
380
|
+
m = Object.assign(m, proto);
|
|
381
|
+
if (proto.action) {
|
|
382
|
+
m.action = enumStringToValue$d(Action, proto.action);
|
|
383
|
+
}
|
|
384
|
+
if (proto.scope) {
|
|
385
|
+
m.scope = Scope.fromProto(proto.scope);
|
|
386
|
+
}
|
|
387
|
+
return m;
|
|
388
|
+
}
|
|
389
|
+
constructor(kwargs) {
|
|
390
|
+
if (!kwargs) {
|
|
391
|
+
return;
|
|
392
|
+
}
|
|
393
|
+
Object.assign(this, kwargs);
|
|
394
|
+
}
|
|
395
|
+
toApiJson() {
|
|
396
|
+
const toReturn = {};
|
|
397
|
+
if (typeof this.action !== 'undefined') {
|
|
398
|
+
toReturn['action'] = this.action;
|
|
399
|
+
}
|
|
400
|
+
if (typeof this.scope !== 'undefined' && this.scope !== null) {
|
|
401
|
+
toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
|
|
402
|
+
}
|
|
403
|
+
return toReturn;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
class Scope {
|
|
407
|
+
static fromProto(proto) {
|
|
408
|
+
let m = new Scope();
|
|
409
|
+
m = Object.assign(m, proto);
|
|
410
|
+
if (proto.assistantNamespaceType) {
|
|
411
|
+
m.assistantNamespaceType = enumStringToValue$d(NamespaceType, proto.assistantNamespaceType);
|
|
412
|
+
}
|
|
413
|
+
if (proto.assistantType) {
|
|
414
|
+
m.assistantType = enumStringToValue$d(AssistantType, proto.assistantType);
|
|
415
|
+
}
|
|
416
|
+
return m;
|
|
417
|
+
}
|
|
418
|
+
constructor(kwargs) {
|
|
419
|
+
if (!kwargs) {
|
|
420
|
+
return;
|
|
421
|
+
}
|
|
422
|
+
Object.assign(this, kwargs);
|
|
423
|
+
}
|
|
424
|
+
toApiJson() {
|
|
425
|
+
const toReturn = {};
|
|
426
|
+
if (typeof this.assistantNamespaceType !== 'undefined') {
|
|
427
|
+
toReturn['assistantNamespaceType'] = this.assistantNamespaceType;
|
|
428
|
+
}
|
|
429
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
430
|
+
toReturn['assistantType'] = this.assistantType;
|
|
431
|
+
}
|
|
432
|
+
return toReturn;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
295
436
|
function enumStringToValue$c(enumRef, value) {
|
|
296
437
|
if (typeof value === 'number') {
|
|
297
438
|
return value;
|
|
@@ -360,6 +501,55 @@ function enumStringToValue$b(enumRef, value) {
|
|
|
360
501
|
}
|
|
361
502
|
return enumRef[value];
|
|
362
503
|
}
|
|
504
|
+
class FunctionAuthStrategyConnectedIntegrationAuthStrategy {
|
|
505
|
+
static fromProto(proto) {
|
|
506
|
+
let m = new FunctionAuthStrategyConnectedIntegrationAuthStrategy();
|
|
507
|
+
m = Object.assign(m, proto);
|
|
508
|
+
return m;
|
|
509
|
+
}
|
|
510
|
+
constructor(kwargs) {
|
|
511
|
+
if (!kwargs) {
|
|
512
|
+
return;
|
|
513
|
+
}
|
|
514
|
+
Object.assign(this, kwargs);
|
|
515
|
+
}
|
|
516
|
+
toApiJson() {
|
|
517
|
+
const toReturn = {};
|
|
518
|
+
if (typeof this.connectionId !== 'undefined') {
|
|
519
|
+
toReturn['connectionId'] = this.connectionId;
|
|
520
|
+
}
|
|
521
|
+
return toReturn;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
class CreateMCPFromIntegrationRequest {
|
|
525
|
+
static fromProto(proto) {
|
|
526
|
+
let m = new CreateMCPFromIntegrationRequest();
|
|
527
|
+
m = Object.assign(m, proto);
|
|
528
|
+
if (proto.namespace) {
|
|
529
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
530
|
+
}
|
|
531
|
+
return m;
|
|
532
|
+
}
|
|
533
|
+
constructor(kwargs) {
|
|
534
|
+
if (!kwargs) {
|
|
535
|
+
return;
|
|
536
|
+
}
|
|
537
|
+
Object.assign(this, kwargs);
|
|
538
|
+
}
|
|
539
|
+
toApiJson() {
|
|
540
|
+
const toReturn = {};
|
|
541
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
542
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
543
|
+
}
|
|
544
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
545
|
+
toReturn['mcpId'] = this.mcpId;
|
|
546
|
+
}
|
|
547
|
+
if (typeof this.connectionId !== 'undefined') {
|
|
548
|
+
toReturn['connectionId'] = this.connectionId;
|
|
549
|
+
}
|
|
550
|
+
return toReturn;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
363
553
|
class DeleteMCPRequest {
|
|
364
554
|
static fromProto(proto) {
|
|
365
555
|
let m = new DeleteMCPRequest();
|
|
@@ -431,6 +621,9 @@ class Function {
|
|
|
431
621
|
if (proto.authStrategy) {
|
|
432
622
|
m.authStrategy = FunctionAuthStrategy.fromProto(proto.authStrategy);
|
|
433
623
|
}
|
|
624
|
+
if (proto.constraints) {
|
|
625
|
+
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
626
|
+
}
|
|
434
627
|
return m;
|
|
435
628
|
}
|
|
436
629
|
constructor(kwargs) {
|
|
@@ -477,6 +670,9 @@ class Function {
|
|
|
477
670
|
if (typeof this.mcpId !== 'undefined') {
|
|
478
671
|
toReturn['mcpId'] = this.mcpId;
|
|
479
672
|
}
|
|
673
|
+
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
674
|
+
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
675
|
+
}
|
|
480
676
|
return toReturn;
|
|
481
677
|
}
|
|
482
678
|
}
|
|
@@ -490,6 +686,9 @@ class FunctionAuthStrategy {
|
|
|
490
686
|
if (proto.platformManaged) {
|
|
491
687
|
m.platformManaged = FunctionAuthStrategyPlatformManagedFunctionAuthStrategy.fromProto(proto.platformManaged);
|
|
492
688
|
}
|
|
689
|
+
if (proto.connectedIntegration) {
|
|
690
|
+
m.connectedIntegration = FunctionAuthStrategyConnectedIntegrationAuthStrategy.fromProto(proto.connectedIntegration);
|
|
691
|
+
}
|
|
493
692
|
return m;
|
|
494
693
|
}
|
|
495
694
|
constructor(kwargs) {
|
|
@@ -506,6 +705,9 @@ class FunctionAuthStrategy {
|
|
|
506
705
|
if (typeof this.platformManaged !== 'undefined' && this.platformManaged !== null) {
|
|
507
706
|
toReturn['platformManaged'] = 'toApiJson' in this.platformManaged ? this.platformManaged.toApiJson() : this.platformManaged;
|
|
508
707
|
}
|
|
708
|
+
if (typeof this.connectedIntegration !== 'undefined' && this.connectedIntegration !== null) {
|
|
709
|
+
toReturn['connectedIntegration'] = 'toApiJson' in this.connectedIntegration ? this.connectedIntegration.toApiJson() : this.connectedIntegration;
|
|
710
|
+
}
|
|
509
711
|
return toReturn;
|
|
510
712
|
}
|
|
511
713
|
}
|
|
@@ -1078,6 +1280,9 @@ class Goal {
|
|
|
1078
1280
|
if (proto.overrideOf) {
|
|
1079
1281
|
m.overrideOf = GoalKey.fromProto(proto.overrideOf);
|
|
1080
1282
|
}
|
|
1283
|
+
if (proto.constraints) {
|
|
1284
|
+
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
1285
|
+
}
|
|
1081
1286
|
return m;
|
|
1082
1287
|
}
|
|
1083
1288
|
constructor(kwargs) {
|
|
@@ -1124,6 +1329,9 @@ class Goal {
|
|
|
1124
1329
|
if (typeof this.overrideOf !== 'undefined' && this.overrideOf !== null) {
|
|
1125
1330
|
toReturn['overrideOf'] = 'toApiJson' in this.overrideOf ? this.overrideOf.toApiJson() : this.overrideOf;
|
|
1126
1331
|
}
|
|
1332
|
+
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
1333
|
+
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
1334
|
+
}
|
|
1127
1335
|
return toReturn;
|
|
1128
1336
|
}
|
|
1129
1337
|
}
|
|
@@ -3008,15 +3216,12 @@ class ExecuteFunctionResponse {
|
|
|
3008
3216
|
return toReturn;
|
|
3009
3217
|
}
|
|
3010
3218
|
}
|
|
3011
|
-
class
|
|
3219
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
3012
3220
|
static fromProto(proto) {
|
|
3013
|
-
let m = new
|
|
3221
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
3014
3222
|
m = Object.assign(m, proto);
|
|
3015
|
-
if (proto.
|
|
3016
|
-
m.
|
|
3017
|
-
}
|
|
3018
|
-
if (proto.namespaces) {
|
|
3019
|
-
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3223
|
+
if (proto.type) {
|
|
3224
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3020
3225
|
}
|
|
3021
3226
|
return m;
|
|
3022
3227
|
}
|
|
@@ -3028,25 +3233,22 @@ class ListFunctionRequestFilters {
|
|
|
3028
3233
|
}
|
|
3029
3234
|
toApiJson() {
|
|
3030
3235
|
const toReturn = {};
|
|
3031
|
-
if (typeof this.
|
|
3032
|
-
toReturn['
|
|
3033
|
-
}
|
|
3034
|
-
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3035
|
-
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3036
|
-
}
|
|
3037
|
-
if (typeof this.mcpId !== 'undefined') {
|
|
3038
|
-
toReturn['mcpId'] = this.mcpId;
|
|
3236
|
+
if (typeof this.type !== 'undefined') {
|
|
3237
|
+
toReturn['type'] = this.type;
|
|
3039
3238
|
}
|
|
3040
3239
|
return toReturn;
|
|
3041
3240
|
}
|
|
3042
3241
|
}
|
|
3043
|
-
class
|
|
3242
|
+
class ListConnectionsRequestFilters {
|
|
3044
3243
|
static fromProto(proto) {
|
|
3045
|
-
let m = new
|
|
3244
|
+
let m = new ListConnectionsRequestFilters();
|
|
3046
3245
|
m = Object.assign(m, proto);
|
|
3047
3246
|
if (proto.namespace) {
|
|
3048
3247
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3049
3248
|
}
|
|
3249
|
+
if (proto.assistantType) {
|
|
3250
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
3251
|
+
}
|
|
3050
3252
|
return m;
|
|
3051
3253
|
}
|
|
3052
3254
|
constructor(kwargs) {
|
|
@@ -3060,19 +3262,19 @@ class ListPromptModuleRequestFilters {
|
|
|
3060
3262
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3061
3263
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3062
3264
|
}
|
|
3265
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
3266
|
+
toReturn['assistantType'] = this.assistantType;
|
|
3267
|
+
}
|
|
3063
3268
|
return toReturn;
|
|
3064
3269
|
}
|
|
3065
3270
|
}
|
|
3066
|
-
class
|
|
3271
|
+
class ListPromptModuleRequestFilters {
|
|
3067
3272
|
static fromProto(proto) {
|
|
3068
|
-
let m = new
|
|
3273
|
+
let m = new ListPromptModuleRequestFilters();
|
|
3069
3274
|
m = Object.assign(m, proto);
|
|
3070
3275
|
if (proto.namespace) {
|
|
3071
3276
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3072
3277
|
}
|
|
3073
|
-
if (proto.type) {
|
|
3074
|
-
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3075
|
-
}
|
|
3076
3278
|
return m;
|
|
3077
3279
|
}
|
|
3078
3280
|
constructor(kwargs) {
|
|
@@ -3086,21 +3288,27 @@ class ListAssistantRequestFilters {
|
|
|
3086
3288
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3087
3289
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3088
3290
|
}
|
|
3089
|
-
if (typeof this.type !== 'undefined') {
|
|
3090
|
-
toReturn['type'] = this.type;
|
|
3091
|
-
}
|
|
3092
3291
|
return toReturn;
|
|
3093
3292
|
}
|
|
3094
3293
|
}
|
|
3095
|
-
class
|
|
3294
|
+
class ListGoalsRequestFilters {
|
|
3096
3295
|
static fromProto(proto) {
|
|
3097
|
-
let m = new
|
|
3296
|
+
let m = new ListGoalsRequestFilters();
|
|
3098
3297
|
m = Object.assign(m, proto);
|
|
3099
3298
|
if (proto.namespace) {
|
|
3100
3299
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3101
3300
|
}
|
|
3102
|
-
if (proto.
|
|
3103
|
-
m.
|
|
3301
|
+
if (proto.type) {
|
|
3302
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3303
|
+
}
|
|
3304
|
+
if (proto.supportedChannels) {
|
|
3305
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3306
|
+
}
|
|
3307
|
+
if (proto.namespaces) {
|
|
3308
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3309
|
+
}
|
|
3310
|
+
if (proto.constraintFilters) {
|
|
3311
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3104
3312
|
}
|
|
3105
3313
|
return m;
|
|
3106
3314
|
}
|
|
@@ -3115,8 +3323,17 @@ class ListConnectionsRequestFilters {
|
|
|
3115
3323
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3116
3324
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3117
3325
|
}
|
|
3118
|
-
if (typeof this.
|
|
3119
|
-
toReturn['
|
|
3326
|
+
if (typeof this.type !== 'undefined') {
|
|
3327
|
+
toReturn['type'] = this.type;
|
|
3328
|
+
}
|
|
3329
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3330
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3331
|
+
}
|
|
3332
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3333
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3334
|
+
}
|
|
3335
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3336
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3120
3337
|
}
|
|
3121
3338
|
return toReturn;
|
|
3122
3339
|
}
|
|
@@ -3150,22 +3367,19 @@ class ListAvailableModelsRequestFilters {
|
|
|
3150
3367
|
return toReturn;
|
|
3151
3368
|
}
|
|
3152
3369
|
}
|
|
3153
|
-
class
|
|
3370
|
+
class ListFunctionRequestFilters {
|
|
3154
3371
|
static fromProto(proto) {
|
|
3155
|
-
let m = new
|
|
3372
|
+
let m = new ListFunctionRequestFilters();
|
|
3156
3373
|
m = Object.assign(m, proto);
|
|
3157
3374
|
if (proto.namespace) {
|
|
3158
3375
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3159
3376
|
}
|
|
3160
|
-
if (proto.type) {
|
|
3161
|
-
m.type = enumStringToValue(GoalType, proto.type);
|
|
3162
|
-
}
|
|
3163
|
-
if (proto.supportedChannels) {
|
|
3164
|
-
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3165
|
-
}
|
|
3166
3377
|
if (proto.namespaces) {
|
|
3167
3378
|
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3168
3379
|
}
|
|
3380
|
+
if (proto.constraintFilters) {
|
|
3381
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3382
|
+
}
|
|
3169
3383
|
return m;
|
|
3170
3384
|
}
|
|
3171
3385
|
constructor(kwargs) {
|
|
@@ -3179,22 +3393,25 @@ class ListGoalsRequestFilters {
|
|
|
3179
3393
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3180
3394
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3181
3395
|
}
|
|
3182
|
-
if (typeof this.type !== 'undefined') {
|
|
3183
|
-
toReturn['type'] = this.type;
|
|
3184
|
-
}
|
|
3185
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
3186
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3187
|
-
}
|
|
3188
3396
|
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3189
3397
|
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3190
3398
|
}
|
|
3399
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
3400
|
+
toReturn['mcpId'] = this.mcpId;
|
|
3401
|
+
}
|
|
3402
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3403
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3404
|
+
}
|
|
3191
3405
|
return toReturn;
|
|
3192
3406
|
}
|
|
3193
3407
|
}
|
|
3194
|
-
class
|
|
3408
|
+
class ListAssistantRequestFilters {
|
|
3195
3409
|
static fromProto(proto) {
|
|
3196
|
-
let m = new
|
|
3410
|
+
let m = new ListAssistantRequestFilters();
|
|
3197
3411
|
m = Object.assign(m, proto);
|
|
3412
|
+
if (proto.namespace) {
|
|
3413
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3414
|
+
}
|
|
3198
3415
|
if (proto.type) {
|
|
3199
3416
|
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3200
3417
|
}
|
|
@@ -3208,6 +3425,9 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
3208
3425
|
}
|
|
3209
3426
|
toApiJson() {
|
|
3210
3427
|
const toReturn = {};
|
|
3428
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3429
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3430
|
+
}
|
|
3211
3431
|
if (typeof this.type !== 'undefined') {
|
|
3212
3432
|
toReturn['type'] = this.type;
|
|
3213
3433
|
}
|
|
@@ -4778,6 +4998,26 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4778
4998
|
return toReturn;
|
|
4779
4999
|
}
|
|
4780
5000
|
}
|
|
5001
|
+
class GetAssistantRequestOptions {
|
|
5002
|
+
static fromProto(proto) {
|
|
5003
|
+
let m = new GetAssistantRequestOptions();
|
|
5004
|
+
m = Object.assign(m, proto);
|
|
5005
|
+
return m;
|
|
5006
|
+
}
|
|
5007
|
+
constructor(kwargs) {
|
|
5008
|
+
if (!kwargs) {
|
|
5009
|
+
return;
|
|
5010
|
+
}
|
|
5011
|
+
Object.assign(this, kwargs);
|
|
5012
|
+
}
|
|
5013
|
+
toApiJson() {
|
|
5014
|
+
const toReturn = {};
|
|
5015
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5016
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
5017
|
+
}
|
|
5018
|
+
return toReturn;
|
|
5019
|
+
}
|
|
5020
|
+
}
|
|
4781
5021
|
class GenerateChatAnswerRequestOptions {
|
|
4782
5022
|
static fromProto(proto) {
|
|
4783
5023
|
let m = new GenerateChatAnswerRequestOptions();
|
|
@@ -4867,26 +5107,6 @@ class GetMultiAssistantRequestOptions {
|
|
|
4867
5107
|
return toReturn;
|
|
4868
5108
|
}
|
|
4869
5109
|
}
|
|
4870
|
-
class GetAssistantRequestOptions {
|
|
4871
|
-
static fromProto(proto) {
|
|
4872
|
-
let m = new GetAssistantRequestOptions();
|
|
4873
|
-
m = Object.assign(m, proto);
|
|
4874
|
-
return m;
|
|
4875
|
-
}
|
|
4876
|
-
constructor(kwargs) {
|
|
4877
|
-
if (!kwargs) {
|
|
4878
|
-
return;
|
|
4879
|
-
}
|
|
4880
|
-
Object.assign(this, kwargs);
|
|
4881
|
-
}
|
|
4882
|
-
toApiJson() {
|
|
4883
|
-
const toReturn = {};
|
|
4884
|
-
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
4885
|
-
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
4886
|
-
}
|
|
4887
|
-
return toReturn;
|
|
4888
|
-
}
|
|
4889
|
-
}
|
|
4890
5110
|
class SetAssistantConnectionsRequest {
|
|
4891
5111
|
static fromProto(proto) {
|
|
4892
5112
|
let m = new SetAssistantConnectionsRequest();
|
|
@@ -5400,6 +5620,10 @@ class FunctionApiService {
|
|
|
5400
5620
|
const request = (r.toApiJson) ? r : new DeleteMCPRequest(r);
|
|
5401
5621
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/DeleteMCP", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
5402
5622
|
}
|
|
5623
|
+
createMcpFromIntegration(r) {
|
|
5624
|
+
const request = (r.toApiJson) ? r : new CreateMCPFromIntegrationRequest(r);
|
|
5625
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/CreateMCPFromIntegration", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
5626
|
+
}
|
|
5403
5627
|
}
|
|
5404
5628
|
FunctionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5405
5629
|
FunctionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, providedIn: 'root' });
|
|
@@ -5707,5 +5931,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5707
5931
|
* Generated bundle index. Do not edit.
|
|
5708
5932
|
*/
|
|
5709
5933
|
|
|
5710
|
-
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 };
|
|
5934
|
+
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, 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, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
5711
5935
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|