@scout9/admin 1.0.0-alpha.0.0.67 → 1.0.0-alpha.0.0.68

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/src/api.ts CHANGED
@@ -633,10 +633,17 @@ export interface Conversation {
633
633
  * @memberof Conversation
634
634
  */
635
635
  'initialContexts'?: Array<string>;
636
+ /**
637
+ *
638
+ * @type {ConversationChannelProps}
639
+ * @memberof Conversation
640
+ */
641
+ 'channelProps'?: ConversationChannelProps;
636
642
  /**
637
643
  *
638
644
  * @type {ConversationBaseEnvironmentProps}
639
645
  * @memberof Conversation
646
+ * @deprecated
640
647
  */
641
648
  'environmentProps'?: ConversationBaseEnvironmentProps;
642
649
  /**
@@ -652,12 +659,19 @@ export interface Conversation {
652
659
  * @deprecated
653
660
  */
654
661
  '$customer'?: string;
662
+ /**
663
+ *
664
+ * @type {ConversationChannel}
665
+ * @memberof Conversation
666
+ */
667
+ 'channel': ConversationChannel;
655
668
  /**
656
669
  *
657
670
  * @type {ConversationEnvironment}
658
671
  * @memberof Conversation
672
+ * @deprecated
659
673
  */
660
- 'environment': ConversationEnvironment;
674
+ 'environment'?: ConversationEnvironment;
661
675
  /**
662
676
  * Whether this conversation is a test or not
663
677
  * @type {boolean}
@@ -686,12 +700,19 @@ export interface ConversationAllOf {
686
700
  * @deprecated
687
701
  */
688
702
  '$customer'?: string;
703
+ /**
704
+ *
705
+ * @type {ConversationChannel}
706
+ * @memberof ConversationAllOf
707
+ */
708
+ 'channel': ConversationChannel;
689
709
  /**
690
710
  *
691
711
  * @type {ConversationEnvironment}
692
712
  * @memberof ConversationAllOf
713
+ * @deprecated
693
714
  */
694
- 'environment': ConversationEnvironment;
715
+ 'environment'?: ConversationEnvironment;
695
716
  /**
696
717
  * Whether this conversation is a test or not
697
718
  * @type {boolean}
@@ -719,32 +740,124 @@ export interface ConversationBase {
719
740
  * @memberof ConversationBase
720
741
  */
721
742
  'initialContexts'?: Array<string>;
743
+ /**
744
+ *
745
+ * @type {ConversationChannelProps}
746
+ * @memberof ConversationBase
747
+ */
748
+ 'channelProps'?: ConversationChannelProps;
722
749
  /**
723
750
  *
724
751
  * @type {ConversationBaseEnvironmentProps}
725
752
  * @memberof ConversationBase
753
+ * @deprecated
726
754
  */
727
755
  'environmentProps'?: ConversationBaseEnvironmentProps;
728
756
  }
729
757
  /**
730
- * Environment properties for the conversation
758
+ * Deprecated legacy environment properties. Use channelProps.
731
759
  * @export
732
760
  * @interface ConversationBaseEnvironmentProps
733
761
  */
734
762
  export interface ConversationBaseEnvironmentProps {
735
763
  /**
736
- * HTML subject line
764
+ * Subject line for email-style channels such as Gmail and Outlook.
737
765
  * @type {string}
738
766
  * @memberof ConversationBaseEnvironmentProps
739
767
  */
740
768
  'subject'?: string;
741
769
  /**
742
- * Used to sync email messages with the conversation
770
+ * Provider thread id used to sync Gmail/Outlook channel messages with this conversation.
743
771
  * @type {string}
744
772
  * @memberof ConversationBaseEnvironmentProps
745
773
  */
746
774
  'platformEmailThreadId'?: string;
775
+ /**
776
+ * Twilio message sid that initiated this conversation.
777
+ * @type {string}
778
+ * @memberof ConversationBaseEnvironmentProps
779
+ */
780
+ 'smsMessageSid'?: string;
781
+ /**
782
+ * Persisted channel-resolution path used for the current conversation.
783
+ * @type {string}
784
+ * @memberof ConversationBaseEnvironmentProps
785
+ */
786
+ 'channelResolutionPath'?: ConversationBaseEnvironmentPropsChannelResolutionPathEnum;
747
787
  }
