@vendasta/ai-assistants 0.49.0 → 0.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/assistant.api.service.mjs +1 -1
- package/esm2020/lib/_internal/enums/api.enum.mjs +20 -0
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- 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/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +57 -22
- package/esm2020/lib/_internal/objects/function.mjs +4 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +80 -22
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +80 -22
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +11 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/interfaces/api.interface.d.ts +13 -7
- package/lib/_internal/interfaces/function.interface.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +24 -15
- package/lib/_internal/objects/function.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -203,6 +203,26 @@ var SortDirection;
|
|
|
203
203
|
SortDirection[SortDirection["SORT_DIRECTION_DESCENDING"] = 2] = "SORT_DIRECTION_DESCENDING";
|
|
204
204
|
})(SortDirection || (SortDirection = {}));
|
|
205
205
|
|
|
206
|
+
// *********************************
|
|
207
|
+
// Code generated by sdkgen
|
|
208
|
+
// DO NOT EDIT!.
|
|
209
|
+
//
|
|
210
|
+
// Enums.
|
|
211
|
+
// *********************************
|
|
212
|
+
var StreamingGenerateChatAnswerResponseContentType;
|
|
213
|
+
(function (StreamingGenerateChatAnswerResponseContentType) {
|
|
214
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["CONTENT_TYPE_UNSPECIFIED"] = 0] = "CONTENT_TYPE_UNSPECIFIED";
|
|
215
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["REASONING"] = 1] = "REASONING";
|
|
216
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ANSWER"] = 2] = "ANSWER";
|
|
217
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["ACTION_DESCRIPTION"] = 3] = "ACTION_DESCRIPTION";
|
|
218
|
+
StreamingGenerateChatAnswerResponseContentType[StreamingGenerateChatAnswerResponseContentType["WORKING"] = 4] = "WORKING";
|
|
219
|
+
})(StreamingGenerateChatAnswerResponseContentType || (StreamingGenerateChatAnswerResponseContentType = {}));
|
|
220
|
+
var ListGoalsRequestSortingOrder;
|
|
221
|
+
(function (ListGoalsRequestSortingOrder) {
|
|
222
|
+
ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_ASCENDING"] = 0] = "GOAL_SORTING_ORDER_ASCENDING";
|
|
223
|
+
ListGoalsRequestSortingOrder[ListGoalsRequestSortingOrder["GOAL_SORTING_ORDER_DESCENDING"] = 1] = "GOAL_SORTING_ORDER_DESCENDING";
|
|
224
|
+
})(ListGoalsRequestSortingOrder || (ListGoalsRequestSortingOrder = {}));
|
|
225
|
+
|
|
206
226
|
// *********************************
|
|
207
227
|
// Code generated by sdkgen
|
|
208
228
|
// DO NOT EDIT!.
|
|
@@ -806,6 +826,9 @@ class FunctionParameter {
|
|
|
806
826
|
if (typeof this.required !== 'undefined') {
|
|
807
827
|
toReturn['required'] = this.required;
|
|
808
828
|
}
|
|
829
|
+
if (typeof this.enumValues !== 'undefined') {
|
|
830
|
+
toReturn['enumValues'] = this.enumValues;
|
|
831
|
+
}
|
|
809
832
|
return toReturn;
|
|
810
833
|
}
|
|
811
834
|
}
|
|
@@ -3309,6 +3332,9 @@ class ListGoalsRequestFilters {
|
|
|
3309
3332
|
if (proto.constraintFilters) {
|
|
3310
3333
|
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3311
3334
|
}
|
|
3335
|
+
if (proto.sortOptions) {
|
|
3336
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3337
|
+
}
|
|
3312
3338
|
return m;
|
|
3313
3339
|
}
|
|
3314
3340
|
constructor(kwargs) {
|
|
@@ -3334,6 +3360,12 @@ class ListGoalsRequestFilters {
|
|
|
3334
3360
|
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3335
3361
|
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3336
3362
|
}
|
|
3363
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3364
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3365
|
+
}
|
|
3366
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3367
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3368
|
+
}
|
|
3337
3369
|
return toReturn;
|
|
3338
3370
|
}
|
|
3339
3371
|
}
|
|
@@ -4977,10 +5009,13 @@ class ListPromptVersionsResponse {
|
|
|
4977
5009
|
return toReturn;
|
|
4978
5010
|
}
|
|
4979
5011
|
}
|
|
4980
|
-
class
|
|
5012
|
+
class GenerateChatAnswerRequestOptions {
|
|
4981
5013
|
static fromProto(proto) {
|
|
4982
|
-
let m = new
|
|
5014
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4983
5015
|
m = Object.assign(m, proto);
|
|
5016
|
+
if (proto.maxTokens) {
|
|
5017
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5018
|
+
}
|
|
4984
5019
|
return m;
|
|
4985
5020
|
}
|
|
4986
5021
|
constructor(kwargs) {
|
|
@@ -4991,15 +5026,21 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4991
5026
|
}
|
|
4992
5027
|
toApiJson() {
|
|
4993
5028
|
const toReturn = {};
|
|
4994
|
-
if (typeof this.
|
|
4995
|
-
toReturn['
|
|
5029
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5030
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5031
|
+
}
|
|
5032
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5033
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5034
|
+
}
|
|
5035
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5036
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
4996
5037
|
}
|
|
4997
5038
|
return toReturn;
|
|
4998
5039
|
}
|
|
4999
5040
|
}
|
|
5000
|
-
class
|
|
5041
|
+
class GetMultiAssistantRequestOptions {
|
|
5001
5042
|
static fromProto(proto) {
|
|
5002
|
-
let m = new
|
|
5043
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
5003
5044
|
m = Object.assign(m, proto);
|
|
5004
5045
|
return m;
|
|
5005
5046
|
}
|
|
@@ -5017,13 +5058,10 @@ class GetAssistantRequestOptions {
|
|
|
5017
5058
|
return toReturn;
|
|
5018
5059
|
}
|
|
5019
5060
|
}
|
|
5020
|
-
class
|
|
5061
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
5021
5062
|
static fromProto(proto) {
|
|
5022
|
-
let m = new
|
|
5063
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
5023
5064
|
m = Object.assign(m, proto);
|
|
5024
|
-
if (proto.maxTokens) {
|
|
5025
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5026
|
-
}
|
|
5027
5065
|
return m;
|
|
5028
5066
|
}
|
|
5029
5067
|
constructor(kwargs) {
|
|
@@ -5034,14 +5072,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
5034
5072
|
}
|
|
5035
5073
|
toApiJson() {
|
|
5036
5074
|
const toReturn = {};
|
|
5037
|
-
if (typeof this.
|
|
5038
|
-
toReturn['
|
|
5039
|
-
}
|
|
5040
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5041
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5042
|
-
}
|
|
5043
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
5044
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
5075
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5076
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
5045
5077
|
}
|
|
5046
5078
|
return toReturn;
|
|
5047
5079
|
}
|
|
@@ -5086,9 +5118,9 @@ class CreateAssistantRequestOptions {
|
|
|
5086
5118
|
return toReturn;
|
|
5087
5119
|
}
|
|
5088
5120
|
}
|
|
5089
|
-
class
|
|
5121
|
+
class GetAssistantRequestOptions {
|
|
5090
5122
|
static fromProto(proto) {
|
|
5091
|
-
let m = new
|
|
5123
|
+
let m = new GetAssistantRequestOptions();
|
|
5092
5124
|
m = Object.assign(m, proto);
|
|
5093
5125
|
return m;
|
|
5094
5126
|
}
|
|
@@ -5135,6 +5167,32 @@ class SetAssistantConnectionsRequest {
|
|
|
5135
5167
|
return toReturn;
|
|
5136
5168
|
}
|
|
5137
5169
|
}
|
|
5170
|
+
class ListGoalsRequestSortOptions {
|
|
5171
|
+
static fromProto(proto) {
|
|
5172
|
+
let m = new ListGoalsRequestSortOptions();
|
|
5173
|
+
m = Object.assign(m, proto);
|
|
5174
|
+
if (proto.order) {
|
|
5175
|
+
m.order = enumStringToValue(ListGoalsRequestSortingOrder, proto.order);
|
|
5176
|
+
}
|
|
5177
|
+
return m;
|
|
5178
|
+
}
|
|
5179
|
+
constructor(kwargs) {
|
|
5180
|
+
if (!kwargs) {
|
|
5181
|
+
return;
|
|
5182
|
+
}
|
|
5183
|
+
Object.assign(this, kwargs);
|
|
5184
|
+
}
|
|
5185
|
+
toApiJson() {
|
|
5186
|
+
const toReturn = {};
|
|
5187
|
+
if (typeof this.field !== 'undefined') {
|
|
5188
|
+
toReturn['field'] = this.field;
|
|
5189
|
+
}
|
|
5190
|
+
if (typeof this.order !== 'undefined') {
|
|
5191
|
+
toReturn['order'] = this.order;
|
|
5192
|
+
}
|
|
5193
|
+
return toReturn;
|
|
5194
|
+
}
|
|
5195
|
+
}
|
|
5138
5196
|
class UpdateAssistantRequest {
|
|
5139
5197
|
static fromProto(proto) {
|
|
5140
5198
|
let m = new UpdateAssistantRequest();
|
|
@@ -5930,5 +5988,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5930
5988
|
* Generated bundle index. Do not edit.
|
|
5931
5989
|
*/
|
|
5932
5990
|
|
|
5933
|
-
export { Access, Action, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, Constraint, ConstraintFilter, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreateMCPFromIntegrationRequest, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, Scope, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
5991
|
+
export { Access, Action, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, Constraint, ConstraintFilter, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreateMCPFromIntegrationRequest, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsRequestSortOptions, ListGoalsRequestSortingOrder, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, Scope, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
5934
5992
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|