@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 CHANGED
@@ -293,6 +293,25 @@ export interface BlockInfo {
293
293
  */
294
294
  'time'?: string;
295
295
  }
296
+ /**
297
+ * Command-flow configuration attached to this conversation.
298
+ * @export
299
+ * @interface CommandConfiguration
300
+ */
301
+ export interface CommandConfiguration {
302
+ /**
303
+ * Command entity id.
304
+ * @type {string}
305
+ * @memberof CommandConfiguration
306
+ */
307
+ 'entity': string;
308
+ /**
309
+ * Command route/path.
310
+ * @type {string}
311
+ * @memberof CommandConfiguration
312
+ */
313
+ 'path': string;
314
+ }
296
315
  /**
297
316
  * @type Condition
298
317
  * @export
@@ -612,13 +631,7 @@ export interface Conversation {
612
631
  */
613
632
  '$id'?: string;
614
633
  /**
615
- * Business/organization this conversation belongs to
616
- * @type {string}
617
- * @memberof Conversation
618
- */
619
- '$business': string;
620
- /**
621
- * Default agent persona id assigned to the conversation(s)
634
+ * The user id assigned to this conversation
622
635
  * @type {string}
623
636
  * @memberof Conversation
624
637
  */
@@ -722,21 +735,17 @@ export interface Conversation {
722
735
  [key: string]: any;
723
736
  };
724
737
  /**
725
- * Metadata for anticipating a preflight response.
726
- * @type {{ [key: string]: any; }}
738
+ *
739
+ * @type {ConversationAnticipate}
727
740
  * @memberof Conversation
728
741
  */
729
- 'anticipate'?: {
730
- [key: string]: any;
731
- };
742
+ 'anticipate'?: ConversationAnticipate;
732
743
  /**
733
- * Command-flow configuration attached to this conversation.
734
- * @type {{ [key: string]: any; }}
744
+ *
745
+ * @type {CommandConfiguration}
735
746
  * @memberof Conversation
736
747
  */
737
- 'command'?: {
738
- [key: string]: any;
739
- };
748
+ 'command'?: CommandConfiguration;
740
749
  /**
741
750
  * Overrides the Persona Model ingress mode for this conversation.
742
751
  * @type {string}
@@ -759,6 +768,64 @@ export declare const ConversationIngressEnum: {
759
768
  readonly Webhook: "webhook";
760
769
  };
761
770
  export type ConversationIngressEnum = typeof ConversationIngressEnum[keyof typeof ConversationIngressEnum];
771
+ /**
772
+ * Metadata for anticipating a preflight response.
773
+ * @export
774
+ * @interface ConversationAnticipate
775
+ */
776
+ export interface ConversationAnticipate {
777
+ /**
778
+ * Determines the runtime to address the next response.
779
+ * @type {string}
780
+ * @memberof ConversationAnticipate
781
+ */
782
+ 'type': ConversationAnticipateTypeEnum;
783
+ /**
784
+ * Slot values collected or expected by anticipation logic.
785
+ * @type {{ [key: string]: Array<any>; }}
786
+ * @memberof ConversationAnticipate
787
+ */
788
+ 'slots': {
789
+ [key: string]: Array<any>;
790
+ };
791
+ /**
792
+ * For type \'did\'.
793
+ * @type {string}
794
+ * @memberof ConversationAnticipate
795
+ */
796
+ 'did'?: string;
797
+ /**
798
+ * For literal keywords, this map helps identify which slot the keyword matches.
799
+ * @type {Array<ConversationAnticipateMapInner>}
800
+ * @memberof ConversationAnticipate
801
+ */
802
+ 'map'?: Array<ConversationAnticipateMapInner>;
803
+ }
804
+ export declare const ConversationAnticipateTypeEnum: {
805
+ readonly Did: "did";
806
+ readonly Literal: "literal";
807
+ readonly Context: "context";
808
+ };
809
+ export type ConversationAnticipateTypeEnum = typeof ConversationAnticipateTypeEnum[keyof typeof ConversationAnticipateTypeEnum];
810
+ /**
811
+ *
812
+ * @export
813
+ * @interface ConversationAnticipateMapInner
814
+ */
815
+ export interface ConversationAnticipateMapInner {
816
+ /**
817
+ *
818
+ * @type {string}
819
+ * @memberof ConversationAnticipateMapInner
820
+ */
821
+ 'slot': string;
822
+ /**
823
+ *
824
+ * @type {Array<string>}
825
+ * @memberof ConversationAnticipateMapInner
826
+ */
827
+ 'keywords': Array<string>;
828
+ }
762
829
  /**
763
830
  * Base props all conversation types will have
764
831
  * @export
@@ -772,13 +839,7 @@ export interface ConversationBase {
772
839
  */
