@capillarytech/creatives-library 8.0.330-alpha.0 → 8.0.331-alpha.0
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/constants/unified.js +0 -18
- package/package.json +1 -1
- package/services/tests/api.test.js +0 -13
- package/utils/commonUtils.js +1 -19
- package/v2Components/CapTagList/index.js +0 -10
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +49 -70
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +2 -8
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +21 -207
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +0 -16
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +10 -85
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +0 -30
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +11 -79
- package/v2Components/CommonTestAndPreview/ExistingCustomerModal.js +1 -0
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +5 -10
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +1 -20
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +4 -133
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +0 -11
- package/v2Components/CommonTestAndPreview/constants.js +2 -38
- package/v2Components/CommonTestAndPreview/index.js +176 -672
- package/v2Components/CommonTestAndPreview/messages.js +3 -41
- package/v2Components/CommonTestAndPreview/reducer.js +3 -1
- package/v2Components/CommonTestAndPreview/sagas.js +8 -16
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +284 -308
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +65 -231
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +5 -118
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +0 -341
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +13 -34
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +1 -199
- package/v2Components/CommonTestAndPreview/tests/index.test.js +4 -132
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +2 -2
- package/v2Components/FormBuilder/index.js +1 -7
- package/v2Components/TestAndPreviewSlidebox/index.js +1 -13
- package/v2Components/TestAndPreviewSlidebox/sagas.js +4 -11
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +1 -3
- package/v2Containers/CreativesContainer/SlideBoxContent.js +4 -36
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +1 -10
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +4 -29
- package/v2Containers/CreativesContainer/constants.js +0 -9
- package/v2Containers/CreativesContainer/index.js +93 -292
- package/v2Containers/CreativesContainer/index.scss +1 -51
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +34 -78
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +16 -79
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +0 -8
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +98 -357
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +10 -20
- package/v2Containers/CreativesContainer/tests/index.test.js +9 -71
- package/v2Containers/Rcs/constants.js +3 -40
- package/v2Containers/Rcs/index.js +895 -1145
- package/v2Containers/Rcs/index.scss +6 -85
- package/v2Containers/Rcs/messages.js +2 -12
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +1432 -40783
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +5 -0
- package/v2Containers/Rcs/tests/index.test.js +38 -41
- package/v2Containers/Rcs/tests/mockData.js +0 -38
- package/v2Containers/Rcs/tests/utils.test.js +1 -435
- package/v2Containers/Rcs/utils.js +10 -405
- package/v2Containers/Sms/Create/index.js +38 -100
- package/v2Containers/SmsTrai/Create/index.js +4 -9
- package/v2Containers/SmsTrai/Edit/constants.js +0 -2
- package/v2Containers/SmsTrai/Edit/index.js +128 -636
- package/v2Containers/SmsTrai/Edit/messages.js +4 -14
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +2296 -4249
- package/v2Containers/SmsWrapper/index.js +8 -37
- package/v2Containers/TagList/index.js +11 -21
- package/v2Containers/Templates/_templates.scss +2 -63
- package/v2Containers/Templates/actions.js +0 -11
- package/v2Containers/Templates/constants.js +0 -2
- package/v2Containers/Templates/index.js +40 -90
- package/v2Containers/Templates/sagas.js +12 -57
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1079 -1043
- package/v2Containers/Templates/tests/sagas.test.js +123 -193
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +1 -72
- package/v2Containers/TemplatesV2/index.js +23 -86
- package/v2Containers/WebPush/Create/index.js +1 -1
- package/v2Containers/Whatsapp/index.js +20 -3
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +34 -578
- package/utils/templateVarUtils.js +0 -201
- package/utils/tests/templateVarUtils.test.js +0 -204
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +0 -59
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +0 -67
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +0 -87
- package/v2Components/SmsFallback/constants.js +0 -73
- package/v2Components/SmsFallback/index.js +0 -955
- package/v2Components/SmsFallback/index.scss +0 -265
- package/v2Components/SmsFallback/messages.js +0 -78
- package/v2Components/SmsFallback/smsFallbackUtils.js +0 -118
- package/v2Components/SmsFallback/tests/SmsFallbackLocalSelector.test.js +0 -50
- package/v2Components/SmsFallback/tests/rcsSmsFallback.acceptance.test.js +0 -147
- package/v2Components/SmsFallback/tests/smsFallbackHandlers.test.js +0 -304
- package/v2Components/SmsFallback/tests/smsFallbackUi.test.js +0 -197
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +0 -277
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +0 -422
- package/v2Components/SmsFallback/useLocalTemplateList.js +0 -92
- package/v2Components/VarSegmentMessageEditor/constants.js +0 -2
- package/v2Components/VarSegmentMessageEditor/index.js +0 -125
- package/v2Components/VarSegmentMessageEditor/index.scss +0 -46
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +0 -43
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +0 -67
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +0 -90
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +0 -258
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +0 -125
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +0 -225
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +0 -318
- package/v2Containers/Sms/smsFormDataHelpers.js +0 -67
- package/v2Containers/Sms/tests/smsFormDataHelpers.test.js +0 -253
- package/v2Containers/SmsTrai/Edit/index.scss +0 -121
- package/v2Containers/Templates/TemplatesActionBar.js +0 -101
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +0 -120
- package/v2Containers/Templates/tests/smsTemplatesListApi.test.js +0 -180
- package/v2Containers/Templates/utils/smsTemplatesListApi.js +0 -79
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +0 -131
|
@@ -13781,7 +13781,6 @@ new message content.",
|
|
|
13781
13781
|
className="ant-col ant-col-10 cap-column-v2"
|
|
13782
13782
|
>
|
|
13783
13783
|
<UnifiedPreview
|
|
13784
|
-
activePreviewTab="rcs"
|
|
13785
13784
|
channel="WHATSAPP"
|
|
13786
13785
|
content={
|
|
13787
13786
|
Object {
|
|
@@ -14477,11 +14476,9 @@ new message content.",
|
|
|
14477
14476
|
key=".0"
|
|
14478
14477
|
lastModified={null}
|
|
14479
14478
|
onDeviceChange={[Function]}
|
|
14480
|
-
onPreviewTabChange={[Function]}
|
|
14481
14479
|
selectedCustomer={null}
|
|
14482
14480
|
showDeviceToggle={false}
|
|
14483
14481
|
showHeader={false}
|
|
14484
|
-
smsFallbackContent={null}
|
|
14485
14482
|
updatedByName={null}
|
|
14486
14483
|
>
|
|
14487
14484
|
<CapRow
|
|
@@ -19265,7 +19262,6 @@ new message content.",
|
|
|
19265
19262
|
}
|
|
19266
19263
|
}
|
|
19267
19264
|
show={false}
|
|
19268
|
-
smsFallbackContent={null}
|
|
19269
19265
|
testCustomers={Immutable.List []}
|
|
19270
19266
|
testGroups={Immutable.List []}
|
|
19271
19267
|
updatePreviewError={null}
|
|
@@ -21633,7 +21629,6 @@ new message content.",
|
|
|
21633
21629
|
}
|
|
21634
21630
|
}
|
|
21635
21631
|
show={false}
|
|
21636
|
-
smsFallbackContent={null}
|
|
21637
21632
|
templateLayoutType={null}
|
|
21638
21633
|
testCustomers={Immutable.List []}
|
|
21639
21634
|
testGroups={Immutable.List []}
|
|
@@ -21727,7 +21722,6 @@ new message content.",
|
|
|
21727
21722
|
formatMessage={[Function]}
|
|
21728
21723
|
handleSendTestMessage={[Function]}
|
|
21729
21724
|
handleTestEntitiesChange={[Function]}
|
|
21730
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
21731
21725
|
isFetchingTestCustomers={false}
|
|
21732
21726
|
isFetchingTestGroups={false}
|
|
21733
21727
|
isLoadingSenderDetails={false}
|
|
@@ -21737,13 +21731,7 @@ new message content.",
|
|
|
21737
21731
|
renderAddTestCustomerButton={[Function]}
|
|
21738
21732
|
searchValue=""
|
|
21739
21733
|
selectedTestEntities={Array []}
|
|
21740
|
-
|
|
21741
|
-
Object {
|
|
21742
|
-
"EMAIL": Array [],
|
|
21743
|
-
"SMS": Array [],
|
|
21744
|
-
"WHATSAPP": Array [],
|
|
21745
|
-
}
|
|
21746
|
-
}
|
|
21734
|
+
senderDetailsOptions={Array []}
|
|
21747
21735
|
setSearchValue={[Function]}
|
|
21748
21736
|
smsTraiDltEnabled={false}
|
|
21749
21737
|
testEntitiesTreeData={
|
|
@@ -21775,7 +21763,6 @@ new message content.",
|
|
|
21775
21763
|
<PreviewSection
|
|
21776
21764
|
unifiedPreviewProps={
|
|
21777
21765
|
Object {
|
|
21778
|
-
"activePreviewTab": "rcs",
|
|
21779
21766
|
"channel": "WHATSAPP",
|
|
21780
21767
|
"content": Object {
|
|
21781
21768
|
"_id": null,
|
|
@@ -21810,11 +21797,8 @@ new message content.",
|
|
|
21810
21797
|
"isUpdating": false,
|
|
21811
21798
|
"lastModified": undefined,
|
|
21812
21799
|
"onDeviceChange": [Function],
|
|
21813
|
-
"onPreviewTabChange": [Function],
|
|
21814
21800
|
"selectedCustomer": null,
|
|
21815
21801
|
"showDeviceToggle": true,
|
|
21816
|
-
"smsFallbackContent": null,
|
|
21817
|
-
"smsFallbackResolvedText": undefined,
|
|
21818
21802
|
"updatedByName": undefined,
|
|
21819
21803
|
}
|
|
21820
21804
|
}
|
|
@@ -37570,7 +37554,6 @@ new message content.",
|
|
|
37570
37554
|
className="ant-col ant-col-10 cap-column-v2"
|
|
37571
37555
|
>
|
|
37572
37556
|
<UnifiedPreview
|
|
37573
|
-
activePreviewTab="rcs"
|
|
37574
37557
|
channel="WHATSAPP"
|
|
37575
37558
|
content={
|
|
37576
37559
|
Object {
|
|
@@ -38364,11 +38347,9 @@ new message content.",
|
|
|
38364
38347
|
key=".0"
|
|
38365
38348
|
lastModified={null}
|
|
38366
38349
|
onDeviceChange={[Function]}
|
|
38367
|
-
onPreviewTabChange={[Function]}
|
|
38368
38350
|
selectedCustomer={null}
|
|
38369
38351
|
showDeviceToggle={false}
|
|
38370
38352
|
showHeader={false}
|
|
38371
|
-
smsFallbackContent={null}
|
|
38372
38353
|
updatedByName={null}
|
|
38373
38354
|
>
|
|
38374
38355
|
<CapRow
|
|
@@ -43250,7 +43231,6 @@ new message content.",
|
|
|
43250
43231
|
}
|
|
43251
43232
|
}
|
|
43252
43233
|
show={false}
|
|
43253
|
-
smsFallbackContent={null}
|
|
43254
43234
|
testCustomers={Immutable.List []}
|
|
43255
43235
|
testGroups={Immutable.List []}
|
|
43256
43236
|
updatePreviewError={null}
|
|
@@ -45618,7 +45598,6 @@ new message content.",
|
|
|
45618
45598
|
}
|
|
45619
45599
|
}
|
|
45620
45600
|
show={false}
|
|
45621
|
-
smsFallbackContent={null}
|
|
45622
45601
|
templateLayoutType={null}
|
|
45623
45602
|
testCustomers={Immutable.List []}
|
|
45624
45603
|
testGroups={Immutable.List []}
|
|
@@ -45712,7 +45691,6 @@ new message content.",
|
|
|
45712
45691
|
formatMessage={[Function]}
|
|
45713
45692
|
handleSendTestMessage={[Function]}
|
|
45714
45693
|
handleTestEntitiesChange={[Function]}
|
|
45715
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
45716
45694
|
isFetchingTestCustomers={false}
|
|
45717
45695
|
isFetchingTestGroups={false}
|
|
45718
45696
|
isLoadingSenderDetails={false}
|
|
@@ -45722,13 +45700,7 @@ new message content.",
|
|
|
45722
45700
|
renderAddTestCustomerButton={[Function]}
|
|
45723
45701
|
searchValue=""
|
|
45724
45702
|
selectedTestEntities={Array []}
|
|
45725
|
-
|
|
45726
|
-
Object {
|
|
45727
|
-
"EMAIL": Array [],
|
|
45728
|
-
"SMS": Array [],
|
|
45729
|
-
"WHATSAPP": Array [],
|
|
45730
|
-
}
|
|
45731
|
-
}
|
|
45703
|
+
senderDetailsOptions={Array []}
|
|
45732
45704
|
setSearchValue={[Function]}
|
|
45733
45705
|
smsTraiDltEnabled={false}
|
|
45734
45706
|
testEntitiesTreeData={
|
|
@@ -45760,7 +45732,6 @@ new message content.",
|
|
|
45760
45732
|
<PreviewSection
|
|
45761
45733
|
unifiedPreviewProps={
|
|
45762
45734
|
Object {
|
|
45763
|
-
"activePreviewTab": "rcs",
|
|
45764
45735
|
"channel": "WHATSAPP",
|
|
45765
45736
|
"content": Object {
|
|
45766
45737
|
"_id": null,
|
|
@@ -45795,11 +45766,8 @@ new message content.",
|
|
|
45795
45766
|
"isUpdating": false,
|
|
45796
45767
|
"lastModified": undefined,
|
|
45797
45768
|
"onDeviceChange": [Function],
|
|
45798
|
-
"onPreviewTabChange": [Function],
|
|
45799
45769
|
"selectedCustomer": null,
|
|
45800
45770
|
"showDeviceToggle": true,
|
|
45801
|
-
"smsFallbackContent": null,
|
|
45802
|
-
"smsFallbackResolvedText": undefined,
|
|
45803
45771
|
"updatedByName": undefined,
|
|
45804
45772
|
}
|
|
45805
45773
|
}
|
|
@@ -61835,7 +61803,6 @@ new message content.",
|
|
|
61835
61803
|
className="ant-col ant-col-10 cap-column-v2"
|
|
61836
61804
|
>
|
|
61837
61805
|
<UnifiedPreview
|
|
61838
|
-
activePreviewTab="rcs"
|
|
61839
61806
|
channel="WHATSAPP"
|
|
61840
61807
|
content={
|
|
61841
61808
|
Object {
|
|
@@ -63014,11 +62981,9 @@ new message content.",
|
|
|
63014
62981
|
key=".0"
|
|
63015
62982
|
lastModified={null}
|
|
63016
62983
|
onDeviceChange={[Function]}
|
|
63017
|
-
onPreviewTabChange={[Function]}
|
|
63018
62984
|
selectedCustomer={null}
|
|
63019
62985
|
showDeviceToggle={false}
|
|
63020
62986
|
showHeader={false}
|
|
63021
|
-
smsFallbackContent={null}
|
|
63022
62987
|
updatedByName={null}
|
|
63023
62988
|
>
|
|
63024
62989
|
<CapRow
|
|
@@ -68283,7 +68248,6 @@ new message content.",
|
|
|
68283
68248
|
}
|
|
68284
68249
|
}
|
|
68285
68250
|
show={false}
|
|
68286
|
-
smsFallbackContent={null}
|
|
68287
68251
|
testCustomers={Immutable.List []}
|
|
68288
68252
|
testGroups={Immutable.List []}
|
|
68289
68253
|
updatePreviewError={null}
|
|
@@ -70651,7 +70615,6 @@ new message content.",
|
|
|
70651
70615
|
}
|
|
70652
70616
|
}
|
|
70653
70617
|
show={false}
|
|
70654
|
-
smsFallbackContent={null}
|
|
70655
70618
|
templateLayoutType={null}
|
|
70656
70619
|
testCustomers={Immutable.List []}
|
|
70657
70620
|
testGroups={Immutable.List []}
|
|
@@ -70745,7 +70708,6 @@ new message content.",
|
|
|
70745
70708
|
formatMessage={[Function]}
|
|
70746
70709
|
handleSendTestMessage={[Function]}
|
|
70747
70710
|
handleTestEntitiesChange={[Function]}
|
|
70748
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
70749
70711
|
isFetchingTestCustomers={false}
|
|
70750
70712
|
isFetchingTestGroups={false}
|
|
70751
70713
|
isLoadingSenderDetails={false}
|
|
@@ -70755,13 +70717,7 @@ new message content.",
|
|
|
70755
70717
|
renderAddTestCustomerButton={[Function]}
|
|
70756
70718
|
searchValue=""
|
|
70757
70719
|
selectedTestEntities={Array []}
|
|
70758
|
-
|
|
70759
|
-
Object {
|
|
70760
|
-
"EMAIL": Array [],
|
|
70761
|
-
"SMS": Array [],
|
|
70762
|
-
"WHATSAPP": Array [],
|
|
70763
|
-
}
|
|
70764
|
-
}
|
|
70720
|
+
senderDetailsOptions={Array []}
|
|
70765
70721
|
setSearchValue={[Function]}
|
|
70766
70722
|
smsTraiDltEnabled={false}
|
|
70767
70723
|
testEntitiesTreeData={
|
|
@@ -70793,7 +70749,6 @@ new message content.",
|
|
|
70793
70749
|
<PreviewSection
|
|
70794
70750
|
unifiedPreviewProps={
|
|
70795
70751
|
Object {
|
|
70796
|
-
"activePreviewTab": "rcs",
|
|
70797
70752
|
"channel": "WHATSAPP",
|
|
70798
70753
|
"content": Object {
|
|
70799
70754
|
"_id": null,
|
|
@@ -70828,11 +70783,8 @@ new message content.",
|
|
|
70828
70783
|
"isUpdating": false,
|
|
70829
70784
|
"lastModified": undefined,
|
|
70830
70785
|
"onDeviceChange": [Function],
|
|
70831
|
-
"onPreviewTabChange": [Function],
|
|
70832
70786
|
"selectedCustomer": null,
|
|
70833
70787
|
"showDeviceToggle": true,
|
|
70834
|
-
"smsFallbackContent": null,
|
|
70835
|
-
"smsFallbackResolvedText": undefined,
|
|
70836
70788
|
"updatedByName": undefined,
|
|
70837
70789
|
}
|
|
70838
70790
|
}
|
|
@@ -87743,7 +87695,6 @@ new message content.",
|
|
|
87743
87695
|
className="ant-col ant-col-10 cap-column-v2"
|
|
87744
87696
|
>
|
|
87745
87697
|
<UnifiedPreview
|
|
87746
|
-
activePreviewTab="rcs"
|
|
87747
87698
|
channel="WHATSAPP"
|
|
87748
87699
|
content={
|
|
87749
87700
|
Object {
|
|
@@ -89692,11 +89643,9 @@ new message content.",
|
|
|
89692
89643
|
key=".0"
|
|
89693
89644
|
lastModified={null}
|
|
89694
89645
|
onDeviceChange={[Function]}
|
|
89695
|
-
onPreviewTabChange={[Function]}
|
|
89696
89646
|
selectedCustomer={null}
|
|
89697
89647
|
showDeviceToggle={false}
|
|
89698
89648
|
showHeader={false}
|
|
89699
|
-
smsFallbackContent={null}
|
|
89700
89649
|
updatedByName={null}
|
|
89701
89650
|
>
|
|
89702
89651
|
<CapRow
|
|
@@ -95733,7 +95682,6 @@ new message content.",
|
|
|
95733
95682
|
}
|
|
95734
95683
|
}
|
|
95735
95684
|
show={false}
|
|
95736
|
-
smsFallbackContent={null}
|
|
95737
95685
|
testCustomers={Immutable.List []}
|
|
95738
95686
|
testGroups={Immutable.List []}
|
|
95739
95687
|
updatePreviewError={null}
|
|
@@ -98101,7 +98049,6 @@ new message content.",
|
|
|
98101
98049
|
}
|
|
98102
98050
|
}
|
|
98103
98051
|
show={false}
|
|
98104
|
-
smsFallbackContent={null}
|
|
98105
98052
|
templateLayoutType={null}
|
|
98106
98053
|
testCustomers={Immutable.List []}
|
|
98107
98054
|
testGroups={Immutable.List []}
|
|
@@ -98195,7 +98142,6 @@ new message content.",
|
|
|
98195
98142
|
formatMessage={[Function]}
|
|
98196
98143
|
handleSendTestMessage={[Function]}
|
|
98197
98144
|
handleTestEntitiesChange={[Function]}
|
|
98198
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
98199
98145
|
isFetchingTestCustomers={false}
|
|
98200
98146
|
isFetchingTestGroups={false}
|
|
98201
98147
|
isLoadingSenderDetails={false}
|
|
@@ -98205,13 +98151,7 @@ new message content.",
|
|
|
98205
98151
|
renderAddTestCustomerButton={[Function]}
|
|
98206
98152
|
searchValue=""
|
|
98207
98153
|
selectedTestEntities={Array []}
|
|
98208
|
-
|
|
98209
|
-
Object {
|
|
98210
|
-
"EMAIL": Array [],
|
|
98211
|
-
"SMS": Array [],
|
|
98212
|
-
"WHATSAPP": Array [],
|
|
98213
|
-
}
|
|
98214
|
-
}
|
|
98154
|
+
senderDetailsOptions={Array []}
|
|
98215
98155
|
setSearchValue={[Function]}
|
|
98216
98156
|
smsTraiDltEnabled={false}
|
|
98217
98157
|
testEntitiesTreeData={
|
|
@@ -98243,7 +98183,6 @@ new message content.",
|
|
|
98243
98183
|
<PreviewSection
|
|
98244
98184
|
unifiedPreviewProps={
|
|
98245
98185
|
Object {
|
|
98246
|
-
"activePreviewTab": "rcs",
|
|
98247
98186
|
"channel": "WHATSAPP",
|
|
98248
98187
|
"content": Object {
|
|
98249
98188
|
"_id": null,
|
|
@@ -98278,11 +98217,8 @@ new message content.",
|
|
|
98278
98217
|
"isUpdating": false,
|
|
98279
98218
|
"lastModified": undefined,
|
|
98280
98219
|
"onDeviceChange": [Function],
|
|
98281
|
-
"onPreviewTabChange": [Function],
|
|
98282
98220
|
"selectedCustomer": null,
|
|
98283
98221
|
"showDeviceToggle": true,
|
|
98284
|
-
"smsFallbackContent": null,
|
|
98285
|
-
"smsFallbackResolvedText": undefined,
|
|
98286
98222
|
"updatedByName": undefined,
|
|
98287
98223
|
}
|
|
98288
98224
|
}
|
|
@@ -112128,7 +112064,6 @@ new message content.",
|
|
|
112128
112064
|
className="ant-col ant-col-10 cap-column-v2"
|
|
112129
112065
|
>
|
|
112130
112066
|
<UnifiedPreview
|
|
112131
|
-
activePreviewTab="rcs"
|
|
112132
112067
|
channel="WHATSAPP"
|
|
112133
112068
|
content={
|
|
112134
112069
|
Object {
|
|
@@ -112834,11 +112769,9 @@ new message content.",
|
|
|
112834
112769
|
key=".0"
|
|
112835
112770
|
lastModified={null}
|
|
112836
112771
|
onDeviceChange={[Function]}
|
|
112837
|
-
onPreviewTabChange={[Function]}
|
|
112838
112772
|
selectedCustomer={null}
|
|
112839
112773
|
showDeviceToggle={false}
|
|
112840
112774
|
showHeader={false}
|
|
112841
|
-
smsFallbackContent={null}
|
|
112842
112775
|
updatedByName={null}
|
|
112843
112776
|
>
|
|
112844
112777
|
<CapRow
|
|
@@ -117632,7 +117565,6 @@ new message content.",
|
|
|
117632
117565
|
}
|
|
117633
117566
|
}
|
|
117634
117567
|
show={false}
|
|
117635
|
-
smsFallbackContent={null}
|
|
117636
117568
|
testCustomers={Immutable.List []}
|
|
117637
117569
|
testGroups={Immutable.List []}
|
|
117638
117570
|
updatePreviewError={null}
|
|
@@ -120000,7 +119932,6 @@ new message content.",
|
|
|
120000
119932
|
}
|
|
120001
119933
|
}
|
|
120002
119934
|
show={false}
|
|
120003
|
-
smsFallbackContent={null}
|
|
120004
119935
|
templateLayoutType={null}
|
|
120005
119936
|
testCustomers={Immutable.List []}
|
|
120006
119937
|
testGroups={Immutable.List []}
|
|
@@ -120094,7 +120025,6 @@ new message content.",
|
|
|
120094
120025
|
formatMessage={[Function]}
|
|
120095
120026
|
handleSendTestMessage={[Function]}
|
|
120096
120027
|
handleTestEntitiesChange={[Function]}
|
|
120097
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
120098
120028
|
isFetchingTestCustomers={false}
|
|
120099
120029
|
isFetchingTestGroups={false}
|
|
120100
120030
|
isLoadingSenderDetails={false}
|
|
@@ -120104,13 +120034,7 @@ new message content.",
|
|
|
120104
120034
|
renderAddTestCustomerButton={[Function]}
|
|
120105
120035
|
searchValue=""
|
|
120106
120036
|
selectedTestEntities={Array []}
|
|
120107
|
-
|
|
120108
|
-
Object {
|
|
120109
|
-
"EMAIL": Array [],
|
|
120110
|
-
"SMS": Array [],
|
|
120111
|
-
"WHATSAPP": Array [],
|
|
120112
|
-
}
|
|
120113
|
-
}
|
|
120037
|
+
senderDetailsOptions={Array []}
|
|
120114
120038
|
setSearchValue={[Function]}
|
|
120115
120039
|
smsTraiDltEnabled={false}
|
|
120116
120040
|
testEntitiesTreeData={
|
|
@@ -120142,7 +120066,6 @@ new message content.",
|
|
|
120142
120066
|
<PreviewSection
|
|
120143
120067
|
unifiedPreviewProps={
|
|
120144
120068
|
Object {
|
|
120145
|
-
"activePreviewTab": "rcs",
|
|
120146
120069
|
"channel": "WHATSAPP",
|
|
120147
120070
|
"content": Object {
|
|
120148
120071
|
"_id": null,
|
|
@@ -120177,11 +120100,8 @@ new message content.",
|
|
|
120177
120100
|
"isUpdating": false,
|
|
120178
120101
|
"lastModified": undefined,
|
|
120179
120102
|
"onDeviceChange": [Function],
|
|
120180
|
-
"onPreviewTabChange": [Function],
|
|
120181
120103
|
"selectedCustomer": null,
|
|
120182
120104
|
"showDeviceToggle": true,
|
|
120183
|
-
"smsFallbackContent": null,
|
|
120184
|
-
"smsFallbackResolvedText": undefined,
|
|
120185
120105
|
"updatedByName": undefined,
|
|
120186
120106
|
}
|
|
120187
120107
|
}
|
|
@@ -134017,7 +133937,6 @@ new message content.",
|
|
|
134017
133937
|
className="ant-col ant-col-10 cap-column-v2"
|
|
134018
133938
|
>
|
|
134019
133939
|
<UnifiedPreview
|
|
134020
|
-
activePreviewTab="rcs"
|
|
134021
133940
|
channel="WHATSAPP"
|
|
134022
133941
|
content={
|
|
134023
133942
|
Object {
|
|
@@ -134713,11 +134632,9 @@ new message content.",
|
|
|
134713
134632
|
key=".0"
|
|
134714
134633
|
lastModified={null}
|
|
134715
134634
|
onDeviceChange={[Function]}
|
|
134716
|
-
onPreviewTabChange={[Function]}
|
|
134717
134635
|
selectedCustomer={null}
|
|
134718
134636
|
showDeviceToggle={false}
|
|
134719
134637
|
showHeader={false}
|
|
134720
|
-
smsFallbackContent={null}
|
|
134721
134638
|
updatedByName={null}
|
|
134722
134639
|
>
|
|
134723
134640
|
<CapRow
|
|
@@ -139501,7 +139418,6 @@ new message content.",
|
|
|
139501
139418
|
}
|
|
139502
139419
|
}
|
|
139503
139420
|
show={false}
|
|
139504
|
-
smsFallbackContent={null}
|
|
139505
139421
|
testCustomers={Immutable.List []}
|
|
139506
139422
|
testGroups={Immutable.List []}
|
|
139507
139423
|
updatePreviewError={null}
|
|
@@ -141869,7 +141785,6 @@ new message content.",
|
|
|
141869
141785
|
}
|
|
141870
141786
|
}
|
|
141871
141787
|
show={false}
|
|
141872
|
-
smsFallbackContent={null}
|
|
141873
141788
|
templateLayoutType={null}
|
|
141874
141789
|
testCustomers={Immutable.List []}
|
|
141875
141790
|
testGroups={Immutable.List []}
|
|
@@ -141963,7 +141878,6 @@ new message content.",
|
|
|
141963
141878
|
formatMessage={[Function]}
|
|
141964
141879
|
handleSendTestMessage={[Function]}
|
|
141965
141880
|
handleTestEntitiesChange={[Function]}
|
|
141966
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
141967
141881
|
isFetchingTestCustomers={false}
|
|
141968
141882
|
isFetchingTestGroups={false}
|
|
141969
141883
|
isLoadingSenderDetails={false}
|
|
@@ -141973,13 +141887,7 @@ new message content.",
|
|
|
141973
141887
|
renderAddTestCustomerButton={[Function]}
|
|
141974
141888
|
searchValue=""
|
|
141975
141889
|
selectedTestEntities={Array []}
|
|
141976
|
-
|
|
141977
|
-
Object {
|
|
141978
|
-
"EMAIL": Array [],
|
|
141979
|
-
"SMS": Array [],
|
|
141980
|
-
"WHATSAPP": Array [],
|
|
141981
|
-
}
|
|
141982
|
-
}
|
|
141890
|
+
senderDetailsOptions={Array []}
|
|
141983
141891
|
setSearchValue={[Function]}
|
|
141984
141892
|
smsTraiDltEnabled={false}
|
|
141985
141893
|
testEntitiesTreeData={
|
|
@@ -142011,7 +141919,6 @@ new message content.",
|
|
|
142011
141919
|
<PreviewSection
|
|
142012
141920
|
unifiedPreviewProps={
|
|
142013
141921
|
Object {
|
|
142014
|
-
"activePreviewTab": "rcs",
|
|
142015
141922
|
"channel": "WHATSAPP",
|
|
142016
141923
|
"content": Object {
|
|
142017
141924
|
"_id": null,
|
|
@@ -142046,11 +141953,8 @@ new message content.",
|
|
|
142046
141953
|
"isUpdating": false,
|
|
142047
141954
|
"lastModified": undefined,
|
|
142048
141955
|
"onDeviceChange": [Function],
|
|
142049
|
-
"onPreviewTabChange": [Function],
|
|
142050
141956
|
"selectedCustomer": null,
|
|
142051
141957
|
"showDeviceToggle": true,
|
|
142052
|
-
"smsFallbackContent": null,
|
|
142053
|
-
"smsFallbackResolvedText": undefined,
|
|
142054
141958
|
"updatedByName": undefined,
|
|
142055
141959
|
}
|
|
142056
141960
|
}
|
|
@@ -158478,7 +158382,6 @@ new message content.",
|
|
|
158478
158382
|
className="ant-col ant-col-10 cap-column-v2"
|
|
158479
158383
|
>
|
|
158480
158384
|
<UnifiedPreview
|
|
158481
|
-
activePreviewTab="rcs"
|
|
158482
158385
|
channel="WHATSAPP"
|
|
158483
158386
|
content={
|
|
158484
158387
|
Object {
|
|
@@ -159944,11 +159847,9 @@ new message content.",
|
|
|
159944
159847
|
key=".0"
|
|
159945
159848
|
lastModified={null}
|
|
159946
159849
|
onDeviceChange={[Function]}
|
|
159947
|
-
onPreviewTabChange={[Function]}
|
|
159948
159850
|
selectedCustomer={null}
|
|
159949
159851
|
showDeviceToggle={false}
|
|
159950
159852
|
showHeader={false}
|
|
159951
|
-
smsFallbackContent={null}
|
|
159952
159853
|
updatedByName={null}
|
|
159953
159854
|
>
|
|
159954
159855
|
<CapRow
|
|
@@ -165502,7 +165403,6 @@ new message content.",
|
|
|
165502
165403
|
}
|
|
165503
165404
|
}
|
|
165504
165405
|
show={false}
|
|
165505
|
-
smsFallbackContent={null}
|
|
165506
165406
|
testCustomers={Immutable.List []}
|
|
165507
165407
|
testGroups={Immutable.List []}
|
|
165508
165408
|
updatePreviewError={null}
|
|
@@ -167870,7 +167770,6 @@ new message content.",
|
|
|
167870
167770
|
}
|
|
167871
167771
|
}
|
|
167872
167772
|
show={false}
|
|
167873
|
-
smsFallbackContent={null}
|
|
167874
167773
|
templateLayoutType={null}
|
|
167875
167774
|
testCustomers={Immutable.List []}
|
|
167876
167775
|
testGroups={Immutable.List []}
|
|
@@ -167964,7 +167863,6 @@ new message content.",
|
|
|
167964
167863
|
formatMessage={[Function]}
|
|
167965
167864
|
handleSendTestMessage={[Function]}
|
|
167966
167865
|
handleTestEntitiesChange={[Function]}
|
|
167967
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
167968
167866
|
isFetchingTestCustomers={false}
|
|
167969
167867
|
isFetchingTestGroups={false}
|
|
167970
167868
|
isLoadingSenderDetails={false}
|
|
@@ -167974,13 +167872,7 @@ new message content.",
|
|
|
167974
167872
|
renderAddTestCustomerButton={[Function]}
|
|
167975
167873
|
searchValue=""
|
|
167976
167874
|
selectedTestEntities={Array []}
|
|
167977
|
-
|
|
167978
|
-
Object {
|
|
167979
|
-
"EMAIL": Array [],
|
|
167980
|
-
"SMS": Array [],
|
|
167981
|
-
"WHATSAPP": Array [],
|
|
167982
|
-
}
|
|
167983
|
-
}
|
|
167875
|
+
senderDetailsOptions={Array []}
|
|
167984
167876
|
setSearchValue={[Function]}
|
|
167985
167877
|
smsTraiDltEnabled={false}
|
|
167986
167878
|
testEntitiesTreeData={
|
|
@@ -168012,7 +167904,6 @@ new message content.",
|
|
|
168012
167904
|
<PreviewSection
|
|
168013
167905
|
unifiedPreviewProps={
|
|
168014
167906
|
Object {
|
|
168015
|
-
"activePreviewTab": "rcs",
|
|
168016
167907
|
"channel": "WHATSAPP",
|
|
168017
167908
|
"content": Object {
|
|
168018
167909
|
"_id": null,
|
|
@@ -168047,11 +167938,8 @@ new message content.",
|
|
|
168047
167938
|
"isUpdating": false,
|
|
168048
167939
|
"lastModified": undefined,
|
|
168049
167940
|
"onDeviceChange": [Function],
|
|
168050
|
-
"onPreviewTabChange": [Function],
|
|
168051
167941
|
"selectedCustomer": null,
|
|
168052
167942
|
"showDeviceToggle": true,
|
|
168053
|
-
"smsFallbackContent": null,
|
|
168054
|
-
"smsFallbackResolvedText": undefined,
|
|
168055
167943
|
"updatedByName": undefined,
|
|
168056
167944
|
}
|
|
168057
167945
|
}
|
|
@@ -184759,7 +184647,6 @@ new message content.",
|
|
|
184759
184647
|
className="ant-col ant-col-10 cap-column-v2"
|
|
184760
184648
|
>
|
|
184761
184649
|
<UnifiedPreview
|
|
184762
|
-
activePreviewTab="rcs"
|
|
184763
184650
|
channel="WHATSAPP"
|
|
184764
184651
|
content={
|
|
184765
184652
|
Object {
|
|
@@ -186610,11 +186497,9 @@ new message content.",
|
|
|
186610
186497
|
key=".0"
|
|
186611
186498
|
lastModified={null}
|
|
186612
186499
|
onDeviceChange={[Function]}
|
|
186613
|
-
onPreviewTabChange={[Function]}
|
|
186614
186500
|
selectedCustomer={null}
|
|
186615
186501
|
showDeviceToggle={false}
|
|
186616
186502
|
showHeader={false}
|
|
186617
|
-
smsFallbackContent={null}
|
|
186618
186503
|
updatedByName={null}
|
|
186619
186504
|
>
|
|
186620
186505
|
<CapRow
|
|
@@ -192551,7 +192436,6 @@ new message content.",
|
|
|
192551
192436
|
}
|
|
192552
192437
|
}
|
|
192553
192438
|
show={false}
|
|
192554
|
-
smsFallbackContent={null}
|
|
192555
192439
|
testCustomers={Immutable.List []}
|
|
192556
192440
|
testGroups={Immutable.List []}
|
|
192557
192441
|
updatePreviewError={null}
|
|
@@ -194919,7 +194803,6 @@ new message content.",
|
|
|
194919
194803
|
}
|
|
194920
194804
|
}
|
|
194921
194805
|
show={false}
|
|
194922
|
-
smsFallbackContent={null}
|
|
194923
194806
|
templateLayoutType={null}
|
|
194924
194807
|
testCustomers={Immutable.List []}
|
|
194925
194808
|
testGroups={Immutable.List []}
|
|
@@ -195013,7 +194896,6 @@ new message content.",
|
|
|
195013
194896
|
formatMessage={[Function]}
|
|
195014
194897
|
handleSendTestMessage={[Function]}
|
|
195015
194898
|
handleTestEntitiesChange={[Function]}
|
|
195016
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
195017
194899
|
isFetchingTestCustomers={false}
|
|
195018
194900
|
isFetchingTestGroups={false}
|
|
195019
194901
|
isLoadingSenderDetails={false}
|
|
@@ -195023,13 +194905,7 @@ new message content.",
|
|
|
195023
194905
|
renderAddTestCustomerButton={[Function]}
|
|
195024
194906
|
searchValue=""
|
|
195025
194907
|
selectedTestEntities={Array []}
|
|
195026
|
-
|
|
195027
|
-
Object {
|
|
195028
|
-
"EMAIL": Array [],
|
|
195029
|
-
"SMS": Array [],
|
|
195030
|
-
"WHATSAPP": Array [],
|
|
195031
|
-
}
|
|
195032
|
-
}
|
|
194908
|
+
senderDetailsOptions={Array []}
|
|
195033
194909
|
setSearchValue={[Function]}
|
|
195034
194910
|
smsTraiDltEnabled={false}
|
|
195035
194911
|
testEntitiesTreeData={
|
|
@@ -195061,7 +194937,6 @@ new message content.",
|
|
|
195061
194937
|
<PreviewSection
|
|
195062
194938
|
unifiedPreviewProps={
|
|
195063
194939
|
Object {
|
|
195064
|
-
"activePreviewTab": "rcs",
|
|
195065
194940
|
"channel": "WHATSAPP",
|
|
195066
194941
|
"content": Object {
|
|
195067
194942
|
"_id": null,
|
|
@@ -195096,11 +194971,8 @@ new message content.",
|
|
|
195096
194971
|
"isUpdating": false,
|
|
195097
194972
|
"lastModified": undefined,
|
|
195098
194973
|
"onDeviceChange": [Function],
|
|
195099
|
-
"onPreviewTabChange": [Function],
|
|
195100
194974
|
"selectedCustomer": null,
|
|
195101
194975
|
"showDeviceToggle": true,
|
|
195102
|
-
"smsFallbackContent": null,
|
|
195103
|
-
"smsFallbackResolvedText": undefined,
|
|
195104
194976
|
"updatedByName": undefined,
|
|
195105
194977
|
}
|
|
195106
194978
|
}
|
|
@@ -212683,7 +212555,6 @@ new message content.",
|
|
|
212683
212555
|
className="ant-col ant-col-10 cap-column-v2"
|
|
212684
212556
|
>
|
|
212685
212557
|
<UnifiedPreview
|
|
212686
|
-
activePreviewTab="rcs"
|
|
212687
212558
|
channel="WHATSAPP"
|
|
212688
212559
|
content={
|
|
212689
212560
|
Object {
|
|
@@ -215304,11 +215175,9 @@ new message content.",
|
|
|
215304
215175
|
key=".0"
|
|
215305
215176
|
lastModified={null}
|
|
215306
215177
|
onDeviceChange={[Function]}
|
|
215307
|
-
onPreviewTabChange={[Function]}
|
|
215308
215178
|
selectedCustomer={null}
|
|
215309
215179
|
showDeviceToggle={false}
|
|
215310
215180
|
showHeader={false}
|
|
215311
|
-
smsFallbackContent={null}
|
|
215312
215181
|
updatedByName={null}
|
|
215313
215182
|
>
|
|
215314
215183
|
<CapRow
|
|
@@ -222017,7 +221886,6 @@ new message content.",
|
|
|
222017
221886
|
}
|
|
222018
221887
|
}
|
|
222019
221888
|
show={false}
|
|
222020
|
-
smsFallbackContent={null}
|
|
222021
221889
|
testCustomers={Immutable.List []}
|
|
222022
221890
|
testGroups={Immutable.List []}
|
|
222023
221891
|
updatePreviewError={null}
|
|
@@ -224385,7 +224253,6 @@ new message content.",
|
|
|
224385
224253
|
}
|
|
224386
224254
|
}
|
|
224387
224255
|
show={false}
|
|
224388
|
-
smsFallbackContent={null}
|
|
224389
224256
|
templateLayoutType={null}
|
|
224390
224257
|
testCustomers={Immutable.List []}
|
|
224391
224258
|
testGroups={Immutable.List []}
|
|
@@ -224479,7 +224346,6 @@ new message content.",
|
|
|
224479
224346
|
formatMessage={[Function]}
|
|
224480
224347
|
handleSendTestMessage={[Function]}
|
|
224481
224348
|
handleTestEntitiesChange={[Function]}
|
|
224482
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
224483
224349
|
isFetchingTestCustomers={false}
|
|
224484
224350
|
isFetchingTestGroups={false}
|
|
224485
224351
|
isLoadingSenderDetails={false}
|
|
@@ -224489,13 +224355,7 @@ new message content.",
|
|
|
224489
224355
|
renderAddTestCustomerButton={[Function]}
|
|
224490
224356
|
searchValue=""
|
|
224491
224357
|
selectedTestEntities={Array []}
|
|
224492
|
-
|
|
224493
|
-
Object {
|
|
224494
|
-
"EMAIL": Array [],
|
|
224495
|
-
"SMS": Array [],
|
|
224496
|
-
"WHATSAPP": Array [],
|
|
224497
|
-
}
|
|
224498
|
-
}
|
|
224358
|
+
senderDetailsOptions={Array []}
|
|
224499
224359
|
setSearchValue={[Function]}
|
|
224500
224360
|
smsTraiDltEnabled={false}
|
|
224501
224361
|
testEntitiesTreeData={
|
|
@@ -224527,7 +224387,6 @@ new message content.",
|
|
|
224527
224387
|
<PreviewSection
|
|
224528
224388
|
unifiedPreviewProps={
|
|
224529
224389
|
Object {
|
|
224530
|
-
"activePreviewTab": "rcs",
|
|
224531
224390
|
"channel": "WHATSAPP",
|
|
224532
224391
|
"content": Object {
|
|
224533
224392
|
"_id": null,
|
|
@@ -224562,11 +224421,8 @@ new message content.",
|
|
|
224562
224421
|
"isUpdating": false,
|
|
224563
224422
|
"lastModified": undefined,
|
|
224564
224423
|
"onDeviceChange": [Function],
|
|
224565
|
-
"onPreviewTabChange": [Function],
|
|
224566
224424
|
"selectedCustomer": null,
|
|
224567
224425
|
"showDeviceToggle": true,
|
|
224568
|
-
"smsFallbackContent": null,
|
|
224569
|
-
"smsFallbackResolvedText": undefined,
|
|
224570
224426
|
"updatedByName": undefined,
|
|
224571
224427
|
}
|
|
224572
224428
|
}
|
|
@@ -242423,7 +242279,6 @@ new message content.",
|
|
|
242423
242279
|
className="ant-col ant-col-10 cap-column-v2"
|
|
242424
242280
|
>
|
|
242425
242281
|
<UnifiedPreview
|
|
242426
|
-
activePreviewTab="rcs"
|
|
242427
242282
|
channel="WHATSAPP"
|
|
242428
242283
|
content={
|
|
242429
242284
|
Object {
|
|
@@ -245429,11 +245284,9 @@ new message content.",
|
|
|
245429
245284
|
key=".0"
|
|
245430
245285
|
lastModified={null}
|
|
245431
245286
|
onDeviceChange={[Function]}
|
|
245432
|
-
onPreviewTabChange={[Function]}
|
|
245433
245287
|
selectedCustomer={null}
|
|
245434
245288
|
showDeviceToggle={false}
|
|
245435
245289
|
showHeader={false}
|
|
245436
|
-
smsFallbackContent={null}
|
|
245437
245290
|
updatedByName={null}
|
|
245438
245291
|
>
|
|
245439
245292
|
<CapRow
|
|
@@ -252525,7 +252378,6 @@ new message content.",
|
|
|
252525
252378
|
}
|
|
252526
252379
|
}
|
|
252527
252380
|
show={false}
|
|
252528
|
-
smsFallbackContent={null}
|
|
252529
252381
|
testCustomers={Immutable.List []}
|
|
252530
252382
|
testGroups={Immutable.List []}
|
|
252531
252383
|
updatePreviewError={null}
|
|
@@ -254893,7 +254745,6 @@ new message content.",
|
|
|
254893
254745
|
}
|
|
254894
254746
|
}
|
|
254895
254747
|
show={false}
|
|
254896
|
-
smsFallbackContent={null}
|
|
254897
254748
|
templateLayoutType={null}
|
|
254898
254749
|
testCustomers={Immutable.List []}
|
|
254899
254750
|
testGroups={Immutable.List []}
|
|
@@ -254987,7 +254838,6 @@ new message content.",
|
|
|
254987
254838
|
formatMessage={[Function]}
|
|
254988
254839
|
handleSendTestMessage={[Function]}
|
|
254989
254840
|
handleTestEntitiesChange={[Function]}
|
|
254990
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
254991
254841
|
isFetchingTestCustomers={false}
|
|
254992
254842
|
isFetchingTestGroups={false}
|
|
254993
254843
|
isLoadingSenderDetails={false}
|
|
@@ -254997,13 +254847,7 @@ new message content.",
|
|
|
254997
254847
|
renderAddTestCustomerButton={[Function]}
|
|
254998
254848
|
searchValue=""
|
|
254999
254849
|
selectedTestEntities={Array []}
|
|
255000
|
-
|
|
255001
|
-
Object {
|
|
255002
|
-
"EMAIL": Array [],
|
|
255003
|
-
"SMS": Array [],
|
|
255004
|
-
"WHATSAPP": Array [],
|
|
255005
|
-
}
|
|
255006
|
-
}
|
|
254850
|
+
senderDetailsOptions={Array []}
|
|
255007
254851
|
setSearchValue={[Function]}
|
|
255008
254852
|
smsTraiDltEnabled={false}
|
|
255009
254853
|
testEntitiesTreeData={
|
|
@@ -255035,7 +254879,6 @@ new message content.",
|
|
|
255035
254879
|
<PreviewSection
|
|
255036
254880
|
unifiedPreviewProps={
|
|
255037
254881
|
Object {
|
|
255038
|
-
"activePreviewTab": "rcs",
|
|
255039
254882
|
"channel": "WHATSAPP",
|
|
255040
254883
|
"content": Object {
|
|
255041
254884
|
"_id": null,
|
|
@@ -255070,11 +254913,8 @@ new message content.",
|
|
|
255070
254913
|
"isUpdating": false,
|
|
255071
254914
|
"lastModified": undefined,
|
|
255072
254915
|
"onDeviceChange": [Function],
|
|
255073
|
-
"onPreviewTabChange": [Function],
|
|
255074
254916
|
"selectedCustomer": null,
|
|
255075
254917
|
"showDeviceToggle": true,
|
|
255076
|
-
"smsFallbackContent": null,
|
|
255077
|
-
"smsFallbackResolvedText": undefined,
|
|
255078
254918
|
"updatedByName": undefined,
|
|
255079
254919
|
}
|
|
255080
254920
|
}
|
|
@@ -263534,7 +263374,6 @@ new message content.",
|
|
|
263534
263374
|
className="ant-col ant-col-10 cap-column-v2"
|
|
263535
263375
|
>
|
|
263536
263376
|
<UnifiedPreview
|
|
263537
|
-
activePreviewTab="rcs"
|
|
263538
263377
|
channel="WHATSAPP"
|
|
263539
263378
|
content={
|
|
263540
263379
|
Object {
|
|
@@ -264521,11 +264360,9 @@ undefined",
|
|
|
264521
264360
|
key=".0"
|
|
264522
264361
|
lastModified={null}
|
|
264523
264362
|
onDeviceChange={[Function]}
|
|
264524
|
-
onPreviewTabChange={[Function]}
|
|
264525
264363
|
selectedCustomer={null}
|
|
264526
264364
|
showDeviceToggle={false}
|
|
264527
264365
|
showHeader={false}
|
|
264528
|
-
smsFallbackContent={null}
|
|
264529
264366
|
updatedByName={null}
|
|
264530
264367
|
>
|
|
264531
264368
|
<CapRow
|
|
@@ -268966,7 +268803,6 @@ new message content.",
|
|
|
268966
268803
|
}
|
|
268967
268804
|
}
|
|
268968
268805
|
show={false}
|
|
268969
|
-
smsFallbackContent={null}
|
|
268970
268806
|
testCustomers={Immutable.List []}
|
|
268971
268807
|
testGroups={Immutable.List []}
|
|
268972
268808
|
updatePreviewError={null}
|
|
@@ -271382,7 +271218,6 @@ new message content.",
|
|
|
271382
271218
|
}
|
|
271383
271219
|
}
|
|
271384
271220
|
show={false}
|
|
271385
|
-
smsFallbackContent={null}
|
|
271386
271221
|
templateLayoutType={null}
|
|
271387
271222
|
testCustomers={Immutable.List []}
|
|
271388
271223
|
testGroups={Immutable.List []}
|
|
@@ -271500,7 +271335,6 @@ undefined",
|
|
|
271500
271335
|
formatMessage={[Function]}
|
|
271501
271336
|
handleSendTestMessage={[Function]}
|
|
271502
271337
|
handleTestEntitiesChange={[Function]}
|
|
271503
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
271504
271338
|
isFetchingTestCustomers={false}
|
|
271505
271339
|
isFetchingTestGroups={false}
|
|
271506
271340
|
isLoadingSenderDetails={false}
|
|
@@ -271510,13 +271344,7 @@ undefined",
|
|
|
271510
271344
|
renderAddTestCustomerButton={[Function]}
|
|
271511
271345
|
searchValue=""
|
|
271512
271346
|
selectedTestEntities={Array []}
|
|
271513
|
-
|
|
271514
|
-
Object {
|
|
271515
|
-
"EMAIL": Array [],
|
|
271516
|
-
"SMS": Array [],
|
|
271517
|
-
"WHATSAPP": Array [],
|
|
271518
|
-
}
|
|
271519
|
-
}
|
|
271347
|
+
senderDetailsOptions={Array []}
|
|
271520
271348
|
setSearchValue={[Function]}
|
|
271521
271349
|
smsTraiDltEnabled={false}
|
|
271522
271350
|
testEntitiesTreeData={
|
|
@@ -271548,7 +271376,6 @@ undefined",
|
|
|
271548
271376
|
<PreviewSection
|
|
271549
271377
|
unifiedPreviewProps={
|
|
271550
271378
|
Object {
|
|
271551
|
-
"activePreviewTab": "rcs",
|
|
271552
271379
|
"channel": "WHATSAPP",
|
|
271553
271380
|
"content": Object {
|
|
271554
271381
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -271607,11 +271434,8 @@ undefined",
|
|
|
271607
271434
|
"isUpdating": false,
|
|
271608
271435
|
"lastModified": undefined,
|
|
271609
271436
|
"onDeviceChange": [Function],
|
|
271610
|
-
"onPreviewTabChange": [Function],
|
|
271611
271437
|
"selectedCustomer": null,
|
|
271612
271438
|
"showDeviceToggle": true,
|
|
271613
|
-
"smsFallbackContent": null,
|
|
271614
|
-
"smsFallbackResolvedText": undefined,
|
|
271615
271439
|
"updatedByName": undefined,
|
|
271616
271440
|
}
|
|
271617
271441
|
}
|
|
@@ -277725,7 +277549,6 @@ T&C'
|
|
|
277725
277549
|
className="ant-col ant-col-10 cap-column-v2"
|
|
277726
277550
|
>
|
|
277727
277551
|
<UnifiedPreview
|
|
277728
|
-
activePreviewTab="rcs"
|
|
277729
277552
|
channel="WHATSAPP"
|
|
277730
277553
|
content={
|
|
277731
277554
|
Object {
|
|
@@ -279598,11 +279421,9 @@ T&C'",
|
|
|
279598
279421
|
key=".0"
|
|
279599
279422
|
lastModified={null}
|
|
279600
279423
|
onDeviceChange={[Function]}
|
|
279601
|
-
onPreviewTabChange={[Function]}
|
|
279602
279424
|
selectedCustomer={null}
|
|
279603
279425
|
showDeviceToggle={false}
|
|
279604
279426
|
showHeader={false}
|
|
279605
|
-
smsFallbackContent={null}
|
|
279606
279427
|
updatedByName={null}
|
|
279607
279428
|
>
|
|
279608
279429
|
<CapRow
|
|
@@ -284424,7 +284245,6 @@ new message content.",
|
|
|
284424
284245
|
}
|
|
284425
284246
|
}
|
|
284426
284247
|
show={false}
|
|
284427
|
-
smsFallbackContent={null}
|
|
284428
284248
|
testCustomers={Immutable.List []}
|
|
284429
284249
|
testGroups={Immutable.List []}
|
|
284430
284250
|
updatePreviewError={null}
|
|
@@ -286796,7 +286616,6 @@ new message content.",
|
|
|
286796
286616
|
}
|
|
286797
286617
|
}
|
|
286798
286618
|
show={false}
|
|
286799
|
-
smsFallbackContent={null}
|
|
286800
286619
|
templateLayoutType={null}
|
|
286801
286620
|
testCustomers={Immutable.List []}
|
|
286802
286621
|
testGroups={Immutable.List []}
|
|
@@ -286892,7 +286711,6 @@ T&C'",
|
|
|
286892
286711
|
formatMessage={[Function]}
|
|
286893
286712
|
handleSendTestMessage={[Function]}
|
|
286894
286713
|
handleTestEntitiesChange={[Function]}
|
|
286895
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
286896
286714
|
isFetchingTestCustomers={false}
|
|
286897
286715
|
isFetchingTestGroups={false}
|
|
286898
286716
|
isLoadingSenderDetails={false}
|
|
@@ -286902,13 +286720,7 @@ T&C'",
|
|
|
286902
286720
|
renderAddTestCustomerButton={[Function]}
|
|
286903
286721
|
searchValue=""
|
|
286904
286722
|
selectedTestEntities={Array []}
|
|
286905
|
-
|
|
286906
|
-
Object {
|
|
286907
|
-
"EMAIL": Array [],
|
|
286908
|
-
"SMS": Array [],
|
|
286909
|
-
"WHATSAPP": Array [],
|
|
286910
|
-
}
|
|
286911
|
-
}
|
|
286723
|
+
senderDetailsOptions={Array []}
|
|
286912
286724
|
setSearchValue={[Function]}
|
|
286913
286725
|
smsTraiDltEnabled={false}
|
|
286914
286726
|
testEntitiesTreeData={
|
|
@@ -286940,7 +286752,6 @@ T&C'",
|
|
|
286940
286752
|
<PreviewSection
|
|
286941
286753
|
unifiedPreviewProps={
|
|
286942
286754
|
Object {
|
|
286943
|
-
"activePreviewTab": "rcs",
|
|
286944
286755
|
"channel": "WHATSAPP",
|
|
286945
286756
|
"content": Object {
|
|
286946
286757
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -286977,11 +286788,8 @@ T&C'",
|
|
|
286977
286788
|
"isUpdating": false,
|
|
286978
286789
|
"lastModified": undefined,
|
|
286979
286790
|
"onDeviceChange": [Function],
|
|
286980
|
-
"onPreviewTabChange": [Function],
|
|
286981
286791
|
"selectedCustomer": null,
|
|
286982
286792
|
"showDeviceToggle": true,
|
|
286983
|
-
"smsFallbackContent": null,
|
|
286984
|
-
"smsFallbackResolvedText": undefined,
|
|
286985
286793
|
"updatedByName": undefined,
|
|
286986
286794
|
}
|
|
286987
286795
|
}
|
|
@@ -293694,7 +293502,6 @@ new message content.",
|
|
|
293694
293502
|
className="ant-col ant-col-10 cap-column-v2"
|
|
293695
293503
|
>
|
|
293696
293504
|
<UnifiedPreview
|
|
293697
|
-
activePreviewTab="rcs"
|
|
293698
293505
|
channel="WHATSAPP"
|
|
293699
293506
|
content={
|
|
293700
293507
|
Object {
|
|
@@ -296421,11 +296228,9 @@ new message content.",
|
|
|
296421
296228
|
key=".0"
|
|
296422
296229
|
lastModified={null}
|
|
296423
296230
|
onDeviceChange={[Function]}
|
|
296424
|
-
onPreviewTabChange={[Function]}
|
|
296425
296231
|
selectedCustomer={null}
|
|
296426
296232
|
showDeviceToggle={false}
|
|
296427
296233
|
showHeader={false}
|
|
296428
|
-
smsFallbackContent={null}
|
|
296429
296234
|
updatedByName={null}
|
|
296430
296235
|
>
|
|
296431
296236
|
<CapRow
|
|
@@ -302071,7 +301876,6 @@ new message content.",
|
|
|
302071
301876
|
}
|
|
302072
301877
|
}
|
|
302073
301878
|
show={false}
|
|
302074
|
-
smsFallbackContent={null}
|
|
302075
301879
|
testCustomers={Immutable.List []}
|
|
302076
301880
|
testGroups={Immutable.List []}
|
|
302077
301881
|
updatePreviewError={null}
|
|
@@ -304439,7 +304243,6 @@ new message content.",
|
|
|
304439
304243
|
}
|
|
304440
304244
|
}
|
|
304441
304245
|
show={false}
|
|
304442
|
-
smsFallbackContent={null}
|
|
304443
304246
|
templateLayoutType={null}
|
|
304444
304247
|
testCustomers={Immutable.List []}
|
|
304445
304248
|
testGroups={Immutable.List []}
|
|
@@ -304533,7 +304336,6 @@ new message content.",
|
|
|
304533
304336
|
formatMessage={[Function]}
|
|
304534
304337
|
handleSendTestMessage={[Function]}
|
|
304535
304338
|
handleTestEntitiesChange={[Function]}
|
|
304536
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
304537
304339
|
isFetchingTestCustomers={false}
|
|
304538
304340
|
isFetchingTestGroups={false}
|
|
304539
304341
|
isLoadingSenderDetails={false}
|
|
@@ -304543,13 +304345,7 @@ new message content.",
|
|
|
304543
304345
|
renderAddTestCustomerButton={[Function]}
|
|
304544
304346
|
searchValue=""
|
|
304545
304347
|
selectedTestEntities={Array []}
|
|
304546
|
-
|
|
304547
|
-
Object {
|
|
304548
|
-
"EMAIL": Array [],
|
|
304549
|
-
"SMS": Array [],
|
|
304550
|
-
"WHATSAPP": Array [],
|
|
304551
|
-
}
|
|
304552
|
-
}
|
|
304348
|
+
senderDetailsOptions={Array []}
|
|
304553
304349
|
setSearchValue={[Function]}
|
|
304554
304350
|
smsTraiDltEnabled={false}
|
|
304555
304351
|
testEntitiesTreeData={
|
|
@@ -304581,7 +304377,6 @@ new message content.",
|
|
|
304581
304377
|
<PreviewSection
|
|
304582
304378
|
unifiedPreviewProps={
|
|
304583
304379
|
Object {
|
|
304584
|
-
"activePreviewTab": "rcs",
|
|
304585
304380
|
"channel": "WHATSAPP",
|
|
304586
304381
|
"content": Object {
|
|
304587
304382
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -304616,11 +304411,8 @@ new message content.",
|
|
|
304616
304411
|
"isUpdating": false,
|
|
304617
304412
|
"lastModified": undefined,
|
|
304618
304413
|
"onDeviceChange": [Function],
|
|
304619
|
-
"onPreviewTabChange": [Function],
|
|
304620
304414
|
"selectedCustomer": null,
|
|
304621
304415
|
"showDeviceToggle": true,
|
|
304622
|
-
"smsFallbackContent": null,
|
|
304623
|
-
"smsFallbackResolvedText": undefined,
|
|
304624
304416
|
"updatedByName": undefined,
|
|
304625
304417
|
}
|
|
304626
304418
|
}
|
|
@@ -316113,7 +315905,6 @@ new message content.",
|
|
|
316113
315905
|
className="ant-col ant-col-10 cap-column-v2"
|
|
316114
315906
|
>
|
|
316115
315907
|
<UnifiedPreview
|
|
316116
|
-
activePreviewTab="rcs"
|
|
316117
315908
|
channel="WHATSAPP"
|
|
316118
315909
|
content={
|
|
316119
315910
|
Object {
|
|
@@ -320076,11 +319867,9 @@ undefined",
|
|
|
320076
319867
|
key=".0"
|
|
320077
319868
|
lastModified={null}
|
|
320078
319869
|
onDeviceChange={[Function]}
|
|
320079
|
-
onPreviewTabChange={[Function]}
|
|
320080
319870
|
selectedCustomer={null}
|
|
320081
319871
|
showDeviceToggle={false}
|
|
320082
319872
|
showHeader={false}
|
|
320083
|
-
smsFallbackContent={null}
|
|
320084
319873
|
updatedByName={null}
|
|
320085
319874
|
>
|
|
320086
319875
|
<CapRow
|
|
@@ -327497,7 +327286,6 @@ new message content.",
|
|
|
327497
327286
|
}
|
|
327498
327287
|
}
|
|
327499
327288
|
show={false}
|
|
327500
|
-
smsFallbackContent={null}
|
|
327501
327289
|
testCustomers={Immutable.List []}
|
|
327502
327290
|
testGroups={Immutable.List []}
|
|
327503
327291
|
updatePreviewError={null}
|
|
@@ -329913,7 +329701,6 @@ new message content.",
|
|
|
329913
329701
|
}
|
|
329914
329702
|
}
|
|
329915
329703
|
show={false}
|
|
329916
|
-
smsFallbackContent={null}
|
|
329917
329704
|
templateLayoutType={null}
|
|
329918
329705
|
testCustomers={Immutable.List []}
|
|
329919
329706
|
testGroups={Immutable.List []}
|
|
@@ -330031,7 +329818,6 @@ undefined",
|
|
|
330031
329818
|
formatMessage={[Function]}
|
|
330032
329819
|
handleSendTestMessage={[Function]}
|
|
330033
329820
|
handleTestEntitiesChange={[Function]}
|
|
330034
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
330035
329821
|
isFetchingTestCustomers={false}
|
|
330036
329822
|
isFetchingTestGroups={false}
|
|
330037
329823
|
isLoadingSenderDetails={false}
|
|
@@ -330041,13 +329827,7 @@ undefined",
|
|
|
330041
329827
|
renderAddTestCustomerButton={[Function]}
|
|
330042
329828
|
searchValue=""
|
|
330043
329829
|
selectedTestEntities={Array []}
|
|
330044
|
-
|
|
330045
|
-
Object {
|
|
330046
|
-
"EMAIL": Array [],
|
|
330047
|
-
"SMS": Array [],
|
|
330048
|
-
"WHATSAPP": Array [],
|
|
330049
|
-
}
|
|
330050
|
-
}
|
|
329830
|
+
senderDetailsOptions={Array []}
|
|
330051
329831
|
setSearchValue={[Function]}
|
|
330052
329832
|
smsTraiDltEnabled={false}
|
|
330053
329833
|
testEntitiesTreeData={
|
|
@@ -330079,7 +329859,6 @@ undefined",
|
|
|
330079
329859
|
<PreviewSection
|
|
330080
329860
|
unifiedPreviewProps={
|
|
330081
329861
|
Object {
|
|
330082
|
-
"activePreviewTab": "rcs",
|
|
330083
329862
|
"channel": "WHATSAPP",
|
|
330084
329863
|
"content": Object {
|
|
330085
329864
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -330138,11 +329917,8 @@ undefined",
|
|
|
330138
329917
|
"isUpdating": false,
|
|
330139
329918
|
"lastModified": undefined,
|
|
330140
329919
|
"onDeviceChange": [Function],
|
|
330141
|
-
"onPreviewTabChange": [Function],
|
|
330142
329920
|
"selectedCustomer": null,
|
|
330143
329921
|
"showDeviceToggle": true,
|
|
330144
|
-
"smsFallbackContent": null,
|
|
330145
|
-
"smsFallbackResolvedText": undefined,
|
|
330146
329922
|
"updatedByName": undefined,
|
|
330147
329923
|
}
|
|
330148
329924
|
}
|
|
@@ -342661,7 +342437,6 @@ new message content.",
|
|
|
342661
342437
|
className="ant-col ant-col-10 cap-column-v2"
|
|
342662
342438
|
>
|
|
342663
342439
|
<UnifiedPreview
|
|
342664
|
-
activePreviewTab="rcs"
|
|
342665
342440
|
channel="WHATSAPP"
|
|
342666
342441
|
content={
|
|
342667
342442
|
Object {
|
|
@@ -347788,11 +347563,9 @@ undefined",
|
|
|
347788
347563
|
key=".0"
|
|
347789
347564
|
lastModified={null}
|
|
347790
347565
|
onDeviceChange={[Function]}
|
|
347791
|
-
onPreviewTabChange={[Function]}
|
|
347792
347566
|
selectedCustomer={null}
|
|
347793
347567
|
showDeviceToggle={false}
|
|
347794
347568
|
showHeader={false}
|
|
347795
|
-
smsFallbackContent={null}
|
|
347796
347569
|
updatedByName={null}
|
|
347797
347570
|
>
|
|
347798
347571
|
<CapRow
|
|
@@ -356929,7 +356702,6 @@ new message content.",
|
|
|
356929
356702
|
}
|
|
356930
356703
|
}
|
|
356931
356704
|
show={false}
|
|
356932
|
-
smsFallbackContent={null}
|
|
356933
356705
|
testCustomers={Immutable.List []}
|
|
356934
356706
|
testGroups={Immutable.List []}
|
|
356935
356707
|
updatePreviewError={null}
|
|
@@ -359341,7 +359113,6 @@ new message content.",
|
|
|
359341
359113
|
}
|
|
359342
359114
|
}
|
|
359343
359115
|
show={false}
|
|
359344
|
-
smsFallbackContent={null}
|
|
359345
359116
|
templateLayoutType={null}
|
|
359346
359117
|
testCustomers={Immutable.List []}
|
|
359347
359118
|
testGroups={Immutable.List []}
|
|
@@ -359457,7 +359228,6 @@ undefined",
|
|
|
359457
359228
|
formatMessage={[Function]}
|
|
359458
359229
|
handleSendTestMessage={[Function]}
|
|
359459
359230
|
handleTestEntitiesChange={[Function]}
|
|
359460
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
359461
359231
|
isFetchingTestCustomers={false}
|
|
359462
359232
|
isFetchingTestGroups={false}
|
|
359463
359233
|
isLoadingSenderDetails={false}
|
|
@@ -359467,13 +359237,7 @@ undefined",
|
|
|
359467
359237
|
renderAddTestCustomerButton={[Function]}
|
|
359468
359238
|
searchValue=""
|
|
359469
359239
|
selectedTestEntities={Array []}
|
|
359470
|
-
|
|
359471
|
-
Object {
|
|
359472
|
-
"EMAIL": Array [],
|
|
359473
|
-
"SMS": Array [],
|
|
359474
|
-
"WHATSAPP": Array [],
|
|
359475
|
-
}
|
|
359476
|
-
}
|
|
359240
|
+
senderDetailsOptions={Array []}
|
|
359477
359241
|
setSearchValue={[Function]}
|
|
359478
359242
|
smsTraiDltEnabled={false}
|
|
359479
359243
|
testEntitiesTreeData={
|
|
@@ -359505,7 +359269,6 @@ undefined",
|
|
|
359505
359269
|
<PreviewSection
|
|
359506
359270
|
unifiedPreviewProps={
|
|
359507
359271
|
Object {
|
|
359508
|
-
"activePreviewTab": "rcs",
|
|
359509
359272
|
"channel": "WHATSAPP",
|
|
359510
359273
|
"content": Object {
|
|
359511
359274
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -359562,11 +359325,8 @@ undefined",
|
|
|
359562
359325
|
"isUpdating": false,
|
|
359563
359326
|
"lastModified": undefined,
|
|
359564
359327
|
"onDeviceChange": [Function],
|
|
359565
|
-
"onPreviewTabChange": [Function],
|
|
359566
359328
|
"selectedCustomer": null,
|
|
359567
359329
|
"showDeviceToggle": true,
|
|
359568
|
-
"smsFallbackContent": null,
|
|
359569
|
-
"smsFallbackResolvedText": undefined,
|
|
359570
359330
|
"updatedByName": undefined,
|
|
359571
359331
|
}
|
|
359572
359332
|
}
|
|
@@ -367869,7 +367629,6 @@ new message content.",
|
|
|
367869
367629
|
className="ant-col ant-col-10 cap-column-v2"
|
|
367870
367630
|
>
|
|
367871
367631
|
<UnifiedPreview
|
|
367872
|
-
activePreviewTab="rcs"
|
|
367873
367632
|
channel="WHATSAPP"
|
|
367874
367633
|
content={
|
|
367875
367634
|
Object {
|
|
@@ -369019,11 +368778,9 @@ new message content.",
|
|
|
369019
368778
|
key=".0"
|
|
369020
368779
|
lastModified={null}
|
|
369021
368780
|
onDeviceChange={[Function]}
|
|
369022
|
-
onPreviewTabChange={[Function]}
|
|
369023
368781
|
selectedCustomer={null}
|
|
369024
368782
|
showDeviceToggle={false}
|
|
369025
368783
|
showHeader={false}
|
|
369026
|
-
smsFallbackContent={null}
|
|
369027
368784
|
updatedByName={null}
|
|
369028
368785
|
>
|
|
369029
368786
|
<CapRow
|
|
@@ -373964,7 +373721,6 @@ new message content.",
|
|
|
373964
373721
|
}
|
|
373965
373722
|
}
|
|
373966
373723
|
show={false}
|
|
373967
|
-
smsFallbackContent={null}
|
|
373968
373724
|
testCustomers={Immutable.List []}
|
|
373969
373725
|
testGroups={Immutable.List []}
|
|
373970
373726
|
updatePreviewError={null}
|
|
@@ -376354,7 +376110,6 @@ new message content.",
|
|
|
376354
376110
|
}
|
|
376355
376111
|
}
|
|
376356
376112
|
show={false}
|
|
376357
|
-
smsFallbackContent={null}
|
|
376358
376113
|
templateLayoutType={null}
|
|
376359
376114
|
testCustomers={Immutable.List []}
|
|
376360
376115
|
testGroups={Immutable.List []}
|
|
@@ -376459,7 +376214,6 @@ new message content.",
|
|
|
376459
376214
|
formatMessage={[Function]}
|
|
376460
376215
|
handleSendTestMessage={[Function]}
|
|
376461
376216
|
handleTestEntitiesChange={[Function]}
|
|
376462
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
376463
376217
|
isFetchingTestCustomers={false}
|
|
376464
376218
|
isFetchingTestGroups={false}
|
|
376465
376219
|
isLoadingSenderDetails={false}
|
|
@@ -376469,13 +376223,7 @@ new message content.",
|
|
|
376469
376223
|
renderAddTestCustomerButton={[Function]}
|
|
376470
376224
|
searchValue=""
|
|
376471
376225
|
selectedTestEntities={Array []}
|
|
376472
|
-
|
|
376473
|
-
Object {
|
|
376474
|
-
"EMAIL": Array [],
|
|
376475
|
-
"SMS": Array [],
|
|
376476
|
-
"WHATSAPP": Array [],
|
|
376477
|
-
}
|
|
376478
|
-
}
|
|
376226
|
+
senderDetailsOptions={Array []}
|
|
376479
376227
|
setSearchValue={[Function]}
|
|
376480
376228
|
smsTraiDltEnabled={false}
|
|
376481
376229
|
testEntitiesTreeData={
|
|
@@ -376507,7 +376255,6 @@ new message content.",
|
|
|
376507
376255
|
<PreviewSection
|
|
376508
376256
|
unifiedPreviewProps={
|
|
376509
376257
|
Object {
|
|
376510
|
-
"activePreviewTab": "rcs",
|
|
376511
376258
|
"channel": "WHATSAPP",
|
|
376512
376259
|
"content": Object {
|
|
376513
376260
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -376553,11 +376300,8 @@ new message content.",
|
|
|
376553
376300
|
"isUpdating": false,
|
|
376554
376301
|
"lastModified": undefined,
|
|
376555
376302
|
"onDeviceChange": [Function],
|
|
376556
|
-
"onPreviewTabChange": [Function],
|
|
376557
376303
|
"selectedCustomer": null,
|
|
376558
376304
|
"showDeviceToggle": true,
|
|
376559
|
-
"smsFallbackContent": null,
|
|
376560
|
-
"smsFallbackResolvedText": undefined,
|
|
376561
376305
|
"updatedByName": undefined,
|
|
376562
376306
|
}
|
|
376563
376307
|
}
|
|
@@ -390393,7 +390137,6 @@ new message content.",
|
|
|
390393
390137
|
className="ant-col ant-col-10 cap-column-v2"
|
|
390394
390138
|
>
|
|
390395
390139
|
<UnifiedPreview
|
|
390396
|
-
activePreviewTab="rcs"
|
|
390397
390140
|
channel="WHATSAPP"
|
|
390398
390141
|
content={
|
|
390399
390142
|
Object {
|
|
@@ -391089,11 +390832,9 @@ new message content.",
|
|
|
391089
390832
|
key=".0"
|
|
391090
390833
|
lastModified={null}
|
|
391091
390834
|
onDeviceChange={[Function]}
|
|
391092
|
-
onPreviewTabChange={[Function]}
|
|
391093
390835
|
selectedCustomer={null}
|
|
391094
390836
|
showDeviceToggle={false}
|
|
391095
390837
|
showHeader={false}
|
|
391096
|
-
smsFallbackContent={null}
|
|
391097
390838
|
updatedByName={null}
|
|
391098
390839
|
>
|
|
391099
390840
|
<CapRow
|
|
@@ -395877,7 +395618,6 @@ new message content.",
|
|
|
395877
395618
|
}
|
|
395878
395619
|
}
|
|
395879
395620
|
show={false}
|
|
395880
|
-
smsFallbackContent={null}
|
|
395881
395621
|
testCustomers={Immutable.List []}
|
|
395882
395622
|
testGroups={Immutable.List []}
|
|
395883
395623
|
updatePreviewError={null}
|
|
@@ -398245,7 +397985,6 @@ new message content.",
|
|
|
398245
397985
|
}
|
|
398246
397986
|
}
|
|
398247
397987
|
show={false}
|
|
398248
|
-
smsFallbackContent={null}
|
|
398249
397988
|
templateLayoutType={null}
|
|
398250
397989
|
testCustomers={Immutable.List []}
|
|
398251
397990
|
testGroups={Immutable.List []}
|
|
@@ -398339,7 +398078,6 @@ new message content.",
|
|
|
398339
398078
|
formatMessage={[Function]}
|
|
398340
398079
|
handleSendTestMessage={[Function]}
|
|
398341
398080
|
handleTestEntitiesChange={[Function]}
|
|
398342
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
398343
398081
|
isFetchingTestCustomers={false}
|
|
398344
398082
|
isFetchingTestGroups={false}
|
|
398345
398083
|
isLoadingSenderDetails={false}
|
|
@@ -398349,13 +398087,7 @@ new message content.",
|
|
|
398349
398087
|
renderAddTestCustomerButton={[Function]}
|
|
398350
398088
|
searchValue=""
|
|
398351
398089
|
selectedTestEntities={Array []}
|
|
398352
|
-
|
|
398353
|
-
Object {
|
|
398354
|
-
"EMAIL": Array [],
|
|
398355
|
-
"SMS": Array [],
|
|
398356
|
-
"WHATSAPP": Array [],
|
|
398357
|
-
}
|
|
398358
|
-
}
|
|
398090
|
+
senderDetailsOptions={Array []}
|
|
398359
398091
|
setSearchValue={[Function]}
|
|
398360
398092
|
smsTraiDltEnabled={false}
|
|
398361
398093
|
testEntitiesTreeData={
|
|
@@ -398387,7 +398119,6 @@ new message content.",
|
|
|
398387
398119
|
<PreviewSection
|
|
398388
398120
|
unifiedPreviewProps={
|
|
398389
398121
|
Object {
|
|
398390
|
-
"activePreviewTab": "rcs",
|
|
398391
398122
|
"channel": "WHATSAPP",
|
|
398392
398123
|
"content": Object {
|
|
398393
398124
|
"_id": null,
|
|
@@ -398422,11 +398153,8 @@ new message content.",
|
|
|
398422
398153
|
"isUpdating": false,
|
|
398423
398154
|
"lastModified": undefined,
|
|
398424
398155
|
"onDeviceChange": [Function],
|
|
398425
|
-
"onPreviewTabChange": [Function],
|
|
398426
398156
|
"selectedCustomer": null,
|
|
398427
398157
|
"showDeviceToggle": true,
|
|
398428
|
-
"smsFallbackContent": null,
|
|
398429
|
-
"smsFallbackResolvedText": undefined,
|
|
398430
398158
|
"updatedByName": undefined,
|
|
398431
398159
|
}
|
|
398432
398160
|
}
|
|
@@ -414854,7 +414582,6 @@ new message content.",
|
|
|
414854
414582
|
className="ant-col ant-col-10 cap-column-v2"
|
|
414855
414583
|
>
|
|
414856
414584
|
<UnifiedPreview
|
|
414857
|
-
activePreviewTab="rcs"
|
|
414858
414585
|
channel="WHATSAPP"
|
|
414859
414586
|
content={
|
|
414860
414587
|
Object {
|
|
@@ -416320,11 +416047,9 @@ new message content.",
|
|
|
416320
416047
|
key=".0"
|
|
416321
416048
|
lastModified={null}
|
|
416322
416049
|
onDeviceChange={[Function]}
|
|
416323
|
-
onPreviewTabChange={[Function]}
|
|
416324
416050
|
selectedCustomer={null}
|
|
416325
416051
|
showDeviceToggle={false}
|
|
416326
416052
|
showHeader={false}
|
|
416327
|
-
smsFallbackContent={null}
|
|
416328
416053
|
updatedByName={null}
|
|
416329
416054
|
>
|
|
416330
416055
|
<CapRow
|
|
@@ -421878,7 +421603,6 @@ new message content.",
|
|
|
421878
421603
|
}
|
|
421879
421604
|
}
|
|
421880
421605
|
show={false}
|
|
421881
|
-
smsFallbackContent={null}
|
|
421882
421606
|
testCustomers={Immutable.List []}
|
|
421883
421607
|
testGroups={Immutable.List []}
|
|
421884
421608
|
updatePreviewError={null}
|
|
@@ -424246,7 +423970,6 @@ new message content.",
|
|
|
424246
423970
|
}
|
|
424247
423971
|
}
|
|
424248
423972
|
show={false}
|
|
424249
|
-
smsFallbackContent={null}
|
|
424250
423973
|
templateLayoutType={null}
|
|
424251
423974
|
testCustomers={Immutable.List []}
|
|
424252
423975
|
testGroups={Immutable.List []}
|
|
@@ -424340,7 +424063,6 @@ new message content.",
|
|
|
424340
424063
|
formatMessage={[Function]}
|
|
424341
424064
|
handleSendTestMessage={[Function]}
|
|
424342
424065
|
handleTestEntitiesChange={[Function]}
|
|
424343
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
424344
424066
|
isFetchingTestCustomers={false}
|
|
424345
424067
|
isFetchingTestGroups={false}
|
|
424346
424068
|
isLoadingSenderDetails={false}
|
|
@@ -424350,13 +424072,7 @@ new message content.",
|
|
|
424350
424072
|
renderAddTestCustomerButton={[Function]}
|
|
424351
424073
|
searchValue=""
|
|
424352
424074
|
selectedTestEntities={Array []}
|
|
424353
|
-
|
|
424354
|
-
Object {
|
|
424355
|
-
"EMAIL": Array [],
|
|
424356
|
-
"SMS": Array [],
|
|
424357
|
-
"WHATSAPP": Array [],
|
|
424358
|
-
}
|
|
424359
|
-
}
|
|
424075
|
+
senderDetailsOptions={Array []}
|
|
424360
424076
|
setSearchValue={[Function]}
|
|
424361
424077
|
smsTraiDltEnabled={false}
|
|
424362
424078
|
testEntitiesTreeData={
|
|
@@ -424388,7 +424104,6 @@ new message content.",
|
|
|
424388
424104
|
<PreviewSection
|
|
424389
424105
|
unifiedPreviewProps={
|
|
424390
424106
|
Object {
|
|
424391
|
-
"activePreviewTab": "rcs",
|
|
424392
424107
|
"channel": "WHATSAPP",
|
|
424393
424108
|
"content": Object {
|
|
424394
424109
|
"_id": null,
|
|
@@ -424423,11 +424138,8 @@ new message content.",
|
|
|
424423
424138
|
"isUpdating": false,
|
|
424424
424139
|
"lastModified": undefined,
|
|
424425
424140
|
"onDeviceChange": [Function],
|
|
424426
|
-
"onPreviewTabChange": [Function],
|
|
424427
424141
|
"selectedCustomer": null,
|
|
424428
424142
|
"showDeviceToggle": true,
|
|
424429
|
-
"smsFallbackContent": null,
|
|
424430
|
-
"smsFallbackResolvedText": undefined,
|
|
424431
424143
|
"updatedByName": undefined,
|
|
424432
424144
|
}
|
|
424433
424145
|
}
|
|
@@ -438263,7 +437975,6 @@ new message content.",
|
|
|
438263
437975
|
className="ant-col ant-col-10 cap-column-v2"
|
|
438264
437976
|
>
|
|
438265
437977
|
<UnifiedPreview
|
|
438266
|
-
activePreviewTab="rcs"
|
|
438267
437978
|
channel="WHATSAPP"
|
|
438268
437979
|
content={
|
|
438269
437980
|
Object {
|
|
@@ -438959,11 +438670,9 @@ new message content.",
|
|
|
438959
438670
|
key=".0"
|
|
438960
438671
|
lastModified={null}
|
|
438961
438672
|
onDeviceChange={[Function]}
|
|
438962
|
-
onPreviewTabChange={[Function]}
|
|
438963
438673
|
selectedCustomer={null}
|
|
438964
438674
|
showDeviceToggle={false}
|
|
438965
438675
|
showHeader={false}
|
|
438966
|
-
smsFallbackContent={null}
|
|
438967
438676
|
updatedByName={null}
|
|
438968
438677
|
>
|
|
438969
438678
|
<CapRow
|
|
@@ -443747,7 +443456,6 @@ new message content.",
|
|
|
443747
443456
|
}
|
|
443748
443457
|
}
|
|
443749
443458
|
show={false}
|
|
443750
|
-
smsFallbackContent={null}
|
|
443751
443459
|
testCustomers={Immutable.List []}
|
|
443752
443460
|
testGroups={Immutable.List []}
|
|
443753
443461
|
updatePreviewError={null}
|
|
@@ -446115,7 +445823,6 @@ new message content.",
|
|
|
446115
445823
|
}
|
|
446116
445824
|
}
|
|
446117
445825
|
show={false}
|
|
446118
|
-
smsFallbackContent={null}
|
|
446119
445826
|
templateLayoutType={null}
|
|
446120
445827
|
testCustomers={Immutable.List []}
|
|
446121
445828
|
testGroups={Immutable.List []}
|
|
@@ -446209,7 +445916,6 @@ new message content.",
|
|
|
446209
445916
|
formatMessage={[Function]}
|
|
446210
445917
|
handleSendTestMessage={[Function]}
|
|
446211
445918
|
handleTestEntitiesChange={[Function]}
|
|
446212
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
446213
445919
|
isFetchingTestCustomers={false}
|
|
446214
445920
|
isFetchingTestGroups={false}
|
|
446215
445921
|
isLoadingSenderDetails={false}
|
|
@@ -446219,13 +445925,7 @@ new message content.",
|
|
|
446219
445925
|
renderAddTestCustomerButton={[Function]}
|
|
446220
445926
|
searchValue=""
|
|
446221
445927
|
selectedTestEntities={Array []}
|
|
446222
|
-
|
|
446223
|
-
Object {
|
|
446224
|
-
"EMAIL": Array [],
|
|
446225
|
-
"SMS": Array [],
|
|
446226
|
-
"WHATSAPP": Array [],
|
|
446227
|
-
}
|
|
446228
|
-
}
|
|
445928
|
+
senderDetailsOptions={Array []}
|
|
446229
445929
|
setSearchValue={[Function]}
|
|
446230
445930
|
smsTraiDltEnabled={false}
|
|
446231
445931
|
testEntitiesTreeData={
|
|
@@ -446257,7 +445957,6 @@ new message content.",
|
|
|
446257
445957
|
<PreviewSection
|
|
446258
445958
|
unifiedPreviewProps={
|
|
446259
445959
|
Object {
|
|
446260
|
-
"activePreviewTab": "rcs",
|
|
446261
445960
|
"channel": "WHATSAPP",
|
|
446262
445961
|
"content": Object {
|
|
446263
445962
|
"_id": null,
|
|
@@ -446292,11 +445991,8 @@ new message content.",
|
|
|
446292
445991
|
"isUpdating": false,
|
|
446293
445992
|
"lastModified": undefined,
|
|
446294
445993
|
"onDeviceChange": [Function],
|
|
446295
|
-
"onPreviewTabChange": [Function],
|
|
446296
445994
|
"selectedCustomer": null,
|
|
446297
445995
|
"showDeviceToggle": true,
|
|
446298
|
-
"smsFallbackContent": null,
|
|
446299
|
-
"smsFallbackResolvedText": undefined,
|
|
446300
445996
|
"updatedByName": undefined,
|
|
446301
445997
|
}
|
|
446302
445998
|
}
|
|
@@ -460418,7 +460114,6 @@ new message content.",
|
|
|
460418
460114
|
className="ant-col ant-col-10 cap-column-v2"
|
|
460419
460115
|
>
|
|
460420
460116
|
<UnifiedPreview
|
|
460421
|
-
activePreviewTab="rcs"
|
|
460422
460117
|
channel="WHATSAPP"
|
|
460423
460118
|
content={
|
|
460424
460119
|
Object {
|
|
@@ -461411,11 +461106,9 @@ new message content.",
|
|
|
461411
461106
|
key=".0"
|
|
461412
461107
|
lastModified={null}
|
|
461413
461108
|
onDeviceChange={[Function]}
|
|
461414
|
-
onPreviewTabChange={[Function]}
|
|
461415
461109
|
selectedCustomer={null}
|
|
461416
461110
|
showDeviceToggle={false}
|
|
461417
461111
|
showHeader={false}
|
|
461418
|
-
smsFallbackContent={null}
|
|
461419
461112
|
updatedByName={null}
|
|
461420
461113
|
>
|
|
461421
461114
|
<CapRow
|
|
@@ -466496,7 +466189,6 @@ new message content.",
|
|
|
466496
466189
|
}
|
|
466497
466190
|
}
|
|
466498
466191
|
show={false}
|
|
466499
|
-
smsFallbackContent={null}
|
|
466500
466192
|
testCustomers={Immutable.List []}
|
|
466501
466193
|
testGroups={Immutable.List []}
|
|
466502
466194
|
updatePreviewError={null}
|
|
@@ -468864,7 +468556,6 @@ new message content.",
|
|
|
468864
468556
|
}
|
|
468865
468557
|
}
|
|
468866
468558
|
show={false}
|
|
468867
|
-
smsFallbackContent={null}
|
|
468868
468559
|
templateLayoutType={null}
|
|
468869
468560
|
testCustomers={Immutable.List []}
|
|
468870
468561
|
testGroups={Immutable.List []}
|
|
@@ -468958,7 +468649,6 @@ new message content.",
|
|
|
468958
468649
|
formatMessage={[Function]}
|
|
468959
468650
|
handleSendTestMessage={[Function]}
|
|
468960
468651
|
handleTestEntitiesChange={[Function]}
|
|
468961
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
468962
468652
|
isFetchingTestCustomers={false}
|
|
468963
468653
|
isFetchingTestGroups={false}
|
|
468964
468654
|
isLoadingSenderDetails={false}
|
|
@@ -468968,13 +468658,7 @@ new message content.",
|
|
|
468968
468658
|
renderAddTestCustomerButton={[Function]}
|
|
468969
468659
|
searchValue=""
|
|
468970
468660
|
selectedTestEntities={Array []}
|
|
468971
|
-
|
|
468972
|
-
Object {
|
|
468973
|
-
"EMAIL": Array [],
|
|
468974
|
-
"SMS": Array [],
|
|
468975
|
-
"WHATSAPP": Array [],
|
|
468976
|
-
}
|
|
468977
|
-
}
|
|
468661
|
+
senderDetailsOptions={Array []}
|
|
468978
468662
|
setSearchValue={[Function]}
|
|
468979
468663
|
smsTraiDltEnabled={false}
|
|
468980
468664
|
testEntitiesTreeData={
|
|
@@ -469006,7 +468690,6 @@ new message content.",
|
|
|
469006
468690
|
<PreviewSection
|
|
469007
468691
|
unifiedPreviewProps={
|
|
469008
468692
|
Object {
|
|
469009
|
-
"activePreviewTab": "rcs",
|
|
469010
468693
|
"channel": "WHATSAPP",
|
|
469011
468694
|
"content": Object {
|
|
469012
468695
|
"_id": null,
|
|
@@ -469041,11 +468724,8 @@ new message content.",
|
|
|
469041
468724
|
"isUpdating": false,
|
|
469042
468725
|
"lastModified": undefined,
|
|
469043
468726
|
"onDeviceChange": [Function],
|
|
469044
|
-
"onPreviewTabChange": [Function],
|
|
469045
468727
|
"selectedCustomer": null,
|
|
469046
468728
|
"showDeviceToggle": true,
|
|
469047
|
-
"smsFallbackContent": null,
|
|
469048
|
-
"smsFallbackResolvedText": undefined,
|
|
469049
468729
|
"updatedByName": undefined,
|
|
469050
468730
|
}
|
|
469051
468731
|
}
|
|
@@ -483465,7 +483145,6 @@ new message content.",
|
|
|
483465
483145
|
className="ant-col ant-col-10 cap-column-v2"
|
|
483466
483146
|
>
|
|
483467
483147
|
<UnifiedPreview
|
|
483468
|
-
activePreviewTab="rcs"
|
|
483469
483148
|
channel="WHATSAPP"
|
|
483470
483149
|
content={
|
|
483471
483150
|
Object {
|
|
@@ -484745,11 +484424,9 @@ new message content.",
|
|
|
484745
484424
|
key=".0"
|
|
484746
484425
|
lastModified={null}
|
|
484747
484426
|
onDeviceChange={[Function]}
|
|
484748
|
-
onPreviewTabChange={[Function]}
|
|
484749
484427
|
selectedCustomer={null}
|
|
484750
484428
|
showDeviceToggle={false}
|
|
484751
484429
|
showHeader={false}
|
|
484752
|
-
smsFallbackContent={null}
|
|
484753
484430
|
updatedByName={null}
|
|
484754
484431
|
>
|
|
484755
484432
|
<CapRow
|
|
@@ -490128,7 +489805,6 @@ new message content.",
|
|
|
490128
489805
|
}
|
|
490129
489806
|
}
|
|
490130
489807
|
show={false}
|
|
490131
|
-
smsFallbackContent={null}
|
|
490132
489808
|
testCustomers={Immutable.List []}
|
|
490133
489809
|
testGroups={Immutable.List []}
|
|
490134
489810
|
updatePreviewError={null}
|
|
@@ -492496,7 +492172,6 @@ new message content.",
|
|
|
492496
492172
|
}
|
|
492497
492173
|
}
|
|
492498
492174
|
show={false}
|
|
492499
|
-
smsFallbackContent={null}
|
|
492500
492175
|
templateLayoutType={null}
|
|
492501
492176
|
testCustomers={Immutable.List []}
|
|
492502
492177
|
testGroups={Immutable.List []}
|
|
@@ -492590,7 +492265,6 @@ new message content.",
|
|
|
492590
492265
|
formatMessage={[Function]}
|
|
492591
492266
|
handleSendTestMessage={[Function]}
|
|
492592
492267
|
handleTestEntitiesChange={[Function]}
|
|
492593
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
492594
492268
|
isFetchingTestCustomers={false}
|
|
492595
492269
|
isFetchingTestGroups={false}
|
|
492596
492270
|
isLoadingSenderDetails={false}
|
|
@@ -492600,13 +492274,7 @@ new message content.",
|
|
|
492600
492274
|
renderAddTestCustomerButton={[Function]}
|
|
492601
492275
|
searchValue=""
|
|
492602
492276
|
selectedTestEntities={Array []}
|
|
492603
|
-
|
|
492604
|
-
Object {
|
|
492605
|
-
"EMAIL": Array [],
|
|
492606
|
-
"SMS": Array [],
|
|
492607
|
-
"WHATSAPP": Array [],
|
|
492608
|
-
}
|
|
492609
|
-
}
|
|
492277
|
+
senderDetailsOptions={Array []}
|
|
492610
492278
|
setSearchValue={[Function]}
|
|
492611
492279
|
smsTraiDltEnabled={false}
|
|
492612
492280
|
testEntitiesTreeData={
|
|
@@ -492638,7 +492306,6 @@ new message content.",
|
|
|
492638
492306
|
<PreviewSection
|
|
492639
492307
|
unifiedPreviewProps={
|
|
492640
492308
|
Object {
|
|
492641
|
-
"activePreviewTab": "rcs",
|
|
492642
492309
|
"channel": "WHATSAPP",
|
|
492643
492310
|
"content": Object {
|
|
492644
492311
|
"_id": null,
|
|
@@ -492673,11 +492340,8 @@ new message content.",
|
|
|
492673
492340
|
"isUpdating": false,
|
|
492674
492341
|
"lastModified": undefined,
|
|
492675
492342
|
"onDeviceChange": [Function],
|
|
492676
|
-
"onPreviewTabChange": [Function],
|
|
492677
492343
|
"selectedCustomer": null,
|
|
492678
492344
|
"showDeviceToggle": true,
|
|
492679
|
-
"smsFallbackContent": null,
|
|
492680
|
-
"smsFallbackResolvedText": undefined,
|
|
492681
492345
|
"updatedByName": undefined,
|
|
492682
492346
|
}
|
|
492683
492347
|
}
|
|
@@ -507383,7 +507047,6 @@ new message content.",
|
|
|
507383
507047
|
className="ant-col ant-col-10 cap-column-v2"
|
|
507384
507048
|
>
|
|
507385
507049
|
<UnifiedPreview
|
|
507386
|
-
activePreviewTab="rcs"
|
|
507387
507050
|
channel="WHATSAPP"
|
|
507388
507051
|
content={
|
|
507389
507052
|
Object {
|
|
@@ -508960,11 +508623,9 @@ new message content.",
|
|
|
508960
508623
|
key=".0"
|
|
508961
508624
|
lastModified={null}
|
|
508962
508625
|
onDeviceChange={[Function]}
|
|
508963
|
-
onPreviewTabChange={[Function]}
|
|
508964
508626
|
selectedCustomer={null}
|
|
508965
508627
|
showDeviceToggle={false}
|
|
508966
508628
|
showHeader={false}
|
|
508967
|
-
smsFallbackContent={null}
|
|
508968
508629
|
updatedByName={null}
|
|
508969
508630
|
>
|
|
508970
508631
|
<CapRow
|
|
@@ -514640,7 +514301,6 @@ new message content.",
|
|
|
514640
514301
|
}
|
|
514641
514302
|
}
|
|
514642
514303
|
show={false}
|
|
514643
|
-
smsFallbackContent={null}
|
|
514644
514304
|
testCustomers={Immutable.List []}
|
|
514645
514305
|
testGroups={Immutable.List []}
|
|
514646
514306
|
updatePreviewError={null}
|
|
@@ -517008,7 +516668,6 @@ new message content.",
|
|
|
517008
516668
|
}
|
|
517009
516669
|
}
|
|
517010
516670
|
show={false}
|
|
517011
|
-
smsFallbackContent={null}
|
|
517012
516671
|
templateLayoutType={null}
|
|
517013
516672
|
testCustomers={Immutable.List []}
|
|
517014
516673
|
testGroups={Immutable.List []}
|
|
@@ -517102,7 +516761,6 @@ new message content.",
|
|
|
517102
516761
|
formatMessage={[Function]}
|
|
517103
516762
|
handleSendTestMessage={[Function]}
|
|
517104
516763
|
handleTestEntitiesChange={[Function]}
|
|
517105
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
517106
516764
|
isFetchingTestCustomers={false}
|
|
517107
516765
|
isFetchingTestGroups={false}
|
|
517108
516766
|
isLoadingSenderDetails={false}
|
|
@@ -517112,13 +516770,7 @@ new message content.",
|
|
|
517112
516770
|
renderAddTestCustomerButton={[Function]}
|
|
517113
516771
|
searchValue=""
|
|
517114
516772
|
selectedTestEntities={Array []}
|
|
517115
|
-
|
|
517116
|
-
Object {
|
|
517117
|
-
"EMAIL": Array [],
|
|
517118
|
-
"SMS": Array [],
|
|
517119
|
-
"WHATSAPP": Array [],
|
|
517120
|
-
}
|
|
517121
|
-
}
|
|
516773
|
+
senderDetailsOptions={Array []}
|
|
517122
516774
|
setSearchValue={[Function]}
|
|
517123
516775
|
smsTraiDltEnabled={false}
|
|
517124
516776
|
testEntitiesTreeData={
|
|
@@ -517150,7 +516802,6 @@ new message content.",
|
|
|
517150
516802
|
<PreviewSection
|
|
517151
516803
|
unifiedPreviewProps={
|
|
517152
516804
|
Object {
|
|
517153
|
-
"activePreviewTab": "rcs",
|
|
517154
516805
|
"channel": "WHATSAPP",
|
|
517155
516806
|
"content": Object {
|
|
517156
516807
|
"_id": null,
|
|
@@ -517185,11 +516836,8 @@ new message content.",
|
|
|
517185
516836
|
"isUpdating": false,
|
|
517186
516837
|
"lastModified": undefined,
|
|
517187
516838
|
"onDeviceChange": [Function],
|
|
517188
|
-
"onPreviewTabChange": [Function],
|
|
517189
516839
|
"selectedCustomer": null,
|
|
517190
516840
|
"showDeviceToggle": true,
|
|
517191
|
-
"smsFallbackContent": null,
|
|
517192
|
-
"smsFallbackResolvedText": undefined,
|
|
517193
516841
|
"updatedByName": undefined,
|
|
517194
516842
|
}
|
|
517195
516843
|
}
|
|
@@ -532196,7 +531844,6 @@ new message content.",
|
|
|
532196
531844
|
className="ant-col ant-col-10 cap-column-v2"
|
|
532197
531845
|
>
|
|
532198
531846
|
<UnifiedPreview
|
|
532199
|
-
activePreviewTab="rcs"
|
|
532200
531847
|
channel="WHATSAPP"
|
|
532201
531848
|
content={
|
|
532202
531849
|
Object {
|
|
@@ -534074,11 +533721,9 @@ new message content.",
|
|
|
534074
533721
|
key=".0"
|
|
534075
533722
|
lastModified={null}
|
|
534076
533723
|
onDeviceChange={[Function]}
|
|
534077
|
-
onPreviewTabChange={[Function]}
|
|
534078
533724
|
selectedCustomer={null}
|
|
534079
533725
|
showDeviceToggle={false}
|
|
534080
533726
|
showHeader={false}
|
|
534081
|
-
smsFallbackContent={null}
|
|
534082
533727
|
updatedByName={null}
|
|
534083
533728
|
>
|
|
534084
533729
|
<CapRow
|
|
@@ -540055,7 +539700,6 @@ new message content.",
|
|
|
540055
539700
|
}
|
|
540056
539701
|
}
|
|
540057
539702
|
show={false}
|
|
540058
|
-
smsFallbackContent={null}
|
|
540059
539703
|
testCustomers={Immutable.List []}
|
|
540060
539704
|
testGroups={Immutable.List []}
|
|
540061
539705
|
updatePreviewError={null}
|
|
@@ -542423,7 +542067,6 @@ new message content.",
|
|
|
542423
542067
|
}
|
|
542424
542068
|
}
|
|
542425
542069
|
show={false}
|
|
542426
|
-
smsFallbackContent={null}
|
|
542427
542070
|
templateLayoutType={null}
|
|
542428
542071
|
testCustomers={Immutable.List []}
|
|
542429
542072
|
testGroups={Immutable.List []}
|
|
@@ -542517,7 +542160,6 @@ new message content.",
|
|
|
542517
542160
|
formatMessage={[Function]}
|
|
542518
542161
|
handleSendTestMessage={[Function]}
|
|
542519
542162
|
handleTestEntitiesChange={[Function]}
|
|
542520
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
542521
542163
|
isFetchingTestCustomers={false}
|
|
542522
542164
|
isFetchingTestGroups={false}
|
|
542523
542165
|
isLoadingSenderDetails={false}
|
|
@@ -542527,13 +542169,7 @@ new message content.",
|
|
|
542527
542169
|
renderAddTestCustomerButton={[Function]}
|
|
542528
542170
|
searchValue=""
|
|
542529
542171
|
selectedTestEntities={Array []}
|
|
542530
|
-
|
|
542531
|
-
Object {
|
|
542532
|
-
"EMAIL": Array [],
|
|
542533
|
-
"SMS": Array [],
|
|
542534
|
-
"WHATSAPP": Array [],
|
|
542535
|
-
}
|
|
542536
|
-
}
|
|
542172
|
+
senderDetailsOptions={Array []}
|
|
542537
542173
|
setSearchValue={[Function]}
|
|
542538
542174
|
smsTraiDltEnabled={false}
|
|
542539
542175
|
testEntitiesTreeData={
|
|
@@ -542565,7 +542201,6 @@ new message content.",
|
|
|
542565
542201
|
<PreviewSection
|
|
542566
542202
|
unifiedPreviewProps={
|
|
542567
542203
|
Object {
|
|
542568
|
-
"activePreviewTab": "rcs",
|
|
542569
542204
|
"channel": "WHATSAPP",
|
|
542570
542205
|
"content": Object {
|
|
542571
542206
|
"_id": null,
|
|
@@ -542600,11 +542235,8 @@ new message content.",
|
|
|
542600
542235
|
"isUpdating": false,
|
|
542601
542236
|
"lastModified": undefined,
|
|
542602
542237
|
"onDeviceChange": [Function],
|
|
542603
|
-
"onPreviewTabChange": [Function],
|
|
542604
542238
|
"selectedCustomer": null,
|
|
542605
542239
|
"showDeviceToggle": true,
|
|
542606
|
-
"smsFallbackContent": null,
|
|
542607
|
-
"smsFallbackResolvedText": undefined,
|
|
542608
542240
|
"updatedByName": undefined,
|
|
542609
542241
|
}
|
|
542610
542242
|
}
|
|
@@ -557911,7 +557543,6 @@ new message content.",
|
|
|
557911
557543
|
className="ant-col ant-col-10 cap-column-v2"
|
|
557912
557544
|
>
|
|
557913
557545
|
<UnifiedPreview
|
|
557914
|
-
activePreviewTab="rcs"
|
|
557915
557546
|
channel="WHATSAPP"
|
|
557916
557547
|
content={
|
|
557917
557548
|
Object {
|
|
@@ -560089,11 +559720,9 @@ new message content.",
|
|
|
560089
559720
|
key=".0"
|
|
560090
559721
|
lastModified={null}
|
|
560091
559722
|
onDeviceChange={[Function]}
|
|
560092
|
-
onPreviewTabChange={[Function]}
|
|
560093
559723
|
selectedCustomer={null}
|
|
560094
559724
|
showDeviceToggle={false}
|
|
560095
559725
|
showHeader={false}
|
|
560096
|
-
smsFallbackContent={null}
|
|
560097
559726
|
updatedByName={null}
|
|
560098
559727
|
>
|
|
560099
559728
|
<CapRow
|
|
@@ -566370,7 +565999,6 @@ new message content.",
|
|
|
566370
565999
|
}
|
|
566371
566000
|
}
|
|
566372
566001
|
show={false}
|
|
566373
|
-
smsFallbackContent={null}
|
|
566374
566002
|
testCustomers={Immutable.List []}
|
|
566375
566003
|
testGroups={Immutable.List []}
|
|
566376
566004
|
updatePreviewError={null}
|
|
@@ -568738,7 +568366,6 @@ new message content.",
|
|
|
568738
568366
|
}
|
|
568739
568367
|
}
|
|
568740
568368
|
show={false}
|
|
568741
|
-
smsFallbackContent={null}
|
|
568742
568369
|
templateLayoutType={null}
|
|
568743
568370
|
testCustomers={Immutable.List []}
|
|
568744
568371
|
testGroups={Immutable.List []}
|
|
@@ -568832,7 +568459,6 @@ new message content.",
|
|
|
568832
568459
|
formatMessage={[Function]}
|
|
568833
568460
|
handleSendTestMessage={[Function]}
|
|
568834
568461
|
handleTestEntitiesChange={[Function]}
|
|
568835
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
568836
568462
|
isFetchingTestCustomers={false}
|
|
568837
568463
|
isFetchingTestGroups={false}
|
|
568838
568464
|
isLoadingSenderDetails={false}
|
|
@@ -568842,13 +568468,7 @@ new message content.",
|
|
|
568842
568468
|
renderAddTestCustomerButton={[Function]}
|
|
568843
568469
|
searchValue=""
|
|
568844
568470
|
selectedTestEntities={Array []}
|
|
568845
|
-
|
|
568846
|
-
Object {
|
|
568847
|
-
"EMAIL": Array [],
|
|
568848
|
-
"SMS": Array [],
|
|
568849
|
-
"WHATSAPP": Array [],
|
|
568850
|
-
}
|
|
568851
|
-
}
|
|
568471
|
+
senderDetailsOptions={Array []}
|
|
568852
568472
|
setSearchValue={[Function]}
|
|
568853
568473
|
smsTraiDltEnabled={false}
|
|
568854
568474
|
testEntitiesTreeData={
|
|
@@ -568880,7 +568500,6 @@ new message content.",
|
|
|
568880
568500
|
<PreviewSection
|
|
568881
568501
|
unifiedPreviewProps={
|
|
568882
568502
|
Object {
|
|
568883
|
-
"activePreviewTab": "rcs",
|
|
568884
568503
|
"channel": "WHATSAPP",
|
|
568885
568504
|
"content": Object {
|
|
568886
568505
|
"_id": null,
|
|
@@ -568915,11 +568534,8 @@ new message content.",
|
|
|
568915
568534
|
"isUpdating": false,
|
|
568916
568535
|
"lastModified": undefined,
|
|
568917
568536
|
"onDeviceChange": [Function],
|
|
568918
|
-
"onPreviewTabChange": [Function],
|
|
568919
568537
|
"selectedCustomer": null,
|
|
568920
568538
|
"showDeviceToggle": true,
|
|
568921
|
-
"smsFallbackContent": null,
|
|
568922
|
-
"smsFallbackResolvedText": undefined,
|
|
568923
568539
|
"updatedByName": undefined,
|
|
568924
568540
|
}
|
|
568925
568541
|
}
|
|
@@ -584523,7 +584139,6 @@ new message content.",
|
|
|
584523
584139
|
className="ant-col ant-col-10 cap-column-v2"
|
|
584524
584140
|
>
|
|
584525
584141
|
<UnifiedPreview
|
|
584526
|
-
activePreviewTab="rcs"
|
|
584527
584142
|
channel="WHATSAPP"
|
|
584528
584143
|
content={
|
|
584529
584144
|
Object {
|
|
@@ -586998,11 +586613,9 @@ new message content.",
|
|
|
586998
586613
|
key=".0"
|
|
586999
586614
|
lastModified={null}
|
|
587000
586615
|
onDeviceChange={[Function]}
|
|
587001
|
-
onPreviewTabChange={[Function]}
|
|
587002
586616
|
selectedCustomer={null}
|
|
587003
586617
|
showDeviceToggle={false}
|
|
587004
586618
|
showHeader={false}
|
|
587005
|
-
smsFallbackContent={null}
|
|
587006
586619
|
updatedByName={null}
|
|
587007
586620
|
>
|
|
587008
586621
|
<CapRow
|
|
@@ -593576,7 +593189,6 @@ new message content.",
|
|
|
593576
593189
|
}
|
|
593577
593190
|
}
|
|
593578
593191
|
show={false}
|
|
593579
|
-
smsFallbackContent={null}
|
|
593580
593192
|
testCustomers={Immutable.List []}
|
|
593581
593193
|
testGroups={Immutable.List []}
|
|
593582
593194
|
updatePreviewError={null}
|
|
@@ -595944,7 +595556,6 @@ new message content.",
|
|
|
595944
595556
|
}
|
|
595945
595557
|
}
|
|
595946
595558
|
show={false}
|
|
595947
|
-
smsFallbackContent={null}
|
|
595948
595559
|
templateLayoutType={null}
|
|
595949
595560
|
testCustomers={Immutable.List []}
|
|
595950
595561
|
testGroups={Immutable.List []}
|
|
@@ -596038,7 +595649,6 @@ new message content.",
|
|
|
596038
595649
|
formatMessage={[Function]}
|
|
596039
595650
|
handleSendTestMessage={[Function]}
|
|
596040
595651
|
handleTestEntitiesChange={[Function]}
|
|
596041
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
596042
595652
|
isFetchingTestCustomers={false}
|
|
596043
595653
|
isFetchingTestGroups={false}
|
|
596044
595654
|
isLoadingSenderDetails={false}
|
|
@@ -596048,13 +595658,7 @@ new message content.",
|
|
|
596048
595658
|
renderAddTestCustomerButton={[Function]}
|
|
596049
595659
|
searchValue=""
|
|
596050
595660
|
selectedTestEntities={Array []}
|
|
596051
|
-
|
|
596052
|
-
Object {
|
|
596053
|
-
"EMAIL": Array [],
|
|
596054
|
-
"SMS": Array [],
|
|
596055
|
-
"WHATSAPP": Array [],
|
|
596056
|
-
}
|
|
596057
|
-
}
|
|
595661
|
+
senderDetailsOptions={Array []}
|
|
596058
595662
|
setSearchValue={[Function]}
|
|
596059
595663
|
smsTraiDltEnabled={false}
|
|
596060
595664
|
testEntitiesTreeData={
|
|
@@ -596086,7 +595690,6 @@ new message content.",
|
|
|
596086
595690
|
<PreviewSection
|
|
596087
595691
|
unifiedPreviewProps={
|
|
596088
595692
|
Object {
|
|
596089
|
-
"activePreviewTab": "rcs",
|
|
596090
595693
|
"channel": "WHATSAPP",
|
|
596091
595694
|
"content": Object {
|
|
596092
595695
|
"_id": null,
|
|
@@ -596121,11 +595724,8 @@ new message content.",
|
|
|
596121
595724
|
"isUpdating": false,
|
|
596122
595725
|
"lastModified": undefined,
|
|
596123
595726
|
"onDeviceChange": [Function],
|
|
596124
|
-
"onPreviewTabChange": [Function],
|
|
596125
595727
|
"selectedCustomer": null,
|
|
596126
595728
|
"showDeviceToggle": true,
|
|
596127
|
-
"smsFallbackContent": null,
|
|
596128
|
-
"smsFallbackResolvedText": undefined,
|
|
596129
595729
|
"updatedByName": undefined,
|
|
596130
595730
|
}
|
|
596131
595731
|
}
|
|
@@ -612026,7 +611626,6 @@ new message content.",
|
|
|
612026
611626
|
className="ant-col ant-col-10 cap-column-v2"
|
|
612027
611627
|
>
|
|
612028
611628
|
<UnifiedPreview
|
|
612029
|
-
activePreviewTab="rcs"
|
|
612030
611629
|
channel="WHATSAPP"
|
|
612031
611630
|
content={
|
|
612032
611631
|
Object {
|
|
@@ -614798,11 +614397,9 @@ new message content.",
|
|
|
614798
614397
|
key=".0"
|
|
614799
614398
|
lastModified={null}
|
|
614800
614399
|
onDeviceChange={[Function]}
|
|
614801
|
-
onPreviewTabChange={[Function]}
|
|
614802
614400
|
selectedCustomer={null}
|
|
614803
614401
|
showDeviceToggle={false}
|
|
614804
614402
|
showHeader={false}
|
|
614805
|
-
smsFallbackContent={null}
|
|
614806
614403
|
updatedByName={null}
|
|
614807
614404
|
>
|
|
614808
614405
|
<CapRow
|
|
@@ -621673,7 +621270,6 @@ new message content.",
|
|
|
621673
621270
|
}
|
|
621674
621271
|
}
|
|
621675
621272
|
show={false}
|
|
621676
|
-
smsFallbackContent={null}
|
|
621677
621273
|
testCustomers={Immutable.List []}
|
|
621678
621274
|
testGroups={Immutable.List []}
|
|
621679
621275
|
updatePreviewError={null}
|
|
@@ -624041,7 +623637,6 @@ new message content.",
|
|
|
624041
623637
|
}
|
|
624042
623638
|
}
|
|
624043
623639
|
show={false}
|
|
624044
|
-
smsFallbackContent={null}
|
|
624045
623640
|
templateLayoutType={null}
|
|
624046
623641
|
testCustomers={Immutable.List []}
|
|
624047
623642
|
testGroups={Immutable.List []}
|
|
@@ -624135,7 +623730,6 @@ new message content.",
|
|
|
624135
623730
|
formatMessage={[Function]}
|
|
624136
623731
|
handleSendTestMessage={[Function]}
|
|
624137
623732
|
handleTestEntitiesChange={[Function]}
|
|
624138
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
624139
623733
|
isFetchingTestCustomers={false}
|
|
624140
623734
|
isFetchingTestGroups={false}
|
|
624141
623735
|
isLoadingSenderDetails={false}
|
|
@@ -624145,13 +623739,7 @@ new message content.",
|
|
|
624145
623739
|
renderAddTestCustomerButton={[Function]}
|
|
624146
623740
|
searchValue=""
|
|
624147
623741
|
selectedTestEntities={Array []}
|
|
624148
|
-
|
|
624149
|
-
Object {
|
|
624150
|
-
"EMAIL": Array [],
|
|
624151
|
-
"SMS": Array [],
|
|
624152
|
-
"WHATSAPP": Array [],
|
|
624153
|
-
}
|
|
624154
|
-
}
|
|
623742
|
+
senderDetailsOptions={Array []}
|
|
624155
623743
|
setSearchValue={[Function]}
|
|
624156
623744
|
smsTraiDltEnabled={false}
|
|
624157
623745
|
testEntitiesTreeData={
|
|
@@ -624183,7 +623771,6 @@ new message content.",
|
|
|
624183
623771
|
<PreviewSection
|
|
624184
623772
|
unifiedPreviewProps={
|
|
624185
623773
|
Object {
|
|
624186
|
-
"activePreviewTab": "rcs",
|
|
624187
623774
|
"channel": "WHATSAPP",
|
|
624188
623775
|
"content": Object {
|
|
624189
623776
|
"_id": null,
|
|
@@ -624218,11 +623805,8 @@ new message content.",
|
|
|
624218
623805
|
"isUpdating": false,
|
|
624219
623806
|
"lastModified": undefined,
|
|
624220
623807
|
"onDeviceChange": [Function],
|
|
624221
|
-
"onPreviewTabChange": [Function],
|
|
624222
623808
|
"selectedCustomer": null,
|
|
624223
623809
|
"showDeviceToggle": true,
|
|
624224
|
-
"smsFallbackContent": null,
|
|
624225
|
-
"smsFallbackResolvedText": undefined,
|
|
624226
623810
|
"updatedByName": undefined,
|
|
624227
623811
|
}
|
|
624228
623812
|
}
|
|
@@ -640421,7 +640005,6 @@ new message content.",
|
|
|
640421
640005
|
className="ant-col ant-col-10 cap-column-v2"
|
|
640422
640006
|
>
|
|
640423
640007
|
<UnifiedPreview
|
|
640424
|
-
activePreviewTab="rcs"
|
|
640425
640008
|
channel="WHATSAPP"
|
|
640426
640009
|
content={
|
|
640427
640010
|
Object {
|
|
@@ -643480,11 +643063,9 @@ new message content.",
|
|
|
643480
643063
|
key=".0"
|
|
643481
643064
|
lastModified={null}
|
|
643482
643065
|
onDeviceChange={[Function]}
|
|
643483
|
-
onPreviewTabChange={[Function]}
|
|
643484
643066
|
selectedCustomer={null}
|
|
643485
643067
|
showDeviceToggle={false}
|
|
643486
643068
|
showHeader={false}
|
|
643487
|
-
smsFallbackContent={null}
|
|
643488
643069
|
updatedByName={null}
|
|
643489
643070
|
>
|
|
643490
643071
|
<CapRow
|
|
@@ -650642,7 +650223,6 @@ new message content.",
|
|
|
650642
650223
|
}
|
|
650643
650224
|
}
|
|
650644
650225
|
show={false}
|
|
650645
|
-
smsFallbackContent={null}
|
|
650646
650226
|
testCustomers={Immutable.List []}
|
|
650647
650227
|
testGroups={Immutable.List []}
|
|
650648
650228
|
updatePreviewError={null}
|
|
@@ -653010,7 +652590,6 @@ new message content.",
|
|
|
653010
652590
|
}
|
|
653011
652591
|
}
|
|
653012
652592
|
show={false}
|
|
653013
|
-
smsFallbackContent={null}
|
|
653014
652593
|
templateLayoutType={null}
|
|
653015
652594
|
testCustomers={Immutable.List []}
|
|
653016
652595
|
testGroups={Immutable.List []}
|
|
@@ -653104,7 +652683,6 @@ new message content.",
|
|
|
653104
652683
|
formatMessage={[Function]}
|
|
653105
652684
|
handleSendTestMessage={[Function]}
|
|
653106
652685
|
handleTestEntitiesChange={[Function]}
|
|
653107
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
653108
652686
|
isFetchingTestCustomers={false}
|
|
653109
652687
|
isFetchingTestGroups={false}
|
|
653110
652688
|
isLoadingSenderDetails={false}
|
|
@@ -653114,13 +652692,7 @@ new message content.",
|
|
|
653114
652692
|
renderAddTestCustomerButton={[Function]}
|
|
653115
652693
|
searchValue=""
|
|
653116
652694
|
selectedTestEntities={Array []}
|
|
653117
|
-
|
|
653118
|
-
Object {
|
|
653119
|
-
"EMAIL": Array [],
|
|
653120
|
-
"SMS": Array [],
|
|
653121
|
-
"WHATSAPP": Array [],
|
|
653122
|
-
}
|
|
653123
|
-
}
|
|
652695
|
+
senderDetailsOptions={Array []}
|
|
653124
652696
|
setSearchValue={[Function]}
|
|
653125
652697
|
smsTraiDltEnabled={false}
|
|
653126
652698
|
testEntitiesTreeData={
|
|
@@ -653152,7 +652724,6 @@ new message content.",
|
|
|
653152
652724
|
<PreviewSection
|
|
653153
652725
|
unifiedPreviewProps={
|
|
653154
652726
|
Object {
|
|
653155
|
-
"activePreviewTab": "rcs",
|
|
653156
652727
|
"channel": "WHATSAPP",
|
|
653157
652728
|
"content": Object {
|
|
653158
652729
|
"_id": null,
|
|
@@ -653187,11 +652758,8 @@ new message content.",
|
|
|
653187
652758
|
"isUpdating": false,
|
|
653188
652759
|
"lastModified": undefined,
|
|
653189
652760
|
"onDeviceChange": [Function],
|
|
653190
|
-
"onPreviewTabChange": [Function],
|
|
653191
652761
|
"selectedCustomer": null,
|
|
653192
652762
|
"showDeviceToggle": true,
|
|
653193
|
-
"smsFallbackContent": null,
|
|
653194
|
-
"smsFallbackResolvedText": undefined,
|
|
653195
652763
|
"updatedByName": undefined,
|
|
653196
652764
|
}
|
|
653197
652765
|
}
|
|
@@ -667334,7 +666902,6 @@ new message content.",
|
|
|
667334
666902
|
className="ant-col ant-col-10 cap-column-v2"
|
|
667335
666903
|
>
|
|
667336
666904
|
<UnifiedPreview
|
|
667337
|
-
activePreviewTab="rcs"
|
|
667338
666905
|
channel="WHATSAPP"
|
|
667339
666906
|
content={
|
|
667340
666907
|
Object {
|
|
@@ -668337,11 +667904,9 @@ new message content.",
|
|
|
668337
667904
|
key=".0"
|
|
668338
667905
|
lastModified={null}
|
|
668339
667906
|
onDeviceChange={[Function]}
|
|
668340
|
-
onPreviewTabChange={[Function]}
|
|
668341
667907
|
selectedCustomer={null}
|
|
668342
667908
|
showDeviceToggle={false}
|
|
668343
667909
|
showHeader={false}
|
|
668344
|
-
smsFallbackContent={null}
|
|
668345
667910
|
updatedByName={null}
|
|
668346
667911
|
>
|
|
668347
667912
|
<CapRow
|
|
@@ -673432,7 +672997,6 @@ new message content.",
|
|
|
673432
672997
|
}
|
|
673433
672998
|
}
|
|
673434
672999
|
show={false}
|
|
673435
|
-
smsFallbackContent={null}
|
|
673436
673000
|
testCustomers={Immutable.List []}
|
|
673437
673001
|
testGroups={Immutable.List []}
|
|
673438
673002
|
updatePreviewError={null}
|
|
@@ -675800,7 +675364,6 @@ new message content.",
|
|
|
675800
675364
|
}
|
|
675801
675365
|
}
|
|
675802
675366
|
show={false}
|
|
675803
|
-
smsFallbackContent={null}
|
|
675804
675367
|
templateLayoutType={null}
|
|
675805
675368
|
testCustomers={Immutable.List []}
|
|
675806
675369
|
testGroups={Immutable.List []}
|
|
@@ -675894,7 +675457,6 @@ new message content.",
|
|
|
675894
675457
|
formatMessage={[Function]}
|
|
675895
675458
|
handleSendTestMessage={[Function]}
|
|
675896
675459
|
handleTestEntitiesChange={[Function]}
|
|
675897
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
675898
675460
|
isFetchingTestCustomers={false}
|
|
675899
675461
|
isFetchingTestGroups={false}
|
|
675900
675462
|
isLoadingSenderDetails={false}
|
|
@@ -675904,13 +675466,7 @@ new message content.",
|
|
|
675904
675466
|
renderAddTestCustomerButton={[Function]}
|
|
675905
675467
|
searchValue=""
|
|
675906
675468
|
selectedTestEntities={Array []}
|
|
675907
|
-
|
|
675908
|
-
Object {
|
|
675909
|
-
"EMAIL": Array [],
|
|
675910
|
-
"SMS": Array [],
|
|
675911
|
-
"WHATSAPP": Array [],
|
|
675912
|
-
}
|
|
675913
|
-
}
|
|
675469
|
+
senderDetailsOptions={Array []}
|
|
675914
675470
|
setSearchValue={[Function]}
|
|
675915
675471
|
smsTraiDltEnabled={false}
|
|
675916
675472
|
testEntitiesTreeData={
|
|
@@ -675942,7 +675498,6 @@ new message content.",
|
|
|
675942
675498
|
<PreviewSection
|
|
675943
675499
|
unifiedPreviewProps={
|
|
675944
675500
|
Object {
|
|
675945
|
-
"activePreviewTab": "rcs",
|
|
675946
675501
|
"channel": "WHATSAPP",
|
|
675947
675502
|
"content": Object {
|
|
675948
675503
|
"_id": null,
|
|
@@ -675977,11 +675532,8 @@ new message content.",
|
|
|
675977
675532
|
"isUpdating": false,
|
|
675978
675533
|
"lastModified": undefined,
|
|
675979
675534
|
"onDeviceChange": [Function],
|
|
675980
|
-
"onPreviewTabChange": [Function],
|
|
675981
675535
|
"selectedCustomer": null,
|
|
675982
675536
|
"showDeviceToggle": true,
|
|
675983
|
-
"smsFallbackContent": null,
|
|
675984
|
-
"smsFallbackResolvedText": undefined,
|
|
675985
675537
|
"updatedByName": undefined,
|
|
675986
675538
|
}
|
|
675987
675539
|
}
|
|
@@ -690417,7 +689969,6 @@ new message content.",
|
|
|
690417
689969
|
className="ant-col ant-col-10 cap-column-v2"
|
|
690418
689970
|
>
|
|
690419
689971
|
<UnifiedPreview
|
|
690420
|
-
activePreviewTab="rcs"
|
|
690421
689972
|
channel="WHATSAPP"
|
|
690422
689973
|
content={
|
|
690423
689974
|
Object {
|
|
@@ -691717,11 +691268,9 @@ new message content.",
|
|
|
691717
691268
|
key=".0"
|
|
691718
691269
|
lastModified={null}
|
|
691719
691270
|
onDeviceChange={[Function]}
|
|
691720
|
-
onPreviewTabChange={[Function]}
|
|
691721
691271
|
selectedCustomer={null}
|
|
691722
691272
|
showDeviceToggle={false}
|
|
691723
691273
|
showHeader={false}
|
|
691724
|
-
smsFallbackContent={null}
|
|
691725
691274
|
updatedByName={null}
|
|
691726
691275
|
>
|
|
691727
691276
|
<CapRow
|
|
@@ -697109,7 +696658,6 @@ new message content.",
|
|
|
697109
696658
|
}
|
|
697110
696659
|
}
|
|
697111
696660
|
show={false}
|
|
697112
|
-
smsFallbackContent={null}
|
|
697113
696661
|
testCustomers={Immutable.List []}
|
|
697114
696662
|
testGroups={Immutable.List []}
|
|
697115
696663
|
updatePreviewError={null}
|
|
@@ -699477,7 +699025,6 @@ new message content.",
|
|
|
699477
699025
|
}
|
|
699478
699026
|
}
|
|
699479
699027
|
show={false}
|
|
699480
|
-
smsFallbackContent={null}
|
|
699481
699028
|
templateLayoutType={null}
|
|
699482
699029
|
testCustomers={Immutable.List []}
|
|
699483
699030
|
testGroups={Immutable.List []}
|
|
@@ -699571,7 +699118,6 @@ new message content.",
|
|
|
699571
699118
|
formatMessage={[Function]}
|
|
699572
699119
|
handleSendTestMessage={[Function]}
|
|
699573
699120
|
handleTestEntitiesChange={[Function]}
|
|
699574
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
699575
699121
|
isFetchingTestCustomers={false}
|
|
699576
699122
|
isFetchingTestGroups={false}
|
|
699577
699123
|
isLoadingSenderDetails={false}
|
|
@@ -699581,13 +699127,7 @@ new message content.",
|
|
|
699581
699127
|
renderAddTestCustomerButton={[Function]}
|
|
699582
699128
|
searchValue=""
|
|
699583
699129
|
selectedTestEntities={Array []}
|
|
699584
|
-
|
|
699585
|
-
Object {
|
|
699586
|
-
"EMAIL": Array [],
|
|
699587
|
-
"SMS": Array [],
|
|
699588
|
-
"WHATSAPP": Array [],
|
|
699589
|
-
}
|
|
699590
|
-
}
|
|
699130
|
+
senderDetailsOptions={Array []}
|
|
699591
699131
|
setSearchValue={[Function]}
|
|
699592
699132
|
smsTraiDltEnabled={false}
|
|
699593
699133
|
testEntitiesTreeData={
|
|
@@ -699619,7 +699159,6 @@ new message content.",
|
|
|
699619
699159
|
<PreviewSection
|
|
699620
699160
|
unifiedPreviewProps={
|
|
699621
699161
|
Object {
|
|
699622
|
-
"activePreviewTab": "rcs",
|
|
699623
699162
|
"channel": "WHATSAPP",
|
|
699624
699163
|
"content": Object {
|
|
699625
699164
|
"_id": null,
|
|
@@ -699654,11 +699193,8 @@ new message content.",
|
|
|
699654
699193
|
"isUpdating": false,
|
|
699655
699194
|
"lastModified": undefined,
|
|
699656
699195
|
"onDeviceChange": [Function],
|
|
699657
|
-
"onPreviewTabChange": [Function],
|
|
699658
699196
|
"selectedCustomer": null,
|
|
699659
699197
|
"showDeviceToggle": true,
|
|
699660
|
-
"smsFallbackContent": null,
|
|
699661
|
-
"smsFallbackResolvedText": undefined,
|
|
699662
699198
|
"updatedByName": undefined,
|
|
699663
699199
|
}
|
|
699664
699200
|
}
|
|
@@ -714411,7 +713947,6 @@ new message content.",
|
|
|
714411
713947
|
className="ant-col ant-col-10 cap-column-v2"
|
|
714412
713948
|
>
|
|
714413
713949
|
<UnifiedPreview
|
|
714414
|
-
activePreviewTab="rcs"
|
|
714415
713950
|
channel="WHATSAPP"
|
|
714416
713951
|
content={
|
|
714417
713952
|
Object {
|
|
@@ -716028,11 +715563,9 @@ new message content.",
|
|
|
716028
715563
|
key=".0"
|
|
716029
715564
|
lastModified={null}
|
|
716030
715565
|
onDeviceChange={[Function]}
|
|
716031
|
-
onPreviewTabChange={[Function]}
|
|
716032
715566
|
selectedCustomer={null}
|
|
716033
715567
|
showDeviceToggle={false}
|
|
716034
715568
|
showHeader={false}
|
|
716035
|
-
smsFallbackContent={null}
|
|
716036
715569
|
updatedByName={null}
|
|
716037
715570
|
>
|
|
716038
715571
|
<CapRow
|
|
@@ -721737,7 +721270,6 @@ new message content.",
|
|
|
721737
721270
|
}
|
|
721738
721271
|
}
|
|
721739
721272
|
show={false}
|
|
721740
|
-
smsFallbackContent={null}
|
|
721741
721273
|
testCustomers={Immutable.List []}
|
|
721742
721274
|
testGroups={Immutable.List []}
|
|
721743
721275
|
updatePreviewError={null}
|
|
@@ -724105,7 +723637,6 @@ new message content.",
|
|
|
724105
723637
|
}
|
|
724106
723638
|
}
|
|
724107
723639
|
show={false}
|
|
724108
|
-
smsFallbackContent={null}
|
|
724109
723640
|
templateLayoutType={null}
|
|
724110
723641
|
testCustomers={Immutable.List []}
|
|
724111
723642
|
testGroups={Immutable.List []}
|
|
@@ -724199,7 +723730,6 @@ new message content.",
|
|
|
724199
723730
|
formatMessage={[Function]}
|
|
724200
723731
|
handleSendTestMessage={[Function]}
|
|
724201
723732
|
handleTestEntitiesChange={[Function]}
|
|
724202
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
724203
723733
|
isFetchingTestCustomers={false}
|
|
724204
723734
|
isFetchingTestGroups={false}
|
|
724205
723735
|
isLoadingSenderDetails={false}
|
|
@@ -724209,13 +723739,7 @@ new message content.",
|
|
|
724209
723739
|
renderAddTestCustomerButton={[Function]}
|
|
724210
723740
|
searchValue=""
|
|
724211
723741
|
selectedTestEntities={Array []}
|
|
724212
|
-
|
|
724213
|
-
Object {
|
|
724214
|
-
"EMAIL": Array [],
|
|
724215
|
-
"SMS": Array [],
|
|
724216
|
-
"WHATSAPP": Array [],
|
|
724217
|
-
}
|
|
724218
|
-
}
|
|
723742
|
+
senderDetailsOptions={Array []}
|
|
724219
723743
|
setSearchValue={[Function]}
|
|
724220
723744
|
smsTraiDltEnabled={false}
|
|
724221
723745
|
testEntitiesTreeData={
|
|
@@ -724247,7 +723771,6 @@ new message content.",
|
|
|
724247
723771
|
<PreviewSection
|
|
724248
723772
|
unifiedPreviewProps={
|
|
724249
723773
|
Object {
|
|
724250
|
-
"activePreviewTab": "rcs",
|
|
724251
723774
|
"channel": "WHATSAPP",
|
|
724252
723775
|
"content": Object {
|
|
724253
723776
|
"_id": null,
|
|
@@ -724282,11 +723805,8 @@ new message content.",
|
|
|
724282
723805
|
"isUpdating": false,
|
|
724283
723806
|
"lastModified": undefined,
|
|
724284
723807
|
"onDeviceChange": [Function],
|
|
724285
|
-
"onPreviewTabChange": [Function],
|
|
724286
723808
|
"selectedCustomer": null,
|
|
724287
723809
|
"showDeviceToggle": true,
|
|
724288
|
-
"smsFallbackContent": null,
|
|
724289
|
-
"smsFallbackResolvedText": undefined,
|
|
724290
723810
|
"updatedByName": undefined,
|
|
724291
723811
|
}
|
|
724292
723812
|
}
|
|
@@ -738122,7 +737642,6 @@ new message content.",
|
|
|
738122
737642
|
className="ant-col ant-col-10 cap-column-v2"
|
|
738123
737643
|
>
|
|
738124
737644
|
<UnifiedPreview
|
|
738125
|
-
activePreviewTab="rcs"
|
|
738126
737645
|
channel="WHATSAPP"
|
|
738127
737646
|
content={
|
|
738128
737647
|
Object {
|
|
@@ -738818,11 +738337,9 @@ new message content.",
|
|
|
738818
738337
|
key=".0"
|
|
738819
738338
|
lastModified={null}
|
|
738820
738339
|
onDeviceChange={[Function]}
|
|
738821
|
-
onPreviewTabChange={[Function]}
|
|
738822
738340
|
selectedCustomer={null}
|
|
738823
738341
|
showDeviceToggle={false}
|
|
738824
738342
|
showHeader={false}
|
|
738825
|
-
smsFallbackContent={null}
|
|
738826
738343
|
updatedByName={null}
|
|
738827
738344
|
>
|
|
738828
738345
|
<CapRow
|
|
@@ -743606,7 +743123,6 @@ new message content.",
|
|
|
743606
743123
|
}
|
|
743607
743124
|
}
|
|
743608
743125
|
show={false}
|
|
743609
|
-
smsFallbackContent={null}
|
|
743610
743126
|
testCustomers={Immutable.List []}
|
|
743611
743127
|
testGroups={Immutable.List []}
|
|
743612
743128
|
updatePreviewError={null}
|
|
@@ -745974,7 +745490,6 @@ new message content.",
|
|
|
745974
745490
|
}
|
|
745975
745491
|
}
|
|
745976
745492
|
show={false}
|
|
745977
|
-
smsFallbackContent={null}
|
|
745978
745493
|
templateLayoutType={null}
|
|
745979
745494
|
testCustomers={Immutable.List []}
|
|
745980
745495
|
testGroups={Immutable.List []}
|
|
@@ -746068,7 +745583,6 @@ new message content.",
|
|
|
746068
745583
|
formatMessage={[Function]}
|
|
746069
745584
|
handleSendTestMessage={[Function]}
|
|
746070
745585
|
handleTestEntitiesChange={[Function]}
|
|
746071
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
746072
745586
|
isFetchingTestCustomers={false}
|
|
746073
745587
|
isFetchingTestGroups={false}
|
|
746074
745588
|
isLoadingSenderDetails={false}
|
|
@@ -746078,13 +745592,7 @@ new message content.",
|
|
|
746078
745592
|
renderAddTestCustomerButton={[Function]}
|
|
746079
745593
|
searchValue=""
|
|
746080
745594
|
selectedTestEntities={Array []}
|
|
746081
|
-
|
|
746082
|
-
Object {
|
|
746083
|
-
"EMAIL": Array [],
|
|
746084
|
-
"SMS": Array [],
|
|
746085
|
-
"WHATSAPP": Array [],
|
|
746086
|
-
}
|
|
746087
|
-
}
|
|
745595
|
+
senderDetailsOptions={Array []}
|
|
746088
745596
|
setSearchValue={[Function]}
|
|
746089
745597
|
smsTraiDltEnabled={false}
|
|
746090
745598
|
testEntitiesTreeData={
|
|
@@ -746116,7 +745624,6 @@ new message content.",
|
|
|
746116
745624
|
<PreviewSection
|
|
746117
745625
|
unifiedPreviewProps={
|
|
746118
745626
|
Object {
|
|
746119
|
-
"activePreviewTab": "rcs",
|
|
746120
745627
|
"channel": "WHATSAPP",
|
|
746121
745628
|
"content": Object {
|
|
746122
745629
|
"_id": null,
|
|
@@ -746151,11 +745658,8 @@ new message content.",
|
|
|
746151
745658
|
"isUpdating": false,
|
|
746152
745659
|
"lastModified": undefined,
|
|
746153
745660
|
"onDeviceChange": [Function],
|
|
746154
|
-
"onPreviewTabChange": [Function],
|
|
746155
745661
|
"selectedCustomer": null,
|
|
746156
745662
|
"showDeviceToggle": true,
|
|
746157
|
-
"smsFallbackContent": null,
|
|
746158
|
-
"smsFallbackResolvedText": undefined,
|
|
746159
745663
|
"updatedByName": undefined,
|
|
746160
745664
|
}
|
|
746161
745665
|
}
|
|
@@ -762306,7 +761810,6 @@ new message content.",
|
|
|
762306
761810
|
className="ant-col ant-col-10 cap-column-v2"
|
|
762307
761811
|
>
|
|
762308
761812
|
<UnifiedPreview
|
|
762309
|
-
activePreviewTab="rcs"
|
|
762310
761813
|
channel="WHATSAPP"
|
|
762311
761814
|
content={
|
|
762312
761815
|
Object {
|
|
@@ -763535,11 +763038,9 @@ new message content.",
|
|
|
763535
763038
|
key=".0"
|
|
763536
763039
|
lastModified={null}
|
|
763537
763040
|
onDeviceChange={[Function]}
|
|
763538
|
-
onPreviewTabChange={[Function]}
|
|
763539
763041
|
selectedCustomer={null}
|
|
763540
763042
|
showDeviceToggle={false}
|
|
763541
763043
|
showHeader={false}
|
|
763542
|
-
smsFallbackContent={null}
|
|
763543
763044
|
updatedByName={null}
|
|
763544
763045
|
>
|
|
763545
763046
|
<CapRow
|
|
@@ -768866,7 +768367,6 @@ new message content.",
|
|
|
768866
768367
|
}
|
|
768867
768368
|
}
|
|
768868
768369
|
show={false}
|
|
768869
|
-
smsFallbackContent={null}
|
|
768870
768370
|
testCustomers={Immutable.List []}
|
|
768871
768371
|
testGroups={Immutable.List []}
|
|
768872
768372
|
updatePreviewError={null}
|
|
@@ -771234,7 +770734,6 @@ new message content.",
|
|
|
771234
770734
|
}
|
|
771235
770735
|
}
|
|
771236
770736
|
show={false}
|
|
771237
|
-
smsFallbackContent={null}
|
|
771238
770737
|
templateLayoutType={null}
|
|
771239
770738
|
testCustomers={Immutable.List []}
|
|
771240
770739
|
testGroups={Immutable.List []}
|
|
@@ -771328,7 +770827,6 @@ new message content.",
|
|
|
771328
770827
|
formatMessage={[Function]}
|
|
771329
770828
|
handleSendTestMessage={[Function]}
|
|
771330
770829
|
handleTestEntitiesChange={[Function]}
|
|
771331
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
771332
770830
|
isFetchingTestCustomers={false}
|
|
771333
770831
|
isFetchingTestGroups={false}
|
|
771334
770832
|
isLoadingSenderDetails={false}
|
|
@@ -771338,13 +770836,7 @@ new message content.",
|
|
|
771338
770836
|
renderAddTestCustomerButton={[Function]}
|
|
771339
770837
|
searchValue=""
|
|
771340
770838
|
selectedTestEntities={Array []}
|
|
771341
|
-
|
|
771342
|
-
Object {
|
|
771343
|
-
"EMAIL": Array [],
|
|
771344
|
-
"SMS": Array [],
|
|
771345
|
-
"WHATSAPP": Array [],
|
|
771346
|
-
}
|
|
771347
|
-
}
|
|
770839
|
+
senderDetailsOptions={Array []}
|
|
771348
770840
|
setSearchValue={[Function]}
|
|
771349
770841
|
smsTraiDltEnabled={false}
|
|
771350
770842
|
testEntitiesTreeData={
|
|
@@ -771376,7 +770868,6 @@ new message content.",
|
|
|
771376
770868
|
<PreviewSection
|
|
771377
770869
|
unifiedPreviewProps={
|
|
771378
770870
|
Object {
|
|
771379
|
-
"activePreviewTab": "rcs",
|
|
771380
770871
|
"channel": "WHATSAPP",
|
|
771381
770872
|
"content": Object {
|
|
771382
770873
|
"_id": null,
|
|
@@ -771411,11 +770902,8 @@ new message content.",
|
|
|
771411
770902
|
"isUpdating": false,
|
|
771412
770903
|
"lastModified": undefined,
|
|
771413
770904
|
"onDeviceChange": [Function],
|
|
771414
|
-
"onPreviewTabChange": [Function],
|
|
771415
770905
|
"selectedCustomer": null,
|
|
771416
770906
|
"showDeviceToggle": true,
|
|
771417
|
-
"smsFallbackContent": null,
|
|
771418
|
-
"smsFallbackResolvedText": undefined,
|
|
771419
770907
|
"updatedByName": undefined,
|
|
771420
770908
|
}
|
|
771421
770909
|
}
|
|
@@ -787648,7 +787136,6 @@ new message content.",
|
|
|
787648
787136
|
className="ant-col ant-col-10 cap-column-v2"
|
|
787649
787137
|
>
|
|
787650
787138
|
<UnifiedPreview
|
|
787651
|
-
activePreviewTab="rcs"
|
|
787652
787139
|
channel="WHATSAPP"
|
|
787653
787140
|
content={
|
|
787654
787141
|
Object {
|
|
@@ -788890,11 +788377,9 @@ new message content.",
|
|
|
788890
788377
|
key=".0"
|
|
788891
788378
|
lastModified={null}
|
|
788892
788379
|
onDeviceChange={[Function]}
|
|
788893
|
-
onPreviewTabChange={[Function]}
|
|
788894
788380
|
selectedCustomer={null}
|
|
788895
788381
|
showDeviceToggle={false}
|
|
788896
788382
|
showHeader={false}
|
|
788897
|
-
smsFallbackContent={null}
|
|
788898
788383
|
updatedByName={null}
|
|
788899
788384
|
>
|
|
788900
788385
|
<CapRow
|
|
@@ -794234,7 +793719,6 @@ new message content.",
|
|
|
794234
793719
|
}
|
|
794235
793720
|
}
|
|
794236
793721
|
show={false}
|
|
794237
|
-
smsFallbackContent={null}
|
|
794238
793722
|
testCustomers={Immutable.List []}
|
|
794239
793723
|
testGroups={Immutable.List []}
|
|
794240
793724
|
updatePreviewError={null}
|
|
@@ -796602,7 +796086,6 @@ new message content.",
|
|
|
796602
796086
|
}
|
|
796603
796087
|
}
|
|
796604
796088
|
show={false}
|
|
796605
|
-
smsFallbackContent={null}
|
|
796606
796089
|
templateLayoutType={null}
|
|
796607
796090
|
testCustomers={Immutable.List []}
|
|
796608
796091
|
testGroups={Immutable.List []}
|
|
@@ -796696,7 +796179,6 @@ new message content.",
|
|
|
796696
796179
|
formatMessage={[Function]}
|
|
796697
796180
|
handleSendTestMessage={[Function]}
|
|
796698
796181
|
handleTestEntitiesChange={[Function]}
|
|
796699
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
796700
796182
|
isFetchingTestCustomers={false}
|
|
796701
796183
|
isFetchingTestGroups={false}
|
|
796702
796184
|
isLoadingSenderDetails={false}
|
|
@@ -796706,13 +796188,7 @@ new message content.",
|
|
|
796706
796188
|
renderAddTestCustomerButton={[Function]}
|
|
796707
796189
|
searchValue=""
|
|
796708
796190
|
selectedTestEntities={Array []}
|
|
796709
|
-
|
|
796710
|
-
Object {
|
|
796711
|
-
"EMAIL": Array [],
|
|
796712
|
-
"SMS": Array [],
|
|
796713
|
-
"WHATSAPP": Array [],
|
|
796714
|
-
}
|
|
796715
|
-
}
|
|
796191
|
+
senderDetailsOptions={Array []}
|
|
796716
796192
|
setSearchValue={[Function]}
|
|
796717
796193
|
smsTraiDltEnabled={false}
|
|
796718
796194
|
testEntitiesTreeData={
|
|
@@ -796744,7 +796220,6 @@ new message content.",
|
|
|
796744
796220
|
<PreviewSection
|
|
796745
796221
|
unifiedPreviewProps={
|
|
796746
796222
|
Object {
|
|
796747
|
-
"activePreviewTab": "rcs",
|
|
796748
796223
|
"channel": "WHATSAPP",
|
|
796749
796224
|
"content": Object {
|
|
796750
796225
|
"_id": null,
|
|
@@ -796779,11 +796254,8 @@ new message content.",
|
|
|
796779
796254
|
"isUpdating": false,
|
|
796780
796255
|
"lastModified": undefined,
|
|
796781
796256
|
"onDeviceChange": [Function],
|
|
796782
|
-
"onPreviewTabChange": [Function],
|
|
796783
796257
|
"selectedCustomer": null,
|
|
796784
796258
|
"showDeviceToggle": true,
|
|
796785
|
-
"smsFallbackContent": null,
|
|
796786
|
-
"smsFallbackResolvedText": undefined,
|
|
796787
796259
|
"updatedByName": undefined,
|
|
796788
796260
|
}
|
|
796789
796261
|
}
|
|
@@ -813016,7 +812488,6 @@ new message content.",
|
|
|
813016
812488
|
className="ant-col ant-col-10 cap-column-v2"
|
|
813017
812489
|
>
|
|
813018
812490
|
<UnifiedPreview
|
|
813019
|
-
activePreviewTab="rcs"
|
|
813020
812491
|
channel="WHATSAPP"
|
|
813021
812492
|
content={
|
|
813022
812493
|
Object {
|
|
@@ -814258,11 +813729,9 @@ new message content.",
|
|
|
814258
813729
|
key=".0"
|
|
814259
813730
|
lastModified={null}
|
|
814260
813731
|
onDeviceChange={[Function]}
|
|
814261
|
-
onPreviewTabChange={[Function]}
|
|
814262
813732
|
selectedCustomer={null}
|
|
814263
813733
|
showDeviceToggle={false}
|
|
814264
813734
|
showHeader={false}
|
|
814265
|
-
smsFallbackContent={null}
|
|
814266
813735
|
updatedByName={null}
|
|
814267
813736
|
>
|
|
814268
813737
|
<CapRow
|
|
@@ -819602,7 +819071,6 @@ new message content.",
|
|
|
819602
819071
|
}
|
|
819603
819072
|
}
|
|
819604
819073
|
show={false}
|
|
819605
|
-
smsFallbackContent={null}
|
|
819606
819074
|
testCustomers={Immutable.List []}
|
|
819607
819075
|
testGroups={Immutable.List []}
|
|
819608
819076
|
updatePreviewError={null}
|
|
@@ -821970,7 +821438,6 @@ new message content.",
|
|
|
821970
821438
|
}
|
|
821971
821439
|
}
|
|
821972
821440
|
show={false}
|
|
821973
|
-
smsFallbackContent={null}
|
|
821974
821441
|
templateLayoutType={null}
|
|
821975
821442
|
testCustomers={Immutable.List []}
|
|
821976
821443
|
testGroups={Immutable.List []}
|
|
@@ -822064,7 +821531,6 @@ new message content.",
|
|
|
822064
821531
|
formatMessage={[Function]}
|
|
822065
821532
|
handleSendTestMessage={[Function]}
|
|
822066
821533
|
handleTestEntitiesChange={[Function]}
|
|
822067
|
-
isChannelSmsFallbackPreviewEnabled={false}
|
|
822068
821534
|
isFetchingTestCustomers={false}
|
|
822069
821535
|
isFetchingTestGroups={false}
|
|
822070
821536
|
isLoadingSenderDetails={false}
|
|
@@ -822074,13 +821540,7 @@ new message content.",
|
|
|
822074
821540
|
renderAddTestCustomerButton={[Function]}
|
|
822075
821541
|
searchValue=""
|
|
822076
821542
|
selectedTestEntities={Array []}
|
|
822077
|
-
|
|
822078
|
-
Object {
|
|
822079
|
-
"EMAIL": Array [],
|
|
822080
|
-
"SMS": Array [],
|
|
822081
|
-
"WHATSAPP": Array [],
|
|
822082
|
-
}
|
|
822083
|
-
}
|
|
821543
|
+
senderDetailsOptions={Array []}
|
|
822084
821544
|
setSearchValue={[Function]}
|
|
822085
821545
|
smsTraiDltEnabled={false}
|
|
822086
821546
|
testEntitiesTreeData={
|
|
@@ -822112,7 +821572,6 @@ new message content.",
|
|
|
822112
821572
|
<PreviewSection
|
|
822113
821573
|
unifiedPreviewProps={
|
|
822114
821574
|
Object {
|
|
822115
|
-
"activePreviewTab": "rcs",
|
|
822116
821575
|
"channel": "WHATSAPP",
|
|
822117
821576
|
"content": Object {
|
|
822118
821577
|
"_id": null,
|
|
@@ -822147,11 +821606,8 @@ new message content.",
|
|
|
822147
821606
|
"isUpdating": false,
|
|
822148
821607
|
"lastModified": undefined,
|
|
822149
821608
|
"onDeviceChange": [Function],
|
|
822150
|
-
"onPreviewTabChange": [Function],
|
|
822151
821609
|
"selectedCustomer": null,
|
|
822152
821610
|
"showDeviceToggle": true,
|
|
822153
|
-
"smsFallbackContent": null,
|
|
822154
|
-
"smsFallbackResolvedText": undefined,
|
|
822155
821611
|
"updatedByName": undefined,
|
|
822156
821612
|
}
|
|
822157
821613
|
}
|