@vendasta/ai-assistants 0.47.1 → 0.48.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 +111 -68
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/prompt-module.api.service.mjs +7 -2
- package/fesm2015/vendasta-ai-assistants.mjs +116 -68
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +116 -68
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +23 -16
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +43 -30
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/prompt-module.api.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -3039,15 +3039,38 @@ class ListFunctionRequestFilters {
|
|
|
3039
3039
|
return toReturn;
|
|
3040
3040
|
}
|
|
3041
3041
|
}
|
|
3042
|
-
class
|
|
3042
|
+
class ListPromptModuleRequestFilters {
|
|
3043
3043
|
static fromProto(proto) {
|
|
3044
|
-
let m = new
|
|
3044
|
+
let m = new ListPromptModuleRequestFilters();
|
|
3045
3045
|
m = Object.assign(m, proto);
|
|
3046
|
-
if (proto.
|
|
3047
|
-
m.
|
|
3046
|
+
if (proto.namespace) {
|
|
3047
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3048
|
+
}
|
|
3049
|
+
return m;
|
|
3050
|
+
}
|
|
3051
|
+
constructor(kwargs) {
|
|
3052
|
+
if (!kwargs) {
|
|
3053
|
+
return;
|
|
3054
|
+
}
|
|
3055
|
+
Object.assign(this, kwargs);
|
|
3056
|
+
}
|
|
3057
|
+
toApiJson() {
|
|
3058
|
+
const toReturn = {};
|
|
3059
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3060
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3061
|
+
}
|
|
3062
|
+
return toReturn;
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
class ListAssistantRequestFilters {
|
|
3066
|
+
static fromProto(proto) {
|
|
3067
|
+
let m = new ListAssistantRequestFilters();
|
|
3068
|
+
m = Object.assign(m, proto);
|
|
3069
|
+
if (proto.namespace) {
|
|
3070
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3048
3071
|
}
|
|
3049
3072
|
if (proto.type) {
|
|
3050
|
-
m.type =
|
|
3073
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3051
3074
|
}
|
|
3052
3075
|
return m;
|
|
3053
3076
|
}
|
|
@@ -3059,8 +3082,8 @@ class ListAvailableModelsRequestFilters {
|
|
|
3059
3082
|
}
|
|
3060
3083
|
toApiJson() {
|
|
3061
3084
|
const toReturn = {};
|
|
3062
|
-
if (typeof this.
|
|
3063
|
-
toReturn['
|
|
3085
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3086
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3064
3087
|
}
|
|
3065
3088
|
if (typeof this.type !== 'undefined') {
|
|
3066
3089
|
toReturn['type'] = this.type;
|
|
@@ -3097,12 +3120,15 @@ class ListConnectionsRequestFilters {
|
|
|
3097
3120
|
return toReturn;
|
|
3098
3121
|
}
|
|
3099
3122
|
}
|
|
3100
|
-
class
|
|
3123
|
+
class ListAvailableModelsRequestFilters {
|
|
3101
3124
|
static fromProto(proto) {
|
|
3102
|
-
let m = new
|
|
3125
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
3103
3126
|
m = Object.assign(m, proto);
|
|
3104
|
-
if (proto.
|
|
3105
|
-
m.
|
|
3127
|
+
if (proto.vendor) {
|
|
3128
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3129
|
+
}
|
|
3130
|
+
if (proto.type) {
|
|
3131
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3106
3132
|
}
|
|
3107
3133
|
return m;
|
|
3108
3134
|
}
|
|
@@ -3114,8 +3140,11 @@ class ListPromptModuleRequestFilters {
|
|
|
3114
3140
|
}
|
|
3115
3141
|
toApiJson() {
|
|
3116
3142
|
const toReturn = {};
|
|
3117
|
-
if (typeof this.
|
|
3118
|
-
toReturn['
|
|
3143
|
+
if (typeof this.vendor !== 'undefined') {
|
|
3144
|
+
toReturn['vendor'] = this.vendor;
|
|
3145
|
+
}
|
|
3146
|
+
if (typeof this.type !== 'undefined') {
|
|
3147
|
+
toReturn['type'] = this.type;
|
|
3119
3148
|
}
|
|
3120
3149
|
return toReturn;
|
|
3121
3150
|
}
|
|
@@ -3184,35 +3213,6 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
3184
3213
|
return toReturn;
|
|
3185
3214
|
}
|
|
3186
3215
|
}
|
|
3187
|
-
class ListAssistantRequestFilters {
|
|
3188
|
-
static fromProto(proto) {
|
|
3189
|
-
let m = new ListAssistantRequestFilters();
|
|
3190
|
-
m = Object.assign(m, proto);
|
|
3191
|
-
if (proto.namespace) {
|
|
3192
|
-
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3193
|
-
}
|
|
3194
|
-
if (proto.type) {
|
|
3195
|
-
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3196
|
-
}
|
|
3197
|
-
return m;
|
|
3198
|
-
}
|
|
3199
|
-
constructor(kwargs) {
|
|
3200
|
-
if (!kwargs) {
|
|
3201
|
-
return;
|
|
3202
|
-
}
|
|
3203
|
-
Object.assign(this, kwargs);
|
|
3204
|
-
}
|
|
3205
|
-
toApiJson() {
|
|
3206
|
-
const toReturn = {};
|
|
3207
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3208
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3209
|
-
}
|
|
3210
|
-
if (typeof this.type !== 'undefined') {
|
|
3211
|
-
toReturn['type'] = this.type;
|
|
3212
|
-
}
|
|
3213
|
-
return toReturn;
|
|
3214
|
-
}
|
|
3215
|
-
}
|
|
3216
3216
|
class GenerateChatAnswerRequest {
|
|
3217
3217
|
static fromProto(proto) {
|
|
3218
3218
|
let m = new GenerateChatAnswerRequest();
|
|
@@ -4757,13 +4757,10 @@ class ListPromptVersionsResponse {
|
|
|
4757
4757
|
return toReturn;
|
|
4758
4758
|
}
|
|
4759
4759
|
}
|
|
4760
|
-
class
|
|
4760
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
4761
4761
|
static fromProto(proto) {
|
|
4762
|
-
let m = new
|
|
4762
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
4763
4763
|
m = Object.assign(m, proto);
|
|
4764
|
-
if (proto.maxTokens) {
|
|
4765
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4766
|
-
}
|
|
4767
4764
|
return m;
|
|
4768
4765
|
}
|
|
4769
4766
|
constructor(kwargs) {
|
|
@@ -4774,22 +4771,19 @@ class GenerateChatAnswerRequestOptions {
|
|
|
4774
4771
|
}
|
|
4775
4772
|
toApiJson() {
|
|
4776
4773
|
const toReturn = {};
|
|
4777
|
-
if (typeof this.
|
|
4778
|
-
toReturn['
|
|
4779
|
-
}
|
|
4780
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4781
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4782
|
-
}
|
|
4783
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
4784
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
4774
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
4775
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
4785
4776
|
}
|
|
4786
4777
|
return toReturn;
|
|
4787
4778
|
}
|
|
4788
4779
|
}
|
|
4789
|
-
class
|
|
4780
|
+
class GenerateChatAnswerRequestOptions {
|
|
4790
4781
|
static fromProto(proto) {
|
|
4791
|
-
let m = new
|
|
4782
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4792
4783
|
m = Object.assign(m, proto);
|
|
4784
|
+
if (proto.maxTokens) {
|
|
4785
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4786
|
+
}
|
|
4793
4787
|
return m;
|
|
4794
4788
|
}
|
|
4795
4789
|
constructor(kwargs) {
|
|
@@ -4800,15 +4794,21 @@ class GetMultiAssistantRequestOptions {
|
|
|
4800
4794
|
}
|
|
4801
4795
|
toApiJson() {
|
|
4802
4796
|
const toReturn = {};
|
|
4803
|
-
if (typeof this.
|
|
4804
|
-
toReturn['
|
|
4797
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
4798
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
4799
|
+
}
|
|
4800
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4801
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4802
|
+
}
|
|
4803
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
4804
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
4805
4805
|
}
|
|
4806
4806
|
return toReturn;
|
|
4807
4807
|
}
|
|
4808
4808
|
}
|
|
4809
|
-
class
|
|
4809
|
+
class UpsertAssistantRequestOptions {
|
|
4810
4810
|
static fromProto(proto) {
|
|
4811
|
-
let m = new
|
|
4811
|
+
let m = new UpsertAssistantRequestOptions();
|
|
4812
4812
|
m = Object.assign(m, proto);
|
|
4813
4813
|
return m;
|
|
4814
4814
|
}
|
|
@@ -4820,8 +4820,8 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4820
4820
|
}
|
|
4821
4821
|
toApiJson() {
|
|
4822
4822
|
const toReturn = {};
|
|
4823
|
-
if (typeof this.
|
|
4824
|
-
toReturn['
|
|
4823
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
4824
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
4825
4825
|
}
|
|
4826
4826
|
return toReturn;
|
|
4827
4827
|
}
|
|
@@ -4846,9 +4846,9 @@ class CreateAssistantRequestOptions {
|
|
|
4846
4846
|
return toReturn;
|
|
4847
4847
|
}
|
|
4848
4848
|
}
|
|
4849
|
-
class
|
|
4849
|
+
class GetMultiAssistantRequestOptions {
|
|
4850
4850
|
static fromProto(proto) {
|
|
4851
|
-
let m = new
|
|
4851
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
4852
4852
|
m = Object.assign(m, proto);
|
|
4853
4853
|
return m;
|
|
4854
4854
|
}
|
|
@@ -4860,8 +4860,8 @@ class UpsertAssistantRequestOptions {
|
|
|
4860
4860
|
}
|
|
4861
4861
|
toApiJson() {
|
|
4862
4862
|
const toReturn = {};
|
|
4863
|
-
if (typeof this.
|
|
4864
|
-
toReturn['
|
|
4863
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
4864
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
4865
4865
|
}
|
|
4866
4866
|
return toReturn;
|
|
4867
4867
|
}
|
|
@@ -5146,6 +5146,49 @@ class UpsertGoalRequest {
|
|
|
5146
5146
|
return toReturn;
|
|
5147
5147
|
}
|
|
5148
5148
|
}
|
|
5149
|
+
class ValidatePromptModuleRequest {
|
|
5150
|
+
static fromProto(proto) {
|
|
5151
|
+
let m = new ValidatePromptModuleRequest();
|
|
5152
|
+
m = Object.assign(m, proto);
|
|
5153
|
+
return m;
|
|
5154
|
+
}
|
|
5155
|
+
constructor(kwargs) {
|
|
5156
|
+
if (!kwargs) {
|
|
5157
|
+
return;
|
|
5158
|
+
}
|
|
5159
|
+
Object.assign(this, kwargs);
|
|
5160
|
+
}
|
|
5161
|
+
toApiJson() {
|
|
5162
|
+
const toReturn = {};
|
|
5163
|
+
if (typeof this.content !== 'undefined') {
|
|
5164
|
+
toReturn['content'] = this.content;
|
|
5165
|
+
}
|
|
5166
|
+
return toReturn;
|
|
5167
|
+
}
|
|
5168
|
+
}
|
|
5169
|
+
class ValidatePromptModuleResponse {
|
|
5170
|
+
static fromProto(proto) {
|
|
5171
|
+
let m = new ValidatePromptModuleResponse();
|
|
5172
|
+
m = Object.assign(m, proto);
|
|
5173
|
+
return m;
|
|
5174
|
+
}
|
|
5175
|
+
constructor(kwargs) {
|
|
5176
|
+
if (!kwargs) {
|
|
5177
|
+
return;
|
|
5178
|
+
}
|
|
5179
|
+
Object.assign(this, kwargs);
|
|
5180
|
+
}
|
|
5181
|
+
toApiJson() {
|
|
5182
|
+
const toReturn = {};
|
|
5183
|
+
if (typeof this.isValid !== 'undefined') {
|
|
5184
|
+
toReturn['isValid'] = this.isValid;
|
|
5185
|
+
}
|
|
5186
|
+
if (typeof this.errorMessage !== 'undefined') {
|
|
5187
|
+
toReturn['errorMessage'] = this.errorMessage;
|
|
5188
|
+
}
|
|
5189
|
+
return toReturn;
|
|
5190
|
+
}
|
|
5191
|
+
}
|
|
5149
5192
|
|
|
5150
5193
|
// *********************************
|
|
5151
5194
|
// Code generated by sdkgen
|
|
@@ -5565,6 +5608,11 @@ class PromptModuleApiService {
|
|
|
5565
5608
|
const request = (r.toApiJson) ? r : new DeletePromptModuleRequest(r);
|
|
5566
5609
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
5567
5610
|
}
|
|
5611
|
+
validate(r) {
|
|
5612
|
+
const request = (r.toApiJson) ? r : new ValidatePromptModuleRequest(r);
|
|
5613
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Validate", request.toApiJson(), this.apiOptions())
|
|
5614
|
+
.pipe(map(resp => ValidatePromptModuleResponse.fromProto(resp)));
|
|
5615
|
+
}
|
|
5568
5616
|
}
|
|
5569
5617
|
PromptModuleApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PromptModuleApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5570
5618
|
PromptModuleApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PromptModuleApiService, providedIn: 'root' });
|
|
@@ -5658,5 +5706,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5658
5706
|
* Generated bundle index. Do not edit.
|
|
5659
5707
|
*/
|
|
5660
5708
|
|
|
5661
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, 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, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, VendorModel };
|
|
5709
|
+
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, 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, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, VendorModel };
|
|
5662
5710
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|