773
840
  '$id'?: string;
774
841
  /**
775
- * Business/organization this conversation belongs to
776
- * @type {string}
777
- * @memberof ConversationBase
778
- */
779
- '$business'?: string;
780
- /**
781
- * Default agent persona id assigned to the conversation(s)
842
+ * The user id assigned to this conversation
782
843
  * @type {string}
783
844
  * @memberof ConversationBase
784
845
  */
@@ -882,21 +943,17 @@ export interface ConversationBase {
882
943
  [key: string]: any;
883
944
  };
884
945
  /**
885
- * Metadata for anticipating a preflight response.
886
- * @type {{ [key: string]: any; }}
946
+ *
947
+ * @type {ConversationAnticipate}
887
948
  * @memberof ConversationBase
888
949
  */
889
- 'anticipate'?: {
890
- [key: string]: any;
891
- };
950
+ 'anticipate'?: ConversationAnticipate;
892
951
  /**
893
- * Command-flow configuration attached to this conversation.
894
- * @type {{ [key: string]: any; }}
952
+ *
953
+ * @type {CommandConfiguration}
895
954
  * @memberof ConversationBase
896
955
  */
897
- 'command'?: {
898
- [key: string]: any;
899
- };
956
+ 'command'?: CommandConfiguration;
900
957
  /**
901
958
  * Overrides the Persona Model ingress mode for this conversation.
902
959
  * @type {string}
@@ -1137,13 +1194,7 @@ export interface ConversationCreateRequest {
1137
1194
  */
1138
1195
  '$id'?: string;
1139
1196
  /**
1140
- * Business/organization this conversation belongs to
1141
- * @type {string}
1142
- * @memberof ConversationCreateRequest
1143
- */
1144
- '$business': string;
1145
- /**
1146
- * Default agent persona id assigned to the conversation(s)
1197
+ * The user id assigned to this conversation
1147
1198
  * @type {string}
1148
1199
  * @memberof ConversationCreateRequest
1149
1200
  */
@@ -1247,21 +1298,17 @@ export interface ConversationCreateRequest {
1247
1298
  [key: string]: any;
1248
1299
  };
1249
1300
  /**
1250
- * Metadata for anticipating a preflight response.
1251
- * @type {{ [key: string]: any; }}
1301
+ *
1302
+ * @type {ConversationAnticipate}
1252
1303
  * @memberof ConversationCreateRequest
1253
1304
  */
1254
- 'anticipate'?: {
1255
- [key: string]: any;
1256
- };
1305
+ 'anticipate'?: ConversationAnticipate;
1257
1306
  /**
1258
- * Command-flow configuration attached to this conversation.
1259
- * @type {{ [key: string]: any; }}
1307
+ *
1308
+ * @type {CommandConfiguration}
1260
1309
  * @memberof ConversationCreateRequest
1261
1310
  */
1262
- 'command'?: {
1263
- [key: string]: any;
1264
- };
1311
+ 'command'?: CommandConfiguration;
1265
1312
  /**
1266
1313
  * Overrides the Persona Model ingress mode for this conversation.
1267
1314
  * @type {string}
@@ -1378,13 +1425,7 @@ export interface ConversationGetResponse {
1378
1425
  */
1379
1426
  '$id': string;
