@vendasta/ai-assistants 0.56.0 → 0.57.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/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 +106 -71
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +106 -71
- package/fesm2020/vendasta-ai-assistants.mjs.map +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
|
@@ -3254,6 +3254,9 @@ class ExecuteFunctionRequest {
|
|
|
3254
3254
|
if (proto.functionKey) {
|
|
3255
3255
|
m.functionKey = FunctionKey.fromProto(proto.functionKey);
|
|
3256
3256
|
}
|
|
3257
|
+
if (proto.options) {
|
|
3258
|
+
m.options = ExecuteFunctionRequestOptions.fromProto(proto.options);
|
|
3259
|
+
}
|
|
3257
3260
|
return m;
|
|
3258
3261
|
}
|
|
3259
3262
|
constructor(kwargs) {
|
|
@@ -3273,6 +3276,9 @@ class ExecuteFunctionRequest {
|
|
|
3273
3276
|
if (typeof this.arguments !== 'undefined') {
|
|
3274
3277
|
toReturn['arguments'] = this.arguments;
|
|
3275
3278
|
}
|
|
3279
|
+
if (typeof this.options !== 'undefined' && this.options !== null) {
|
|
3280
|
+
toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;
|
|
3281
|
+
}
|
|
3276
3282
|
return toReturn;
|
|
3277
3283
|
}
|
|
3278
3284
|
}
|
|
@@ -3331,27 +3337,15 @@ class ListAssistantRequestFilters {
|
|
|
3331
3337
|
return toReturn;
|
|
3332
3338
|
}
|
|
3333
3339
|
}
|
|
3334
|
-
class
|
|
3340
|
+
class ListAvailableModelsRequestFilters {
|
|
3335
3341
|
static fromProto(proto) {
|
|
3336
|
-
let m = new
|
|
3342
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
3337
3343
|
m = Object.assign(m, proto);
|
|
3338
|
-
if (proto.
|
|
3339
|
-
m.
|
|
3344
|
+
if (proto.vendor) {
|
|
3345
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3340
3346
|
}
|
|
3341
3347
|
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);
|
|
3348
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3355
3349
|
}
|
|
3356
3350
|
return m;
|
|
3357
3351
|
}
|
|
@@ -3363,27 +3357,12 @@ class ListGoalsRequestFilters {
|
|
|
3363
3357
|
}
|
|
3364
3358
|
toApiJson() {
|
|
3365
3359
|
const toReturn = {};
|
|
3366
|
-
if (typeof this.
|
|
3367
|
-
toReturn['
|
|
3360
|
+
if (typeof this.vendor !== 'undefined') {
|
|
3361
|
+
toReturn['vendor'] = this.vendor;
|
|
3368
3362
|
}
|
|
3369
3363
|
if (typeof this.type !== 'undefined') {
|
|
3370
3364
|
toReturn['type'] = this.type;
|
|
3371
3365
|
}
|
|
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
3366
|
return toReturn;
|
|
3388
3367
|
}
|
|
3389
3368
|
}
|
|
@@ -3439,15 +3418,27 @@ class ListPromptModuleRequestFilters {
|
|
|
3439
3418
|
return toReturn;
|
|
3440
3419
|
}
|
|
3441
3420
|
}
|
|
3442
|
-
class
|
|
3421
|
+
class ListGoalsRequestFilters {
|
|
3443
3422
|
static fromProto(proto) {
|
|
3444
|
-
let m = new
|
|
3423
|
+
let m = new ListGoalsRequestFilters();
|
|
3445
3424
|
m = Object.assign(m, proto);
|
|
3446
|
-
if (proto.
|
|
3447
|
-
m.
|
|
3425
|
+
if (proto.namespace) {
|
|
3426
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3448
3427
|
}
|
|
3449
3428
|
if (proto.type) {
|
|
3450
|
-
m.type =
|
|
3429
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3430
|
+
}
|
|
3431
|
+
if (proto.supportedChannels) {
|
|
3432
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3433
|
+
}
|
|
3434
|
+
if (proto.namespaces) {
|
|
3435
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3436
|
+
}
|
|
3437
|
+
if (proto.constraintFilters) {
|
|
3438
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3439
|
+
}
|
|
3440
|
+
if (proto.sortOptions) {
|
|
3441
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3451
3442
|
}
|
|
3452
3443
|
return m;
|
|
3453
3444
|
}
|
|
@@ -3459,12 +3450,30 @@ class ListAvailableModelsRequestFilters {
|
|
|
3459
3450
|
}
|
|
3460
3451
|
toApiJson() {
|
|
3461
3452
|
const toReturn = {};
|
|
3462
|
-
if (typeof this.
|
|
3463
|
-
toReturn['
|
|
3453
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3454
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3464
3455
|
}
|
|
3465
3456
|
if (typeof this.type !== 'undefined') {
|
|
3466
3457
|
toReturn['type'] = this.type;
|
|
3467
3458
|
}
|
|
3459
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3460
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3461
|
+
}
|
|
3462
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3463
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3464
|
+
}
|
|
3465
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3466
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3467
|
+
}
|
|
3468
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3469
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3470
|
+
}
|
|
3471
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3472
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3473
|
+
}
|
|
3474
|
+
if (typeof this.omitOverrides !== 'undefined') {
|
|
3475
|
+
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3476
|
+
}
|
|
3468
3477
|
return toReturn;
|
|
3469
3478
|
}
|
|
3470
3479
|
}
|
|
@@ -5125,10 +5134,13 @@ class ListTemplateVariablesResponse {
|
|
|
5125
5134
|
return toReturn;
|
|
5126
5135
|
}
|
|
5127
5136
|
}
|
|
5128
|
-
class
|
|
5137
|
+
class GenerateChatAnswerRequestOptions {
|
|
5129
5138
|
static fromProto(proto) {
|
|
5130
|
-
let m = new
|
|
5139
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
5131
5140
|
m = Object.assign(m, proto);
|
|
5141
|
+
if (proto.maxTokens) {
|
|
5142
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5143
|
+
}
|
|
5132
5144
|
return m;
|
|
5133
5145
|
}
|
|
5134
5146
|
constructor(kwargs) {
|
|
@@ -5139,16 +5151,25 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
5139
5151
|
}
|
|
5140
5152
|
toApiJson() {
|
|
5141
5153
|
const toReturn = {};
|
|
5142
|
-
if (typeof this.
|
|
5143
|
-
toReturn['
|
|
5154
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5155
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5156
|
+
}
|
|
5157
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5158
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5159
|
+
}
|
|
5160
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5161
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
5144
5162
|
}
|
|
5145
5163
|
return toReturn;
|
|
5146
5164
|
}
|
|
5147
5165
|
}
|
|
5148
|
-
class
|
|
5166
|
+
class ExecuteFunctionRequestOptions {
|
|
5149
5167
|
static fromProto(proto) {
|
|
5150
|
-
let m = new
|
|
5168
|
+
let m = new ExecuteFunctionRequestOptions();
|
|
5151
5169
|
m = Object.assign(m, proto);
|
|
5170
|
+
if (proto.contextInfo) {
|
|
5171
|
+
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5172
|
+
}
|
|
5152
5173
|
return m;
|
|
5153
5174
|
}
|
|
5154
5175
|
constructor(kwargs) {
|
|
@@ -5159,19 +5180,19 @@ class UpsertAssistantRequestOptions {
|
|
|
5159
5180
|
}
|
|
5160
5181
|
toApiJson() {
|
|
5161
5182
|
const toReturn = {};
|
|
5162
|
-
if (typeof this.
|
|
5163
|
-
toReturn['
|
|
5183
|
+
if (typeof this.skipComputeTemplateVariables !== 'undefined') {
|
|
5184
|
+
toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
|
|
5185
|
+
}
|
|
5186
|
+
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5187
|
+
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5164
5188
|
}
|
|
5165
5189
|
return toReturn;
|
|
5166
5190
|
}
|
|
5167
5191
|
}
|
|
5168
|
-
class
|
|
5192
|
+
class CreateAssistantRequestOptions {
|
|
5169
5193
|
static fromProto(proto) {
|
|
5170
|
-
let m = new
|
|
5194
|
+
let m = new CreateAssistantRequestOptions();
|
|
5171
5195
|
m = Object.assign(m, proto);
|
|
5172
|
-
if (proto.maxTokens) {
|
|
5173
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5174
|
-
}
|
|
5175
5196
|
return m;
|
|
5176
5197
|
}
|
|
5177
5198
|
constructor(kwargs) {
|
|
@@ -5182,14 +5203,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
5182
5203
|
}
|
|
5183
5204
|
toApiJson() {
|
|
5184
5205
|
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;
|
|
5206
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5207
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5193
5208
|
}
|
|
5194
5209
|
return toReturn;
|
|
5195
5210
|
}
|
|
@@ -5214,9 +5229,9 @@ class GetAssistantRequestOptions {
|
|
|
5214
5229
|
return toReturn;
|
|
5215
5230
|
}
|
|
5216
5231
|
}
|
|
5217
|
-
class
|
|
5232
|
+
class UpsertAssistantRequestOptions {
|
|
5218
5233
|
static fromProto(proto) {
|
|
5219
|
-
let m = new
|
|
5234
|
+
let m = new UpsertAssistantRequestOptions();
|
|
5220
5235
|
m = Object.assign(m, proto);
|
|
5221
5236
|
return m;
|
|
5222
5237
|
}
|
|
@@ -5228,15 +5243,15 @@ class GetMultiAssistantRequestOptions {
|
|
|
5228
5243
|
}
|
|
5229
5244
|
toApiJson() {
|
|
5230
5245
|
const toReturn = {};
|
|
5231
|
-
if (typeof this.
|
|
5232
|
-
toReturn['
|
|
5246
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5247
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5233
5248
|
}
|
|
5234
5249
|
return toReturn;
|
|
5235
5250
|
}
|
|
5236
5251
|
}
|
|
5237
|
-
class
|
|
5252
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
5238
5253
|
static fromProto(proto) {
|
|
5239
|
-
let m = new
|
|
5254
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
5240
5255
|
m = Object.assign(m, proto);
|
|
5241
5256
|
return m;
|
|
5242
5257
|
}
|
|
@@ -5248,8 +5263,28 @@ class CreateAssistantRequestOptions {
|
|
|
5248
5263
|
}
|
|
5249
5264
|
toApiJson() {
|
|
5250
5265
|
const toReturn = {};
|
|
5251
|
-
if (typeof this.
|
|
5252
|
-
toReturn['
|
|
5266
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5267
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
5268
|
+
}
|
|
5269
|
+
return toReturn;
|
|
5270
|
+
}
|
|
5271
|
+
}
|
|
5272
|
+
class GetMultiAssistantRequestOptions {
|
|
5273
|
+
static fromProto(proto) {
|
|
5274
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
5275
|
+
m = Object.assign(m, proto);
|
|
5276
|
+
return m;
|
|
5277
|
+
}
|
|
5278
|
+
constructor(kwargs) {
|
|
5279
|
+
if (!kwargs) {
|
|
5280
|
+
return;
|
|
5281
|
+
}
|
|
5282
|
+
Object.assign(this, kwargs);
|
|
5283
|
+
}
|
|
5284
|
+
toApiJson() {
|
|
5285
|
+
const toReturn = {};
|
|
5286
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5287
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
5253
5288
|
}
|
|
5254
5289
|
return toReturn;
|
|
5255
5290
|
}
|
|
@@ -6109,5 +6144,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6109
6144
|
* Generated bundle index. Do not edit.
|
|
6110
6145
|
*/
|
|
6111
6146
|
|
|
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 };
|
|
6147
|
+
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, 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
6148
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|