@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
|
@@ -35,9 +35,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
35
35
|
var GoalType;
|
|
36
36
|
(function (GoalType) {
|
|
37
37
|
GoalType[GoalType["GOAL_TYPE_INVALID"] = 0] = "GOAL_TYPE_INVALID";
|
|
38
|
-
GoalType[GoalType["
|
|
39
|
-
GoalType[GoalType["
|
|
40
|
-
GoalType[GoalType["
|
|
38
|
+
GoalType[GoalType["GOAL_TYPE_OBJECTIVE"] = 1] = "GOAL_TYPE_OBJECTIVE";
|
|
39
|
+
GoalType[GoalType["GOAL_TYPE_KNOWLEDGE"] = 2] = "GOAL_TYPE_KNOWLEDGE";
|
|
40
|
+
GoalType[GoalType["GOAL_TYPE_PERSONALITY"] = 3] = "GOAL_TYPE_PERSONALITY";
|
|
41
|
+
GoalType[GoalType["GOAL_TYPE_CUSTOM"] = 4] = "GOAL_TYPE_CUSTOM";
|
|
41
42
|
})(GoalType || (GoalType = {}));
|
|
42
43
|
|
|
43
44
|
// *********************************
|
|
@@ -450,6 +451,9 @@ class PromptModule {
|
|
|
450
451
|
if (proto.updated) {
|
|
451
452
|
m.updated = new Date(proto.updated);
|
|
452
453
|
}
|
|
454
|
+
if (proto.deployed) {
|
|
455
|
+
m.deployed = new Date(proto.deployed);
|
|
456
|
+
}
|
|
453
457
|
return m;
|
|
454
458
|
}
|
|
455
459
|
constructor(kwargs) {
|
|
@@ -469,6 +473,9 @@ class PromptModule {
|
|
|
469
473
|
if (typeof this.name !== 'undefined') {
|
|
470
474
|
toReturn['name'] = this.name;
|
|
471
475
|
}
|
|
476
|
+
if (typeof this.description !== 'undefined') {
|
|
477
|
+
toReturn['description'] = this.description;
|
|
478
|
+
}
|
|
472
479
|
if (typeof this.deployedVersion !== 'undefined') {
|
|
473
480
|
toReturn['deployedVersion'] = this.deployedVersion;
|
|
474
481
|
}
|
|
@@ -478,6 +485,9 @@ class PromptModule {
|
|
|
478
485
|
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
|
479
486
|
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
|
480
487
|
}
|
|
488
|
+
if (typeof this.deployed !== 'undefined' && this.deployed !== null) {
|
|
489
|
+
toReturn['deployed'] = 'toApiJson' in this.deployed ? this.deployed.toApiJson() : this.deployed;
|
|
490
|
+
}
|
|
481
491
|
return toReturn;
|
|
482
492
|
}
|
|
483
493
|
}
|
|
@@ -844,6 +854,9 @@ class Connection {
|
|
|
844
854
|
if (proto.assistantKeys) {
|
|
845
855
|
m.assistantKeys = proto.assistantKeys.map(AssistantKey.fromProto);
|
|
846
856
|
}
|
|
857
|
+
if (proto.supportedAssistantTypes) {
|
|
858
|
+
m.supportedAssistantTypes = proto.supportedAssistantTypes.map((v) => enumStringToValue$5(AssistantType, v));
|
|
859
|
+
}
|
|
847
860
|
return m;
|
|
848
861
|
}
|
|
849
862
|
constructor(kwargs) {
|
|
@@ -881,6 +894,9 @@ class Connection {
|
|
|
881
894
|
if (typeof this.isConnectionLocked !== 'undefined') {
|
|
882
895
|
toReturn['isConnectionLocked'] = this.isConnectionLocked;
|
|
883
896
|
}
|
|
897
|
+
if (typeof this.supportedAssistantTypes !== 'undefined') {
|
|
898
|
+
toReturn['supportedAssistantTypes'] = this.supportedAssistantTypes;
|
|
899
|
+
}
|
|
884
900
|
return toReturn;
|
|
885
901
|
}
|
|
886
902
|
}
|
|
@@ -1221,6 +1237,41 @@ class CreatePromptModuleRequest {
|
|
|
1221
1237
|
}
|
|
1222
1238
|
Object.assign(this, kwargs);
|
|
1223
1239
|
}
|
|
1240
|
+
toApiJson() {
|
|
1241
|
+
const toReturn = {};
|
|
1242
|
+
if (typeof this.id !== 'undefined') {
|
|
1243
|
+
toReturn['id'] = this.id;
|
|
1244
|
+
}
|
|
1245
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1246
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1247
|
+
}
|
|
1248
|
+
if (typeof this.name !== 'undefined') {
|
|
1249
|
+
toReturn['name'] = this.name;
|
|
1250
|
+
}
|
|
1251
|
+
if (typeof this.description !== 'undefined') {
|
|
1252
|
+
toReturn['description'] = this.description;
|
|
1253
|
+
}
|
|
1254
|
+
if (typeof this.content !== 'undefined') {
|
|
1255
|
+
toReturn['content'] = this.content;
|
|
1256
|
+
}
|
|
1257
|
+
return toReturn;
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
class CreatePromptModuleVersionRequest {
|
|
1261
|
+
static fromProto(proto) {
|
|
1262
|
+
let m = new CreatePromptModuleVersionRequest();
|
|
1263
|
+
m = Object.assign(m, proto);
|
|
1264
|
+
if (proto.namespace) {
|
|
1265
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1266
|
+
}
|
|
1267
|
+
return m;
|
|
1268
|
+
}
|
|
1269
|
+
constructor(kwargs) {
|
|
1270
|
+
if (!kwargs) {
|
|
1271
|
+
return;
|
|
1272
|
+
}
|
|
1273
|
+
Object.assign(this, kwargs);
|
|
1274
|
+
}
|
|
1224
1275
|
toApiJson() {
|
|
1225
1276
|
const toReturn = {};
|
|
1226
1277
|
if (typeof this.id !== 'undefined') {
|
|
@@ -1466,12 +1517,12 @@ class DeployPromptRequest {
|
|
|
1466
1517
|
return toReturn;
|
|
1467
1518
|
}
|
|
1468
1519
|
}
|
|
1469
|
-
class
|
|
1520
|
+
class ListGoalsRequestFilters {
|
|
1470
1521
|
static fromProto(proto) {
|
|
1471
|
-
let m = new
|
|
1522
|
+
let m = new ListGoalsRequestFilters();
|
|
1472
1523
|
m = Object.assign(m, proto);
|
|
1473
|
-
if (proto.
|
|
1474
|
-
m.
|
|
1524
|
+
if (proto.namespace) {
|
|
1525
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1475
1526
|
}
|
|
1476
1527
|
return m;
|
|
1477
1528
|
}
|
|
@@ -1483,15 +1534,15 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
1483
1534
|
}
|
|
1484
1535
|
toApiJson() {
|
|
1485
1536
|
const toReturn = {};
|
|
1486
|
-
if (typeof this.
|
|
1487
|
-
toReturn['
|
|
1537
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1538
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1488
1539
|
}
|
|
1489
1540
|
return toReturn;
|
|
1490
1541
|
}
|
|
1491
1542
|
}
|
|
1492
|
-
class
|
|
1543
|
+
class ListPromptModuleRequestFilters {
|
|
1493
1544
|
static fromProto(proto) {
|
|
1494
|
-
let m = new
|
|
1545
|
+
let m = new ListPromptModuleRequestFilters();
|
|
1495
1546
|
m = Object.assign(m, proto);
|
|
1496
1547
|
if (proto.namespace) {
|
|
1497
1548
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
@@ -1512,9 +1563,9 @@ class ListFunctionRequestFilters {
|
|
|
1512
1563
|
return toReturn;
|
|
1513
1564
|
}
|
|
1514
1565
|
}
|
|
1515
|
-
class
|
|
1566
|
+
class ListFunctionRequestFilters {
|
|
1516
1567
|
static fromProto(proto) {
|
|
1517
|
-
let m = new
|
|
1568
|
+
let m = new ListFunctionRequestFilters();
|
|
1518
1569
|
m = Object.assign(m, proto);
|
|
1519
1570
|
if (proto.namespace) {
|
|
1520
1571
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
@@ -1535,13 +1586,10 @@ class ListConnectionsRequestFilters {
|
|
|
1535
1586
|
return toReturn;
|
|
1536
1587
|
}
|
|
1537
1588
|
}
|
|
1538
|
-
class
|
|
1589
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
1539
1590
|
static fromProto(proto) {
|
|
1540
|
-
let m = new
|
|
1591
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
1541
1592
|
m = Object.assign(m, proto);
|
|
1542
|
-
if (proto.namespace) {
|
|
1543
|
-
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1544
|
-
}
|
|
1545
1593
|
if (proto.type) {
|
|
1546
1594
|
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1547
1595
|
}
|
|
@@ -1555,22 +1603,22 @@ class ListAssistantRequestFilters {
|
|
|
1555
1603
|
}
|
|
1556
1604
|
toApiJson() {
|
|
1557
1605
|
const toReturn = {};
|
|
1558
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1559
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1560
|
-
}
|
|
1561
1606
|
if (typeof this.type !== 'undefined') {
|
|
1562
1607
|
toReturn['type'] = this.type;
|
|
1563
1608
|
}
|
|
1564
1609
|
return toReturn;
|
|
1565
1610
|
}
|
|
1566
1611
|
}
|
|
1567
|
-
class
|
|
1612
|
+
class ListAssistantRequestFilters {
|
|
1568
1613
|
static fromProto(proto) {
|
|
1569
|
-
let m = new
|
|
1614
|
+
let m = new ListAssistantRequestFilters();
|
|
1570
1615
|
m = Object.assign(m, proto);
|
|
1571
1616
|
if (proto.namespace) {
|
|
1572
1617
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1573
1618
|
}
|
|
1619
|
+
if (proto.type) {
|
|
1620
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
1621
|
+
}
|
|
1574
1622
|
return m;
|
|
1575
1623
|
}
|
|
1576
1624
|
constructor(kwargs) {
|
|
@@ -1584,16 +1632,22 @@ class ListGoalsRequestFilters {
|
|
|
1584
1632
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1585
1633
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1586
1634
|
}
|
|
1635
|
+
if (typeof this.type !== 'undefined') {
|
|
1636
|
+
toReturn['type'] = this.type;
|
|
1637
|
+
}
|
|
1587
1638
|
return toReturn;
|
|
1588
1639
|
}
|
|
1589
1640
|
}
|
|
1590
|
-
class
|
|
1641
|
+
class ListConnectionsRequestFilters {
|
|
1591
1642
|
static fromProto(proto) {
|
|
1592
|
-
let m = new
|
|
1643
|
+
let m = new ListConnectionsRequestFilters();
|
|
1593
1644
|
m = Object.assign(m, proto);
|
|
1594
1645
|
if (proto.namespace) {
|
|
1595
1646
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1596
1647
|
}
|
|
1648
|
+
if (proto.assistantType) {
|
|
1649
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
1650
|
+
}
|
|
1597
1651
|
return m;
|
|
1598
1652
|
}
|
|
1599
1653
|
constructor(kwargs) {
|
|
@@ -1607,6 +1661,9 @@ class ListPromptModuleRequestFilters {
|
|
|
1607
1661
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1608
1662
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1609
1663
|
}
|
|
1664
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
1665
|
+
toReturn['assistantType'] = this.assistantType;
|
|
1666
|
+
}
|
|
1610
1667
|
return toReturn;
|
|
1611
1668
|
}
|
|
1612
1669
|
}
|
|
@@ -1833,6 +1890,61 @@ class GetConnectionResponse {
|
|
|
1833
1890
|
return toReturn;
|
|
1834
1891
|
}
|
|
1835
1892
|
}
|
|
1893
|
+
class GetDeployedPromptModuleVersionRequest {
|
|
1894
|
+
static fromProto(proto) {
|
|
1895
|
+
let m = new GetDeployedPromptModuleVersionRequest();
|
|
1896
|
+
m = Object.assign(m, proto);
|
|
1897
|
+
if (proto.namespace) {
|
|
1898
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
1899
|
+
}
|
|
1900
|
+
return m;
|
|
1901
|
+
}
|
|
1902
|
+
constructor(kwargs) {
|
|
1903
|
+
if (!kwargs) {
|
|
1904
|
+
return;
|
|
1905
|
+
}
|
|
1906
|
+
Object.assign(this, kwargs);
|
|
1907
|
+
}
|
|
1908
|
+
toApiJson() {
|
|
1909
|
+
const toReturn = {};
|
|
1910
|
+
if (typeof this.id !== 'undefined') {
|
|
1911
|
+
toReturn['id'] = this.id;
|
|
1912
|
+
}
|
|
1913
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
1914
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
1915
|
+
}
|
|
1916
|
+
return toReturn;
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
class GetDeployedPromptModuleVersionResponse {
|
|
1920
|
+
static fromProto(proto) {
|
|
1921
|
+
let m = new GetDeployedPromptModuleVersionResponse();
|
|
1922
|
+
m = Object.assign(m, proto);
|
|
1923
|
+
if (proto.promptModule) {
|
|
1924
|
+
m.promptModule = PromptModule.fromProto(proto.promptModule);
|
|
1925
|
+
}
|
|
1926
|
+
if (proto.deployedPromptModuleVersion) {
|
|
1927
|
+
m.deployedPromptModuleVersion = PromptModuleVersion.fromProto(proto.deployedPromptModuleVersion);
|
|
1928
|
+
}
|
|
1929
|
+
return m;
|
|
1930
|
+
}
|
|
1931
|
+
constructor(kwargs) {
|
|
1932
|
+
if (!kwargs) {
|
|
1933
|
+
return;
|
|
1934
|
+
}
|
|
1935
|
+
Object.assign(this, kwargs);
|
|
1936
|
+
}
|
|
1937
|
+
toApiJson() {
|
|
1938
|
+
const toReturn = {};
|
|
1939
|
+
if (typeof this.promptModule !== 'undefined' && this.promptModule !== null) {
|
|
1940
|
+
toReturn['promptModule'] = 'toApiJson' in this.promptModule ? this.promptModule.toApiJson() : this.promptModule;
|
|
1941
|
+
}
|
|
1942
|
+
if (typeof this.deployedPromptModuleVersion !== 'undefined' && this.deployedPromptModuleVersion !== null) {
|
|
1943
|
+
toReturn['deployedPromptModuleVersion'] = 'toApiJson' in this.deployedPromptModuleVersion ? this.deployedPromptModuleVersion.toApiJson() : this.deployedPromptModuleVersion;
|
|
1944
|
+
}
|
|
1945
|
+
return toReturn;
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1836
1948
|
class GetDeployedPromptVersionRequest {
|
|
1837
1949
|
static fromProto(proto) {
|
|
1838
1950
|
let m = new GetDeployedPromptVersionRequest();
|
|
@@ -3012,8 +3124,11 @@ class UpdatePromptModuleRequest {
|
|
|
3012
3124
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3013
3125
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3014
3126
|
}
|
|
3015
|
-
if (typeof this.
|
|
3016
|
-
toReturn['
|
|
3127
|
+
if (typeof this.name !== 'undefined') {
|
|
3128
|
+
toReturn['name'] = this.name;
|
|
3129
|
+
}
|
|
3130
|
+
if (typeof this.description !== 'undefined') {
|
|
3131
|
+
toReturn['description'] = this.description;
|
|
3017
3132
|
}
|
|
3018
3133
|
return toReturn;
|
|
3019
3134
|
}
|
|
@@ -3405,6 +3520,10 @@ class PromptModuleApiService {
|
|
|
3405
3520
|
const request = (r.toApiJson) ? r : new CreatePromptModuleRequest(r);
|
|
3406
3521
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Create", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
3407
3522
|
}
|
|
3523
|
+
createVersion(r) {
|
|
3524
|
+
const request = (r.toApiJson) ? r : new CreatePromptModuleVersionRequest(r);
|
|
3525
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/CreateVersion", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
3526
|
+
}
|
|
3408
3527
|
get(r) {
|
|
3409
3528
|
const request = (r.toApiJson) ? r : new GetPromptModuleRequest(r);
|
|
3410
3529
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/Get", request.toApiJson(), this.apiOptions())
|
|
@@ -3415,6 +3534,11 @@ class PromptModuleApiService {
|
|
|
3415
3534
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetVersion", request.toApiJson(), this.apiOptions())
|
|
3416
3535
|
.pipe(map(resp => GetPromptModuleVersionResponse.fromProto(resp)));
|
|
3417
3536
|
}
|
|
3537
|
+
getDeployedVersion(r) {
|
|
3538
|
+
const request = (r.toApiJson) ? r : new GetDeployedPromptModuleVersionRequest(r);
|
|
3539
|
+
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetDeployedVersion", request.toApiJson(), this.apiOptions())
|
|
3540
|
+
.pipe(map(resp => GetDeployedPromptModuleVersionResponse.fromProto(resp)));
|
|
3541
|
+
}
|
|
3418
3542
|
getHydratedDeployedVersion(r) {
|
|
3419
3543
|
const request = (r.toApiJson) ? r : new GetHydratedDeployedPromptModuleVersionRequest(r);
|
|
3420
3544
|
return this.http.post(this._host + "/ai_assistants.v1alpha1.PromptModuleService/GetHydratedDeployedVersion", request.toApiJson(), this.apiOptions())
|
|
@@ -3540,5 +3664,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3540
3664
|
* Generated bundle index. Do not edit.
|
|
3541
3665
|
*/
|
|
3542
3666
|
|
|
3543
|
-
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 };
|
|
3667
|
+
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 };
|
|
3544
3668
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|