1380
1427
  /**
1381
- * Business/organization this conversation belongs to
1382
- * @type {string}
1383
- * @memberof ConversationGetResponse
1384
- */
1385
- '$business': string;
1386
- /**
1387
- * Default agent persona id assigned to the conversation(s)
1428
+ * The user id assigned to this conversation
1388
1429
  * @type {string}
1389
1430
  * @memberof ConversationGetResponse
1390
1431
  */
@@ -1488,21 +1529,17 @@ export interface ConversationGetResponse {
1488
1529
  [key: string]: any;
1489
1530
  };
1490
1531
  /**
1491
- * Metadata for anticipating a preflight response.
1492
- * @type {{ [key: string]: any; }}
1532
+ *
1533
+ * @type {ConversationAnticipate}
1493
1534
  * @memberof ConversationGetResponse
1494
1535
  */
1495
- 'anticipate'?: {
1496
- [key: string]: any;
1497
- };
1536
+ 'anticipate'?: ConversationAnticipate;
1498
1537
  /**
1499
- * Command-flow configuration attached to this conversation.
1500
- * @type {{ [key: string]: any; }}
1538
+ *
1539
+ * @type {CommandConfiguration}
1501
1540
  * @memberof ConversationGetResponse
1502
1541
  */
1503
- 'command'?: {
1504
- [key: string]: any;
1505
- };
1542
+ 'command'?: CommandConfiguration;
1506
1543
  /**
1507
1544
  * Overrides the Persona Model ingress mode for this conversation.
1508
1545
  * @type {string}
@@ -1625,13 +1662,7 @@ export interface ConversationUpdateRequest {
1625
1662
  */
1626
1663
  '$id': string;
1627
1664
  /**
1628
- * Business/organization this conversation belongs to
1629
- * @type {string}
1630
- * @memberof ConversationUpdateRequest
1631
- */
1632
- '$business'?: string;
1633
- /**
1634
- * Default agent persona id assigned to the conversation(s)
1665
+ * The user id assigned to this conversation
1635
1666
  * @type {string}
1636
1667
  * @memberof ConversationUpdateRequest
1637
1668
  */
@@ -1735,21 +1766,17 @@ export interface ConversationUpdateRequest {
1735
1766
  [key: string]: any;
1736
1767
  };
1737
1768
  /**
1738
- * Metadata for anticipating a preflight response.
1739
- * @type {{ [key: string]: any; }}
1769
+ *
1770
+ * @type {ConversationAnticipate}
1740
1771
  * @memberof ConversationUpdateRequest
1741
1772
  */
1742
- 'anticipate'?: {
1743
- [key: string]: any;
1744
- };
1773
+ 'anticipate'?: ConversationAnticipate;
1745
1774
  /**
1746
- * Command-flow configuration attached to this conversation.
1747
- * @type {{ [key: string]: any; }}
1775
+ *
1776
+ * @type {CommandConfiguration}
1748
1777
  * @memberof ConversationUpdateRequest
1749
1778
  */
1750
- 'command'?: {
1751
- [key: string]: any;
1752
- };
1779
+ 'command'?: CommandConfiguration;
1753
1780
  /**
1754
1781
  * Overrides the Persona Model ingress mode for this conversation.
1755
1782
  * @type {string}
@@ -1848,13 +1875,7 @@ export interface ConversationWithId {
1848
1875
  */
1849
1876
  '$id': string;
1850
1877
  /**
1851
- * Business/organization this conversation belongs to
1852
- * @type {string}
1853
- * @memberof ConversationWithId
1854
- */
1855
- '$business': string;
1856
- /**
1857
- * Default agent persona id assigned to the conversation(s)
1878
+ * The user id assigned to this conversation
1858
1879
  * @type {string}
1859
1880
  * @memberof ConversationWithId
1860
1881
  */
@@ -1958,21 +1979,17 @@ export interface ConversationWithId {
1958
1979
  [key: string]: any;
1959
1980
  };
1960
1981
  /**
1961
- * Metadata for anticipating a preflight response.
1962
- * @type {{ [key: string]: any; }}
1982
+ *
1983
+ * @type {ConversationAnticipate}
1963
1984
  * @memberof ConversationWithId
1964
1985
  */