788
+
789
+ export const ConversationBaseEnvironmentPropsChannelResolutionPathEnum = {
790
+ Production: 'twilio_production',
791
+ LegacyPmt: 'twilio_legacy_pmt',
792
+ FreeBridge: 'twilio_free_bridge'
793
+ } as const;
794
+
795
+ export type ConversationBaseEnvironmentPropsChannelResolutionPathEnum = typeof ConversationBaseEnvironmentPropsChannelResolutionPathEnum[keyof typeof ConversationBaseEnvironmentPropsChannelResolutionPathEnum];
796
+
797
+ /**
798
+ * Canonical channel that initiated and should continue the customer conversation.
799
+ * @export
800
+ * @enum {string}
801
+ */
802
+
803
+ export const ConversationChannel = {
804
+ Web: 'web',
805
+ DemoPhoneTest: 'demo_phone_test',
806
+ SmsPhone: 'sms_phone',
807
+ Outlook: 'outlook',
808
+ Gmail: 'gmail',
809
+ Iphone: 'iphone',
810
+ Android: 'android',
811
+ Teams: 'teams',
812
+ Discord: 'discord',
813
+ Whatsapp: 'whatsapp'
814
+ } as const;
815
+
816
+ export type ConversationChannel = typeof ConversationChannel[keyof typeof ConversationChannel];
817
+
818
+
819
+ /**
820
+ * Channel-specific properties needed to continue a conversation on its canonical channel.
821
+ * @export
822
+ * @interface ConversationChannelProps
823
+ */
824
+ export interface ConversationChannelProps {
825
+ [key: string]: any;
826
+
827
+ /**
828
+ * Subject line for email-style channels such as Gmail and Outlook.
829
+ * @type {string}
830
+ * @memberof ConversationChannelProps
831
+ */
832
+ 'subject'?: string;
833
+ /**
834
+ * Provider thread id used to sync Gmail/Outlook channel messages with this conversation.
835
+ * @type {string}
836
+ * @memberof ConversationChannelProps
837
+ */
838
+ 'platformEmailThreadId'?: string;
839
+ /**
840
+ * Twilio message sid that initiated this conversation.
841
+ * @type {string}
842
+ * @memberof ConversationChannelProps
843
+ */
844
+ 'smsMessageSid'?: string;
845
+ /**
846
+ * Persisted channel-resolution path used for the current conversation.
847
+ * @type {string}
848
+ * @memberof ConversationChannelProps
849
+ */
850
+ 'channelResolutionPath'?: ConversationChannelPropsChannelResolutionPathEnum;
851
+ }
852
+
853
+ export const ConversationChannelPropsChannelResolutionPathEnum = {
854
+ Production: 'twilio_production',
855
+ LegacyPmt: 'twilio_legacy_pmt',
856
+ FreeBridge: 'twilio_free_bridge'
857
+ } as const;
858
+
859
+ export type ConversationChannelPropsChannelResolutionPathEnum = typeof ConversationChannelPropsChannelResolutionPathEnum[keyof typeof ConversationChannelPropsChannelResolutionPathEnum];
860
+
748
861
  /**
749
862
  *
750
863
  * @export
@@ -922,10 +1035,17 @@ export interface ConversationCreateRequest {
922
1035
  * @memberof ConversationCreateRequest
923
1036
  */
924
1037
  'initialContexts'?: Array<string>;
1038
+ /**
1039
+ *
1040
+ * @type {ConversationChannelProps}
1041
+ * @memberof ConversationCreateRequest
1042
+ */
1043
+ 'channelProps'?: ConversationChannelProps;
925
1044
  /**
926
1045
  *
927
1046
  * @type {ConversationBaseEnvironmentProps}
928
1047
  * @memberof ConversationCreateRequest
1048
+ * @deprecated
929
1049
  */
930
1050
  'environmentProps'?: ConversationBaseEnvironmentProps;
931
1051
  /**
@@ -941,12 +1061,19 @@ export interface ConversationCreateRequest {
941
1061
  * @deprecated
942
1062
  */
943
1063
  '$customer'?: string;
1064
+ /**
1065
+ *
1066
+ * @type {ConversationChannel}
1067
+ * @memberof ConversationCreateRequest
1068
+ */
1069
+ 'channel': ConversationChannel;
944
1070
  /**
945
1071
  *
946
1072
  * @type {ConversationEnvironment}
947
1073
  * @memberof ConversationCreateRequest
1074
+ * @deprecated
948
1075
  */
