@vendasta/ai-assistants 0.21.0 → 1.0.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/answer.enum.mjs +3 -1
- package/esm2020/lib/_internal/goal.api.service.mjs +11 -2
- 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 +130 -44
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/prompt-module.api.service.mjs +4 -3
- package/fesm2015/vendasta-ai-assistants.mjs +143 -45
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +143 -45
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/answer.enum.d.ts +3 -1
- package/lib/_internal/goal.api.service.d.ts +4 -2
- package/lib/_internal/interfaces/api.interface.d.ts +24 -12
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +47 -23
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/prompt-module.api.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -94,6 +94,8 @@ var ChatChannel;
|
|
|
94
94
|
ChatChannel[ChatChannel["CHAT_CHANNEL_WEB"] = 2] = "CHAT_CHANNEL_WEB";
|
|
95
95
|
ChatChannel[ChatChannel["CHAT_CHANNEL_SMS"] = 3] = "CHAT_CHANNEL_SMS";
|
|
96
96
|
ChatChannel[ChatChannel["CHAT_CHANNEL_WHATSAPP"] = 4] = "CHAT_CHANNEL_WHATSAPP";
|
|
97
|
+
ChatChannel[ChatChannel["CHAT_CHANNEL_FACEBOOK"] = 5] = "CHAT_CHANNEL_FACEBOOK";
|
|
98
|
+
ChatChannel[ChatChannel["CHAT_CHANNEL_INSTAGRAM"] = 7] = "CHAT_CHANNEL_INSTAGRAM";
|
|
97
99
|
})(ChatChannel || (ChatChannel = {}));
|
|
98
100
|
var ChatMessageRole;
|
|
99
101
|
(function (ChatMessageRole) {
|
|
@@ -1476,6 +1478,49 @@ class SetAssistantConnectionsRequestConnectionState {
|
|
|
1476
1478
|
return toReturn;
|
|
1477
1479
|
}
|
|
1478
1480
|
}
|
|
1481
|
+
class CreateGoalRequest {
|
|
1482
|
+
static fromProto(proto) {
|
|
1483
|
+
let m = new CreateGoalRequest();
|
|
1484
|
+
m = Object.assign(m, proto);
|
|
1485
|
+
if (proto.goal) {
|
|
1486
|
+
m.goal = Goal.fromProto(proto.goal);
|
|
1487
|
+
}
|
|
1488
|
+
return m;
|
|
1489
|
+
}
|
|
1490
|
+
constructor(kwargs) {
|
|
1491
|
+
if (!kwargs) {
|
|
1492
|
+
return;
|
|
1493
|
+
}
|
|
1494
|
+
Object.assign(this, kwargs);
|
|
1495
|
+
}
|
|
1496
|
+
toApiJson() {
|
|
1497
|
+
const toReturn = {};
|
|
1498
|
+
if (typeof this.goal !== 'undefined' && this.goal !== null) {
|
|
1499
|
+
toReturn['goal'] = 'toApiJson' in this.goal ? this.goal.toApiJson() : this.goal;
|
|
1500
|
+
}
|
|
1501
|
+
return toReturn;
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
class CreateGoalResponse {
|
|
1505
|
+
static fromProto(proto) {
|
|
1506
|
+
let m = new CreateGoalResponse();
|
|
1507
|
+
m = Object.assign(m, proto);
|
|
1508
|
+
return m;
|
|
1509
|
+
}
|
|
1510
|
+
constructor(kwargs) {
|
|
1511
|
+
if (!kwargs) {
|
|
1512
|
+
return;
|
|
1513
|
+
}
|
|
1514
|
+
Object.assign(this, kwargs);
|
|
1515
|
+
}
|
|
1516
|
+
toApiJson() {
|
|
1517
|
+
const toReturn = {};
|
|
1518
|
+
if (typeof this.id !== 'undefined') {
|
|
1519
|
+
toReturn['id'] = this.id;
|
|
1520
|
+
}
|
|
1521
|
+
return toReturn;
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1479
1524
|
class CreatePromptModuleRequest {
|
|
1480
1525
|
static fromProto(proto) {
|
|
1481
1526
|
let m = new CreatePromptModuleRequest();
|
|
@@ -1514,6 +1559,26 @@ class CreatePromptModuleRequest {
|
|
|
1514
1559
|
return toReturn;
|
|
1515
1560
|
}
|
|
1516
1561
|
}
|
|
1562
|
+
class CreatePromptModuleResponse {
|
|
1563
|
+
static fromProto(proto) {
|
|
1564
|
+
let m = new CreatePromptModuleResponse();
|
|
1565
|
+
m = Object.assign(m, proto);
|
|
1566
|
+
return m;
|
|
1567
|
+
}
|
|
1568
|
+
constructor(kwargs) {
|
|
1569
|
+
if (!kwargs) {
|
|
1570
|
+
return;
|
|
1571
|
+
}
|
|
1572
|
+
Object.assign(this, kwargs);
|
|
1573
|
+
}
|
|
1574
|
+
toApiJson() {
|
|
1575
|
+
const toReturn = {};
|
|
1576
|
+
if (typeof this.id !== 'undefined') {
|
|
1577
|
+
toReturn['id'] = this.id;
|
|
1578
|
+
}
|
|
1579
|
+
return toReturn;
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1517
1582
|
class CreatePromptModuleVersionRequest {
|
|
1518
1583
|
static fromProto(proto) {
|
|
1519
1584
|
let m = new CreatePromptModuleVersionRequest();
|
|
@@ -1780,13 +1845,16 @@ class DeployPromptRequest {
|
|
|
1780
1845
|
return toReturn;
|
|
1781
1846
|
}
|
|
1782
1847
|
}
|
|
1783
|
-
class
|
|
1848
|
+
class ListConnectionsRequestFilters {
|
|
1784
1849
|
static fromProto(proto) {
|
|
1785
|
-
let m = new
|
|
1850
|
+
let m = new ListConnectionsRequestFilters();
|
|
1786
1851
|
m = Object.assign(m, proto);
|
|
1787
1852
|
if (proto.namespace) {
|
|
1788
1853
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1789
1854
|
}
|
|
1855
|
+
if (proto.assistantType) {
|
|
1856
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
1857
|
+
}
|
|
1790
1858
|
return m;
|
|
1791
1859
|
}
|
|
1792
1860
|
constructor(kwargs) {
|
|
@@ -1800,19 +1868,19 @@ class ListPromptModuleRequestFilters {
|
|
|
1800
1868
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1801
1869
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1802
1870
|
}
|
|
1871
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
1872
|
+
toReturn['assistantType'] = this.assistantType;
|
|
1873
|
+
}
|
|
1803
1874
|
return toReturn;
|
|
1804
1875
|
}
|
|
1805
1876
|
}
|
|
1806
|
-
class
|
|
1877
|
+
class ListPromptModuleRequestFilters {
|
|
1807
1878
|
static fromProto(proto) {
|
|
1808
|
-
let m = new
|
|
1879
|
+
let m = new ListPromptModuleRequestFilters();
|
|
1809
1880
|
m = Object.assign(m, proto);
|
|
1810
1881
|
if (proto.namespace) {
|
|
1811
1882
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1812
1883
|
}
|
|
1813
|
-
if (proto.assistantType) {
|
|
1814
|
-
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
1815
|
-
}
|
|
1816
1884
|
return m;
|
|
1817
1885
|
}
|
|
1818
1886
|
constructor(kwargs) {
|
|
@@ -1826,19 +1894,13 @@ class ListConnectionsRequestFilters {
|
|
|
1826
1894
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1827
1895
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1828
1896
|
}
|
|
1829
|
-
if (typeof this.assistantType !== 'undefined') {
|
|
1830
|
-
toReturn['assistantType'] = this.assistantType;
|
|
1831
|
-
}
|
|
1832
1897
|
return toReturn;
|
|
1833
1898
|
}
|
|
1834
1899
|
}
|
|
1835
|
-
class
|
|
1900
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
1836
1901
|
static fromProto(proto) {
|
|
1837
|
-
let m = new
|
|
1902
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
1838
1903
|
m = Object.assign(m, proto);
|
|
1839
|
-
if (proto.namespace) {
|
|
1840
|
-
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1841
|
-
}
|
|
1842
1904
|
if (proto.type) {
|
|
1843
1905
|
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1844
1906
|
}
|
|
@@ -1852,27 +1914,21 @@ class ListAssistantRequestFilters {
|
|
|
1852
1914
|
}
|
|
1853
1915
|
toApiJson() {
|
|
1854
1916
|
const toReturn = {};
|
|
1855
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1856
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1857
|
-
}
|
|
1858
1917
|
if (typeof this.type !== 'undefined') {
|
|
1859
1918
|
toReturn['type'] = this.type;
|
|
1860
1919
|
}
|
|
1861
1920
|
return toReturn;
|
|
1862
1921
|
}
|
|
1863
1922
|
}
|
|
1864
|
-
class
|
|
1923
|
+
class ListAssistantRequestFilters {
|
|
1865
1924
|
static fromProto(proto) {
|
|
1866
|
-
let m = new
|
|
1925
|
+
let m = new ListAssistantRequestFilters();
|
|
1867
1926
|
m = Object.assign(m, proto);
|
|
1868
1927
|
if (proto.namespace) {
|
|
1869
1928
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1870
1929
|
}
|
|
1871
1930
|
if (proto.type) {
|
|
1872
|
-
m.type = enumStringToValue(
|
|
1873
|
-
}
|
|
1874
|
-
if (proto.supportedChannels) {
|
|
1875
|
-
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
1931
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1876
1932
|
}
|
|
1877
1933
|
return m;
|
|
1878
1934
|
}
|
|
@@ -1890,18 +1946,15 @@ class ListGoalsRequestFilters {
|
|
|
1890
1946
|
if (typeof this.type !== 'undefined') {
|
|
1891
1947
|
toReturn['type'] = this.type;
|
|
1892
1948
|
}
|
|
1893
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
1894
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
1895
|
-
}
|
|
1896
1949
|
return toReturn;
|
|
1897
1950
|
}
|
|
1898
1951
|
}
|
|
1899
|
-
class
|
|
1952
|
+
class ListFunctionRequestFilters {
|
|
1900
1953
|
static fromProto(proto) {
|
|
1901
|
-
let m = new
|
|
1954
|
+
let m = new ListFunctionRequestFilters();
|
|
1902
1955
|
m = Object.assign(m, proto);
|
|
1903
|
-
if (proto.
|
|
1904
|
-
m.
|
|
1956
|
+
if (proto.namespace) {
|
|
1957
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1905
1958
|
}
|
|
1906
1959
|
return m;
|
|
1907
1960
|
}
|
|
@@ -1913,19 +1966,25 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
1913
1966
|
}
|
|
1914
1967
|
toApiJson() {
|
|
1915
1968
|
const toReturn = {};
|
|
1916
|
-
if (typeof this.
|
|
1917
|
-
toReturn['
|
|
1969
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1970
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1918
1971
|
}
|
|
1919
1972
|
return toReturn;
|
|
1920
1973
|
}
|
|
1921
1974
|
}
|
|
1922
|
-
class
|
|
1975
|
+
class ListGoalsRequestFilters {
|
|
1923
1976
|
static fromProto(proto) {
|
|
1924
|
-
let m = new
|
|
1977
|
+
let m = new ListGoalsRequestFilters();
|
|
1925
1978
|
m = Object.assign(m, proto);
|
|
1926
1979
|
if (proto.namespace) {
|
|
1927
1980
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1928
1981
|
}
|
|
1982
|
+
if (proto.type) {
|
|
1983
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
1984
|
+
}
|
|
1985
|
+
if (proto.supportedChannels) {
|
|
1986
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
1987
|
+
}
|
|
1929
1988
|
return m;
|
|
1930
1989
|
}
|
|
1931
1990
|
constructor(kwargs) {
|
|
@@ -1939,6 +1998,12 @@ class ListFunctionRequestFilters {
|
|
|
1939
1998
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1940
1999
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1941
2000
|
}
|
|
2001
|
+
if (typeof this.type !== 'undefined') {
|
|
2002
|
+
toReturn['type'] = this.type;
|
|
2003
|
+
}
|
|
2004
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
2005
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
2006
|
+
}
|
|
1942
2007
|
return toReturn;
|
|
1943
2008
|
}
|
|
1944
2009
|
}
|
|
@@ -3364,9 +3429,9 @@ class ListPromptVersionsResponse {
|
|
|
3364
3429
|
return toReturn;
|
|
3365
3430
|
}
|
|
3366
3431
|
}
|
|
3367
|
-
class
|
|
3432
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
3368
3433
|
static fromProto(proto) {
|
|
3369
|
-
let m = new
|
|
3434
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
3370
3435
|
m = Object.assign(m, proto);
|
|
3371
3436
|
return m;
|
|
3372
3437
|
}
|
|
@@ -3378,15 +3443,15 @@ class UpsertAssistantRequestOptions {
|
|
|
3378
3443
|
}
|
|
3379
3444
|
toApiJson() {
|
|
3380
3445
|
const toReturn = {};
|
|
3381
|
-
if (typeof this.
|
|
3382
|
-
toReturn['
|
|
3446
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
3447
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
3383
3448
|
}
|
|
3384
3449
|
return toReturn;
|
|
3385
3450
|
}
|
|
3386
3451
|
}
|
|
3387
|
-
class
|
|
3452
|
+
class UpsertAssistantRequestOptions {
|
|
3388
3453
|
static fromProto(proto) {
|
|
3389
|
-
let m = new
|
|
3454
|
+
let m = new UpsertAssistantRequestOptions();
|
|
3390
3455
|
m = Object.assign(m, proto);
|
|
3391
3456
|
return m;
|
|
3392
3457
|
}
|
|
@@ -3398,8 +3463,8 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
3398
3463
|
}
|
|
3399
3464
|
toApiJson() {
|
|
3400
3465
|
const toReturn = {};
|
|
3401
|
-
if (typeof this.
|
|
3402
|
-
toReturn['
|
|
3466
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
3467
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
3403
3468
|
}
|
|
3404
3469
|
return toReturn;
|
|
3405
3470
|
}
|
|
@@ -3462,6 +3527,29 @@ class SetAssistantConnectionsRequest {
|
|
|
3462
3527
|
return toReturn;
|
|
3463
3528
|
}
|
|
3464
3529
|
}
|
|
3530
|
+
class UpdateGoalRequest {
|
|
3531
|
+
static fromProto(proto) {
|
|
3532
|
+
let m = new UpdateGoalRequest();
|
|
3533
|
+
m = Object.assign(m, proto);
|
|
3534
|
+
if (proto.goal) {
|
|
3535
|
+
m.goal = Goal.fromProto(proto.goal);
|
|
3536
|
+
}
|
|
3537
|
+
return m;
|
|
3538
|
+
}
|
|
3539
|
+
constructor(kwargs) {
|
|
3540
|
+
if (!kwargs) {
|
|
3541
|
+
return;
|
|
3542
|
+
}
|
|
3543
|
+
Object.assign(this, kwargs);
|
|
3544
|
+
}
|
|
3545
|
+
toApiJson() {
|
|
3546
|
+
const toReturn = {};
|
|
3547
|
+
if (typeof this.goal !== 'undefined' && this.goal !== null) {
|
|
3548
|
+
toReturn['goal'] = 'toApiJson' in this.goal ? this.goal.toApiJson() : this.goal;
|
|
3549
|
+
}
|
|
3550
|
+
return toReturn;
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3465
3553
|
class UpdatePromptModuleRequest {
|
|
3466
3554
|
static fromProto(proto) {
|
|
3467
3555
|
let m = new UpdatePromptModuleRequest();
|
|
@@ -3841,6 +3929,15 @@ class GoalApiService {
|
|
|
3841
3929
|
const request = (r.toApiJson) ? r : new UpsertGoalRequest(r);
|
|
3842
3930
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/Upsert", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
3843
3931
|
}
|
|
3932
|
+
create(r) {
|
|
3933
|
+
const request = (r.toApiJson) ? r : new CreateGoalRequest(r);
|
|
3934
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/Create", request.toApiJson(), this.apiOptions())
|
|
3935
|
+
.pipe(map(resp => CreateGoalResponse.fromProto(resp)));
|
|
3936
|
+
}
|
|
3937
|
+
update(r) {
|
|
3938
|
+
const request = (r.toApiJson) ? r : new UpdateGoalRequest(r);
|
|
3939
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/Update", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
3940
|
+
}
|
|
3844
3941
|
get(r) {
|
|
3845
3942
|
const request = (r.toApiJson) ? r : new GetGoalRequest(r);
|
|
3846
3943
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.GoalService/Get", request.toApiJson(), this.apiOptions())
|
|
@@ -3895,7 +3992,8 @@ class PromptModuleApiService {
|
|
|
3895
3992
|
}
|
|
3896
3993
|
create(r) {
|
|
3897
3994
|
const request = (r.toApiJson) ? r : new CreatePromptModuleRequest(r);
|
|
3898
|
-
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Create", request.toApiJson(),
|
|
3995
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Create", request.toApiJson(), this.apiOptions())
|
|
3996
|
+
.pipe(map(resp => CreatePromptModuleResponse.fromProto(resp)));
|
|
3899
3997
|
}
|
|
3900
3998
|
createVersion(r) {
|
|
3901
3999
|
const request = (r.toApiJson) ? r : new CreatePromptModuleVersionRequest(r);
|
|
@@ -4041,5 +4139,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4041
4139
|
* Generated bundle index. Do not edit.
|
|
4042
4140
|
*/
|
|
4043
4141
|
|
|
4044
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, FunctionHeader, FunctionKey, FunctionParameter, 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, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, VendorModel };
|
|
4142
|
+
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, 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 };
|
|
4045
4143
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|