@vendasta/ai-assistants 0.61.0 → 0.63.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/connection.api.service.mjs +6 -2
- package/esm2020/lib/_internal/function.api.service.mjs +12 -2
- package/esm2020/lib/_internal/goal.api.service.mjs +7 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- 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/interfaces/prompt.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +137 -102
- package/esm2020/lib/_internal/objects/function.mjs +111 -1
- package/esm2020/lib/_internal/objects/goal.mjs +47 -1
- package/esm2020/lib/_internal/objects/index.mjs +5 -5
- package/esm2020/lib/_internal/objects/prompt.mjs +53 -1
- package/esm2020/lib/_internal/prompt-module.api.service.mjs +7 -2
- package/fesm2015/vendasta-ai-assistants.mjs +369 -102
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +369 -102
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/connection.api.service.d.ts +3 -2
- package/lib/_internal/function.api.service.d.ts +4 -2
- package/lib/_internal/goal.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +26 -20
- package/lib/_internal/interfaces/function.interface.d.ts +18 -0
- package/lib/_internal/interfaces/goal.interface.d.ts +7 -0
- package/lib/_internal/interfaces/index.d.ts +4 -4
- package/lib/_internal/interfaces/prompt.interface.d.ts +9 -0
- package/lib/_internal/objects/api.d.ts +44 -35
- package/lib/_internal/objects/function.d.ts +30 -0
- package/lib/_internal/objects/goal.d.ts +13 -0
- package/lib/_internal/objects/index.d.ts +4 -4
- package/lib/_internal/objects/prompt.d.ts +15 -0
- package/lib/_internal/prompt-module.api.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -584,6 +584,9 @@ class CreateMCPFromIntegrationRequest {
|
|
|
584
584
|
if (typeof this.connectionId !== 'undefined') {
|
|
585
585
|
toReturn['connectionId'] = this.connectionId;
|
|
586
586
|
}
|
|
587
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
588
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
589
|
+
}
|
|
587
590
|
return toReturn;
|
|
588
591
|
}
|
|
589
592
|
}
|
|
@@ -710,6 +713,9 @@ class Function {
|
|
|
710
713
|
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
711
714
|
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
712
715
|
}
|
|
716
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
717
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
718
|
+
}
|
|
713
719
|
return toReturn;
|
|
714
720
|
}
|
|
715
721
|
}
|
|
@@ -1030,6 +1036,9 @@ class MCP {
|
|
|
1030
1036
|
if (typeof this.authStrategy !== 'undefined' && this.authStrategy !== null) {
|
|
1031
1037
|
toReturn['authStrategy'] = 'toApiJson' in this.authStrategy ? this.authStrategy.toApiJson() : this.authStrategy;
|
|
1032
1038
|
}
|
|
1039
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
1040
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
1041
|
+
}
|
|
1033
1042
|
return toReturn;
|
|
1034
1043
|
}
|
|
1035
1044
|
}
|
|
@@ -1053,6 +1062,104 @@ class FunctionAuthStrategyPlatformManagedFunctionAuthStrategy {
|
|
|
1053
1062
|
return toReturn;
|
|
1054
1063
|
}
|
|
1055
1064
|
}
|
|
1065
|
+
class SerializeFunctionRequest {
|
|
1066
|
+
static fromProto(proto) {
|
|
1067
|
+
let m = new SerializeFunctionRequest();
|
|
1068
|
+
m = Object.assign(m, proto);
|
|
1069
|
+
if (proto.function) {
|
|
1070
|
+
m.function = Function.fromProto(proto.function);
|
|
1071
|
+
}
|
|
1072
|
+
return m;
|
|
1073
|
+
}
|
|
1074
|
+
constructor(kwargs) {
|
|
1075
|
+
if (!kwargs) {
|
|
1076
|
+
return;
|
|
1077
|
+
}
|
|
1078
|
+
Object.assign(this, kwargs);
|
|
1079
|
+
}
|
|
1080
|
+
toApiJson() {
|
|
1081
|
+
const toReturn = {};
|
|
1082
|
+
if (typeof this.function !== 'undefined' && this.function !== null) {
|
|
1083
|
+
toReturn['function'] = 'toApiJson' in this.function ? this.function.toApiJson() : this.function;
|
|
1084
|
+
}
|
|
1085
|
+
return toReturn;
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
class SerializeFunctionResponse {
|
|
1089
|
+
static fromProto(proto) {
|
|
1090
|
+
let m = new SerializeFunctionResponse();
|
|
1091
|
+
m = Object.assign(m, proto);
|
|
1092
|
+
return m;
|
|
1093
|
+
}
|
|
1094
|
+
constructor(kwargs) {
|
|
1095
|
+
if (!kwargs) {
|
|
1096
|
+
return;
|
|
1097
|
+
}
|
|
1098
|
+
Object.assign(this, kwargs);
|
|
1099
|
+
}
|
|
1100
|
+
toApiJson() {
|
|
1101
|
+
const toReturn = {};
|
|
1102
|
+
if (typeof this.file !== 'undefined') {
|
|
1103
|
+
toReturn['file'] = this.file;
|
|
1104
|
+
}
|
|
1105
|
+
return toReturn;
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
class SerializeMCPRequest {
|
|
1109
|
+
static fromProto(proto) {
|
|
1110
|
+
let m = new SerializeMCPRequest();
|
|
1111
|
+
m = Object.assign(m, proto);
|
|
1112
|
+
if (proto.mcp) {
|
|
1113
|
+
m.mcp = MCP.fromProto(proto.mcp);
|
|
1114
|
+
}
|
|
1115
|
+
if (proto.headers) {
|
|
1116
|
+
m.headers = proto.headers.map(FunctionHeader.fromProto);
|
|
1117
|
+
}
|
|
1118
|
+
if (proto.constraints) {
|
|
1119
|
+
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
1120
|
+
}
|
|
1121
|
+
return m;
|
|
1122
|
+
}
|
|
1123
|
+
constructor(kwargs) {
|
|
1124
|
+
if (!kwargs) {
|
|
1125
|
+
return;
|
|
1126
|
+
}
|
|
1127
|
+
Object.assign(this, kwargs);
|
|
1128
|
+
}
|
|
1129
|
+
toApiJson() {
|
|
1130
|
+
const toReturn = {};
|
|
1131
|
+
if (typeof this.mcp !== 'undefined' && this.mcp !== null) {
|
|
1132
|
+
toReturn['mcp'] = 'toApiJson' in this.mcp ? this.mcp.toApiJson() : this.mcp;
|
|
1133
|
+
}
|
|
1134
|
+
if (typeof this.headers !== 'undefined' && this.headers !== null) {
|
|
1135
|
+
toReturn['headers'] = 'toApiJson' in this.headers ? this.headers.toApiJson() : this.headers;
|
|
1136
|
+
}
|
|
1137
|
+
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
1138
|
+
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
1139
|
+
}
|
|
1140
|
+
return toReturn;
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
class SerializeMCPResponse {
|
|
1144
|
+
static fromProto(proto) {
|
|
1145
|
+
let m = new SerializeMCPResponse();
|
|
1146
|
+
m = Object.assign(m, proto);
|
|
1147
|
+
return m;
|
|
1148
|
+
}
|
|
1149
|
+
constructor(kwargs) {
|
|
1150
|
+
if (!kwargs) {
|
|
1151
|
+
return;
|
|
1152
|
+
}
|
|
1153
|
+
Object.assign(this, kwargs);
|
|
1154
|
+
}
|
|
1155
|
+
toApiJson() {
|
|
1156
|
+
const toReturn = {};
|
|
1157
|
+
if (typeof this.file !== 'undefined') {
|
|
1158
|
+
toReturn['file'] = this.file;
|
|
1159
|
+
}
|
|
1160
|
+
return toReturn;
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1056
1163
|
class FunctionAuthStrategyUnspecifiedFunctionAuthStrategy {
|
|
1057
1164
|
static fromProto(proto) {
|
|
1058
1165
|
let m = new FunctionAuthStrategyUnspecifiedFunctionAuthStrategy();
|
|
@@ -1108,6 +1215,9 @@ class UpsertMCPRequest {
|
|
|
1108
1215
|
if (typeof this.authStrategy !== 'undefined' && this.authStrategy !== null) {
|
|
1109
1216
|
toReturn['authStrategy'] = 'toApiJson' in this.authStrategy ? this.authStrategy.toApiJson() : this.authStrategy;
|
|
1110
1217
|
}
|
|
1218
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
1219
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
1220
|
+
}
|
|
1111
1221
|
return toReturn;
|
|
1112
1222
|
}
|
|
1113
1223
|
}
|
|
@@ -1330,6 +1440,9 @@ class PromptModule {
|
|
|
1330
1440
|
if (typeof this.managed !== 'undefined') {
|
|
1331
1441
|
toReturn['managed'] = this.managed;
|
|
1332
1442
|
}
|
|
1443
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
1444
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
1445
|
+
}
|
|
1333
1446
|
return toReturn;
|
|
1334
1447
|
}
|
|
1335
1448
|
}
|
|
@@ -1400,6 +1513,55 @@ class PromptModuleVersion {
|
|
|
1400
1513
|
return toReturn;
|
|
1401
1514
|
}
|
|
1402
1515
|
}
|
|
1516
|
+
class SerializePromptModuleRequest {
|
|
1517
|
+
static fromProto(proto) {
|
|
1518
|
+
let m = new SerializePromptModuleRequest();
|
|
1519
|
+
m = Object.assign(m, proto);
|
|
1520
|
+
if (proto.promptModule) {
|
|
1521
|
+
m.promptModule = PromptModule.fromProto(proto.promptModule);
|
|
1522
|
+
}
|
|
1523
|
+
return m;
|
|
1524
|
+
}
|
|
1525
|
+
constructor(kwargs) {
|
|
1526
|
+
if (!kwargs) {
|
|
1527
|
+
return;
|
|
1528
|
+
}
|
|
1529
|
+
Object.assign(this, kwargs);
|
|
1530
|
+
}
|
|
1531
|
+
toApiJson() {
|
|
1532
|
+
const toReturn = {};
|
|
1533
|
+
if (typeof this.promptModule !== 'undefined' && this.promptModule !== null) {
|
|
1534
|
+
toReturn['promptModule'] = 'toApiJson' in this.promptModule ? this.promptModule.toApiJson() : this.promptModule;
|
|
1535
|
+
}
|
|
1536
|
+
if (typeof this.content !== 'undefined') {
|
|
1537
|
+
toReturn['content'] = this.content;
|
|
1538
|
+
}
|
|
1539
|
+
return toReturn;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
class SerializePromptModuleResponse {
|
|
1543
|
+
static fromProto(proto) {
|
|
1544
|
+
let m = new SerializePromptModuleResponse();
|
|
1545
|
+
m = Object.assign(m, proto);
|
|
1546
|
+
return m;
|
|
1547
|
+
}
|
|
1548
|
+
constructor(kwargs) {
|
|
1549
|
+
if (!kwargs) {
|
|
1550
|
+
return;
|
|
1551
|
+
}
|
|
1552
|
+
Object.assign(this, kwargs);
|
|
1553
|
+
}
|
|
1554
|
+
toApiJson() {
|
|
1555
|
+
const toReturn = {};
|
|
1556
|
+
if (typeof this.promptModuleFile !== 'undefined') {
|
|
1557
|
+
toReturn['promptModuleFile'] = this.promptModuleFile;
|
|
1558
|
+
}
|
|
1559
|
+
if (typeof this.contentFile !== 'undefined') {
|
|
1560
|
+
toReturn['contentFile'] = this.contentFile;
|
|
1561
|
+
}
|
|
1562
|
+
return toReturn;
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1403
1565
|
|
|
1404
1566
|
function enumStringToValue$9(enumRef, value) {
|
|
1405
1567
|
if (typeof value === 'number') {
|
|
@@ -1484,6 +1646,9 @@ class Goal {
|
|
|
1484
1646
|
if (typeof this.constraints !== 'undefined' && this.constraints !== null) {
|
|
1485
1647
|
toReturn['constraints'] = 'toApiJson' in this.constraints ? this.constraints.toApiJson() : this.constraints;
|
|
1486
1648
|
}
|
|
1649
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
1650
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
1651
|
+
}
|
|
1487
1652
|
return toReturn;
|
|
1488
1653
|
}
|
|
1489
1654
|
}
|
|
@@ -1513,6 +1678,49 @@ class GoalKey {
|
|
|
1513
1678
|
return toReturn;
|
|
1514
1679
|
}
|
|
1515
1680
|
}
|
|
1681
|
+
class SerializeGoalRequest {
|
|
1682
|
+
static fromProto(proto) {
|
|
1683
|
+
let m = new SerializeGoalRequest();
|
|
1684
|
+
m = Object.assign(m, proto);
|
|
1685
|
+
if (proto.goal) {
|
|
1686
|
+
m.goal = Goal.fromProto(proto.goal);
|
|
1687
|
+
}
|
|
1688
|
+
return m;
|
|
1689
|
+
}
|
|
1690
|
+
constructor(kwargs) {
|
|
1691
|
+
if (!kwargs) {
|
|
1692
|
+
return;
|
|
1693
|
+
}
|
|
1694
|
+
Object.assign(this, kwargs);
|
|
1695
|
+
}
|
|
1696
|
+
toApiJson() {
|
|
1697
|
+
const toReturn = {};
|
|
1698
|
+
if (typeof this.goal !== 'undefined' && this.goal !== null) {
|
|
1699
|
+
toReturn['goal'] = 'toApiJson' in this.goal ? this.goal.toApiJson() : this.goal;
|
|
1700
|
+
}
|
|
1701
|
+
return toReturn;
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
class SerializeGoalResponse {
|
|
1705
|
+
static fromProto(proto) {
|
|
1706
|
+
let m = new SerializeGoalResponse();
|
|
1707
|
+
m = Object.assign(m, proto);
|
|
1708
|
+
return m;
|
|
1709
|
+
}
|
|
1710
|
+
constructor(kwargs) {
|
|
1711
|
+
if (!kwargs) {
|
|
1712
|
+
return;
|
|
1713
|
+
}
|
|
1714
|
+
Object.assign(this, kwargs);
|
|
1715
|
+
}
|
|
1716
|
+
toApiJson() {
|
|
1717
|
+
const toReturn = {};
|
|
1718
|
+
if (typeof this.file !== 'undefined') {
|
|
1719
|
+
toReturn['file'] = this.file;
|
|
1720
|
+
}
|
|
1721
|
+
return toReturn;
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1516
1724
|
class ValidateGoalsRequest {
|
|
1517
1725
|
static fromProto(proto) {
|
|
1518
1726
|
let m = new ValidateGoalsRequest();
|
|
@@ -3160,6 +3368,9 @@ class CreatePromptModuleRequest {
|
|
|
3160
3368
|
if (typeof this.managed !== 'undefined') {
|
|
3161
3369
|
toReturn['managed'] = this.managed;
|
|
3162
3370
|
}
|
|
3371
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
3372
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
3373
|
+
}
|
|
3163
3374
|
return toReturn;
|
|
3164
3375
|
}
|
|
3165
3376
|
}
|
|
@@ -3450,19 +3661,28 @@ class ExecuteFunctionResponse {
|
|
|
3450
3661
|
return toReturn;
|
|
3451
3662
|
}
|
|
3452
3663
|
}
|
|
3453
|
-
class
|
|
3664
|
+
class ListGoalsRequestFilters {
|
|
3454
3665
|
static fromProto(proto) {
|
|
3455
|
-
let m = new
|
|
3666
|
+
let m = new ListGoalsRequestFilters();
|
|
3456
3667
|
m = Object.assign(m, proto);
|
|
3457
3668
|
if (proto.namespace) {
|
|
3458
3669
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3459
3670
|
}
|
|
3671
|
+
if (proto.type) {
|
|
3672
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3673
|
+
}
|
|
3674
|
+
if (proto.supportedChannels) {
|
|
3675
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3676
|
+
}
|
|
3460
3677
|
if (proto.namespaces) {
|
|
3461
3678
|
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3462
3679
|
}
|
|
3463
3680
|
if (proto.constraintFilters) {
|
|
3464
3681
|
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3465
3682
|
}
|
|
3683
|
+
if (proto.sortOptions) {
|
|
3684
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3685
|
+
}
|
|
3466
3686
|
return m;
|
|
3467
3687
|
}
|
|
3468
3688
|
constructor(kwargs) {
|
|
@@ -3476,30 +3696,65 @@ class ListFunctionRequestFilters {
|
|
|
3476
3696
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3477
3697
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3478
3698
|
}
|
|
3699
|
+
if (typeof this.type !== 'undefined') {
|
|
3700
|
+
toReturn['type'] = this.type;
|
|
3701
|
+
}
|
|
3702
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3703
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3704
|
+
}
|
|
3479
3705
|
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3480
3706
|
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3481
3707
|
}
|
|
3482
|
-
if (typeof this.mcpId !== 'undefined') {
|
|
3483
|
-
toReturn['mcpId'] = this.mcpId;
|
|
3484
|
-
}
|
|
3485
3708
|
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3486
3709
|
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3487
3710
|
}
|
|
3711
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3712
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3713
|
+
}
|
|
3714
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3715
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3716
|
+
}
|
|
3717
|
+
if (typeof this.omitOverrides !== 'undefined') {
|
|
3718
|
+
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3719
|
+
}
|
|
3488
3720
|
return toReturn;
|
|
3489
3721
|
}
|
|
3490
3722
|
}
|
|
3491
|
-
class
|
|
3723
|
+
class ListAssistantRequestFilters {
|
|
3492
3724
|
static fromProto(proto) {
|
|
3493
|
-
let m = new
|
|
3725
|
+
let m = new ListAssistantRequestFilters();
|
|
3494
3726
|
m = Object.assign(m, proto);
|
|
3495
3727
|
if (proto.namespace) {
|
|
3496
3728
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3497
3729
|
}
|
|
3498
3730
|
if (proto.type) {
|
|
3499
|
-
m.type = enumStringToValue(
|
|
3731
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3500
3732
|
}
|
|
3501
|
-
|
|
3502
|
-
|
|
3733
|
+
return m;
|
|
3734
|
+
}
|
|
3735
|
+
constructor(kwargs) {
|
|
3736
|
+
if (!kwargs) {
|
|
3737
|
+
return;
|
|
3738
|
+
}
|
|
3739
|
+
Object.assign(this, kwargs);
|
|
3740
|
+
}
|
|
3741
|
+
toApiJson() {
|
|
3742
|
+
const toReturn = {};
|
|
3743
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3744
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3745
|
+
}
|
|
3746
|
+
if (typeof this.type !== 'undefined') {
|
|
3747
|
+
toReturn['type'] = this.type;
|
|
3748
|
+
}
|
|
3749
|
+
return toReturn;
|
|
3750
|
+
}
|
|
3751
|
+
}
|
|
3752
|
+
class ListFunctionRequestFilters {
|
|
3753
|
+
static fromProto(proto) {
|
|
3754
|
+
let m = new ListFunctionRequestFilters();
|
|
3755
|
+
m = Object.assign(m, proto);
|
|
3756
|
+
if (proto.namespace) {
|
|
3757
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3503
3758
|
}
|
|
3504
3759
|
if (proto.namespaces) {
|
|
3505
3760
|
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
@@ -3507,9 +3762,6 @@ class ListGoalsRequestFilters {
|
|
|
3507
3762
|
if (proto.constraintFilters) {
|
|
3508
3763
|
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3509
3764
|
}
|
|
3510
|
-
if (proto.sortOptions) {
|
|
3511
|
-
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3512
|
-
}
|
|
3513
3765
|
return m;
|
|
3514
3766
|
}
|
|
3515
3767
|
constructor(kwargs) {
|
|
@@ -3523,39 +3775,27 @@ class ListGoalsRequestFilters {
|
|
|
3523
3775
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3524
3776
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3525
3777
|
}
|
|
3526
|
-
if (typeof this.type !== 'undefined') {
|
|
3527
|
-
toReturn['type'] = this.type;
|
|
3528
|
-
}
|
|
3529
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
3530
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3531
|
-
}
|
|
3532
3778
|
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3533
3779
|
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3534
3780
|
}
|
|
3781
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
3782
|
+
toReturn['mcpId'] = this.mcpId;
|
|
3783
|
+
}
|
|
3535
3784
|
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3536
3785
|
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3537
3786
|
}
|
|
3538
|
-
if (typeof this.searchTerm !== 'undefined') {
|
|
3539
|
-
toReturn['searchTerm'] = this.searchTerm;
|
|
3540
|
-
}
|
|
3541
|
-
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3542
|
-
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3543
|
-
}
|
|
3544
|
-
if (typeof this.omitOverrides !== 'undefined') {
|
|
3545
|
-
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3546
|
-
}
|
|
3547
3787
|
return toReturn;
|
|
3548
3788
|
}
|
|
3549
3789
|
}
|
|
3550
|
-
class
|
|
3790
|
+
class ListAvailableModelsRequestFilters {
|
|
3551
3791
|
static fromProto(proto) {
|
|
3552
|
-
let m = new
|
|
3792
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
3553
3793
|
m = Object.assign(m, proto);
|
|
3554
|
-
if (proto.
|
|
3555
|
-
m.
|
|
3794
|
+
if (proto.vendor) {
|
|
3795
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3556
3796
|
}
|
|
3557
3797
|
if (proto.type) {
|
|
3558
|
-
m.type = enumStringToValue(
|
|
3798
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3559
3799
|
}
|
|
3560
3800
|
return m;
|
|
3561
3801
|
}
|
|
@@ -3567,8 +3807,8 @@ class ListAssistantRequestFilters {
|
|
|
3567
3807
|
}
|
|
3568
3808
|
toApiJson() {
|
|
3569
3809
|
const toReturn = {};
|
|
3570
|
-
if (typeof this.
|
|
3571
|
-
toReturn['
|
|
3810
|
+
if (typeof this.vendor !== 'undefined') {
|
|
3811
|
+
toReturn['vendor'] = this.vendor;
|
|
3572
3812
|
}
|
|
3573
3813
|
if (typeof this.type !== 'undefined') {
|
|
3574
3814
|
toReturn['type'] = this.type;
|
|
@@ -3651,35 +3891,6 @@ class ListConnectionsRequestFilters {
|
|
|
3651
3891
|
return toReturn;
|
|
3652
3892
|
}
|
|
3653
3893
|
}
|
|
3654
|
-
class ListAvailableModelsRequestFilters {
|
|
3655
|
-
static fromProto(proto) {
|
|
3656
|
-
let m = new ListAvailableModelsRequestFilters();
|
|
3657
|
-
m = Object.assign(m, proto);
|
|
3658
|
-
if (proto.vendor) {
|
|
3659
|
-
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3660
|
-
}
|
|
3661
|
-
if (proto.type) {
|
|
3662
|
-
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3663
|
-
}
|
|
3664
|
-
return m;
|
|
3665
|
-
}
|
|
3666
|
-
constructor(kwargs) {
|
|
3667
|
-
if (!kwargs) {
|
|
3668
|
-
return;
|
|
3669
|
-
}
|
|
3670
|
-
Object.assign(this, kwargs);
|
|
3671
|
-
}
|
|
3672
|
-
toApiJson() {
|
|
3673
|
-
const toReturn = {};
|
|
3674
|
-
if (typeof this.vendor !== 'undefined') {
|
|
3675
|
-
toReturn['vendor'] = this.vendor;
|
|
3676
|
-
}
|
|
3677
|
-
if (typeof this.type !== 'undefined') {
|
|
3678
|
-
toReturn['type'] = this.type;
|
|
3679
|
-
}
|
|
3680
|
-
return toReturn;
|
|
3681
|
-
}
|
|
3682
|
-
}
|
|
3683
3894
|
class GenerateChatAnswerRequest {
|
|
3684
3895
|
static fromProto(proto) {
|
|
3685
3896
|
let m = new GenerateChatAnswerRequest();
|
|
@@ -4982,10 +5193,13 @@ class ListTemplateVariablesResponse {
|
|
|
4982
5193
|
return toReturn;
|
|
4983
5194
|
}
|
|
4984
5195
|
}
|
|
4985
|
-
class
|
|
5196
|
+
class GenerateChatAnswerRequestOptions {
|
|
4986
5197
|
static fromProto(proto) {
|
|
4987
|
-
let m = new
|
|
5198
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4988
5199
|
m = Object.assign(m, proto);
|
|
5200
|
+
if (proto.maxTokens) {
|
|
5201
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5202
|
+
}
|
|
4989
5203
|
return m;
|
|
4990
5204
|
}
|
|
4991
5205
|
constructor(kwargs) {
|
|
@@ -4996,8 +5210,14 @@ class UpsertAssistantRequestOptions {
|
|
|
4996
5210
|
}
|
|
4997
5211
|
toApiJson() {
|
|
4998
5212
|
const toReturn = {};
|
|
4999
|
-
if (typeof this.
|
|
5000
|
-
toReturn['
|
|
5213
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5214
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5215
|
+
}
|
|
5216
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5217
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5218
|
+
}
|
|
5219
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5220
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
5001
5221
|
}
|
|
5002
5222
|
return toReturn;
|
|
5003
5223
|
}
|
|
@@ -5022,9 +5242,9 @@ class GetMultiAssistantRequestOptions {
|
|
|
5022
5242
|
return toReturn;
|
|
5023
5243
|
}
|
|
5024
5244
|
}
|
|
5025
|
-
class
|
|
5245
|
+
class UpsertAssistantRequestOptions {
|
|
5026
5246
|
static fromProto(proto) {
|
|
5027
|
-
let m = new
|
|
5247
|
+
let m = new UpsertAssistantRequestOptions();
|
|
5028
5248
|
m = Object.assign(m, proto);
|
|
5029
5249
|
return m;
|
|
5030
5250
|
}
|
|
@@ -5036,15 +5256,15 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
5036
5256
|
}
|
|
5037
5257
|
toApiJson() {
|
|
5038
5258
|
const toReturn = {};
|
|
5039
|
-
if (typeof this.
|
|
5040
|
-
toReturn['
|
|
5259
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5260
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5041
5261
|
}
|
|
5042
5262
|
return toReturn;
|
|
5043
5263
|
}
|
|
5044
5264
|
}
|
|
5045
|
-
class
|
|
5265
|
+
class GetAssistantRequestOptions {
|
|
5046
5266
|
static fromProto(proto) {
|
|
5047
|
-
let m = new
|
|
5267
|
+
let m = new GetAssistantRequestOptions();
|
|
5048
5268
|
m = Object.assign(m, proto);
|
|
5049
5269
|
return m;
|
|
5050
5270
|
}
|
|
@@ -5056,15 +5276,15 @@ class CreateAssistantRequestOptions {
|
|
|
5056
5276
|
}
|
|
5057
5277
|
toApiJson() {
|
|
5058
5278
|
const toReturn = {};
|
|
5059
|
-
if (typeof this.
|
|
5060
|
-
toReturn['
|
|
5279
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5280
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
5061
5281
|
}
|
|
5062
5282
|
return toReturn;
|
|
5063
5283
|
}
|
|
5064
5284
|
}
|
|
5065
|
-
class
|
|
5285
|
+
class CreateAssistantRequestOptions {
|
|
5066
5286
|
static fromProto(proto) {
|
|
5067
|
-
let m = new
|
|
5287
|
+
let m = new CreateAssistantRequestOptions();
|
|
5068
5288
|
m = Object.assign(m, proto);
|
|
5069
5289
|
return m;
|
|
5070
5290
|
}
|
|
@@ -5076,18 +5296,18 @@ class GetAssistantRequestOptions {
|
|
|
5076
5296
|
}
|
|
5077
5297
|
toApiJson() {
|
|
5078
5298
|
const toReturn = {};
|
|
5079
|
-
if (typeof this.
|
|
5080
|
-
toReturn['
|
|
5299
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5300
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5081
5301
|
}
|
|
5082
5302
|
return toReturn;
|
|
5083
5303
|
}
|
|
5084
5304
|
}
|
|
5085
|
-
class
|
|
5305
|
+
class ExecuteFunctionRequestOptions {
|
|
5086
5306
|
static fromProto(proto) {
|
|
5087
|
-
let m = new
|
|
5307
|
+
let m = new ExecuteFunctionRequestOptions();
|
|
5088
5308
|
m = Object.assign(m, proto);
|
|
5089
|
-
if (proto.
|
|
5090
|
-
m.
|
|
5309
|
+
if (proto.contextInfo) {
|
|
5310
|
+
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5091
5311
|
}
|
|
5092
5312
|
return m;
|
|
5093
5313
|
}
|
|
@@ -5099,25 +5319,19 @@ class GenerateChatAnswerRequestOptions {
|
|
|
5099
5319
|
}
|
|
5100
5320
|
toApiJson() {
|
|
5101
5321
|
const toReturn = {};
|
|
5102
|
-
if (typeof this.
|
|
5103
|
-
toReturn['
|
|
5104
|
-
}
|
|
5105
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5106
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5322
|
+
if (typeof this.skipComputeTemplateVariables !== 'undefined') {
|
|
5323
|
+
toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
|
|
5107
5324
|
}
|
|
5108
|
-
if (typeof this.
|
|
5109
|
-
toReturn['
|
|
5325
|
+
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5326
|
+
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5110
5327
|
}
|
|
5111
5328
|
return toReturn;
|
|
5112
5329
|
}
|
|
5113
5330
|
}
|
|
5114
|
-
class
|
|
5331
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
5115
5332
|
static fromProto(proto) {
|
|
5116
|
-
let m = new
|
|
5333
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
5117
5334
|
m = Object.assign(m, proto);
|
|
5118
|
-
if (proto.contextInfo) {
|
|
5119
|
-
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5120
|
-
}
|
|
5121
5335
|
return m;
|
|
5122
5336
|
}
|
|
5123
5337
|
constructor(kwargs) {
|
|
@@ -5128,11 +5342,8 @@ class ExecuteFunctionRequestOptions {
|
|
|
5128
5342
|
}
|
|
5129
5343
|
toApiJson() {
|
|
5130
5344
|
const toReturn = {};
|
|
5131
|
-
if (typeof this.
|
|
5132
|
-
toReturn['
|
|
5133
|
-
}
|
|
5134
|
-
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5135
|
-
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5345
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5346
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
5136
5347
|
}
|
|
5137
5348
|
return toReturn;
|
|
5138
5349
|
}
|
|
@@ -5166,6 +5377,35 @@ class SetAssistantConnectionsRequest {
|
|
|
5166
5377
|
return toReturn;
|
|
5167
5378
|
}
|
|
5168
5379
|
}
|
|
5380
|
+
class SetConnectionAssistantRequest {
|
|
5381
|
+
static fromProto(proto) {
|
|
5382
|
+
let m = new SetConnectionAssistantRequest();
|
|
5383
|
+
m = Object.assign(m, proto);
|
|
5384
|
+
if (proto.connectionKey) {
|
|
5385
|
+
m.connectionKey = ConnectionKey.fromProto(proto.connectionKey);
|
|
5386
|
+
}
|
|
5387
|
+
if (proto.assistantKey) {
|
|
5388
|
+
m.assistantKey = AssistantKey.fromProto(proto.assistantKey);
|
|
5389
|
+
}
|
|
5390
|
+
return m;
|
|
5391
|
+
}
|
|
5392
|
+
constructor(kwargs) {
|
|
5393
|
+
if (!kwargs) {
|
|
5394
|
+
return;
|
|
5395
|
+
}
|
|
5396
|
+
Object.assign(this, kwargs);
|
|
5397
|
+
}
|
|
5398
|
+
toApiJson() {
|
|
5399
|
+
const toReturn = {};
|
|
5400
|
+
if (typeof this.connectionKey !== 'undefined' && this.connectionKey !== null) {
|
|
5401
|
+
toReturn['connectionKey'] = 'toApiJson' in this.connectionKey ? this.connectionKey.toApiJson() : this.connectionKey;
|
|
5402
|
+
}
|
|
5403
|
+
if (typeof this.assistantKey !== 'undefined' && this.assistantKey !== null) {
|
|
5404
|
+
toReturn['assistantKey'] = 'toApiJson' in this.assistantKey ? this.assistantKey.toApiJson() : this.assistantKey;
|
|
5405
|
+
}
|
|
5406
|
+
return toReturn;
|
|
5407
|
+
}
|
|
5408
|
+
}
|
|
5169
5409
|
class ListGoalsRequestSortOptions {
|
|
5170
5410
|
static fromProto(proto) {
|
|
5171
5411
|
let m = new ListGoalsRequestSortOptions();
|
|
@@ -5273,6 +5513,9 @@ class UpdatePromptModuleRequest {
|
|
|
5273
5513
|
if (typeof this.description !== 'undefined') {
|
|
5274
5514
|
toReturn['description'] = this.description;
|
|
5275
5515
|
}
|
|
5516
|
+
if (typeof this.sourcePath !== 'undefined') {
|
|
5517
|
+
toReturn['sourcePath'] = this.sourcePath;
|
|
5518
|
+
}
|
|
5276
5519
|
return toReturn;
|
|
5277
5520
|
}
|
|
5278
5521
|
}
|
|
@@ -5812,6 +6055,10 @@ class ConnectionApiService {
|
|
|
5812
6055
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.ConnectionService/ListConnections", request.toApiJson(), this.apiOptions())
|
|
5813
6056
|
.pipe(map(resp => ListConnectionsResponse.fromProto(resp)));
|
|
5814
6057
|
}
|
|
6058
|
+
setConnectionAssistant(r) {
|
|
6059
|
+
const request = (r.toApiJson) ? r : new SetConnectionAssistantRequest(r);
|
|
6060
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.ConnectionService/SetConnectionAssistant", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
6061
|
+
}
|
|
5815
6062
|
}
|
|
5816
6063
|
ConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ConnectionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5817
6064
|
ConnectionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ConnectionApiService, providedIn: 'root' });
|
|
@@ -5895,6 +6142,16 @@ class FunctionApiService {
|
|
|
5895
6142
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/ValidateMCPs", request.toApiJson(), this.apiOptions())
|
|
5896
6143
|
.pipe(map(resp => ValidateMCPsResponse.fromProto(resp)));
|
|
5897
6144
|
}
|
|
6145
|
+
serializeFunction(r) {
|
|
6146
|
+
const request = (r.toApiJson) ? r : new SerializeFunctionRequest(r);
|
|
6147
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/SerializeFunction", request.toApiJson(), this.apiOptions())
|
|
6148
|
+
.pipe(map(resp => SerializeFunctionResponse.fromProto(resp)));
|
|
6149
|
+
}
|
|
6150
|
+
serializeMcp(r) {
|
|
6151
|
+
const request = (r.toApiJson) ? r : new SerializeMCPRequest(r);
|
|
6152
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/SerializeMCP", request.toApiJson(), this.apiOptions())
|
|
6153
|
+
.pipe(map(resp => SerializeMCPResponse.fromProto(resp)));
|
|
6154
|
+
}
|
|
5898
6155
|
}
|
|
5899
6156
|
FunctionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5900
6157
|
FunctionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, providedIn: 'root' });
|
|
@@ -5965,6 +6222,11 @@ class GoalApiService {
|
|
|
5965
6222
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/ValidateGoals", request.toApiJson(), this.apiOptions())
|
|
5966
6223
|
.pipe(map(resp => ValidateGoalsResponse.fromProto(resp)));
|
|
5967
6224
|
}
|
|
6225
|
+
serializeGoal(r) {
|
|
6226
|
+
const request = (r.toApiJson) ? r : new SerializeGoalRequest(r);
|
|
6227
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/SerializeGoal", request.toApiJson(), this.apiOptions())
|
|
6228
|
+
.pipe(map(resp => SerializeGoalResponse.fromProto(resp)));
|
|
6229
|
+
}
|
|
5968
6230
|
}
|
|
5969
6231
|
GoalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5970
6232
|
GoalApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, providedIn: 'root' });
|
|
@@ -6124,6 +6386,11 @@ class PromptModuleApiService {
|
|
|
6124
6386
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/ValidatePromptModuleVersions", request.toApiJson(), this.apiOptions())
|
|
6125
6387
|
.pipe(map(resp => ValidatePromptModuleVersionsResponse.fromProto(resp)));
|
|
6126
6388
|
}
|
|
6389
|
+
serializePromptModule(r) {
|
|
6390
|
+
const request = (r.toApiJson) ? r : new SerializePromptModuleRequest(r);
|
|
6391
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/SerializePromptModule", request.toApiJson(), this.apiOptions())
|
|
6392
|
+
.pipe(map(resp => SerializePromptModuleResponse.fromProto(resp)));
|
|
6393
|
+
}
|
|
6127
6394
|
}
|
|
6128
6395
|
PromptModuleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PromptModuleApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6129
6396
|
PromptModuleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PromptModuleApiService, providedIn: 'root' });
|
|
@@ -6143,5 +6410,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6143
6410
|
* Generated bundle index. Do not edit.
|
|
6144
6411
|
*/
|
|
6145
6412
|
|
|
6146
|
-
export { Access, Action, AgentArchitecture, 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, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionRequestOptions, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyImpersonationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, 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, ListTemplateVariablesRequest, ListTemplateVariablesResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, RunTestsRequest, RunTestsResponse, Scope, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TemplateVariable, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidateFunctionsRequest, ValidateFunctionsResponse, ValidateFunctionsResponseValidationResult, ValidateGoalsRequest, ValidateGoalsResponse, ValidateGoalsResponseValidationResult, ValidateMCPsRequest, ValidateMCPsResponse, ValidateMCPsResponseValidationResult, ValidatePromptModuleRequest, ValidatePromptModuleResponse, ValidatePromptModuleVersionsRequest, ValidatePromptModuleVersionsResponse, ValidatePromptModuleVersionsResponseValidationResult, ValidatePromptModulesRequest, ValidatePromptModulesResponse, ValidatePromptModulesResponseValidationResult, ValidationFailureAction, ValidationResult, ValidationViolation, VendorModel };
|
|
6413
|
+
export { Access, Action, AgentArchitecture, 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, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionRequestOptions, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyImpersonationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, 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, ListTemplateVariablesRequest, ListTemplateVariablesResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, RunTestsRequest, RunTestsResponse, Scope, SerializeFunctionRequest, SerializeFunctionResponse, SerializeGoalRequest, SerializeGoalResponse, SerializeMCPRequest, SerializeMCPResponse, SerializePromptModuleRequest, SerializePromptModuleResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SetConnectionAssistantRequest, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TemplateVariable, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidateFunctionsRequest, ValidateFunctionsResponse, ValidateFunctionsResponseValidationResult, ValidateGoalsRequest, ValidateGoalsResponse, ValidateGoalsResponseValidationResult, ValidateMCPsRequest, ValidateMCPsResponse, ValidateMCPsResponseValidationResult, ValidatePromptModuleRequest, ValidatePromptModuleResponse, ValidatePromptModuleVersionsRequest, ValidatePromptModuleVersionsResponse, ValidatePromptModuleVersionsResponseValidationResult, ValidatePromptModulesRequest, ValidatePromptModulesResponse, ValidatePromptModulesResponseValidationResult, ValidationFailureAction, ValidationResult, ValidationViolation, VendorModel };
|
|
6147
6414
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|