1965
- 'anticipate'?: {
1966
- [key: string]: any;
1967
- };
1986
+ 'anticipate'?: ConversationAnticipate;
1968
1987
  /**
1969
- * Command-flow configuration attached to this conversation.
1970
- * @type {{ [key: string]: any; }}
1988
+ *
1989
+ * @type {CommandConfiguration}
1971
1990
  * @memberof ConversationWithId
1972
1991
  */
1973
- 'command'?: {
1974
- [key: string]: any;
1975
- };
1992
+ 'command'?: CommandConfiguration;
1976
1993
  /**
1977
1994
  * Overrides the Persona Model ingress mode for this conversation.
1978
1995
  * @type {string}
@@ -3959,13 +3976,7 @@ export interface ListConversationsResponseInner {
3959
3976
  */
3960
3977
  '$id': string;
3961
3978
  /**
3962
- * Business/organization this conversation belongs to
3963
- * @type {string}
3964
- * @memberof ListConversationsResponseInner
3965
- */
3966
- '$business': string;
3967
- /**
3968
- * Default agent persona id assigned to the conversation(s)
3979
+ * The user id assigned to this conversation
3969
3980
  * @type {string}
3970
3981
  * @memberof ListConversationsResponseInner
3971
3982
  */
@@ -4069,21 +4080,17 @@ export interface ListConversationsResponseInner {
4069
4080
  [key: string]: any;
4070
4081
  };
4071
4082
  /**
4072
- * Metadata for anticipating a preflight response.
4073
- * @type {{ [key: string]: any; }}
4083
+ *
4084
+ * @type {ConversationAnticipate}
4074
4085
  * @memberof ListConversationsResponseInner
4075
4086
  */
4076
- 'anticipate'?: {
4077
- [key: string]: any;
4078
- };
4087
+ 'anticipate'?: ConversationAnticipate;
4079
4088
  /**
4080
- * Command-flow configuration attached to this conversation.
4081
- * @type {{ [key: string]: any; }}
4089
+ *
4090
+ * @type {CommandConfiguration}
4082
4091
  * @memberof ListConversationsResponseInner
4083
4092
  */
4084
- 'command'?: {
4085
- [key: string]: any;
4086
- };
4093
+ 'command'?: CommandConfiguration;
4087
4094
  /**
4088
4095
  * Overrides the Persona Model ingress mode for this conversation.
4089
4096
  * @type {string}
@@ -6748,13 +6755,7 @@ export interface ScheduleCreateRequest {
6748
6755
  */
6749
6756
  '$id'?: string;
6750
6757
  /**
6751
- * Business/organization this conversation belongs to
6752
- * @type {string}
6753
- * @memberof ScheduleCreateRequest
6754
- */
6755
- '$business': string;
6756
- /**
6757
- * Default agent persona id assigned to the conversation(s)
6758
+ * The user id assigned to this conversation
6758
6759
  * @type {string}
6759
6760
  * @memberof ScheduleCreateRequest
6760
6761
  */
@@ -6858,21 +6859,17 @@ export interface ScheduleCreateRequest {
6858
6859
  [key: string]: any;
6859
6860
  };
6860
6861
  /**
6861
- * Metadata for anticipating a preflight response.
6862
- * @type {{ [key: string]: any; }}
6862
+ *
6863
+ * @type {ConversationAnticipate}
6863
6864
  * @memberof ScheduleCreateRequest
6864
6865
  */
6865
- 'anticipate'?: {
6866
- [key: string]: any;
6867
- };
6866
+ 'anticipate'?: ConversationAnticipate;
6868
6867
  /**
6869
- * Command-flow configuration attached to this conversation.
6870
- * @type {{ [key: string]: any; }}
6868
+ *
6869
+ * @type {CommandConfiguration}
6871
6870
  * @memberof ScheduleCreateRequest
6872
6871
  */
