@scout9/admin 1.0.0-alpha.0.0.69 → 1.0.0-alpha.0.0.70
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/build/api.d.ts +182 -255
- package/build/api.js +7 -2
- package/package.json +1 -1
- package/src/api.ts +183 -195
- package/tsconfig.tsbuildinfo +1 -1
package/src/api.ts
CHANGED
|
@@ -308,6 +308,25 @@ export interface BlockInfo {
|
|
|
308
308
|
*/
|
|
309
309
|
'time'?: string;
|
|
310
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* Command-flow configuration attached to this conversation.
|
|
313
|
+
* @export
|
|
314
|
+
* @interface CommandConfiguration
|
|
315
|
+
*/
|
|
316
|
+
export interface CommandConfiguration {
|
|
317
|
+
/**
|
|
318
|
+
* Command entity id.
|
|
319
|
+
* @type {string}
|
|
320
|
+
* @memberof CommandConfiguration
|
|
321
|
+
*/
|
|
322
|
+
'entity': string;
|
|
323
|
+
/**
|
|
324
|
+
* Command route/path.
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof CommandConfiguration
|
|
327
|
+
*/
|
|
328
|
+
'path': string;
|
|
329
|
+
}
|
|
311
330
|
/**
|
|
312
331
|
* @type Condition
|
|
313
332
|
* @export
|
|
@@ -628,13 +647,7 @@ export interface Conversation {
|
|
|
628
647
|
*/
|
|
629
648
|
'$id'?: string;
|
|
630
649
|
/**
|
|
631
|
-
*
|
|
632
|
-
* @type {string}
|
|
633
|
-
* @memberof Conversation
|
|
634
|
-
*/
|
|
635
|
-
'$business': string;
|
|
636
|
-
/**
|
|
637
|
-
* Default agent persona id assigned to the conversation(s)
|
|
650
|
+
* The user id assigned to this conversation
|
|
638
651
|
* @type {string}
|
|
639
652
|
* @memberof Conversation
|
|
640
653
|
*/
|
|
@@ -736,17 +749,17 @@ export interface Conversation {
|
|
|
736
749
|
*/
|
|
737
750
|
'metadata'?: { [key: string]: any; };
|
|
738
751
|
/**
|
|
739
|
-
*
|
|
740
|
-
* @type {
|
|
752
|
+
*
|
|
753
|
+
* @type {ConversationAnticipate}
|
|
741
754
|
* @memberof Conversation
|
|
742
755
|
*/
|
|
743
|
-
'anticipate'?:
|
|
756
|
+
'anticipate'?: ConversationAnticipate;
|
|
744
757
|
/**
|
|
745
|
-
*
|
|
746
|
-
* @type {
|
|
758
|
+
*
|
|
759
|
+
* @type {CommandConfiguration}
|
|
747
760
|
* @memberof Conversation
|
|
748
761
|
*/
|
|
749
|
-
'command'?:
|
|
762
|
+
'command'?: CommandConfiguration;
|
|
750
763
|
/**
|
|
751
764
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
752
765
|
* @type {string}
|
|
@@ -773,6 +786,65 @@ export const ConversationIngressEnum = {
|
|
|
773
786
|
|
|
774
787
|
export type ConversationIngressEnum = typeof ConversationIngressEnum[keyof typeof ConversationIngressEnum];
|
|
775
788
|
|
|
789
|
+
/**
|
|
790
|
+
* Metadata for anticipating a preflight response.
|
|
791
|
+
* @export
|
|
792
|
+
* @interface ConversationAnticipate
|
|
793
|
+
*/
|
|
794
|
+
export interface ConversationAnticipate {
|
|
795
|
+
/**
|
|
796
|
+
* Determines the runtime to address the next response.
|
|
797
|
+
* @type {string}
|
|
798
|
+
* @memberof ConversationAnticipate
|
|
799
|
+
*/
|
|
800
|
+
'type': ConversationAnticipateTypeEnum;
|
|
801
|
+
/**
|
|
802
|
+
* Slot values collected or expected by anticipation logic.
|
|
803
|
+
* @type {{ [key: string]: Array<any>; }}
|
|
804
|
+
* @memberof ConversationAnticipate
|
|
805
|
+
*/
|
|
806
|
+
'slots': { [key: string]: Array<any>; };
|
|
807
|
+
/**
|
|
808
|
+
* For type \'did\'.
|
|
809
|
+
* @type {string}
|
|
810
|
+
* @memberof ConversationAnticipate
|
|
811
|
+
*/
|
|
812
|
+
'did'?: string;
|
|
813
|
+
/**
|
|
814
|
+
* For literal keywords, this map helps identify which slot the keyword matches.
|
|
815
|
+
* @type {Array<ConversationAnticipateMapInner>}
|
|
816
|
+
* @memberof ConversationAnticipate
|
|
817
|
+
*/
|
|
818
|
+
'map'?: Array<ConversationAnticipateMapInner>;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
export const ConversationAnticipateTypeEnum = {
|
|
822
|
+
Did: 'did',
|
|
823
|
+
Literal: 'literal',
|
|
824
|
+
Context: 'context'
|
|
825
|
+
} as const;
|
|
826
|
+
|
|
827
|
+
export type ConversationAnticipateTypeEnum = typeof ConversationAnticipateTypeEnum[keyof typeof ConversationAnticipateTypeEnum];
|
|
828
|
+
|
|
829
|
+
/**
|
|
830
|
+
*
|
|
831
|
+
* @export
|
|
832
|
+
* @interface ConversationAnticipateMapInner
|
|
833
|
+
*/
|
|
834
|
+
export interface ConversationAnticipateMapInner {
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @type {string}
|
|
838
|
+
* @memberof ConversationAnticipateMapInner
|
|
839
|
+
*/
|
|
840
|
+
'slot': string;
|
|
841
|
+
/**
|
|
842
|
+
*
|
|
843
|
+
* @type {Array<string>}
|
|
844
|
+
* @memberof ConversationAnticipateMapInner
|
|
845
|
+
*/
|
|
846
|
+
'keywords': Array<string>;
|
|
847
|
+
}
|
|
776
848
|
/**
|
|
777
849
|
* Base props all conversation types will have
|
|
778
850
|
* @export
|
|
@@ -786,13 +858,7 @@ export interface ConversationBase {
|
|
|
786
858
|
*/
|
|
787
859
|
'$id'?: string;
|
|
788
860
|
/**
|
|
789
|
-
*
|
|
790
|
-
* @type {string}
|
|
791
|
-
* @memberof ConversationBase
|
|
792
|
-
*/
|
|
793
|
-
'$business'?: string;
|
|
794
|
-
/**
|
|
795
|
-
* Default agent persona id assigned to the conversation(s)
|
|
861
|
+
* The user id assigned to this conversation
|
|
796
862
|
* @type {string}
|
|
797
863
|
* @memberof ConversationBase
|
|
798
864
|
*/
|
|
@@ -894,17 +960,17 @@ export interface ConversationBase {
|
|
|
894
960
|
*/
|
|
895
961
|
'metadata'?: { [key: string]: any; };
|
|
896
962
|
/**
|
|
897
|
-
*
|
|
898
|
-
* @type {
|
|
963
|
+
*
|
|
964
|
+
* @type {ConversationAnticipate}
|
|
899
965
|
* @memberof ConversationBase
|
|
900
966
|
*/
|
|
901
|
-
'anticipate'?:
|
|
967
|
+
'anticipate'?: ConversationAnticipate;
|
|
902
968
|
/**
|
|
903
|
-
*
|
|
904
|
-
* @type {
|
|
969
|
+
*
|
|
970
|
+
* @type {CommandConfiguration}
|
|
905
971
|
* @memberof ConversationBase
|
|
906
972
|
*/
|
|
907
|
-
'command'?:
|
|
973
|
+
'command'?: CommandConfiguration;
|
|
908
974
|
/**
|
|
909
975
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
910
976
|
* @type {string}
|
|
@@ -1160,13 +1226,7 @@ export interface ConversationCreateRequest {
|
|
|
1160
1226
|
*/
|
|
1161
1227
|
'$id'?: string;
|
|
1162
1228
|
/**
|
|
1163
|
-
*
|
|
1164
|
-
* @type {string}
|
|
1165
|
-
* @memberof ConversationCreateRequest
|
|
1166
|
-
*/
|
|
1167
|
-
'$business': string;
|
|
1168
|
-
/**
|
|
1169
|
-
* Default agent persona id assigned to the conversation(s)
|
|
1229
|
+
* The user id assigned to this conversation
|
|
1170
1230
|
* @type {string}
|
|
1171
1231
|
* @memberof ConversationCreateRequest
|
|
1172
1232
|
*/
|
|
@@ -1268,17 +1328,17 @@ export interface ConversationCreateRequest {
|
|
|
1268
1328
|
*/
|
|
1269
1329
|
'metadata'?: { [key: string]: any; };
|
|
1270
1330
|
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {
|
|
1331
|
+
*
|
|
1332
|
+
* @type {ConversationAnticipate}
|
|
1273
1333
|
* @memberof ConversationCreateRequest
|
|
1274
1334
|
*/
|
|
1275
|
-
'anticipate'?:
|
|
1335
|
+
'anticipate'?: ConversationAnticipate;
|
|
1276
1336
|
/**
|
|
1277
|
-
*
|
|
1278
|
-
* @type {
|
|
1337
|
+
*
|
|
1338
|
+
* @type {CommandConfiguration}
|
|
1279
1339
|
* @memberof ConversationCreateRequest
|
|
1280
1340
|
*/
|
|
1281
|
-
'command'?:
|
|
1341
|
+
'command'?: CommandConfiguration;
|
|
1282
1342
|
/**
|
|
1283
1343
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
1284
1344
|
* @type {string}
|
|
@@ -1399,13 +1459,7 @@ export interface ConversationGetResponse {
|
|
|
1399
1459
|
*/
|
|
1400
1460
|
'$id': string;
|
|
1401
1461
|
/**
|
|
1402
|
-
*
|
|
1403
|
-
* @type {string}
|
|
1404
|
-
* @memberof ConversationGetResponse
|
|
1405
|
-
*/
|
|
1406
|
-
'$business': string;
|
|
1407
|
-
/**
|
|
1408
|
-
* Default agent persona id assigned to the conversation(s)
|
|
1462
|
+
* The user id assigned to this conversation
|
|
1409
1463
|
* @type {string}
|
|
1410
1464
|
* @memberof ConversationGetResponse
|
|
1411
1465
|
*/
|
|
@@ -1507,17 +1561,17 @@ export interface ConversationGetResponse {
|
|
|
1507
1561
|
*/
|
|
1508
1562
|
'metadata'?: { [key: string]: any; };
|
|
1509
1563
|
/**
|
|
1510
|
-
*
|
|
1511
|
-
* @type {
|
|
1564
|
+
*
|
|
1565
|
+
* @type {ConversationAnticipate}
|
|
1512
1566
|
* @memberof ConversationGetResponse
|
|
1513
1567
|
*/
|
|
1514
|
-
'anticipate'?:
|
|
1568
|
+
'anticipate'?: ConversationAnticipate;
|
|
1515
1569
|
/**
|
|
1516
|
-
*
|
|
1517
|
-
* @type {
|
|
1570
|
+
*
|
|
1571
|
+
* @type {CommandConfiguration}
|
|
1518
1572
|
* @memberof ConversationGetResponse
|
|
1519
1573
|
*/
|
|
1520
|
-
'command'?:
|
|
1574
|
+
'command'?: CommandConfiguration;
|
|
1521
1575
|
/**
|
|
1522
1576
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
1523
1577
|
* @type {string}
|
|
@@ -1644,13 +1698,7 @@ export interface ConversationUpdateRequest {
|
|
|
1644
1698
|
*/
|
|
1645
1699
|
'$id': string;
|
|
1646
1700
|
/**
|
|
1647
|
-
*
|
|
1648
|
-
* @type {string}
|
|
1649
|
-
* @memberof ConversationUpdateRequest
|
|
1650
|
-
*/
|
|
1651
|
-
'$business'?: string;
|
|
1652
|
-
/**
|
|
1653
|
-
* Default agent persona id assigned to the conversation(s)
|
|
1701
|
+
* The user id assigned to this conversation
|
|
1654
1702
|
* @type {string}
|
|
1655
1703
|
* @memberof ConversationUpdateRequest
|
|
1656
1704
|
*/
|
|
@@ -1752,17 +1800,17 @@ export interface ConversationUpdateRequest {
|
|
|
1752
1800
|
*/
|
|
1753
1801
|
'metadata'?: { [key: string]: any; };
|
|
1754
1802
|
/**
|
|
1755
|
-
*
|
|
1756
|
-
* @type {
|
|
1803
|
+
*
|
|
1804
|
+
* @type {ConversationAnticipate}
|
|
1757
1805
|
* @memberof ConversationUpdateRequest
|
|
1758
1806
|
*/
|
|
1759
|
-
'anticipate'?:
|
|
1807
|
+
'anticipate'?: ConversationAnticipate;
|
|
1760
1808
|
/**
|
|
1761
|
-
*
|
|
1762
|
-
* @type {
|
|
1809
|
+
*
|
|
1810
|
+
* @type {CommandConfiguration}
|
|
1763
1811
|
* @memberof ConversationUpdateRequest
|
|
1764
1812
|
*/
|
|
1765
|
-
'command'?:
|
|
1813
|
+
'command'?: CommandConfiguration;
|
|
1766
1814
|
/**
|
|
1767
1815
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
1768
1816
|
* @type {string}
|
|
@@ -1865,13 +1913,7 @@ export interface ConversationWithId {
|
|
|
1865
1913
|
*/
|
|
1866
1914
|
'$id': string;
|
|
1867
1915
|
/**
|
|
1868
|
-
*
|
|
1869
|
-
* @type {string}
|
|
1870
|
-
* @memberof ConversationWithId
|
|
1871
|
-
*/
|
|
1872
|
-
'$business': string;
|
|
1873
|
-
/**
|
|
1874
|
-
* Default agent persona id assigned to the conversation(s)
|
|
1916
|
+
* The user id assigned to this conversation
|
|
1875
1917
|
* @type {string}
|
|
1876
1918
|
* @memberof ConversationWithId
|
|
1877
1919
|
*/
|
|
@@ -1973,17 +2015,17 @@ export interface ConversationWithId {
|
|
|
1973
2015
|
*/
|
|
1974
2016
|
'metadata'?: { [key: string]: any; };
|
|
1975
2017
|
/**
|
|
1976
|
-
*
|
|
1977
|
-
* @type {
|
|
2018
|
+
*
|
|
2019
|
+
* @type {ConversationAnticipate}
|
|
1978
2020
|
* @memberof ConversationWithId
|
|
1979
2021
|
*/
|
|
1980
|
-
'anticipate'?:
|
|
2022
|
+
'anticipate'?: ConversationAnticipate;
|
|
1981
2023
|
/**
|
|
1982
|
-
*
|
|
1983
|
-
* @type {
|
|
2024
|
+
*
|
|
2025
|
+
* @type {CommandConfiguration}
|
|
1984
2026
|
* @memberof ConversationWithId
|
|
1985
2027
|
*/
|
|
1986
|
-
'command'?:
|
|
2028
|
+
'command'?: CommandConfiguration;
|
|
1987
2029
|
/**
|
|
1988
2030
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
1989
2031
|
* @type {string}
|
|
@@ -3993,13 +4035,7 @@ export interface ListConversationsResponseInner {
|
|
|
3993
4035
|
*/
|
|
3994
4036
|
'$id': string;
|
|
3995
4037
|
/**
|
|
3996
|
-
*
|
|
3997
|
-
* @type {string}
|
|
3998
|
-
* @memberof ListConversationsResponseInner
|
|
3999
|
-
*/
|
|
4000
|
-
'$business': string;
|
|
4001
|
-
/**
|
|
4002
|
-
* Default agent persona id assigned to the conversation(s)
|
|
4038
|
+
* The user id assigned to this conversation
|
|
4003
4039
|
* @type {string}
|
|
4004
4040
|
* @memberof ListConversationsResponseInner
|
|
4005
4041
|
*/
|
|
@@ -4101,17 +4137,17 @@ export interface ListConversationsResponseInner {
|
|
|
4101
4137
|
*/
|
|
4102
4138
|
'metadata'?: { [key: string]: any; };
|
|
4103
4139
|
/**
|
|
4104
|
-
*
|
|
4105
|
-
* @type {
|
|
4140
|
+
*
|
|
4141
|
+
* @type {ConversationAnticipate}
|
|
4106
4142
|
* @memberof ListConversationsResponseInner
|
|
4107
4143
|
*/
|
|
4108
|
-
'anticipate'?:
|
|
4144
|
+
'anticipate'?: ConversationAnticipate;
|
|
4109
4145
|
/**
|
|
4110
|
-
*
|
|
4111
|
-
* @type {
|
|
4146
|
+
*
|
|
4147
|
+
* @type {CommandConfiguration}
|
|
4112
4148
|
* @memberof ListConversationsResponseInner
|
|
4113
4149
|
*/
|
|
4114
|
-
'command'?:
|
|
4150
|
+
'command'?: CommandConfiguration;
|
|
4115
4151
|
/**
|
|
4116
4152
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
4117
4153
|
* @type {string}
|
|
@@ -6869,13 +6905,7 @@ export interface ScheduleCreateRequest {
|
|
|
6869
6905
|
*/
|
|
6870
6906
|
'$id'?: string;
|
|
6871
6907
|
/**
|
|
6872
|
-
*
|
|
6873
|
-
* @type {string}
|
|
6874
|
-
* @memberof ScheduleCreateRequest
|
|
6875
|
-
*/
|
|
6876
|
-
'$business': string;
|
|
6877
|
-
/**
|
|
6878
|
-
* Default agent persona id assigned to the conversation(s)
|
|
6908
|
+
* The user id assigned to this conversation
|
|
6879
6909
|
* @type {string}
|
|
6880
6910
|
* @memberof ScheduleCreateRequest
|
|
6881
6911
|
*/
|
|
@@ -6977,17 +7007,17 @@ export interface ScheduleCreateRequest {
|
|
|
6977
7007
|
*/
|
|
6978
7008
|
'metadata'?: { [key: string]: any; };
|
|
6979
7009
|
/**
|
|
6980
|
-
*
|
|
6981
|
-
* @type {
|
|
7010
|
+
*
|
|
7011
|
+
* @type {ConversationAnticipate}
|
|
6982
7012
|
* @memberof ScheduleCreateRequest
|
|
6983
7013
|
*/
|
|
6984
|
-
'anticipate'?:
|
|
7014
|
+
'anticipate'?: ConversationAnticipate;
|
|
6985
7015
|
/**
|
|
6986
|
-
*
|
|
6987
|
-
* @type {
|
|
7016
|
+
*
|
|
7017
|
+
* @type {CommandConfiguration}
|
|
6988
7018
|
* @memberof ScheduleCreateRequest
|
|
6989
7019
|
*/
|
|
6990
|
-
'command'?:
|
|
7020
|
+
'command'?: CommandConfiguration;
|
|
6991
7021
|
/**
|
|
6992
7022
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
6993
7023
|
* @type {string}
|
|
@@ -7095,13 +7125,7 @@ export interface ScheduleGetResponse {
|
|
|
7095
7125
|
*/
|
|
7096
7126
|
'$id'?: string;
|
|
7097
7127
|
/**
|
|
7098
|
-
*
|
|
7099
|
-
* @type {string}
|
|
7100
|
-
* @memberof ScheduleGetResponse
|
|
7101
|
-
*/
|
|
7102
|
-
'$business': string;
|
|
7103
|
-
/**
|
|
7104
|
-
* Default agent persona id assigned to the conversation(s)
|
|
7128
|
+
* The user id assigned to this conversation
|
|
7105
7129
|
* @type {string}
|
|
7106
7130
|
* @memberof ScheduleGetResponse
|
|
7107
7131
|
*/
|
|
@@ -7203,17 +7227,17 @@ export interface ScheduleGetResponse {
|
|
|
7203
7227
|
*/
|
|
7204
7228
|
'metadata'?: { [key: string]: any; };
|
|
7205
7229
|
/**
|
|
7206
|
-
*
|
|
7207
|
-
* @type {
|
|
7230
|
+
*
|
|
7231
|
+
* @type {ConversationAnticipate}
|
|
7208
7232
|
* @memberof ScheduleGetResponse
|
|
7209
7233
|
*/
|
|
7210
|
-
'anticipate'?:
|
|
7234
|
+
'anticipate'?: ConversationAnticipate;
|
|
7211
7235
|
/**
|
|
7212
|
-
*
|
|
7213
|
-
* @type {
|
|
7236
|
+
*
|
|
7237
|
+
* @type {CommandConfiguration}
|
|
7214
7238
|
* @memberof ScheduleGetResponse
|
|
7215
7239
|
*/
|
|
7216
|
-
'command'?:
|
|
7240
|
+
'command'?: CommandConfiguration;
|
|
7217
7241
|
/**
|
|
7218
7242
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
7219
7243
|
* @type {string}
|
|
@@ -7295,13 +7319,7 @@ export interface ScheduleGroupCreateRequest {
|
|
|
7295
7319
|
*/
|
|
7296
7320
|
'$id'?: string;
|
|
7297
7321
|
/**
|
|
7298
|
-
*
|
|
7299
|
-
* @type {string}
|
|
7300
|
-
* @memberof ScheduleGroupCreateRequest
|
|
7301
|
-
*/
|
|
7302
|
-
'$business'?: string;
|
|
7303
|
-
/**
|
|
7304
|
-
* Default agent persona id assigned to the conversation(s)
|
|
7322
|
+
* The user id assigned to this conversation
|
|
7305
7323
|
* @type {string}
|
|
7306
7324
|
* @memberof ScheduleGroupCreateRequest
|
|
7307
7325
|
*/
|
|
@@ -7403,17 +7421,17 @@ export interface ScheduleGroupCreateRequest {
|
|
|
7403
7421
|
*/
|
|
7404
7422
|
'metadata'?: { [key: string]: any; };
|
|
7405
7423
|
/**
|
|
7406
|
-
*
|
|
7407
|
-
* @type {
|
|
7424
|
+
*
|
|
7425
|
+
* @type {ConversationAnticipate}
|
|
7408
7426
|
* @memberof ScheduleGroupCreateRequest
|
|
7409
7427
|
*/
|
|
7410
|
-
'anticipate'?:
|
|
7428
|
+
'anticipate'?: ConversationAnticipate;
|
|
7411
7429
|
/**
|
|
7412
|
-
*
|
|
7413
|
-
* @type {
|
|
7430
|
+
*
|
|
7431
|
+
* @type {CommandConfiguration}
|
|
7414
7432
|
* @memberof ScheduleGroupCreateRequest
|
|
7415
7433
|
*/
|
|
7416
|
-
'command'?:
|
|
7434
|
+
'command'?: CommandConfiguration;
|
|
7417
7435
|
/**
|
|
7418
7436
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
7419
7437
|
* @type {string}
|
|
@@ -7527,13 +7545,7 @@ export interface ScheduleGroupGetResponse {
|
|
|
7527
7545
|
*/
|
|
7528
7546
|
'$id': string;
|
|
7529
7547
|
/**
|
|
7530
|
-
*
|
|
7531
|
-
* @type {string}
|
|
7532
|
-
* @memberof ScheduleGroupGetResponse
|
|
7533
|
-
*/
|
|
7534
|
-
'$business'?: string;
|
|
7535
|
-
/**
|
|
7536
|
-
* Default agent persona id assigned to the conversation(s)
|
|
7548
|
+
* The user id assigned to this conversation
|
|
7537
7549
|
* @type {string}
|
|
7538
7550
|
* @memberof ScheduleGroupGetResponse
|
|
7539
7551
|
*/
|
|
@@ -7635,17 +7647,17 @@ export interface ScheduleGroupGetResponse {
|
|
|
7635
7647
|
*/
|
|
7636
7648
|
'metadata'?: { [key: string]: any; };
|
|
7637
7649
|
/**
|
|
7638
|
-
*
|
|
7639
|
-
* @type {
|
|
7650
|
+
*
|
|
7651
|
+
* @type {ConversationAnticipate}
|
|
7640
7652
|
* @memberof ScheduleGroupGetResponse
|
|
7641
7653
|
*/
|
|
7642
|
-
'anticipate'?:
|
|
7654
|
+
'anticipate'?: ConversationAnticipate;
|
|
7643
7655
|
/**
|
|
7644
|
-
*
|
|
7645
|
-
* @type {
|
|
7656
|
+
*
|
|
7657
|
+
* @type {CommandConfiguration}
|
|
7646
7658
|
* @memberof ScheduleGroupGetResponse
|
|
7647
7659
|
*/
|
|
7648
|
-
'command'?:
|
|
7660
|
+
'command'?: CommandConfiguration;
|
|
7649
7661
|
/**
|
|
7650
7662
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
7651
7663
|
* @type {string}
|
|
@@ -7771,13 +7783,7 @@ export interface ScheduleGroupUpdateRequest {
|
|
|
7771
7783
|
*/
|
|
7772
7784
|
'$id': string;
|
|
7773
7785
|
/**
|
|
7774
|
-
*
|
|
7775
|
-
* @type {string}
|
|
7776
|
-
* @memberof ScheduleGroupUpdateRequest
|
|
7777
|
-
*/
|
|
7778
|
-
'$business'?: string;
|
|
7779
|
-
/**
|
|
7780
|
-
* Default agent persona id assigned to the conversation(s)
|
|
7786
|
+
* The user id assigned to this conversation
|
|
7781
7787
|
* @type {string}
|
|
7782
7788
|
* @memberof ScheduleGroupUpdateRequest
|
|
7783
7789
|
*/
|
|
@@ -7879,17 +7885,17 @@ export interface ScheduleGroupUpdateRequest {
|
|
|
7879
7885
|
*/
|
|
7880
7886
|
'metadata'?: { [key: string]: any; };
|
|
7881
7887
|
/**
|
|
7882
|
-
*
|
|
7883
|
-
* @type {
|
|
7888
|
+
*
|
|
7889
|
+
* @type {ConversationAnticipate}
|
|
7884
7890
|
* @memberof ScheduleGroupUpdateRequest
|
|
7885
7891
|
*/
|
|
7886
|
-
'anticipate'?:
|
|
7892
|
+
'anticipate'?: ConversationAnticipate;
|
|
7887
7893
|
/**
|
|
7888
|
-
*
|
|
7889
|
-
* @type {
|
|
7894
|
+
*
|
|
7895
|
+
* @type {CommandConfiguration}
|
|
7890
7896
|
* @memberof ScheduleGroupUpdateRequest
|
|
7891
7897
|
*/
|
|
7892
|
-
'command'?:
|
|
7898
|
+
'command'?: CommandConfiguration;
|
|
7893
7899
|
/**
|
|
7894
7900
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
7895
7901
|
* @type {string}
|
|
@@ -8028,13 +8034,7 @@ export interface ScheduleUpdateRequest {
|
|
|
8028
8034
|
*/
|
|
8029
8035
|
'$id'?: string;
|
|
8030
8036
|
/**
|
|
8031
|
-
*
|
|
8032
|
-
* @type {string}
|
|
8033
|
-
* @memberof ScheduleUpdateRequest
|
|
8034
|
-
*/
|
|
8035
|
-
'$business': string;
|
|
8036
|
-
/**
|
|
8037
|
-
* Default agent persona id assigned to the conversation(s)
|
|
8037
|
+
* The user id assigned to this conversation
|
|
8038
8038
|
* @type {string}
|
|
8039
8039
|
* @memberof ScheduleUpdateRequest
|
|
8040
8040
|
*/
|
|
@@ -8136,17 +8136,17 @@ export interface ScheduleUpdateRequest {
|
|
|
8136
8136
|
*/
|
|
8137
8137
|
'metadata'?: { [key: string]: any; };
|
|
8138
8138
|
/**
|
|
8139
|
-
*
|
|
8140
|
-
* @type {
|
|
8139
|
+
*
|
|
8140
|
+
* @type {ConversationAnticipate}
|
|
8141
8141
|
* @memberof ScheduleUpdateRequest
|
|
8142
8142
|
*/
|
|
8143
|
-
'anticipate'?:
|
|
8143
|
+
'anticipate'?: ConversationAnticipate;
|
|
8144
8144
|
/**
|
|
8145
|
-
*
|
|
8146
|
-
* @type {
|
|
8145
|
+
*
|
|
8146
|
+
* @type {CommandConfiguration}
|
|
8147
8147
|
* @memberof ScheduleUpdateRequest
|
|
8148
8148
|
*/
|
|
8149
|
-
'command'?:
|
|
8149
|
+
'command'?: CommandConfiguration;
|
|
8150
8150
|
/**
|
|
8151
8151
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
8152
8152
|
* @type {string}
|
|
@@ -8248,13 +8248,7 @@ export interface ScheduledConversation {
|
|
|
8248
8248
|
*/
|
|
8249
8249
|
'$id'?: string;
|
|
8250
8250
|
/**
|
|
8251
|
-
*
|
|
8252
|
-
* @type {string}
|
|
8253
|
-
* @memberof ScheduledConversation
|
|
8254
|
-
*/
|
|
8255
|
-
'$business': string;
|
|
8256
|
-
/**
|
|
8257
|
-
* Default agent persona id assigned to the conversation(s)
|
|
8251
|
+
* The user id assigned to this conversation
|
|
8258
8252
|
* @type {string}
|
|
8259
8253
|
* @memberof ScheduledConversation
|
|
8260
8254
|
*/
|
|
@@ -8356,17 +8350,17 @@ export interface ScheduledConversation {
|
|
|
8356
8350
|
*/
|
|
8357
8351
|
'metadata'?: { [key: string]: any; };
|
|
8358
8352
|
/**
|
|
8359
|
-
*
|
|
8360
|
-
* @type {
|
|
8353
|
+
*
|
|
8354
|
+
* @type {ConversationAnticipate}
|
|
8361
8355
|
* @memberof ScheduledConversation
|
|
8362
8356
|
*/
|
|
8363
|
-
'anticipate'?:
|
|
8357
|
+
'anticipate'?: ConversationAnticipate;
|
|
8364
8358
|
/**
|
|
8365
|
-
*
|
|
8366
|
-
* @type {
|
|
8359
|
+
*
|
|
8360
|
+
* @type {CommandConfiguration}
|
|
8367
8361
|
* @memberof ScheduledConversation
|
|
8368
8362
|
*/
|
|
8369
|
-
'command'?:
|
|
8363
|
+
'command'?: CommandConfiguration;
|
|
8370
8364
|
/**
|
|
8371
8365
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
8372
8366
|
* @type {string}
|
|
@@ -8443,13 +8437,7 @@ export interface ScheduledConversationGroup {
|
|
|
8443
8437
|
*/
|
|
8444
8438
|
'$id'?: string;
|
|
8445
8439
|
/**
|
|
8446
|
-
*
|
|
8447
|
-
* @type {string}
|
|
8448
|
-
* @memberof ScheduledConversationGroup
|
|
8449
|
-
*/
|
|
8450
|
-
'$business'?: string;
|
|
8451
|
-
/**
|
|
8452
|
-
* Default agent persona id assigned to the conversation(s)
|
|
8440
|
+
* The user id assigned to this conversation
|
|
8453
8441
|
* @type {string}
|
|
8454
8442
|
* @memberof ScheduledConversationGroup
|
|
8455
8443
|
*/
|
|
@@ -8551,17 +8539,17 @@ export interface ScheduledConversationGroup {
|
|
|
8551
8539
|
*/
|
|
8552
8540
|
'metadata'?: { [key: string]: any; };
|
|
8553
8541
|
/**
|
|
8554
|
-
*
|
|
8555
|
-
* @type {
|
|
8542
|
+
*
|
|
8543
|
+
* @type {ConversationAnticipate}
|
|
8556
8544
|
* @memberof ScheduledConversationGroup
|
|
8557
8545
|
*/
|
|
8558
|
-
'anticipate'?:
|
|
8546
|
+
'anticipate'?: ConversationAnticipate;
|
|
8559
8547
|
/**
|
|
8560
|
-
*
|
|
8561
|
-
* @type {
|
|
8548
|
+
*
|
|
8549
|
+
* @type {CommandConfiguration}
|
|
8562
8550
|
* @memberof ScheduledConversationGroup
|
|
8563
8551
|
*/
|
|
8564
|
-
'command'?:
|
|
8552
|
+
'command'?: CommandConfiguration;
|
|
8565
8553
|
/**
|
|
8566
8554
|
* Overrides the Persona Model ingress mode for this conversation.
|
|
8567
8555
|
* @type {string}
|