@rapidaai/react 1.1.38 → 1.1.40
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-U2OYP3DD.mjs → chunk-QQVXG47Q.mjs} +4810 -2367
- package/dist/chunk-QQVXG47Q.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 +4760 -2314
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-DIhyLN0t.d.mts → device-selector-DH7vizd4.d.mts} +999 -394
- package/dist/{device-selector-DIhyLN0t.d.ts → device-selector-DH7vizd4.d.ts} +999 -394
- package/dist/index.d.mts +25 -22
- package/dist/index.d.ts +25 -22
- package/dist/index.js +4682 -2171
- 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-U2OYP3DD.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;
|
|
@@ -1587,6 +1719,46 @@ declare class AssistantMessagingResponse extends jspb.Message {
|
|
|
1587
1719
|
getMessage(): AssistantConversationMessage | undefined;
|
|
1588
1720
|
setMessage(value?: AssistantConversationMessage): void;
|
|
1589
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
|
+
|
|
1590
1762
|
getDataCase(): AssistantMessagingResponse.DataCase;
|
|
1591
1763
|
serializeBinary(): Uint8Array;
|
|
1592
1764
|
toObject(includeInstance?: boolean): AssistantMessagingResponse.AsObject;
|
|
@@ -1608,6 +1780,14 @@ declare namespace AssistantMessagingResponse {
|
|
|
1608
1780
|
user?: AssistantConversationUserMessage.AsObject,
|
|
1609
1781
|
assistant?: AssistantConversationAssistantMessage.AsObject,
|
|
1610
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,
|
|
1611
1791
|
}
|
|
1612
1792
|
|
|
1613
1793
|
export enum DataCase {
|
|
@@ -1617,6 +1797,14 @@ declare namespace AssistantMessagingResponse {
|
|
|
1617
1797
|
USER = 11,
|
|
1618
1798
|
ASSISTANT = 12,
|
|
1619
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,
|
|
1620
1808
|
}
|
|
1621
1809
|
}
|
|
1622
1810
|
|
|
@@ -4948,165 +5136,323 @@ declare namespace GetAllAssistantKnowledgeResponse {
|
|
|
4948
5136
|
}
|
|
4949
5137
|
|
|
4950
5138
|
// package: assistant_api
|
|
4951
|
-
// file: assistant-
|
|
5139
|
+
// file: assistant-provider.proto
|
|
4952
5140
|
|
|
4953
5141
|
|
|
4954
5142
|
|
|
4955
|
-
declare class
|
|
4956
|
-
|
|
4957
|
-
|
|
5143
|
+
declare class UpdateAssistantVersionRequest extends jspb.Message {
|
|
5144
|
+
getAssistantid(): string;
|
|
5145
|
+
setAssistantid(value: string): void;
|
|
4958
5146
|
|
|
4959
|
-
|
|
4960
|
-
|
|
5147
|
+
getAssistantproviderid(): string;
|
|
5148
|
+
setAssistantproviderid(value: string): void;
|
|
4961
5149
|
|
|
4962
|
-
|
|
4963
|
-
|
|
5150
|
+
getAssistantprovider(): string;
|
|
5151
|
+
setAssistantprovider(value: string): void;
|
|
4964
5152
|
|
|
4965
|
-
|
|
4966
|
-
|
|
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
|
+
}
|
|
4967
5162
|
|
|
4968
|
-
|
|
4969
|
-
|
|
5163
|
+
declare namespace UpdateAssistantVersionRequest {
|
|
5164
|
+
export type AsObject = {
|
|
5165
|
+
assistantid: string,
|
|
5166
|
+
assistantproviderid: string,
|
|
5167
|
+
assistantprovider: string,
|
|
5168
|
+
}
|
|
5169
|
+
}
|
|
4970
5170
|
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
addAssistanttools(value?: AssistantTool, index?: number): AssistantTool;
|
|
5171
|
+
declare class CreateAssistantProviderRequest extends jspb.Message {
|
|
5172
|
+
getAssistantid(): string;
|
|
5173
|
+
setAssistantid(value: string): void;
|
|
4975
5174
|
|
|
4976
|
-
|
|
4977
|
-
|
|
5175
|
+
getDescription(): string;
|
|
5176
|
+
setDescription(value: string): void;
|
|
4978
5177
|
|
|
4979
|
-
|
|
4980
|
-
|
|
5178
|
+
hasModel(): boolean;
|
|
5179
|
+
clearModel(): void;
|
|
5180
|
+
getModel(): CreateAssistantProviderRequest.CreateAssistantProviderModel | undefined;
|
|
5181
|
+
setModel(value?: CreateAssistantProviderRequest.CreateAssistantProviderModel): void;
|
|
4981
5182
|
|
|
4982
|
-
|
|
4983
|
-
|
|
5183
|
+
hasAgentkit(): boolean;
|
|
5184
|
+
clearAgentkit(): void;
|
|
5185
|
+
getAgentkit(): CreateAssistantProviderRequest.CreateAssistantProviderAgentkit | undefined;
|
|
5186
|
+
setAgentkit(value?: CreateAssistantProviderRequest.CreateAssistantProviderAgentkit): void;
|
|
4984
5187
|
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
5188
|
+
hasWebsocket(): boolean;
|
|
5189
|
+
clearWebsocket(): void;
|
|
5190
|
+
getWebsocket(): CreateAssistantProviderRequest.CreateAssistantProviderWebsocket | undefined;
|
|
5191
|
+
setWebsocket(value?: CreateAssistantProviderRequest.CreateAssistantProviderWebsocket): void;
|
|
4989
5192
|
|
|
4990
|
-
|
|
4991
|
-
|
|
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
|
+
}
|
|
4992
5203
|
|
|
4993
|
-
|
|
4994
|
-
|
|
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
|
+
}
|
|
4995
5212
|
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5213
|
+
export class CreateAssistantProviderModel extends jspb.Message {
|
|
5214
|
+
hasTemplate(): boolean;
|
|
5215
|
+
clearTemplate(): void;
|
|
5216
|
+
getTemplate(): TextChatCompletePrompt | undefined;
|
|
5217
|
+
setTemplate(value?: TextChatCompletePrompt): void;
|
|
5000
5218
|
|
|
5001
|
-
|
|
5002
|
-
|
|
5219
|
+
getModelproviderid(): string;
|
|
5220
|
+
setModelproviderid(value: string): void;
|
|
5003
5221
|
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
getOrganization(): Organization | undefined;
|
|
5007
|
-
setOrganization(value?: Organization): void;
|
|
5222
|
+
getModelprovidername(): string;
|
|
5223
|
+
setModelprovidername(value: string): void;
|
|
5008
5224
|
|
|
5009
|
-
|
|
5010
|
-
|
|
5225
|
+
clearAssistantmodeloptionsList(): void;
|
|
5226
|
+
getAssistantmodeloptionsList(): Array<Metadata>;
|
|
5227
|
+
setAssistantmodeloptionsList(value: Array<Metadata>): void;
|
|
5228
|
+
addAssistantmodeloptions(value?: Metadata, index?: number): Metadata;
|
|
5011
5229
|
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
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
|
+
}
|
|
5016
5239
|
|
|
5017
|
-
|
|
5018
|
-
|
|
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
|
+
}
|
|
5019
5248
|
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
setUpdateduser(value?: User): void;
|
|
5249
|
+
export class CreateAssistantProviderAgentkit extends jspb.Message {
|
|
5250
|
+
getAgentkiturl(): string;
|
|
5251
|
+
setAgentkiturl(value: string): void;
|
|
5024
5252
|
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
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;
|
|
5315
|
+
setDescription(value: string): void;
|
|
5316
|
+
|
|
5317
|
+
getAssistantid(): number;
|
|
5318
|
+
setAssistantid(value: number): void;
|
|
5319
|
+
|
|
5320
|
+
getStatus(): string;
|
|
5321
|
+
setStatus(value: string): void;
|
|
5322
|
+
|
|
5323
|
+
getUrl(): string;
|
|
5324
|
+
setUrl(value: string): void;
|
|
5325
|
+
|
|
5326
|
+
getCertificate(): string;
|
|
5327
|
+
setCertificate(value: string): void;
|
|
5328
|
+
|
|
5329
|
+
getMetadataMap(): jspb.Map<string, string>;
|
|
5330
|
+
clearMetadataMap(): void;
|
|
5331
|
+
getCreatedby(): string;
|
|
5332
|
+
setCreatedby(value: string): void;
|
|
5333
|
+
|
|
5334
|
+
hasCreateduser(): boolean;
|
|
5335
|
+
clearCreateduser(): void;
|
|
5336
|
+
getCreateduser(): User | undefined;
|
|
5337
|
+
setCreateduser(value?: User): void;
|
|
5338
|
+
|
|
5339
|
+
getUpdatedby(): string;
|
|
5340
|
+
setUpdatedby(value: string): void;
|
|
5341
|
+
|
|
5342
|
+
hasUpdateduser(): boolean;
|
|
5343
|
+
clearUpdateduser(): void;
|
|
5344
|
+
getUpdateduser(): User | undefined;
|
|
5345
|
+
setUpdateduser(value?: User): void;
|
|
5346
|
+
|
|
5347
|
+
hasCreateddate(): boolean;
|
|
5348
|
+
clearCreateddate(): void;
|
|
5349
|
+
getCreateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5350
|
+
setCreateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5029
5351
|
|
|
5030
5352
|
hasUpdateddate(): boolean;
|
|
5031
5353
|
clearUpdateddate(): void;
|
|
5032
5354
|
getUpdateddate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5033
5355
|
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5034
5356
|
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
|
|
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
|
+
}
|
|
5039
5366
|
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
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
|
+
}
|
|
5044
5384
|
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
setWhatsappdeployment(value?: AssistantWhatsappDeployment): void;
|
|
5385
|
+
declare class AssistantProviderWebsocket extends jspb.Message {
|
|
5386
|
+
getId(): string;
|
|
5387
|
+
setId(value: string): void;
|
|
5049
5388
|
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
getWebplugindeployment(): AssistantWebpluginDeployment | undefined;
|
|
5053
|
-
setWebplugindeployment(value?: AssistantWebpluginDeployment): void;
|
|
5389
|
+
getDescription(): string;
|
|
5390
|
+
setDescription(value: string): void;
|
|
5054
5391
|
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
getApideployment(): AssistantApiDeployment | undefined;
|
|
5058
|
-
setApideployment(value?: AssistantApiDeployment): void;
|
|
5392
|
+
getAssistantid(): number;
|
|
5393
|
+
setAssistantid(value: number): void;
|
|
5059
5394
|
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
setAssistantconversationsList(value: Array<AssistantConversation>): void;
|
|
5063
|
-
addAssistantconversations(value?: AssistantConversation, index?: number): AssistantConversation;
|
|
5395
|
+
getUrl(): string;
|
|
5396
|
+
setUrl(value: string): void;
|
|
5064
5397
|
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
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;
|
|
5069
5430
|
|
|
5070
5431
|
serializeBinary(): Uint8Array;
|
|
5071
|
-
toObject(includeInstance?: boolean):
|
|
5072
|
-
static toObject(includeInstance: boolean, msg:
|
|
5432
|
+
toObject(includeInstance?: boolean): AssistantProviderWebsocket.AsObject;
|
|
5433
|
+
static toObject(includeInstance: boolean, msg: AssistantProviderWebsocket): AssistantProviderWebsocket.AsObject;
|
|
5073
5434
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5074
5435
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5075
|
-
static serializeBinaryToWriter(message:
|
|
5076
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5077
|
-
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;
|
|
5078
5439
|
}
|
|
5079
5440
|
|
|
5080
|
-
declare namespace
|
|
5441
|
+
declare namespace AssistantProviderWebsocket {
|
|
5081
5442
|
export type AsObject = {
|
|
5082
5443
|
id: string,
|
|
5083
|
-
status: string,
|
|
5084
|
-
visibility: string,
|
|
5085
|
-
source: string,
|
|
5086
|
-
sourceidentifier: string,
|
|
5087
|
-
assistanttoolsList: Array<AssistantTool.AsObject>,
|
|
5088
|
-
projectid: string,
|
|
5089
|
-
organizationid: string,
|
|
5090
|
-
assistantprovidermodelid: string,
|
|
5091
|
-
assistantprovidermodel?: AssistantProviderModel.AsObject,
|
|
5092
|
-
name: string,
|
|
5093
5444
|
description: string,
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5445
|
+
assistantid: number,
|
|
5446
|
+
url: string,
|
|
5447
|
+
headersMap: Array<[string, string]>,
|
|
5448
|
+
parametersMap: Array<[string, string]>,
|
|
5449
|
+
status: string,
|
|
5097
5450
|
createdby: string,
|
|
5098
5451
|
createduser?: User.AsObject,
|
|
5099
5452
|
updatedby: string,
|
|
5100
5453
|
updateduser?: User.AsObject,
|
|
5101
5454
|
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5102
5455
|
updateddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5103
|
-
debuggerdeployment?: AssistantDebuggerDeployment.AsObject,
|
|
5104
|
-
phonedeployment?: AssistantPhoneDeployment.AsObject,
|
|
5105
|
-
whatsappdeployment?: AssistantWhatsappDeployment.AsObject,
|
|
5106
|
-
webplugindeployment?: AssistantWebpluginDeployment.AsObject,
|
|
5107
|
-
apideployment?: AssistantApiDeployment.AsObject,
|
|
5108
|
-
assistantconversationsList: Array<AssistantConversation.AsObject>,
|
|
5109
|
-
assistantwebhooksList: Array<AssistantWebhook.AsObject>,
|
|
5110
5456
|
}
|
|
5111
5457
|
}
|
|
5112
5458
|
|
|
@@ -5122,6 +5468,9 @@ declare class AssistantProviderModel extends jspb.Message {
|
|
|
5122
5468
|
getDescription(): string;
|
|
5123
5469
|
setDescription(value: string): void;
|
|
5124
5470
|
|
|
5471
|
+
getAssistantid(): number;
|
|
5472
|
+
setAssistantid(value: number): void;
|
|
5473
|
+
|
|
5125
5474
|
getModelproviderid(): string;
|
|
5126
5475
|
setModelproviderid(value: string): void;
|
|
5127
5476
|
|
|
@@ -5163,38 +5512,380 @@ declare class AssistantProviderModel extends jspb.Message {
|
|
|
5163
5512
|
setUpdateddate(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
5164
5513
|
|
|
5165
5514
|
serializeBinary(): Uint8Array;
|
|
5166
|
-
toObject(includeInstance?: boolean): AssistantProviderModel.AsObject;
|
|
5167
|
-
static toObject(includeInstance: boolean, msg: AssistantProviderModel): AssistantProviderModel.AsObject;
|
|
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;
|
|
5819
|
+
|
|
5820
|
+
hasApideployment(): boolean;
|
|
5821
|
+
clearApideployment(): void;
|
|
5822
|
+
getApideployment(): AssistantApiDeployment | undefined;
|
|
5823
|
+
setApideployment(value?: AssistantApiDeployment): void;
|
|
5824
|
+
|
|
5825
|
+
clearAssistantconversationsList(): void;
|
|
5826
|
+
getAssistantconversationsList(): Array<AssistantConversation>;
|
|
5827
|
+
setAssistantconversationsList(value: Array<AssistantConversation>): void;
|
|
5828
|
+
addAssistantconversations(value?: AssistantConversation, index?: number): AssistantConversation;
|
|
5829
|
+
|
|
5830
|
+
clearAssistantwebhooksList(): void;
|
|
5831
|
+
getAssistantwebhooksList(): Array<AssistantWebhook>;
|
|
5832
|
+
setAssistantwebhooksList(value: Array<AssistantWebhook>): void;
|
|
5833
|
+
addAssistantwebhooks(value?: AssistantWebhook, index?: number): AssistantWebhook;
|
|
5834
|
+
|
|
5835
|
+
clearAssistanttoolsList(): void;
|
|
5836
|
+
getAssistanttoolsList(): Array<AssistantTool>;
|
|
5837
|
+
setAssistanttoolsList(value: Array<AssistantTool>): void;
|
|
5838
|
+
addAssistanttools(value?: AssistantTool, index?: number): AssistantTool;
|
|
5839
|
+
|
|
5840
|
+
serializeBinary(): Uint8Array;
|
|
5841
|
+
toObject(includeInstance?: boolean): Assistant.AsObject;
|
|
5842
|
+
static toObject(includeInstance: boolean, msg: Assistant): Assistant.AsObject;
|
|
5168
5843
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5169
5844
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5170
|
-
static serializeBinaryToWriter(message:
|
|
5171
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5172
|
-
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;
|
|
5173
5848
|
}
|
|
5174
5849
|
|
|
5175
|
-
declare namespace
|
|
5850
|
+
declare namespace Assistant {
|
|
5176
5851
|
export type AsObject = {
|
|
5177
5852
|
id: string,
|
|
5178
|
-
template?: TextChatCompletePrompt.AsObject,
|
|
5179
|
-
description: string,
|
|
5180
|
-
modelproviderid: string,
|
|
5181
|
-
modelprovidername: string,
|
|
5182
|
-
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5183
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,
|
|
5184
5867
|
createdby: string,
|
|
5185
5868
|
createduser?: User.AsObject,
|
|
5186
5869
|
updatedby: string,
|
|
5187
5870
|
updateduser?: User.AsObject,
|
|
5188
5871
|
createddate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5189
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>,
|
|
5190
5881
|
}
|
|
5191
5882
|
}
|
|
5192
5883
|
|
|
5193
5884
|
declare class CreateAssistantRequest extends jspb.Message {
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5885
|
+
hasAssistantprovider(): boolean;
|
|
5886
|
+
clearAssistantprovider(): void;
|
|
5887
|
+
getAssistantprovider(): CreateAssistantProviderRequest | undefined;
|
|
5888
|
+
setAssistantprovider(value?: CreateAssistantProviderRequest): void;
|
|
5198
5889
|
|
|
5199
5890
|
clearAssistantknowledgesList(): void;
|
|
5200
5891
|
getAssistantknowledgesList(): Array<CreateAssistantKnowledgeRequest>;
|
|
@@ -5241,7 +5932,7 @@ declare class CreateAssistantRequest extends jspb.Message {
|
|
|
5241
5932
|
|
|
5242
5933
|
declare namespace CreateAssistantRequest {
|
|
5243
5934
|
export type AsObject = {
|
|
5244
|
-
|
|
5935
|
+
assistantprovider?: CreateAssistantProviderRequest.AsObject,
|
|
5245
5936
|
assistantknowledgesList: Array<CreateAssistantKnowledgeRequest.AsObject>,
|
|
5246
5937
|
assistanttoolsList: Array<CreateAssistantToolRequest.AsObject>,
|
|
5247
5938
|
description: string,
|
|
@@ -5254,86 +5945,6 @@ declare namespace CreateAssistantRequest {
|
|
|
5254
5945
|
}
|
|
5255
5946
|
}
|
|
5256
5947
|
|
|
5257
|
-
declare class CreateAssistantProviderModelRequest extends jspb.Message {
|
|
5258
|
-
getAssistantid(): string;
|
|
5259
|
-
setAssistantid(value: string): void;
|
|
5260
|
-
|
|
5261
|
-
getDescription(): string;
|
|
5262
|
-
setDescription(value: string): void;
|
|
5263
|
-
|
|
5264
|
-
hasTemplate(): boolean;
|
|
5265
|
-
clearTemplate(): void;
|
|
5266
|
-
getTemplate(): TextChatCompletePrompt | undefined;
|
|
5267
|
-
setTemplate(value?: TextChatCompletePrompt): void;
|
|
5268
|
-
|
|
5269
|
-
getModelproviderid(): string;
|
|
5270
|
-
setModelproviderid(value: string): void;
|
|
5271
|
-
|
|
5272
|
-
getModelprovidername(): string;
|
|
5273
|
-
setModelprovidername(value: string): void;
|
|
5274
|
-
|
|
5275
|
-
clearAssistantmodeloptionsList(): void;
|
|
5276
|
-
getAssistantmodeloptionsList(): Array<Metadata>;
|
|
5277
|
-
setAssistantmodeloptionsList(value: Array<Metadata>): void;
|
|
5278
|
-
addAssistantmodeloptions(value?: Metadata, index?: number): Metadata;
|
|
5279
|
-
|
|
5280
|
-
serializeBinary(): Uint8Array;
|
|
5281
|
-
toObject(includeInstance?: boolean): CreateAssistantProviderModelRequest.AsObject;
|
|
5282
|
-
static toObject(includeInstance: boolean, msg: CreateAssistantProviderModelRequest): CreateAssistantProviderModelRequest.AsObject;
|
|
5283
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5284
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5285
|
-
static serializeBinaryToWriter(message: CreateAssistantProviderModelRequest, writer: jspb.BinaryWriter): void;
|
|
5286
|
-
static deserializeBinary(bytes: Uint8Array): CreateAssistantProviderModelRequest;
|
|
5287
|
-
static deserializeBinaryFromReader(message: CreateAssistantProviderModelRequest, reader: jspb.BinaryReader): CreateAssistantProviderModelRequest;
|
|
5288
|
-
}
|
|
5289
|
-
|
|
5290
|
-
declare namespace CreateAssistantProviderModelRequest {
|
|
5291
|
-
export type AsObject = {
|
|
5292
|
-
assistantid: string,
|
|
5293
|
-
description: string,
|
|
5294
|
-
template?: TextChatCompletePrompt.AsObject,
|
|
5295
|
-
modelproviderid: string,
|
|
5296
|
-
modelprovidername: string,
|
|
5297
|
-
assistantmodeloptionsList: Array<Metadata.AsObject>,
|
|
5298
|
-
}
|
|
5299
|
-
}
|
|
5300
|
-
|
|
5301
|
-
declare class GetAssistantProviderModelResponse extends jspb.Message {
|
|
5302
|
-
getCode(): number;
|
|
5303
|
-
setCode(value: number): void;
|
|
5304
|
-
|
|
5305
|
-
getSuccess(): boolean;
|
|
5306
|
-
setSuccess(value: boolean): void;
|
|
5307
|
-
|
|
5308
|
-
hasData(): boolean;
|
|
5309
|
-
clearData(): void;
|
|
5310
|
-
getData(): AssistantProviderModel | undefined;
|
|
5311
|
-
setData(value?: AssistantProviderModel): void;
|
|
5312
|
-
|
|
5313
|
-
hasError(): boolean;
|
|
5314
|
-
clearError(): void;
|
|
5315
|
-
getError(): Error | undefined;
|
|
5316
|
-
setError(value?: Error): void;
|
|
5317
|
-
|
|
5318
|
-
serializeBinary(): Uint8Array;
|
|
5319
|
-
toObject(includeInstance?: boolean): GetAssistantProviderModelResponse.AsObject;
|
|
5320
|
-
static toObject(includeInstance: boolean, msg: GetAssistantProviderModelResponse): GetAssistantProviderModelResponse.AsObject;
|
|
5321
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5322
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5323
|
-
static serializeBinaryToWriter(message: GetAssistantProviderModelResponse, writer: jspb.BinaryWriter): void;
|
|
5324
|
-
static deserializeBinary(bytes: Uint8Array): GetAssistantProviderModelResponse;
|
|
5325
|
-
static deserializeBinaryFromReader(message: GetAssistantProviderModelResponse, reader: jspb.BinaryReader): GetAssistantProviderModelResponse;
|
|
5326
|
-
}
|
|
5327
|
-
|
|
5328
|
-
declare namespace GetAssistantProviderModelResponse {
|
|
5329
|
-
export type AsObject = {
|
|
5330
|
-
code: number,
|
|
5331
|
-
success: boolean,
|
|
5332
|
-
data?: AssistantProviderModel.AsObject,
|
|
5333
|
-
error?: Error.AsObject,
|
|
5334
|
-
}
|
|
5335
|
-
}
|
|
5336
|
-
|
|
5337
5948
|
declare class CreateAssistantTagRequest extends jspb.Message {
|
|
5338
5949
|
getAssistantid(): string;
|
|
5339
5950
|
setAssistantid(value: string): void;
|
|
@@ -5361,13 +5972,10 @@ declare namespace CreateAssistantTagRequest {
|
|
|
5361
5972
|
}
|
|
5362
5973
|
|
|
5363
5974
|
declare class GetAssistantRequest extends jspb.Message {
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
clearAssistantprovidermodelid(): void;
|
|
5369
|
-
getAssistantprovidermodelid(): string;
|
|
5370
|
-
setAssistantprovidermodelid(value: string): void;
|
|
5975
|
+
hasAssistantdefinition(): boolean;
|
|
5976
|
+
clearAssistantdefinition(): void;
|
|
5977
|
+
getAssistantdefinition(): AssistantDefinition | undefined;
|
|
5978
|
+
setAssistantdefinition(value?: AssistantDefinition): void;
|
|
5371
5979
|
|
|
5372
5980
|
serializeBinary(): Uint8Array;
|
|
5373
5981
|
toObject(includeInstance?: boolean): GetAssistantRequest.AsObject;
|
|
@@ -5381,8 +5989,7 @@ declare class GetAssistantRequest extends jspb.Message {
|
|
|
5381
5989
|
|
|
5382
5990
|
declare namespace GetAssistantRequest {
|
|
5383
5991
|
export type AsObject = {
|
|
5384
|
-
|
|
5385
|
-
assistantprovidermodelid: string,
|
|
5992
|
+
assistantdefinition?: AssistantDefinition.AsObject,
|
|
5386
5993
|
}
|
|
5387
5994
|
}
|
|
5388
5995
|
|
|
@@ -5470,7 +6077,41 @@ declare namespace GetAllAssistantRequest {
|
|
|
5470
6077
|
}
|
|
5471
6078
|
}
|
|
5472
6079
|
|
|
5473
|
-
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 {
|
|
5474
6115
|
getCode(): number;
|
|
5475
6116
|
setCode(value: number): void;
|
|
5476
6117
|
|
|
@@ -5478,9 +6119,9 @@ declare class GetAllAssistantResponse extends jspb.Message {
|
|
|
5478
6119
|
setSuccess(value: boolean): void;
|
|
5479
6120
|
|
|
5480
6121
|
clearDataList(): void;
|
|
5481
|
-
getDataList(): Array<
|
|
5482
|
-
setDataList(value: Array<
|
|
5483
|
-
addData(value?:
|
|
6122
|
+
getDataList(): Array<Telemetry>;
|
|
6123
|
+
setDataList(value: Array<Telemetry>): void;
|
|
6124
|
+
addData(value?: Telemetry, index?: number): Telemetry;
|
|
5484
6125
|
|
|
5485
6126
|
hasError(): boolean;
|
|
5486
6127
|
clearError(): void;
|
|
@@ -5493,58 +6134,26 @@ declare class GetAllAssistantResponse extends jspb.Message {
|
|
|
5493
6134
|
setPaginated(value?: Paginated): void;
|
|
5494
6135
|
|
|
5495
6136
|
serializeBinary(): Uint8Array;
|
|
5496
|
-
toObject(includeInstance?: boolean):
|
|
5497
|
-
static toObject(includeInstance: boolean, msg:
|
|
6137
|
+
toObject(includeInstance?: boolean): GetAllAssistantTelemetryResponse.AsObject;
|
|
6138
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantTelemetryResponse): GetAllAssistantTelemetryResponse.AsObject;
|
|
5498
6139
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5499
6140
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5500
|
-
static serializeBinaryToWriter(message:
|
|
5501
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5502
|
-
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;
|
|
5503
6144
|
}
|
|
5504
6145
|
|
|
5505
|
-
declare namespace
|
|
6146
|
+
declare namespace GetAllAssistantTelemetryResponse {
|
|
5506
6147
|
export type AsObject = {
|
|
5507
6148
|
code: number,
|
|
5508
6149
|
success: boolean,
|
|
5509
|
-
dataList: Array<
|
|
6150
|
+
dataList: Array<Telemetry.AsObject>,
|
|
5510
6151
|
error?: Error.AsObject,
|
|
5511
6152
|
paginated?: Paginated.AsObject,
|
|
5512
6153
|
}
|
|
5513
6154
|
}
|
|
5514
6155
|
|
|
5515
|
-
declare class
|
|
5516
|
-
hasPaginate(): boolean;
|
|
5517
|
-
clearPaginate(): void;
|
|
5518
|
-
getPaginate(): Paginate | undefined;
|
|
5519
|
-
setPaginate(value?: Paginate): void;
|
|
5520
|
-
|
|
5521
|
-
clearCriteriasList(): void;
|
|
5522
|
-
getCriteriasList(): Array<Criteria>;
|
|
5523
|
-
setCriteriasList(value: Array<Criteria>): void;
|
|
5524
|
-
addCriterias(value?: Criteria, index?: number): Criteria;
|
|
5525
|
-
|
|
5526
|
-
getAssistantid(): string;
|
|
5527
|
-
setAssistantid(value: string): void;
|
|
5528
|
-
|
|
5529
|
-
serializeBinary(): Uint8Array;
|
|
5530
|
-
toObject(includeInstance?: boolean): GetAllAssistantProviderModelRequest.AsObject;
|
|
5531
|
-
static toObject(includeInstance: boolean, msg: GetAllAssistantProviderModelRequest): GetAllAssistantProviderModelRequest.AsObject;
|
|
5532
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5533
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5534
|
-
static serializeBinaryToWriter(message: GetAllAssistantProviderModelRequest, writer: jspb.BinaryWriter): void;
|
|
5535
|
-
static deserializeBinary(bytes: Uint8Array): GetAllAssistantProviderModelRequest;
|
|
5536
|
-
static deserializeBinaryFromReader(message: GetAllAssistantProviderModelRequest, reader: jspb.BinaryReader): GetAllAssistantProviderModelRequest;
|
|
5537
|
-
}
|
|
5538
|
-
|
|
5539
|
-
declare namespace GetAllAssistantProviderModelRequest {
|
|
5540
|
-
export type AsObject = {
|
|
5541
|
-
paginate?: Paginate.AsObject,
|
|
5542
|
-
criteriasList: Array<Criteria.AsObject>,
|
|
5543
|
-
assistantid: string,
|
|
5544
|
-
}
|
|
5545
|
-
}
|
|
5546
|
-
|
|
5547
|
-
declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
6156
|
+
declare class GetAllAssistantResponse extends jspb.Message {
|
|
5548
6157
|
getCode(): number;
|
|
5549
6158
|
setCode(value: number): void;
|
|
5550
6159
|
|
|
@@ -5552,9 +6161,9 @@ declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
|
5552
6161
|
setSuccess(value: boolean): void;
|
|
5553
6162
|
|
|
5554
6163
|
clearDataList(): void;
|
|
5555
|
-
getDataList(): Array<
|
|
5556
|
-
setDataList(value: Array<
|
|
5557
|
-
addData(value?:
|
|
6164
|
+
getDataList(): Array<Assistant>;
|
|
6165
|
+
setDataList(value: Array<Assistant>): void;
|
|
6166
|
+
addData(value?: Assistant, index?: number): Assistant;
|
|
5558
6167
|
|
|
5559
6168
|
hasError(): boolean;
|
|
5560
6169
|
clearError(): void;
|
|
@@ -5567,20 +6176,20 @@ declare class GetAllAssistantProviderModelResponse extends jspb.Message {
|
|
|
5567
6176
|
setPaginated(value?: Paginated): void;
|
|
5568
6177
|
|
|
5569
6178
|
serializeBinary(): Uint8Array;
|
|
5570
|
-
toObject(includeInstance?: boolean):
|
|
5571
|
-
static toObject(includeInstance: boolean, msg:
|
|
6179
|
+
toObject(includeInstance?: boolean): GetAllAssistantResponse.AsObject;
|
|
6180
|
+
static toObject(includeInstance: boolean, msg: GetAllAssistantResponse): GetAllAssistantResponse.AsObject;
|
|
5572
6181
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5573
6182
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5574
|
-
static serializeBinaryToWriter(message:
|
|
5575
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5576
|
-
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;
|
|
5577
6186
|
}
|
|
5578
6187
|
|
|
5579
|
-
declare namespace
|
|
6188
|
+
declare namespace GetAllAssistantResponse {
|
|
5580
6189
|
export type AsObject = {
|
|
5581
6190
|
code: number,
|
|
5582
6191
|
success: boolean,
|
|
5583
|
-
dataList: Array<
|
|
6192
|
+
dataList: Array<Assistant.AsObject>,
|
|
5584
6193
|
error?: Error.AsObject,
|
|
5585
6194
|
paginated?: Paginated.AsObject,
|
|
5586
6195
|
}
|
|
@@ -5754,30 +6363,6 @@ declare namespace GetAllMessageResponse {
|
|
|
5754
6363
|
}
|
|
5755
6364
|
}
|
|
5756
6365
|
|
|
5757
|
-
declare class UpdateAssistantVersionRequest extends jspb.Message {
|
|
5758
|
-
getAssistantid(): string;
|
|
5759
|
-
setAssistantid(value: string): void;
|
|
5760
|
-
|
|
5761
|
-
getAssistantprovidermodelid(): string;
|
|
5762
|
-
setAssistantprovidermodelid(value: string): void;
|
|
5763
|
-
|
|
5764
|
-
serializeBinary(): Uint8Array;
|
|
5765
|
-
toObject(includeInstance?: boolean): UpdateAssistantVersionRequest.AsObject;
|
|
5766
|
-
static toObject(includeInstance: boolean, msg: UpdateAssistantVersionRequest): UpdateAssistantVersionRequest.AsObject;
|
|
5767
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5768
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5769
|
-
static serializeBinaryToWriter(message: UpdateAssistantVersionRequest, writer: jspb.BinaryWriter): void;
|
|
5770
|
-
static deserializeBinary(bytes: Uint8Array): UpdateAssistantVersionRequest;
|
|
5771
|
-
static deserializeBinaryFromReader(message: UpdateAssistantVersionRequest, reader: jspb.BinaryReader): UpdateAssistantVersionRequest;
|
|
5772
|
-
}
|
|
5773
|
-
|
|
5774
|
-
declare namespace UpdateAssistantVersionRequest {
|
|
5775
|
-
export type AsObject = {
|
|
5776
|
-
assistantid: string,
|
|
5777
|
-
assistantprovidermodelid: string,
|
|
5778
|
-
}
|
|
5779
|
-
}
|
|
5780
|
-
|
|
5781
6366
|
declare class UpdateAssistantDetailRequest extends jspb.Message {
|
|
5782
6367
|
getAssistantid(): string;
|
|
5783
6368
|
setAssistantid(value: string): void;
|
|
@@ -5913,22 +6498,22 @@ type AssistantServiceDeleteAssistant = {
|
|
|
5913
6498
|
readonly responseType: typeof GetAssistantResponse;
|
|
5914
6499
|
};
|
|
5915
6500
|
|
|
5916
|
-
type
|
|
6501
|
+
type AssistantServiceGetAllAssistantProvider = {
|
|
5917
6502
|
readonly methodName: string;
|
|
5918
6503
|
readonly service: typeof AssistantService;
|
|
5919
6504
|
readonly requestStream: false;
|
|
5920
6505
|
readonly responseStream: false;
|
|
5921
|
-
readonly requestType: typeof
|
|
5922
|
-
readonly responseType: typeof
|
|
6506
|
+
readonly requestType: typeof GetAllAssistantProviderRequest;
|
|
6507
|
+
readonly responseType: typeof GetAllAssistantProviderResponse;
|
|
5923
6508
|
};
|
|
5924
6509
|
|
|
5925
|
-
type
|
|
6510
|
+
type AssistantServiceCreateAssistantProvider = {
|
|
5926
6511
|
readonly methodName: string;
|
|
5927
6512
|
readonly service: typeof AssistantService;
|
|
5928
6513
|
readonly requestStream: false;
|
|
5929
6514
|
readonly responseStream: false;
|
|
5930
|
-
readonly requestType: typeof
|
|
5931
|
-
readonly responseType: typeof
|
|
6515
|
+
readonly requestType: typeof CreateAssistantProviderRequest;
|
|
6516
|
+
readonly responseType: typeof GetAssistantProviderResponse;
|
|
5932
6517
|
};
|
|
5933
6518
|
|
|
5934
6519
|
type AssistantServiceCreateAssistantTag = {
|
|
@@ -5985,6 +6570,15 @@ type AssistantServiceGetAllMessage = {
|
|
|
5985
6570
|
readonly responseType: typeof GetAllMessageResponse;
|
|
5986
6571
|
};
|
|
5987
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
|
+
|
|
5988
6582
|
type AssistantServiceGetAllAssistantConversation = {
|
|
5989
6583
|
readonly methodName: string;
|
|
5990
6584
|
readonly service: typeof AssistantService;
|
|
@@ -6225,14 +6819,15 @@ declare class AssistantService {
|
|
|
6225
6819
|
static readonly GetAllAssistant: AssistantServiceGetAllAssistant;
|
|
6226
6820
|
static readonly CreateAssistant: AssistantServiceCreateAssistant;
|
|
6227
6821
|
static readonly DeleteAssistant: AssistantServiceDeleteAssistant;
|
|
6228
|
-
static readonly
|
|
6229
|
-
static readonly
|
|
6822
|
+
static readonly GetAllAssistantProvider: AssistantServiceGetAllAssistantProvider;
|
|
6823
|
+
static readonly CreateAssistantProvider: AssistantServiceCreateAssistantProvider;
|
|
6230
6824
|
static readonly CreateAssistantTag: AssistantServiceCreateAssistantTag;
|
|
6231
6825
|
static readonly UpdateAssistantVersion: AssistantServiceUpdateAssistantVersion;
|
|
6232
6826
|
static readonly UpdateAssistantDetail: AssistantServiceUpdateAssistantDetail;
|
|
6233
6827
|
static readonly GetAllAssistantMessage: AssistantServiceGetAllAssistantMessage;
|
|
6234
6828
|
static readonly GetAllConversationMessage: AssistantServiceGetAllConversationMessage;
|
|
6235
6829
|
static readonly GetAllMessage: AssistantServiceGetAllMessage;
|
|
6830
|
+
static readonly GetAllAssistantTelemetry: AssistantServiceGetAllAssistantTelemetry;
|
|
6236
6831
|
static readonly GetAllAssistantConversation: AssistantServiceGetAllAssistantConversation;
|
|
6237
6832
|
static readonly GetAssistantConversation: AssistantServiceGetAssistantConversation;
|
|
6238
6833
|
static readonly GetAssistantWebhookLog: AssistantServiceGetAssistantWebhookLog;
|
|
@@ -6307,23 +6902,23 @@ declare class AssistantServiceClient {
|
|
|
6307
6902
|
requestMessage: DeleteAssistantRequest,
|
|
6308
6903
|
callback: (error: ServiceError$b|null, responseMessage: GetAssistantResponse|null) => void
|
|
6309
6904
|
): UnaryResponse$b;
|
|
6310
|
-
|
|
6311
|
-
requestMessage:
|
|
6905
|
+
getAllAssistantProvider(
|
|
6906
|
+
requestMessage: GetAllAssistantProviderRequest,
|
|
6312
6907
|
metadata: grpc.Metadata,
|
|
6313
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6908
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantProviderResponse|null) => void
|
|
6314
6909
|
): UnaryResponse$b;
|
|
6315
|
-
|
|
6316
|
-
requestMessage:
|
|
6317
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6910
|
+
getAllAssistantProvider(
|
|
6911
|
+
requestMessage: GetAllAssistantProviderRequest,
|
|
6912
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAllAssistantProviderResponse|null) => void
|
|
6318
6913
|
): UnaryResponse$b;
|
|
6319
|
-
|
|
6320
|
-
requestMessage:
|
|
6914
|
+
createAssistantProvider(
|
|
6915
|
+
requestMessage: CreateAssistantProviderRequest,
|
|
6321
6916
|
metadata: grpc.Metadata,
|
|
6322
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6917
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAssistantProviderResponse|null) => void
|
|
6323
6918
|
): UnaryResponse$b;
|
|
6324
|
-
|
|
6325
|
-
requestMessage:
|
|
6326
|
-
callback: (error: ServiceError$b|null, responseMessage:
|
|
6919
|
+
createAssistantProvider(
|
|
6920
|
+
requestMessage: CreateAssistantProviderRequest,
|
|
6921
|
+
callback: (error: ServiceError$b|null, responseMessage: GetAssistantProviderResponse|null) => void
|
|
6327
6922
|
): UnaryResponse$b;
|
|
6328
6923
|
createAssistantTag(
|
|
6329
6924
|
requestMessage: CreateAssistantTagRequest,
|
|
@@ -6379,6 +6974,15 @@ declare class AssistantServiceClient {
|
|
|
6379
6974
|
requestMessage: GetAllMessageRequest,
|
|
6380
6975
|
callback: (error: ServiceError$b|null, responseMessage: GetAllMessageResponse|null) => void
|
|
6381
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;
|
|
6382
6986
|
getAllAssistantConversation(
|
|
6383
6987
|
requestMessage: GetAllAssistantConversationRequest,
|
|
6384
6988
|
metadata: grpc.Metadata,
|
|
@@ -14162,6 +14766,7 @@ interface AgentCallback {
|
|
|
14162
14766
|
onAssistantMessage?: (args: ConversationAssistantMessage | undefined) => void;
|
|
14163
14767
|
onUserMessage?: (args: ConversationUserMessage | undefined) => void;
|
|
14164
14768
|
onMessage?: (arg: ConversationMessage | undefined) => void;
|
|
14769
|
+
onAction?: (arg?: AssistantConverstationApiRequestAction.AsObject | AssistantConverstationKnowledgeRetrievalAction.AsObject | AssistantConverstationEndpointAction.AsObject | AssistantConverstationHoldAction.AsObject | AssistantConversationDisconnectAction.AsObject) => void;
|
|
14165
14770
|
}
|
|
14166
14771
|
|
|
14167
14772
|
declare enum Feedback {
|
|
@@ -14610,7 +15215,7 @@ declare class VoiceAgent extends Agent {
|
|
|
14610
15215
|
* @returns
|
|
14611
15216
|
*/
|
|
14612
15217
|
onRecieve: (response: AssistantMessagingResponse) => Promise<void>;
|
|
14613
|
-
onCallback(response: AssistantMessagingResponse)
|
|
15218
|
+
onCallback: (response: AssistantMessagingResponse) => Promise<void>;
|
|
14614
15219
|
/**
|
|
14615
15220
|
*
|
|
14616
15221
|
* @returns
|
|
@@ -14632,4 +15237,4 @@ interface DeviceSelectorComponentProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
14632
15237
|
*/
|
|
14633
15238
|
declare const DeviceSelectorComponent: FC<DeviceSelectorComponentProps>;
|
|
14634
15239
|
|
|
14635
|
-
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 { GetAssistantAnalysisResponse as $, AssistantDebuggerDeployment as A, GetAssistantRequest as B, Content as C, CreateAssistantRequest as D, GetAllAssistantMessageResponse as E, Feedback as F, GetAllDeploymentResponse as G, GetAllMessageResponse as H, IndexKnowledgeDocumentResponse as I, GetAllConversationMessageResponse as J, KnowledgeConnectResponse as K, CreateAssistantDeploymentRequest as L, type Message as M, GetAssistantDebuggerDeploymentResponse as N, GetAssistantDeploymentRequest as O, GetAssistantApiDeploymentResponse as P, GetAssistantWebpluginDeploymentResponse as Q, type RapidaSource as R, GetAssistantPhoneDeploymentResponse as S, GetAssistantWhatsappDeploymentResponse as T, type UserAuthInfo as U, VoiceAgent as V, GetAllAssistantWebhookResponse as W, GetAssistantWebhookResponse as X, GetAssistantConversationRequest as Y, GetAssistantConversationResponse as Z, GetAllAssistantAnalysisResponse as _, AssistantWebpluginDeployment as a, CreateBulkPhoneCallRequest as a$, GetAllAssistantWebhookLogResponse as a0, GetAssistantWebhookLogResponse as a1, GetAllAssistantToolResponse as a2, Metadata as a3, GetAssistantToolResponse as a4, GetAllAssistantKnowledgeResponse as a5, GetAssistantKnowledgeResponse as a6, GetAssistantToolLogRequest as a7, GetAssistantToolLogResponse as a8, GetAllAssistantToolLogRequest as a9, CreateConversationMetricRequest as aA, CreateConversationMetricResponse as aB, GetAllAssistantConversationResponse as aC, CreateKnowledgeResponse as aD, GetKnowledgeResponse as aE, GetAllKnowledgeResponse as aF, CreateKnowledgeDocumentResponse as aG, GetAllKnowledgeDocumentResponse as aH, GetAllKnowledgeDocumentSegmentResponse as aI, BaseResponse as aJ, GetKnowledgeLogRequest as aK, GetKnowledgeLogResponse as aL, GetAllKnowledgeLogRequest as aM, GetAllKnowledgeLogResponse as aN, AddUsersToProjectResponse as aO, CreateProjectResponse as aP, UpdateProjectResponse as aQ, GetAllProjectResponse as aR, GetProjectResponse as aS, ArchiveProjectResponse as aT, GetAllProjectCredentialResponse as aU, CreateProjectCredentialResponse as aV, Error as aW, Metric as aX, Message$1 as aY, CreatePhoneCallRequest as aZ, CreatePhoneCallResponse as a_, GetAllAssistantToolLogResponse as aa, CreateAssistantProviderRequest as ab, GetAssistantProviderResponse as ac, GetAllAssistantProviderResponse as ad, GetAllAuditLogResponse as ae, GetAuditLogResponse as af, GetAllEndpointResponse as ag, UpdateEndpointVersionResponse as ah, GetAllEndpointProviderModelResponse as ai, GetEndpointResponse as aj, EndpointProviderModelAttribute as ak, CreateEndpointProviderModelResponse as al, EndpointAttribute as am, CreateEndpointResponse as an, EndpointRetryConfiguration as ao, EndpointCacheConfiguration as ap, CreateEndpointRetryConfigurationResponse as aq, CreateEndpointCacheConfigurationResponse as ar, GetAllEndpointLogResponse as as, GetEndpointLogResponse as at, GetCredentialResponse as au, GetAllOrganizationCredentialResponse as av, AssistantMessagingRequest as aw, AssistantMessagingResponse as ax, CreateMessageMetricRequest as ay, CreateMessageMetricResponse as az, AssistantApiDeployment as b, KnowledgeService as b$, CreateBulkPhoneCallResponse as b0, GetAllAssistantTelemetryRequest as b1, GetAllAssistantTelemetryResponse as b2, ConnectionState as b3, Channel as b4, InputOptions as b5, OutputOptions as b6, AgentConfig as b7, type AgentCallback as b8, MessageRole as b9, WithPlatform as bA, WithAuthContext as bB, getClientInfo as bC, WithClientContext as bD, EndpointService as bE, EndpointServiceClient as bF, AssistantDeploymentService as bG, AssistantDeploymentServiceClient as bH, ConnectService as bI, ConnectServiceClient as bJ, VaultService as bK, VaultServiceClient as bL, Deployment as bM, DeploymentClient as bN, AssistantKnowledge as bO, CreateAssistantKnowledgeRequest as bP, UpdateAssistantKnowledgeRequest as bQ, GetAssistantKnowledgeRequest as bR, DeleteAssistantKnowledgeRequest as bS, GetAllAssistantKnowledgeRequest as bT, GetAllDeploymentRequest as bU, SearchableDeployment as bV, AuditLog as bW, GetAllAuditLogRequest as bX, GetAuditLogRequest as bY, CreateMetadataRequest as bZ, CreateMetadataResponse as b_, MessageStatus as ba, HEADER_ENVIRONMENT_KEY as bb, HEADER_SOURCE_KEY as bc, HEADER_REGION_KEY as bd, HEADER_API_KEY as be, HEADER_AUTH_ID as bf, HEADER_PROJECT_ID as bg, HEADER_USER_AGENT as bh, HEADER_LANGUAGE as bi, HEADER_PLATFORM as bj, HEADER_SCREEN_WIDTH as bk, HEADER_SCREEN_HEIGHT as bl, HEADER_WINDOW_WIDTH as bm, HEADER_WINDOW_HEIGHT as bn, HEADER_TIMEZONE as bo, HEADER_COLOR_DEPTH as bp, HEADER_DEVICE_MEMORY as bq, HEADER_HARDWARE_CONCURRENCY as br, HEADER_CONNECTION_TYPE as bs, HEADER_CONNECTION_EFFECTIVE_TYPE as bt, HEADER_COOKIES_ENABLED as bu, HEADER_DO_NOT_TRACK as bv, HEADER_REFERRER as bw, HEADER_REMOTE_URL as bx, HEADER_LATITUDE as by, HEADER_LONGITUDE as bz, Assistant as c, Paginated as c$, KnowledgeServiceClient as c0, GetAllModelProviderRequest as c1, ToolProvider as c2, GetAllToolProviderRequest as c3, VaultCredential as c4, CreateProviderCredentialRequest as c5, CreateToolCredentialRequest as c6, GetProviderCredentialRequest as c7, GetAllOrganizationCredentialRequest as c8, GetCredentialRequest as c9, ForgotPasswordRequest as cA, CreatePasswordRequest as cB, VerifyTokenRequest as cC, AuthorizeRequest as cD, ScopeAuthorizeRequest as cE, ScopedAuthenticationResponse as cF, GetUserRequest as cG, UpdateUserRequest as cH, SocialAuthenticationRequest as cI, GetAllUserRequest as cJ, OrganizationError as cK, CreateOrganizationRequest as cL, UpdateOrganizationRequest as cM, GetOrganizationRequest as cN, UpdateBillingInformationRequest as cO, Project as cP, CreateProjectRequest as cQ, UpdateProjectRequest as cR, GetProjectRequest as cS, GetAllProjectRequest as cT, AddUsersToProjectRequest as cU, ArchiveProjectRequest as cV, ProjectCredential as cW, CreateProjectCredentialRequest as cX, GetAllProjectCredentialRequest as cY, FieldSelector as cZ, Paginate as c_, ProviderService as ca, ProviderServiceClient as cb, AssistantConversationConfiguration as cc, AssistantConversationInterruption as cd, AssistantConversationUserMessage as ce, AssistantConversationAssistantMessage as cf, AssistantAnalysis as cg, CreateAssistantAnalysisRequest as ch, UpdateAssistantAnalysisRequest as ci, GetAssistantAnalysisRequest as cj, DeleteAssistantAnalysisRequest as ck, GetAllAssistantAnalysisRequest as cl, EndpointDefinition as cm, UpdateRequest as cn, UpdateResponse as co, ProbeRequest as cp, ProbeResponse as cq, AuthenticateRequest as cr, RegisterUserRequest as cs, Token as ct, OrganizationRole as cu, ProjectRole as cv, FeaturePermission as cw, Authentication as cx, ScopedAuthentication as cy, AuthenticationError as cz, ConnectionConfig as d, UpdateAssistantToolRequest as d$, Ordering as d0, User as d1, Argument as d2, Variable as d3, Provider as d4, Tag as d5, Organization as d6, ToolCall as d7, FunctionCall as d8, Knowledge as d9, ActionConnectRequest as dA, GetConnectorFilesRequest as dB, DocumentService as dC, DocumentServiceClient as dD, MarketplaceService as dE, MarketplaceServiceClient as dF, IndexKnowledgeDocumentRequest as dG, CreateEndpointRequest as dH, EndpointProviderModel as dI, AggregatedEndpointAnalytics as dJ, Endpoint as dK, CreateEndpointProviderModelRequest as dL, GetEndpointRequest as dM, GetAllEndpointRequest as dN, GetAllEndpointProviderModelRequest as dO, UpdateEndpointVersionRequest as dP, CreateEndpointRetryConfigurationRequest as dQ, CreateEndpointCacheConfigurationRequest as dR, CreateEndpointTagRequest as dS, ForkEndpointRequest as dT, UpdateEndpointDetailRequest as dU, EndpointLog as dV, GetAllEndpointLogRequest as dW, GetEndpointLogRequest as dX, AssistantTool as dY, AssistantToolLog as dZ, CreateAssistantToolRequest as d_, TextPrompt as da, TextChatCompletePrompt as db, AssistantConversationMessage as dc, AssistantConversationContext as dd, AssistantConversation as de, GetAllAssistantConversationRequest as df, GetAllConversationMessageRequest as dg, AssistantConversationRecording as dh, AssistantDefinition as di, Telemetry as dj, AssistantService as dk, AssistantServiceClient as dl, TalkService as dm, TalkServiceClient as dn, AssistantWebhook as dp, AssistantWebhookLog as dq, CreateAssistantWebhookRequest as dr, UpdateAssistantWebhookRequest as ds, GetAssistantWebhookRequest as dt, DeleteAssistantWebhookRequest as du, GetAllAssistantWebhookRequest as dv, GetAllAssistantWebhookLogRequest as dw, GetAssistantWebhookLogRequest as dx, KnowledgeConnectRequest as dy, GeneralConnectRequest as dz, type ClientAuthInfo as e, GetAssistantToolRequest as e0, DeleteAssistantToolRequest as e1, GetAllAssistantToolRequest as e2, DeploymentAudioProvider as e3, AssistantPhoneDeployment as e4, AssistantWhatsappDeployment as e5, AuditLoggingService as e6, AuditLoggingServiceClient as e7, CreateKnowledgeRequest as e8, GetAllKnowledgeRequest as e9, AssistantProviderWebsocket as eA, GetAllAssistantProviderRequest 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, GetKnowledgeRequest as ea, CreateKnowledgeTagRequest as eb, KnowledgeDocument as ec, GetAllKnowledgeDocumentRequest as ed, CreateKnowledgeDocumentRequest as ee, KnowledgeDocumentSegment as ef, GetAllKnowledgeDocumentSegmentRequest as eg, UpdateKnowledgeDetailRequest as eh, UpdateKnowledgeDocumentSegmentRequest as ei, DeleteKnowledgeDocumentSegmentRequest as ej, KnowledgeLog as ek, CreateAssistantTagRequest as el, DeleteAssistantRequest as em, GetAllAssistantRequest as en, GetAllAssistantMessageRequest as eo, GetAllMessageRequest 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, AssistantProviderModel as ey, AssistantProviderAgentkit 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, UpdateAssistantVersionRequest as y, GetAssistantResponse as z };
|