6873
- 'command'?: {
6874
- [key: string]: any;
6875
- };
6872
+ 'command'?: CommandConfiguration;
6876
6873
  /**
6877
6874
  * Overrides the Persona Model ingress mode for this conversation.
6878
6875
  * @type {string}
@@ -6976,13 +6973,7 @@ export interface ScheduleGetResponse {
6976
6973
  */
6977
6974
  '$id'?: string;
6978
6975
  /**
6979
- * Business/organization this conversation belongs to
6980
- * @type {string}
6981
- * @memberof ScheduleGetResponse
6982
- */
6983
- '$business': string;
6984
- /**
6985
- * Default agent persona id assigned to the conversation(s)
6976
+ * The user id assigned to this conversation
6986
6977
  * @type {string}
6987
6978
  * @memberof ScheduleGetResponse
6988
6979
  */
@@ -7086,21 +7077,17 @@ export interface ScheduleGetResponse {
7086
7077
  [key: string]: any;
7087
7078
  };
7088
7079
  /**
7089
- * Metadata for anticipating a preflight response.
7090
- * @type {{ [key: string]: any; }}
7080
+ *
7081
+ * @type {ConversationAnticipate}
7091
7082
  * @memberof ScheduleGetResponse
7092
7083
  */
7093
- 'anticipate'?: {
7094
- [key: string]: any;
7095
- };
7084
+ 'anticipate'?: ConversationAnticipate;
7096
7085
  /**
7097
- * Command-flow configuration attached to this conversation.
7098
- * @type {{ [key: string]: any; }}
7086
+ *
7087
+ * @type {CommandConfiguration}
7099
7088
  * @memberof ScheduleGetResponse
7100
7089
  */
7101
- 'command'?: {
7102
- [key: string]: any;
7103
- };
7090
+ 'command'?: CommandConfiguration;
7104
7091
  /**
7105
7092
  * Overrides the Persona Model ingress mode for this conversation.
7106
7093
  * @type {string}
@@ -7178,13 +7165,7 @@ export interface ScheduleGroupCreateRequest {
7178
7165
  */
7179
7166
  '$id'?: string;
7180
7167
  /**
7181
- * Business/organization this conversation belongs to
7182
- * @type {string}
7183
- * @memberof ScheduleGroupCreateRequest
7184
- */
7185
- '$business'?: string;
7186
- /**
7187
- * Default agent persona id assigned to the conversation(s)
7168
+ * The user id assigned to this conversation
7188
7169
  * @type {string}
7189
7170
  * @memberof ScheduleGroupCreateRequest
7190
7171
  */
@@ -7288,21 +7269,17 @@ export interface ScheduleGroupCreateRequest {
7288
7269
  [key: string]: any;
7289
7270
  };
7290
7271
  /**
7291
- * Metadata for anticipating a preflight response.
7292
- * @type {{ [key: string]: any; }}
7272
+ *
7273
+ * @type {ConversationAnticipate}
7293
7274
  * @memberof ScheduleGroupCreateRequest
7294
7275
  */
7295
- 'anticipate'?: {
7296
- [key: string]: any;
7297
- };
7276
+ 'anticipate'?: ConversationAnticipate;
7298
7277
  /**
7299
- * Command-flow configuration attached to this conversation.
7300
- * @type {{ [key: string]: any; }}
7278
+ *
7279
+ * @type {CommandConfiguration}
7301
7280
  * @memberof ScheduleGroupCreateRequest
7302
7281
  */
7303
- 'command'?: {
7304
- [key: string]: any;
7305
- };
7282
+ 'command'?: CommandConfiguration;
7306
7283
  /**
7307
7284
  * Overrides the Persona Model ingress mode for this conversation.
7308
7285
  * @type {string}
@@ -7411,13 +7388,7 @@ export interface ScheduleGroupGetResponse {
7411
7388
  */
7412
7389
  '$id': string;
7413
7390
  /**
7414
- * Business/organization this conversation belongs to
7415
- * @type {string}
7416
- * @memberof ScheduleGroupGetResponse
7417
- */
7418
- '$business'?: string;
7419
- /**
7420
- * Default agent persona id assigned to the conversation(s)
7391
+ * The user id assigned to this conversation
7421
7392
  * @type {string}
7422
7393
  * @memberof ScheduleGroupGetResponse
7423
7394
  */