949
- 'environment': ConversationEnvironment;
1076
+ 'environment'?: ConversationEnvironment;
950
1077
  /**
951
1078
  * Whether this conversation is a test or not
952
1079
  * @type {boolean}
@@ -1038,7 +1165,7 @@ export interface ConversationCreateResponseAllOf {
1038
1165
  'initiated': string;
1039
1166
  }
1040
1167
  /**
1041
- * Environment this conversation is in (phone, web, or email) - this determines which device to send messages to
1168
+ * Deprecated broad environment bucket (phone, web, or email). Use ConversationChannel for routing.
1042
1169
  * @export
1043
1170
  * @enum {string}
1044
1171
  */
@@ -1070,10 +1197,17 @@ export interface ConversationGetResponse {
1070
1197
  * @memberof ConversationGetResponse
1071
1198
  */
1072
1199
  'initialContexts'?: Array<string>;
1200
+ /**
1201
+ *
1202
+ * @type {ConversationChannelProps}
1203
+ * @memberof ConversationGetResponse
1204
+ */
1205
+ 'channelProps'?: ConversationChannelProps;
1073
1206
  /**
1074
1207
  *
1075
1208
  * @type {ConversationBaseEnvironmentProps}
1076
1209
  * @memberof ConversationGetResponse
1210
+ * @deprecated
1077
1211
  */
1078
1212
  'environmentProps'?: ConversationBaseEnvironmentProps;
1079
1213
  /**
@@ -1089,12 +1223,19 @@ export interface ConversationGetResponse {
1089
1223
  * @deprecated
1090
1224
  */
1091
1225
  '$customer'?: string;
1226
+ /**
1227
+ *
1228
+ * @type {ConversationChannel}
1229
+ * @memberof ConversationGetResponse
1230
+ */
1231
+ 'channel': ConversationChannel;
1092
1232
  /**
1093
1233
  *
1094
1234
  * @type {ConversationEnvironment}
1095
1235
  * @memberof ConversationGetResponse
1236
+ * @deprecated
1096
1237
  */
1097
- 'environment': ConversationEnvironment;
1238
+ 'environment'?: ConversationEnvironment;
1098
1239
  /**
1099
1240
  * Whether this conversation is a test or not
1100
1241
  * @type {boolean}
@@ -1221,10 +1362,17 @@ export interface ConversationUpdateRequest {
1221
1362
  * @memberof ConversationUpdateRequest
1222
1363
  */
1223
1364
  'initialContexts'?: Array<string>;
1365
+ /**
1366
+ *
1367
+ * @type {ConversationChannelProps}
1368
+ * @memberof ConversationUpdateRequest
1369
+ */
1370
+ 'channelProps'?: ConversationChannelProps;
1224
1371
  /**
1225
1372
  *
1226
1373
  * @type {ConversationBaseEnvironmentProps}
1227
1374
  * @memberof ConversationUpdateRequest
1375
+ * @deprecated
1228
1376
  */
1229
1377
  'environmentProps'?: ConversationBaseEnvironmentProps;
1230
1378
  /**
@@ -1315,10 +1463,17 @@ export interface ConversationWithId {
1315
1463
  * @memberof ConversationWithId
1316
1464
  */
1317
1465
  'initialContexts'?: Array<string>;
1466
+ /**
1467
+ *
1468
+ * @type {ConversationChannelProps}
1469
+ * @memberof ConversationWithId
1470
+ */
1471
+ 'channelProps'?: ConversationChannelProps;
1318
1472
  /**
1319
1473
  *
1320
1474
  * @type {ConversationBaseEnvironmentProps}
1321
1475
  * @memberof ConversationWithId
1476
+ * @deprecated
1322
1477
  */
1323
1478
  'environmentProps'?: ConversationBaseEnvironmentProps;
1324
1479
  /**
@@ -1334,12 +1489,19 @@ export interface ConversationWithId {
1334
1489
  * @deprecated
1335
1490
  */
1336
1491
  '$customer'?: string;
1492
+ /**
1493
+ *
1494
+ * @type {ConversationChannel}
1495
+ * @memberof ConversationWithId
1496
+ */
1497
+ 'channel': ConversationChannel;
1337
1498
  /**
1338
1499
  *
1339
1500
  * @type {ConversationEnvironment}
1340
1501
  * @memberof ConversationWithId
1502
+ * @deprecated
1341
1503
  */
1342
- 'environment': ConversationEnvironment;
1504
+ 'environment'?: ConversationEnvironment;
1343
1505
  /**
1344
1506
  * Whether this conversation is a test or not
1345
1507
  * @type {boolean}
@@ -1926,12 +2088,19 @@ export interface CustomerGroupRecord {
1926
2088
  * @memberof CustomerGroupRecord
1927
2089
  */
1928
2090
  'id': string;
2091
+ /**
2092
+ *
2093
+ * @type {ConversationChannel}
2094
+ * @memberof CustomerGroupRecord
2095
+ */
2096
+ 'channel': ConversationChannel;
1929
2097
  /**
1930
2098
  *
1931
2099
  * @type {ConversationEnvironment}
1932
2100
  * @memberof CustomerGroupRecord
2101
+ * @deprecated
1933
2102
  */
1934
- 'environment': ConversationEnvironment;
2103
+ 'environment'?: ConversationEnvironment;
1935
2104
  /**
1936
2105
  * Overrides the default $agent for this customer
1937
2106
  * @type {string}
@@ -3343,10 +3512,17 @@ export interface ListConversationsResponseInner {
3343
3512
  * @memberof ListConversationsResponseInner
3344
3513
  */
3345
3514
  'initialContexts'?: Array<string>;
3515
+ /**
3516
+ *
3517
+ * @type {ConversationChannelProps}
3518
+ * @memberof ListConversationsResponseInner
3519
+ */
3520
+ 'channelProps'?: ConversationChannelProps;
3346
3521
  /**
3347
3522
  *
3348
3523
  * @type {ConversationBaseEnvironmentProps}
3349
3524
  * @memberof ListConversationsResponseInner
3525
+ * @deprecated
3350
3526
  */
3351
3527
  'environmentProps'?: ConversationBaseEnvironmentProps;
3352
3528
  /**
@@ -3362,12 +3538,19 @@ export interface ListConversationsResponseInner {
3362
3538
  * @deprecated
3363
3539
  */
3364
3540
  '$customer'?: string;
3541
+ /**
3542
+ *
3543
+ * @type {ConversationChannel}
3544
+ * @memberof ListConversationsResponseInner
3545
+ */
3546
+ 'channel': ConversationChannel;
3365
3547
  /**
3366
3548
  *
3367
3549
  * @type {ConversationEnvironment}
3368
3550
  * @memberof ListConversationsResponseInner
3551
+ * @deprecated
3369
3552
  */
3370
- 'environment': ConversationEnvironment;
3553
+ 'environment'?: ConversationEnvironment;
3371
3554
  /**
3372
3555
  * Whether this conversation is a test or not
3373
3556
  * @type {boolean}
@@ -5410,10 +5593,17 @@ export interface MessageCreateRequestConvoOneOf {
5410
5593
  * @memberof MessageCreateRequestConvoOneOf
5411
5594
  */
5412
5595
  'agentIdOrPhoneOrEmail'?: string;
5596
+ /**
5597
+ *
5598
+ * @type {ConversationChannel}
5599
+ * @memberof MessageCreateRequestConvoOneOf
5600
+ */
5601
+ 'channel'?: ConversationChannel;
5413
5602
  /**
5414
5603
  *
5415
5604
  * @type {ConversationEnvironment}
5416
5605
  * @memberof MessageCreateRequestConvoOneOf
5606
+ * @deprecated
5417
5607
  */
5418
5608
  'environment'?: ConversationEnvironment;
5419
5609
  }
