@vendasta/ai-assistants 0.43.0 → 0.44.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/interfaces/annotations.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/assistant.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/annotations.mjs +21 -1
- package/esm2020/lib/_internal/objects/api.mjs +75 -75
- package/esm2020/lib/_internal/objects/assistant.mjs +27 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/fesm2015/vendasta-ai-assistants.mjs +122 -75
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +122 -75
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/assistant.enum.d.ts +2 -1
- package/lib/_internal/interfaces/annotations.interface.d.ts +3 -0
- package/lib/_internal/interfaces/api.interface.d.ts +17 -17
- package/lib/_internal/interfaces/assistant.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/objects/annotations.d.ts +6 -0
- package/lib/_internal/objects/api.d.ts +36 -36
- package/lib/_internal/objects/assistant.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -113,6 +113,7 @@ var VendorModel;
|
|
|
113
113
|
VendorModel[VendorModel["VENDOR_MODEL_UNSPECIFIED"] = 0] = "VENDOR_MODEL_UNSPECIFIED";
|
|
114
114
|
VendorModel[VendorModel["VENDOR_MODEL_OPEN_AI_REALTIME"] = 1] = "VENDOR_MODEL_OPEN_AI_REALTIME";
|
|
115
115
|
VendorModel[VendorModel["VENDOR_MODEL_DEEPGRAM"] = 2] = "VENDOR_MODEL_DEEPGRAM";
|
|
116
|
+
VendorModel[VendorModel["VENDOR_MODEL_ELEVEN_LABS"] = 3] = "VENDOR_MODEL_ELEVEN_LABS";
|
|
116
117
|
})(VendorModel || (VendorModel = {}));
|
|
117
118
|
|
|
118
119
|
// *********************************
|
|
@@ -1078,6 +1079,26 @@ class DeepgramConfig {
|
|
|
1078
1079
|
return toReturn;
|
|
1079
1080
|
}
|
|
1080
1081
|
}
|
|
1082
|
+
class ElevenLabsConfig {
|
|
1083
|
+
static fromProto(proto) {
|
|
1084
|
+
let m = new ElevenLabsConfig();
|
|
1085
|
+
m = Object.assign(m, proto);
|
|
1086
|
+
return m;
|
|
1087
|
+
}
|
|
1088
|
+
constructor(kwargs) {
|
|
1089
|
+
if (!kwargs) {
|
|
1090
|
+
return;
|
|
1091
|
+
}
|
|
1092
|
+
Object.assign(this, kwargs);
|
|
1093
|
+
}
|
|
1094
|
+
toApiJson() {
|
|
1095
|
+
const toReturn = {};
|
|
1096
|
+
if (typeof this.voice !== 'undefined') {
|
|
1097
|
+
toReturn['voice'] = this.voice;
|
|
1098
|
+
}
|
|
1099
|
+
return toReturn;
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1081
1102
|
class ConfigInboxConfig {
|
|
1082
1103
|
static fromProto(proto) {
|
|
1083
1104
|
let m = new ConfigInboxConfig();
|
|
@@ -1111,6 +1132,9 @@ class ModelConfig {
|
|
|
1111
1132
|
if (proto.deepgramConfig) {
|
|
1112
1133
|
m.deepgramConfig = DeepgramConfig.fromProto(proto.deepgramConfig);
|
|
1113
1134
|
}
|
|
1135
|
+
if (proto.elevenLabsConfig) {
|
|
1136
|
+
m.elevenLabsConfig = ElevenLabsConfig.fromProto(proto.elevenLabsConfig);
|
|
1137
|
+
}
|
|
1114
1138
|
return m;
|
|
1115
1139
|
}
|
|
1116
1140
|
constructor(kwargs) {
|
|
@@ -1127,6 +1151,9 @@ class ModelConfig {
|
|
|
1127
1151
|
if (typeof this.deepgramConfig !== 'undefined' && this.deepgramConfig !== null) {
|
|
1128
1152
|
toReturn['deepgramConfig'] = 'toApiJson' in this.deepgramConfig ? this.deepgramConfig.toApiJson() : this.deepgramConfig;
|
|
1129
1153
|
}
|
|
1154
|
+
if (typeof this.elevenLabsConfig !== 'undefined' && this.elevenLabsConfig !== null) {
|
|
1155
|
+
toReturn['elevenLabsConfig'] = 'toApiJson' in this.elevenLabsConfig ? this.elevenLabsConfig.toApiJson() : this.elevenLabsConfig;
|
|
1156
|
+
}
|
|
1130
1157
|
return toReturn;
|
|
1131
1158
|
}
|
|
1132
1159
|
}
|
|
@@ -2054,6 +2081,26 @@ class Access {
|
|
|
2054
2081
|
return toReturn;
|
|
2055
2082
|
}
|
|
2056
2083
|
}
|
|
2084
|
+
class MCPOptions {
|
|
2085
|
+
static fromProto(proto) {
|
|
2086
|
+
let m = new MCPOptions();
|
|
2087
|
+
m = Object.assign(m, proto);
|
|
2088
|
+
return m;
|
|
2089
|
+
}
|
|
2090
|
+
constructor(kwargs) {
|
|
2091
|
+
if (!kwargs) {
|
|
2092
|
+
return;
|
|
2093
|
+
}
|
|
2094
|
+
Object.assign(this, kwargs);
|
|
2095
|
+
}
|
|
2096
|
+
toApiJson() {
|
|
2097
|
+
const toReturn = {};
|
|
2098
|
+
if (typeof this.serverId !== 'undefined') {
|
|
2099
|
+
toReturn['serverId'] = this.serverId;
|
|
2100
|
+
}
|
|
2101
|
+
return toReturn;
|
|
2102
|
+
}
|
|
2103
|
+
}
|
|
2057
2104
|
|
|
2058
2105
|
function enumStringToValue$1(enumRef, value) {
|
|
2059
2106
|
if (typeof value === 'number') {
|
|
@@ -2646,29 +2693,6 @@ class ExecuteFunctionResponse {
|
|
|
2646
2693
|
return toReturn;
|
|
2647
2694
|
}
|
|
2648
2695
|
}
|
|
2649
|
-
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
2650
|
-
static fromProto(proto) {
|
|
2651
|
-
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
2652
|
-
m = Object.assign(m, proto);
|
|
2653
|
-
if (proto.type) {
|
|
2654
|
-
m.type = enumStringToValue(AssistantType, proto.type);
|
|
2655
|
-
}
|
|
2656
|
-
return m;
|
|
2657
|
-
}
|
|
2658
|
-
constructor(kwargs) {
|
|
2659
|
-
if (!kwargs) {
|
|
2660
|
-
return;
|
|
2661
|
-
}
|
|
2662
|
-
Object.assign(this, kwargs);
|
|
2663
|
-
}
|
|
2664
|
-
toApiJson() {
|
|
2665
|
-
const toReturn = {};
|
|
2666
|
-
if (typeof this.type !== 'undefined') {
|
|
2667
|
-
toReturn['type'] = this.type;
|
|
2668
|
-
}
|
|
2669
|
-
return toReturn;
|
|
2670
|
-
}
|
|
2671
|
-
}
|
|
2672
2696
|
class ListConnectionsRequestFilters {
|
|
2673
2697
|
static fromProto(proto) {
|
|
2674
2698
|
let m = new ListConnectionsRequestFilters();
|
|
@@ -2698,15 +2722,15 @@ class ListConnectionsRequestFilters {
|
|
|
2698
2722
|
return toReturn;
|
|
2699
2723
|
}
|
|
2700
2724
|
}
|
|
2701
|
-
class
|
|
2725
|
+
class ListAvailableModelsRequestFilters {
|
|
2702
2726
|
static fromProto(proto) {
|
|
2703
|
-
let m = new
|
|
2727
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
2704
2728
|
m = Object.assign(m, proto);
|
|
2705
|
-
if (proto.
|
|
2706
|
-
m.
|
|
2729
|
+
if (proto.vendor) {
|
|
2730
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
2707
2731
|
}
|
|
2708
|
-
if (proto.
|
|
2709
|
-
m.
|
|
2732
|
+
if (proto.type) {
|
|
2733
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
2710
2734
|
}
|
|
2711
2735
|
return m;
|
|
2712
2736
|
}
|
|
@@ -2718,21 +2742,21 @@ class ListFunctionRequestFilters {
|
|
|
2718
2742
|
}
|
|
2719
2743
|
toApiJson() {
|
|
2720
2744
|
const toReturn = {};
|
|
2721
|
-
if (typeof this.
|
|
2722
|
-
toReturn['
|
|
2745
|
+
if (typeof this.vendor !== 'undefined') {
|
|
2746
|
+
toReturn['vendor'] = this.vendor;
|
|
2723
2747
|
}
|
|
2724
|
-
if (typeof this.
|
|
2725
|
-
toReturn['
|
|
2748
|
+
if (typeof this.type !== 'undefined') {
|
|
2749
|
+
toReturn['type'] = this.type;
|
|
2726
2750
|
}
|
|
2727
2751
|
return toReturn;
|
|
2728
2752
|
}
|
|
2729
2753
|
}
|
|
2730
|
-
class
|
|
2754
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
2731
2755
|
static fromProto(proto) {
|
|
2732
|
-
let m = new
|
|
2756
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
2733
2757
|
m = Object.assign(m, proto);
|
|
2734
|
-
if (proto.
|
|
2735
|
-
m.
|
|
2758
|
+
if (proto.type) {
|
|
2759
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
2736
2760
|
}
|
|
2737
2761
|
return m;
|
|
2738
2762
|
}
|
|
@@ -2744,8 +2768,8 @@ class ListPromptModuleRequestFilters {
|
|
|
2744
2768
|
}
|
|
2745
2769
|
toApiJson() {
|
|
2746
2770
|
const toReturn = {};
|
|
2747
|
-
if (typeof this.
|
|
2748
|
-
toReturn['
|
|
2771
|
+
if (typeof this.type !== 'undefined') {
|
|
2772
|
+
toReturn['type'] = this.type;
|
|
2749
2773
|
}
|
|
2750
2774
|
return toReturn;
|
|
2751
2775
|
}
|
|
@@ -2820,15 +2844,15 @@ class ListAssistantRequestFilters {
|
|
|
2820
2844
|
return toReturn;
|
|
2821
2845
|
}
|
|
2822
2846
|
}
|
|
2823
|
-
class
|
|
2847
|
+
class ListFunctionRequestFilters {
|
|
2824
2848
|
static fromProto(proto) {
|
|
2825
|
-
let m = new
|
|
2849
|
+
let m = new ListFunctionRequestFilters();
|
|
2826
2850
|
m = Object.assign(m, proto);
|
|
2827
|
-
if (proto.
|
|
2828
|
-
m.
|
|
2851
|
+
if (proto.namespace) {
|
|
2852
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2829
2853
|
}
|
|
2830
|
-
if (proto.
|
|
2831
|
-
m.
|
|
2854
|
+
if (proto.namespaces) {
|
|
2855
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
2832
2856
|
}
|
|
2833
2857
|
return m;
|
|
2834
2858
|
}
|
|
@@ -2840,11 +2864,34 @@ class ListAvailableModelsRequestFilters {
|
|
|
2840
2864
|
}
|
|
2841
2865
|
toApiJson() {
|
|
2842
2866
|
const toReturn = {};
|
|
2843
|
-
if (typeof this.
|
|
2844
|
-
toReturn['
|
|
2867
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2868
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2845
2869
|
}
|
|
2846
|
-
if (typeof this.
|
|
2847
|
-
toReturn['
|
|
2870
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
2871
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
2872
|
+
}
|
|
2873
|
+
return toReturn;
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
class ListPromptModuleRequestFilters {
|
|
2877
|
+
static fromProto(proto) {
|
|
2878
|
+
let m = new ListPromptModuleRequestFilters();
|
|
2879
|
+
m = Object.assign(m, proto);
|
|
2880
|
+
if (proto.namespace) {
|
|
2881
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2882
|
+
}
|
|
2883
|
+
return m;
|
|
2884
|
+
}
|
|
2885
|
+
constructor(kwargs) {
|
|
2886
|
+
if (!kwargs) {
|
|
2887
|
+
return;
|
|
2888
|
+
}
|
|
2889
|
+
Object.assign(this, kwargs);
|
|
2890
|
+
}
|
|
2891
|
+
toApiJson() {
|
|
2892
|
+
const toReturn = {};
|
|
2893
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2894
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2848
2895
|
}
|
|
2849
2896
|
return toReturn;
|
|
2850
2897
|
}
|
|
@@ -4341,13 +4388,10 @@ class ListPromptVersionsResponse {
|
|
|
4341
4388
|
return toReturn;
|
|
4342
4389
|
}
|
|
4343
4390
|
}
|
|
4344
|
-
class
|
|
4391
|
+
class UpsertAssistantRequestOptions {
|
|
4345
4392
|
static fromProto(proto) {
|
|
4346
|
-
let m = new
|
|
4393
|
+
let m = new UpsertAssistantRequestOptions();
|
|
4347
4394
|
m = Object.assign(m, proto);
|
|
4348
|
-
if (proto.maxTokens) {
|
|
4349
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4350
|
-
}
|
|
4351
4395
|
return m;
|
|
4352
4396
|
}
|
|
4353
4397
|
constructor(kwargs) {
|
|
@@ -4358,14 +4402,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
4358
4402
|
}
|
|
4359
4403
|
toApiJson() {
|
|
4360
4404
|
const toReturn = {};
|
|
4361
|
-
if (typeof this.
|
|
4362
|
-
toReturn['
|
|
4363
|
-
}
|
|
4364
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4365
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4366
|
-
}
|
|
4367
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
4368
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
4405
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
4406
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
4369
4407
|
}
|
|
4370
4408
|
return toReturn;
|
|
4371
4409
|
}
|
|
@@ -4390,9 +4428,9 @@ class CreateAssistantRequestOptions {
|
|
|
4390
4428
|
return toReturn;
|
|
4391
4429
|
}
|
|
4392
4430
|
}
|
|
4393
|
-
class
|
|
4431
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
4394
4432
|
static fromProto(proto) {
|
|
4395
|
-
let m = new
|
|
4433
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
4396
4434
|
m = Object.assign(m, proto);
|
|
4397
4435
|
return m;
|
|
4398
4436
|
}
|
|
@@ -4404,16 +4442,19 @@ class GetAssistantRequestOptions {
|
|
|
4404
4442
|
}
|
|
4405
4443
|
toApiJson() {
|
|
4406
4444
|
const toReturn = {};
|
|
4407
|
-
if (typeof this.
|
|
4408
|
-
toReturn['
|
|
4445
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
4446
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
4409
4447
|
}
|
|
4410
4448
|
return toReturn;
|
|
4411
4449
|
}
|
|
4412
4450
|
}
|
|
4413
|
-
class
|
|
4451
|
+
class GenerateChatAnswerRequestOptions {
|
|
4414
4452
|
static fromProto(proto) {
|
|
4415
|
-
let m = new
|
|
4453
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4416
4454
|
m = Object.assign(m, proto);
|
|
4455
|
+
if (proto.maxTokens) {
|
|
4456
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4457
|
+
}
|
|
4417
4458
|
return m;
|
|
4418
4459
|
}
|
|
4419
4460
|
constructor(kwargs) {
|
|
@@ -4424,15 +4465,21 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4424
4465
|
}
|
|
4425
4466
|
toApiJson() {
|
|
4426
4467
|
const toReturn = {};
|
|
4427
|
-
if (typeof this.
|
|
4428
|
-
toReturn['
|
|
4468
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
4469
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
4470
|
+
}
|
|
4471
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4472
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4473
|
+
}
|
|
4474
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
4475
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
4429
4476
|
}
|
|
4430
4477
|
return toReturn;
|
|
4431
4478
|
}
|
|
4432
4479
|
}
|
|
4433
|
-
class
|
|
4480
|
+
class GetAssistantRequestOptions {
|
|
4434
4481
|
static fromProto(proto) {
|
|
4435
|
-
let m = new
|
|
4482
|
+
let m = new GetAssistantRequestOptions();
|
|
4436
4483
|
m = Object.assign(m, proto);
|
|
4437
4484
|
return m;
|
|
4438
4485
|
}
|
|
@@ -4444,8 +4491,8 @@ class UpsertAssistantRequestOptions {
|
|
|
4444
4491
|
}
|
|
4445
4492
|
toApiJson() {
|
|
4446
4493
|
const toReturn = {};
|
|
4447
|
-
if (typeof this.
|
|
4448
|
-
toReturn['
|
|
4494
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
4495
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
4449
4496
|
}
|
|
4450
4497
|
return toReturn;
|
|
4451
4498
|
}
|
|
@@ -5199,5 +5246,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5199
5246
|
* Generated bundle index. Do not edit.
|
|
5200
5247
|
*/
|
|
5201
5248
|
|
|
5202
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, 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, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, 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, 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, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, 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, UpsertTestCasesRequest, VendorModel };
|
|
5249
|
+
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, 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, 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, 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, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, 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, UpsertTestCasesRequest, VendorModel };
|
|
5203
5250
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|