@@ -7521,21 +7492,17 @@ export interface ScheduleGroupGetResponse {
7521
7492
  [key: string]: any;
7522
7493
  };
7523
7494
  /**
7524
- * Metadata for anticipating a preflight response.
7525
- * @type {{ [key: string]: any; }}
7495
+ *
7496
+ * @type {ConversationAnticipate}
7526
7497
  * @memberof ScheduleGroupGetResponse
7527
7498
  */
7528
- 'anticipate'?: {
7529
- [key: string]: any;
7530
- };
7499
+ 'anticipate'?: ConversationAnticipate;
7531
7500
  /**
7532
- * Command-flow configuration attached to this conversation.
7533
- * @type {{ [key: string]: any; }}
7501
+ *
7502
+ * @type {CommandConfiguration}
7534
7503
  * @memberof ScheduleGroupGetResponse
7535
7504
  */
7536
- 'command'?: {
7537
- [key: string]: any;
7538
- };
7505
+ 'command'?: CommandConfiguration;
7539
7506
  /**
7540
7507
  * Overrides the Persona Model ingress mode for this conversation.
7541
7508
  * @type {string}
@@ -7657,13 +7624,7 @@ export interface ScheduleGroupUpdateRequest {
7657
7624
  */
7658
7625
  '$id': string;
7659
7626
  /**
7660
- * Business/organization this conversation belongs to
7661
- * @type {string}
7662
- * @memberof ScheduleGroupUpdateRequest
7663
- */
7664
- '$business'?: string;
7665
- /**
7666
- * Default agent persona id assigned to the conversation(s)
7627
+ * The user id assigned to this conversation
7667
7628
  * @type {string}
7668
7629
  * @memberof ScheduleGroupUpdateRequest
7669
7630
  */
@@ -7767,21 +7728,17 @@ export interface ScheduleGroupUpdateRequest {
7767
7728
  [key: string]: any;
7768
7729
  };
7769
7730
  /**
7770
- * Metadata for anticipating a preflight response.
7771
- * @type {{ [key: string]: any; }}
7731
+ *
7732
+ * @type {ConversationAnticipate}
7772
7733
  * @memberof ScheduleGroupUpdateRequest
7773
7734
  */
7774
- 'anticipate'?: {
7775
- [key: string]: any;
7776
- };
7735
+ 'anticipate'?: ConversationAnticipate;
7777
7736
  /**
7778
- * Command-flow configuration attached to this conversation.
7779
- * @type {{ [key: string]: any; }}
7737
+ *
7738
+ * @type {CommandConfiguration}
7780
7739
  * @memberof ScheduleGroupUpdateRequest
7781
7740
  */
7782
- 'command'?: {
7783
- [key: string]: any;
7784
- };
7741
+ 'command'?: CommandConfiguration;
7785
7742
  /**
7786
7743
  * Overrides the Persona Model ingress mode for this conversation.
7787
7744
  * @type {string}
@@ -7916,13 +7873,7 @@ export interface ScheduleUpdateRequest {
7916
7873
  */
7917
7874
  '$id'?: string;
7918
7875
  /**
7919
- * Business/organization this conversation belongs to
7920
- * @type {string}
7921
- * @memberof ScheduleUpdateRequest
7922
- */
7923
- '$business': string;
7924
- /**
7925
- * Default agent persona id assigned to the conversation(s)
7876
+ * The user id assigned to this conversation
7926
7877
  * @type {string}
7927
7878
  * @memberof ScheduleUpdateRequest
7928
7879
  */
@@ -8026,21 +7977,17 @@ export interface ScheduleUpdateRequest {
8026
7977
  [key: string]: any;
8027
7978
  };
8028
7979
  /**
8029
- * Metadata for anticipating a preflight response.
8030
- * @type {{ [key: string]: any; }}
7980
+ *
7981
+ * @type {ConversationAnticipate}
8031
7982
  * @memberof ScheduleUpdateRequest
8032
7983
  */
