@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.
- package/esm2020/lib/_internal/assistant.api.service.mjs +1 -1
- package/esm2020/lib/_internal/enums/api.enum.mjs +20 -0
- 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 +6 -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 +123 -75
- 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 +366 -87
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +366 -87
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +11 -0
- 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 +5 -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 +28 -19
- 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 +48 -36
- 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";
|
|
@@ -163,6 +204,26 @@ var SortDirection;
|
|
|
163
204
|
SortDirection[SortDirection["SORT_DIRECTION_DESCENDING"] = 2] = "SORT_DIRECTION_DESCENDING";
|
|
164
205
|
})(SortDirection || (SortDirection = {}));
|
|
165
206
|
|
|
207
|
+
// *********************************
|
|
208
|
+
// Code generated by sdkgen
|
|
209
|
+
// DO NOT EDIT!.
|
|
210
|
+
//
|
|
211
|
+
// Enums.
|
|
212
|
+
// *********************************
|
|
213
|
+
var StreamingGenerateChatAnswerResponseContentType;
|
|
214
|
+
(function (StreamingGenerateChatAnswerResponseContentType) {
|
|
215
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["CONTENT_TYPE_UNSPECIFIED"] = 0] = "CONTENT_TYPE_UNSPECIFIED";
|
|
216
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["REASONING"] = 1] = "REASONING";
|
|
217
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ANSWER"] = 2] = "ANSWER";
|
|
218
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ACTION_DESCRIPTION"] = 3] = "ACTION_DESCRIPTION";
|
|
219
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["WORKING"] = 4] = "WORKING";
|
|
220
|
+
})(StreamingGenerateChatAnswerResponseContentType || (StreamingGenerateChatAnswerResponseContentType = {}));
|
|
221
|
+
var ListGoalsRequestSortingOrder;
|
|
222
|
+
(function (ListGoalsRequestSortingOrder) {
|
|
223
|
+
ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_ASCENDING"] = 0] = "GOAL_SORTING_ORDER_ASCENDING";
|
|
224
|
+
ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_DESCENDING"] = 1] = "GOAL_SORTING_ORDER_DESCENDING";
|
|
225
|
+
})(ListGoalsRequestSortingOrder || (ListGoalsRequestSortingOrder = {}));
|
|
226
|
+
|
|
166
227
|
// *********************************
|
|
167
228
|
// Code generated by sdkgen
|
|
168
229
|
// DO NOT EDIT!.
|
|
@@ -170,7 +231,7 @@ var SortDirection;
|
|
|
170
231
|
// Enums Index.
|
|
171
232
|
// *********************************
|
|
172
233
|
|
|
173
|
-
function enumStringToValue$
|
|
234
|
+
function enumStringToValue$e(enumRef, value) {
|
|
174
235
|
if (typeof value === 'number') {
|
|
175
236
|
return value;
|
|
176
237
|
}
|
|
@@ -292,6 +353,106 @@ class NamespaceSystemNamespace {
|
|
|
292
353
|
}
|
|
293
354
|
}
|
|
294
355
|
|
|
356
|
+
function enumStringToValue$d(enumRef, value) {
|
|
357
|
+
if (typeof value === 'number') {
|
|
358
|
+
return value;
|
|
359
|
+
}
|
|
360
|
+
return enumRef[value];
|
|
361
|
+
}
|
|
362
|
+
class Constraint {
|
|
363
|
+
static fromProto(proto) {
|
|
364
|
+
let m = new Constraint();
|
|
365
|
+
m = Object.assign(m, proto);
|
|
366
|
+
if (proto.action) {
|
|
367
|
+
m.action = enumStringToValue$d(Action, proto.action);
|
|
368
|
+
}
|
|
369
|
+
if (proto.scope) {
|
|
370
|
+
m.scope = Scope.fromProto(proto.scope);
|
|
371
|
+
}
|
|
372
|
+
if (proto.effect) {
|
|
373
|
+
m.effect = enumStringToValue$d(Effect, proto.effect);
|
|
374
|
+
}
|
|
375
|
+
return m;
|
|
376
|
+
}
|
|
377
|
+
constructor(kwargs) {
|
|
378
|
+
if (!kwargs) {
|
|
379
|
+
return;
|
|
380
|
+
}
|
|
381
|
+
Object.assign(this, kwargs);
|
|
382
|
+
}
|
|
383
|
+
toApiJson() {
|
|
384
|
+
const toReturn = {};
|
|
385
|
+
if (typeof this.action !== 'undefined') {
|
|
386
|
+
toReturn['action'] = this.action;
|
|
387
|
+
}
|
|
388
|
+
if (typeof this.scope !== 'undefined' && this.scope !== null) {
|
|
389
|
+
toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
|
|
390
|
+
}
|
|
391
|
+
if (typeof this.effect !== 'undefined') {
|
|
392
|
+
toReturn['effect'] = this.effect;
|
|
393
|
+
}
|
|
394
|
+
return toReturn;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
class ConstraintFilter {
|
|
398
|
+
static fromProto(proto) {
|
|
399
|
+
let m = new ConstraintFilter();
|
|
400
|
+
m = Object.assign(m, proto);
|
|
401
|
+
if (proto.action) {
|
|
402
|
+
m.action = enumStringToValue$d(Action, proto.action);
|
|
403
|
+
}
|
|
404
|
+
if (proto.scope) {
|
|
405
|
+
m.scope = Scope.fromProto(proto.scope);
|
|
406
|
+
}
|
|
407
|
+
return m;
|
|
408
|
+
}
|
|
409
|
+
constructor(kwargs) {
|
|
410
|
+
if (!kwargs) {
|
|
411
|
+
return;
|
|
412
|
+
}
|
|
413
|
+
Object.assign(this, kwargs);
|
|
414
|
+
}
|
|
415
|
+
toApiJson() {
|
|
416
|
+
const toReturn = {};
|
|
417
|
+
if (typeof this.action !== 'undefined') {
|
|
418
|
+
toReturn['action'] = this.action;
|
|
419
|
+
}
|
|
420
|
+
if (typeof this.scope !== 'undefined' && this.scope !== null) {
|
|
421
|
+
toReturn['scope'] = 'toApiJson' in this.scope ? this.scope.toApiJson() : this.scope;
|
|
422
|
+
}
|
|
423
|
+
return toReturn;
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
class Scope {
|
|
427
|
+
static fromProto(proto) {
|
|
428
|
+
let m = new Scope();
|
|
429
|
+
m = Object.assign(m, proto);
|
|
430
|
+
if (proto.assistantNamespaceType) {
|
|
431
|
+
m.assistantNamespaceType = enumStringToValue$d(NamespaceType, proto.assistantNamespaceType);
|
|
432
|
+
}
|
|
433
|
+
if (proto.assistantType) {
|
|
434
|
+
m.assistantType = enumStringToValue$d(AssistantType, proto.assistantType);
|
|
435
|
+
}
|
|
436
|
+
return m;
|
|
437
|
+
}
|
|
438
|
+
constructor(kwargs) {
|
|
439
|
+
if (!kwargs) {
|
|
440
|
+
return;
|
|
441
|
+
}
|
|
442
|
+
Object.assign(this, kwargs);
|
|
443
|
+
}
|
|
444
|
+
toApiJson() {
|
|
445
|
+
const toReturn = {};
|
|
446
|
+
if (typeof this.assistantNamespaceType !== 'undefined') {
|
|
447
|
+
toReturn['assistantNamespaceType'] = this.assistantNamespaceType;
|
|
448
|
+
}
|
|
449
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
450
|
+
toReturn['assistantType'] = this.assistantType;
|
|
451
|
+
}
|
|
452
|
+
return toReturn;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
295
456
|
function enumStringToValue$c(enumRef, value) {
|
|
296
457
|
if (typeof value === 'number') {
|
|
297
458
|
return value;
|
|
@@ -360,6 +521,55 @@ function enumStringToValue$b(enumRef, value) {
|
|
|
360
521
|
}
|
|
361
522
|
return enumRef[value];
|
|
362
523
|
}
|
|
524
|
+
class FunctionAuthStrategyConnectedIntegrationAuthStrategy {
|
|
525
|
+
static fromProto(proto) {
|
|
526
|
+
let m = new FunctionAuthStrategyConnectedIntegrationAuthStrategy();
|
|
527
|
+
m = Object.assign(m, proto);
|
|
528
|
+
return m;
|
|
529
|
+
}
|
|
530
|
+
constructor(kwargs) {
|
|
531
|
+
if (!kwargs) {
|
|
532
|
+
return;
|
|
533
|
+
}
|
|
534
|
+
Object.assign(this, kwargs);
|
|
535
|
+
}
|
|
536
|
+
toApiJson() {
|
|
537
|
+
const toReturn = {};
|
|
538
|
+
if (typeof this.connectionId !== 'undefined') {
|
|
539
|
+
toReturn['connectionId'] = this.connectionId;
|
|
540
|
+
}
|
|
541
|
+
return toReturn;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
class CreateMCPFromIntegrationRequest {
|
|
545
|
+
static fromProto(proto) {
|
|
546
|
+
let m = new CreateMCPFromIntegrationRequest();
|
|
547
|
+
m = Object.assign(m, proto);
|
|
548
|
+
if (proto.namespace) {
|
|
549
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
550
|
+
}
|
|
551
|
+
return m;
|
|
552
|
+
}
|
|
553
|
+
constructor(kwargs) {
|
|
554
|
+
if (!kwargs) {
|
|
555
|
+
return;
|
|
556
|
+
}
|
|
557
|
+
Object.assign(this, kwargs);
|
|
558
|
+
}
|
|
559
|
+
toApiJson() {
|
|
560
|
+
const toReturn = {};
|
|
561
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
562
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
563
|
+
}
|
|
564
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
565
|
+
toReturn['mcpId'] = this.mcpId;
|
|
566
|
+
}
|
|
567
|
+
if (typeof this.connectionId !== 'undefined') {
|
|
568
|
+
toReturn['connectionId'] = this.connectionId;
|
|
569
|
+
}
|
|
570
|
+
return toReturn;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
363
573
|
class DeleteMCPRequest {
|
|
364
574
|
static fromProto(proto) {
|
|
365
575
|
let m = new DeleteMCPRequest();
|
|
@@ -431,6 +641,9 @@ class Function {
|
|
|
431
641
|
if (proto.authStrategy) {
|
|
432
642
|
m.authStrategy = FunctionAuthStrategy.fromProto(proto.authStrategy);
|
|
433
643
|
}
|
|
644
|
+
if (proto.constraints) {
|
|
645
|
+
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
646
|
+
}
|
|
434
647
|
return m;
|
|
435
648
|
}
|
|
436
649
|
constructor(kwargs) {
|
|
@@ -477,6 +690,9 @@ class Function {
|
|
|
477
690
|
if (typeof this.mcpId !== 'undefined') {
|
|
478
691
|
toReturn['mcpId'] = this.mcpId;
|
|
479
692
|
}
|
|
693
|
+
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
694
|
+
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
695
|
+
}
|
|
480
696
|
return toReturn;
|
|
481
697
|
}
|
|
482
698
|
}
|
|
@@ -490,6 +706,9 @@ class FunctionAuthStrategy {
|
|
|
490
706
|
if (proto.platformManaged) {
|
|
491
707
|
m.platformManaged = FunctionAuthStrategyPlatformManagedFunctionAuthStrategy.fromProto(proto.platformManaged);
|
|
492
708
|
}
|
|
709
|
+
if (proto.connectedIntegration) {
|
|
710
|
+
m.connectedIntegration = FunctionAuthStrategyConnectedIntegrationAuthStrategy.fromProto(proto.connectedIntegration);
|
|
711
|
+
}
|
|
493
712
|
return m;
|
|
494
713
|
}
|
|
495
714
|
constructor(kwargs) {
|
|
@@ -506,6 +725,9 @@ class FunctionAuthStrategy {
|
|
|
506
725
|
if (typeof this.platformManaged !== 'undefined' && this.platformManaged !== null) {
|
|
507
726
|
toReturn['platformManaged'] = 'toApiJson' in this.platformManaged ? this.platformManaged.toApiJson() : this.platformManaged;
|
|
508
727
|
}
|
|
728
|
+
if (typeof this.connectedIntegration !== 'undefined' && this.connectedIntegration !== null) {
|
|
729
|
+
toReturn['connectedIntegration'] = 'toApiJson' in this.connectedIntegration ? this.connectedIntegration.toApiJson() : this.connectedIntegration;
|
|
730
|
+
}
|
|
509
731
|
return toReturn;
|
|
510
732
|
}
|
|
511
733
|
}
|
|
@@ -1078,6 +1300,9 @@ class Goal {
|
|
|
1078
1300
|
if (proto.overrideOf) {
|
|
1079
1301
|
m.overrideOf = GoalKey.fromProto(proto.overrideOf);
|
|
1080
1302
|
}
|
|
1303
|
+
if (proto.constraints) {
|
|
1304
|
+
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
1305
|
+
}
|
|
1081
1306
|
return m;
|
|
1082
1307
|
}
|
|
1083
1308
|
constructor(kwargs) {
|
|
@@ -1124,6 +1349,9 @@ class Goal {
|
|
|
1124
1349
|
if (typeof this.overrideOf !== 'undefined' && this.overrideOf !== null) {
|
|
1125
1350
|
toReturn['overrideOf'] = 'toApiJson' in this.overrideOf ? this.overrideOf.toApiJson() : this.overrideOf;
|
|
1126
1351
|
}
|
|
1352
|
+
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
1353
|
+
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
1354
|
+
}
|
|
1127
1355
|
return toReturn;
|
|
1128
1356
|
}
|
|
1129
1357
|
}
|
|
@@ -3008,15 +3236,12 @@ class ExecuteFunctionResponse {
|
|
|
3008
3236
|
return toReturn;
|
|
3009
3237
|
}
|
|
3010
3238
|
}
|
|
3011
|
-
class
|
|
3239
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
3012
3240
|
static fromProto(proto) {
|
|
3013
|
-
let m = new
|
|
3241
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
3014
3242
|
m = Object.assign(m, proto);
|
|
3015
|
-
if (proto.
|
|
3016
|
-
m.
|
|
3017
|
-
}
|
|
3018
|
-
if (proto.namespaces) {
|
|
3019
|
-
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3243
|
+
if (proto.type) {
|
|
3244
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3020
3245
|
}
|
|
3021
3246
|
return m;
|
|
3022
3247
|
}
|
|
@@ -3028,25 +3253,22 @@ class ListFunctionRequestFilters {
|
|
|
3028
3253
|
}
|
|
3029
3254
|
toApiJson() {
|
|
3030
3255
|
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;
|
|
3256
|
+
if (typeof this.type !== 'undefined') {
|
|
3257
|
+
toReturn['type'] = this.type;
|
|
3039
3258
|
}
|
|
3040
3259
|
return toReturn;
|
|
3041
3260
|
}
|
|
3042
3261
|
}
|
|
3043
|
-
class
|
|
3262
|
+
class ListConnectionsRequestFilters {
|
|
3044
3263
|
static fromProto(proto) {
|
|
3045
|
-
let m = new
|
|
3264
|
+
let m = new ListConnectionsRequestFilters();
|
|
3046
3265
|
m = Object.assign(m, proto);
|
|
3047
3266
|
if (proto.namespace) {
|
|
3048
3267
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3049
3268
|
}
|
|
3269
|
+
if (proto.assistantType) {
|
|
3270
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
3271
|
+
}
|
|
3050
3272
|
return m;
|
|
3051
3273
|
}
|
|
3052
3274
|
constructor(kwargs) {
|
|
@@ -3060,19 +3282,19 @@ class ListPromptModuleRequestFilters {
|
|
|
3060
3282
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3061
3283
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3062
3284
|
}
|
|
3285
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
3286
|
+
toReturn['assistantType'] = this.assistantType;
|
|
3287
|
+
}
|
|
3063
3288
|
return toReturn;
|
|
3064
3289
|
}
|
|
3065
3290
|
}
|
|
3066
|
-
class
|
|
3291
|
+
class ListPromptModuleRequestFilters {
|
|
3067
3292
|
static fromProto(proto) {
|
|
3068
|
-
let m = new
|
|
3293
|
+
let m = new ListPromptModuleRequestFilters();
|
|
3069
3294
|
m = Object.assign(m, proto);
|
|
3070
3295
|
if (proto.namespace) {
|
|
3071
3296
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3072
3297
|
}
|
|
3073
|
-
if (proto.type) {
|
|
3074
|
-
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3075
|
-
}
|
|
3076
3298
|
return m;
|
|
3077
3299
|
}
|
|
3078
3300
|
constructor(kwargs) {
|
|
@@ -3086,21 +3308,30 @@ class ListAssistantRequestFilters {
|
|
|
3086
3308
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3087
3309
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3088
3310
|
}
|
|
3089
|
-
if (typeof this.type !== 'undefined') {
|
|
3090
|
-
toReturn['type'] = this.type;
|
|
3091
|
-
}
|
|
3092
3311
|
return toReturn;
|
|
3093
3312
|
}
|
|
3094
3313
|
}
|
|
3095
|
-
class
|
|
3314
|
+
class ListGoalsRequestFilters {
|
|
3096
3315
|
static fromProto(proto) {
|
|
3097
|
-
let m = new
|
|
3316
|
+
let m = new ListGoalsRequestFilters();
|
|
3098
3317
|
m = Object.assign(m, proto);
|
|
3099
3318
|
if (proto.namespace) {
|
|
3100
3319
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3101
3320
|
}
|
|
3102
|
-
if (proto.
|
|
3103
|
-
m.
|
|
3321
|
+
if (proto.type) {
|
|
3322
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3323
|
+
}
|
|
3324
|
+
if (proto.supportedChannels) {
|
|
3325
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3326
|
+
}
|
|
3327
|
+
if (proto.namespaces) {
|
|
3328
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3329
|
+
}
|
|
3330
|
+
if (proto.constraintFilters) {
|
|
3331
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3332
|
+
}
|
|
3333
|
+
if (proto.sortOptions) {
|
|
3334
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3104
3335
|
}
|
|
3105
3336
|
return m;
|
|
3106
3337
|
}
|
|
@@ -3115,8 +3346,23 @@ class ListConnectionsRequestFilters {
|
|
|
3115
3346
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3116
3347
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3117
3348
|
}
|
|
3118
|
-
if (typeof this.
|
|
3119
|
-
toReturn['
|
|
3349
|
+
if (typeof this.type !== 'undefined') {
|
|
3350
|
+
toReturn['type'] = this.type;
|
|
3351
|
+
}
|
|
3352
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3353
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3354
|
+
}
|
|
3355
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3356
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3357
|
+
}
|
|
3358
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3359
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3360
|
+
}
|
|
3361
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3362
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3363
|
+
}
|
|
3364
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3365
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3120
3366
|
}
|
|
3121
3367
|
return toReturn;
|
|
3122
3368
|
}
|
|
@@ -3150,22 +3396,19 @@ class ListAvailableModelsRequestFilters {
|
|
|
3150
3396
|
return toReturn;
|
|
3151
3397
|
}
|
|
3152
3398
|
}
|
|
3153
|
-
class
|
|
3399
|
+
class ListFunctionRequestFilters {
|
|
3154
3400
|
static fromProto(proto) {
|
|
3155
|
-
let m = new
|
|
3401
|
+
let m = new ListFunctionRequestFilters();
|
|
3156
3402
|
m = Object.assign(m, proto);
|
|
3157
3403
|
if (proto.namespace) {
|
|
3158
3404
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3159
3405
|
}
|
|
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
3406
|
if (proto.namespaces) {
|
|
3167
3407
|
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3168
3408
|
}
|
|
3409
|
+
if (proto.constraintFilters) {
|
|
3410
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3411
|
+
}
|
|
3169
3412
|
return m;
|
|
3170
3413
|
}
|
|
3171
3414
|
constructor(kwargs) {
|
|
@@ -3179,22 +3422,25 @@ class ListGoalsRequestFilters {
|
|
|
3179
3422
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3180
3423
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3181
3424
|
}
|
|
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
3425
|
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3189
3426
|
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3190
3427
|
}
|
|
3428
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
3429
|
+
toReturn['mcpId'] = this.mcpId;
|
|
3430
|
+
}
|
|
3431
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3432
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3433
|
+
}
|
|
3191
3434
|
return toReturn;
|
|
3192
3435
|
}
|
|
3193
3436
|
}
|
|
3194
|
-
class
|
|
3437
|
+
class ListAssistantRequestFilters {
|
|
3195
3438
|
static fromProto(proto) {
|
|
3196
|
-
let m = new
|
|
3439
|
+
let m = new ListAssistantRequestFilters();
|
|
3197
3440
|
m = Object.assign(m, proto);
|
|
3441
|
+
if (proto.namespace) {
|
|
3442
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3443
|
+
}
|
|
3198
3444
|
if (proto.type) {
|
|
3199
3445
|
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3200
3446
|
}
|
|
@@ -3208,6 +3454,9 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
3208
3454
|
}
|
|
3209
3455
|
toApiJson() {
|
|
3210
3456
|
const toReturn = {};
|
|
3457
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3458
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3459
|
+
}
|
|
3211
3460
|
if (typeof this.type !== 'undefined') {
|
|
3212
3461
|
toReturn['type'] = this.type;
|
|
3213
3462
|
}
|
|
@@ -4758,10 +5007,13 @@ class ListPromptVersionsResponse {
|
|
|
4758
5007
|
return toReturn;
|
|
4759
5008
|
}
|
|
4760
5009
|
}
|
|
4761
|
-
class
|
|
5010
|
+
class GenerateChatAnswerRequestOptions {
|
|
4762
5011
|
static fromProto(proto) {
|
|
4763
|
-
let m = new
|
|
5012
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4764
5013
|
m = Object.assign(m, proto);
|
|
5014
|
+
if (proto.maxTokens) {
|
|
5015
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5016
|
+
}
|
|
4765
5017
|
return m;
|
|
4766
5018
|
}
|
|
4767
5019
|
constructor(kwargs) {
|
|
@@ -4772,19 +5024,22 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4772
5024
|
}
|
|
4773
5025
|
toApiJson() {
|
|
4774
5026
|
const toReturn = {};
|
|
4775
|
-
if (typeof this.
|
|
4776
|
-
toReturn['
|
|
5027
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5028
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5029
|
+
}
|
|
5030
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5031
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5032
|
+
}
|
|
5033
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5034
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
4777
5035
|
}
|
|
4778
5036
|
return toReturn;
|
|
4779
5037
|
}
|
|
4780
5038
|
}
|
|
4781
|
-
class
|
|
5039
|
+
class GetMultiAssistantRequestOptions {
|
|
4782
5040
|
static fromProto(proto) {
|
|
4783
|
-
let m = new
|
|
5041
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
4784
5042
|
m = Object.assign(m, proto);
|
|
4785
|
-
if (proto.maxTokens) {
|
|
4786
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4787
|
-
}
|
|
4788
5043
|
return m;
|
|
4789
5044
|
}
|
|
4790
5045
|
constructor(kwargs) {
|
|
@@ -4795,21 +5050,15 @@ class GenerateChatAnswerRequestOptions {
|
|
|
4795
5050
|
}
|
|
4796
5051
|
toApiJson() {
|
|
4797
5052
|
const toReturn = {};
|
|
4798
|
-
if (typeof this.
|
|
4799
|
-
toReturn['
|
|
4800
|
-
}
|
|
4801
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4802
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4803
|
-
}
|
|
4804
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
4805
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
5053
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5054
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
4806
5055
|
}
|
|
4807
5056
|
return toReturn;
|
|
4808
5057
|
}
|
|
4809
5058
|
}
|
|
4810
|
-
class
|
|
5059
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
4811
5060
|
static fromProto(proto) {
|
|
4812
|
-
let m = new
|
|
5061
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
4813
5062
|
m = Object.assign(m, proto);
|
|
4814
5063
|
return m;
|
|
4815
5064
|
}
|
|
@@ -4821,15 +5070,15 @@ class UpsertAssistantRequestOptions {
|
|
|
4821
5070
|
}
|
|
4822
5071
|
toApiJson() {
|
|
4823
5072
|
const toReturn = {};
|
|
4824
|
-
if (typeof this.
|
|
4825
|
-
toReturn['
|
|
5073
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5074
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
4826
5075
|
}
|
|
4827
5076
|
return toReturn;
|
|
4828
5077
|
}
|
|
4829
5078
|
}
|
|
4830
|
-
class
|
|
5079
|
+
class UpsertAssistantRequestOptions {
|
|
4831
5080
|
static fromProto(proto) {
|
|
4832
|
-
let m = new
|
|
5081
|
+
let m = new UpsertAssistantRequestOptions();
|
|
4833
5082
|
m = Object.assign(m, proto);
|
|
4834
5083
|
return m;
|
|
4835
5084
|
}
|
|
@@ -4847,9 +5096,9 @@ class CreateAssistantRequestOptions {
|
|
|
4847
5096
|
return toReturn;
|
|
4848
5097
|
}
|
|
4849
5098
|
}
|
|
4850
|
-
class
|
|
5099
|
+
class CreateAssistantRequestOptions {
|
|
4851
5100
|
static fromProto(proto) {
|
|
4852
|
-
let m = new
|
|
5101
|
+
let m = new CreateAssistantRequestOptions();
|
|
4853
5102
|
m = Object.assign(m, proto);
|
|
4854
5103
|
return m;
|
|
4855
5104
|
}
|
|
@@ -4861,8 +5110,8 @@ class GetMultiAssistantRequestOptions {
|
|
|
4861
5110
|
}
|
|
4862
5111
|
toApiJson() {
|
|
4863
5112
|
const toReturn = {};
|
|
4864
|
-
if (typeof this.
|
|
4865
|
-
toReturn['
|
|
5113
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5114
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
4866
5115
|
}
|
|
4867
5116
|
return toReturn;
|
|
4868
5117
|
}
|
|
@@ -4916,6 +5165,32 @@ class SetAssistantConnectionsRequest {
|
|
|
4916
5165
|
return toReturn;
|
|
4917
5166
|
}
|
|
4918
5167
|
}
|
|
5168
|
+
class ListGoalsRequestSortOptions {
|
|
5169
|
+
static fromProto(proto) {
|
|
5170
|
+
let m = new ListGoalsRequestSortOptions();
|
|
5171
|
+
m = Object.assign(m, proto);
|
|
5172
|
+
if (proto.order) {
|
|
5173
|
+
m.order = enumStringToValue(ListGoalsRequestSortingOrder, proto.order);
|
|
5174
|
+
}
|
|
5175
|
+
return m;
|
|
5176
|
+
}
|
|
5177
|
+
constructor(kwargs) {
|
|
5178
|
+
if (!kwargs) {
|
|
5179
|
+
return;
|
|
5180
|
+
}
|
|
5181
|
+
Object.assign(this, kwargs);
|
|
5182
|
+
}
|
|
5183
|
+
toApiJson() {
|
|
5184
|
+
const toReturn = {};
|
|
5185
|
+
if (typeof this.field !== 'undefined') {
|
|
5186
|
+
toReturn['field'] = this.field;
|
|
5187
|
+
}
|
|
5188
|
+
if (typeof this.order !== 'undefined') {
|
|
5189
|
+
toReturn['order'] = this.order;
|
|
5190
|
+
}
|
|
5191
|
+
return toReturn;
|
|
5192
|
+
}
|
|
5193
|
+
}
|
|
4919
5194
|
class UpdateAssistantRequest {
|
|
4920
5195
|
static fromProto(proto) {
|
|
4921
5196
|
let m = new UpdateAssistantRequest();
|
|
@@ -5400,6 +5675,10 @@ class FunctionApiService {
|
|
|
5400
5675
|
const request = (r.toApiJson) ? r : new DeleteMCPRequest(r);
|
|
5401
5676
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/DeleteMCP", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
5402
5677
|
}
|
|
5678
|
+
createMcpFromIntegration(r) {
|
|
5679
|
+
const request = (r.toApiJson) ? r : new CreateMCPFromIntegrationRequest(r);
|
|
5680
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/CreateMCPFromIntegration", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
5681
|
+
}
|
|
5403
5682
|
}
|
|
5404
5683
|
FunctionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5405
5684
|
FunctionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, providedIn: 'root' });
|
|
@@ -5707,5 +5986,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5707
5986
|
* Generated bundle index. Do not edit.
|
|
5708
5987
|
*/
|
|
5709
5988
|
|
|
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 };
|
|
5989
|
+
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 };
|
|
5711
5990
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|