@vendasta/ai-assistants 0.56.0 → 0.58.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/api.enum.mjs +8 -1
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +106 -71
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +113 -71
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +113 -71
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +6 -0
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +26 -20
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +42 -33
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -209,6 +209,13 @@ var SortDirection;
|
|
|
209
209
|
//
|
|
210
210
|
// Enums.
|
|
211
211
|
// *********************************
|
|
212
|
+
var AgentArchitecture;
|
|
213
|
+
(function (AgentArchitecture) {
|
|
214
|
+
AgentArchitecture[AgentArchitecture["UNSET"] = 0] = "UNSET";
|
|
215
|
+
AgentArchitecture[AgentArchitecture["STANDARD"] = 1] = "STANDARD";
|
|
216
|
+
AgentArchitecture[AgentArchitecture["REACT"] = 2] = "REACT";
|
|
217
|
+
AgentArchitecture[AgentArchitecture["DEEP_RESEARCH"] = 3] = "DEEP_RESEARCH";
|
|
218
|
+
})(AgentArchitecture || (AgentArchitecture = {}));
|
|
212
219
|
var StreamingGenerateChatAnswerResponseContentType;
|
|
213
220
|
(function (StreamingGenerateChatAnswerResponseContentType) {
|
|
214
221
|
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["CONTENT_TYPE_UNSPECIFIED"] = 0] = "CONTENT_TYPE_UNSPECIFIED";
|
|
@@ -3254,6 +3261,9 @@ class ExecuteFunctionRequest {
|
|
|
3254
3261
|
if (proto.functionKey) {
|
|
3255
3262
|
m.functionKey = FunctionKey.fromProto(proto.functionKey);
|
|
3256
3263
|
}
|
|
3264
|
+
if (proto.options) {
|
|
3265
|
+
m.options = ExecuteFunctionRequestOptions.fromProto(proto.options);
|
|
3266
|
+
}
|
|
3257
3267
|
return m;
|
|
3258
3268
|
}
|
|
3259
3269
|
constructor(kwargs) {
|
|
@@ -3273,6 +3283,9 @@ class ExecuteFunctionRequest {
|
|
|
3273
3283
|
if (typeof this.arguments !== 'undefined') {
|
|
3274
3284
|
toReturn['arguments'] = this.arguments;
|
|
3275
3285
|
}
|
|
3286
|
+
if (typeof this.options !== 'undefined' && this.options !== null) {
|
|
3287
|
+
toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;
|
|
3288
|
+
}
|
|
3276
3289
|
return toReturn;
|
|
3277
3290
|
}
|
|
3278
3291
|
}
|
|
@@ -3331,27 +3344,15 @@ class ListAssistantRequestFilters {
|
|
|
3331
3344
|
return toReturn;
|
|
3332
3345
|
}
|
|
3333
3346
|
}
|
|
3334
|
-
class
|
|
3347
|
+
class ListAvailableModelsRequestFilters {
|
|
3335
3348
|
static fromProto(proto) {
|
|
3336
|
-
let m = new
|
|
3349
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
3337
3350
|
m = Object.assign(m, proto);
|
|
3338
|
-
if (proto.
|
|
3339
|
-
m.
|
|
3351
|
+
if (proto.vendor) {
|
|
3352
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3340
3353
|
}
|
|
3341
3354
|
if (proto.type) {
|
|
3342
|
-
m.type = enumStringToValue(
|
|
3343
|
-
}
|
|
3344
|
-
if (proto.supportedChannels) {
|
|
3345
|
-
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3346
|
-
}
|
|
3347
|
-
if (proto.namespaces) {
|
|
3348
|
-
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3349
|
-
}
|
|
3350
|
-
if (proto.constraintFilters) {
|
|
3351
|
-
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3352
|
-
}
|
|
3353
|
-
if (proto.sortOptions) {
|
|
3354
|
-
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3355
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3355
3356
|
}
|
|
3356
3357
|
return m;
|
|
3357
3358
|
}
|
|
@@ -3363,27 +3364,12 @@ class ListGoalsRequestFilters {
|
|
|
3363
3364
|
}
|
|
3364
3365
|
toApiJson() {
|
|
3365
3366
|
const toReturn = {};
|
|
3366
|
-
if (typeof this.
|
|
3367
|
-
toReturn['
|
|
3367
|
+
if (typeof this.vendor !== 'undefined') {
|
|
3368
|
+
toReturn['vendor'] = this.vendor;
|
|
3368
3369
|
}
|
|
3369
3370
|
if (typeof this.type !== 'undefined') {
|
|
3370
3371
|
toReturn['type'] = this.type;
|
|
3371
3372
|
}
|
|
3372
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
3373
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3374
|
-
}
|
|
3375
|
-
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3376
|
-
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3377
|
-
}
|
|
3378
|
-
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3379
|
-
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3380
|
-
}
|
|
3381
|
-
if (typeof this.searchTerm !== 'undefined') {
|
|
3382
|
-
toReturn['searchTerm'] = this.searchTerm;
|
|
3383
|
-
}
|
|
3384
|
-
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3385
|
-
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3386
|
-
}
|
|
3387
3373
|
return toReturn;
|
|
3388
3374
|
}
|
|
3389
3375
|
}
|
|
@@ -3439,15 +3425,27 @@ class ListPromptModuleRequestFilters {
|
|
|
3439
3425
|
return toReturn;
|
|
3440
3426
|
}
|
|
3441
3427
|
}
|
|
3442
|
-
class
|
|
3428
|
+
class ListGoalsRequestFilters {
|
|
3443
3429
|
static fromProto(proto) {
|
|
3444
|
-
let m = new
|
|
3430
|
+
let m = new ListGoalsRequestFilters();
|
|
3445
3431
|
m = Object.assign(m, proto);
|
|
3446
|
-
if (proto.
|
|
3447
|
-
m.
|
|
3432
|
+
if (proto.namespace) {
|
|
3433
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3448
3434
|
}
|
|
3449
3435
|
if (proto.type) {
|
|
3450
|
-
m.type =
|
|
3436
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3437
|
+
}
|
|
3438
|
+
if (proto.supportedChannels) {
|
|
3439
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3440
|
+
}
|
|
3441
|
+
if (proto.namespaces) {
|
|
3442
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3443
|
+
}
|
|
3444
|
+
if (proto.constraintFilters) {
|
|
3445
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3446
|
+
}
|
|
3447
|
+
if (proto.sortOptions) {
|
|
3448
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3451
3449
|
}
|
|
3452
3450
|
return m;
|
|
3453
3451
|
}
|
|
@@ -3459,12 +3457,30 @@ class ListAvailableModelsRequestFilters {
|
|
|
3459
3457
|
}
|
|
3460
3458
|
toApiJson() {
|
|
3461
3459
|
const toReturn = {};
|
|
3462
|
-
if (typeof this.
|
|
3463
|
-
toReturn['
|
|
3460
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3461
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3464
3462
|
}
|
|
3465
3463
|
if (typeof this.type !== 'undefined') {
|
|
3466
3464
|
toReturn['type'] = this.type;
|
|
3467
3465
|
}
|
|
3466
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3467
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3468
|
+
}
|
|
3469
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3470
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3471
|
+
}
|
|
3472
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3473
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3474
|
+
}
|
|
3475
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3476
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3477
|
+
}
|
|
3478
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3479
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3480
|
+
}
|
|
3481
|
+
if (typeof this.omitOverrides !== 'undefined') {
|
|
3482
|
+
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3483
|
+
}
|
|
3468
3484
|
return toReturn;
|
|
3469
3485
|
}
|
|
3470
3486
|
}
|
|
@@ -5125,10 +5141,13 @@ class ListTemplateVariablesResponse {
|
|
|
5125
5141
|
return toReturn;
|
|
5126
5142
|
}
|
|
5127
5143
|
}
|
|
5128
|
-
class
|
|
5144
|
+
class GenerateChatAnswerRequestOptions {
|
|
5129
5145
|
static fromProto(proto) {
|
|
5130
|
-
let m = new
|
|
5146
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
5131
5147
|
m = Object.assign(m, proto);
|
|
5148
|
+
if (proto.maxTokens) {
|
|
5149
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5150
|
+
}
|
|
5132
5151
|
return m;
|
|
5133
5152
|
}
|
|
5134
5153
|
constructor(kwargs) {
|
|
@@ -5139,16 +5158,25 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
5139
5158
|
}
|
|
5140
5159
|
toApiJson() {
|
|
5141
5160
|
const toReturn = {};
|
|
5142
|
-
if (typeof this.
|
|
5143
|
-
toReturn['
|
|
5161
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5162
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5163
|
+
}
|
|
5164
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5165
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5166
|
+
}
|
|
5167
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5168
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
5144
5169
|
}
|
|
5145
5170
|
return toReturn;
|
|
5146
5171
|
}
|
|
5147
5172
|
}
|
|
5148
|
-
class
|
|
5173
|
+
class ExecuteFunctionRequestOptions {
|
|
5149
5174
|
static fromProto(proto) {
|
|
5150
|
-
let m = new
|
|
5175
|
+
let m = new ExecuteFunctionRequestOptions();
|
|
5151
5176
|
m = Object.assign(m, proto);
|
|
5177
|
+
if (proto.contextInfo) {
|
|
5178
|
+
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5179
|
+
}
|
|
5152
5180
|
return m;
|
|
5153
5181
|
}
|
|
5154
5182
|
constructor(kwargs) {
|
|
@@ -5159,19 +5187,19 @@ class UpsertAssistantRequestOptions {
|
|
|
5159
5187
|
}
|
|
5160
5188
|
toApiJson() {
|
|
5161
5189
|
const toReturn = {};
|
|
5162
|
-
if (typeof this.
|
|
5163
|
-
toReturn['
|
|
5190
|
+
if (typeof this.skipComputeTemplateVariables !== 'undefined') {
|
|
5191
|
+
toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
|
|
5192
|
+
}
|
|
5193
|
+
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5194
|
+
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5164
5195
|
}
|
|
5165
5196
|
return toReturn;
|
|
5166
5197
|
}
|
|
5167
5198
|
}
|
|
5168
|
-
class
|
|
5199
|
+
class CreateAssistantRequestOptions {
|
|
5169
5200
|
static fromProto(proto) {
|
|
5170
|
-
let m = new
|
|
5201
|
+
let m = new CreateAssistantRequestOptions();
|
|
5171
5202
|
m = Object.assign(m, proto);
|
|
5172
|
-
if (proto.maxTokens) {
|
|
5173
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5174
|
-
}
|
|
5175
5203
|
return m;
|
|
5176
5204
|
}
|
|
5177
5205
|
constructor(kwargs) {
|
|
@@ -5182,14 +5210,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
5182
5210
|
}
|
|
5183
5211
|
toApiJson() {
|
|
5184
5212
|
const toReturn = {};
|
|
5185
|
-
if (typeof this.
|
|
5186
|
-
toReturn['
|
|
5187
|
-
}
|
|
5188
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5189
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5190
|
-
}
|
|
5191
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
5192
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
5213
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5214
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5193
5215
|
}
|
|
5194
5216
|
return toReturn;
|
|
5195
5217
|
}
|
|
@@ -5214,9 +5236,9 @@ class GetAssistantRequestOptions {
|
|
|
5214
5236
|
return toReturn;
|
|
5215
5237
|
}
|
|
5216
5238
|
}
|
|
5217
|
-
class
|
|
5239
|
+
class UpsertAssistantRequestOptions {
|
|
5218
5240
|
static fromProto(proto) {
|
|
5219
|
-
let m = new
|
|
5241
|
+
let m = new UpsertAssistantRequestOptions();
|
|
5220
5242
|
m = Object.assign(m, proto);
|
|
5221
5243
|
return m;
|
|
5222
5244
|
}
|
|
@@ -5228,15 +5250,15 @@ class GetMultiAssistantRequestOptions {
|
|
|
5228
5250
|
}
|
|
5229
5251
|
toApiJson() {
|
|
5230
5252
|
const toReturn = {};
|
|
5231
|
-
if (typeof this.
|
|
5232
|
-
toReturn['
|
|
5253
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5254
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5233
5255
|
}
|
|
5234
5256
|
return toReturn;
|
|
5235
5257
|
}
|
|
5236
5258
|
}
|
|
5237
|
-
class
|
|
5259
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
5238
5260
|
static fromProto(proto) {
|
|
5239
|
-
let m = new
|
|
5261
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
5240
5262
|
m = Object.assign(m, proto);
|
|
5241
5263
|
return m;
|
|
5242
5264
|
}
|
|
@@ -5248,8 +5270,28 @@ class CreateAssistantRequestOptions {
|
|
|
5248
5270
|
}
|
|
5249
5271
|
toApiJson() {
|
|
5250
5272
|
const toReturn = {};
|
|
5251
|
-
if (typeof this.
|
|
5252
|
-
toReturn['
|
|
5273
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5274
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
5275
|
+
}
|
|
5276
|
+
return toReturn;
|
|
5277
|
+
}
|
|
5278
|
+
}
|
|
5279
|
+
class GetMultiAssistantRequestOptions {
|
|
5280
|
+
static fromProto(proto) {
|
|
5281
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
5282
|
+
m = Object.assign(m, proto);
|
|
5283
|
+
return m;
|
|
5284
|
+
}
|
|
5285
|
+
constructor(kwargs) {
|
|
5286
|
+
if (!kwargs) {
|
|
5287
|
+
return;
|
|
5288
|
+
}
|
|
5289
|
+
Object.assign(this, kwargs);
|
|
5290
|
+
}
|
|
5291
|
+
toApiJson() {
|
|
5292
|
+
const toReturn = {};
|
|
5293
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5294
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
5253
5295
|
}
|
|
5254
5296
|
return toReturn;
|
|
5255
5297
|
}
|
|
@@ -6109,5 +6151,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6109
6151
|
* Generated bundle index. Do not edit.
|
|
6110
6152
|
*/
|
|
6111
6153
|
|
|
6112
|
-
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, FunctionAuthStrategyImpersonationAuthStrategy, 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, ListTemplateVariablesRequest, ListTemplateVariablesResponse, 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, TemplateVariable, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
6154
|
+
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, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, 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, 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, ListTemplateVariablesRequest, ListTemplateVariablesResponse, 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, TemplateVariable, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
6113
6155
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|