@vendasta/ai-assistants 0.26.0 → 0.28.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 +7 -2
- package/esm2020/lib/_internal/enums/answer.enum.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 +109 -45
- package/esm2020/lib/_internal/objects/function.mjs +73 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/fesm2015/vendasta-ai-assistants.mjs +186 -44
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +186 -44
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/assistant.api.service.d.ts +3 -2
- package/lib/_internal/enums/answer.enum.d.ts +2 -1
- package/lib/_internal/interfaces/api.interface.d.ts +21 -11
- package/lib/_internal/interfaces/function.interface.d.ts +10 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/objects/api.d.ts +43 -27
- package/lib/_internal/objects/function.d.ts +19 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -111,6 +111,7 @@ var ChatChannel;
|
|
|
111
111
|
ChatChannel[ChatChannel["CHAT_CHANNEL_FACEBOOK"] = 5] = "CHAT_CHANNEL_FACEBOOK";
|
|
112
112
|
ChatChannel[ChatChannel["CHAT_CHANNEL_INSTAGRAM"] = 7] = "CHAT_CHANNEL_INSTAGRAM";
|
|
113
113
|
ChatChannel[ChatChannel["CHAT_CHANNEL_AUTOMATION"] = 8] = "CHAT_CHANNEL_AUTOMATION";
|
|
114
|
+
ChatChannel[ChatChannel["CHAT_CHANNEL_PLATFORM"] = 9] = "CHAT_CHANNEL_PLATFORM";
|
|
114
115
|
})(ChatChannel || (ChatChannel = {}));
|
|
115
116
|
var ChatMessageRole;
|
|
116
117
|
(function (ChatMessageRole) {
|
|
@@ -322,6 +323,9 @@ class Function {
|
|
|
322
323
|
if (proto.headers) {
|
|
323
324
|
m.headers = proto.headers.map(FunctionHeader.fromProto);
|
|
324
325
|
}
|
|
326
|
+
if (proto.authStrategy) {
|
|
327
|
+
m.authStrategy = FunctionAuthStrategy.fromProto(proto.authStrategy);
|
|
328
|
+
}
|
|
325
329
|
return m;
|
|
326
330
|
}
|
|
327
331
|
constructor(kwargs) {
|
|
@@ -362,6 +366,38 @@ class Function {
|
|
|
362
366
|
if (typeof this.managed !== 'undefined') {
|
|
363
367
|
toReturn['managed'] = this.managed;
|
|
364
368
|
}
|
|
369
|
+
if (typeof this.authStrategy !== 'undefined' && this.authStrategy !== null) {
|
|
370
|
+
toReturn['authStrategy'] = 'toApiJson' in this.authStrategy ? this.authStrategy.toApiJson() : this.authStrategy;
|
|
371
|
+
}
|
|
372
|
+
return toReturn;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class FunctionAuthStrategy {
|
|
376
|
+
static fromProto(proto) {
|
|
377
|
+
let m = new FunctionAuthStrategy();
|
|
378
|
+
m = Object.assign(m, proto);
|
|
379
|
+
if (proto.unspecified) {
|
|
380
|
+
m.unspecified = FunctionAuthStrategyUnspecifiedFunctionAuthStrategy.fromProto(proto.unspecified);
|
|
381
|
+
}
|
|
382
|
+
if (proto.platformManaged) {
|
|
383
|
+
m.platformManaged = FunctionAuthStrategyPlatformManagedFunctionAuthStrategy.fromProto(proto.platformManaged);
|
|
384
|
+
}
|
|
385
|
+
return m;
|
|
386
|
+
}
|
|
387
|
+
constructor(kwargs) {
|
|
388
|
+
if (!kwargs) {
|
|
389
|
+
return;
|
|
390
|
+
}
|
|
391
|
+
Object.assign(this, kwargs);
|
|
392
|
+
}
|
|
393
|
+
toApiJson() {
|
|
394
|
+
const toReturn = {};
|
|
395
|
+
if (typeof this.unspecified !== 'undefined' && this.unspecified !== null) {
|
|
396
|
+
toReturn['unspecified'] = 'toApiJson' in this.unspecified ? this.unspecified.toApiJson() : this.unspecified;
|
|
397
|
+
}
|
|
398
|
+
if (typeof this.platformManaged !== 'undefined' && this.platformManaged !== null) {
|
|
399
|
+
toReturn['platformManaged'] = 'toApiJson' in this.platformManaged ? this.platformManaged.toApiJson() : this.platformManaged;
|
|
400
|
+
}
|
|
365
401
|
return toReturn;
|
|
366
402
|
}
|
|
367
403
|
}
|
|
@@ -461,6 +497,43 @@ class FunctionParameter {
|
|
|
461
497
|
return toReturn;
|
|
462
498
|
}
|
|
463
499
|
}
|
|
500
|
+
class FunctionAuthStrategyPlatformManagedFunctionAuthStrategy {
|
|
501
|
+
static fromProto(proto) {
|
|
502
|
+
let m = new FunctionAuthStrategyPlatformManagedFunctionAuthStrategy();
|
|
503
|
+
m = Object.assign(m, proto);
|
|
504
|
+
return m;
|
|
505
|
+
}
|
|
506
|
+
constructor(kwargs) {
|
|
507
|
+
if (!kwargs) {
|
|
508
|
+
return;
|
|
509
|
+
}
|
|
510
|
+
Object.assign(this, kwargs);
|
|
511
|
+
}
|
|
512
|
+
toApiJson() {
|
|
513
|
+
const toReturn = {};
|
|
514
|
+
if (typeof this.requiredScopes !== 'undefined') {
|
|
515
|
+
toReturn['requiredScopes'] = this.requiredScopes;
|
|
516
|
+
}
|
|
517
|
+
return toReturn;
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
class FunctionAuthStrategyUnspecifiedFunctionAuthStrategy {
|
|
521
|
+
static fromProto(proto) {
|
|
522
|
+
let m = new FunctionAuthStrategyUnspecifiedFunctionAuthStrategy();
|
|
523
|
+
m = Object.assign(m, proto);
|
|
524
|
+
return m;
|
|
525
|
+
}
|
|
526
|
+
constructor(kwargs) {
|
|
527
|
+
if (!kwargs) {
|
|
528
|
+
return;
|
|
529
|
+
}
|
|
530
|
+
Object.assign(this, kwargs);
|
|
531
|
+
}
|
|
532
|
+
toApiJson() {
|
|
533
|
+
const toReturn = {};
|
|
534
|
+
return toReturn;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
464
537
|
|
|
465
538
|
function enumStringToValue$8(enumRef, value) {
|
|
466
539
|
if (typeof value === 'number') {
|
|
@@ -1866,15 +1939,15 @@ class DeployPromptRequest {
|
|
|
1866
1939
|
return toReturn;
|
|
1867
1940
|
}
|
|
1868
1941
|
}
|
|
1869
|
-
class
|
|
1942
|
+
class ExecuteFunctionRequest {
|
|
1870
1943
|
static fromProto(proto) {
|
|
1871
|
-
let m = new
|
|
1944
|
+
let m = new ExecuteFunctionRequest();
|
|
1872
1945
|
m = Object.assign(m, proto);
|
|
1873
|
-
if (proto.
|
|
1874
|
-
m.
|
|
1946
|
+
if (proto.assistantKey) {
|
|
1947
|
+
m.assistantKey = AssistantKey.fromProto(proto.assistantKey);
|
|
1875
1948
|
}
|
|
1876
|
-
if (proto.
|
|
1877
|
-
m.
|
|
1949
|
+
if (proto.functionKey) {
|
|
1950
|
+
m.functionKey = FunctionKey.fromProto(proto.functionKey);
|
|
1878
1951
|
}
|
|
1879
1952
|
return m;
|
|
1880
1953
|
}
|
|
@@ -1886,22 +1959,57 @@ class ListConnectionsRequestFilters {
|
|
|
1886
1959
|
}
|
|
1887
1960
|
toApiJson() {
|
|
1888
1961
|
const toReturn = {};
|
|
1889
|
-
if (typeof this.
|
|
1890
|
-
toReturn['
|
|
1962
|
+
if (typeof this.assistantKey !== 'undefined' && this.assistantKey !== null) {
|
|
1963
|
+
toReturn['assistantKey'] = 'toApiJson' in this.assistantKey ? this.assistantKey.toApiJson() : this.assistantKey;
|
|
1891
1964
|
}
|
|
1892
|
-
if (typeof this.
|
|
1893
|
-
toReturn['
|
|
1965
|
+
if (typeof this.functionKey !== 'undefined' && this.functionKey !== null) {
|
|
1966
|
+
toReturn['functionKey'] = 'toApiJson' in this.functionKey ? this.functionKey.toApiJson() : this.functionKey;
|
|
1967
|
+
}
|
|
1968
|
+
if (typeof this.arguments !== 'undefined') {
|
|
1969
|
+
toReturn['arguments'] = this.arguments;
|
|
1894
1970
|
}
|
|
1895
1971
|
return toReturn;
|
|
1896
1972
|
}
|
|
1897
1973
|
}
|
|
1898
|
-
class
|
|
1974
|
+
class ExecuteFunctionResponse {
|
|
1899
1975
|
static fromProto(proto) {
|
|
1900
|
-
let m = new
|
|
1976
|
+
let m = new ExecuteFunctionResponse();
|
|
1977
|
+
m = Object.assign(m, proto);
|
|
1978
|
+
if (proto.metadata) {
|
|
1979
|
+
m.metadata = proto.metadata.map(KeyValuePair.fromProto);
|
|
1980
|
+
}
|
|
1981
|
+
return m;
|
|
1982
|
+
}
|
|
1983
|
+
constructor(kwargs) {
|
|
1984
|
+
if (!kwargs) {
|
|
1985
|
+
return;
|
|
1986
|
+
}
|
|
1987
|
+
Object.assign(this, kwargs);
|
|
1988
|
+
}
|
|
1989
|
+
toApiJson() {
|
|
1990
|
+
const toReturn = {};
|
|
1991
|
+
if (typeof this.output !== 'undefined') {
|
|
1992
|
+
toReturn['output'] = this.output;
|
|
1993
|
+
}
|
|
1994
|
+
if (typeof this.metadata !== 'undefined' && this.metadata !== null) {
|
|
1995
|
+
toReturn['metadata'] = 'toApiJson' in this.metadata ? this.metadata.toApiJson() : this.metadata;
|
|
1996
|
+
}
|
|
1997
|
+
return toReturn;
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
class ListGoalsRequestFilters {
|
|
2001
|
+
static fromProto(proto) {
|
|
2002
|
+
let m = new ListGoalsRequestFilters();
|
|
1901
2003
|
m = Object.assign(m, proto);
|
|
1902
2004
|
if (proto.namespace) {
|
|
1903
2005
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1904
2006
|
}
|
|
2007
|
+
if (proto.type) {
|
|
2008
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
2009
|
+
}
|
|
2010
|
+
if (proto.supportedChannels) {
|
|
2011
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
2012
|
+
}
|
|
1905
2013
|
return m;
|
|
1906
2014
|
}
|
|
1907
2015
|
constructor(kwargs) {
|
|
@@ -1915,6 +2023,12 @@ class ListPromptModuleRequestFilters {
|
|
|
1915
2023
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1916
2024
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1917
2025
|
}
|
|
2026
|
+
if (typeof this.type !== 'undefined') {
|
|
2027
|
+
toReturn['type'] = this.type;
|
|
2028
|
+
}
|
|
2029
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
2030
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
2031
|
+
}
|
|
1918
2032
|
return toReturn;
|
|
1919
2033
|
}
|
|
1920
2034
|
}
|
|
@@ -1941,6 +2055,29 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
1941
2055
|
return toReturn;
|
|
1942
2056
|
}
|
|
1943
2057
|
}
|
|
2058
|
+
class ListFunctionRequestFilters {
|
|
2059
|
+
static fromProto(proto) {
|
|
2060
|
+
let m = new ListFunctionRequestFilters();
|
|
2061
|
+
m = Object.assign(m, proto);
|
|
2062
|
+
if (proto.namespace) {
|
|
2063
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2064
|
+
}
|
|
2065
|
+
return m;
|
|
2066
|
+
}
|
|
2067
|
+
constructor(kwargs) {
|
|
2068
|
+
if (!kwargs) {
|
|
2069
|
+
return;
|
|
2070
|
+
}
|
|
2071
|
+
Object.assign(this, kwargs);
|
|
2072
|
+
}
|
|
2073
|
+
toApiJson() {
|
|
2074
|
+
const toReturn = {};
|
|
2075
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2076
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2077
|
+
}
|
|
2078
|
+
return toReturn;
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
1944
2081
|
class ListAssistantRequestFilters {
|
|
1945
2082
|
static fromProto(proto) {
|
|
1946
2083
|
let m = new ListAssistantRequestFilters();
|
|
@@ -1970,9 +2107,9 @@ class ListAssistantRequestFilters {
|
|
|
1970
2107
|
return toReturn;
|
|
1971
2108
|
}
|
|
1972
2109
|
}
|
|
1973
|
-
class
|
|
2110
|
+
class ListPromptModuleRequestFilters {
|
|
1974
2111
|
static fromProto(proto) {
|
|
1975
|
-
let m = new
|
|
2112
|
+
let m = new ListPromptModuleRequestFilters();
|
|
1976
2113
|
m = Object.assign(m, proto);
|
|
1977
2114
|
if (proto.namespace) {
|
|
1978
2115
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
@@ -1993,18 +2130,15 @@ class ListFunctionRequestFilters {
|
|
|
1993
2130
|
return toReturn;
|
|
1994
2131
|
}
|
|
1995
2132
|
}
|
|
1996
|
-
class
|
|
2133
|
+
class ListConnectionsRequestFilters {
|
|
1997
2134
|
static fromProto(proto) {
|
|
1998
|
-
let m = new
|
|
2135
|
+
let m = new ListConnectionsRequestFilters();
|
|
1999
2136
|
m = Object.assign(m, proto);
|
|
2000
2137
|
if (proto.namespace) {
|
|
2001
2138
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2002
2139
|
}
|
|
2003
|
-
if (proto.
|
|
2004
|
-
m.
|
|
2005
|
-
}
|
|
2006
|
-
if (proto.supportedChannels) {
|
|
2007
|
-
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
2140
|
+
if (proto.assistantType) {
|
|
2141
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
2008
2142
|
}
|
|
2009
2143
|
return m;
|
|
2010
2144
|
}
|
|
@@ -2019,11 +2153,8 @@ class ListGoalsRequestFilters {
|
|
|
2019
2153
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2020
2154
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2021
2155
|
}
|
|
2022
|
-
if (typeof this.
|
|
2023
|
-
toReturn['
|
|
2024
|
-
}
|
|
2025
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
2026
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
2156
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
2157
|
+
toReturn['assistantType'] = this.assistantType;
|
|
2027
2158
|
}
|
|
2028
2159
|
return toReturn;
|
|
2029
2160
|
}
|
|
@@ -2047,6 +2178,9 @@ class GenerateChatAnswerRequest {
|
|
|
2047
2178
|
if (proto.options) {
|
|
2048
2179
|
m.options = GenerateChatAnswerRequestOptions.fromProto(proto.options);
|
|
2049
2180
|
}
|
|
2181
|
+
if (proto.assistantKey) {
|
|
2182
|
+
m.assistantKey = AssistantKey.fromProto(proto.assistantKey);
|
|
2183
|
+
}
|
|
2050
2184
|
return m;
|
|
2051
2185
|
}
|
|
2052
2186
|
constructor(kwargs) {
|
|
@@ -2072,6 +2206,9 @@ class GenerateChatAnswerRequest {
|
|
|
2072
2206
|
if (typeof this.options !== 'undefined' && this.options !== null) {
|
|
2073
2207
|
toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;
|
|
2074
2208
|
}
|
|
2209
|
+
if (typeof this.assistantKey !== 'undefined' && this.assistantKey !== null) {
|
|
2210
|
+
toReturn['assistantKey'] = 'toApiJson' in this.assistantKey ? this.assistantKey.toApiJson() : this.assistantKey;
|
|
2211
|
+
}
|
|
2075
2212
|
return toReturn;
|
|
2076
2213
|
}
|
|
2077
2214
|
}
|
|
@@ -3450,10 +3587,13 @@ class ListPromptVersionsResponse {
|
|
|
3450
3587
|
return toReturn;
|
|
3451
3588
|
}
|
|
3452
3589
|
}
|
|
3453
|
-
class
|
|
3590
|
+
class GenerateChatAnswerRequestOptions {
|
|
3454
3591
|
static fromProto(proto) {
|
|
3455
|
-
let m = new
|
|
3592
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
3456
3593
|
m = Object.assign(m, proto);
|
|
3594
|
+
if (proto.maxTokens) {
|
|
3595
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
3596
|
+
}
|
|
3457
3597
|
return m;
|
|
3458
3598
|
}
|
|
3459
3599
|
constructor(kwargs) {
|
|
@@ -3464,8 +3604,14 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
3464
3604
|
}
|
|
3465
3605
|
toApiJson() {
|
|
3466
3606
|
const toReturn = {};
|
|
3467
|
-
if (typeof this.
|
|
3468
|
-
toReturn['
|
|
3607
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
3608
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
3609
|
+
}
|
|
3610
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
3611
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
3612
|
+
}
|
|
3613
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
3614
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
3469
3615
|
}
|
|
3470
3616
|
return toReturn;
|
|
3471
3617
|
}
|
|
@@ -3490,13 +3636,10 @@ class UpsertAssistantRequestOptions {
|
|
|
3490
3636
|
return toReturn;
|
|
3491
3637
|
}
|
|
3492
3638
|
}
|
|
3493
|
-
class
|
|
3639
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
3494
3640
|
static fromProto(proto) {
|
|
3495
|
-
let m = new
|
|
3641
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
3496
3642
|
m = Object.assign(m, proto);
|
|
3497
|
-
if (proto.maxTokens) {
|
|
3498
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
3499
|
-
}
|
|
3500
3643
|
return m;
|
|
3501
3644
|
}
|
|
3502
3645
|
constructor(kwargs) {
|
|
@@ -3507,14 +3650,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
3507
3650
|
}
|
|
3508
3651
|
toApiJson() {
|
|
3509
3652
|
const toReturn = {};
|
|
3510
|
-
if (typeof this.
|
|
3511
|
-
toReturn['
|
|
3512
|
-
}
|
|
3513
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
3514
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
3515
|
-
}
|
|
3516
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
3517
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
3653
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
3654
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
3518
3655
|
}
|
|
3519
3656
|
return toReturn;
|
|
3520
3657
|
}
|
|
@@ -3821,6 +3958,11 @@ class AssistantApiService {
|
|
|
3821
3958
|
const request = (r.toApiJson) ? r : new SetAssistantConnectionsRequest(r);
|
|
3822
3959
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/SetAssistantConnections", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
3823
3960
|
}
|
|
3961
|
+
executeFunction(r) {
|
|
3962
|
+
const request = (r.toApiJson) ? r : new ExecuteFunctionRequest(r);
|
|
3963
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.AssistantService/ExecuteFunction", request.toApiJson(), this.apiOptions())
|
|
3964
|
+
.pipe(map(resp => ExecuteFunctionResponse.fromProto(resp)));
|
|
3965
|
+
}
|
|
3824
3966
|
}
|
|
3825
3967
|
AssistantApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssistantApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3826
3968
|
AssistantApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssistantApiService, providedIn: 'root' });
|
|
@@ -4160,5 +4302,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4160
4302
|
* Generated bundle index. Do not edit.
|
|
4161
4303
|
*/
|
|
4162
4304
|
|
|
4163
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, 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, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ModelConfig, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, VendorModel };
|
|
4305
|
+
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, 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, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ModelConfig, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, VendorModel };
|
|
4164
4306
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|