@vendasta/ai-assistants 0.60.0 → 0.61.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.enum.mjs +2 -1
- 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/assistant.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/objects/assistant.mjs +27 -1
- package/esm2020/lib/_internal/objects/function.mjs +163 -1
- package/esm2020/lib/_internal/objects/goal.mjs +82 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/fesm2015/vendasta-ai-assistants.mjs +286 -1
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +286 -1
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/assistant.enum.d.ts +2 -1
- package/lib/_internal/function.api.service.d.ts +4 -2
- package/lib/_internal/goal.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/assistant.interface.d.ts +4 -0
- package/lib/_internal/interfaces/function.interface.d.ts +26 -0
- package/lib/_internal/interfaces/goal.interface.d.ts +13 -0
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/objects/assistant.d.ts +7 -0
- package/lib/_internal/objects/function.d.ts +44 -0
- package/lib/_internal/objects/goal.d.ts +22 -0
- package/lib/_internal/objects/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -155,6 +155,7 @@ var VendorModel;
|
|
|
155
155
|
VendorModel[VendorModel["VENDOR_MODEL_OPEN_AI_REALTIME"] = 1] = "VENDOR_MODEL_OPEN_AI_REALTIME";
|
|
156
156
|
VendorModel[VendorModel["VENDOR_MODEL_DEEPGRAM"] = 2] = "VENDOR_MODEL_DEEPGRAM";
|
|
157
157
|
VendorModel[VendorModel["VENDOR_MODEL_ELEVEN_LABS"] = 3] = "VENDOR_MODEL_ELEVEN_LABS";
|
|
158
|
+
VendorModel[VendorModel["VENDOR_MODEL_OPEN_AI"] = 4] = "VENDOR_MODEL_OPEN_AI";
|
|
158
159
|
})(VendorModel || (VendorModel = {}));
|
|
159
160
|
|
|
160
161
|
// *********************************
|
|
@@ -1109,6 +1110,168 @@ class UpsertMCPRequest {
|
|
|
1109
1110
|
return toReturn;
|
|
1110
1111
|
}
|
|
1111
1112
|
}
|
|
1113
|
+
class ValidateFunctionsRequest {
|
|
1114
|
+
static fromProto(proto) {
|
|
1115
|
+
let m = new ValidateFunctionsRequest();
|
|
1116
|
+
m = Object.assign(m, proto);
|
|
1117
|
+
if (proto.functions) {
|
|
1118
|
+
m.functions = proto.functions.map(Function.fromProto);
|
|
1119
|
+
}
|
|
1120
|
+
return m;
|
|
1121
|
+
}
|
|
1122
|
+
constructor(kwargs) {
|
|
1123
|
+
if (!kwargs) {
|
|
1124
|
+
return;
|
|
1125
|
+
}
|
|
1126
|
+
Object.assign(this, kwargs);
|
|
1127
|
+
}
|
|
1128
|
+
toApiJson() {
|
|
1129
|
+
const toReturn = {};
|
|
1130
|
+
if (typeof this.functions !== 'undefined' && this.functions !== null) {
|
|
1131
|
+
toReturn['functions'] = 'toApiJson' in this.functions ? this.functions.toApiJson() : this.functions;
|
|
1132
|
+
}
|
|
1133
|
+
return toReturn;
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
class ValidateFunctionsResponse {
|
|
1137
|
+
static fromProto(proto) {
|
|
1138
|
+
let m = new ValidateFunctionsResponse();
|
|
1139
|
+
m = Object.assign(m, proto);
|
|
1140
|
+
if (proto.results) {
|
|
1141
|
+
m.results = proto.results.map(ValidateFunctionsResponseValidationResult.fromProto);
|
|
1142
|
+
}
|
|
1143
|
+
return m;
|
|
1144
|
+
}
|
|
1145
|
+
constructor(kwargs) {
|
|
1146
|
+
if (!kwargs) {
|
|
1147
|
+
return;
|
|
1148
|
+
}
|
|
1149
|
+
Object.assign(this, kwargs);
|
|
1150
|
+
}
|
|
1151
|
+
toApiJson() {
|
|
1152
|
+
const toReturn = {};
|
|
1153
|
+
if (typeof this.results !== 'undefined' && this.results !== null) {
|
|
1154
|
+
toReturn['results'] = 'toApiJson' in this.results ? this.results.toApiJson() : this.results;
|
|
1155
|
+
}
|
|
1156
|
+
if (typeof this.allValid !== 'undefined') {
|
|
1157
|
+
toReturn['allValid'] = this.allValid;
|
|
1158
|
+
}
|
|
1159
|
+
return toReturn;
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
class ValidateMCPsRequest {
|
|
1163
|
+
static fromProto(proto) {
|
|
1164
|
+
let m = new ValidateMCPsRequest();
|
|
1165
|
+
m = Object.assign(m, proto);
|
|
1166
|
+
if (proto.mcps) {
|
|
1167
|
+
m.mcps = proto.mcps.map(MCP.fromProto);
|
|
1168
|
+
}
|
|
1169
|
+
return m;
|
|
1170
|
+
}
|
|
1171
|
+
constructor(kwargs) {
|
|
1172
|
+
if (!kwargs) {
|
|
1173
|
+
return;
|
|
1174
|
+
}
|
|
1175
|
+
Object.assign(this, kwargs);
|
|
1176
|
+
}
|
|
1177
|
+
toApiJson() {
|
|
1178
|
+
const toReturn = {};
|
|
1179
|
+
if (typeof this.mcps !== 'undefined' && this.mcps !== null) {
|
|
1180
|
+
toReturn['mcps'] = 'toApiJson' in this.mcps ? this.mcps.toApiJson() : this.mcps;
|
|
1181
|
+
}
|
|
1182
|
+
return toReturn;
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
class ValidateMCPsResponse {
|
|
1186
|
+
static fromProto(proto) {
|
|
1187
|
+
let m = new ValidateMCPsResponse();
|
|
1188
|
+
m = Object.assign(m, proto);
|
|
1189
|
+
if (proto.results) {
|
|
1190
|
+
m.results = proto.results.map(ValidateMCPsResponseValidationResult.fromProto);
|
|
1191
|
+
}
|
|
1192
|
+
return m;
|
|
1193
|
+
}
|
|
1194
|
+
constructor(kwargs) {
|
|
1195
|
+
if (!kwargs) {
|
|
1196
|
+
return;
|
|
1197
|
+
}
|
|
1198
|
+
Object.assign(this, kwargs);
|
|
1199
|
+
}
|
|
1200
|
+
toApiJson() {
|
|
1201
|
+
const toReturn = {};
|
|
1202
|
+
if (typeof this.results !== 'undefined' && this.results !== null) {
|
|
1203
|
+
toReturn['results'] = 'toApiJson' in this.results ? this.results.toApiJson() : this.results;
|
|
1204
|
+
}
|
|
1205
|
+
if (typeof this.allValid !== 'undefined') {
|
|
1206
|
+
toReturn['allValid'] = this.allValid;
|
|
1207
|
+
}
|
|
1208
|
+
return toReturn;
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
class ValidateFunctionsResponseValidationResult {
|
|
1212
|
+
static fromProto(proto) {
|
|
1213
|
+
let m = new ValidateFunctionsResponseValidationResult();
|
|
1214
|
+
m = Object.assign(m, proto);
|
|
1215
|
+
if (proto.namespace) {
|
|
1216
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1217
|
+
}
|
|
1218
|
+
return m;
|
|
1219
|
+
}
|
|
1220
|
+
constructor(kwargs) {
|
|
1221
|
+
if (!kwargs) {
|
|
1222
|
+
return;
|
|
1223
|
+
}
|
|
1224
|
+
Object.assign(this, kwargs);
|
|
1225
|
+
}
|
|
1226
|
+
toApiJson() {
|
|
1227
|
+
const toReturn = {};
|
|
1228
|
+
if (typeof this.functionId !== 'undefined') {
|
|
1229
|
+
toReturn['functionId'] = this.functionId;
|
|
1230
|
+
}
|
|
1231
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1232
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1233
|
+
}
|
|
1234
|
+
if (typeof this.isValid !== 'undefined') {
|
|
1235
|
+
toReturn['isValid'] = this.isValid;
|
|
1236
|
+
}
|
|
1237
|
+
if (typeof this.errorMessage !== 'undefined') {
|
|
1238
|
+
toReturn['errorMessage'] = this.errorMessage;
|
|
1239
|
+
}
|
|
1240
|
+
return toReturn;
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
class ValidateMCPsResponseValidationResult {
|
|
1244
|
+
static fromProto(proto) {
|
|
1245
|
+
let m = new ValidateMCPsResponseValidationResult();
|
|
1246
|
+
m = Object.assign(m, proto);
|
|
1247
|
+
if (proto.namespace) {
|
|
1248
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1249
|
+
}
|
|
1250
|
+
return m;
|
|
1251
|
+
}
|
|
1252
|
+
constructor(kwargs) {
|
|
1253
|
+
if (!kwargs) {
|
|
1254
|
+
return;
|
|
1255
|
+
}
|
|
1256
|
+
Object.assign(this, kwargs);
|
|
1257
|
+
}
|
|
1258
|
+
toApiJson() {
|
|
1259
|
+
const toReturn = {};
|
|
1260
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
1261
|
+
toReturn['mcpId'] = this.mcpId;
|
|
1262
|
+
}
|
|
1263
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1264
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1265
|
+
}
|
|
1266
|
+
if (typeof this.isValid !== 'undefined') {
|
|
1267
|
+
toReturn['isValid'] = this.isValid;
|
|
1268
|
+
}
|
|
1269
|
+
if (typeof this.errorMessage !== 'undefined') {
|
|
1270
|
+
toReturn['errorMessage'] = this.errorMessage;
|
|
1271
|
+
}
|
|
1272
|
+
return toReturn;
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1112
1275
|
|
|
1113
1276
|
function enumStringToValue$a(enumRef, value) {
|
|
1114
1277
|
if (typeof value === 'number') {
|
|
@@ -1349,6 +1512,87 @@ class GoalKey {
|
|
|
1349
1512
|
return toReturn;
|
|
1350
1513
|
}
|
|
1351
1514
|
}
|
|
1515
|
+
class ValidateGoalsRequest {
|
|
1516
|
+
static fromProto(proto) {
|
|
1517
|
+
let m = new ValidateGoalsRequest();
|
|
1518
|
+
m = Object.assign(m, proto);
|
|
1519
|
+
if (proto.goals) {
|
|
1520
|
+
m.goals = proto.goals.map(Goal.fromProto);
|
|
1521
|
+
}
|
|
1522
|
+
return m;
|
|
1523
|
+
}
|
|
1524
|
+
constructor(kwargs) {
|
|
1525
|
+
if (!kwargs) {
|
|
1526
|
+
return;
|
|
1527
|
+
}
|
|
1528
|
+
Object.assign(this, kwargs);
|
|
1529
|
+
}
|
|
1530
|
+
toApiJson() {
|
|
1531
|
+
const toReturn = {};
|
|
1532
|
+
if (typeof this.goals !== 'undefined' && this.goals !== null) {
|
|
1533
|
+
toReturn['goals'] = 'toApiJson' in this.goals ? this.goals.toApiJson() : this.goals;
|
|
1534
|
+
}
|
|
1535
|
+
return toReturn;
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
class ValidateGoalsResponse {
|
|
1539
|
+
static fromProto(proto) {
|
|
1540
|
+
let m = new ValidateGoalsResponse();
|
|
1541
|
+
m = Object.assign(m, proto);
|
|
1542
|
+
if (proto.results) {
|
|
1543
|
+
m.results = proto.results.map(ValidateGoalsResponseValidationResult.fromProto);
|
|
1544
|
+
}
|
|
1545
|
+
return m;
|
|
1546
|
+
}
|
|
1547
|
+
constructor(kwargs) {
|
|
1548
|
+
if (!kwargs) {
|
|
1549
|
+
return;
|
|
1550
|
+
}
|
|
1551
|
+
Object.assign(this, kwargs);
|
|
1552
|
+
}
|
|
1553
|
+
toApiJson() {
|
|
1554
|
+
const toReturn = {};
|
|
1555
|
+
if (typeof this.results !== 'undefined' && this.results !== null) {
|
|
1556
|
+
toReturn['results'] = 'toApiJson' in this.results ? this.results.toApiJson() : this.results;
|
|
1557
|
+
}
|
|
1558
|
+
if (typeof this.allValid !== 'undefined') {
|
|
1559
|
+
toReturn['allValid'] = this.allValid;
|
|
1560
|
+
}
|
|
1561
|
+
return toReturn;
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
class ValidateGoalsResponseValidationResult {
|
|
1565
|
+
static fromProto(proto) {
|
|
1566
|
+
let m = new ValidateGoalsResponseValidationResult();
|
|
1567
|
+
m = Object.assign(m, proto);
|
|
1568
|
+
if (proto.namespace) {
|
|
1569
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1570
|
+
}
|
|
1571
|
+
return m;
|
|
1572
|
+
}
|
|
1573
|
+
constructor(kwargs) {
|
|
1574
|
+
if (!kwargs) {
|
|
1575
|
+
return;
|
|
1576
|
+
}
|
|
1577
|
+
Object.assign(this, kwargs);
|
|
1578
|
+
}
|
|
1579
|
+
toApiJson() {
|
|
1580
|
+
const toReturn = {};
|
|
1581
|
+
if (typeof this.goalId !== 'undefined') {
|
|
1582
|
+
toReturn['goalId'] = this.goalId;
|
|
1583
|
+
}
|
|
1584
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1585
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1586
|
+
}
|
|
1587
|
+
if (typeof this.isValid !== 'undefined') {
|
|
1588
|
+
toReturn['isValid'] = this.isValid;
|
|
1589
|
+
}
|
|
1590
|
+
if (typeof this.errorMessage !== 'undefined') {
|
|
1591
|
+
toReturn['errorMessage'] = this.errorMessage;
|
|
1592
|
+
}
|
|
1593
|
+
return toReturn;
|
|
1594
|
+
}
|
|
1595
|
+
}
|
|
1352
1596
|
|
|
1353
1597
|
function enumStringToValue$8(enumRef, value) {
|
|
1354
1598
|
if (typeof value === 'number') {
|
|
@@ -1656,6 +1900,9 @@ class ModelConfig {
|
|
|
1656
1900
|
if (proto.elevenLabsConfig) {
|
|
1657
1901
|
m.elevenLabsConfig = ElevenLabsConfig.fromProto(proto.elevenLabsConfig);
|
|
1658
1902
|
}
|
|
1903
|
+
if (proto.openaiConfig) {
|
|
1904
|
+
m.openaiConfig = OpenAIConfig.fromProto(proto.openaiConfig);
|
|
1905
|
+
}
|
|
1659
1906
|
return m;
|
|
1660
1907
|
}
|
|
1661
1908
|
constructor(kwargs) {
|
|
@@ -1675,6 +1922,29 @@ class ModelConfig {
|
|
|
1675
1922
|
if (typeof this.elevenLabsConfig !== 'undefined' && this.elevenLabsConfig !== null) {
|
|
1676
1923
|
toReturn['elevenLabsConfig'] = 'toApiJson' in this.elevenLabsConfig ? this.elevenLabsConfig.toApiJson() : this.elevenLabsConfig;
|
|
1677
1924
|
}
|
|
1925
|
+
if (typeof this.openaiConfig !== 'undefined' && this.openaiConfig !== null) {
|
|
1926
|
+
toReturn['openaiConfig'] = 'toApiJson' in this.openaiConfig ? this.openaiConfig.toApiJson() : this.openaiConfig;
|
|
1927
|
+
}
|
|
1928
|
+
return toReturn;
|
|
1929
|
+
}
|
|
1930
|
+
}
|
|
1931
|
+
class OpenAIConfig {
|
|
1932
|
+
static fromProto(proto) {
|
|
1933
|
+
let m = new OpenAIConfig();
|
|
1934
|
+
m = Object.assign(m, proto);
|
|
1935
|
+
return m;
|
|
1936
|
+
}
|
|
1937
|
+
constructor(kwargs) {
|
|
1938
|
+
if (!kwargs) {
|
|
1939
|
+
return;
|
|
1940
|
+
}
|
|
1941
|
+
Object.assign(this, kwargs);
|
|
1942
|
+
}
|
|
1943
|
+
toApiJson() {
|
|
1944
|
+
const toReturn = {};
|
|
1945
|
+
if (typeof this.voice !== 'undefined') {
|
|
1946
|
+
toReturn['voice'] = this.voice;
|
|
1947
|
+
}
|
|
1678
1948
|
return toReturn;
|
|
1679
1949
|
}
|
|
1680
1950
|
}
|
|
@@ -5614,6 +5884,16 @@ class FunctionApiService {
|
|
|
5614
5884
|
const request = (r.toApiJson) ? r : new CreateMCPFromIntegrationRequest(r);
|
|
5615
5885
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/CreateMCPFromIntegration", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
5616
5886
|
}
|
|
5887
|
+
validateFunctions(r) {
|
|
5888
|
+
const request = (r.toApiJson) ? r : new ValidateFunctionsRequest(r);
|
|
5889
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/ValidateFunctions", request.toApiJson(), this.apiOptions())
|
|
5890
|
+
.pipe(map(resp => ValidateFunctionsResponse.fromProto(resp)));
|
|
5891
|
+
}
|
|
5892
|
+
validateMcPs(r) {
|
|
5893
|
+
const request = (r.toApiJson) ? r : new ValidateMCPsRequest(r);
|
|
5894
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.FunctionService/ValidateMCPs", request.toApiJson(), this.apiOptions())
|
|
5895
|
+
.pipe(map(resp => ValidateMCPsResponse.fromProto(resp)));
|
|
5896
|
+
}
|
|
5617
5897
|
}
|
|
5618
5898
|
FunctionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5619
5899
|
FunctionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FunctionApiService, providedIn: 'root' });
|
|
@@ -5679,6 +5959,11 @@ class GoalApiService {
|
|
|
5679
5959
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/GoalsDisabledForAccountGroup", request.toApiJson(), this.apiOptions())
|
|
5680
5960
|
.pipe(map(resp => GoalsDisabledForAccountGroupResponse.fromProto(resp)));
|
|
5681
5961
|
}
|
|
5962
|
+
validateGoals(r) {
|
|
5963
|
+
const request = (r.toApiJson) ? r : new ValidateGoalsRequest(r);
|
|
5964
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/ValidateGoals", request.toApiJson(), this.apiOptions())
|
|
5965
|
+
.pipe(map(resp => ValidateGoalsResponse.fromProto(resp)));
|
|
5966
|
+
}
|
|
5682
5967
|
}
|
|
5683
5968
|
GoalApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5684
5969
|
GoalApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GoalApiService, providedIn: 'root' });
|
|
@@ -5857,5 +6142,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5857
6142
|
* Generated bundle index. Do not edit.
|
|
5858
6143
|
*/
|
|
5859
6144
|
|
|
5860
|
-
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, 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, ValidatePromptModuleRequest, ValidatePromptModuleResponse, ValidatePromptModuleVersionsRequest, ValidatePromptModuleVersionsResponse, ValidatePromptModuleVersionsResponseValidationResult, ValidatePromptModulesRequest, ValidatePromptModulesResponse, ValidatePromptModulesResponseValidationResult, ValidationFailureAction, ValidationResult, ValidationViolation, VendorModel };
|
|
6145
|
+
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 };
|
|
5861
6146
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|