@rapidaai/react 1.1.37 → 1.1.39
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/dist/{chunk-UUWL3OO3.mjs → chunk-CUTI5FQX.mjs} +13557 -10847
- package/dist/chunk-CUTI5FQX.mjs.map +1 -0
- package/dist/components/device-selector.d.mts +1 -1
- package/dist/components/device-selector.d.ts +1 -1
- package/dist/components/device-selector.js +13811 -11113
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-DhqF2ruO.d.mts → device-selector-33b0b9Hd.d.mts} +1085 -406
- package/dist/{device-selector-DhqF2ruO.d.ts → device-selector-33b0b9Hd.d.ts} +1085 -406
- package/dist/index.d.mts +24 -21
- package/dist/index.d.ts +24 -21
- package/dist/index.js +4767 -1989
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +179 -112
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-UUWL3OO3.mjs.map +0 -1
|
@@ -31,6 +31,30 @@ declare namespace FieldSelector {
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
declare class AssistantDefinition extends jspb.Message {
|
|
35
|
+
getAssistantid(): string;
|
|
36
|
+
setAssistantid(value: string): void;
|
|
37
|
+
|
|
38
|
+
getVersion(): string;
|
|
39
|
+
setVersion(value: string): void;
|
|
40
|
+
|
|
41
|
+
serializeBinary(): Uint8Array;
|
|
42
|
+
toObject(includeInstance?: boolean): AssistantDefinition.AsObject;
|
|
43
|
+
static toObject(includeInstance: boolean, msg: AssistantDefinition): AssistantDefinition.AsObject;
|
|
44
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
45
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
46
|
+
static serializeBinaryToWriter(message: AssistantDefinition, writer: jspb.BinaryWriter): void;
|
|
47
|
+
static deserializeBinary(bytes: Uint8Array): AssistantDefinition;
|
|
48
|
+
static deserializeBinaryFromReader(message: AssistantDefinition, reader: jspb.BinaryReader): AssistantDefinition;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare namespace AssistantDefinition {
|
|
52
|
+
export type AsObject = {
|
|
53
|
+
assistantid: string,
|
|
54
|
+
version: string,
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
34
58
|
declare class Criteria extends jspb.Message {
|
|
35
59
|
getKey(): string;
|
|
36
60
|
setKey(value: string): void;
|
|
@@ -594,6 +618,53 @@ declare namespace FunctionCall {
|
|
|
594
618
|
}
|
|
595
619
|
}
|
|
596
620
|
|
|
621
|
+
declare class Telemetry extends jspb.Message {
|
|
622
|
+
getStagename(): string;
|
|
623
|
+
setStagename(value: string): void;
|
|
624
|
+
|
|
625
|
+
hasStarttime(): boolean;
|
|
626
|
+
clearStarttime(): void;
|
|
627
|
+
getStarttime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
628
|
+
setStarttime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
629
|
+
|
|
630
|
+
hasEndtime(): boolean;
|
|
631
|
+
clearEndtime(): void;
|
|
632
|
+
getEndtime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
633
|
+
setEndtime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
634
|
+
|
|
635
|
+
getDuration(): number;
|
|
636
|
+
setDuration(value: number): void;
|
|
637
|
+
|
|
638
|
+
getAttributesMap(): jspb.Map<string, string>;
|
|
639
|
+
clearAttributesMap(): void;
|
|
640
|
+
getSpanid(): string;
|
|
641
|
+
setSpanid(value: string): void;
|
|
642
|
+
|
|
643
|
+
getParentid(): string;
|
|
644
|
+
setParentid(value: string): void;
|
|
645
|
+
|
|
646
|
+
serializeBinary(): Uint8Array;
|
|
647
|
+
toObject(includeInstance?: boolean): Telemetry.AsObject;
|
|
648
|
+
static toObject(includeInstance: boolean, msg: Telemetry): Telemetry.AsObject;
|
|
649
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
650
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
651
|
+
static serializeBinaryToWriter(message: Telemetry, writer: jspb.BinaryWriter): void;
|
|
652
|
+
static deserializeBinary(bytes: Uint8Array): Telemetry;
|
|
653
|
+
static deserializeBinaryFromReader(message: Telemetry, reader: jspb.BinaryReader): Telemetry;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
declare namespace Telemetry {
|
|
657
|
+
export type AsObject = {
|
|
658
|
+
stagename: string,
|
|
659
|
+
starttime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
660
|
+
endtime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
661
|
+
duration: number,
|
|
662
|
+
attributesMap: Array<[string, string]>,
|
|
663
|
+
spanid: string,
|
|
664
|
+
parentid: string,
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
597
668
|
declare class Knowledge extends jspb.Message {
|
|
598
669
|
getId(): string;
|
|
599
670
|
setId(value: string): void;
|
|
@@ -764,49 +835,6 @@ declare namespace TextChatCompletePrompt {
|
|
|
764
835
|
}
|
|
765
836
|
}
|
|
766
837
|
|
|
767
|
-
declare class AssistantMessageStage extends jspb.Message {
|
|
768
|
-
getStage(): string;
|
|
769
|
-
setStage(value: string): void;
|
|
770
|
-
|
|
771
|
-
getAdditionaldataMap(): jspb.Map<string, string>;
|
|
772
|
-
clearAdditionaldataMap(): void;
|
|
773
|
-
getTimetaken(): number;
|
|
774
|
-
setTimetaken(value: number): void;
|
|
775
|
-
|
|
776
|
-
getLifecycleid(): string;
|
|
777
|
-
setLifecycleid(value: string): void;
|
|
778
|
-
|
|
779
|
-
hasStarttimestamp(): boolean;
|
|
780
|
-
clearStarttimestamp(): void;
|
|
781
|
-
getStarttimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
782
|
-
setStarttimestamp(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
783
|
-
|
|
784
|
-
hasEndtimestamp(): boolean;
|
|
785
|
-
clearEndtimestamp(): void;
|
|
786
|
-
getEndtimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
787
|
-
setEndtimestamp(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
788
|
-
|
|
789
|
-
serializeBinary(): Uint8Array;
|
|
790
|
-
toObject(includeInstance?: boolean): AssistantMessageStage.AsObject;
|
|
791
|
-
static toObject(includeInstance: boolean, msg: AssistantMessageStage): AssistantMessageStage.AsObject;
|
|
792
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
793
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
794
|
-
static serializeBinaryToWriter(message: AssistantMessageStage, writer: jspb.BinaryWriter): void;
|
|
795
|
-
static deserializeBinary(bytes: Uint8Array): AssistantMessageStage;
|
|
796
|
-
static deserializeBinaryFromReader(message: AssistantMessageStage, reader: jspb.BinaryReader): AssistantMessageStage;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
declare namespace AssistantMessageStage {
|
|
800
|
-
export type AsObject = {
|
|
801
|
-
stage: string,
|
|
802
|
-
additionaldataMap: Array<[string, string]>,
|
|
803
|
-
timetaken: number,
|
|
804
|
-
lifecycleid: string,
|
|
805
|
-
starttimestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
806
|
-
endtimestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
|
|
810
838
|
declare class AssistantConversationMessage extends jspb.Message {
|
|
811
839
|
getId(): string;
|
|
812
840
|
setId(value: string): void;
|
|
@@ -844,16 +872,6 @@ declare class AssistantConversationMessage extends jspb.Message {
|
|
|
844
872
|
getUpdatedby(): string;
|
|
845
873
|
setUpdatedby(value: string): void;
|
|
846
874
|
|
|
847
|
-
clearSuggestedquestionsList(): void;
|
|
848
|
-
getSuggestedquestionsList(): Array<string>;
|
|
849
|
-
setSuggestedquestionsList(value: Array<string>): void;
|
|
850
|
-
addSuggestedquestions(value: string, index?: number): string;
|
|
851
|
-
|
|
852
|
-
clearStagesList(): void;
|
|
853
|
-
getStagesList(): Array<AssistantMessageStage>;
|
|
854
|
-
setStagesList(value: Array<AssistantMessageStage>): void;
|
|
855
|
-
addStages(value?: AssistantMessageStage, index?: number): AssistantMessageStage;
|
|
856
|
-
|
|
857
875
|
hasCreateddate(): boolean;
|
|
858
876
|
clearCreateddate(): void;
|
|
859
877
|
getCreateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
@@ -897,8 +915,6 @@ declare namespace AssistantConversationMessage {
|
|
|
897
915
|
status: string,
|
|
898
916
|
createdby: string,
|
|
899
917
|
updatedby: string,
|
|
900
|
-
suggestedquestionsList: Array<string>,
|
|
901
|
-
stagesList: Array<AssistantMessageStage.AsObject>,
|
|
902
918
|
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
903
919
|
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
904
920
|
assistantid: string,
|
|
@@ -1272,30 +1288,6 @@ interface SourceMap {
|
|
|
1272
1288
|
|
|
1273
1289
|
|
|
1274
1290
|
|
|
1275
|
-
declare class AssistantDefinition extends jspb.Message {
|
|
1276
|
-
getAssistantid(): string;
|
|
1277
|
-
setAssistantid(value: string): void;
|
|
1278
|
-
|
|
1279
|
-
getVersion(): string;
|
|
1280
|
-
setVersion(value: string): void;
|
|
1281
|
-
|
|
1282
|
-
serializeBinary(): Uint8Array;
|
|
1283
|
-
toObject(includeInstance?: boolean): AssistantDefinition.AsObject;
|
|
1284
|
-
static toObject(includeInstance: boolean, msg: AssistantDefinition): AssistantDefinition.AsObject;
|
|
1285
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1286
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1287
|
-
static serializeBinaryToWriter(message: AssistantDefinition, writer: jspb.BinaryWriter): void;
|
|
1288
|
-
static deserializeBinary(bytes: Uint8Array): AssistantDefinition;
|
|
1289
|
-
static deserializeBinaryFromReader(message: AssistantDefinition, reader: jspb.BinaryReader): AssistantDefinition;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
declare namespace AssistantDefinition {
|
|
1293
|
-
export type AsObject = {
|
|
1294
|
-
assistantid: string,
|
|
1295
|
-
version: string,
|
|
1296
|
-
}
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
1291
|
declare class AssistantConversationConfiguration extends jspb.Message {
|
|
1300
1292
|
getAssistantconversationid(): string;
|
|
1301
1293
|
setAssistantconversationid(value: string): void;
|
|
@@ -1337,6 +1329,146 @@ declare namespace AssistantConversationConfiguration {
|
|
|
1337
1329
|
}
|
|
1338
1330
|
}
|
|
1339
1331
|
|
|
1332
|
+
declare class AssistantConversationDisconnectAction extends jspb.Message {
|
|
1333
|
+
getReason(): string;
|
|
1334
|
+
setReason(value: string): void;
|
|
1335
|
+
|
|
1336
|
+
serializeBinary(): Uint8Array;
|
|
1337
|
+
toObject(includeInstance?: boolean): AssistantConversationDisconnectAction.AsObject;
|
|
1338
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationDisconnectAction): AssistantConversationDisconnectAction.AsObject;
|
|
1339
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1340
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1341
|
+
static serializeBinaryToWriter(message: AssistantConversationDisconnectAction, writer: jspb.BinaryWriter): void;
|
|
1342
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationDisconnectAction;
|
|
1343
|
+
static deserializeBinaryFromReader(message: AssistantConversationDisconnectAction, reader: jspb.BinaryReader): AssistantConversationDisconnectAction;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
declare namespace AssistantConversationDisconnectAction {
|
|
1347
|
+
export type AsObject = {
|
|
1348
|
+
reason: string,
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
declare class AssistantConverstationHoldAction extends jspb.Message {
|
|
1353
|
+
getHoldtime(): number;
|
|
1354
|
+
setHoldtime(value: number): void;
|
|
1355
|
+
|
|
1356
|
+
serializeBinary(): Uint8Array;
|
|
1357
|
+
toObject(includeInstance?: boolean): AssistantConverstationHoldAction.AsObject;
|
|
1358
|
+
static toObject(includeInstance: boolean, msg: AssistantConverstationHoldAction): AssistantConverstationHoldAction.AsObject;
|
|
1359
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1360
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1361
|
+
static serializeBinaryToWriter(message: AssistantConverstationHoldAction, writer: jspb.BinaryWriter): void;
|
|
1362
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConverstationHoldAction;
|
|
1363
|
+
static deserializeBinaryFromReader(message: AssistantConverstationHoldAction, reader: jspb.BinaryReader): AssistantConverstationHoldAction;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
declare namespace AssistantConverstationHoldAction {
|
|
1367
|
+
export type AsObject = {
|
|
1368
|
+
holdtime: number,
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
declare class AssistantConverstationKnowledgeRetrievalAction extends jspb.Message {
|
|
1373
|
+
getQuery(): string;
|
|
1374
|
+
setQuery(value: string): void;
|
|
1375
|
+
|
|
1376
|
+
serializeBinary(): Uint8Array;
|
|
1377
|
+
toObject(includeInstance?: boolean): AssistantConverstationKnowledgeRetrievalAction.AsObject;
|
|
1378
|
+
static toObject(includeInstance: boolean, msg: AssistantConverstationKnowledgeRetrievalAction): AssistantConverstationKnowledgeRetrievalAction.AsObject;
|
|
1379
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1380
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1381
|
+
static serializeBinaryToWriter(message: AssistantConverstationKnowledgeRetrievalAction, writer: jspb.BinaryWriter): void;
|
|
1382
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConverstationKnowledgeRetrievalAction;
|
|
1383
|
+
static deserializeBinaryFromReader(message: AssistantConverstationKnowledgeRetrievalAction, reader: jspb.BinaryReader): AssistantConverstationKnowledgeRetrievalAction;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
declare namespace AssistantConverstationKnowledgeRetrievalAction {
|
|
1387
|
+
export type AsObject = {
|
|
1388
|
+
query: string,
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
declare class AssistantConverstationApiRequestAction extends jspb.Message {
|
|
1393
|
+
serializeBinary(): Uint8Array;
|
|
1394
|
+
toObject(includeInstance?: boolean): AssistantConverstationApiRequestAction.AsObject;
|
|
1395
|
+
static toObject(includeInstance: boolean, msg: AssistantConverstationApiRequestAction): AssistantConverstationApiRequestAction.AsObject;
|
|
1396
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1397
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1398
|
+
static serializeBinaryToWriter(message: AssistantConverstationApiRequestAction, writer: jspb.BinaryWriter): void;
|
|
1399
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConverstationApiRequestAction;
|
|
1400
|
+
static deserializeBinaryFromReader(message: AssistantConverstationApiRequestAction, reader: jspb.BinaryReader): AssistantConverstationApiRequestAction;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
declare namespace AssistantConverstationApiRequestAction {
|
|
1404
|
+
export type AsObject = {
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
declare class AssistantConverstationEndpointAction extends jspb.Message {
|
|
1409
|
+
serializeBinary(): Uint8Array;
|
|
1410
|
+
toObject(includeInstance?: boolean): AssistantConverstationEndpointAction.AsObject;
|
|
1411
|
+
static toObject(includeInstance: boolean, msg: AssistantConverstationEndpointAction): AssistantConverstationEndpointAction.AsObject;
|
|
1412
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1413
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1414
|
+
static serializeBinaryToWriter(message: AssistantConverstationEndpointAction, writer: jspb.BinaryWriter): void;
|
|
1415
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConverstationEndpointAction;
|
|
1416
|
+
static deserializeBinaryFromReader(message: AssistantConverstationEndpointAction, reader: jspb.BinaryReader): AssistantConverstationEndpointAction;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare namespace AssistantConverstationEndpointAction {
|
|
1420
|
+
export type AsObject = {
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
declare class AssistantConversationDeviationAction extends jspb.Message {
|
|
1425
|
+
serializeBinary(): Uint8Array;
|
|
1426
|
+
toObject(includeInstance?: boolean): AssistantConversationDeviationAction.AsObject;
|
|
1427
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationDeviationAction): AssistantConversationDeviationAction.AsObject;
|
|
1428
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1429
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1430
|
+
static serializeBinaryToWriter(message: AssistantConversationDeviationAction, writer: jspb.BinaryWriter): void;
|
|
1431
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationDeviationAction;
|
|
1432
|
+
static deserializeBinaryFromReader(message: AssistantConversationDeviationAction, reader: jspb.BinaryReader): AssistantConversationDeviationAction;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
declare namespace AssistantConversationDeviationAction {
|
|
1436
|
+
export type AsObject = {
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
declare class AssistantConversationAssistantTransferAction extends jspb.Message {
|
|
1441
|
+
serializeBinary(): Uint8Array;
|
|
1442
|
+
toObject(includeInstance?: boolean): AssistantConversationAssistantTransferAction.AsObject;
|
|
1443
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationAssistantTransferAction): AssistantConversationAssistantTransferAction.AsObject;
|
|
1444
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1445
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1446
|
+
static serializeBinaryToWriter(message: AssistantConversationAssistantTransferAction, writer: jspb.BinaryWriter): void;
|
|
1447
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationAssistantTransferAction;
|
|
1448
|
+
static deserializeBinaryFromReader(message: AssistantConversationAssistantTransferAction, reader: jspb.BinaryReader): AssistantConversationAssistantTransferAction;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
declare namespace AssistantConversationAssistantTransferAction {
|
|
1452
|
+
export type AsObject = {
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
declare class AssistantConversationPhoneCallTransferAction extends jspb.Message {
|
|
1457
|
+
serializeBinary(): Uint8Array;
|
|
1458
|
+
toObject(includeInstance?: boolean): AssistantConversationPhoneCallTransferAction.AsObject;
|
|
1459
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationPhoneCallTransferAction): AssistantConversationPhoneCallTransferAction.AsObject;
|
|
1460
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1461
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1462
|
+
static serializeBinaryToWriter(message: AssistantConversationPhoneCallTransferAction, writer: jspb.BinaryWriter): void;
|
|
1463
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationPhoneCallTransferAction;
|
|
1464
|
+
static deserializeBinaryFromReader(message: AssistantConversationPhoneCallTransferAction, reader: jspb.BinaryReader): AssistantConversationPhoneCallTransferAction;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
declare namespace AssistantConversationPhoneCallTransferAction {
|
|
1468
|
+
export type AsObject = {
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1340
1472
|
declare class AssistantConversationInterruption extends jspb.Message {
|
|
1341
1473
|
getId(): string;
|
|
1342
1474
|
setId(value: string): void;
|
|
@@ -1375,11 +1507,58 @@ declare namespace AssistantConversationInterruption {
|
|
|
1375
1507
|
export const InterruptionType: InterruptionTypeMap;
|
|
1376
1508
|
}
|
|
1377
1509
|
|
|
1510
|
+
declare class AssistantConversationMessageTextContent extends jspb.Message {
|
|
1511
|
+
getContent(): string;
|
|
1512
|
+
setContent(value: string): void;
|
|
1513
|
+
|
|
1514
|
+
serializeBinary(): Uint8Array;
|
|
1515
|
+
toObject(includeInstance?: boolean): AssistantConversationMessageTextContent.AsObject;
|
|
1516
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationMessageTextContent): AssistantConversationMessageTextContent.AsObject;
|
|
1517
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1518
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1519
|
+
static serializeBinaryToWriter(message: AssistantConversationMessageTextContent, writer: jspb.BinaryWriter): void;
|
|
1520
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationMessageTextContent;
|
|
1521
|
+
static deserializeBinaryFromReader(message: AssistantConversationMessageTextContent, reader: jspb.BinaryReader): AssistantConversationMessageTextContent;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
declare namespace AssistantConversationMessageTextContent {
|
|
1525
|
+
export type AsObject = {
|
|
1526
|
+
content: string,
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
declare class AssistantConversationMessageAudioContent extends jspb.Message {
|
|
1531
|
+
getContent(): Uint8Array | string;
|
|
1532
|
+
getContent_asU8(): Uint8Array;
|
|
1533
|
+
getContent_asB64(): string;
|
|
1534
|
+
setContent(value: Uint8Array | string): void;
|
|
1535
|
+
|
|
1536
|
+
serializeBinary(): Uint8Array;
|
|
1537
|
+
toObject(includeInstance?: boolean): AssistantConversationMessageAudioContent.AsObject;
|
|
1538
|
+
static toObject(includeInstance: boolean, msg: AssistantConversationMessageAudioContent): AssistantConversationMessageAudioContent.AsObject;
|
|
1539
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1540
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1541
|
+
static serializeBinaryToWriter(message: AssistantConversationMessageAudioContent, writer: jspb.BinaryWriter): void;
|
|
1542
|
+
static deserializeBinary(bytes: Uint8Array): AssistantConversationMessageAudioContent;
|
|
1543
|
+
static deserializeBinaryFromReader(message: AssistantConversationMessageAudioContent, reader: jspb.BinaryReader): AssistantConversationMessageAudioContent;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
declare namespace AssistantConversationMessageAudioContent {
|
|
1547
|
+
export type AsObject = {
|
|
1548
|
+
content: Uint8Array | string,
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1378
1552
|
declare class AssistantConversationUserMessage extends jspb.Message {
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1553
|
+
hasAudio(): boolean;
|
|
1554
|
+
clearAudio(): void;
|
|
1555
|
+
getAudio(): AssistantConversationMessageAudioContent | undefined;
|
|
1556
|
+
setAudio(value?: AssistantConversationMessageAudioContent): void;
|
|
1557
|
+
|
|
1558
|
+
hasText(): boolean;
|
|
1559
|
+
clearText(): void;
|
|
1560
|
+
getText(): AssistantConversationMessageTextContent | undefined;
|
|
1561
|
+
setText(value?: AssistantConversationMessageTextContent): void;
|
|
1383
1562
|
|
|
1384
1563
|
getId(): string;
|
|
1385
1564
|
setId(value: string): void;
|
|
@@ -1392,6 +1571,7 @@ declare class AssistantConversationUserMessage extends jspb.Message {
|
|
|
1392
1571
|
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1393
1572
|
setTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
1394
1573
|
|
|
1574
|
+
getMessageCase(): AssistantConversationUserMessage.MessageCase;
|
|
1395
1575
|
serializeBinary(): Uint8Array;
|
|
1396
1576
|
toObject(includeInstance?: boolean): AssistantConversationUserMessage.AsObject;
|
|
1397
1577
|
static toObject(includeInstance: boolean, msg: AssistantConversationUserMessage): AssistantConversationUserMessage.AsObject;
|
|
@@ -1404,18 +1584,30 @@ declare class AssistantConversationUserMessage extends jspb.Message {
|
|
|
1404
1584
|
|
|
1405
1585
|
declare namespace AssistantConversationUserMessage {
|
|
1406
1586
|
export type AsObject = {
|
|
1407
|
-
|
|
1587
|
+
audio?: AssistantConversationMessageAudioContent.AsObject,
|
|
1588
|
+
text?: AssistantConversationMessageTextContent.AsObject,
|
|
1408
1589
|
id: string,
|
|
1409
1590
|
completed: boolean,
|
|
1410
1591
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1411
1592
|
}
|
|
1593
|
+
|
|
1594
|
+
export enum MessageCase {
|
|
1595
|
+
MESSAGE_NOT_SET = 0,
|
|
1596
|
+
AUDIO = 10,
|
|
1597
|
+
TEXT = 11,
|
|
1598
|
+
}
|
|
1412
1599
|
}
|
|
1413
1600
|
|
|
1414
1601
|
declare class AssistantConversationAssistantMessage extends jspb.Message {
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1602
|
+
hasAudio(): boolean;
|
|
1603
|
+
clearAudio(): void;
|
|
1604
|
+
getAudio(): AssistantConversationMessageAudioContent | undefined;
|
|
1605
|
+
setAudio(value?: AssistantConversationMessageAudioContent): void;
|
|
1606
|
+
|
|
1607
|
+
hasText(): boolean;
|
|
1608
|
+
clearText(): void;
|
|
1609
|
+
getText(): AssistantConversationMessageTextContent | undefined;
|
|
1610
|
+
setText(value?: AssistantConversationMessageTextContent): void;
|
|
1419
1611
|
|
|
1420
1612
|
getId(): string;
|
|
1421
1613
|
setId(value: string): void;
|
|
@@ -1428,6 +1620,7 @@ declare class AssistantConversationAssistantMessage extends jspb.Message {
|
|
|
1428
1620
|
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1429
1621
|
setTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
1430
1622
|
|
|
1623
|
+
getMessageCase(): AssistantConversationAssistantMessage.MessageCase;
|
|
1431
1624
|
serializeBinary(): Uint8Array;
|
|
1432
1625
|
toObject(includeInstance?: boolean): AssistantConversationAssistantMessage.AsObject;
|
|
1433
1626
|
static toObject(includeInstance: boolean, msg: AssistantConversationAssistantMessage): AssistantConversationAssistantMessage.AsObject;
|
|
@@ -1440,11 +1633,18 @@ declare class AssistantConversationAssistantMessage extends jspb.Message {
|
|
|
1440
1633
|
|
|
1441
1634
|
declare namespace AssistantConversationAssistantMessage {
|
|
1442
1635
|
export type AsObject = {
|
|
1443
|
-
|
|
1636
|
+
audio?: AssistantConversationMessageAudioContent.AsObject,
|
|
1637
|
+
text?: AssistantConversationMessageTextContent.AsObject,
|
|
1444
1638
|
id: string,
|
|
1445
1639
|
completed: boolean,
|
|
1446
1640
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1447
1641
|
}
|
|
1642
|
+
|
|
1643
|
+
export enum MessageCase {
|
|
1644
|
+
MESSAGE_NOT_SET = 0,
|
|
1645
|
+
AUDIO = 10,
|
|
1646
|
+
TEXT = 11,
|
|
1647
|
+
}
|
|
1448
1648
|
}
|
|
1449
1649
|
|
|
1450
1650
|
declare class AssistantMessagingRequest extends jspb.Message {
|
|
@@ -1519,6 +1719,46 @@ declare class AssistantMessagingResponse extends jspb.Message {
|
|
|
1519
1719
|
getMessage(): AssistantConversationMessage | undefined;
|
|
1520
1720
|
setMessage(value?: AssistantConversationMessage): void;
|
|
1521
1721
|
|
|
1722
|
+
hasDisconnectaction(): boolean;
|
|
1723
|
+
clearDisconnectaction(): void;
|
|
1724
|
+
getDisconnectaction(): AssistantConversationDisconnectAction | undefined;
|
|
1725
|
+
setDisconnectaction(value?: AssistantConversationDisconnectAction): void;
|
|
1726
|
+
|
|
1727
|
+
hasHoldaction(): boolean;
|
|
1728
|
+
clearHoldaction(): void;
|
|
1729
|
+
getHoldaction(): AssistantConverstationHoldAction | undefined;
|
|
1730
|
+
setHoldaction(value?: AssistantConverstationHoldAction): void;
|
|
1731
|
+
|
|
1732
|
+
hasKnowledgeretrievalaction(): boolean;
|
|
1733
|
+
clearKnowledgeretrievalaction(): void;
|
|
1734
|
+
getKnowledgeretrievalaction(): AssistantConverstationKnowledgeRetrievalAction | undefined;
|
|
1735
|
+
setKnowledgeretrievalaction(value?: AssistantConverstationKnowledgeRetrievalAction): void;
|
|
1736
|
+
|
|
1737
|
+
hasApirequestaction(): boolean;
|
|
1738
|
+
clearApirequestaction(): void;
|
|
1739
|
+
getApirequestaction(): AssistantConverstationApiRequestAction | undefined;
|
|
1740
|
+
setApirequestaction(value?: AssistantConverstationApiRequestAction): void;
|
|
1741
|
+
|
|
1742
|
+
hasEndpointaction(): boolean;
|
|
1743
|
+
clearEndpointaction(): void;
|
|
1744
|
+
getEndpointaction(): AssistantConverstationEndpointAction | undefined;
|
|
1745
|
+
setEndpointaction(value?: AssistantConverstationEndpointAction): void;
|
|
1746
|
+
|
|
1747
|
+
hasDeviationaction(): boolean;
|
|
1748
|
+
clearDeviationaction(): void;
|
|
1749
|
+
getDeviationaction(): AssistantConversationDeviationAction | undefined;
|
|
1750
|
+
setDeviationaction(value?: AssistantConversationDeviationAction): void;
|
|
1751
|
+
|
|
1752
|
+
hasAssistanttransferaction(): boolean;
|
|
1753
|
+
clearAssistanttransferaction(): void;
|
|
1754
|
+
getAssistanttransferaction(): AssistantConversationAssistantTransferAction | undefined;
|
|
1755
|
+
setAssistanttransferaction(value?: AssistantConversationAssistantTransferAction): void;
|
|
1756
|
+
|
|
1757
|
+
hasPhonecalltransferaction(): boolean;
|
|
1758
|
+
clearPhonecalltransferaction(): void;
|
|
1759
|
+
getPhonecalltransferaction(): AssistantConversationPhoneCallTransferAction | undefined;
|
|
1760
|
+
setPhonecalltransferaction(value?: AssistantConversationPhoneCallTransferAction): void;
|
|
1761
|
+
|
|
1522
1762
|
getDataCase(): AssistantMessagingResponse.DataCase;
|
|
1523
1763
|
serializeBinary(): Uint8Array;
|
|
1524
1764
|
toObject(includeInstance?: boolean): AssistantMessagingResponse.AsObject;
|
|
@@ -1540,6 +1780,14 @@ declare namespace AssistantMessagingResponse {
|
|
|
1540
1780
|
user?: AssistantConversationUserMessage.AsObject,
|
|
1541
1781
|
assistant?: AssistantConversationAssistantMessage.AsObject,
|
|
1542
1782
|
message?: AssistantConversationMessage.AsObject,
|
|
1783
|
+
disconnectaction?: AssistantConversationDisconnectAction.AsObject,
|
|
1784
|
+
holdaction?: AssistantConverstationHoldAction.AsObject,
|
|
1785
|
+
knowledgeretrievalaction?: AssistantConverstationKnowledgeRetrievalAction.AsObject,
|
|
1786
|
+
apirequestaction?: AssistantConverstationApiRequestAction.AsObject,
|
|
1787
|
+
endpointaction?: AssistantConverstationEndpointAction.AsObject,
|
|
1788
|
+
deviationaction?: AssistantConversationDeviationAction.AsObject,
|
|
1789
|
+
assistanttransferaction?: AssistantConversationAssistantTransferAction.AsObject,
|
|
1790
|
+
phonecalltransferaction?: AssistantConversationPhoneCallTransferAction.AsObject,
|
|
1543
1791
|
}
|
|
1544
1792
|
|
|
1545
1793
|
export enum DataCase {
|
|
@@ -1549,6 +1797,14 @@ declare namespace AssistantMessagingResponse {
|
|
|
1549
1797
|
USER = 11,
|
|
1550
1798
|
ASSISTANT = 12,
|
|
1551
1799
|
MESSAGE = 13,
|
|
1800
|
+
DISCONNECTACTION = 14,
|
|
1801
|
+
HOLDACTION = 15,
|
|
1802
|
+
KNOWLEDGERETRIEVALACTION = 16,
|
|
1803
|
+
APIREQUESTACTION = 17,
|
|
1804
|
+
ENDPOINTACTION = 18,
|
|
1805
|
+
DEVIATIONACTION = 19,
|
|
1806
|
+
ASSISTANTTRANSFERACTION = 20,
|
|
1807
|
+
PHONECALLTRANSFERACTION = 21,
|
|
1552
1808
|
}
|
|
1553
1809
|
}
|
|
1554
1810
|
|
|
@@ -4880,64 +5136,198 @@ declare namespace GetAllAssistantKnowledgeResponse {
|
|
|
4880
5136
|
}
|
|
4881
5137
|
|
|
4882
5138
|
// package: assistant_api
|
|
4883
|
-
// file: assistant-
|
|
5139
|
+
// file: assistant-provider.proto
|
|
4884
5140
|
|
|
4885
5141
|
|
|
4886
5142
|
|
|
4887
|
-
declare class
|
|
4888
|
-
|
|
4889
|
-
|
|
5143
|
+
declare class UpdateAssistantVersionRequest extends jspb.Message {
|
|
5144
|
+
getAssistantid(): string;
|
|
5145
|
+
setAssistantid(value: string): void;
|
|
4890
5146
|
|
|
4891
|
-
|
|
4892
|
-
|
|
5147
|
+
getAssistantproviderid(): string;
|
|
5148
|
+
setAssistantproviderid(value: string): void;
|
|
4893
5149
|
|
|
4894
|
-
|
|
4895
|
-
|
|
5150
|
+
getAssistantprovider(): string;
|
|
5151
|
+
setAssistantprovider(value: string): void;
|
|
4896
5152
|
|
|
4897
|
-
|
|
4898
|
-
|
|
5153
|
+
serializeBinary(): Uint8Array;
|
|
5154
|
+
toObject(includeInstance?: boolean): UpdateAssistantVersionRequest.AsObject;
|
|
5155
|
+
static toObject(includeInstance: boolean, msg: UpdateAssistantVersionRequest): UpdateAssistantVersionRequest.AsObject;
|
|
5156
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5157
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5158
|
+
static serializeBinaryToWriter(message: UpdateAssistantVersionRequest, writer: jspb.BinaryWriter): void;
|
|
5159
|
+
static deserializeBinary(bytes: Uint8Array): UpdateAssistantVersionRequest;
|
|
5160
|
+
static deserializeBinaryFromReader(message: UpdateAssistantVersionRequest, reader: jspb.BinaryReader): UpdateAssistantVersionRequest;
|
|
5161
|
+
}
|
|
4899
5162
|
|
|
4900
|
-
|
|
4901
|
-
|
|
5163
|
+
declare namespace UpdateAssistantVersionRequest {
|
|
5164
|
+
export type AsObject = {
|
|
5165
|
+
assistantid: string,
|
|
5166
|
+
assistantproviderid: string,
|
|
5167
|
+
assistantprovider: string,
|
|
5168
|
+
}
|
|
5169
|
+
}
|
|
4902
5170
|
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
addAssistanttools(value?: AssistantTool, index?: number): AssistantTool;
|
|
5171
|
+
declare class CreateAssistantProviderRequest extends jspb.Message {
|
|
5172
|
+
getAssistantid(): string;
|
|
5173
|
+
setAssistantid(value: string): void;
|
|
4907
5174
|
|
|
4908
|
-
|
|
4909
|
-
|
|
5175
|
+
getDescription(): string;
|
|
5176
|
+
setDescription(value: string): void;
|
|
4910
5177
|
|
|
4911
|
-
|
|
4912
|
-
|
|
5178
|
+
hasModel(): boolean;
|
|
5179
|
+
clearModel(): void;
|
|
5180
|
+
getModel(): CreateAssistantProviderRequest.CreateAssistantProviderModel | undefined;
|
|
5181
|
+
setModel(value?: CreateAssistantProviderRequest.CreateAssistantProviderModel): void;
|
|
4913
5182
|
|
|
4914
|
-
|
|
4915
|
-
|
|
5183
|
+
hasAgentkit(): boolean;
|
|
5184
|
+
clearAgentkit(): void;
|
|
5185
|
+
getAgentkit(): CreateAssistantProviderRequest.CreateAssistantProviderAgentkit | undefined;
|
|
5186
|
+
setAgentkit(value?: CreateAssistantProviderRequest.CreateAssistantProviderAgentkit): void;
|
|
4916
5187
|
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
5188
|
+
hasWebsocket(): boolean;
|
|
5189
|
+
clearWebsocket(): void;
|
|
5190
|
+
getWebsocket(): CreateAssistantProviderRequest.CreateAssistantProviderWebsocket | undefined;
|
|
5191
|
+
setWebsocket(value?: CreateAssistantProviderRequest.CreateAssistantProviderWebsocket): void;
|
|
4921
5192
|
|
|
4922
|
-
|
|
4923
|
-
|
|
5193
|
+
getAssistantproviderCase(): CreateAssistantProviderRequest.AssistantproviderCase;
|
|
5194
|
+
serializeBinary(): Uint8Array;
|
|
5195
|
+
toObject(includeInstance?: boolean): CreateAssistantProviderRequest.AsObject;
|
|
5196
|
+
static toObject(includeInstance: boolean, msg: CreateAssistantProviderRequest): CreateAssistantProviderRequest.AsObject;
|
|
5197
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5198
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5199
|
+
static serializeBinaryToWriter(message: CreateAssistantProviderRequest, writer: jspb.BinaryWriter): void;
|
|
5200
|
+
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderRequest;
|
|
5201
|
+
static deserializeBinaryFromReader(message: CreateAssistantProviderRequest, reader: jspb.BinaryReader): CreateAssistantProviderRequest;
|
|
5202
|
+
}
|
|
4924
5203
|
|
|
4925
|
-
|
|
5204
|
+
declare namespace CreateAssistantProviderRequest {
|
|
5205
|
+
export type AsObject = {
|
|
5206
|
+
assistantid: string,
|
|
5207
|
+
description: string,
|
|
5208
|
+
model?: CreateAssistantProviderRequest.CreateAssistantProviderModel.AsObject,
|
|
5209
|
+
agentkit?: CreateAssistantProviderRequest.CreateAssistantProviderAgentkit.AsObject,
|
|
5210
|
+
websocket?: CreateAssistantProviderRequest.CreateAssistantProviderWebsocket.AsObject,
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5213
|
+
export class CreateAssistantProviderModel extends jspb.Message {
|
|
5214
|
+
hasTemplate(): boolean;
|
|
5215
|
+
clearTemplate(): void;
|
|
5216
|
+
getTemplate(): TextChatCompletePrompt | undefined;
|
|
5217
|
+
setTemplate(value?: TextChatCompletePrompt): void;
|
|
5218
|
+
|
|
5219
|
+
getModelproviderid(): string;
|
|
5220
|
+
setModelproviderid(value: string): void;
|
|
5221
|
+
|
|
5222
|
+
getModelprovidername(): string;
|
|
5223
|
+
setModelprovidername(value: string): void;
|
|
5224
|
+
|
|
5225
|
+
clearAssistantmodeloptionsList(): void;
|
|
5226
|
+
getAssistantmodeloptionsList(): Array<Metadata>;
|
|
5227
|
+
setAssistantmodeloptionsList(value: Array<Metadata>): void;
|
|
5228
|
+
addAssistantmodeloptions(value?: Metadata, index?: number): Metadata;
|
|
5229
|
+
|
|
5230
|
+
serializeBinary(): Uint8Array;
|
|
5231
|
+
toObject(includeInstance?: boolean): CreateAssistantProviderModel.AsObject;
|
|
5232
|
+
static toObject(includeInstance: boolean, msg: CreateAssistantProviderModel): CreateAssistantProviderModel.AsObject;
|
|
5233
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5234
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5235
|
+
static serializeBinaryToWriter(message: CreateAssistantProviderModel, writer: jspb.BinaryWriter): void;
|
|
5236
|
+
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderModel;
|
|
5237
|
+
static deserializeBinaryFromReader(message: CreateAssistantProviderModel, reader: jspb.BinaryReader): CreateAssistantProviderModel;
|
|
5238
|
+
}
|
|
5239
|
+
|
|
5240
|
+
export namespace CreateAssistantProviderModel {
|
|
5241
|
+
export type AsObject = {
|
|
5242
|
+
template?: TextChatCompletePrompt.AsObject,
|
|
5243
|
+
modelproviderid: string,
|
|
5244
|
+
modelprovidername: string,
|
|
5245
|
+
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5246
|
+
}
|
|
5247
|
+
}
|
|
5248
|
+
|
|
5249
|
+
export class CreateAssistantProviderAgentkit extends jspb.Message {
|
|
5250
|
+
getAgentkiturl(): string;
|
|
5251
|
+
setAgentkiturl(value: string): void;
|
|
5252
|
+
|
|
5253
|
+
getCertificate(): string;
|
|
5254
|
+
setCertificate(value: string): void;
|
|
5255
|
+
|
|
5256
|
+
getMetadataMap(): jspb.Map<string, string>;
|
|
5257
|
+
clearMetadataMap(): void;
|
|
5258
|
+
serializeBinary(): Uint8Array;
|
|
5259
|
+
toObject(includeInstance?: boolean): CreateAssistantProviderAgentkit.AsObject;
|
|
5260
|
+
static toObject(includeInstance: boolean, msg: CreateAssistantProviderAgentkit): CreateAssistantProviderAgentkit.AsObject;
|
|
5261
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5262
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5263
|
+
static serializeBinaryToWriter(message: CreateAssistantProviderAgentkit, writer: jspb.BinaryWriter): void;
|
|
5264
|
+
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderAgentkit;
|
|
5265
|
+
static deserializeBinaryFromReader(message: CreateAssistantProviderAgentkit, reader: jspb.BinaryReader): CreateAssistantProviderAgentkit;
|
|
5266
|
+
}
|
|
5267
|
+
|
|
5268
|
+
export namespace CreateAssistantProviderAgentkit {
|
|
5269
|
+
export type AsObject = {
|
|
5270
|
+
agentkiturl: string,
|
|
5271
|
+
certificate: string,
|
|
5272
|
+
metadataMap: Array<[string, string]>,
|
|
5273
|
+
}
|
|
5274
|
+
}
|
|
5275
|
+
|
|
5276
|
+
export class CreateAssistantProviderWebsocket extends jspb.Message {
|
|
5277
|
+
getWebsocketurl(): string;
|
|
5278
|
+
setWebsocketurl(value: string): void;
|
|
5279
|
+
|
|
5280
|
+
getHeadersMap(): jspb.Map<string, string>;
|
|
5281
|
+
clearHeadersMap(): void;
|
|
5282
|
+
getConnectionparametersMap(): jspb.Map<string, string>;
|
|
5283
|
+
clearConnectionparametersMap(): void;
|
|
5284
|
+
serializeBinary(): Uint8Array;
|
|
5285
|
+
toObject(includeInstance?: boolean): CreateAssistantProviderWebsocket.AsObject;
|
|
5286
|
+
static toObject(includeInstance: boolean, msg: CreateAssistantProviderWebsocket): CreateAssistantProviderWebsocket.AsObject;
|
|
5287
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5288
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5289
|
+
static serializeBinaryToWriter(message: CreateAssistantProviderWebsocket, writer: jspb.BinaryWriter): void;
|
|
5290
|
+
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderWebsocket;
|
|
5291
|
+
static deserializeBinaryFromReader(message: CreateAssistantProviderWebsocket, reader: jspb.BinaryReader): CreateAssistantProviderWebsocket;
|
|
5292
|
+
}
|
|
5293
|
+
|
|
5294
|
+
export namespace CreateAssistantProviderWebsocket {
|
|
5295
|
+
export type AsObject = {
|
|
5296
|
+
websocketurl: string,
|
|
5297
|
+
headersMap: Array<[string, string]>,
|
|
5298
|
+
connectionparametersMap: Array<[string, string]>,
|
|
5299
|
+
}
|
|
5300
|
+
}
|
|
5301
|
+
|
|
5302
|
+
export enum AssistantproviderCase {
|
|
5303
|
+
ASSISTANTPROVIDER_NOT_SET = 0,
|
|
5304
|
+
MODEL = 50,
|
|
5305
|
+
AGENTKIT = 51,
|
|
5306
|
+
WEBSOCKET = 52,
|
|
5307
|
+
}
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
declare class AssistantProviderAgentkit extends jspb.Message {
|
|
5311
|
+
getId(): string;
|
|
5312
|
+
setId(value: string): void;
|
|
5313
|
+
|
|
5314
|
+
getDescription(): string;
|
|
4926
5315
|
setDescription(value: string): void;
|
|
4927
5316
|
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
getAssistanttag(): Tag | undefined;
|
|
4931
|
-
setAssistanttag(value?: Tag): void;
|
|
5317
|
+
getAssistantid(): number;
|
|
5318
|
+
setAssistantid(value: number): void;
|
|
4932
5319
|
|
|
4933
|
-
|
|
4934
|
-
|
|
5320
|
+
getStatus(): string;
|
|
5321
|
+
setStatus(value: string): void;
|
|
4935
5322
|
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
5323
|
+
getUrl(): string;
|
|
5324
|
+
setUrl(value: string): void;
|
|
5325
|
+
|
|
5326
|
+
getCertificate(): string;
|
|
5327
|
+
setCertificate(value: string): void;
|
|
4940
5328
|
|
|
5329
|
+
getMetadataMap(): jspb.Map<string, string>;
|
|
5330
|
+
clearMetadataMap(): void;
|
|
4941
5331
|
getCreatedby(): string;
|
|
4942
5332
|
setCreatedby(value: string): void;
|
|
4943
5333
|
|
|
@@ -4964,81 +5354,105 @@ declare class Assistant extends jspb.Message {
|
|
|
4964
5354
|
getUpdateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4965
5355
|
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
4966
5356
|
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
5357
|
+
serializeBinary(): Uint8Array;
|
|
5358
|
+
toObject(includeInstance?: boolean): AssistantProviderAgentkit.AsObject;
|
|
5359
|
+
static toObject(includeInstance: boolean, msg: AssistantProviderAgentkit): AssistantProviderAgentkit.AsObject;
|
|
5360
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5361
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5362
|
+
static serializeBinaryToWriter(message: AssistantProviderAgentkit, writer: jspb.BinaryWriter): void;
|
|
5363
|
+
static deserializeBinary(bytes: Uint8Array): AssistantProviderAgentkit;
|
|
5364
|
+
static deserializeBinaryFromReader(message: AssistantProviderAgentkit, reader: jspb.BinaryReader): AssistantProviderAgentkit;
|
|
5365
|
+
}
|
|
4971
5366
|
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
5367
|
+
declare namespace AssistantProviderAgentkit {
|
|
5368
|
+
export type AsObject = {
|
|
5369
|
+
id: string,
|
|
5370
|
+
description: string,
|
|
5371
|
+
assistantid: number,
|
|
5372
|
+
status: string,
|
|
5373
|
+
url: string,
|
|
5374
|
+
certificate: string,
|
|
5375
|
+
metadataMap: Array<[string, string]>,
|
|
5376
|
+
createdby: string,
|
|
5377
|
+
createduser?: User.AsObject,
|
|
5378
|
+
updatedby: string,
|
|
5379
|
+
updateduser?: User.AsObject,
|
|
5380
|
+
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5381
|
+
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5382
|
+
}
|
|
5383
|
+
}
|
|
4976
5384
|
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
setWhatsappdeployment(value?: AssistantWhatsappDeployment): void;
|
|
5385
|
+
declare class AssistantProviderWebsocket extends jspb.Message {
|
|
5386
|
+
getId(): string;
|
|
5387
|
+
setId(value: string): void;
|
|
4981
5388
|
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
getWebplugindeployment(): AssistantWebpluginDeployment | undefined;
|
|
4985
|
-
setWebplugindeployment(value?: AssistantWebpluginDeployment): void;
|
|
5389
|
+
getDescription(): string;
|
|
5390
|
+
setDescription(value: string): void;
|
|
4986
5391
|
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
getApideployment(): AssistantApiDeployment | undefined;
|
|
4990
|
-
setApideployment(value?: AssistantApiDeployment): void;
|
|
5392
|
+
getAssistantid(): number;
|
|
5393
|
+
setAssistantid(value: number): void;
|
|
4991
5394
|
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
setAssistantconversationsList(value: Array<AssistantConversation>): void;
|
|
4995
|
-
addAssistantconversations(value?: AssistantConversation, index?: number): AssistantConversation;
|
|
5395
|
+
getUrl(): string;
|
|
5396
|
+
setUrl(value: string): void;
|
|
4996
5397
|
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5398
|
+
getHeadersMap(): jspb.Map<string, string>;
|
|
5399
|
+
clearHeadersMap(): void;
|
|
5400
|
+
getParametersMap(): jspb.Map<string, string>;
|
|
5401
|
+
clearParametersMap(): void;
|
|
5402
|
+
getStatus(): string;
|
|
5403
|
+
setStatus(value: string): void;
|
|
5404
|
+
|
|
5405
|
+
getCreatedby(): string;
|
|
5406
|
+
setCreatedby(value: string): void;
|
|
5407
|
+
|
|
5408
|
+
hasCreateduser(): boolean;
|
|
5409
|
+
clearCreateduser(): void;
|
|
5410
|
+
getCreateduser(): User | undefined;
|
|
5411
|
+
setCreateduser(value?: User): void;
|
|
5412
|
+
|
|
5413
|
+
getUpdatedby(): string;
|
|
5414
|
+
setUpdatedby(value: string): void;
|
|
5415
|
+
|
|
5416
|
+
hasUpdateduser(): boolean;
|
|
5417
|
+
clearUpdateduser(): void;
|
|
5418
|
+
getUpdateduser(): User | undefined;
|
|
5419
|
+
setUpdateduser(value?: User): void;
|
|
5420
|
+
|
|
5421
|
+
hasCreateddate(): boolean;
|
|
5422
|
+
clearCreateddate(): void;
|
|
5423
|
+
getCreateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5424
|
+
setCreateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5425
|
+
|
|
5426
|
+
hasUpdateddate(): boolean;
|
|
5427
|
+
clearUpdateddate(): void;
|
|
5428
|
+
getUpdateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5429
|
+
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5001
5430
|
|
|
5002
5431
|
serializeBinary(): Uint8Array;
|
|
5003
|
-
toObject(includeInstance?: boolean):
|
|
5004
|
-
static toObject(includeInstance: boolean, msg:
|
|
5432
|
+
toObject(includeInstance?: boolean): AssistantProviderWebsocket.AsObject;
|
|
5433
|
+
static toObject(includeInstance: boolean, msg: AssistantProviderWebsocket): AssistantProviderWebsocket.AsObject;
|
|
5005
5434
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5006
5435
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5007
|
-
static serializeBinaryToWriter(message:
|
|
5008
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5009
|
-
static deserializeBinaryFromReader(message:
|
|
5436
|
+
static serializeBinaryToWriter(message: AssistantProviderWebsocket, writer: jspb.BinaryWriter): void;
|
|
5437
|
+
static deserializeBinary(bytes: Uint8Array): AssistantProviderWebsocket;
|
|
5438
|
+
static deserializeBinaryFromReader(message: AssistantProviderWebsocket, reader: jspb.BinaryReader): AssistantProviderWebsocket;
|
|
5010
5439
|
}
|
|
5011
5440
|
|
|
5012
|
-
declare namespace
|
|
5441
|
+
declare namespace AssistantProviderWebsocket {
|
|
5013
5442
|
export type AsObject = {
|
|
5014
5443
|
id: string,
|
|
5015
|
-
status: string,
|
|
5016
|
-
visibility: string,
|
|
5017
|
-
source: string,
|
|
5018
|
-
sourceidentifier: string,
|
|
5019
|
-
assistanttoolsList: Array<AssistantTool.AsObject>,
|
|
5020
|
-
projectid: string,
|
|
5021
|
-
organizationid: string,
|
|
5022
|
-
assistantprovidermodelid: string,
|
|
5023
|
-
assistantprovidermodel?: AssistantProviderModel.AsObject,
|
|
5024
|
-
name: string,
|
|
5025
5444
|
description: string,
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5445
|
+
assistantid: number,
|
|
5446
|
+
url: string,
|
|
5447
|
+
headersMap: Array<[string, string]>,
|
|
5448
|
+
parametersMap: Array<[string, string]>,
|
|
5449
|
+
status: string,
|
|
5029
5450
|
createdby: string,
|
|
5030
5451
|
createduser?: User.AsObject,
|
|
5031
5452
|
updatedby: string,
|
|
5032
5453
|
updateduser?: User.AsObject,
|
|
5033
5454
|
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5034
5455
|
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5035
|
-
debuggerdeployment?: AssistantDebuggerDeployment.AsObject,
|
|
5036
|
-
phonedeployment?: AssistantPhoneDeployment.AsObject,
|
|
5037
|
-
whatsappdeployment?: AssistantWhatsappDeployment.AsObject,
|
|
5038
|
-
webplugindeployment?: AssistantWebpluginDeployment.AsObject,
|
|
5039
|
-
apideployment?: AssistantApiDeployment.AsObject,
|
|
5040
|
-
assistantconversationsList: Array<AssistantConversation.AsObject>,
|
|
5041
|
-
assistantwebhooksList: Array<AssistantWebhook.AsObject>,
|
|
5042
5456
|
}
|
|
5043
5457
|
}
|
|
5044
5458
|
|
|
@@ -5054,6 +5468,9 @@ declare class AssistantProviderModel extends jspb.Message {
|
|
|
5054
5468
|
getDescription(): string;
|
|
5055
5469
|
setDescription(value: string): void;
|
|
5056
5470
|
|
|
5471
|
+
getAssistantid(): number;
|
|
5472
|
+
setAssistantid(value: number): void;
|
|
5473
|
+
|
|
5057
5474
|
getModelproviderid(): string;
|
|
5058
5475
|
setModelproviderid(value: string): void;
|
|
5059
5476
|
|
|
@@ -5071,62 +5488,404 @@ declare class AssistantProviderModel extends jspb.Message {
|
|
|
5071
5488
|
getCreatedby(): string;
|
|
5072
5489
|
setCreatedby(value: string): void;
|
|
5073
5490
|
|
|
5074
|
-
hasCreateduser(): boolean;
|
|
5075
|
-
clearCreateduser(): void;
|
|
5076
|
-
getCreateduser(): User | undefined;
|
|
5077
|
-
setCreateduser(value?: User): void;
|
|
5491
|
+
hasCreateduser(): boolean;
|
|
5492
|
+
clearCreateduser(): void;
|
|
5493
|
+
getCreateduser(): User | undefined;
|
|
5494
|
+
setCreateduser(value?: User): void;
|
|
5495
|
+
|
|
5496
|
+
getUpdatedby(): string;
|
|
5497
|
+
setUpdatedby(value: string): void;
|
|
5498
|
+
|
|
5499
|
+
hasUpdateduser(): boolean;
|
|
5500
|
+
clearUpdateduser(): void;
|
|
5501
|
+
getUpdateduser(): User | undefined;
|
|
5502
|
+
setUpdateduser(value?: User): void;
|
|
5503
|
+
|
|
5504
|
+
hasCreateddate(): boolean;
|
|
5505
|
+
clearCreateddate(): void;
|
|
5506
|
+
getCreateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5507
|
+
setCreateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5508
|
+
|
|
5509
|
+
hasUpdateddate(): boolean;
|
|
5510
|
+
clearUpdateddate(): void;
|
|
5511
|
+
getUpdateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5512
|
+
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5513
|
+
|
|
5514
|
+
serializeBinary(): Uint8Array;
|
|
5515
|
+
toObject(includeInstance?: boolean): AssistantProviderModel.AsObject;
|
|
5516
|
+
static toObject(includeInstance: boolean, msg: AssistantProviderModel): AssistantProviderModel.AsObject;
|
|
5517
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5518
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5519
|
+
static serializeBinaryToWriter(message: AssistantProviderModel, writer: jspb.BinaryWriter): void;
|
|
5520
|
+
static deserializeBinary(bytes: Uint8Array): AssistantProviderModel;
|
|
5521
|
+
static deserializeBinaryFromReader(message: AssistantProviderModel, reader: jspb.BinaryReader): AssistantProviderModel;
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
declare namespace AssistantProviderModel {
|
|
5525
|
+
export type AsObject = {
|
|
5526
|
+
id: string,
|
|
5527
|
+
template?: TextChatCompletePrompt.AsObject,
|
|
5528
|
+
description: string,
|
|
5529
|
+
assistantid: number,
|
|
5530
|
+
modelproviderid: string,
|
|
5531
|
+
modelprovidername: string,
|
|
5532
|
+
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5533
|
+
status: string,
|
|
5534
|
+
createdby: string,
|
|
5535
|
+
createduser?: User.AsObject,
|
|
5536
|
+
updatedby: string,
|
|
5537
|
+
updateduser?: User.AsObject,
|
|
5538
|
+
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5539
|
+
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5540
|
+
}
|
|
5541
|
+
}
|
|
5542
|
+
|
|
5543
|
+
declare class GetAllAssistantProviderRequest extends jspb.Message {
|
|
5544
|
+
hasPaginate(): boolean;
|
|
5545
|
+
clearPaginate(): void;
|
|
5546
|
+
getPaginate(): Paginate | undefined;
|
|
5547
|
+
setPaginate(value?: Paginate): void;
|
|
5548
|
+
|
|
5549
|
+
clearCriteriasList(): void;
|
|
5550
|
+
getCriteriasList(): Array<Criteria>;
|
|
5551
|
+
setCriteriasList(value: Array<Criteria>): void;
|
|
5552
|
+
addCriterias(value?: Criteria, index?: number): Criteria;
|
|
5553
|
+
|
|
5554
|
+
getAssistantid(): string;
|
|
5555
|
+
setAssistantid(value: string): void;
|
|
5556
|
+
|
|
5557
|
+
serializeBinary(): Uint8Array;
|
|
5558
|
+
toObject(includeInstance?: boolean): GetAllAssistantProviderRequest.AsObject;
|
|
5559
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantProviderRequest): GetAllAssistantProviderRequest.AsObject;
|
|
5560
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5561
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5562
|
+
static serializeBinaryToWriter(message: GetAllAssistantProviderRequest, writer: jspb.BinaryWriter): void;
|
|
5563
|
+
static deserializeBinary(bytes: Uint8Array): GetAllAssistantProviderRequest;
|
|
5564
|
+
static deserializeBinaryFromReader(message: GetAllAssistantProviderRequest, reader: jspb.BinaryReader): GetAllAssistantProviderRequest;
|
|
5565
|
+
}
|
|
5566
|
+
|
|
5567
|
+
declare namespace GetAllAssistantProviderRequest {
|
|
5568
|
+
export type AsObject = {
|
|
5569
|
+
paginate?: Paginate.AsObject,
|
|
5570
|
+
criteriasList: Array<Criteria.AsObject>,
|
|
5571
|
+
assistantid: string,
|
|
5572
|
+
}
|
|
5573
|
+
}
|
|
5574
|
+
|
|
5575
|
+
declare class GetAssistantProviderResponse extends jspb.Message {
|
|
5576
|
+
getCode(): number;
|
|
5577
|
+
setCode(value: number): void;
|
|
5578
|
+
|
|
5579
|
+
getSuccess(): boolean;
|
|
5580
|
+
setSuccess(value: boolean): void;
|
|
5581
|
+
|
|
5582
|
+
hasAssistantprovidermodel(): boolean;
|
|
5583
|
+
clearAssistantprovidermodel(): void;
|
|
5584
|
+
getAssistantprovidermodel(): AssistantProviderModel | undefined;
|
|
5585
|
+
setAssistantprovidermodel(value?: AssistantProviderModel): void;
|
|
5586
|
+
|
|
5587
|
+
hasAssistantprovideragentkit(): boolean;
|
|
5588
|
+
clearAssistantprovideragentkit(): void;
|
|
5589
|
+
getAssistantprovideragentkit(): AssistantProviderAgentkit | undefined;
|
|
5590
|
+
setAssistantprovideragentkit(value?: AssistantProviderAgentkit): void;
|
|
5591
|
+
|
|
5592
|
+
hasAssistantproviderwebsocket(): boolean;
|
|
5593
|
+
clearAssistantproviderwebsocket(): void;
|
|
5594
|
+
getAssistantproviderwebsocket(): AssistantProviderWebsocket | undefined;
|
|
5595
|
+
setAssistantproviderwebsocket(value?: AssistantProviderWebsocket): void;
|
|
5596
|
+
|
|
5597
|
+
hasError(): boolean;
|
|
5598
|
+
clearError(): void;
|
|
5599
|
+
getError(): Error | undefined;
|
|
5600
|
+
setError(value?: Error): void;
|
|
5601
|
+
|
|
5602
|
+
getDataCase(): GetAssistantProviderResponse.DataCase;
|
|
5603
|
+
serializeBinary(): Uint8Array;
|
|
5604
|
+
toObject(includeInstance?: boolean): GetAssistantProviderResponse.AsObject;
|
|
5605
|
+
static toObject(includeInstance: boolean, msg: GetAssistantProviderResponse): GetAssistantProviderResponse.AsObject;
|
|
5606
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5607
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5608
|
+
static serializeBinaryToWriter(message: GetAssistantProviderResponse, writer: jspb.BinaryWriter): void;
|
|
5609
|
+
static deserializeBinary(bytes: Uint8Array): GetAssistantProviderResponse;
|
|
5610
|
+
static deserializeBinaryFromReader(message: GetAssistantProviderResponse, reader: jspb.BinaryReader): GetAssistantProviderResponse;
|
|
5611
|
+
}
|
|
5612
|
+
|
|
5613
|
+
declare namespace GetAssistantProviderResponse {
|
|
5614
|
+
export type AsObject = {
|
|
5615
|
+
code: number,
|
|
5616
|
+
success: boolean,
|
|
5617
|
+
assistantprovidermodel?: AssistantProviderModel.AsObject,
|
|
5618
|
+
assistantprovideragentkit?: AssistantProviderAgentkit.AsObject,
|
|
5619
|
+
assistantproviderwebsocket?: AssistantProviderWebsocket.AsObject,
|
|
5620
|
+
error?: Error.AsObject,
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5623
|
+
export enum DataCase {
|
|
5624
|
+
DATA_NOT_SET = 0,
|
|
5625
|
+
ASSISTANTPROVIDERMODEL = 50,
|
|
5626
|
+
ASSISTANTPROVIDERAGENTKIT = 51,
|
|
5627
|
+
ASSISTANTPROVIDERWEBSOCKET = 52,
|
|
5628
|
+
}
|
|
5629
|
+
}
|
|
5630
|
+
|
|
5631
|
+
declare class GetAllAssistantProviderResponse extends jspb.Message {
|
|
5632
|
+
getCode(): number;
|
|
5633
|
+
setCode(value: number): void;
|
|
5634
|
+
|
|
5635
|
+
getSuccess(): boolean;
|
|
5636
|
+
setSuccess(value: boolean): void;
|
|
5637
|
+
|
|
5638
|
+
clearDataList(): void;
|
|
5639
|
+
getDataList(): Array<GetAllAssistantProviderResponse.AssistantProvider>;
|
|
5640
|
+
setDataList(value: Array<GetAllAssistantProviderResponse.AssistantProvider>): void;
|
|
5641
|
+
addData(value?: GetAllAssistantProviderResponse.AssistantProvider, index?: number): GetAllAssistantProviderResponse.AssistantProvider;
|
|
5642
|
+
|
|
5643
|
+
hasError(): boolean;
|
|
5644
|
+
clearError(): void;
|
|
5645
|
+
getError(): Error | undefined;
|
|
5646
|
+
setError(value?: Error): void;
|
|
5647
|
+
|
|
5648
|
+
hasPaginated(): boolean;
|
|
5649
|
+
clearPaginated(): void;
|
|
5650
|
+
getPaginated(): Paginated | undefined;
|
|
5651
|
+
setPaginated(value?: Paginated): void;
|
|
5652
|
+
|
|
5653
|
+
serializeBinary(): Uint8Array;
|
|
5654
|
+
toObject(includeInstance?: boolean): GetAllAssistantProviderResponse.AsObject;
|
|
5655
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantProviderResponse): GetAllAssistantProviderResponse.AsObject;
|
|
5656
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5657
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5658
|
+
static serializeBinaryToWriter(message: GetAllAssistantProviderResponse, writer: jspb.BinaryWriter): void;
|
|
5659
|
+
static deserializeBinary(bytes: Uint8Array): GetAllAssistantProviderResponse;
|
|
5660
|
+
static deserializeBinaryFromReader(message: GetAllAssistantProviderResponse, reader: jspb.BinaryReader): GetAllAssistantProviderResponse;
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
declare namespace GetAllAssistantProviderResponse {
|
|
5664
|
+
export type AsObject = {
|
|
5665
|
+
code: number,
|
|
5666
|
+
success: boolean,
|
|
5667
|
+
dataList: Array<GetAllAssistantProviderResponse.AssistantProvider.AsObject>,
|
|
5668
|
+
error?: Error.AsObject,
|
|
5669
|
+
paginated?: Paginated.AsObject,
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
export class AssistantProvider extends jspb.Message {
|
|
5673
|
+
hasAssistantprovidermodel(): boolean;
|
|
5674
|
+
clearAssistantprovidermodel(): void;
|
|
5675
|
+
getAssistantprovidermodel(): AssistantProviderModel | undefined;
|
|
5676
|
+
setAssistantprovidermodel(value?: AssistantProviderModel): void;
|
|
5677
|
+
|
|
5678
|
+
hasAssistantprovideragentkit(): boolean;
|
|
5679
|
+
clearAssistantprovideragentkit(): void;
|
|
5680
|
+
getAssistantprovideragentkit(): AssistantProviderAgentkit | undefined;
|
|
5681
|
+
setAssistantprovideragentkit(value?: AssistantProviderAgentkit): void;
|
|
5682
|
+
|
|
5683
|
+
hasAssistantproviderwebsocket(): boolean;
|
|
5684
|
+
clearAssistantproviderwebsocket(): void;
|
|
5685
|
+
getAssistantproviderwebsocket(): AssistantProviderWebsocket | undefined;
|
|
5686
|
+
setAssistantproviderwebsocket(value?: AssistantProviderWebsocket): void;
|
|
5687
|
+
|
|
5688
|
+
getAssistantproviderCase(): AssistantProvider.AssistantproviderCase;
|
|
5689
|
+
serializeBinary(): Uint8Array;
|
|
5690
|
+
toObject(includeInstance?: boolean): AssistantProvider.AsObject;
|
|
5691
|
+
static toObject(includeInstance: boolean, msg: AssistantProvider): AssistantProvider.AsObject;
|
|
5692
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5693
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5694
|
+
static serializeBinaryToWriter(message: AssistantProvider, writer: jspb.BinaryWriter): void;
|
|
5695
|
+
static deserializeBinary(bytes: Uint8Array): AssistantProvider;
|
|
5696
|
+
static deserializeBinaryFromReader(message: AssistantProvider, reader: jspb.BinaryReader): AssistantProvider;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
export namespace AssistantProvider {
|
|
5700
|
+
export type AsObject = {
|
|
5701
|
+
assistantprovidermodel?: AssistantProviderModel.AsObject,
|
|
5702
|
+
assistantprovideragentkit?: AssistantProviderAgentkit.AsObject,
|
|
5703
|
+
assistantproviderwebsocket?: AssistantProviderWebsocket.AsObject,
|
|
5704
|
+
}
|
|
5705
|
+
|
|
5706
|
+
export enum AssistantproviderCase {
|
|
5707
|
+
ASSISTANTPROVIDER_NOT_SET = 0,
|
|
5708
|
+
ASSISTANTPROVIDERMODEL = 50,
|
|
5709
|
+
ASSISTANTPROVIDERAGENTKIT = 51,
|
|
5710
|
+
ASSISTANTPROVIDERWEBSOCKET = 52,
|
|
5711
|
+
}
|
|
5712
|
+
}
|
|
5713
|
+
}
|
|
5714
|
+
|
|
5715
|
+
// package: assistant_api
|
|
5716
|
+
// file: assistant-api.proto
|
|
5717
|
+
|
|
5718
|
+
|
|
5719
|
+
|
|
5720
|
+
declare class Assistant extends jspb.Message {
|
|
5721
|
+
getId(): string;
|
|
5722
|
+
setId(value: string): void;
|
|
5723
|
+
|
|
5724
|
+
getStatus(): string;
|
|
5725
|
+
setStatus(value: string): void;
|
|
5726
|
+
|
|
5727
|
+
getVisibility(): string;
|
|
5728
|
+
setVisibility(value: string): void;
|
|
5729
|
+
|
|
5730
|
+
getSource(): string;
|
|
5731
|
+
setSource(value: string): void;
|
|
5732
|
+
|
|
5733
|
+
getSourceidentifier(): string;
|
|
5734
|
+
setSourceidentifier(value: string): void;
|
|
5735
|
+
|
|
5736
|
+
getProjectid(): string;
|
|
5737
|
+
setProjectid(value: string): void;
|
|
5738
|
+
|
|
5739
|
+
getOrganizationid(): string;
|
|
5740
|
+
setOrganizationid(value: string): void;
|
|
5741
|
+
|
|
5742
|
+
getAssistantprovider(): string;
|
|
5743
|
+
setAssistantprovider(value: string): void;
|
|
5744
|
+
|
|
5745
|
+
getAssistantproviderid(): string;
|
|
5746
|
+
setAssistantproviderid(value: string): void;
|
|
5747
|
+
|
|
5748
|
+
getName(): string;
|
|
5749
|
+
setName(value: string): void;
|
|
5750
|
+
|
|
5751
|
+
getDescription(): string;
|
|
5752
|
+
setDescription(value: string): void;
|
|
5753
|
+
|
|
5754
|
+
hasAssistantprovidermodel(): boolean;
|
|
5755
|
+
clearAssistantprovidermodel(): void;
|
|
5756
|
+
getAssistantprovidermodel(): AssistantProviderModel | undefined;
|
|
5757
|
+
setAssistantprovidermodel(value?: AssistantProviderModel): void;
|
|
5758
|
+
|
|
5759
|
+
hasAssistantprovideragentkit(): boolean;
|
|
5760
|
+
clearAssistantprovideragentkit(): void;
|
|
5761
|
+
getAssistantprovideragentkit(): AssistantProviderAgentkit | undefined;
|
|
5762
|
+
setAssistantprovideragentkit(value?: AssistantProviderAgentkit): void;
|
|
5763
|
+
|
|
5764
|
+
hasAssistantproviderwebsocket(): boolean;
|
|
5765
|
+
clearAssistantproviderwebsocket(): void;
|
|
5766
|
+
getAssistantproviderwebsocket(): AssistantProviderWebsocket | undefined;
|
|
5767
|
+
setAssistantproviderwebsocket(value?: AssistantProviderWebsocket): void;
|
|
5768
|
+
|
|
5769
|
+
hasAssistanttag(): boolean;
|
|
5770
|
+
clearAssistanttag(): void;
|
|
5771
|
+
getAssistanttag(): Tag | undefined;
|
|
5772
|
+
setAssistanttag(value?: Tag): void;
|
|
5773
|
+
|
|
5774
|
+
getCreatedby(): string;
|
|
5775
|
+
setCreatedby(value: string): void;
|
|
5776
|
+
|
|
5777
|
+
hasCreateduser(): boolean;
|
|
5778
|
+
clearCreateduser(): void;
|
|
5779
|
+
getCreateduser(): User | undefined;
|
|
5780
|
+
setCreateduser(value?: User): void;
|
|
5781
|
+
|
|
5782
|
+
getUpdatedby(): string;
|
|
5783
|
+
setUpdatedby(value: string): void;
|
|
5784
|
+
|
|
5785
|
+
hasUpdateduser(): boolean;
|
|
5786
|
+
clearUpdateduser(): void;
|
|
5787
|
+
getUpdateduser(): User | undefined;
|
|
5788
|
+
setUpdateduser(value?: User): void;
|
|
5789
|
+
|
|
5790
|
+
hasCreateddate(): boolean;
|
|
5791
|
+
clearCreateddate(): void;
|
|
5792
|
+
getCreateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5793
|
+
setCreateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5794
|
+
|
|
5795
|
+
hasUpdateddate(): boolean;
|
|
5796
|
+
clearUpdateddate(): void;
|
|
5797
|
+
getUpdateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5798
|
+
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5799
|
+
|
|
5800
|
+
hasDebuggerdeployment(): boolean;
|
|
5801
|
+
clearDebuggerdeployment(): void;
|
|
5802
|
+
getDebuggerdeployment(): AssistantDebuggerDeployment | undefined;
|
|
5803
|
+
setDebuggerdeployment(value?: AssistantDebuggerDeployment): void;
|
|
5804
|
+
|
|
5805
|
+
hasPhonedeployment(): boolean;
|
|
5806
|
+
clearPhonedeployment(): void;
|
|
5807
|
+
getPhonedeployment(): AssistantPhoneDeployment | undefined;
|
|
5808
|
+
setPhonedeployment(value?: AssistantPhoneDeployment): void;
|
|
5809
|
+
|
|
5810
|
+
hasWhatsappdeployment(): boolean;
|
|
5811
|
+
clearWhatsappdeployment(): void;
|
|
5812
|
+
getWhatsappdeployment(): AssistantWhatsappDeployment | undefined;
|
|
5813
|
+
setWhatsappdeployment(value?: AssistantWhatsappDeployment): void;
|
|
5814
|
+
|
|
5815
|
+
hasWebplugindeployment(): boolean;
|
|
5816
|
+
clearWebplugindeployment(): void;
|
|
5817
|
+
getWebplugindeployment(): AssistantWebpluginDeployment | undefined;
|
|
5818
|
+
setWebplugindeployment(value?: AssistantWebpluginDeployment): void;
|
|
5078
5819
|
|
|
5079
|
-
|
|
5080
|
-
|
|
5820
|
+
hasApideployment(): boolean;
|
|
5821
|
+
clearApideployment(): void;
|
|
5822
|
+
getApideployment(): AssistantApiDeployment | undefined;
|
|
5823
|
+
setApideployment(value?: AssistantApiDeployment): void;
|
|
5081
5824
|
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5825
|
+
clearAssistantconversationsList(): void;
|
|
5826
|
+
getAssistantconversationsList(): Array<AssistantConversation>;
|
|
5827
|
+
setAssistantconversationsList(value: Array<AssistantConversation>): void;
|
|
5828
|
+
addAssistantconversations(value?: AssistantConversation, index?: number): AssistantConversation;
|
|
5086
5829
|
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5830
|
+
clearAssistantwebhooksList(): void;
|
|
5831
|
+
getAssistantwebhooksList(): Array<AssistantWebhook>;
|
|
5832
|
+
setAssistantwebhooksList(value: Array<AssistantWebhook>): void;
|
|
5833
|
+
addAssistantwebhooks(value?: AssistantWebhook, index?: number): AssistantWebhook;
|
|
5091
5834
|
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5835
|
+
clearAssistanttoolsList(): void;
|
|
5836
|
+
getAssistanttoolsList(): Array<AssistantTool>;
|
|
5837
|
+
setAssistanttoolsList(value: Array<AssistantTool>): void;
|
|
5838
|
+
addAssistanttools(value?: AssistantTool, index?: number): AssistantTool;
|
|
5096
5839
|
|
|
5097
5840
|
serializeBinary(): Uint8Array;
|
|
5098
|
-
toObject(includeInstance?: boolean):
|
|
5099
|
-
static toObject(includeInstance: boolean, msg:
|
|
5841
|
+
toObject(includeInstance?: boolean): Assistant.AsObject;
|
|
5842
|
+
static toObject(includeInstance: boolean, msg: Assistant): Assistant.AsObject;
|
|
5100
5843
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5101
5844
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5102
|
-
static serializeBinaryToWriter(message:
|
|
5103
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5104
|
-
static deserializeBinaryFromReader(message:
|
|
5845
|
+
static serializeBinaryToWriter(message: Assistant, writer: jspb.BinaryWriter): void;
|
|
5846
|
+
static deserializeBinary(bytes: Uint8Array): Assistant;
|
|
5847
|
+
static deserializeBinaryFromReader(message: Assistant, reader: jspb.BinaryReader): Assistant;
|
|
5105
5848
|
}
|
|
5106
5849
|
|
|
5107
|
-
declare namespace
|
|
5850
|
+
declare namespace Assistant {
|
|
5108
5851
|
export type AsObject = {
|
|
5109
5852
|
id: string,
|
|
5110
|
-
template?: TextChatCompletePrompt.AsObject,
|
|
5111
|
-
description: string,
|
|
5112
|
-
modelproviderid: string,
|
|
5113
|
-
modelprovidername: string,
|
|
5114
|
-
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5115
5853
|
status: string,
|
|
5854
|
+
visibility: string,
|
|
5855
|
+
source: string,
|
|
5856
|
+
sourceidentifier: string,
|
|
5857
|
+
projectid: string,
|
|
5858
|
+
organizationid: string,
|
|
5859
|
+
assistantprovider: string,
|
|
5860
|
+
assistantproviderid: string,
|
|
5861
|
+
name: string,
|
|
5862
|
+
description: string,
|
|
5863
|
+
assistantprovidermodel?: AssistantProviderModel.AsObject,
|
|
5864
|
+
assistantprovideragentkit?: AssistantProviderAgentkit.AsObject,
|
|
5865
|
+
assistantproviderwebsocket?: AssistantProviderWebsocket.AsObject,
|
|
5866
|
+
assistanttag?: Tag.AsObject,
|
|
5116
5867
|
createdby: string,
|
|
5117
5868
|
createduser?: User.AsObject,
|
|
5118
5869
|
updatedby: string,
|
|
5119
5870
|
updateduser?: User.AsObject,
|
|
5120
5871
|
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5121
5872
|
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5873
|
+
debuggerdeployment?: AssistantDebuggerDeployment.AsObject,
|
|
5874
|
+
phonedeployment?: AssistantPhoneDeployment.AsObject,
|
|
5875
|
+
whatsappdeployment?: AssistantWhatsappDeployment.AsObject,
|
|
5876
|
+
webplugindeployment?: AssistantWebpluginDeployment.AsObject,
|
|
5877
|
+
apideployment?: AssistantApiDeployment.AsObject,
|
|
5878
|
+
assistantconversationsList: Array<AssistantConversation.AsObject>,
|
|
5879
|
+
assistantwebhooksList: Array<AssistantWebhook.AsObject>,
|
|
5880
|
+
assistanttoolsList: Array<AssistantTool.AsObject>,
|
|
5122
5881
|
}
|
|
5123
5882
|
}
|
|
5124
5883
|
|
|
5125
5884
|
declare class CreateAssistantRequest extends jspb.Message {
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5885
|
+
hasAssistantprovider(): boolean;
|
|
5886
|
+
clearAssistantprovider(): void;
|
|
5887
|
+
getAssistantprovider(): CreateAssistantProviderRequest | undefined;
|
|
5888
|
+
setAssistantprovider(value?: CreateAssistantProviderRequest): void;
|
|
5130
5889
|
|
|
5131
5890
|
clearAssistantknowledgesList(): void;
|
|
5132
5891
|
getAssistantknowledgesList(): Array<CreateAssistantKnowledgeRequest>;
|
|
@@ -5173,7 +5932,7 @@ declare class CreateAssistantRequest extends jspb.Message {
|
|
|
5173
5932
|
|
|
5174
5933
|
declare namespace CreateAssistantRequest {
|
|
5175
5934
|
export type AsObject = {
|
|
5176
|
-
|
|
5935
|
+
assistantprovider?: CreateAssistantProviderRequest.AsObject,
|
|
5177
5936
|
assistantknowledgesList: Array<CreateAssistantKnowledgeRequest.AsObject>,
|
|
5178
5937
|
assistanttoolsList: Array<CreateAssistantToolRequest.AsObject>,
|
|
5179
5938
|
description: string,
|
|
@@ -5186,86 +5945,6 @@ declare namespace CreateAssistantRequest {
|
|
|
5186
5945
|
}
|
|
5187
5946
|
}
|
|
5188
5947
|
|
|
5189
|
-
declare class CreateAssistantProviderModelRequest extends jspb.Message {
|
|
5190
|
-
getAssistantid(): string;
|
|
5191
|
-
setAssistantid(value: string): void;
|
|
5192
|
-
|
|
5193
|
-
getDescription(): string;
|
|
5194
|
-
setDescription(value: string): void;
|
|
5195
|
-
|
|
5196
|
-
hasTemplate(): boolean;
|
|
5197
|
-
clearTemplate(): void;
|
|
5198
|
-
getTemplate(): TextChatCompletePrompt | undefined;
|
|
5199
|
-
setTemplate(value?: TextChatCompletePrompt): void;
|
|
5200
|
-
|
|
5201
|
-
getModelproviderid(): string;
|
|
5202
|
-
setModelproviderid(value: string): void;
|
|
5203
|
-
|
|
5204
|
-
getModelprovidername(): string;
|
|
5205
|
-
setModelprovidername(value: string): void;
|
|
5206
|
-
|
|
5207
|
-
clearAssistantmodeloptionsList(): void;
|
|
5208
|
-
getAssistantmodeloptionsList(): Array<Metadata>;
|
|
5209
|
-
setAssistantmodeloptionsList(value: Array<Metadata>): void;
|
|
5210
|
-
addAssistantmodeloptions(value?: Metadata, index?: number): Metadata;
|
|
5211
|
-
|
|
5212
|
-
serializeBinary(): Uint8Array;
|
|
5213
|
-
toObject(includeInstance?: boolean): CreateAssistantProviderModelRequest.AsObject;
|
|
5214
|
-
static toObject(includeInstance: boolean, msg: CreateAssistantProviderModelRequest): CreateAssistantProviderModelRequest.AsObject;
|
|
5215
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5216
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5217
|
-
static serializeBinaryToWriter(message: CreateAssistantProviderModelRequest, writer: jspb.BinaryWriter): void;
|
|
5218
|
-
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderModelRequest;
|
|
5219
|
-
static deserializeBinaryFromReader(message: CreateAssistantProviderModelRequest, reader: jspb.BinaryReader): CreateAssistantProviderModelRequest;
|
|
5220
|
-
}
|
|
5221
|
-
|
|
5222
|
-
declare namespace CreateAssistantProviderModelRequest {
|
|
5223
|
-
export type AsObject = {
|
|
5224
|
-
assistantid: string,
|
|
5225
|
-
description: string,
|
|
5226
|
-
template?: TextChatCompletePrompt.AsObject,
|
|
5227
|
-
modelproviderid: string,
|
|
5228
|
-
modelprovidername: string,
|
|
5229
|
-
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5230
|
-
}
|
|
5231
|
-
}
|
|
5232
|
-
|
|
5233
|
-
declare class GetAssistantProviderModelResponse extends jspb.Message {
|
|
5234
|
-
getCode(): number;
|
|
5235
|
-
setCode(value: number): void;
|
|
5236
|
-
|
|
5237
|
-
getSuccess(): boolean;
|
|
5238
|
-
setSuccess(value: boolean): void;
|
|
5239
|
-
|
|
5240
|
-
hasData(): boolean;
|
|
5241
|
-
clearData(): void;
|
|
5242
|
-
getData(): AssistantProviderModel | undefined;
|
|
5243
|
-
setData(value?: AssistantProviderModel): void;
|
|
5244
|
-
|
|
5245
|
-
hasError(): boolean;
|
|
5246
|
-
clearError(): void;
|
|
5247
|
-
getError(): Error | undefined;
|
|
5248
|
-
setError(value?: Error): void;
|
|
5249
|
-
|
|
5250
|
-
serializeBinary(): Uint8Array;
|
|
5251
|
-
toObject(includeInstance?: boolean): GetAssistantProviderModelResponse.AsObject;
|
|
5252
|
-
static toObject(includeInstance: boolean, msg: GetAssistantProviderModelResponse): GetAssistantProviderModelResponse.AsObject;
|
|
5253
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5254
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5255
|
-
static serializeBinaryToWriter(message: GetAssistantProviderModelResponse, writer: jspb.BinaryWriter): void;
|
|
5256
|
-
static deserializeBinary(bytes: Uint8Array): GetAssistantProviderModelResponse;
|
|
5257
|
-
static deserializeBinaryFromReader(message: GetAssistantProviderModelResponse, reader: jspb.BinaryReader): GetAssistantProviderModelResponse;
|
|
5258
|
-
}
|
|
5259
|
-
|
|
5260
|
-
declare namespace GetAssistantProviderModelResponse {
|
|
5261
|
-
export type AsObject = {
|
|
5262
|
-
code: number,
|
|
5263
|
-
success: boolean,
|
|
5264
|
-
data?: AssistantProviderModel.AsObject,
|
|
5265
|
-
error?: Error.AsObject,
|
|
5266
|
-
}
|
|
5267
|
-
}
|
|
5268
|
-
|
|
5269
5948
|
declare class CreateAssistantTagRequest extends jspb.Message {
|
|
5270
5949
|
getAssistantid(): string;
|
|
5271
5950
|
setAssistantid(value: string): void;
|
|
@@ -5293,13 +5972,10 @@ declare namespace CreateAssistantTagRequest {
|
|
|
5293
5972
|
}
|
|
5294
5973
|
|
|
5295
5974
|
declare class GetAssistantRequest extends jspb.Message {
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
clearAssistantprovidermodelid(): void;
|
|
5301
|
-
getAssistantprovidermodelid(): string;
|
|
5302
|
-
setAssistantprovidermodelid(value: string): void;
|
|
5975
|
+
hasAssistantdefinition(): boolean;
|
|
5976
|
+
clearAssistantdefinition(): void;
|
|
5977
|
+
getAssistantdefinition(): AssistantDefinition | undefined;
|
|
5978
|
+
setAssistantdefinition(value?: AssistantDefinition): void;
|
|
5303
5979
|
|
|
5304
5980
|
serializeBinary(): Uint8Array;
|
|
5305
5981
|
toObject(includeInstance?: boolean): GetAssistantRequest.AsObject;
|
|
@@ -5313,8 +5989,7 @@ declare class GetAssistantRequest extends jspb.Message {
|
|
|
5313
5989
|
|
|
5314
5990
|
declare namespace GetAssistantRequest {
|
|
5315
5991
|
export type AsObject = {
|
|
5316
|
-
|
|
5317
|
-
assistantprovidermodelid: string,
|
|
5992
|
+
assistantdefinition?: AssistantDefinition.AsObject,
|
|
5318
5993
|
}
|
|
5319
5994
|
}
|
|
5320
5995
|
|
|
@@ -5402,7 +6077,41 @@ declare namespace GetAllAssistantRequest {
|
|
|
5402
6077
|
}
|
|
5403
6078
|
}
|
|
5404
6079
|
|
|
5405
|
-
declare class
|
|
6080
|
+
declare class GetAllAssistantTelemetryRequest extends jspb.Message {
|
|
6081
|
+
hasPaginate(): boolean;
|
|
6082
|
+
clearPaginate(): void;
|
|
6083
|
+
getPaginate(): Paginate | undefined;
|
|
6084
|
+
setPaginate(value?: Paginate): void;
|
|
6085
|
+
|
|
6086
|
+
clearCriteriasList(): void;
|
|
6087
|
+
getCriteriasList(): Array<Criteria>;
|
|
6088
|
+
setCriteriasList(value: Array<Criteria>): void;
|
|
6089
|
+
addCriterias(value?: Criteria, index?: number): Criteria;
|
|
6090
|
+
|
|
6091
|
+
hasAssistant(): boolean;
|
|
6092
|
+
clearAssistant(): void;
|
|
6093
|
+
getAssistant(): AssistantDefinition | undefined;
|
|
6094
|
+
setAssistant(value?: AssistantDefinition): void;
|
|
6095
|
+
|
|
6096
|
+
serializeBinary(): Uint8Array;
|
|
6097
|
+
toObject(includeInstance?: boolean): GetAllAssistantTelemetryRequest.AsObject;
|
|
6098
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantTelemetryRequest): GetAllAssistantTelemetryRequest.AsObject;
|
|
6099
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6100
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6101
|
+
static serializeBinaryToWriter(message: GetAllAssistantTelemetryRequest, writer: jspb.BinaryWriter): void;
|
|
6102
|
+
static deserializeBinary(bytes: Uint8Array): GetAllAssistantTelemetryRequest;
|
|
6103
|
+
static deserializeBinaryFromReader(message: GetAllAssistantTelemetryRequest, reader: jspb.BinaryReader): GetAllAssistantTelemetryRequest;
|
|
6104
|
+
}
|
|
6105
|
+
|
|
6106
|
+
declare namespace GetAllAssistantTelemetryRequest {
|
|
6107
|
+
export type AsObject = {
|
|
6108
|
+
paginate?: Paginate.AsObject,
|
|
6109
|
+
criteriasList: Array<Criteria.AsObject>,
|
|
6110
|
+
assistant?: AssistantDefinition.AsObject,
|
|
6111
|
+
}
|
|
6112
|
+
}
|
|
6113
|
+
|
|
6114
|
+
declare class GetAllAssistantTelemetryResponse extends jspb.Message {
|
|
5406
6115
|
getCode(): number;
|
|
5407
6116
|
setCode(value: number): void;
|
|
5408
6117
|
|
|
@@ -5410,9 +6119,9 @@ declare class GetAllAssistantResponse extends jspb.Message {
|
|
|
5410
6119
|
setSuccess(value: boolean): void;
|
|
5411
6120
|
|
|
5412
6121
|
clearDataList(): void;
|
|
5413
|
-
getDataList(): Array<
|
|
5414
|
-
setDataList(value: Array<
|
|
5415
|
-
addData(value?:
|
|
6122
|
+
getDataList(): Array<Telemetry>;
|
|
6123
|
+
setDataList(value: Array<Telemetry>): void;
|
|
6124
|
+
addData(value?: Telemetry, index?: number): Telemetry;
|
|
5416
6125
|
|
|
5417
6126
|
hasError(): boolean;
|
|
5418
6127
|
clearError(): void;
|
|
@@ -5425,58 +6134,26 @@ declare class GetAllAssistantResponse extends jspb.Message {
|
|
|
5425
6134
|
setPaginated(value?: Paginated): void;
|
|
5426
6135
|
|
|
5427
6136
|
serializeBinary(): Uint8Array;
|
|
5428
|
-
toObject(includeInstance?: boolean):
|
|
5429
|
-
static toObject(includeInstance: boolean, msg:
|
|
6137
|
+
toObject(includeInstance?: boolean): GetAllAssistantTelemetryResponse.AsObject;
|
|
6138
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantTelemetryResponse): GetAllAssistantTelemetryResponse.AsObject;
|
|
5430
6139
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5431
6140
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5432
|
-
static serializeBinaryToWriter(message:
|
|
5433
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5434
|
-
static deserializeBinaryFromReader(message:
|
|
6141
|
+
static serializeBinaryToWriter(message: GetAllAssistantTelemetryResponse, writer: jspb.BinaryWriter): void;
|
|
6142
|
+
static deserializeBinary(bytes: Uint8Array): GetAllAssistantTelemetryResponse;
|
|
6143
|
+
static deserializeBinaryFromReader(message: GetAllAssistantTelemetryResponse, reader: jspb.BinaryReader): GetAllAssistantTelemetryResponse;
|
|
5435
6144
|
}
|
|
5436
6145
|
|
|
5437
|
-
declare namespace
|
|
6146
|
+
declare namespace GetAllAssistantTelemetryResponse {
|
|
5438
6147
|
export type AsObject = {
|
|
5439
6148
|
code: number,
|
|
5440
6149
|
success: boolean,
|
|
5441
|
-
dataList: Array<
|
|
6150
|
+
dataList: Array<Telemetry.AsObject>,
|
|
5442
6151
|
error?: Error.AsObject,
|
|
5443
6152
|
paginated?: Paginated.AsObject,
|
|
5444
6153
|
}
|
|
5445
6154
|
}
|
|
5446
6155
|
|
|
5447
|
-
declare class
|
|
5448
|
-
hasPaginate(): boolean;
|
|
5449
|
-
clearPaginate(): void;
|
|
5450
|
-
getPaginate(): Paginate | undefined;
|
|
5451
|
-
setPaginate(value?: Paginate): void;
|
|
5452
|
-
|
|
5453
|
-
clearCriteriasList(): void;
|
|
5454
|
-
getCriteriasList(): Array<Criteria>;
|
|
5455
|
-
setCriteriasList(value: Array<Criteria>): void;
|
|
5456
|
-
addCriterias(value?: Criteria, index?: number): Criteria;
|
|
5457
|
-
|
|
5458
|
-
getAssistantid(): string;
|
|
5459
|
-
setAssistantid(value: string): void;
|
|
5460
|
-
|
|
5461
|
-
serializeBinary(): Uint8Array;
|
|
5462
|
-
toObject(includeInstance?: boolean): GetAllAssistantProviderModelRequest.AsObject;
|
|
5463
|
-
static toObject(includeInstance: boolean, msg: GetAllAssistantProviderModelRequest): GetAllAssistantProviderModelRequest.AsObject;
|
|
5464
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5465
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5466
|
-
static serializeBinaryToWriter(message: GetAllAssistantProviderModelRequest, writer: jspb.BinaryWriter): void;
|
|
5467
|
-
static deserializeBinary(bytes: Uint8Array): GetAllAssistantProviderModelRequest;
|
|
5468
|
-
static deserializeBinaryFromReader(message: GetAllAssistantProviderModelRequest, reader: jspb.BinaryReader): GetAllAssistantProviderModelRequest;
|
|
5469
|
-
}
|
|
5470
|
-
|
|
5471
|
-
declare namespace GetAllAssistantProviderModelRequest {
|
|
5472
|
-
export type AsObject = {
|
|
5473
|
-
paginate?: Paginate.AsObject,
|
|
5474
|
-
criteriasList: Array<Criteria.AsObject>,
|
|
5475
|
-
assistantid: string,
|
|
5476
|
-
}
|
|
5477
|
-
}
|
|
5478
|
-
|
|
5479
|
-
declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
6156
|
+
declare class GetAllAssistantResponse extends jspb.Message {
|
|
5480
6157
|
getCode(): number;
|
|
5481
6158
|
setCode(value: number): void;
|
|
5482
6159
|
|
|
@@ -5484,9 +6161,9 @@ declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
|
5484
6161
|
setSuccess(value: boolean): void;
|
|
5485
6162
|
|
|
5486
6163
|
clearDataList(): void;
|
|
5487
|
-
getDataList(): Array<
|
|
5488
|
-
setDataList(value: Array<
|
|
5489
|
-
addData(value?:
|
|
6164
|
+
getDataList(): Array<Assistant>;
|
|
6165
|
+
setDataList(value: Array<Assistant>): void;
|
|
6166
|
+
addData(value?: Assistant, index?: number): Assistant;
|
|
5490
6167
|
|
|
5491
6168
|
hasError(): boolean;
|
|
5492
6169
|
clearError(): void;
|
|
@@ -5499,20 +6176,20 @@ declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
|
5499
6176
|
setPaginated(value?: Paginated): void;
|
|
5500
6177
|
|
|
5501
6178
|
serializeBinary(): Uint8Array;
|
|
5502
|
-
toObject(includeInstance?: boolean):
|
|
5503
|
-
static toObject(includeInstance: boolean, msg:
|
|
6179
|
+
toObject(includeInstance?: boolean): GetAllAssistantResponse.AsObject;
|
|
6180
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantResponse): GetAllAssistantResponse.AsObject;
|
|
5504
6181
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5505
6182
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5506
|
-
static serializeBinaryToWriter(message:
|
|
5507
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5508
|
-
static deserializeBinaryFromReader(message:
|
|
6183
|
+
static serializeBinaryToWriter(message: GetAllAssistantResponse, writer: jspb.BinaryWriter): void;
|
|
6184
|
+
static deserializeBinary(bytes: Uint8Array): GetAllAssistantResponse;
|
|
6185
|
+
static deserializeBinaryFromReader(message: GetAllAssistantResponse, reader: jspb.BinaryReader): GetAllAssistantResponse;
|
|
5509
6186
|
}
|
|
5510
6187
|
|
|
5511
|
-
declare namespace
|
|
6188
|
+
declare namespace GetAllAssistantResponse {
|
|
5512
6189
|
export type AsObject = {
|
|
5513
6190
|
code: number,
|
|
5514
6191
|
success: boolean,
|
|
5515
|
-
dataList: Array<
|
|
6192
|
+
dataList: Array<Assistant.AsObject>,
|
|
5516
6193
|
error?: Error.AsObject,
|
|
5517
6194
|
paginated?: Paginated.AsObject,
|
|
5518
6195
|
}
|
|
@@ -5686,30 +6363,6 @@ declare namespace GetAllMessageResponse {
|
|
|
5686
6363
|
}
|
|
5687
6364
|
}
|
|
5688
6365
|
|
|
5689
|
-
declare class UpdateAssistantVersionRequest extends jspb.Message {
|
|
5690
|
-
getAssistantid(): string;
|
|
5691
|
-
setAssistantid(value: string): void;
|
|
5692
|
-
|
|
5693
|
-
getAssistantprovidermodelid(): string;
|
|
5694
|
-
setAssistantprovidermodelid(value: string): void;
|
|
5695
|
-
|
|
5696
|
-
serializeBinary(): Uint8Array;
|
|
5697
|
-
toObject(includeInstance?: boolean): UpdateAssistantVersionRequest.AsObject;
|
|
5698
|
-
static toObject(includeInstance: boolean, msg: UpdateAssistantVersionRequest): UpdateAssistantVersionRequest.AsObject;
|
|
5699
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5700
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5701
|
-
static serializeBinaryToWriter(message: UpdateAssistantVersionRequest, writer: jspb.BinaryWriter): void;
|
|
5702
|
-
static deserializeBinary(bytes: Uint8Array): UpdateAssistantVersionRequest;
|
|
5703
|
-
static deserializeBinaryFromReader(message: UpdateAssistantVersionRequest, reader: jspb.BinaryReader): UpdateAssistantVersionRequest;
|
|
5704
|
-
}
|
|
5705
|
-
|
|
5706
|
-
declare namespace UpdateAssistantVersionRequest {
|
|
5707
|
-
export type AsObject = {
|
|
5708
|
-
assistantid: string,
|
|
5709
|
-
assistantprovidermodelid: string,
|
|
5710
|
-
}
|
|
5711
|
-
}
|
|
5712
|
-
|
|
5713
6366
|
declare class UpdateAssistantDetailRequest extends jspb.Message {
|
|
5714
6367
|
getAssistantid(): string;
|
|
5715
6368
|
setAssistantid(value: string): void;
|
|
@@ -5845,22 +6498,22 @@ type AssistantServiceDeleteAssistant = {
|
|
|
5845
6498
|
readonly responseType: typeof GetAssistantResponse;
|
|
5846
6499
|
};
|
|
5847
6500
|
|
|
5848
|
-
type
|
|
6501
|
+
type AssistantServiceGetAllAssistantProvider = {
|
|
5849
6502
|
readonly methodName: string;
|
|
5850
6503
|
readonly service: typeof AssistantService;
|
|
5851
6504
|
readonly requestStream: false;
|
|
5852
6505
|
readonly responseStream: false;
|
|
5853
|
-
readonly requestType: typeof
|
|
5854
|
-
readonly responseType: typeof
|
|
6506
|
+
readonly requestType: typeof GetAllAssistantProviderRequest;
|
|
6507
|
+
readonly responseType: typeof GetAllAssistantProviderResponse;
|
|
5855
6508
|
};
|
|
5856
6509
|
|
|
5857
|
-
type
|
|
6510
|
+
type AssistantServiceCreateAssistantProvider = {
|
|
5858
6511
|
readonly methodName: string;
|
|
5859
6512
|
readonly service: typeof AssistantService;
|
|
5860
6513
|
readonly requestStream: false;
|
|
5861
6514
|
readonly responseStream: false;
|
|
5862
|
-
readonly requestType: typeof
|
|
5863
|
-
readonly responseType: typeof
|
|
6515
|
+
readonly requestType: typeof CreateAssistantProviderRequest;
|
|
6516
|
+
readonly responseType: typeof GetAssistantProviderResponse;
|
|
5864
6517
|
};
|
|
5865
6518
|
|
|
5866
6519
|
type AssistantServiceCreateAssistantTag = {
|
|
@@ -5917,6 +6570,15 @@ type AssistantServiceGetAllMessage = {
|
|
|
5917
6570
|
readonly responseType: typeof GetAllMessageResponse;
|
|
5918
6571
|
};
|
|
5919
6572
|
|
|
6573
|
+
type AssistantServiceGetAllAssistantTelemetry = {
|
|
6574
|
+
readonly methodName: string;
|
|
6575
|
+
readonly service: typeof AssistantService;
|
|
6576
|
+
readonly requestStream: false;
|
|
6577
|
+
readonly responseStream: false;
|
|
6578
|
+
readonly requestType: typeof GetAllAssistantTelemetryRequest;
|
|
6579
|
+
readonly responseType: typeof GetAllAssistantTelemetryResponse;
|
|
6580
|
+
};
|
|
6581
|
+
|
|
5920
6582
|
type AssistantServiceGetAllAssistantConversation = {
|
|
5921
6583
|
readonly methodName: string;
|
|
5922
6584
|
readonly service: typeof AssistantService;
|
|
@@ -6157,14 +6819,15 @@ declare class AssistantService {
|
|
|
6157
6819
|
static readonly GetAllAssistant: AssistantServiceGetAllAssistant;
|
|
6158
6820
|
static readonly CreateAssistant: AssistantServiceCreateAssistant;
|
|
6159
6821
|
static readonly DeleteAssistant: AssistantServiceDeleteAssistant;
|
|
6160
|
-
static readonly
|
|
6161
|
-
static readonly
|
|
6822
|
+
static readonly GetAllAssistantProvider: AssistantServiceGetAllAssistantProvider;
|
|
6823
|
+
static readonly CreateAssistantProvider: AssistantServiceCreateAssistantProvider;
|
|
6162
6824
|
static readonly CreateAssistantTag: AssistantServiceCreateAssistantTag;
|
|
6163
6825
|
static readonly UpdateAssistantVersion: AssistantServiceUpdateAssistantVersion;
|
|
6164
6826
|
static readonly UpdateAssistantDetail: AssistantServiceUpdateAssistantDetail;
|
|
6165
6827
|
static readonly GetAllAssistantMessage: AssistantServiceGetAllAssistantMessage;
|
|
6166
6828
|
static readonly GetAllConversationMessage: AssistantServiceGetAllConversationMessage;
|
|
6167
6829
|
static readonly GetAllMessage: AssistantServiceGetAllMessage;
|
|
6830
|
+
static readonly GetAllAssistantTelemetry: AssistantServiceGetAllAssistantTelemetry;
|
|
6168
6831
|
static readonly GetAllAssistantConversation: AssistantServiceGetAllAssistantConversation;
|
|
6169
6832
|
static readonly GetAssistantConversation: AssistantServiceGetAssistantConversation;
|
|
6170
6833
|
static readonly GetAssistantWebhookLog: AssistantServiceGetAssistantWebhookLog;
|
|
@@ -6239,23 +6902,23 @@ declare class AssistantServiceClient {
|
|
|
6239
6902
|
requestMessage: DeleteAssistantRequest,
|
|
6240
6903
|
callback: (error: ServiceError$b|null, responseMessage: GetAssistantResponse|null) => void
|
|
6241
6904
|
): UnaryResponse$b;
|
|
6242
|
-
|
|
6243
|
-
requestMessage:
|
|
6905
|
+
getAllAssistantProvider(
|
|
6906
|
+
requestMessage: GetAllAssistantProviderRequest,
|
|
6244
6907
|
metadata: grpc.Metadata,
|
|
6245
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6908
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantProviderResponse|null) => void
|
|
6246
6909
|
): UnaryResponse$b;
|
|
6247
|
-
|
|
6248
|
-
requestMessage:
|
|
6249
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6910
|
+
getAllAssistantProvider(
|
|
6911
|
+
requestMessage: GetAllAssistantProviderRequest,
|
|
6912
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantProviderResponse|null) => void
|
|
6250
6913
|
): UnaryResponse$b;
|
|
6251
|
-
|
|
6252
|
-
requestMessage:
|
|
6914
|
+
createAssistantProvider(
|
|
6915
|
+
requestMessage: CreateAssistantProviderRequest,
|
|
6253
6916
|
metadata: grpc.Metadata,
|
|
6254
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6917
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAssistantProviderResponse|null) => void
|
|
6255
6918
|
): UnaryResponse$b;
|
|
6256
|
-
|
|
6257
|
-
requestMessage:
|
|
6258
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6919
|
+
createAssistantProvider(
|
|
6920
|
+
requestMessage: CreateAssistantProviderRequest,
|
|
6921
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAssistantProviderResponse|null) => void
|
|
6259
6922
|
): UnaryResponse$b;
|
|
6260
6923
|
createAssistantTag(
|
|
6261
6924
|
requestMessage: CreateAssistantTagRequest,
|
|
@@ -6311,6 +6974,15 @@ declare class AssistantServiceClient {
|
|
|
6311
6974
|
requestMessage: GetAllMessageRequest,
|
|
6312
6975
|
callback: (error: ServiceError$b|null, responseMessage: GetAllMessageResponse|null) => void
|
|
6313
6976
|
): UnaryResponse$b;
|
|
6977
|
+
getAllAssistantTelemetry(
|
|
6978
|
+
requestMessage: GetAllAssistantTelemetryRequest,
|
|
6979
|
+
metadata: grpc.Metadata,
|
|
6980
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantTelemetryResponse|null) => void
|
|
6981
|
+
): UnaryResponse$b;
|
|
6982
|
+
getAllAssistantTelemetry(
|
|
6983
|
+
requestMessage: GetAllAssistantTelemetryRequest,
|
|
6984
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantTelemetryResponse|null) => void
|
|
6985
|
+
): UnaryResponse$b;
|
|
6314
6986
|
getAllAssistantConversation(
|
|
6315
6987
|
requestMessage: GetAllAssistantConversationRequest,
|
|
6316
6988
|
metadata: grpc.Metadata,
|
|
@@ -14094,6 +14766,7 @@ interface AgentCallback {
|
|
|
14094
14766
|
onAssistantMessage?: (args: ConversationAssistantMessage | undefined) => void;
|
|
14095
14767
|
onUserMessage?: (args: ConversationUserMessage | undefined) => void;
|
|
14096
14768
|
onMessage?: (arg: ConversationMessage | undefined) => void;
|
|
14769
|
+
onAction?: (arg?: AssistantConverstationApiRequestAction.AsObject | AssistantConverstationKnowledgeRetrievalAction.AsObject | AssistantConverstationEndpointAction.AsObject | AssistantConverstationHoldAction.AsObject | AssistantConversationDisconnectAction.AsObject) => void;
|
|
14097
14770
|
}
|
|
14098
14771
|
|
|
14099
14772
|
declare enum Feedback {
|
|
@@ -14371,7 +15044,13 @@ declare class Agent extends Agent_base {
|
|
|
14371
15044
|
* @param contents - Message contents
|
|
14372
15045
|
* @returns Configured messaging request
|
|
14373
15046
|
*/
|
|
14374
|
-
protected
|
|
15047
|
+
protected createAssistantTextMessage(content: string): AssistantMessagingRequest;
|
|
15048
|
+
/**
|
|
15049
|
+
*
|
|
15050
|
+
* @param content
|
|
15051
|
+
* @returns
|
|
15052
|
+
*/
|
|
15053
|
+
protected createAssistantAudioMessage(content: Uint8Array | string): AssistantMessagingRequest;
|
|
14375
15054
|
/**
|
|
14376
15055
|
* Override this method to handle incoming messages from the assistant
|
|
14377
15056
|
*
|
|
@@ -14536,7 +15215,7 @@ declare class VoiceAgent extends Agent {
|
|
|
14536
15215
|
* @returns
|
|
14537
15216
|
*/
|
|
14538
15217
|
onRecieve: (response: AssistantMessagingResponse) => Promise<void>;
|
|
14539
|
-
onCallback(response: AssistantMessagingResponse)
|
|
15218
|
+
onCallback: (response: AssistantMessagingResponse) => Promise<void>;
|
|
14540
15219
|
/**
|
|
14541
15220
|
*
|
|
14542
15221
|
* @returns
|
|
@@ -14558,4 +15237,4 @@ interface DeviceSelectorComponentProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
14558
15237
|
*/
|
|
14559
15238
|
declare const DeviceSelectorComponent: FC<DeviceSelectorComponentProps>;
|
|
14560
15239
|
|
|
14561
|
-
export { GetAllAssistantWebhookResponse as $, AssistantDebuggerDeployment as A, GetAssistantRequest as B, Content as C, Metadata as D, GetAssistantProviderModelResponse as E, Feedback as F, GetAllDeploymentResponse as G, CreateAssistantProviderModelRequest as H, IndexKnowledgeDocumentResponse as I, CreateAssistantKnowledgeRequest as J, KnowledgeConnectResponse as K, CreateAssistantToolRequest as L, type Message as M, GetAllAssistantMessageResponse as N, GetAllMessageResponse as O, GetAllConversationMessageResponse as P, CreateAssistantDeploymentRequest as Q, type RapidaSource as R, GetAssistantDebuggerDeploymentResponse as S, TextChatCompletePrompt as T, type UserAuthInfo as U, VoiceAgent as V, GetAssistantDeploymentRequest as W, GetAssistantApiDeploymentResponse as X, GetAssistantWebpluginDeploymentResponse as Y, GetAssistantPhoneDeploymentResponse as Z, GetAssistantWhatsappDeploymentResponse as _, AssistantWebpluginDeployment as a, CreatePhoneCallResponse as a$, GetAssistantWebhookResponse as a0, GetAssistantConversationRequest as a1, GetAssistantConversationResponse as a2, GetAllAssistantAnalysisResponse as a3, GetAssistantAnalysisResponse as a4, GetAllAssistantWebhookLogResponse as a5, GetAssistantWebhookLogResponse as a6, GetAllAssistantToolResponse as a7, GetAssistantToolResponse as a8, GetAllAssistantKnowledgeResponse as a9, CreateMessageMetricResponse as aA, CreateConversationMetricRequest as aB, CreateConversationMetricResponse as aC, GetAllAssistantConversationResponse as aD, CreateKnowledgeResponse as aE, GetKnowledgeResponse as aF, GetAllKnowledgeResponse as aG, CreateKnowledgeDocumentResponse as aH, GetAllKnowledgeDocumentResponse as aI, GetAllKnowledgeDocumentSegmentResponse as aJ, BaseResponse as aK, GetKnowledgeLogRequest as aL, GetKnowledgeLogResponse as aM, GetAllKnowledgeLogRequest as aN, GetAllKnowledgeLogResponse as aO, AddUsersToProjectResponse as aP, CreateProjectResponse as aQ, UpdateProjectResponse as aR, GetAllProjectResponse as aS, GetProjectResponse as aT, ArchiveProjectResponse as aU, GetAllProjectCredentialResponse as aV, CreateProjectCredentialResponse as aW, Error as aX, Metric as aY, Message$1 as aZ, CreatePhoneCallRequest as a_, GetAssistantKnowledgeResponse as aa, GetAssistantToolLogRequest as ab, GetAssistantToolLogResponse as ac, GetAllAssistantToolLogRequest as ad, GetAllAssistantToolLogResponse as ae, GetAllAuditLogResponse as af, GetAuditLogResponse as ag, GetAllEndpointResponse as ah, UpdateEndpointVersionResponse as ai, GetAllEndpointProviderModelResponse as aj, GetEndpointResponse as ak, EndpointProviderModelAttribute as al, CreateEndpointProviderModelResponse as am, EndpointAttribute as an, CreateEndpointResponse as ao, EndpointRetryConfiguration as ap, EndpointCacheConfiguration as aq, CreateEndpointRetryConfigurationResponse as ar, CreateEndpointCacheConfigurationResponse as as, GetAllEndpointLogResponse as at, GetEndpointLogResponse as au, GetCredentialResponse as av, GetAllOrganizationCredentialResponse as aw, AssistantMessagingRequest as ax, AssistantMessagingResponse as ay, CreateMessageMetricRequest as az, AssistantApiDeployment as b, GetAllModelProviderRequest as b$, CreateBulkPhoneCallRequest as b0, CreateBulkPhoneCallResponse as b1, ConnectionState as b2, Channel as b3, InputOptions as b4, OutputOptions as b5, AgentConfig as b6, type AgentCallback as b7, MessageRole as b8, MessageStatus as b9, WithAuthContext as bA, getClientInfo as bB, WithClientContext as bC, EndpointService as bD, EndpointServiceClient as bE, AssistantDeploymentService as bF, AssistantDeploymentServiceClient as bG, ConnectService as bH, ConnectServiceClient as bI, VaultService as bJ, VaultServiceClient as bK, Deployment as bL, DeploymentClient as bM, AssistantKnowledge as bN, UpdateAssistantKnowledgeRequest as bO, GetAssistantKnowledgeRequest as bP, DeleteAssistantKnowledgeRequest as bQ, GetAllAssistantKnowledgeRequest as bR, GetAllDeploymentRequest as bS, SearchableDeployment as bT, AuditLog as bU, GetAllAuditLogRequest as bV, GetAuditLogRequest as bW, CreateMetadataRequest as bX, CreateMetadataResponse as bY, KnowledgeService as bZ, KnowledgeServiceClient as b_, HEADER_ENVIRONMENT_KEY as ba, HEADER_SOURCE_KEY as bb, HEADER_REGION_KEY as bc, HEADER_API_KEY as bd, HEADER_AUTH_ID as be, HEADER_PROJECT_ID as bf, HEADER_USER_AGENT as bg, HEADER_LANGUAGE as bh, HEADER_PLATFORM as bi, HEADER_SCREEN_WIDTH as bj, HEADER_SCREEN_HEIGHT as bk, HEADER_WINDOW_WIDTH as bl, HEADER_WINDOW_HEIGHT as bm, HEADER_TIMEZONE as bn, HEADER_COLOR_DEPTH as bo, HEADER_DEVICE_MEMORY as bp, HEADER_HARDWARE_CONCURRENCY as bq, HEADER_CONNECTION_TYPE as br, HEADER_CONNECTION_EFFECTIVE_TYPE as bs, HEADER_COOKIES_ENABLED as bt, HEADER_DO_NOT_TRACK as bu, HEADER_REFERRER as bv, HEADER_REMOTE_URL as bw, HEADER_LATITUDE as bx, HEADER_LONGITUDE as by, WithPlatform as bz, Assistant as c, Ordering as c$, ToolProvider as c0, GetAllToolProviderRequest as c1, VaultCredential as c2, CreateProviderCredentialRequest as c3, CreateToolCredentialRequest as c4, GetProviderCredentialRequest as c5, GetAllOrganizationCredentialRequest as c6, GetCredentialRequest as c7, ProviderService as c8, ProviderServiceClient as c9, CreatePasswordRequest as cA, VerifyTokenRequest as cB, AuthorizeRequest as cC, ScopeAuthorizeRequest as cD, ScopedAuthenticationResponse as cE, GetUserRequest as cF, UpdateUserRequest as cG, SocialAuthenticationRequest as cH, GetAllUserRequest as cI, OrganizationError as cJ, CreateOrganizationRequest as cK, UpdateOrganizationRequest as cL, GetOrganizationRequest as cM, UpdateBillingInformationRequest as cN, Project as cO, CreateProjectRequest as cP, UpdateProjectRequest as cQ, GetProjectRequest as cR, GetAllProjectRequest as cS, AddUsersToProjectRequest as cT, ArchiveProjectRequest as cU, ProjectCredential as cV, CreateProjectCredentialRequest as cW, GetAllProjectCredentialRequest as cX, FieldSelector as cY, Paginate as cZ, Paginated as c_, AssistantDefinition as ca, AssistantConversationConfiguration as cb, AssistantConversationInterruption as cc, AssistantConversationUserMessage as cd, AssistantConversationAssistantMessage as ce, AssistantAnalysis as cf, CreateAssistantAnalysisRequest as cg, UpdateAssistantAnalysisRequest as ch, GetAssistantAnalysisRequest as ci, DeleteAssistantAnalysisRequest as cj, GetAllAssistantAnalysisRequest as ck, EndpointDefinition as cl, UpdateRequest as cm, UpdateResponse as cn, ProbeRequest as co, ProbeResponse as cp, AuthenticateRequest as cq, RegisterUserRequest as cr, Token as cs, OrganizationRole as ct, ProjectRole as cu, FeaturePermission as cv, Authentication as cw, ScopedAuthentication as cx, AuthenticationError as cy, ForgotPasswordRequest as cz, ConnectionConfig as d, DeploymentAudioProvider as d$, User as d0, Argument as d1, Variable as d2, Provider as d3, Tag as d4, Organization as d5, ToolCall as d6, FunctionCall as d7, Knowledge as d8, TextPrompt as d9, DocumentServiceClient as dA, MarketplaceService as dB, MarketplaceServiceClient as dC, IndexKnowledgeDocumentRequest as dD, CreateEndpointRequest as dE, EndpointProviderModel as dF, AggregatedEndpointAnalytics as dG, Endpoint as dH, CreateEndpointProviderModelRequest as dI, GetEndpointRequest as dJ, GetAllEndpointRequest as dK, GetAllEndpointProviderModelRequest as dL, UpdateEndpointVersionRequest as dM, CreateEndpointRetryConfigurationRequest as dN, CreateEndpointCacheConfigurationRequest as dO, CreateEndpointTagRequest as dP, ForkEndpointRequest as dQ, UpdateEndpointDetailRequest as dR, EndpointLog as dS, GetAllEndpointLogRequest as dT, GetEndpointLogRequest as dU, AssistantTool as dV, AssistantToolLog as dW, UpdateAssistantToolRequest as dX, GetAssistantToolRequest as dY, DeleteAssistantToolRequest as dZ, GetAllAssistantToolRequest as d_, AssistantMessageStage as da, AssistantConversationMessage as db, AssistantConversationContext as dc, AssistantConversation as dd, GetAllAssistantConversationRequest as de, GetAllConversationMessageRequest as df, AssistantConversationRecording as dg, AssistantService as dh, AssistantServiceClient as di, TalkService as dj, TalkServiceClient as dk, AssistantWebhook as dl, AssistantWebhookLog as dm, CreateAssistantWebhookRequest as dn, UpdateAssistantWebhookRequest as dp, GetAssistantWebhookRequest as dq, DeleteAssistantWebhookRequest as dr, GetAllAssistantWebhookRequest as ds, GetAllAssistantWebhookLogRequest as dt, GetAssistantWebhookLogRequest as du, KnowledgeConnectRequest as dv, GeneralConnectRequest as dw, ActionConnectRequest as dx, GetConnectorFilesRequest as dy, DocumentService as dz, type ClientAuthInfo as e, AssistantPhoneDeployment as e0, AssistantWhatsappDeployment as e1, AuditLoggingService as e2, AuditLoggingServiceClient as e3, CreateKnowledgeRequest as e4, GetAllKnowledgeRequest as e5, GetKnowledgeRequest as e6, CreateKnowledgeTagRequest as e7, KnowledgeDocument as e8, GetAllKnowledgeDocumentRequest as e9, SDK_SOURCE as eA, PHONE_CALL_SOURCE as eB, WHATSAPP_SOURCE as eC, getRapidaSourceValue as eD, fromStr as eE, CreateKnowledgeDocumentRequest as ea, KnowledgeDocumentSegment as eb, GetAllKnowledgeDocumentSegmentRequest as ec, UpdateKnowledgeDetailRequest as ed, UpdateKnowledgeDocumentSegmentRequest as ee, DeleteKnowledgeDocumentSegmentRequest as ef, KnowledgeLog as eg, AssistantProviderModel as eh, CreateAssistantRequest as ei, CreateAssistantTagRequest as ej, DeleteAssistantRequest as ek, GetAllAssistantRequest as el, GetAllAssistantProviderModelRequest as em, GetAllAssistantMessageRequest as en, GetAllMessageRequest as eo, UpdateAssistantVersionRequest as ep, UpdateAssistantDetailRequest as eq, AuthenticationService as er, OrganizationService as es, ProjectService as et, AuthenticationServiceClient as eu, OrganizationServiceClient as ev, ProjectServiceClient as ew, DeviceSelectorComponent as ex, WEB_PLUGIN_SOURCE as ey, DEBUGGER_SOURCE as ez, InvokeRequest as f, InvokeResponse as g, AuthenticateResponse as h, VerifyTokenResponse as i, ForgotPasswordResponse as j, CreatePasswordResponse as k, GetUserResponse as l, UpdateUserResponse as m, GetAllUserResponse as n, GetAllModelProviderResponse as o, GetAllToolProviderResponse as p, GeneralConnectResponse as q, ActionConnectResponse as r, Criteria as s, GetConnectorFilesResponse as t, CreateOrganizationResponse as u, UpdateOrganizationResponse as v, GetOrganizationResponse as w, GetAllAssistantResponse as x, GetAssistantResponse as y, GetAllAssistantProviderModelResponse as z };
|
|
15240
|
+
export { GetAllAssistantWebhookLogResponse as $, AssistantDebuggerDeployment as A, CreateAssistantRequest as B, Content as C, GetAllAssistantMessageResponse as D, GetAllMessageResponse as E, Feedback as F, GetAllDeploymentResponse as G, GetAllConversationMessageResponse as H, IndexKnowledgeDocumentResponse as I, CreateAssistantDeploymentRequest as J, KnowledgeConnectResponse as K, GetAssistantDebuggerDeploymentResponse as L, type Message as M, GetAssistantDeploymentRequest as N, GetAssistantApiDeploymentResponse as O, GetAssistantWebpluginDeploymentResponse as P, GetAssistantPhoneDeploymentResponse as Q, type RapidaSource as R, GetAssistantWhatsappDeploymentResponse as S, GetAllAssistantWebhookResponse as T, type UserAuthInfo as U, VoiceAgent as V, GetAssistantWebhookResponse as W, GetAssistantConversationRequest as X, GetAssistantConversationResponse as Y, GetAllAssistantAnalysisResponse as Z, GetAssistantAnalysisResponse as _, AssistantWebpluginDeployment as a, CreateBulkPhoneCallResponse as a$, GetAssistantWebhookLogResponse as a0, GetAllAssistantToolResponse as a1, Metadata as a2, GetAssistantToolResponse as a3, GetAllAssistantKnowledgeResponse as a4, GetAssistantKnowledgeResponse as a5, GetAssistantToolLogRequest as a6, GetAssistantToolLogResponse as a7, GetAllAssistantToolLogRequest as a8, GetAllAssistantToolLogResponse as a9, CreateConversationMetricResponse as aA, GetAllAssistantConversationResponse as aB, CreateKnowledgeResponse as aC, GetKnowledgeResponse as aD, GetAllKnowledgeResponse as aE, CreateKnowledgeDocumentResponse as aF, GetAllKnowledgeDocumentResponse as aG, GetAllKnowledgeDocumentSegmentResponse as aH, BaseResponse as aI, GetKnowledgeLogRequest as aJ, GetKnowledgeLogResponse as aK, GetAllKnowledgeLogRequest as aL, GetAllKnowledgeLogResponse as aM, AddUsersToProjectResponse as aN, CreateProjectResponse as aO, UpdateProjectResponse as aP, GetAllProjectResponse as aQ, GetProjectResponse as aR, ArchiveProjectResponse as aS, GetAllProjectCredentialResponse as aT, CreateProjectCredentialResponse as aU, Error as aV, Metric as aW, Message$1 as aX, CreatePhoneCallRequest as aY, CreatePhoneCallResponse as aZ, CreateBulkPhoneCallRequest as a_, CreateAssistantProviderRequest as aa, GetAssistantProviderResponse as ab, GetAllAssistantProviderResponse as ac, GetAllAuditLogResponse as ad, GetAuditLogResponse as ae, GetAllEndpointResponse as af, UpdateEndpointVersionResponse as ag, GetAllEndpointProviderModelResponse as ah, GetEndpointResponse as ai, EndpointProviderModelAttribute as aj, CreateEndpointProviderModelResponse as ak, EndpointAttribute as al, CreateEndpointResponse as am, EndpointRetryConfiguration as an, EndpointCacheConfiguration as ao, CreateEndpointRetryConfigurationResponse as ap, CreateEndpointCacheConfigurationResponse as aq, GetAllEndpointLogResponse as ar, GetEndpointLogResponse as as, GetCredentialResponse as at, GetAllOrganizationCredentialResponse as au, AssistantMessagingRequest as av, AssistantMessagingResponse as aw, CreateMessageMetricRequest as ax, CreateMessageMetricResponse as ay, CreateConversationMetricRequest as az, AssistantApiDeployment as b, KnowledgeServiceClient as b$, GetAllAssistantTelemetryRequest as b0, GetAllAssistantTelemetryResponse as b1, ConnectionState as b2, Channel as b3, InputOptions as b4, OutputOptions as b5, AgentConfig as b6, type AgentCallback as b7, MessageRole as b8, MessageStatus as b9, WithAuthContext as bA, getClientInfo as bB, WithClientContext as bC, EndpointService as bD, EndpointServiceClient as bE, AssistantDeploymentService as bF, AssistantDeploymentServiceClient as bG, ConnectService as bH, ConnectServiceClient as bI, VaultService as bJ, VaultServiceClient as bK, Deployment as bL, DeploymentClient as bM, AssistantKnowledge as bN, CreateAssistantKnowledgeRequest as bO, UpdateAssistantKnowledgeRequest as bP, GetAssistantKnowledgeRequest as bQ, DeleteAssistantKnowledgeRequest as bR, GetAllAssistantKnowledgeRequest as bS, GetAllDeploymentRequest as bT, SearchableDeployment as bU, AuditLog as bV, GetAllAuditLogRequest as bW, GetAuditLogRequest as bX, CreateMetadataRequest as bY, CreateMetadataResponse as bZ, KnowledgeService as b_, HEADER_ENVIRONMENT_KEY as ba, HEADER_SOURCE_KEY as bb, HEADER_REGION_KEY as bc, HEADER_API_KEY as bd, HEADER_AUTH_ID as be, HEADER_PROJECT_ID as bf, HEADER_USER_AGENT as bg, HEADER_LANGUAGE as bh, HEADER_PLATFORM as bi, HEADER_SCREEN_WIDTH as bj, HEADER_SCREEN_HEIGHT as bk, HEADER_WINDOW_WIDTH as bl, HEADER_WINDOW_HEIGHT as bm, HEADER_TIMEZONE as bn, HEADER_COLOR_DEPTH as bo, HEADER_DEVICE_MEMORY as bp, HEADER_HARDWARE_CONCURRENCY as bq, HEADER_CONNECTION_TYPE as br, HEADER_CONNECTION_EFFECTIVE_TYPE as bs, HEADER_COOKIES_ENABLED as bt, HEADER_DO_NOT_TRACK as bu, HEADER_REFERRER as bv, HEADER_REMOTE_URL as bw, HEADER_LATITUDE as bx, HEADER_LONGITUDE as by, WithPlatform as bz, Assistant as c, Ordering as c$, GetAllModelProviderRequest as c0, ToolProvider as c1, GetAllToolProviderRequest as c2, VaultCredential as c3, CreateProviderCredentialRequest as c4, CreateToolCredentialRequest as c5, GetProviderCredentialRequest as c6, GetAllOrganizationCredentialRequest as c7, GetCredentialRequest as c8, ProviderService as c9, CreatePasswordRequest as cA, VerifyTokenRequest as cB, AuthorizeRequest as cC, ScopeAuthorizeRequest as cD, ScopedAuthenticationResponse as cE, GetUserRequest as cF, UpdateUserRequest as cG, SocialAuthenticationRequest as cH, GetAllUserRequest as cI, OrganizationError as cJ, CreateOrganizationRequest as cK, UpdateOrganizationRequest as cL, GetOrganizationRequest as cM, UpdateBillingInformationRequest as cN, Project as cO, CreateProjectRequest as cP, UpdateProjectRequest as cQ, GetProjectRequest as cR, GetAllProjectRequest as cS, AddUsersToProjectRequest as cT, ArchiveProjectRequest as cU, ProjectCredential as cV, CreateProjectCredentialRequest as cW, GetAllProjectCredentialRequest as cX, FieldSelector as cY, Paginate as cZ, Paginated as c_, ProviderServiceClient as ca, AssistantConversationConfiguration as cb, AssistantConversationInterruption as cc, AssistantConversationUserMessage as cd, AssistantConversationAssistantMessage as ce, AssistantAnalysis as cf, CreateAssistantAnalysisRequest as cg, UpdateAssistantAnalysisRequest as ch, GetAssistantAnalysisRequest as ci, DeleteAssistantAnalysisRequest as cj, GetAllAssistantAnalysisRequest as ck, EndpointDefinition as cl, UpdateRequest as cm, UpdateResponse as cn, ProbeRequest as co, ProbeResponse as cp, AuthenticateRequest as cq, RegisterUserRequest as cr, Token as cs, OrganizationRole as ct, ProjectRole as cu, FeaturePermission as cv, Authentication as cw, ScopedAuthentication as cx, AuthenticationError as cy, ForgotPasswordRequest as cz, ConnectionConfig as d, GetAssistantToolRequest as d$, User as d0, Argument as d1, Variable as d2, Provider as d3, Tag as d4, Organization as d5, ToolCall as d6, FunctionCall as d7, Knowledge as d8, TextPrompt as d9, GetConnectorFilesRequest as dA, DocumentService as dB, DocumentServiceClient as dC, MarketplaceService as dD, MarketplaceServiceClient as dE, IndexKnowledgeDocumentRequest as dF, CreateEndpointRequest as dG, EndpointProviderModel as dH, AggregatedEndpointAnalytics as dI, Endpoint as dJ, CreateEndpointProviderModelRequest as dK, GetEndpointRequest as dL, GetAllEndpointRequest as dM, GetAllEndpointProviderModelRequest as dN, UpdateEndpointVersionRequest as dO, CreateEndpointRetryConfigurationRequest as dP, CreateEndpointCacheConfigurationRequest as dQ, CreateEndpointTagRequest as dR, ForkEndpointRequest as dS, UpdateEndpointDetailRequest as dT, EndpointLog as dU, GetAllEndpointLogRequest as dV, GetEndpointLogRequest as dW, AssistantTool as dX, AssistantToolLog as dY, CreateAssistantToolRequest as dZ, UpdateAssistantToolRequest as d_, TextChatCompletePrompt as da, AssistantConversationMessage as db, AssistantConversationContext as dc, AssistantConversation as dd, GetAllAssistantConversationRequest as de, GetAllConversationMessageRequest as df, AssistantConversationRecording as dg, AssistantDefinition as dh, Telemetry as di, AssistantService as dj, AssistantServiceClient as dk, TalkService as dl, TalkServiceClient as dm, AssistantWebhook as dn, AssistantWebhookLog as dp, CreateAssistantWebhookRequest as dq, UpdateAssistantWebhookRequest as dr, GetAssistantWebhookRequest as ds, DeleteAssistantWebhookRequest as dt, GetAllAssistantWebhookRequest as du, GetAllAssistantWebhookLogRequest as dv, GetAssistantWebhookLogRequest as dw, KnowledgeConnectRequest as dx, GeneralConnectRequest as dy, ActionConnectRequest as dz, type ClientAuthInfo as e, DeleteAssistantToolRequest as e0, GetAllAssistantToolRequest as e1, DeploymentAudioProvider as e2, AssistantPhoneDeployment as e3, AssistantWhatsappDeployment as e4, AuditLoggingService as e5, AuditLoggingServiceClient as e6, CreateKnowledgeRequest as e7, GetAllKnowledgeRequest as e8, GetKnowledgeRequest as e9, GetAllAssistantProviderRequest as eA, UpdateAssistantVersionRequest as eB, WEB_PLUGIN_SOURCE as eC, DEBUGGER_SOURCE as eD, SDK_SOURCE as eE, PHONE_CALL_SOURCE as eF, WHATSAPP_SOURCE as eG, getRapidaSourceValue as eH, fromStr as eI, CreateKnowledgeTagRequest as ea, KnowledgeDocument as eb, GetAllKnowledgeDocumentRequest as ec, CreateKnowledgeDocumentRequest as ed, KnowledgeDocumentSegment as ee, GetAllKnowledgeDocumentSegmentRequest as ef, UpdateKnowledgeDetailRequest as eg, UpdateKnowledgeDocumentSegmentRequest as eh, DeleteKnowledgeDocumentSegmentRequest as ei, KnowledgeLog as ej, CreateAssistantTagRequest as ek, DeleteAssistantRequest as el, GetAllAssistantRequest as em, GetAllAssistantMessageRequest as en, GetAllMessageRequest as eo, UpdateAssistantDetailRequest as ep, AuthenticationService as eq, OrganizationService as er, ProjectService as es, AuthenticationServiceClient as et, OrganizationServiceClient as eu, ProjectServiceClient as ev, DeviceSelectorComponent as ew, AssistantProviderModel as ex, AssistantProviderAgentkit as ey, AssistantProviderWebsocket as ez, InvokeRequest as f, InvokeResponse as g, AuthenticateResponse as h, VerifyTokenResponse as i, ForgotPasswordResponse as j, CreatePasswordResponse as k, GetUserResponse as l, UpdateUserResponse as m, GetAllUserResponse as n, GetAllModelProviderResponse as o, GetAllToolProviderResponse as p, GeneralConnectResponse as q, ActionConnectResponse as r, Criteria as s, GetConnectorFilesResponse as t, CreateOrganizationResponse as u, UpdateOrganizationResponse as v, GetOrganizationResponse as w, GetAllAssistantResponse as x, GetAssistantResponse as y, GetAssistantRequest as z };
|