@vendasta/ai-assistants 0.8.0 → 0.10.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/goal.enum.mjs +5 -4
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/connection.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/prompt.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +125 -26
- package/esm2020/lib/_internal/objects/connection.mjs +8 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/prompt.mjs +10 -1
- package/esm2020/lib/_internal/prompt-module.api.service.mjs +11 -2
- package/fesm2015/vendasta-ai-assistants.mjs +152 -28
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +152 -28
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/goal.enum.d.ts +4 -3
- package/lib/_internal/interfaces/api.interface.d.ts +27 -10
- package/lib/_internal/interfaces/connection.interface.d.ts +2 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/prompt.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +45 -19
- package/lib/_internal/objects/connection.d.ts +2 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/prompt.d.ts +2 -0
- package/lib/_internal/prompt-module.api.service.d.ts +4 -2
- package/package.json +1 -1
|
@@ -36,9 +36,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
36
36
|
var GoalType;
|
|
37
37
|
(function (GoalType) {
|
|
38
38
|
GoalType[GoalType["GOAL_TYPE_INVALID"] = 0] = "GOAL_TYPE_INVALID";
|
|
39
|
-
GoalType[GoalType["
|
|
40
|
-
GoalType[GoalType["
|
|
41
|
-
GoalType[GoalType["
|
|
39
|
+
GoalType[GoalType["GOAL_TYPE_OBJECTIVE"] = 1] = "GOAL_TYPE_OBJECTIVE";
|
|
40
|
+
GoalType[GoalType["GOAL_TYPE_KNOWLEDGE"] = 2] = "GOAL_TYPE_KNOWLEDGE";
|
|
41
|
+
GoalType[GoalType["GOAL_TYPE_PERSONALITY"] = 3] = "GOAL_TYPE_PERSONALITY";
|
|
42
|
+
GoalType[GoalType["GOAL_TYPE_CUSTOM"] = 4] = "GOAL_TYPE_CUSTOM";
|
|
42
43
|
})(GoalType || (GoalType = {}));
|
|
43
44
|
|
|
44
45
|
// *********************************
|
|
@@ -451,6 +452,9 @@ class PromptModule {
|
|
|
451
452
|
if (proto.updated) {
|
|
452
453
|
m.updated = new Date(proto.updated);
|
|
453
454
|
}
|
|
455
|
+
if (proto.deployed) {
|
|
456
|
+
m.deployed = new Date(proto.deployed);
|
|
457
|
+
}
|
|
454
458
|
return m;
|
|
455
459
|
}
|
|
456
460
|
constructor(kwargs) {
|
|
@@ -470,6 +474,9 @@ class PromptModule {
|
|
|
470
474
|
if (typeof this.name !== 'undefined') {
|
|
471
475
|
toReturn['name'] = this.name;
|
|
472
476
|
}
|
|
477
|
+
if (typeof this.description !== 'undefined') {
|
|
478
|
+
toReturn['description'] = this.description;
|
|
479
|
+
}
|
|
473
480
|
if (typeof this.deployedVersion !== 'undefined') {
|
|
474
481
|
toReturn['deployedVersion'] = this.deployedVersion;
|
|
475
482
|
}
|
|
@@ -479,6 +486,9 @@ class PromptModule {
|
|
|
479
486
|
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
|
480
487
|
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
|
481
488
|
}
|
|
489
|
+
if (typeof this.deployed !== 'undefined' && this.deployed !== null) {
|
|
490
|
+
toReturn['deployed'] = 'toApiJson' in this.deployed ? this.deployed.toApiJson() : this.deployed;
|
|
491
|
+
}
|
|
482
492
|
return toReturn;
|
|
483
493
|
}
|
|
484
494
|
}
|
|
@@ -845,6 +855,9 @@ class Connection {
|
|
|
845
855
|
if (proto.assistantKeys) {
|
|
846
856
|
m.assistantKeys = proto.assistantKeys.map(AssistantKey.fromProto);
|
|
847
857
|
}
|
|
858
|
+
if (proto.supportedAssistantTypes) {
|
|
859
|
+
m.supportedAssistantTypes = proto.supportedAssistantTypes.map((v) => enumStringToValue$5(AssistantType, v));
|
|
860
|
+
}
|
|
848
861
|
return m;
|
|
849
862
|
}
|
|
850
863
|
constructor(kwargs) {
|
|
@@ -882,6 +895,9 @@ class Connection {
|
|
|
882
895
|
if (typeof this.isConnectionLocked !== 'undefined') {
|
|
883
896
|
toReturn['isConnectionLocked'] = this.isConnectionLocked;
|
|
884
897
|
}
|
|
898
|
+
if (typeof this.supportedAssistantTypes !== 'undefined') {
|
|
899
|
+
toReturn['supportedAssistantTypes'] = this.supportedAssistantTypes;
|
|
900
|
+
}
|
|
885
901
|
return toReturn;
|
|
886
902
|
}
|
|
887
903
|
}
|
|
@@ -1222,6 +1238,41 @@ class CreatePromptModuleRequest {
|
|
|
1222
1238
|
}
|
|
1223
1239
|
Object.assign(this, kwargs);
|
|
1224
1240
|
}
|
|
1241
|
+
toApiJson() {
|
|
1242
|
+
const toReturn = {};
|
|
1243
|
+
if (typeof this.id !== 'undefined') {
|
|
1244
|
+
toReturn['id'] = this.id;
|
|
1245
|
+
}
|
|
1246
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1247
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1248
|
+
}
|
|
1249
|
+
if (typeof this.name !== 'undefined') {
|
|
1250
|
+
toReturn['name'] = this.name;
|
|
1251
|
+
}
|
|
1252
|
+
if (typeof this.description !== 'undefined') {
|
|
1253
|
+
toReturn['description'] = this.description;
|
|
1254
|
+
}
|
|
1255
|
+
if (typeof this.content !== 'undefined') {
|
|
1256
|
+
toReturn['content'] = this.content;
|
|
1257
|
+
}
|
|
1258
|
+
return toReturn;
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
class CreatePromptModuleVersionRequest {
|
|
1262
|
+
static fromProto(proto) {
|
|
1263
|
+
let m = new CreatePromptModuleVersionRequest();
|
|
1264
|
+
m = Object.assign(m, proto);
|
|
1265
|
+
if (proto.namespace) {
|
|
1266
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1267
|
+
}
|
|
1268
|
+
return m;
|
|
1269
|
+
}
|
|
1270
|
+
constructor(kwargs) {
|
|
1271
|
+
if (!kwargs) {
|
|
1272
|
+
return;
|
|
1273
|
+
}
|
|
1274
|
+
Object.assign(this, kwargs);
|
|
1275
|
+
}
|
|
1225
1276
|
toApiJson() {
|
|
1226
1277
|
const toReturn = {};
|
|
1227
1278
|
if (typeof this.id !== 'undefined') {
|
|
@@ -1467,12 +1518,12 @@ class DeployPromptRequest {
|
|
|
1467
1518
|
return toReturn;
|
|
1468
1519
|
}
|
|
1469
1520
|
}
|
|
1470
|
-
class
|
|
1521
|
+
class ListGoalsRequestFilters {
|
|
1471
1522
|
static fromProto(proto) {
|
|
1472
|
-
let m = new
|
|
1523
|
+
let m = new ListGoalsRequestFilters();
|
|
1473
1524
|
m = Object.assign(m, proto);
|
|
1474
|
-
if (proto.
|
|
1475
|
-
m.
|
|
1525
|
+
if (proto.namespace) {
|
|
1526
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1476
1527
|
}
|
|
1477
1528
|
return m;
|
|
1478
1529
|
}
|
|
@@ -1484,15 +1535,15 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
1484
1535
|
}
|
|
1485
1536
|
toApiJson() {
|
|
1486
1537
|
const toReturn = {};
|
|
1487
|
-
if (typeof this.
|
|
1488
|
-
toReturn['
|
|
1538
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1539
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1489
1540
|
}
|
|
1490
1541
|
return toReturn;
|
|
1491
1542
|
}
|
|
1492
1543
|
}
|
|
1493
|
-
class
|
|
1544
|
+
class ListPromptModuleRequestFilters {
|
|
1494
1545
|
static fromProto(proto) {
|
|
1495
|
-
let m = new
|
|
1546
|
+
let m = new ListPromptModuleRequestFilters();
|
|
1496
1547
|
m = Object.assign(m, proto);
|
|
1497
1548
|
if (proto.namespace) {
|
|
1498
1549
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
@@ -1513,9 +1564,9 @@ class ListFunctionRequestFilters {
|
|
|
1513
1564
|
return toReturn;
|
|
1514
1565
|
}
|
|
1515
1566
|
}
|
|
1516
|
-
class
|
|
1567
|
+
class ListFunctionRequestFilters {
|
|
1517
1568
|
static fromProto(proto) {
|
|
1518
|
-
let m = new
|
|
1569
|
+
let m = new ListFunctionRequestFilters();
|
|
1519
1570
|
m = Object.assign(m, proto);
|
|
1520
1571
|
if (proto.namespace) {
|
|
1521
1572
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
@@ -1536,13 +1587,10 @@ class ListConnectionsRequestFilters {
|
|
|
1536
1587
|
return toReturn;
|
|
1537
1588
|
}
|
|
1538
1589
|
}
|
|
1539
|
-
class
|
|
1590
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
1540
1591
|
static fromProto(proto) {
|
|
1541
|
-
let m = new
|
|
1592
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
1542
1593
|
m = Object.assign(m, proto);
|
|
1543
|
-
if (proto.namespace) {
|
|
1544
|
-
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1545
|
-
}
|
|
1546
1594
|
if (proto.type) {
|
|
1547
1595
|
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1548
1596
|
}
|
|
@@ -1556,22 +1604,22 @@ class ListAssistantRequestFilters {
|
|
|
1556
1604
|
}
|
|
1557
1605
|
toApiJson() {
|
|
1558
1606
|
const toReturn = {};
|
|
1559
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1560
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1561
|
-
}
|
|
1562
1607
|
if (typeof this.type !== 'undefined') {
|
|
1563
1608
|
toReturn['type'] = this.type;
|
|
1564
1609
|
}
|
|
1565
1610
|
return toReturn;
|
|
1566
1611
|
}
|
|
1567
1612
|
}
|
|
1568
|
-
class
|
|
1613
|
+
class ListAssistantRequestFilters {
|
|
1569
1614
|
static fromProto(proto) {
|
|
1570
|
-
let m = new
|
|
1615
|
+
let m = new ListAssistantRequestFilters();
|
|
1571
1616
|
m = Object.assign(m, proto);
|
|
1572
1617
|
if (proto.namespace) {
|
|
1573
1618
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1574
1619
|
}
|
|
1620
|
+
if (proto.type) {
|
|
1621
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1622
|
+
}
|
|
1575
1623
|
return m;
|
|
1576
1624
|
}
|
|
1577
1625
|
constructor(kwargs) {
|
|
@@ -1585,16 +1633,22 @@ class ListGoalsRequestFilters {
|
|
|
1585
1633
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1586
1634
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1587
1635
|
}
|
|
1636
|
+
if (typeof this.type !== 'undefined') {
|
|
1637
|
+
toReturn['type'] = this.type;
|
|
1638
|
+
}
|
|
1588
1639
|
return toReturn;
|
|
1589
1640
|
}
|
|
1590
1641
|
}
|
|
1591
|
-
class
|
|
1642
|
+
class ListConnectionsRequestFilters {
|
|
1592
1643
|
static fromProto(proto) {
|
|
1593
|
-
let m = new
|
|
1644
|
+
let m = new ListConnectionsRequestFilters();
|
|
1594
1645
|
m = Object.assign(m, proto);
|
|
1595
1646
|
if (proto.namespace) {
|
|
1596
1647
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1597
1648
|
}
|
|
1649
|
+
if (proto.assistantType) {
|
|
1650
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
1651
|
+
}
|
|
1598
1652
|
return m;
|
|
1599
1653
|
}
|
|
1600
1654
|
constructor(kwargs) {
|
|
@@ -1608,6 +1662,9 @@ class ListPromptModuleRequestFilters {
|
|
|
1608
1662
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1609
1663
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1610
1664
|
}
|
|
1665
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
1666
|
+
toReturn['assistantType'] = this.assistantType;
|
|
1667
|
+
}
|
|
1611
1668
|
return toReturn;
|
|
1612
1669
|
}
|
|
1613
1670
|
}
|
|
@@ -1834,6 +1891,61 @@ class GetConnectionResponse {
|
|
|
1834
1891
|
return toReturn;
|
|
1835
1892
|
}
|
|
1836
1893
|
}
|
|
1894
|
+
class GetDeployedPromptModuleVersionRequest {
|
|
1895
|
+
static fromProto(proto) {
|
|
1896
|
+
let m = new GetDeployedPromptModuleVersionRequest();
|
|
1897
|
+
m = Object.assign(m, proto);
|
|
1898
|
+
if (proto.namespace) {
|
|
1899
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1900
|
+
}
|
|
1901
|
+
return m;
|
|
1902
|
+
}
|
|
1903
|
+
constructor(kwargs) {
|
|
1904
|
+
if (!kwargs) {
|
|
1905
|
+
return;
|
|
1906
|
+
}
|
|
1907
|
+
Object.assign(this, kwargs);
|
|
1908
|
+
}
|
|
1909
|
+
toApiJson() {
|
|
1910
|
+
const toReturn = {};
|
|
1911
|
+
if (typeof this.id !== 'undefined') {
|
|
1912
|
+
toReturn['id'] = this.id;
|
|
1913
|
+
}
|
|
1914
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1915
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1916
|
+
}
|
|
1917
|
+
return toReturn;
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
class GetDeployedPromptModuleVersionResponse {
|
|
1921
|
+
static fromProto(proto) {
|
|
1922
|
+
let m = new GetDeployedPromptModuleVersionResponse();
|
|
1923
|
+
m = Object.assign(m, proto);
|
|
1924
|
+
if (proto.promptModule) {
|
|
1925
|
+
m.promptModule = PromptModule.fromProto(proto.promptModule);
|
|
1926
|
+
}
|
|
1927
|
+
if (proto.deployedPromptModuleVersion) {
|
|
1928
|
+
m.deployedPromptModuleVersion = PromptModuleVersion.fromProto(proto.deployedPromptModuleVersion);
|
|
1929
|
+
}
|
|
1930
|
+
return m;
|
|
1931
|
+
}
|
|
1932
|
+
constructor(kwargs) {
|
|
1933
|
+
if (!kwargs) {
|
|
1934
|
+
return;
|
|
1935
|
+
}
|
|
1936
|
+
Object.assign(this, kwargs);
|
|
1937
|
+
}
|
|
1938
|
+
toApiJson() {
|
|
1939
|
+
const toReturn = {};
|
|
1940
|
+
if (typeof this.promptModule !== 'undefined' && this.promptModule !== null) {
|
|
1941
|
+
toReturn['promptModule'] = 'toApiJson' in this.promptModule ? this.promptModule.toApiJson() : this.promptModule;
|
|
1942
|
+
}
|
|
1943
|
+
if (typeof this.deployedPromptModuleVersion !== 'undefined' && this.deployedPromptModuleVersion !== null) {
|
|
1944
|
+
toReturn['deployedPromptModuleVersion'] = 'toApiJson' in this.deployedPromptModuleVersion ? this.deployedPromptModuleVersion.toApiJson() : this.deployedPromptModuleVersion;
|
|
1945
|
+
}
|
|
1946
|
+
return toReturn;
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1837
1949
|
class GetDeployedPromptVersionRequest {
|
|
1838
1950
|
static fromProto(proto) {
|
|
1839
1951
|
let m = new GetDeployedPromptVersionRequest();
|
|
@@ -3013,8 +3125,11 @@ class UpdatePromptModuleRequest {
|
|
|
3013
3125
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3014
3126
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3015
3127
|
}
|
|
3016
|
-
if (typeof this.
|
|
3017
|
-
toReturn['
|
|
3128
|
+
if (typeof this.name !== 'undefined') {
|
|
3129
|
+
toReturn['name'] = this.name;
|
|
3130
|
+
}
|
|
3131
|
+
if (typeof this.description !== 'undefined') {
|
|
3132
|
+
toReturn['description'] = this.description;
|
|
3018
3133
|
}
|
|
3019
3134
|
return toReturn;
|
|
3020
3135
|
}
|
|
@@ -3406,6 +3521,10 @@ class PromptModuleApiService {
|
|
|
3406
3521
|
const request = (r.toApiJson) ? r : new CreatePromptModuleRequest(r);
|
|
3407
3522
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Create", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
3408
3523
|
}
|
|
3524
|
+
createVersion(r) {
|
|
3525
|
+
const request = (r.toApiJson) ? r : new CreatePromptModuleVersionRequest(r);
|
|
3526
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/CreateVersion", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
3527
|
+
}
|
|
3409
3528
|
get(r) {
|
|
3410
3529
|
const request = (r.toApiJson) ? r : new GetPromptModuleRequest(r);
|
|
3411
3530
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Get", request.toApiJson(), this.apiOptions())
|
|
@@ -3416,6 +3535,11 @@ class PromptModuleApiService {
|
|
|
3416
3535
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetVersion", request.toApiJson(), this.apiOptions())
|
|
3417
3536
|
.pipe(map(resp => GetPromptModuleVersionResponse.fromProto(resp)));
|
|
3418
3537
|
}
|
|
3538
|
+
getDeployedVersion(r) {
|
|
3539
|
+
const request = (r.toApiJson) ? r : new GetDeployedPromptModuleVersionRequest(r);
|
|
3540
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetDeployedVersion", request.toApiJson(), this.apiOptions())
|
|
3541
|
+
.pipe(map(resp => GetDeployedPromptModuleVersionResponse.fromProto(resp)));
|
|
3542
|
+
}
|
|
3419
3543
|
getHydratedDeployedVersion(r) {
|
|
3420
3544
|
const request = (r.toApiJson) ? r : new GetHydratedDeployedPromptModuleVersionRequest(r);
|
|
3421
3545
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetHydratedDeployedVersion", request.toApiJson(), this.apiOptions())
|
|
@@ -3541,5 +3665,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3541
3665
|
* Generated bundle index. Do not edit.
|
|
3542
3666
|
*/
|
|
3543
3667
|
|
|
3544
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreatePromptModuleRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, FunctionKey, FunctionParameter, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, 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, GoalKey, GoalType, 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, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest };
|
|
3668
|
+
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, CreatePromptModuleRequest, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, Function, FunctionApiService, 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, GoalKey, GoalType, 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, Namespace, NamespaceAccountGroupNamespace, NamespaceAccountGroupsForGroupNamespace, NamespaceAccountGroupsForPartnerNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest };
|
|
3545
3669
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|