8033
- 'anticipate'?: {
8034
- [key: string]: any;
8035
- };
7984
+ 'anticipate'?: ConversationAnticipate;
8036
7985
  /**
8037
- * Command-flow configuration attached to this conversation.
8038
- * @type {{ [key: string]: any; }}
7986
+ *
7987
+ * @type {CommandConfiguration}
8039
7988
  * @memberof ScheduleUpdateRequest
8040
7989
  */
8041
- 'command'?: {
8042
- [key: string]: any;
8043
- };
7990
+ 'command'?: CommandConfiguration;
8044
7991
  /**
8045
7992
  * Overrides the Persona Model ingress mode for this conversation.
8046
7993
  * @type {string}
@@ -8138,13 +8085,7 @@ export interface ScheduledConversation {
8138
8085
  */
8139
8086
  '$id'?: string;
8140
8087
  /**
8141
- * Business/organization this conversation belongs to
8142
- * @type {string}
8143
- * @memberof ScheduledConversation
8144
- */
8145
- '$business': string;
8146
- /**
8147
- * Default agent persona id assigned to the conversation(s)
8088
+ * The user id assigned to this conversation
8148
8089
  * @type {string}
8149
8090
  * @memberof ScheduledConversation
8150
8091
  */
@@ -8248,21 +8189,17 @@ export interface ScheduledConversation {
8248
8189
  [key: string]: any;
8249
8190
  };
8250
8191
  /**
8251
- * Metadata for anticipating a preflight response.
8252
- * @type {{ [key: string]: any; }}
8192
+ *
8193
+ * @type {ConversationAnticipate}
8253
8194
  * @memberof ScheduledConversation
8254
8195
  */
8255
- 'anticipate'?: {
8256
- [key: string]: any;
8257
- };
8196
+ 'anticipate'?: ConversationAnticipate;
8258
8197
  /**
8259
- * Command-flow configuration attached to this conversation.
8260
- * @type {{ [key: string]: any; }}
8198
+ *
8199
+ * @type {CommandConfiguration}
8261
8200
  * @memberof ScheduledConversation
8262
8201
  */
8263
- 'command'?: {
8264
- [key: string]: any;
8265
- };
8202
+ 'command'?: CommandConfiguration;
8266
8203
  /**
8267
8204
  * Overrides the Persona Model ingress mode for this conversation.
8268
8205
  * @type {string}
@@ -8335,13 +8272,7 @@ export interface ScheduledConversationGroup {
8335
8272
  */
8336
8273
  '$id'?: string;
8337
8274
  /**
8338
- * Business/organization this conversation belongs to
8339
- * @type {string}
8340
- * @memberof ScheduledConversationGroup
8341
- */
8342
- '$business'?: string;
8343
- /**
8344
- * Default agent persona id assigned to the conversation(s)
8275
+ * The user id assigned to this conversation
8345
8276
  * @type {string}
8346
8277
  * @memberof ScheduledConversationGroup
8347
8278
  */
@@ -8445,21 +8376,17 @@ export interface ScheduledConversationGroup {
8445
8376
  [key: string]: any;
8446
8377
  };
8447
8378
  /**
8448
- * Metadata for anticipating a preflight response.
8449
- * @type {{ [key: string]: any; }}
8379
+ *
8380
+ * @type {ConversationAnticipate}
8450
8381
  * @memberof ScheduledConversationGroup
8451
8382
  */
8452
- 'anticipate'?: {
8453
- [key: string]: any;
8454
- };
8383
+ 'anticipate'?: ConversationAnticipate;
8455
8384
  /**
8456
- * Command-flow configuration attached to this conversation.
8457
- * @type {{ [key: string]: any; }}
8385
+ *
8386
+ * @type {CommandConfiguration}
8458
8387
  * @memberof ScheduledConversationGroup
8459
8388
  */
8460
- 'command'?: {
8461
- [key: string]: any;
8462
- };
8389
+ 'command'?: CommandConfiguration;
8463
8390
  /**
8464
8391
  * Overrides the Persona Model ingress mode for this conversation.
8465
8392
  * @type {string}