@@ -5962,7 +6152,13 @@ export interface PmtTransformResponse {
5962
6152
  * @type {string}
5963
6153
  * @memberof PmtTransformResponse
5964
6154
  */
5965
- 'message': string;
6155
+ 'message'?: string;
6156
+ /**
6157
+ * Formatted persona responses
6158
+ * @type {Array<Message>}
6159
+ * @memberof PmtTransformResponse
6160
+ */
6161
+ 'messages'?: Array<Message>;
5966
6162
  /**
5967
6163
  * How confident this message meets the persona\'s own words
5968
6164
  * @type {number}
@@ -6119,10 +6315,17 @@ export interface ScheduleCreateRequest {
6119
6315
  * @memberof ScheduleCreateRequest
6120
6316
  */
6121
6317
  'initialContexts'?: Array<string>;
6318
+ /**
6319
+ *
6320
+ * @type {ConversationChannelProps}
6321
+ * @memberof ScheduleCreateRequest
6322
+ */
6323
+ 'channelProps'?: ConversationChannelProps;
6122
6324
  /**
6123
6325
  *
6124
6326
  * @type {ConversationBaseEnvironmentProps}
6125
6327
  * @memberof ScheduleCreateRequest
6328
+ * @deprecated
6126
6329
  */
6127
6330
  'environmentProps'?: ConversationBaseEnvironmentProps;
6128
6331
  /**
@@ -6138,12 +6341,19 @@ export interface ScheduleCreateRequest {
6138
6341
  * @deprecated
6139
6342
  */
6140
6343
  '$customer'?: string;
6344
+ /**
6345
+ *
6346
+ * @type {ConversationChannel}
6347
+ * @memberof ScheduleCreateRequest
6348
+ */
6349
+ 'channel': ConversationChannel;
6141
6350
  /**
6142
6351
  *
6143
6352
  * @type {ConversationEnvironment}
6144
6353
  * @memberof ScheduleCreateRequest
6354
+ * @deprecated
6145
6355
  */
6146
- 'environment': ConversationEnvironment;
6356
+ 'environment'?: ConversationEnvironment;
6147
6357
  /**
6148
6358
  * Whether this conversation is a test or not
6149
6359
  * @type {boolean}
@@ -6239,10 +6449,17 @@ export interface ScheduleGetResponse {
6239
6449
  * @memberof ScheduleGetResponse
6240
6450
  */
6241
6451
  'initialContexts'?: Array<string>;
6452
+ /**
6453
+ *
6454
+ * @type {ConversationChannelProps}
6455
+ * @memberof ScheduleGetResponse
6456
+ */
6457
+ 'channelProps'?: ConversationChannelProps;
6242
6458
  /**
6243
6459
  *
6244
6460
  * @type {ConversationBaseEnvironmentProps}
6245
6461
  * @memberof ScheduleGetResponse
6462
+ * @deprecated
6246
6463
  */
6247
6464
  'environmentProps'?: ConversationBaseEnvironmentProps;
6248
6465
  /**
@@ -6258,12 +6475,19 @@ export interface ScheduleGetResponse {
6258
6475
  * @deprecated
6259
6476
  */
6260
6477
  '$customer'?: string;
6478
+ /**
6479
+ *
6480
+ * @type {ConversationChannel}
6481
+ * @memberof ScheduleGetResponse
6482
+ */
6483
+ 'channel': ConversationChannel;
6261
6484
  /**
6262
6485
  *
6263
6486
  * @type {ConversationEnvironment}
6264
6487
  * @memberof ScheduleGetResponse
6488
+ * @deprecated
6265
6489
  */
6266
- 'environment': ConversationEnvironment;
6490
+ 'environment'?: ConversationEnvironment;
6267
6491
  /**
6268
6492
  * Whether this conversation is a test or not
6269
6493
  * @type {boolean}
@@ -6333,10 +6557,17 @@ export interface ScheduleGroupCreateRequest {
6333
6557
  * @memberof ScheduleGroupCreateRequest
6334
6558
  */
6335
6559
  'initialContexts'?: Array<string>;
6560
+ /**
6561
+ *
6562
+ * @type {ConversationChannelProps}
6563
+ * @memberof ScheduleGroupCreateRequest
6564
+ */
6565
+ 'channelProps'?: ConversationChannelProps;
6336
6566
  /**
6337
6567
  *
6338
6568
  * @type {ConversationBaseEnvironmentProps}
6339
6569
  * @memberof ScheduleGroupCreateRequest
6570
+ * @deprecated
6340
6571
  */
6341
6572
  'environmentProps'?: ConversationBaseEnvironmentProps;
6342
6573
  /**
@@ -6432,10 +6663,17 @@ export interface ScheduleGroupGetResponse {
6432
6663
  * @memberof ScheduleGroupGetResponse
6433
6664
  */
6434
6665
  'initialContexts'?: Array<string>;
6666
+ /**
6667
+ *
6668
+ * @type {ConversationChannelProps}
6669
+ * @memberof ScheduleGroupGetResponse
6670
+ */
6671
+ 'channelProps'?: ConversationChannelProps;
6435
6672
  /**
6436
6673
  *
6437
6674
  * @type {ConversationBaseEnvironmentProps}
6438
6675
  * @memberof ScheduleGroupGetResponse
6676
+ * @deprecated
6439
6677
  */
6440
6678
  'environmentProps'?: ConversationBaseEnvironmentProps;
6441
6679
  /**
@@ -6549,10 +6787,17 @@ export interface ScheduleGroupUpdateRequest {
6549
6787
  * @memberof ScheduleGroupUpdateRequest
6550
6788
  */
6551
6789
  'initialContexts'?: Array<string>;
6790
+ /**
6791
+ *
6792
+ * @type {ConversationChannelProps}
6793
+ * @memberof ScheduleGroupUpdateRequest
6794
+ */
6795
+ 'channelProps'?: ConversationChannelProps;
6552
6796
  /**
6553
6797
  *
6554
6798
  * @type {ConversationBaseEnvironmentProps}
6555
6799
  * @memberof ScheduleGroupUpdateRequest
6800
+ * @deprecated
6556
6801
  */
6557
6802
  'environmentProps'?: ConversationBaseEnvironmentProps;
6558
6803
  /**
@@ -6679,10 +6924,17 @@ export interface ScheduleUpdateRequest {
6679
6924
  * @memberof ScheduleUpdateRequest
6680
6925
  */
6681
6926
  'initialContexts'?: Array<string>;
6927
+ /**
6928
+ *
6929
+ * @type {ConversationChannelProps}
6930
+ * @memberof ScheduleUpdateRequest
6931
+ */
6932
+ 'channelProps'?: ConversationChannelProps;
6682
6933
  /**
6683
6934
  *
6684
6935
  * @type {ConversationBaseEnvironmentProps}
6685
6936
  * @memberof ScheduleUpdateRequest
6937
+ * @deprecated
6686
6938
  */
6687
6939
  'environmentProps'?: ConversationBaseEnvironmentProps;
6688
6940
  /**
@@ -6698,12 +6950,19 @@ export interface ScheduleUpdateRequest {
6698
6950
  * @deprecated
6699
6951
  */
6700
6952
  '$customer'?: string;
6953
+ /**
6954
+ *
6955
+ * @type {ConversationChannel}
6956
+ * @memberof ScheduleUpdateRequest
6957
+ */
6958
+ 'channel': ConversationChannel;
6701
6959
  /**
6702
6960
  *
6703
6961
  * @type {ConversationEnvironment}
6704
6962
  * @memberof ScheduleUpdateRequest
6963
+ * @deprecated
6705
6964
  */
6706
- 'environment': ConversationEnvironment;
6965
+ 'environment'?: ConversationEnvironment;
6707
6966
  /**
6708
6967
  * Whether this conversation is a test or not
6709
6968
  * @type {boolean}
@@ -6799,10 +7058,17 @@ export interface ScheduledConversation {
6799
7058
  * @memberof ScheduledConversation
6800
7059
  */
6801
7060
  'initialContexts'?: Array<string>;
7061
+ /**
7062
+ *
7063
+ * @type {ConversationChannelProps}
7064
+ * @memberof ScheduledConversation
7065
+ */
7066
+ 'channelProps'?: ConversationChannelProps;
6802
7067
  /**
6803
7068
  *
6804
7069
  * @type {ConversationBaseEnvironmentProps}
6805
7070
  * @memberof ScheduledConversation
7071
+ * @deprecated
6806
7072
  */
6807
7073
  'environmentProps'?: ConversationBaseEnvironmentProps;
6808
7074
  /**
@@ -6818,12 +7084,19 @@ export interface ScheduledConversation {
6818
7084
  * @deprecated
6819
7085
  */
6820
7086
  '$customer'?: string;
7087
+ /**
7088
+ *
7089
+ * @type {ConversationChannel}
7090
+ * @memberof ScheduledConversation
7091
+ */
7092
+ 'channel': ConversationChannel;
6821
7093
  /**
6822
7094
  *
6823
7095
  * @type {ConversationEnvironment}
6824
7096
  * @memberof ScheduledConversation
7097
+ * @deprecated
6825
7098
  */
6826
- 'environment': ConversationEnvironment;
7099
+ 'environment'?: ConversationEnvironment;
6827
7100
  /**
6828
7101
  * Whether this conversation is a test or not
6829
7102
  * @type {boolean}
@@ -6888,10 +7161,17 @@ export interface ScheduledConversationGroup {
6888
7161
  * @memberof ScheduledConversationGroup
6889
7162
  */
6890
7163
  'initialContexts'?: Array<string>;
7164
+ /**
7165
+ *
7166
+ * @type {ConversationChannelProps}
7167
+ * @memberof ScheduledConversationGroup
7168
+ */
7169
+ 'channelProps'?: ConversationChannelProps;
6891
7170
  /**
6892
7171
  *
6893
7172
  * @type {ConversationBaseEnvironmentProps}
6894
7173
  * @memberof ScheduledConversationGroup
7174
+ * @deprecated
6895
7175
  */
6896
7176
  'environmentProps'?: ConversationBaseEnvironmentProps;
6897
7177
  /**