@capillarytech/creatives-library 8.0.345-alpha.14 → 8.0.345-alpha.15
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 +29 -0
- package/package.json +1 -1
- package/services/tests/api.test.js +13 -0
- package/utils/commonUtils.js +19 -1
- package/utils/rcsPayloadUtils.js +92 -0
- package/utils/templateVarUtils.js +201 -0
- package/utils/tests/templateVarUtils.test.js +204 -0
- package/v2Components/CapActionButton/constants.js +7 -0
- package/v2Components/CapActionButton/index.js +167 -109
- package/v2Components/CapActionButton/index.scss +157 -6
- package/v2Components/CapActionButton/messages.js +19 -3
- package/v2Components/CapActionButton/tests/index.test.js +41 -17
- package/v2Components/CapTagList/index.js +10 -0
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +70 -49
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +8 -2
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +207 -21
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +16 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +85 -10
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +30 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +79 -11
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +10 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/RcsPreviewContent.js +160 -15
- package/v2Components/CommonTestAndPreview/UnifiedPreview/RcsPreviewContent.js.rej +18 -0
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +341 -76
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +133 -4
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +11 -0
- package/v2Components/CommonTestAndPreview/constants.js +38 -2
- package/v2Components/CommonTestAndPreview/index.js +676 -186
- package/v2Components/CommonTestAndPreview/messages.js +49 -3
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +59 -0
- package/v2Components/CommonTestAndPreview/sagas.js +15 -6
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +308 -284
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +231 -65
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +118 -5
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +341 -0
- package/v2Components/CommonTestAndPreview/tests/PreviewSection.test.js +8 -1
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +34 -13
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/RcsPreviewContent.test.js +281 -283
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +199 -1
- package/v2Components/CommonTestAndPreview/tests/index.test.js +132 -4
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +67 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +2 -2
- package/v2Components/FormBuilder/index.js +8 -10
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +87 -0
- package/v2Components/SmsFallback/constants.js +73 -0
- package/v2Components/SmsFallback/index.js +955 -0
- package/v2Components/SmsFallback/index.scss +265 -0
- package/v2Components/SmsFallback/messages.js +78 -0
- package/v2Components/SmsFallback/smsFallbackUtils.js +118 -0
- package/v2Components/SmsFallback/tests/SmsFallbackLocalSelector.test.js +50 -0
- package/v2Components/SmsFallback/tests/rcsSmsFallback.acceptance.test.js +147 -0
- package/v2Components/SmsFallback/tests/smsFallbackHandlers.test.js +304 -0
- package/v2Components/SmsFallback/tests/smsFallbackUi.test.js +197 -0
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +277 -0
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +422 -0
- package/v2Components/SmsFallback/useLocalTemplateList.js +92 -0
- package/v2Components/TemplatePreview/_templatePreview.scss +33 -23
- package/v2Components/TemplatePreview/constants.js +2 -0
- package/v2Components/TemplatePreview/index.js +143 -28
- package/v2Components/TemplatePreview/tests/index.test.js +142 -0
- package/v2Components/TestAndPreviewSlidebox/index.js +13 -1
- package/v2Components/TestAndPreviewSlidebox/sagas.js +11 -4
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +3 -1
- package/v2Components/VarSegmentMessageEditor/constants.js +2 -0
- package/v2Components/VarSegmentMessageEditor/index.js +125 -0
- package/v2Components/VarSegmentMessageEditor/index.scss +46 -0
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +43 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +36 -4
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +10 -1
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +29 -4
- package/v2Containers/CreativesContainer/constants.js +9 -0
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +67 -0
- package/v2Containers/CreativesContainer/index.js +300 -103
- package/v2Containers/CreativesContainer/index.scss +51 -1
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +90 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +78 -34
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +79 -16
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +8 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +357 -98
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +20 -15
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +258 -0
- package/v2Containers/CreativesContainer/tests/index.test.js +71 -9
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +125 -0
- package/v2Containers/Email/reducer.js +3 -11
- package/v2Containers/Email/sagas.js +5 -9
- package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -4
- package/v2Containers/Email/tests/sagas.test.js +3 -21
- package/v2Containers/Rcs/constants.js +119 -8
- package/v2Containers/Rcs/index.js +2379 -807
- package/v2Containers/Rcs/index.js.rej +1336 -0
- package/v2Containers/Rcs/index.scss +276 -6
- package/v2Containers/Rcs/index.scss.rej +74 -0
- package/v2Containers/Rcs/messages.js +38 -3
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +225 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +98018 -70073
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +0 -5
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap.rej +128 -0
- package/v2Containers/Rcs/tests/index.test.js +152 -121
- package/v2Containers/Rcs/tests/mockData.js +38 -0
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +318 -0
- package/v2Containers/Rcs/tests/utils.test.js +646 -30
- package/v2Containers/Rcs/utils.js +478 -11
- package/v2Containers/Sms/Create/index.js +100 -40
- package/v2Containers/Sms/smsFormDataHelpers.js +67 -0
- package/v2Containers/Sms/tests/smsFormDataHelpers.test.js +253 -0
- package/v2Containers/SmsTrai/Create/index.js +9 -4
- package/v2Containers/SmsTrai/Edit/constants.js +2 -0
- package/v2Containers/SmsTrai/Edit/index.js +636 -130
- package/v2Containers/SmsTrai/Edit/index.scss +121 -0
- package/v2Containers/SmsTrai/Edit/messages.js +14 -4
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +4328 -2375
- package/v2Containers/SmsWrapper/index.js +37 -8
- package/v2Containers/TagList/index.js +6 -0
- package/v2Containers/Templates/TemplatesActionBar.js +101 -0
- package/v2Containers/Templates/_templates.scss +163 -2
- package/v2Containers/Templates/actions.js +11 -0
- package/v2Containers/Templates/constants.js +2 -0
- package/v2Containers/Templates/index.js +119 -54
- package/v2Containers/Templates/sagas.js +57 -12
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +120 -0
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1043 -1079
- package/v2Containers/Templates/tests/sagas.test.js +193 -123
- package/v2Containers/Templates/tests/smsTemplatesListApi.test.js +180 -0
- package/v2Containers/Templates/utils/smsTemplatesListApi.js +79 -0
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +72 -1
- package/v2Containers/TemplatesV2/index.js +86 -23
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +131 -0
- package/v2Containers/Whatsapp/index.js +3 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +578 -34
|
@@ -13781,6 +13781,7 @@ new message content.",
|
|
|
13781
13781
|
className="ant-col ant-col-10 cap-column-v2"
|
|
13782
13782
|
>
|
|
13783
13783
|
<UnifiedPreview
|
|
13784
|
+
activePreviewTab="rcs"
|
|
13784
13785
|
channel="WHATSAPP"
|
|
13785
13786
|
content={
|
|
13786
13787
|
Object {
|
|
@@ -14476,9 +14477,11 @@ new message content.",
|
|
|
14476
14477
|
key=".0"
|
|
14477
14478
|
lastModified={null}
|
|
14478
14479
|
onDeviceChange={[Function]}
|
|
14480
|
+
onPreviewTabChange={[Function]}
|
|
14479
14481
|
selectedCustomer={null}
|
|
14480
14482
|
showDeviceToggle={false}
|
|
14481
14483
|
showHeader={false}
|
|
14484
|
+
smsFallbackContent={null}
|
|
14482
14485
|
updatedByName={null}
|
|
14483
14486
|
>
|
|
14484
14487
|
<CapRow
|
|
@@ -19262,6 +19265,7 @@ new message content.",
|
|
|
19262
19265
|
}
|
|
19263
19266
|
}
|
|
19264
19267
|
show={false}
|
|
19268
|
+
smsFallbackContent={null}
|
|
19265
19269
|
testCustomers={Immutable.List []}
|
|
19266
19270
|
testGroups={Immutable.List []}
|
|
19267
19271
|
updatePreviewError={null}
|
|
@@ -21629,6 +21633,7 @@ new message content.",
|
|
|
21629
21633
|
}
|
|
21630
21634
|
}
|
|
21631
21635
|
show={false}
|
|
21636
|
+
smsFallbackContent={null}
|
|
21632
21637
|
templateLayoutType={null}
|
|
21633
21638
|
testCustomers={Immutable.List []}
|
|
21634
21639
|
testGroups={Immutable.List []}
|
|
@@ -21722,6 +21727,7 @@ new message content.",
|
|
|
21722
21727
|
formatMessage={[Function]}
|
|
21723
21728
|
handleSendTestMessage={[Function]}
|
|
21724
21729
|
handleTestEntitiesChange={[Function]}
|
|
21730
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
21725
21731
|
isFetchingTestCustomers={false}
|
|
21726
21732
|
isFetchingTestGroups={false}
|
|
21727
21733
|
isLoadingSenderDetails={false}
|
|
@@ -21731,7 +21737,13 @@ new message content.",
|
|
|
21731
21737
|
renderAddTestCustomerButton={[Function]}
|
|
21732
21738
|
searchValue=""
|
|
21733
21739
|
selectedTestEntities={Array []}
|
|
21734
|
-
|
|
21740
|
+
senderDetailsByChannel={
|
|
21741
|
+
Object {
|
|
21742
|
+
"EMAIL": Array [],
|
|
21743
|
+
"SMS": Array [],
|
|
21744
|
+
"WHATSAPP": Array [],
|
|
21745
|
+
}
|
|
21746
|
+
}
|
|
21735
21747
|
setSearchValue={[Function]}
|
|
21736
21748
|
smsTraiDltEnabled={false}
|
|
21737
21749
|
testEntitiesTreeData={
|
|
@@ -21763,6 +21775,7 @@ new message content.",
|
|
|
21763
21775
|
<PreviewSection
|
|
21764
21776
|
unifiedPreviewProps={
|
|
21765
21777
|
Object {
|
|
21778
|
+
"activePreviewTab": "rcs",
|
|
21766
21779
|
"channel": "WHATSAPP",
|
|
21767
21780
|
"content": Object {
|
|
21768
21781
|
"_id": null,
|
|
@@ -21797,8 +21810,11 @@ new message content.",
|
|
|
21797
21810
|
"isUpdating": false,
|
|
21798
21811
|
"lastModified": undefined,
|
|
21799
21812
|
"onDeviceChange": [Function],
|
|
21813
|
+
"onPreviewTabChange": [Function],
|
|
21800
21814
|
"selectedCustomer": null,
|
|
21801
21815
|
"showDeviceToggle": true,
|
|
21816
|
+
"smsFallbackContent": null,
|
|
21817
|
+
"smsFallbackResolvedText": undefined,
|
|
21802
21818
|
"updatedByName": undefined,
|
|
21803
21819
|
}
|
|
21804
21820
|
}
|
|
@@ -37554,6 +37570,7 @@ new message content.",
|
|
|
37554
37570
|
className="ant-col ant-col-10 cap-column-v2"
|
|
37555
37571
|
>
|
|
37556
37572
|
<UnifiedPreview
|
|
37573
|
+
activePreviewTab="rcs"
|
|
37557
37574
|
channel="WHATSAPP"
|
|
37558
37575
|
content={
|
|
37559
37576
|
Object {
|
|
@@ -38347,9 +38364,11 @@ new message content.",
|
|
|
38347
38364
|
key=".0"
|
|
38348
38365
|
lastModified={null}
|
|
38349
38366
|
onDeviceChange={[Function]}
|
|
38367
|
+
onPreviewTabChange={[Function]}
|
|
38350
38368
|
selectedCustomer={null}
|
|
38351
38369
|
showDeviceToggle={false}
|
|
38352
38370
|
showHeader={false}
|
|
38371
|
+
smsFallbackContent={null}
|
|
38353
38372
|
updatedByName={null}
|
|
38354
38373
|
>
|
|
38355
38374
|
<CapRow
|
|
@@ -43231,6 +43250,7 @@ new message content.",
|
|
|
43231
43250
|
}
|
|
43232
43251
|
}
|
|
43233
43252
|
show={false}
|
|
43253
|
+
smsFallbackContent={null}
|
|
43234
43254
|
testCustomers={Immutable.List []}
|
|
43235
43255
|
testGroups={Immutable.List []}
|
|
43236
43256
|
updatePreviewError={null}
|
|
@@ -45598,6 +45618,7 @@ new message content.",
|
|
|
45598
45618
|
}
|
|
45599
45619
|
}
|
|
45600
45620
|
show={false}
|
|
45621
|
+
smsFallbackContent={null}
|
|
45601
45622
|
templateLayoutType={null}
|
|
45602
45623
|
testCustomers={Immutable.List []}
|
|
45603
45624
|
testGroups={Immutable.List []}
|
|
@@ -45691,6 +45712,7 @@ new message content.",
|
|
|
45691
45712
|
formatMessage={[Function]}
|
|
45692
45713
|
handleSendTestMessage={[Function]}
|
|
45693
45714
|
handleTestEntitiesChange={[Function]}
|
|
45715
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
45694
45716
|
isFetchingTestCustomers={false}
|
|
45695
45717
|
isFetchingTestGroups={false}
|
|
45696
45718
|
isLoadingSenderDetails={false}
|
|
@@ -45700,7 +45722,13 @@ new message content.",
|
|
|
45700
45722
|
renderAddTestCustomerButton={[Function]}
|
|
45701
45723
|
searchValue=""
|
|
45702
45724
|
selectedTestEntities={Array []}
|
|
45703
|
-
|
|
45725
|
+
senderDetailsByChannel={
|
|
45726
|
+
Object {
|
|
45727
|
+
"EMAIL": Array [],
|
|
45728
|
+
"SMS": Array [],
|
|
45729
|
+
"WHATSAPP": Array [],
|
|
45730
|
+
}
|
|
45731
|
+
}
|
|
45704
45732
|
setSearchValue={[Function]}
|
|
45705
45733
|
smsTraiDltEnabled={false}
|
|
45706
45734
|
testEntitiesTreeData={
|
|
@@ -45732,6 +45760,7 @@ new message content.",
|
|
|
45732
45760
|
<PreviewSection
|
|
45733
45761
|
unifiedPreviewProps={
|
|
45734
45762
|
Object {
|
|
45763
|
+
"activePreviewTab": "rcs",
|
|
45735
45764
|
"channel": "WHATSAPP",
|
|
45736
45765
|
"content": Object {
|
|
45737
45766
|
"_id": null,
|
|
@@ -45766,8 +45795,11 @@ new message content.",
|
|
|
45766
45795
|
"isUpdating": false,
|
|
45767
45796
|
"lastModified": undefined,
|
|
45768
45797
|
"onDeviceChange": [Function],
|
|
45798
|
+
"onPreviewTabChange": [Function],
|
|
45769
45799
|
"selectedCustomer": null,
|
|
45770
45800
|
"showDeviceToggle": true,
|
|
45801
|
+
"smsFallbackContent": null,
|
|
45802
|
+
"smsFallbackResolvedText": undefined,
|
|
45771
45803
|
"updatedByName": undefined,
|
|
45772
45804
|
}
|
|
45773
45805
|
}
|
|
@@ -61803,6 +61835,7 @@ new message content.",
|
|
|
61803
61835
|
className="ant-col ant-col-10 cap-column-v2"
|
|
61804
61836
|
>
|
|
61805
61837
|
<UnifiedPreview
|
|
61838
|
+
activePreviewTab="rcs"
|
|
61806
61839
|
channel="WHATSAPP"
|
|
61807
61840
|
content={
|
|
61808
61841
|
Object {
|
|
@@ -62981,9 +63014,11 @@ new message content.",
|
|
|
62981
63014
|
key=".0"
|
|
62982
63015
|
lastModified={null}
|
|
62983
63016
|
onDeviceChange={[Function]}
|
|
63017
|
+
onPreviewTabChange={[Function]}
|
|
62984
63018
|
selectedCustomer={null}
|
|
62985
63019
|
showDeviceToggle={false}
|
|
62986
63020
|
showHeader={false}
|
|
63021
|
+
smsFallbackContent={null}
|
|
62987
63022
|
updatedByName={null}
|
|
62988
63023
|
>
|
|
62989
63024
|
<CapRow
|
|
@@ -68248,6 +68283,7 @@ new message content.",
|
|
|
68248
68283
|
}
|
|
68249
68284
|
}
|
|
68250
68285
|
show={false}
|
|
68286
|
+
smsFallbackContent={null}
|
|
68251
68287
|
testCustomers={Immutable.List []}
|
|
68252
68288
|
testGroups={Immutable.List []}
|
|
68253
68289
|
updatePreviewError={null}
|
|
@@ -70615,6 +70651,7 @@ new message content.",
|
|
|
70615
70651
|
}
|
|
70616
70652
|
}
|
|
70617
70653
|
show={false}
|
|
70654
|
+
smsFallbackContent={null}
|
|
70618
70655
|
templateLayoutType={null}
|
|
70619
70656
|
testCustomers={Immutable.List []}
|
|
70620
70657
|
testGroups={Immutable.List []}
|
|
@@ -70708,6 +70745,7 @@ new message content.",
|
|
|
70708
70745
|
formatMessage={[Function]}
|
|
70709
70746
|
handleSendTestMessage={[Function]}
|
|
70710
70747
|
handleTestEntitiesChange={[Function]}
|
|
70748
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
70711
70749
|
isFetchingTestCustomers={false}
|
|
70712
70750
|
isFetchingTestGroups={false}
|
|
70713
70751
|
isLoadingSenderDetails={false}
|
|
@@ -70717,7 +70755,13 @@ new message content.",
|
|
|
70717
70755
|
renderAddTestCustomerButton={[Function]}
|
|
70718
70756
|
searchValue=""
|
|
70719
70757
|
selectedTestEntities={Array []}
|
|
70720
|
-
|
|
70758
|
+
senderDetailsByChannel={
|
|
70759
|
+
Object {
|
|
70760
|
+
"EMAIL": Array [],
|
|
70761
|
+
"SMS": Array [],
|
|
70762
|
+
"WHATSAPP": Array [],
|
|
70763
|
+
}
|
|
70764
|
+
}
|
|
70721
70765
|
setSearchValue={[Function]}
|
|
70722
70766
|
smsTraiDltEnabled={false}
|
|
70723
70767
|
testEntitiesTreeData={
|
|
@@ -70749,6 +70793,7 @@ new message content.",
|
|
|
70749
70793
|
<PreviewSection
|
|
70750
70794
|
unifiedPreviewProps={
|
|
70751
70795
|
Object {
|
|
70796
|
+
"activePreviewTab": "rcs",
|
|
70752
70797
|
"channel": "WHATSAPP",
|
|
70753
70798
|
"content": Object {
|
|
70754
70799
|
"_id": null,
|
|
@@ -70783,8 +70828,11 @@ new message content.",
|
|
|
70783
70828
|
"isUpdating": false,
|
|
70784
70829
|
"lastModified": undefined,
|
|
70785
70830
|
"onDeviceChange": [Function],
|
|
70831
|
+
"onPreviewTabChange": [Function],
|
|
70786
70832
|
"selectedCustomer": null,
|
|
70787
70833
|
"showDeviceToggle": true,
|
|
70834
|
+
"smsFallbackContent": null,
|
|
70835
|
+
"smsFallbackResolvedText": undefined,
|
|
70788
70836
|
"updatedByName": undefined,
|
|
70789
70837
|
}
|
|
70790
70838
|
}
|
|
@@ -87695,6 +87743,7 @@ new message content.",
|
|
|
87695
87743
|
className="ant-col ant-col-10 cap-column-v2"
|
|
87696
87744
|
>
|
|
87697
87745
|
<UnifiedPreview
|
|
87746
|
+
activePreviewTab="rcs"
|
|
87698
87747
|
channel="WHATSAPP"
|
|
87699
87748
|
content={
|
|
87700
87749
|
Object {
|
|
@@ -89643,9 +89692,11 @@ new message content.",
|
|
|
89643
89692
|
key=".0"
|
|
89644
89693
|
lastModified={null}
|
|
89645
89694
|
onDeviceChange={[Function]}
|
|
89695
|
+
onPreviewTabChange={[Function]}
|
|
89646
89696
|
selectedCustomer={null}
|
|
89647
89697
|
showDeviceToggle={false}
|
|
89648
89698
|
showHeader={false}
|
|
89699
|
+
smsFallbackContent={null}
|
|
89649
89700
|
updatedByName={null}
|
|
89650
89701
|
>
|
|
89651
89702
|
<CapRow
|
|
@@ -95682,6 +95733,7 @@ new message content.",
|
|
|
95682
95733
|
}
|
|
95683
95734
|
}
|
|
95684
95735
|
show={false}
|
|
95736
|
+
smsFallbackContent={null}
|
|
95685
95737
|
testCustomers={Immutable.List []}
|
|
95686
95738
|
testGroups={Immutable.List []}
|
|
95687
95739
|
updatePreviewError={null}
|
|
@@ -98049,6 +98101,7 @@ new message content.",
|
|
|
98049
98101
|
}
|
|
98050
98102
|
}
|
|
98051
98103
|
show={false}
|
|
98104
|
+
smsFallbackContent={null}
|
|
98052
98105
|
templateLayoutType={null}
|
|
98053
98106
|
testCustomers={Immutable.List []}
|
|
98054
98107
|
testGroups={Immutable.List []}
|
|
@@ -98142,6 +98195,7 @@ new message content.",
|
|
|
98142
98195
|
formatMessage={[Function]}
|
|
98143
98196
|
handleSendTestMessage={[Function]}
|
|
98144
98197
|
handleTestEntitiesChange={[Function]}
|
|
98198
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
98145
98199
|
isFetchingTestCustomers={false}
|
|
98146
98200
|
isFetchingTestGroups={false}
|
|
98147
98201
|
isLoadingSenderDetails={false}
|
|
@@ -98151,7 +98205,13 @@ new message content.",
|
|
|
98151
98205
|
renderAddTestCustomerButton={[Function]}
|
|
98152
98206
|
searchValue=""
|
|
98153
98207
|
selectedTestEntities={Array []}
|
|
98154
|
-
|
|
98208
|
+
senderDetailsByChannel={
|
|
98209
|
+
Object {
|
|
98210
|
+
"EMAIL": Array [],
|
|
98211
|
+
"SMS": Array [],
|
|
98212
|
+
"WHATSAPP": Array [],
|
|
98213
|
+
}
|
|
98214
|
+
}
|
|
98155
98215
|
setSearchValue={[Function]}
|
|
98156
98216
|
smsTraiDltEnabled={false}
|
|
98157
98217
|
testEntitiesTreeData={
|
|
@@ -98183,6 +98243,7 @@ new message content.",
|
|
|
98183
98243
|
<PreviewSection
|
|
98184
98244
|
unifiedPreviewProps={
|
|
98185
98245
|
Object {
|
|
98246
|
+
"activePreviewTab": "rcs",
|
|
98186
98247
|
"channel": "WHATSAPP",
|
|
98187
98248
|
"content": Object {
|
|
98188
98249
|
"_id": null,
|
|
@@ -98217,8 +98278,11 @@ new message content.",
|
|
|
98217
98278
|
"isUpdating": false,
|
|
98218
98279
|
"lastModified": undefined,
|
|
98219
98280
|
"onDeviceChange": [Function],
|
|
98281
|
+
"onPreviewTabChange": [Function],
|
|
98220
98282
|
"selectedCustomer": null,
|
|
98221
98283
|
"showDeviceToggle": true,
|
|
98284
|
+
"smsFallbackContent": null,
|
|
98285
|
+
"smsFallbackResolvedText": undefined,
|
|
98222
98286
|
"updatedByName": undefined,
|
|
98223
98287
|
}
|
|
98224
98288
|
}
|
|
@@ -112064,6 +112128,7 @@ new message content.",
|
|
|
112064
112128
|
className="ant-col ant-col-10 cap-column-v2"
|
|
112065
112129
|
>
|
|
112066
112130
|
<UnifiedPreview
|
|
112131
|
+
activePreviewTab="rcs"
|
|
112067
112132
|
channel="WHATSAPP"
|
|
112068
112133
|
content={
|
|
112069
112134
|
Object {
|
|
@@ -112769,9 +112834,11 @@ new message content.",
|
|
|
112769
112834
|
key=".0"
|
|
112770
112835
|
lastModified={null}
|
|
112771
112836
|
onDeviceChange={[Function]}
|
|
112837
|
+
onPreviewTabChange={[Function]}
|
|
112772
112838
|
selectedCustomer={null}
|
|
112773
112839
|
showDeviceToggle={false}
|
|
112774
112840
|
showHeader={false}
|
|
112841
|
+
smsFallbackContent={null}
|
|
112775
112842
|
updatedByName={null}
|
|
112776
112843
|
>
|
|
112777
112844
|
<CapRow
|
|
@@ -117565,6 +117632,7 @@ new message content.",
|
|
|
117565
117632
|
}
|
|
117566
117633
|
}
|
|
117567
117634
|
show={false}
|
|
117635
|
+
smsFallbackContent={null}
|
|
117568
117636
|
testCustomers={Immutable.List []}
|
|
117569
117637
|
testGroups={Immutable.List []}
|
|
117570
117638
|
updatePreviewError={null}
|
|
@@ -119932,6 +120000,7 @@ new message content.",
|
|
|
119932
120000
|
}
|
|
119933
120001
|
}
|
|
119934
120002
|
show={false}
|
|
120003
|
+
smsFallbackContent={null}
|
|
119935
120004
|
templateLayoutType={null}
|
|
119936
120005
|
testCustomers={Immutable.List []}
|
|
119937
120006
|
testGroups={Immutable.List []}
|
|
@@ -120025,6 +120094,7 @@ new message content.",
|
|
|
120025
120094
|
formatMessage={[Function]}
|
|
120026
120095
|
handleSendTestMessage={[Function]}
|
|
120027
120096
|
handleTestEntitiesChange={[Function]}
|
|
120097
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
120028
120098
|
isFetchingTestCustomers={false}
|
|
120029
120099
|
isFetchingTestGroups={false}
|
|
120030
120100
|
isLoadingSenderDetails={false}
|
|
@@ -120034,7 +120104,13 @@ new message content.",
|
|
|
120034
120104
|
renderAddTestCustomerButton={[Function]}
|
|
120035
120105
|
searchValue=""
|
|
120036
120106
|
selectedTestEntities={Array []}
|
|
120037
|
-
|
|
120107
|
+
senderDetailsByChannel={
|
|
120108
|
+
Object {
|
|
120109
|
+
"EMAIL": Array [],
|
|
120110
|
+
"SMS": Array [],
|
|
120111
|
+
"WHATSAPP": Array [],
|
|
120112
|
+
}
|
|
120113
|
+
}
|
|
120038
120114
|
setSearchValue={[Function]}
|
|
120039
120115
|
smsTraiDltEnabled={false}
|
|
120040
120116
|
testEntitiesTreeData={
|
|
@@ -120066,6 +120142,7 @@ new message content.",
|
|
|
120066
120142
|
<PreviewSection
|
|
120067
120143
|
unifiedPreviewProps={
|
|
120068
120144
|
Object {
|
|
120145
|
+
"activePreviewTab": "rcs",
|
|
120069
120146
|
"channel": "WHATSAPP",
|
|
120070
120147
|
"content": Object {
|
|
120071
120148
|
"_id": null,
|
|
@@ -120100,8 +120177,11 @@ new message content.",
|
|
|
120100
120177
|
"isUpdating": false,
|
|
120101
120178
|
"lastModified": undefined,
|
|
120102
120179
|
"onDeviceChange": [Function],
|
|
120180
|
+
"onPreviewTabChange": [Function],
|
|
120103
120181
|
"selectedCustomer": null,
|
|
120104
120182
|
"showDeviceToggle": true,
|
|
120183
|
+
"smsFallbackContent": null,
|
|
120184
|
+
"smsFallbackResolvedText": undefined,
|
|
120105
120185
|
"updatedByName": undefined,
|
|
120106
120186
|
}
|
|
120107
120187
|
}
|
|
@@ -133937,6 +134017,7 @@ new message content.",
|
|
|
133937
134017
|
className="ant-col ant-col-10 cap-column-v2"
|
|
133938
134018
|
>
|
|
133939
134019
|
<UnifiedPreview
|
|
134020
|
+
activePreviewTab="rcs"
|
|
133940
134021
|
channel="WHATSAPP"
|
|
133941
134022
|
content={
|
|
133942
134023
|
Object {
|
|
@@ -134632,9 +134713,11 @@ new message content.",
|
|
|
134632
134713
|
key=".0"
|
|
134633
134714
|
lastModified={null}
|
|
134634
134715
|
onDeviceChange={[Function]}
|
|
134716
|
+
onPreviewTabChange={[Function]}
|
|
134635
134717
|
selectedCustomer={null}
|
|
134636
134718
|
showDeviceToggle={false}
|
|
134637
134719
|
showHeader={false}
|
|
134720
|
+
smsFallbackContent={null}
|
|
134638
134721
|
updatedByName={null}
|
|
134639
134722
|
>
|
|
134640
134723
|
<CapRow
|
|
@@ -139418,6 +139501,7 @@ new message content.",
|
|
|
139418
139501
|
}
|
|
139419
139502
|
}
|
|
139420
139503
|
show={false}
|
|
139504
|
+
smsFallbackContent={null}
|
|
139421
139505
|
testCustomers={Immutable.List []}
|
|
139422
139506
|
testGroups={Immutable.List []}
|
|
139423
139507
|
updatePreviewError={null}
|
|
@@ -141785,6 +141869,7 @@ new message content.",
|
|
|
141785
141869
|
}
|
|
141786
141870
|
}
|
|
141787
141871
|
show={false}
|
|
141872
|
+
smsFallbackContent={null}
|
|
141788
141873
|
templateLayoutType={null}
|
|
141789
141874
|
testCustomers={Immutable.List []}
|
|
141790
141875
|
testGroups={Immutable.List []}
|
|
@@ -141878,6 +141963,7 @@ new message content.",
|
|
|
141878
141963
|
formatMessage={[Function]}
|
|
141879
141964
|
handleSendTestMessage={[Function]}
|
|
141880
141965
|
handleTestEntitiesChange={[Function]}
|
|
141966
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
141881
141967
|
isFetchingTestCustomers={false}
|
|
141882
141968
|
isFetchingTestGroups={false}
|
|
141883
141969
|
isLoadingSenderDetails={false}
|
|
@@ -141887,7 +141973,13 @@ new message content.",
|
|
|
141887
141973
|
renderAddTestCustomerButton={[Function]}
|
|
141888
141974
|
searchValue=""
|
|
141889
141975
|
selectedTestEntities={Array []}
|
|
141890
|
-
|
|
141976
|
+
senderDetailsByChannel={
|
|
141977
|
+
Object {
|
|
141978
|
+
"EMAIL": Array [],
|
|
141979
|
+
"SMS": Array [],
|
|
141980
|
+
"WHATSAPP": Array [],
|
|
141981
|
+
}
|
|
141982
|
+
}
|
|
141891
141983
|
setSearchValue={[Function]}
|
|
141892
141984
|
smsTraiDltEnabled={false}
|
|
141893
141985
|
testEntitiesTreeData={
|
|
@@ -141919,6 +142011,7 @@ new message content.",
|
|
|
141919
142011
|
<PreviewSection
|
|
141920
142012
|
unifiedPreviewProps={
|
|
141921
142013
|
Object {
|
|
142014
|
+
"activePreviewTab": "rcs",
|
|
141922
142015
|
"channel": "WHATSAPP",
|
|
141923
142016
|
"content": Object {
|
|
141924
142017
|
"_id": null,
|
|
@@ -141953,8 +142046,11 @@ new message content.",
|
|
|
141953
142046
|
"isUpdating": false,
|
|
141954
142047
|
"lastModified": undefined,
|
|
141955
142048
|
"onDeviceChange": [Function],
|
|
142049
|
+
"onPreviewTabChange": [Function],
|
|
141956
142050
|
"selectedCustomer": null,
|
|
141957
142051
|
"showDeviceToggle": true,
|
|
142052
|
+
"smsFallbackContent": null,
|
|
142053
|
+
"smsFallbackResolvedText": undefined,
|
|
141958
142054
|
"updatedByName": undefined,
|
|
141959
142055
|
}
|
|
141960
142056
|
}
|
|
@@ -158382,6 +158478,7 @@ new message content.",
|
|
|
158382
158478
|
className="ant-col ant-col-10 cap-column-v2"
|
|
158383
158479
|
>
|
|
158384
158480
|
<UnifiedPreview
|
|
158481
|
+
activePreviewTab="rcs"
|
|
158385
158482
|
channel="WHATSAPP"
|
|
158386
158483
|
content={
|
|
158387
158484
|
Object {
|
|
@@ -159847,9 +159944,11 @@ new message content.",
|
|
|
159847
159944
|
key=".0"
|
|
159848
159945
|
lastModified={null}
|
|
159849
159946
|
onDeviceChange={[Function]}
|
|
159947
|
+
onPreviewTabChange={[Function]}
|
|
159850
159948
|
selectedCustomer={null}
|
|
159851
159949
|
showDeviceToggle={false}
|
|
159852
159950
|
showHeader={false}
|
|
159951
|
+
smsFallbackContent={null}
|
|
159853
159952
|
updatedByName={null}
|
|
159854
159953
|
>
|
|
159855
159954
|
<CapRow
|
|
@@ -165403,6 +165502,7 @@ new message content.",
|
|
|
165403
165502
|
}
|
|
165404
165503
|
}
|
|
165405
165504
|
show={false}
|
|
165505
|
+
smsFallbackContent={null}
|
|
165406
165506
|
testCustomers={Immutable.List []}
|
|
165407
165507
|
testGroups={Immutable.List []}
|
|
165408
165508
|
updatePreviewError={null}
|
|
@@ -167770,6 +167870,7 @@ new message content.",
|
|
|
167770
167870
|
}
|
|
167771
167871
|
}
|
|
167772
167872
|
show={false}
|
|
167873
|
+
smsFallbackContent={null}
|
|
167773
167874
|
templateLayoutType={null}
|
|
167774
167875
|
testCustomers={Immutable.List []}
|
|
167775
167876
|
testGroups={Immutable.List []}
|
|
@@ -167863,6 +167964,7 @@ new message content.",
|
|
|
167863
167964
|
formatMessage={[Function]}
|
|
167864
167965
|
handleSendTestMessage={[Function]}
|
|
167865
167966
|
handleTestEntitiesChange={[Function]}
|
|
167967
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
167866
167968
|
isFetchingTestCustomers={false}
|
|
167867
167969
|
isFetchingTestGroups={false}
|
|
167868
167970
|
isLoadingSenderDetails={false}
|
|
@@ -167872,7 +167974,13 @@ new message content.",
|
|
|
167872
167974
|
renderAddTestCustomerButton={[Function]}
|
|
167873
167975
|
searchValue=""
|
|
167874
167976
|
selectedTestEntities={Array []}
|
|
167875
|
-
|
|
167977
|
+
senderDetailsByChannel={
|
|
167978
|
+
Object {
|
|
167979
|
+
"EMAIL": Array [],
|
|
167980
|
+
"SMS": Array [],
|
|
167981
|
+
"WHATSAPP": Array [],
|
|
167982
|
+
}
|
|
167983
|
+
}
|
|
167876
167984
|
setSearchValue={[Function]}
|
|
167877
167985
|
smsTraiDltEnabled={false}
|
|
167878
167986
|
testEntitiesTreeData={
|
|
@@ -167904,6 +168012,7 @@ new message content.",
|
|
|
167904
168012
|
<PreviewSection
|
|
167905
168013
|
unifiedPreviewProps={
|
|
167906
168014
|
Object {
|
|
168015
|
+
"activePreviewTab": "rcs",
|
|
167907
168016
|
"channel": "WHATSAPP",
|
|
167908
168017
|
"content": Object {
|
|
167909
168018
|
"_id": null,
|
|
@@ -167938,8 +168047,11 @@ new message content.",
|
|
|
167938
168047
|
"isUpdating": false,
|
|
167939
168048
|
"lastModified": undefined,
|
|
167940
168049
|
"onDeviceChange": [Function],
|
|
168050
|
+
"onPreviewTabChange": [Function],
|
|
167941
168051
|
"selectedCustomer": null,
|
|
167942
168052
|
"showDeviceToggle": true,
|
|
168053
|
+
"smsFallbackContent": null,
|
|
168054
|
+
"smsFallbackResolvedText": undefined,
|
|
167943
168055
|
"updatedByName": undefined,
|
|
167944
168056
|
}
|
|
167945
168057
|
}
|
|
@@ -184647,6 +184759,7 @@ new message content.",
|
|
|
184647
184759
|
className="ant-col ant-col-10 cap-column-v2"
|
|
184648
184760
|
>
|
|
184649
184761
|
<UnifiedPreview
|
|
184762
|
+
activePreviewTab="rcs"
|
|
184650
184763
|
channel="WHATSAPP"
|
|
184651
184764
|
content={
|
|
184652
184765
|
Object {
|
|
@@ -186497,9 +186610,11 @@ new message content.",
|
|
|
186497
186610
|
key=".0"
|
|
186498
186611
|
lastModified={null}
|
|
186499
186612
|
onDeviceChange={[Function]}
|
|
186613
|
+
onPreviewTabChange={[Function]}
|
|
186500
186614
|
selectedCustomer={null}
|
|
186501
186615
|
showDeviceToggle={false}
|
|
186502
186616
|
showHeader={false}
|
|
186617
|
+
smsFallbackContent={null}
|
|
186503
186618
|
updatedByName={null}
|
|
186504
186619
|
>
|
|
186505
186620
|
<CapRow
|
|
@@ -192436,6 +192551,7 @@ new message content.",
|
|
|
192436
192551
|
}
|
|
192437
192552
|
}
|
|
192438
192553
|
show={false}
|
|
192554
|
+
smsFallbackContent={null}
|
|
192439
192555
|
testCustomers={Immutable.List []}
|
|
192440
192556
|
testGroups={Immutable.List []}
|
|
192441
192557
|
updatePreviewError={null}
|
|
@@ -194803,6 +194919,7 @@ new message content.",
|
|
|
194803
194919
|
}
|
|
194804
194920
|
}
|
|
194805
194921
|
show={false}
|
|
194922
|
+
smsFallbackContent={null}
|
|
194806
194923
|
templateLayoutType={null}
|
|
194807
194924
|
testCustomers={Immutable.List []}
|
|
194808
194925
|
testGroups={Immutable.List []}
|
|
@@ -194896,6 +195013,7 @@ new message content.",
|
|
|
194896
195013
|
formatMessage={[Function]}
|
|
194897
195014
|
handleSendTestMessage={[Function]}
|
|
194898
195015
|
handleTestEntitiesChange={[Function]}
|
|
195016
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
194899
195017
|
isFetchingTestCustomers={false}
|
|
194900
195018
|
isFetchingTestGroups={false}
|
|
194901
195019
|
isLoadingSenderDetails={false}
|
|
@@ -194905,7 +195023,13 @@ new message content.",
|
|
|
194905
195023
|
renderAddTestCustomerButton={[Function]}
|
|
194906
195024
|
searchValue=""
|
|
194907
195025
|
selectedTestEntities={Array []}
|
|
194908
|
-
|
|
195026
|
+
senderDetailsByChannel={
|
|
195027
|
+
Object {
|
|
195028
|
+
"EMAIL": Array [],
|
|
195029
|
+
"SMS": Array [],
|
|
195030
|
+
"WHATSAPP": Array [],
|
|
195031
|
+
}
|
|
195032
|
+
}
|
|
194909
195033
|
setSearchValue={[Function]}
|
|
194910
195034
|
smsTraiDltEnabled={false}
|
|
194911
195035
|
testEntitiesTreeData={
|
|
@@ -194937,6 +195061,7 @@ new message content.",
|
|
|
194937
195061
|
<PreviewSection
|
|
194938
195062
|
unifiedPreviewProps={
|
|
194939
195063
|
Object {
|
|
195064
|
+
"activePreviewTab": "rcs",
|
|
194940
195065
|
"channel": "WHATSAPP",
|
|
194941
195066
|
"content": Object {
|
|
194942
195067
|
"_id": null,
|
|
@@ -194971,8 +195096,11 @@ new message content.",
|
|
|
194971
195096
|
"isUpdating": false,
|
|
194972
195097
|
"lastModified": undefined,
|
|
194973
195098
|
"onDeviceChange": [Function],
|
|
195099
|
+
"onPreviewTabChange": [Function],
|
|
194974
195100
|
"selectedCustomer": null,
|
|
194975
195101
|
"showDeviceToggle": true,
|
|
195102
|
+
"smsFallbackContent": null,
|
|
195103
|
+
"smsFallbackResolvedText": undefined,
|
|
194976
195104
|
"updatedByName": undefined,
|
|
194977
195105
|
}
|
|
194978
195106
|
}
|
|
@@ -212555,6 +212683,7 @@ new message content.",
|
|
|
212555
212683
|
className="ant-col ant-col-10 cap-column-v2"
|
|
212556
212684
|
>
|
|
212557
212685
|
<UnifiedPreview
|
|
212686
|
+
activePreviewTab="rcs"
|
|
212558
212687
|
channel="WHATSAPP"
|
|
212559
212688
|
content={
|
|
212560
212689
|
Object {
|
|
@@ -215175,9 +215304,11 @@ new message content.",
|
|
|
215175
215304
|
key=".0"
|
|
215176
215305
|
lastModified={null}
|
|
215177
215306
|
onDeviceChange={[Function]}
|
|
215307
|
+
onPreviewTabChange={[Function]}
|
|
215178
215308
|
selectedCustomer={null}
|
|
215179
215309
|
showDeviceToggle={false}
|
|
215180
215310
|
showHeader={false}
|
|
215311
|
+
smsFallbackContent={null}
|
|
215181
215312
|
updatedByName={null}
|
|
215182
215313
|
>
|
|
215183
215314
|
<CapRow
|
|
@@ -221886,6 +222017,7 @@ new message content.",
|
|
|
221886
222017
|
}
|
|
221887
222018
|
}
|
|
221888
222019
|
show={false}
|
|
222020
|
+
smsFallbackContent={null}
|
|
221889
222021
|
testCustomers={Immutable.List []}
|
|
221890
222022
|
testGroups={Immutable.List []}
|
|
221891
222023
|
updatePreviewError={null}
|
|
@@ -224253,6 +224385,7 @@ new message content.",
|
|
|
224253
224385
|
}
|
|
224254
224386
|
}
|
|
224255
224387
|
show={false}
|
|
224388
|
+
smsFallbackContent={null}
|
|
224256
224389
|
templateLayoutType={null}
|
|
224257
224390
|
testCustomers={Immutable.List []}
|
|
224258
224391
|
testGroups={Immutable.List []}
|
|
@@ -224346,6 +224479,7 @@ new message content.",
|
|
|
224346
224479
|
formatMessage={[Function]}
|
|
224347
224480
|
handleSendTestMessage={[Function]}
|
|
224348
224481
|
handleTestEntitiesChange={[Function]}
|
|
224482
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
224349
224483
|
isFetchingTestCustomers={false}
|
|
224350
224484
|
isFetchingTestGroups={false}
|
|
224351
224485
|
isLoadingSenderDetails={false}
|
|
@@ -224355,7 +224489,13 @@ new message content.",
|
|
|
224355
224489
|
renderAddTestCustomerButton={[Function]}
|
|
224356
224490
|
searchValue=""
|
|
224357
224491
|
selectedTestEntities={Array []}
|
|
224358
|
-
|
|
224492
|
+
senderDetailsByChannel={
|
|
224493
|
+
Object {
|
|
224494
|
+
"EMAIL": Array [],
|
|
224495
|
+
"SMS": Array [],
|
|
224496
|
+
"WHATSAPP": Array [],
|
|
224497
|
+
}
|
|
224498
|
+
}
|
|
224359
224499
|
setSearchValue={[Function]}
|
|
224360
224500
|
smsTraiDltEnabled={false}
|
|
224361
224501
|
testEntitiesTreeData={
|
|
@@ -224387,6 +224527,7 @@ new message content.",
|
|
|
224387
224527
|
<PreviewSection
|
|
224388
224528
|
unifiedPreviewProps={
|
|
224389
224529
|
Object {
|
|
224530
|
+
"activePreviewTab": "rcs",
|
|
224390
224531
|
"channel": "WHATSAPP",
|
|
224391
224532
|
"content": Object {
|
|
224392
224533
|
"_id": null,
|
|
@@ -224421,8 +224562,11 @@ new message content.",
|
|
|
224421
224562
|
"isUpdating": false,
|
|
224422
224563
|
"lastModified": undefined,
|
|
224423
224564
|
"onDeviceChange": [Function],
|
|
224565
|
+
"onPreviewTabChange": [Function],
|
|
224424
224566
|
"selectedCustomer": null,
|
|
224425
224567
|
"showDeviceToggle": true,
|
|
224568
|
+
"smsFallbackContent": null,
|
|
224569
|
+
"smsFallbackResolvedText": undefined,
|
|
224426
224570
|
"updatedByName": undefined,
|
|
224427
224571
|
}
|
|
224428
224572
|
}
|
|
@@ -242279,6 +242423,7 @@ new message content.",
|
|
|
242279
242423
|
className="ant-col ant-col-10 cap-column-v2"
|
|
242280
242424
|
>
|
|
242281
242425
|
<UnifiedPreview
|
|
242426
|
+
activePreviewTab="rcs"
|
|
242282
242427
|
channel="WHATSAPP"
|
|
242283
242428
|
content={
|
|
242284
242429
|
Object {
|
|
@@ -245284,9 +245429,11 @@ new message content.",
|
|
|
245284
245429
|
key=".0"
|
|
245285
245430
|
lastModified={null}
|
|
245286
245431
|
onDeviceChange={[Function]}
|
|
245432
|
+
onPreviewTabChange={[Function]}
|
|
245287
245433
|
selectedCustomer={null}
|
|
245288
245434
|
showDeviceToggle={false}
|
|
245289
245435
|
showHeader={false}
|
|
245436
|
+
smsFallbackContent={null}
|
|
245290
245437
|
updatedByName={null}
|
|
245291
245438
|
>
|
|
245292
245439
|
<CapRow
|
|
@@ -252378,6 +252525,7 @@ new message content.",
|
|
|
252378
252525
|
}
|
|
252379
252526
|
}
|
|
252380
252527
|
show={false}
|
|
252528
|
+
smsFallbackContent={null}
|
|
252381
252529
|
testCustomers={Immutable.List []}
|
|
252382
252530
|
testGroups={Immutable.List []}
|
|
252383
252531
|
updatePreviewError={null}
|
|
@@ -254745,6 +254893,7 @@ new message content.",
|
|
|
254745
254893
|
}
|
|
254746
254894
|
}
|
|
254747
254895
|
show={false}
|
|
254896
|
+
smsFallbackContent={null}
|
|
254748
254897
|
templateLayoutType={null}
|
|
254749
254898
|
testCustomers={Immutable.List []}
|
|
254750
254899
|
testGroups={Immutable.List []}
|
|
@@ -254838,6 +254987,7 @@ new message content.",
|
|
|
254838
254987
|
formatMessage={[Function]}
|
|
254839
254988
|
handleSendTestMessage={[Function]}
|
|
254840
254989
|
handleTestEntitiesChange={[Function]}
|
|
254990
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
254841
254991
|
isFetchingTestCustomers={false}
|
|
254842
254992
|
isFetchingTestGroups={false}
|
|
254843
254993
|
isLoadingSenderDetails={false}
|
|
@@ -254847,7 +254997,13 @@ new message content.",
|
|
|
254847
254997
|
renderAddTestCustomerButton={[Function]}
|
|
254848
254998
|
searchValue=""
|
|
254849
254999
|
selectedTestEntities={Array []}
|
|
254850
|
-
|
|
255000
|
+
senderDetailsByChannel={
|
|
255001
|
+
Object {
|
|
255002
|
+
"EMAIL": Array [],
|
|
255003
|
+
"SMS": Array [],
|
|
255004
|
+
"WHATSAPP": Array [],
|
|
255005
|
+
}
|
|
255006
|
+
}
|
|
254851
255007
|
setSearchValue={[Function]}
|
|
254852
255008
|
smsTraiDltEnabled={false}
|
|
254853
255009
|
testEntitiesTreeData={
|
|
@@ -254879,6 +255035,7 @@ new message content.",
|
|
|
254879
255035
|
<PreviewSection
|
|
254880
255036
|
unifiedPreviewProps={
|
|
254881
255037
|
Object {
|
|
255038
|
+
"activePreviewTab": "rcs",
|
|
254882
255039
|
"channel": "WHATSAPP",
|
|
254883
255040
|
"content": Object {
|
|
254884
255041
|
"_id": null,
|
|
@@ -254913,8 +255070,11 @@ new message content.",
|
|
|
254913
255070
|
"isUpdating": false,
|
|
254914
255071
|
"lastModified": undefined,
|
|
254915
255072
|
"onDeviceChange": [Function],
|
|
255073
|
+
"onPreviewTabChange": [Function],
|
|
254916
255074
|
"selectedCustomer": null,
|
|
254917
255075
|
"showDeviceToggle": true,
|
|
255076
|
+
"smsFallbackContent": null,
|
|
255077
|
+
"smsFallbackResolvedText": undefined,
|
|
254918
255078
|
"updatedByName": undefined,
|
|
254919
255079
|
}
|
|
254920
255080
|
}
|
|
@@ -263379,6 +263539,7 @@ new message content.",
|
|
|
263379
263539
|
className="ant-col ant-col-10 cap-column-v2"
|
|
263380
263540
|
>
|
|
263381
263541
|
<UnifiedPreview
|
|
263542
|
+
activePreviewTab="rcs"
|
|
263382
263543
|
channel="WHATSAPP"
|
|
263383
263544
|
content={
|
|
263384
263545
|
Object {
|
|
@@ -264365,9 +264526,11 @@ undefined",
|
|
|
264365
264526
|
key=".0"
|
|
264366
264527
|
lastModified={null}
|
|
264367
264528
|
onDeviceChange={[Function]}
|
|
264529
|
+
onPreviewTabChange={[Function]}
|
|
264368
264530
|
selectedCustomer={null}
|
|
264369
264531
|
showDeviceToggle={false}
|
|
264370
264532
|
showHeader={false}
|
|
264533
|
+
smsFallbackContent={null}
|
|
264371
264534
|
updatedByName={null}
|
|
264372
264535
|
>
|
|
264373
264536
|
<CapRow
|
|
@@ -268808,6 +268971,7 @@ new message content.",
|
|
|
268808
268971
|
}
|
|
268809
268972
|
}
|
|
268810
268973
|
show={false}
|
|
268974
|
+
smsFallbackContent={null}
|
|
268811
268975
|
testCustomers={Immutable.List []}
|
|
268812
268976
|
testGroups={Immutable.List []}
|
|
268813
268977
|
updatePreviewError={null}
|
|
@@ -271223,6 +271387,7 @@ new message content.",
|
|
|
271223
271387
|
}
|
|
271224
271388
|
}
|
|
271225
271389
|
show={false}
|
|
271390
|
+
smsFallbackContent={null}
|
|
271226
271391
|
templateLayoutType={null}
|
|
271227
271392
|
testCustomers={Immutable.List []}
|
|
271228
271393
|
testGroups={Immutable.List []}
|
|
@@ -271340,6 +271505,7 @@ undefined",
|
|
|
271340
271505
|
formatMessage={[Function]}
|
|
271341
271506
|
handleSendTestMessage={[Function]}
|
|
271342
271507
|
handleTestEntitiesChange={[Function]}
|
|
271508
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
271343
271509
|
isFetchingTestCustomers={false}
|
|
271344
271510
|
isFetchingTestGroups={false}
|
|
271345
271511
|
isLoadingSenderDetails={false}
|
|
@@ -271349,7 +271515,13 @@ undefined",
|
|
|
271349
271515
|
renderAddTestCustomerButton={[Function]}
|
|
271350
271516
|
searchValue=""
|
|
271351
271517
|
selectedTestEntities={Array []}
|
|
271352
|
-
|
|
271518
|
+
senderDetailsByChannel={
|
|
271519
|
+
Object {
|
|
271520
|
+
"EMAIL": Array [],
|
|
271521
|
+
"SMS": Array [],
|
|
271522
|
+
"WHATSAPP": Array [],
|
|
271523
|
+
}
|
|
271524
|
+
}
|
|
271353
271525
|
setSearchValue={[Function]}
|
|
271354
271526
|
smsTraiDltEnabled={false}
|
|
271355
271527
|
testEntitiesTreeData={
|
|
@@ -271381,6 +271553,7 @@ undefined",
|
|
|
271381
271553
|
<PreviewSection
|
|
271382
271554
|
unifiedPreviewProps={
|
|
271383
271555
|
Object {
|
|
271556
|
+
"activePreviewTab": "rcs",
|
|
271384
271557
|
"channel": "WHATSAPP",
|
|
271385
271558
|
"content": Object {
|
|
271386
271559
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -271439,8 +271612,11 @@ undefined",
|
|
|
271439
271612
|
"isUpdating": false,
|
|
271440
271613
|
"lastModified": undefined,
|
|
271441
271614
|
"onDeviceChange": [Function],
|
|
271615
|
+
"onPreviewTabChange": [Function],
|
|
271442
271616
|
"selectedCustomer": null,
|
|
271443
271617
|
"showDeviceToggle": true,
|
|
271618
|
+
"smsFallbackContent": null,
|
|
271619
|
+
"smsFallbackResolvedText": undefined,
|
|
271444
271620
|
"updatedByName": undefined,
|
|
271445
271621
|
}
|
|
271446
271622
|
}
|
|
@@ -277554,6 +277730,7 @@ T&C'
|
|
|
277554
277730
|
className="ant-col ant-col-10 cap-column-v2"
|
|
277555
277731
|
>
|
|
277556
277732
|
<UnifiedPreview
|
|
277733
|
+
activePreviewTab="rcs"
|
|
277557
277734
|
channel="WHATSAPP"
|
|
277558
277735
|
content={
|
|
277559
277736
|
Object {
|
|
@@ -279426,9 +279603,11 @@ T&C'",
|
|
|
279426
279603
|
key=".0"
|
|
279427
279604
|
lastModified={null}
|
|
279428
279605
|
onDeviceChange={[Function]}
|
|
279606
|
+
onPreviewTabChange={[Function]}
|
|
279429
279607
|
selectedCustomer={null}
|
|
279430
279608
|
showDeviceToggle={false}
|
|
279431
279609
|
showHeader={false}
|
|
279610
|
+
smsFallbackContent={null}
|
|
279432
279611
|
updatedByName={null}
|
|
279433
279612
|
>
|
|
279434
279613
|
<CapRow
|
|
@@ -284250,6 +284429,7 @@ new message content.",
|
|
|
284250
284429
|
}
|
|
284251
284430
|
}
|
|
284252
284431
|
show={false}
|
|
284432
|
+
smsFallbackContent={null}
|
|
284253
284433
|
testCustomers={Immutable.List []}
|
|
284254
284434
|
testGroups={Immutable.List []}
|
|
284255
284435
|
updatePreviewError={null}
|
|
@@ -286621,6 +286801,7 @@ new message content.",
|
|
|
286621
286801
|
}
|
|
286622
286802
|
}
|
|
286623
286803
|
show={false}
|
|
286804
|
+
smsFallbackContent={null}
|
|
286624
286805
|
templateLayoutType={null}
|
|
286625
286806
|
testCustomers={Immutable.List []}
|
|
286626
286807
|
testGroups={Immutable.List []}
|
|
@@ -286716,6 +286897,7 @@ T&C'",
|
|
|
286716
286897
|
formatMessage={[Function]}
|
|
286717
286898
|
handleSendTestMessage={[Function]}
|
|
286718
286899
|
handleTestEntitiesChange={[Function]}
|
|
286900
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
286719
286901
|
isFetchingTestCustomers={false}
|
|
286720
286902
|
isFetchingTestGroups={false}
|
|
286721
286903
|
isLoadingSenderDetails={false}
|
|
@@ -286725,7 +286907,13 @@ T&C'",
|
|
|
286725
286907
|
renderAddTestCustomerButton={[Function]}
|
|
286726
286908
|
searchValue=""
|
|
286727
286909
|
selectedTestEntities={Array []}
|
|
286728
|
-
|
|
286910
|
+
senderDetailsByChannel={
|
|
286911
|
+
Object {
|
|
286912
|
+
"EMAIL": Array [],
|
|
286913
|
+
"SMS": Array [],
|
|
286914
|
+
"WHATSAPP": Array [],
|
|
286915
|
+
}
|
|
286916
|
+
}
|
|
286729
286917
|
setSearchValue={[Function]}
|
|
286730
286918
|
smsTraiDltEnabled={false}
|
|
286731
286919
|
testEntitiesTreeData={
|
|
@@ -286757,6 +286945,7 @@ T&C'",
|
|
|
286757
286945
|
<PreviewSection
|
|
286758
286946
|
unifiedPreviewProps={
|
|
286759
286947
|
Object {
|
|
286948
|
+
"activePreviewTab": "rcs",
|
|
286760
286949
|
"channel": "WHATSAPP",
|
|
286761
286950
|
"content": Object {
|
|
286762
286951
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -286793,8 +286982,11 @@ T&C'",
|
|
|
286793
286982
|
"isUpdating": false,
|
|
286794
286983
|
"lastModified": undefined,
|
|
286795
286984
|
"onDeviceChange": [Function],
|
|
286985
|
+
"onPreviewTabChange": [Function],
|
|
286796
286986
|
"selectedCustomer": null,
|
|
286797
286987
|
"showDeviceToggle": true,
|
|
286988
|
+
"smsFallbackContent": null,
|
|
286989
|
+
"smsFallbackResolvedText": undefined,
|
|
286798
286990
|
"updatedByName": undefined,
|
|
286799
286991
|
}
|
|
286800
286992
|
}
|
|
@@ -293507,6 +293699,7 @@ new message content.",
|
|
|
293507
293699
|
className="ant-col ant-col-10 cap-column-v2"
|
|
293508
293700
|
>
|
|
293509
293701
|
<UnifiedPreview
|
|
293702
|
+
activePreviewTab="rcs"
|
|
293510
293703
|
channel="WHATSAPP"
|
|
293511
293704
|
content={
|
|
293512
293705
|
Object {
|
|
@@ -296233,9 +296426,11 @@ new message content.",
|
|
|
296233
296426
|
key=".0"
|
|
296234
296427
|
lastModified={null}
|
|
296235
296428
|
onDeviceChange={[Function]}
|
|
296429
|
+
onPreviewTabChange={[Function]}
|
|
296236
296430
|
selectedCustomer={null}
|
|
296237
296431
|
showDeviceToggle={false}
|
|
296238
296432
|
showHeader={false}
|
|
296433
|
+
smsFallbackContent={null}
|
|
296239
296434
|
updatedByName={null}
|
|
296240
296435
|
>
|
|
296241
296436
|
<CapRow
|
|
@@ -301881,6 +302076,7 @@ new message content.",
|
|
|
301881
302076
|
}
|
|
301882
302077
|
}
|
|
301883
302078
|
show={false}
|
|
302079
|
+
smsFallbackContent={null}
|
|
301884
302080
|
testCustomers={Immutable.List []}
|
|
301885
302081
|
testGroups={Immutable.List []}
|
|
301886
302082
|
updatePreviewError={null}
|
|
@@ -304248,6 +304444,7 @@ new message content.",
|
|
|
304248
304444
|
}
|
|
304249
304445
|
}
|
|
304250
304446
|
show={false}
|
|
304447
|
+
smsFallbackContent={null}
|
|
304251
304448
|
templateLayoutType={null}
|
|
304252
304449
|
testCustomers={Immutable.List []}
|
|
304253
304450
|
testGroups={Immutable.List []}
|
|
@@ -304341,6 +304538,7 @@ new message content.",
|
|
|
304341
304538
|
formatMessage={[Function]}
|
|
304342
304539
|
handleSendTestMessage={[Function]}
|
|
304343
304540
|
handleTestEntitiesChange={[Function]}
|
|
304541
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
304344
304542
|
isFetchingTestCustomers={false}
|
|
304345
304543
|
isFetchingTestGroups={false}
|
|
304346
304544
|
isLoadingSenderDetails={false}
|
|
@@ -304350,7 +304548,13 @@ new message content.",
|
|
|
304350
304548
|
renderAddTestCustomerButton={[Function]}
|
|
304351
304549
|
searchValue=""
|
|
304352
304550
|
selectedTestEntities={Array []}
|
|
304353
|
-
|
|
304551
|
+
senderDetailsByChannel={
|
|
304552
|
+
Object {
|
|
304553
|
+
"EMAIL": Array [],
|
|
304554
|
+
"SMS": Array [],
|
|
304555
|
+
"WHATSAPP": Array [],
|
|
304556
|
+
}
|
|
304557
|
+
}
|
|
304354
304558
|
setSearchValue={[Function]}
|
|
304355
304559
|
smsTraiDltEnabled={false}
|
|
304356
304560
|
testEntitiesTreeData={
|
|
@@ -304382,6 +304586,7 @@ new message content.",
|
|
|
304382
304586
|
<PreviewSection
|
|
304383
304587
|
unifiedPreviewProps={
|
|
304384
304588
|
Object {
|
|
304589
|
+
"activePreviewTab": "rcs",
|
|
304385
304590
|
"channel": "WHATSAPP",
|
|
304386
304591
|
"content": Object {
|
|
304387
304592
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -304416,8 +304621,11 @@ new message content.",
|
|
|
304416
304621
|
"isUpdating": false,
|
|
304417
304622
|
"lastModified": undefined,
|
|
304418
304623
|
"onDeviceChange": [Function],
|
|
304624
|
+
"onPreviewTabChange": [Function],
|
|
304419
304625
|
"selectedCustomer": null,
|
|
304420
304626
|
"showDeviceToggle": true,
|
|
304627
|
+
"smsFallbackContent": null,
|
|
304628
|
+
"smsFallbackResolvedText": undefined,
|
|
304421
304629
|
"updatedByName": undefined,
|
|
304422
304630
|
}
|
|
304423
304631
|
}
|
|
@@ -315915,6 +316123,7 @@ new message content.",
|
|
|
315915
316123
|
className="ant-col ant-col-10 cap-column-v2"
|
|
315916
316124
|
>
|
|
315917
316125
|
<UnifiedPreview
|
|
316126
|
+
activePreviewTab="rcs"
|
|
315918
316127
|
channel="WHATSAPP"
|
|
315919
316128
|
content={
|
|
315920
316129
|
Object {
|
|
@@ -319877,9 +320086,11 @@ undefined",
|
|
|
319877
320086
|
key=".0"
|
|
319878
320087
|
lastModified={null}
|
|
319879
320088
|
onDeviceChange={[Function]}
|
|
320089
|
+
onPreviewTabChange={[Function]}
|
|
319880
320090
|
selectedCustomer={null}
|
|
319881
320091
|
showDeviceToggle={false}
|
|
319882
320092
|
showHeader={false}
|
|
320093
|
+
smsFallbackContent={null}
|
|
319883
320094
|
updatedByName={null}
|
|
319884
320095
|
>
|
|
319885
320096
|
<CapRow
|
|
@@ -327296,6 +327507,7 @@ new message content.",
|
|
|
327296
327507
|
}
|
|
327297
327508
|
}
|
|
327298
327509
|
show={false}
|
|
327510
|
+
smsFallbackContent={null}
|
|
327299
327511
|
testCustomers={Immutable.List []}
|
|
327300
327512
|
testGroups={Immutable.List []}
|
|
327301
327513
|
updatePreviewError={null}
|
|
@@ -329711,6 +329923,7 @@ new message content.",
|
|
|
329711
329923
|
}
|
|
329712
329924
|
}
|
|
329713
329925
|
show={false}
|
|
329926
|
+
smsFallbackContent={null}
|
|
329714
329927
|
templateLayoutType={null}
|
|
329715
329928
|
testCustomers={Immutable.List []}
|
|
329716
329929
|
testGroups={Immutable.List []}
|
|
@@ -329828,6 +330041,7 @@ undefined",
|
|
|
329828
330041
|
formatMessage={[Function]}
|
|
329829
330042
|
handleSendTestMessage={[Function]}
|
|
329830
330043
|
handleTestEntitiesChange={[Function]}
|
|
330044
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
329831
330045
|
isFetchingTestCustomers={false}
|
|
329832
330046
|
isFetchingTestGroups={false}
|
|
329833
330047
|
isLoadingSenderDetails={false}
|
|
@@ -329837,7 +330051,13 @@ undefined",
|
|
|
329837
330051
|
renderAddTestCustomerButton={[Function]}
|
|
329838
330052
|
searchValue=""
|
|
329839
330053
|
selectedTestEntities={Array []}
|
|
329840
|
-
|
|
330054
|
+
senderDetailsByChannel={
|
|
330055
|
+
Object {
|
|
330056
|
+
"EMAIL": Array [],
|
|
330057
|
+
"SMS": Array [],
|
|
330058
|
+
"WHATSAPP": Array [],
|
|
330059
|
+
}
|
|
330060
|
+
}
|
|
329841
330061
|
setSearchValue={[Function]}
|
|
329842
330062
|
smsTraiDltEnabled={false}
|
|
329843
330063
|
testEntitiesTreeData={
|
|
@@ -329869,6 +330089,7 @@ undefined",
|
|
|
329869
330089
|
<PreviewSection
|
|
329870
330090
|
unifiedPreviewProps={
|
|
329871
330091
|
Object {
|
|
330092
|
+
"activePreviewTab": "rcs",
|
|
329872
330093
|
"channel": "WHATSAPP",
|
|
329873
330094
|
"content": Object {
|
|
329874
330095
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -329927,8 +330148,11 @@ undefined",
|
|
|
329927
330148
|
"isUpdating": false,
|
|
329928
330149
|
"lastModified": undefined,
|
|
329929
330150
|
"onDeviceChange": [Function],
|
|
330151
|
+
"onPreviewTabChange": [Function],
|
|
329930
330152
|
"selectedCustomer": null,
|
|
329931
330153
|
"showDeviceToggle": true,
|
|
330154
|
+
"smsFallbackContent": null,
|
|
330155
|
+
"smsFallbackResolvedText": undefined,
|
|
329932
330156
|
"updatedByName": undefined,
|
|
329933
330157
|
}
|
|
329934
330158
|
}
|
|
@@ -342452,6 +342676,7 @@ new message content.",
|
|
|
342452
342676
|
className="ant-col ant-col-10 cap-column-v2"
|
|
342453
342677
|
>
|
|
342454
342678
|
<UnifiedPreview
|
|
342679
|
+
activePreviewTab="rcs"
|
|
342455
342680
|
channel="WHATSAPP"
|
|
342456
342681
|
content={
|
|
342457
342682
|
Object {
|
|
@@ -347578,9 +347803,11 @@ undefined",
|
|
|
347578
347803
|
key=".0"
|
|
347579
347804
|
lastModified={null}
|
|
347580
347805
|
onDeviceChange={[Function]}
|
|
347806
|
+
onPreviewTabChange={[Function]}
|
|
347581
347807
|
selectedCustomer={null}
|
|
347582
347808
|
showDeviceToggle={false}
|
|
347583
347809
|
showHeader={false}
|
|
347810
|
+
smsFallbackContent={null}
|
|
347584
347811
|
updatedByName={null}
|
|
347585
347812
|
>
|
|
347586
347813
|
<CapRow
|
|
@@ -356717,6 +356944,7 @@ new message content.",
|
|
|
356717
356944
|
}
|
|
356718
356945
|
}
|
|
356719
356946
|
show={false}
|
|
356947
|
+
smsFallbackContent={null}
|
|
356720
356948
|
testCustomers={Immutable.List []}
|
|
356721
356949
|
testGroups={Immutable.List []}
|
|
356722
356950
|
updatePreviewError={null}
|
|
@@ -359128,6 +359356,7 @@ new message content.",
|
|
|
359128
359356
|
}
|
|
359129
359357
|
}
|
|
359130
359358
|
show={false}
|
|
359359
|
+
smsFallbackContent={null}
|
|
359131
359360
|
templateLayoutType={null}
|
|
359132
359361
|
testCustomers={Immutable.List []}
|
|
359133
359362
|
testGroups={Immutable.List []}
|
|
@@ -359243,6 +359472,7 @@ undefined",
|
|
|
359243
359472
|
formatMessage={[Function]}
|
|
359244
359473
|
handleSendTestMessage={[Function]}
|
|
359245
359474
|
handleTestEntitiesChange={[Function]}
|
|
359475
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
359246
359476
|
isFetchingTestCustomers={false}
|
|
359247
359477
|
isFetchingTestGroups={false}
|
|
359248
359478
|
isLoadingSenderDetails={false}
|
|
@@ -359252,7 +359482,13 @@ undefined",
|
|
|
359252
359482
|
renderAddTestCustomerButton={[Function]}
|
|
359253
359483
|
searchValue=""
|
|
359254
359484
|
selectedTestEntities={Array []}
|
|
359255
|
-
|
|
359485
|
+
senderDetailsByChannel={
|
|
359486
|
+
Object {
|
|
359487
|
+
"EMAIL": Array [],
|
|
359488
|
+
"SMS": Array [],
|
|
359489
|
+
"WHATSAPP": Array [],
|
|
359490
|
+
}
|
|
359491
|
+
}
|
|
359256
359492
|
setSearchValue={[Function]}
|
|
359257
359493
|
smsTraiDltEnabled={false}
|
|
359258
359494
|
testEntitiesTreeData={
|
|
@@ -359284,6 +359520,7 @@ undefined",
|
|
|
359284
359520
|
<PreviewSection
|
|
359285
359521
|
unifiedPreviewProps={
|
|
359286
359522
|
Object {
|
|
359523
|
+
"activePreviewTab": "rcs",
|
|
359287
359524
|
"channel": "WHATSAPP",
|
|
359288
359525
|
"content": Object {
|
|
359289
359526
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -359340,8 +359577,11 @@ undefined",
|
|
|
359340
359577
|
"isUpdating": false,
|
|
359341
359578
|
"lastModified": undefined,
|
|
359342
359579
|
"onDeviceChange": [Function],
|
|
359580
|
+
"onPreviewTabChange": [Function],
|
|
359343
359581
|
"selectedCustomer": null,
|
|
359344
359582
|
"showDeviceToggle": true,
|
|
359583
|
+
"smsFallbackContent": null,
|
|
359584
|
+
"smsFallbackResolvedText": undefined,
|
|
359345
359585
|
"updatedByName": undefined,
|
|
359346
359586
|
}
|
|
359347
359587
|
}
|
|
@@ -367649,6 +367889,7 @@ new message content.",
|
|
|
367649
367889
|
className="ant-col ant-col-10 cap-column-v2"
|
|
367650
367890
|
>
|
|
367651
367891
|
<UnifiedPreview
|
|
367892
|
+
activePreviewTab="rcs"
|
|
367652
367893
|
channel="WHATSAPP"
|
|
367653
367894
|
content={
|
|
367654
367895
|
Object {
|
|
@@ -368798,9 +369039,11 @@ new message content.",
|
|
|
368798
369039
|
key=".0"
|
|
368799
369040
|
lastModified={null}
|
|
368800
369041
|
onDeviceChange={[Function]}
|
|
369042
|
+
onPreviewTabChange={[Function]}
|
|
368801
369043
|
selectedCustomer={null}
|
|
368802
369044
|
showDeviceToggle={false}
|
|
368803
369045
|
showHeader={false}
|
|
369046
|
+
smsFallbackContent={null}
|
|
368804
369047
|
updatedByName={null}
|
|
368805
369048
|
>
|
|
368806
369049
|
<CapRow
|
|
@@ -373741,6 +373984,7 @@ new message content.",
|
|
|
373741
373984
|
}
|
|
373742
373985
|
}
|
|
373743
373986
|
show={false}
|
|
373987
|
+
smsFallbackContent={null}
|
|
373744
373988
|
testCustomers={Immutable.List []}
|
|
373745
373989
|
testGroups={Immutable.List []}
|
|
373746
373990
|
updatePreviewError={null}
|
|
@@ -376130,6 +376374,7 @@ new message content.",
|
|
|
376130
376374
|
}
|
|
376131
376375
|
}
|
|
376132
376376
|
show={false}
|
|
376377
|
+
smsFallbackContent={null}
|
|
376133
376378
|
templateLayoutType={null}
|
|
376134
376379
|
testCustomers={Immutable.List []}
|
|
376135
376380
|
testGroups={Immutable.List []}
|
|
@@ -376234,6 +376479,7 @@ new message content.",
|
|
|
376234
376479
|
formatMessage={[Function]}
|
|
376235
376480
|
handleSendTestMessage={[Function]}
|
|
376236
376481
|
handleTestEntitiesChange={[Function]}
|
|
376482
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
376237
376483
|
isFetchingTestCustomers={false}
|
|
376238
376484
|
isFetchingTestGroups={false}
|
|
376239
376485
|
isLoadingSenderDetails={false}
|
|
@@ -376243,7 +376489,13 @@ new message content.",
|
|
|
376243
376489
|
renderAddTestCustomerButton={[Function]}
|
|
376244
376490
|
searchValue=""
|
|
376245
376491
|
selectedTestEntities={Array []}
|
|
376246
|
-
|
|
376492
|
+
senderDetailsByChannel={
|
|
376493
|
+
Object {
|
|
376494
|
+
"EMAIL": Array [],
|
|
376495
|
+
"SMS": Array [],
|
|
376496
|
+
"WHATSAPP": Array [],
|
|
376497
|
+
}
|
|
376498
|
+
}
|
|
376247
376499
|
setSearchValue={[Function]}
|
|
376248
376500
|
smsTraiDltEnabled={false}
|
|
376249
376501
|
testEntitiesTreeData={
|
|
@@ -376275,6 +376527,7 @@ new message content.",
|
|
|
376275
376527
|
<PreviewSection
|
|
376276
376528
|
unifiedPreviewProps={
|
|
376277
376529
|
Object {
|
|
376530
|
+
"activePreviewTab": "rcs",
|
|
376278
376531
|
"channel": "WHATSAPP",
|
|
376279
376532
|
"content": Object {
|
|
376280
376533
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -376320,8 +376573,11 @@ new message content.",
|
|
|
376320
376573
|
"isUpdating": false,
|
|
376321
376574
|
"lastModified": undefined,
|
|
376322
376575
|
"onDeviceChange": [Function],
|
|
376576
|
+
"onPreviewTabChange": [Function],
|
|
376323
376577
|
"selectedCustomer": null,
|
|
376324
376578
|
"showDeviceToggle": true,
|
|
376579
|
+
"smsFallbackContent": null,
|
|
376580
|
+
"smsFallbackResolvedText": undefined,
|
|
376325
376581
|
"updatedByName": undefined,
|
|
376326
376582
|
}
|
|
376327
376583
|
}
|
|
@@ -390157,6 +390413,7 @@ new message content.",
|
|
|
390157
390413
|
className="ant-col ant-col-10 cap-column-v2"
|
|
390158
390414
|
>
|
|
390159
390415
|
<UnifiedPreview
|
|
390416
|
+
activePreviewTab="rcs"
|
|
390160
390417
|
channel="WHATSAPP"
|
|
390161
390418
|
content={
|
|
390162
390419
|
Object {
|
|
@@ -390852,9 +391109,11 @@ new message content.",
|
|
|
390852
391109
|
key=".0"
|
|
390853
391110
|
lastModified={null}
|
|
390854
391111
|
onDeviceChange={[Function]}
|
|
391112
|
+
onPreviewTabChange={[Function]}
|
|
390855
391113
|
selectedCustomer={null}
|
|
390856
391114
|
showDeviceToggle={false}
|
|
390857
391115
|
showHeader={false}
|
|
391116
|
+
smsFallbackContent={null}
|
|
390858
391117
|
updatedByName={null}
|
|
390859
391118
|
>
|
|
390860
391119
|
<CapRow
|
|
@@ -395638,6 +395897,7 @@ new message content.",
|
|
|
395638
395897
|
}
|
|
395639
395898
|
}
|
|
395640
395899
|
show={false}
|
|
395900
|
+
smsFallbackContent={null}
|
|
395641
395901
|
testCustomers={Immutable.List []}
|
|
395642
395902
|
testGroups={Immutable.List []}
|
|
395643
395903
|
updatePreviewError={null}
|
|
@@ -398005,6 +398265,7 @@ new message content.",
|
|
|
398005
398265
|
}
|
|
398006
398266
|
}
|
|
398007
398267
|
show={false}
|
|
398268
|
+
smsFallbackContent={null}
|
|
398008
398269
|
templateLayoutType={null}
|
|
398009
398270
|
testCustomers={Immutable.List []}
|
|
398010
398271
|
testGroups={Immutable.List []}
|
|
@@ -398098,6 +398359,7 @@ new message content.",
|
|
|
398098
398359
|
formatMessage={[Function]}
|
|
398099
398360
|
handleSendTestMessage={[Function]}
|
|
398100
398361
|
handleTestEntitiesChange={[Function]}
|
|
398362
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
398101
398363
|
isFetchingTestCustomers={false}
|
|
398102
398364
|
isFetchingTestGroups={false}
|
|
398103
398365
|
isLoadingSenderDetails={false}
|
|
@@ -398107,7 +398369,13 @@ new message content.",
|
|
|
398107
398369
|
renderAddTestCustomerButton={[Function]}
|
|
398108
398370
|
searchValue=""
|
|
398109
398371
|
selectedTestEntities={Array []}
|
|
398110
|
-
|
|
398372
|
+
senderDetailsByChannel={
|
|
398373
|
+
Object {
|
|
398374
|
+
"EMAIL": Array [],
|
|
398375
|
+
"SMS": Array [],
|
|
398376
|
+
"WHATSAPP": Array [],
|
|
398377
|
+
}
|
|
398378
|
+
}
|
|
398111
398379
|
setSearchValue={[Function]}
|
|
398112
398380
|
smsTraiDltEnabled={false}
|
|
398113
398381
|
testEntitiesTreeData={
|
|
@@ -398139,6 +398407,7 @@ new message content.",
|
|
|
398139
398407
|
<PreviewSection
|
|
398140
398408
|
unifiedPreviewProps={
|
|
398141
398409
|
Object {
|
|
398410
|
+
"activePreviewTab": "rcs",
|
|
398142
398411
|
"channel": "WHATSAPP",
|
|
398143
398412
|
"content": Object {
|
|
398144
398413
|
"_id": null,
|
|
@@ -398173,8 +398442,11 @@ new message content.",
|
|
|
398173
398442
|
"isUpdating": false,
|
|
398174
398443
|
"lastModified": undefined,
|
|
398175
398444
|
"onDeviceChange": [Function],
|
|
398445
|
+
"onPreviewTabChange": [Function],
|
|
398176
398446
|
"selectedCustomer": null,
|
|
398177
398447
|
"showDeviceToggle": true,
|
|
398448
|
+
"smsFallbackContent": null,
|
|
398449
|
+
"smsFallbackResolvedText": undefined,
|
|
398178
398450
|
"updatedByName": undefined,
|
|
398179
398451
|
}
|
|
398180
398452
|
}
|
|
@@ -414602,6 +414874,7 @@ new message content.",
|
|
|
414602
414874
|
className="ant-col ant-col-10 cap-column-v2"
|
|
414603
414875
|
>
|
|
414604
414876
|
<UnifiedPreview
|
|
414877
|
+
activePreviewTab="rcs"
|
|
414605
414878
|
channel="WHATSAPP"
|
|
414606
414879
|
content={
|
|
414607
414880
|
Object {
|
|
@@ -416067,9 +416340,11 @@ new message content.",
|
|
|
416067
416340
|
key=".0"
|
|
416068
416341
|
lastModified={null}
|
|
416069
416342
|
onDeviceChange={[Function]}
|
|
416343
|
+
onPreviewTabChange={[Function]}
|
|
416070
416344
|
selectedCustomer={null}
|
|
416071
416345
|
showDeviceToggle={false}
|
|
416072
416346
|
showHeader={false}
|
|
416347
|
+
smsFallbackContent={null}
|
|
416073
416348
|
updatedByName={null}
|
|
416074
416349
|
>
|
|
416075
416350
|
<CapRow
|
|
@@ -421623,6 +421898,7 @@ new message content.",
|
|
|
421623
421898
|
}
|
|
421624
421899
|
}
|
|
421625
421900
|
show={false}
|
|
421901
|
+
smsFallbackContent={null}
|
|
421626
421902
|
testCustomers={Immutable.List []}
|
|
421627
421903
|
testGroups={Immutable.List []}
|
|
421628
421904
|
updatePreviewError={null}
|
|
@@ -423990,6 +424266,7 @@ new message content.",
|
|
|
423990
424266
|
}
|
|
423991
424267
|
}
|
|
423992
424268
|
show={false}
|
|
424269
|
+
smsFallbackContent={null}
|
|
423993
424270
|
templateLayoutType={null}
|
|
423994
424271
|
testCustomers={Immutable.List []}
|
|
423995
424272
|
testGroups={Immutable.List []}
|
|
@@ -424083,6 +424360,7 @@ new message content.",
|
|
|
424083
424360
|
formatMessage={[Function]}
|
|
424084
424361
|
handleSendTestMessage={[Function]}
|
|
424085
424362
|
handleTestEntitiesChange={[Function]}
|
|
424363
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
424086
424364
|
isFetchingTestCustomers={false}
|
|
424087
424365
|
isFetchingTestGroups={false}
|
|
424088
424366
|
isLoadingSenderDetails={false}
|
|
@@ -424092,7 +424370,13 @@ new message content.",
|
|
|
424092
424370
|
renderAddTestCustomerButton={[Function]}
|
|
424093
424371
|
searchValue=""
|
|
424094
424372
|
selectedTestEntities={Array []}
|
|
424095
|
-
|
|
424373
|
+
senderDetailsByChannel={
|
|
424374
|
+
Object {
|
|
424375
|
+
"EMAIL": Array [],
|
|
424376
|
+
"SMS": Array [],
|
|
424377
|
+
"WHATSAPP": Array [],
|
|
424378
|
+
}
|
|
424379
|
+
}
|
|
424096
424380
|
setSearchValue={[Function]}
|
|
424097
424381
|
smsTraiDltEnabled={false}
|
|
424098
424382
|
testEntitiesTreeData={
|
|
@@ -424124,6 +424408,7 @@ new message content.",
|
|
|
424124
424408
|
<PreviewSection
|
|
424125
424409
|
unifiedPreviewProps={
|
|
424126
424410
|
Object {
|
|
424411
|
+
"activePreviewTab": "rcs",
|
|
424127
424412
|
"channel": "WHATSAPP",
|
|
424128
424413
|
"content": Object {
|
|
424129
424414
|
"_id": null,
|
|
@@ -424158,8 +424443,11 @@ new message content.",
|
|
|
424158
424443
|
"isUpdating": false,
|
|
424159
424444
|
"lastModified": undefined,
|
|
424160
424445
|
"onDeviceChange": [Function],
|
|
424446
|
+
"onPreviewTabChange": [Function],
|
|
424161
424447
|
"selectedCustomer": null,
|
|
424162
424448
|
"showDeviceToggle": true,
|
|
424449
|
+
"smsFallbackContent": null,
|
|
424450
|
+
"smsFallbackResolvedText": undefined,
|
|
424163
424451
|
"updatedByName": undefined,
|
|
424164
424452
|
}
|
|
424165
424453
|
}
|
|
@@ -437995,6 +438283,7 @@ new message content.",
|
|
|
437995
438283
|
className="ant-col ant-col-10 cap-column-v2"
|
|
437996
438284
|
>
|
|
437997
438285
|
<UnifiedPreview
|
|
438286
|
+
activePreviewTab="rcs"
|
|
437998
438287
|
channel="WHATSAPP"
|
|
437999
438288
|
content={
|
|
438000
438289
|
Object {
|
|
@@ -438690,9 +438979,11 @@ new message content.",
|
|
|
438690
438979
|
key=".0"
|
|
438691
438980
|
lastModified={null}
|
|
438692
438981
|
onDeviceChange={[Function]}
|
|
438982
|
+
onPreviewTabChange={[Function]}
|
|
438693
438983
|
selectedCustomer={null}
|
|
438694
438984
|
showDeviceToggle={false}
|
|
438695
438985
|
showHeader={false}
|
|
438986
|
+
smsFallbackContent={null}
|
|
438696
438987
|
updatedByName={null}
|
|
438697
438988
|
>
|
|
438698
438989
|
<CapRow
|
|
@@ -443476,6 +443767,7 @@ new message content.",
|
|
|
443476
443767
|
}
|
|
443477
443768
|
}
|
|
443478
443769
|
show={false}
|
|
443770
|
+
smsFallbackContent={null}
|
|
443479
443771
|
testCustomers={Immutable.List []}
|
|
443480
443772
|
testGroups={Immutable.List []}
|
|
443481
443773
|
updatePreviewError={null}
|
|
@@ -445843,6 +446135,7 @@ new message content.",
|
|
|
445843
446135
|
}
|
|
445844
446136
|
}
|
|
445845
446137
|
show={false}
|
|
446138
|
+
smsFallbackContent={null}
|
|
445846
446139
|
templateLayoutType={null}
|
|
445847
446140
|
testCustomers={Immutable.List []}
|
|
445848
446141
|
testGroups={Immutable.List []}
|
|
@@ -445936,6 +446229,7 @@ new message content.",
|
|
|
445936
446229
|
formatMessage={[Function]}
|
|
445937
446230
|
handleSendTestMessage={[Function]}
|
|
445938
446231
|
handleTestEntitiesChange={[Function]}
|
|
446232
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
445939
446233
|
isFetchingTestCustomers={false}
|
|
445940
446234
|
isFetchingTestGroups={false}
|
|
445941
446235
|
isLoadingSenderDetails={false}
|
|
@@ -445945,7 +446239,13 @@ new message content.",
|
|
|
445945
446239
|
renderAddTestCustomerButton={[Function]}
|
|
445946
446240
|
searchValue=""
|
|
445947
446241
|
selectedTestEntities={Array []}
|
|
445948
|
-
|
|
446242
|
+
senderDetailsByChannel={
|
|
446243
|
+
Object {
|
|
446244
|
+
"EMAIL": Array [],
|
|
446245
|
+
"SMS": Array [],
|
|
446246
|
+
"WHATSAPP": Array [],
|
|
446247
|
+
}
|
|
446248
|
+
}
|
|
445949
446249
|
setSearchValue={[Function]}
|
|
445950
446250
|
smsTraiDltEnabled={false}
|
|
445951
446251
|
testEntitiesTreeData={
|
|
@@ -445977,6 +446277,7 @@ new message content.",
|
|
|
445977
446277
|
<PreviewSection
|
|
445978
446278
|
unifiedPreviewProps={
|
|
445979
446279
|
Object {
|
|
446280
|
+
"activePreviewTab": "rcs",
|
|
445980
446281
|
"channel": "WHATSAPP",
|
|
445981
446282
|
"content": Object {
|
|
445982
446283
|
"_id": null,
|
|
@@ -446011,8 +446312,11 @@ new message content.",
|
|
|
446011
446312
|
"isUpdating": false,
|
|
446012
446313
|
"lastModified": undefined,
|
|
446013
446314
|
"onDeviceChange": [Function],
|
|
446315
|
+
"onPreviewTabChange": [Function],
|
|
446014
446316
|
"selectedCustomer": null,
|
|
446015
446317
|
"showDeviceToggle": true,
|
|
446318
|
+
"smsFallbackContent": null,
|
|
446319
|
+
"smsFallbackResolvedText": undefined,
|
|
446016
446320
|
"updatedByName": undefined,
|
|
446017
446321
|
}
|
|
446018
446322
|
}
|
|
@@ -460134,6 +460438,7 @@ new message content.",
|
|
|
460134
460438
|
className="ant-col ant-col-10 cap-column-v2"
|
|
460135
460439
|
>
|
|
460136
460440
|
<UnifiedPreview
|
|
460441
|
+
activePreviewTab="rcs"
|
|
460137
460442
|
channel="WHATSAPP"
|
|
460138
460443
|
content={
|
|
460139
460444
|
Object {
|
|
@@ -461126,9 +461431,11 @@ new message content.",
|
|
|
461126
461431
|
key=".0"
|
|
461127
461432
|
lastModified={null}
|
|
461128
461433
|
onDeviceChange={[Function]}
|
|
461434
|
+
onPreviewTabChange={[Function]}
|
|
461129
461435
|
selectedCustomer={null}
|
|
461130
461436
|
showDeviceToggle={false}
|
|
461131
461437
|
showHeader={false}
|
|
461438
|
+
smsFallbackContent={null}
|
|
461132
461439
|
updatedByName={null}
|
|
461133
461440
|
>
|
|
461134
461441
|
<CapRow
|
|
@@ -466209,6 +466516,7 @@ new message content.",
|
|
|
466209
466516
|
}
|
|
466210
466517
|
}
|
|
466211
466518
|
show={false}
|
|
466519
|
+
smsFallbackContent={null}
|
|
466212
466520
|
testCustomers={Immutable.List []}
|
|
466213
466521
|
testGroups={Immutable.List []}
|
|
466214
466522
|
updatePreviewError={null}
|
|
@@ -468576,6 +468884,7 @@ new message content.",
|
|
|
468576
468884
|
}
|
|
468577
468885
|
}
|
|
468578
468886
|
show={false}
|
|
468887
|
+
smsFallbackContent={null}
|
|
468579
468888
|
templateLayoutType={null}
|
|
468580
468889
|
testCustomers={Immutable.List []}
|
|
468581
468890
|
testGroups={Immutable.List []}
|
|
@@ -468669,6 +468978,7 @@ new message content.",
|
|
|
468669
468978
|
formatMessage={[Function]}
|
|
468670
468979
|
handleSendTestMessage={[Function]}
|
|
468671
468980
|
handleTestEntitiesChange={[Function]}
|
|
468981
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
468672
468982
|
isFetchingTestCustomers={false}
|
|
468673
468983
|
isFetchingTestGroups={false}
|
|
468674
468984
|
isLoadingSenderDetails={false}
|
|
@@ -468678,7 +468988,13 @@ new message content.",
|
|
|
468678
468988
|
renderAddTestCustomerButton={[Function]}
|
|
468679
468989
|
searchValue=""
|
|
468680
468990
|
selectedTestEntities={Array []}
|
|
468681
|
-
|
|
468991
|
+
senderDetailsByChannel={
|
|
468992
|
+
Object {
|
|
468993
|
+
"EMAIL": Array [],
|
|
468994
|
+
"SMS": Array [],
|
|
468995
|
+
"WHATSAPP": Array [],
|
|
468996
|
+
}
|
|
468997
|
+
}
|
|
468682
468998
|
setSearchValue={[Function]}
|
|
468683
468999
|
smsTraiDltEnabled={false}
|
|
468684
469000
|
testEntitiesTreeData={
|
|
@@ -468710,6 +469026,7 @@ new message content.",
|
|
|
468710
469026
|
<PreviewSection
|
|
468711
469027
|
unifiedPreviewProps={
|
|
468712
469028
|
Object {
|
|
469029
|
+
"activePreviewTab": "rcs",
|
|
468713
469030
|
"channel": "WHATSAPP",
|
|
468714
469031
|
"content": Object {
|
|
468715
469032
|
"_id": null,
|
|
@@ -468744,8 +469061,11 @@ new message content.",
|
|
|
468744
469061
|
"isUpdating": false,
|
|
468745
469062
|
"lastModified": undefined,
|
|
468746
469063
|
"onDeviceChange": [Function],
|
|
469064
|
+
"onPreviewTabChange": [Function],
|
|
468747
469065
|
"selectedCustomer": null,
|
|
468748
469066
|
"showDeviceToggle": true,
|
|
469067
|
+
"smsFallbackContent": null,
|
|
469068
|
+
"smsFallbackResolvedText": undefined,
|
|
468749
469069
|
"updatedByName": undefined,
|
|
468750
469070
|
}
|
|
468751
469071
|
}
|
|
@@ -483165,6 +483485,7 @@ new message content.",
|
|
|
483165
483485
|
className="ant-col ant-col-10 cap-column-v2"
|
|
483166
483486
|
>
|
|
483167
483487
|
<UnifiedPreview
|
|
483488
|
+
activePreviewTab="rcs"
|
|
483168
483489
|
channel="WHATSAPP"
|
|
483169
483490
|
content={
|
|
483170
483491
|
Object {
|
|
@@ -484444,9 +484765,11 @@ new message content.",
|
|
|
484444
484765
|
key=".0"
|
|
484445
484766
|
lastModified={null}
|
|
484446
484767
|
onDeviceChange={[Function]}
|
|
484768
|
+
onPreviewTabChange={[Function]}
|
|
484447
484769
|
selectedCustomer={null}
|
|
484448
484770
|
showDeviceToggle={false}
|
|
484449
484771
|
showHeader={false}
|
|
484772
|
+
smsFallbackContent={null}
|
|
484450
484773
|
updatedByName={null}
|
|
484451
484774
|
>
|
|
484452
484775
|
<CapRow
|
|
@@ -489825,6 +490148,7 @@ new message content.",
|
|
|
489825
490148
|
}
|
|
489826
490149
|
}
|
|
489827
490150
|
show={false}
|
|
490151
|
+
smsFallbackContent={null}
|
|
489828
490152
|
testCustomers={Immutable.List []}
|
|
489829
490153
|
testGroups={Immutable.List []}
|
|
489830
490154
|
updatePreviewError={null}
|
|
@@ -492192,6 +492516,7 @@ new message content.",
|
|
|
492192
492516
|
}
|
|
492193
492517
|
}
|
|
492194
492518
|
show={false}
|
|
492519
|
+
smsFallbackContent={null}
|
|
492195
492520
|
templateLayoutType={null}
|
|
492196
492521
|
testCustomers={Immutable.List []}
|
|
492197
492522
|
testGroups={Immutable.List []}
|
|
@@ -492285,6 +492610,7 @@ new message content.",
|
|
|
492285
492610
|
formatMessage={[Function]}
|
|
492286
492611
|
handleSendTestMessage={[Function]}
|
|
492287
492612
|
handleTestEntitiesChange={[Function]}
|
|
492613
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
492288
492614
|
isFetchingTestCustomers={false}
|
|
492289
492615
|
isFetchingTestGroups={false}
|
|
492290
492616
|
isLoadingSenderDetails={false}
|
|
@@ -492294,7 +492620,13 @@ new message content.",
|
|
|
492294
492620
|
renderAddTestCustomerButton={[Function]}
|
|
492295
492621
|
searchValue=""
|
|
492296
492622
|
selectedTestEntities={Array []}
|
|
492297
|
-
|
|
492623
|
+
senderDetailsByChannel={
|
|
492624
|
+
Object {
|
|
492625
|
+
"EMAIL": Array [],
|
|
492626
|
+
"SMS": Array [],
|
|
492627
|
+
"WHATSAPP": Array [],
|
|
492628
|
+
}
|
|
492629
|
+
}
|
|
492298
492630
|
setSearchValue={[Function]}
|
|
492299
492631
|
smsTraiDltEnabled={false}
|
|
492300
492632
|
testEntitiesTreeData={
|
|
@@ -492326,6 +492658,7 @@ new message content.",
|
|
|
492326
492658
|
<PreviewSection
|
|
492327
492659
|
unifiedPreviewProps={
|
|
492328
492660
|
Object {
|
|
492661
|
+
"activePreviewTab": "rcs",
|
|
492329
492662
|
"channel": "WHATSAPP",
|
|
492330
492663
|
"content": Object {
|
|
492331
492664
|
"_id": null,
|
|
@@ -492360,8 +492693,11 @@ new message content.",
|
|
|
492360
492693
|
"isUpdating": false,
|
|
492361
492694
|
"lastModified": undefined,
|
|
492362
492695
|
"onDeviceChange": [Function],
|
|
492696
|
+
"onPreviewTabChange": [Function],
|
|
492363
492697
|
"selectedCustomer": null,
|
|
492364
492698
|
"showDeviceToggle": true,
|
|
492699
|
+
"smsFallbackContent": null,
|
|
492700
|
+
"smsFallbackResolvedText": undefined,
|
|
492365
492701
|
"updatedByName": undefined,
|
|
492366
492702
|
}
|
|
492367
492703
|
}
|
|
@@ -507067,6 +507403,7 @@ new message content.",
|
|
|
507067
507403
|
className="ant-col ant-col-10 cap-column-v2"
|
|
507068
507404
|
>
|
|
507069
507405
|
<UnifiedPreview
|
|
507406
|
+
activePreviewTab="rcs"
|
|
507070
507407
|
channel="WHATSAPP"
|
|
507071
507408
|
content={
|
|
507072
507409
|
Object {
|
|
@@ -508643,9 +508980,11 @@ new message content.",
|
|
|
508643
508980
|
key=".0"
|
|
508644
508981
|
lastModified={null}
|
|
508645
508982
|
onDeviceChange={[Function]}
|
|
508983
|
+
onPreviewTabChange={[Function]}
|
|
508646
508984
|
selectedCustomer={null}
|
|
508647
508985
|
showDeviceToggle={false}
|
|
508648
508986
|
showHeader={false}
|
|
508987
|
+
smsFallbackContent={null}
|
|
508649
508988
|
updatedByName={null}
|
|
508650
508989
|
>
|
|
508651
508990
|
<CapRow
|
|
@@ -514321,6 +514660,7 @@ new message content.",
|
|
|
514321
514660
|
}
|
|
514322
514661
|
}
|
|
514323
514662
|
show={false}
|
|
514663
|
+
smsFallbackContent={null}
|
|
514324
514664
|
testCustomers={Immutable.List []}
|
|
514325
514665
|
testGroups={Immutable.List []}
|
|
514326
514666
|
updatePreviewError={null}
|
|
@@ -516688,6 +517028,7 @@ new message content.",
|
|
|
516688
517028
|
}
|
|
516689
517029
|
}
|
|
516690
517030
|
show={false}
|
|
517031
|
+
smsFallbackContent={null}
|
|
516691
517032
|
templateLayoutType={null}
|
|
516692
517033
|
testCustomers={Immutable.List []}
|
|
516693
517034
|
testGroups={Immutable.List []}
|
|
@@ -516781,6 +517122,7 @@ new message content.",
|
|
|
516781
517122
|
formatMessage={[Function]}
|
|
516782
517123
|
handleSendTestMessage={[Function]}
|
|
516783
517124
|
handleTestEntitiesChange={[Function]}
|
|
517125
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
516784
517126
|
isFetchingTestCustomers={false}
|
|
516785
517127
|
isFetchingTestGroups={false}
|
|
516786
517128
|
isLoadingSenderDetails={false}
|
|
@@ -516790,7 +517132,13 @@ new message content.",
|
|
|
516790
517132
|
renderAddTestCustomerButton={[Function]}
|
|
516791
517133
|
searchValue=""
|
|
516792
517134
|
selectedTestEntities={Array []}
|
|
516793
|
-
|
|
517135
|
+
senderDetailsByChannel={
|
|
517136
|
+
Object {
|
|
517137
|
+
"EMAIL": Array [],
|
|
517138
|
+
"SMS": Array [],
|
|
517139
|
+
"WHATSAPP": Array [],
|
|
517140
|
+
}
|
|
517141
|
+
}
|
|
516794
517142
|
setSearchValue={[Function]}
|
|
516795
517143
|
smsTraiDltEnabled={false}
|
|
516796
517144
|
testEntitiesTreeData={
|
|
@@ -516822,6 +517170,7 @@ new message content.",
|
|
|
516822
517170
|
<PreviewSection
|
|
516823
517171
|
unifiedPreviewProps={
|
|
516824
517172
|
Object {
|
|
517173
|
+
"activePreviewTab": "rcs",
|
|
516825
517174
|
"channel": "WHATSAPP",
|
|
516826
517175
|
"content": Object {
|
|
516827
517176
|
"_id": null,
|
|
@@ -516856,8 +517205,11 @@ new message content.",
|
|
|
516856
517205
|
"isUpdating": false,
|
|
516857
517206
|
"lastModified": undefined,
|
|
516858
517207
|
"onDeviceChange": [Function],
|
|
517208
|
+
"onPreviewTabChange": [Function],
|
|
516859
517209
|
"selectedCustomer": null,
|
|
516860
517210
|
"showDeviceToggle": true,
|
|
517211
|
+
"smsFallbackContent": null,
|
|
517212
|
+
"smsFallbackResolvedText": undefined,
|
|
516861
517213
|
"updatedByName": undefined,
|
|
516862
517214
|
}
|
|
516863
517215
|
}
|
|
@@ -531864,6 +532216,7 @@ new message content.",
|
|
|
531864
532216
|
className="ant-col ant-col-10 cap-column-v2"
|
|
531865
532217
|
>
|
|
531866
532218
|
<UnifiedPreview
|
|
532219
|
+
activePreviewTab="rcs"
|
|
531867
532220
|
channel="WHATSAPP"
|
|
531868
532221
|
content={
|
|
531869
532222
|
Object {
|
|
@@ -533741,9 +534094,11 @@ new message content.",
|
|
|
533741
534094
|
key=".0"
|
|
533742
534095
|
lastModified={null}
|
|
533743
534096
|
onDeviceChange={[Function]}
|
|
534097
|
+
onPreviewTabChange={[Function]}
|
|
533744
534098
|
selectedCustomer={null}
|
|
533745
534099
|
showDeviceToggle={false}
|
|
533746
534100
|
showHeader={false}
|
|
534101
|
+
smsFallbackContent={null}
|
|
533747
534102
|
updatedByName={null}
|
|
533748
534103
|
>
|
|
533749
534104
|
<CapRow
|
|
@@ -539720,6 +540075,7 @@ new message content.",
|
|
|
539720
540075
|
}
|
|
539721
540076
|
}
|
|
539722
540077
|
show={false}
|
|
540078
|
+
smsFallbackContent={null}
|
|
539723
540079
|
testCustomers={Immutable.List []}
|
|
539724
540080
|
testGroups={Immutable.List []}
|
|
539725
540081
|
updatePreviewError={null}
|
|
@@ -542087,6 +542443,7 @@ new message content.",
|
|
|
542087
542443
|
}
|
|
542088
542444
|
}
|
|
542089
542445
|
show={false}
|
|
542446
|
+
smsFallbackContent={null}
|
|
542090
542447
|
templateLayoutType={null}
|
|
542091
542448
|
testCustomers={Immutable.List []}
|
|
542092
542449
|
testGroups={Immutable.List []}
|
|
@@ -542180,6 +542537,7 @@ new message content.",
|
|
|
542180
542537
|
formatMessage={[Function]}
|
|
542181
542538
|
handleSendTestMessage={[Function]}
|
|
542182
542539
|
handleTestEntitiesChange={[Function]}
|
|
542540
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
542183
542541
|
isFetchingTestCustomers={false}
|
|
542184
542542
|
isFetchingTestGroups={false}
|
|
542185
542543
|
isLoadingSenderDetails={false}
|
|
@@ -542189,7 +542547,13 @@ new message content.",
|
|
|
542189
542547
|
renderAddTestCustomerButton={[Function]}
|
|
542190
542548
|
searchValue=""
|
|
542191
542549
|
selectedTestEntities={Array []}
|
|
542192
|
-
|
|
542550
|
+
senderDetailsByChannel={
|
|
542551
|
+
Object {
|
|
542552
|
+
"EMAIL": Array [],
|
|
542553
|
+
"SMS": Array [],
|
|
542554
|
+
"WHATSAPP": Array [],
|
|
542555
|
+
}
|
|
542556
|
+
}
|
|
542193
542557
|
setSearchValue={[Function]}
|
|
542194
542558
|
smsTraiDltEnabled={false}
|
|
542195
542559
|
testEntitiesTreeData={
|
|
@@ -542221,6 +542585,7 @@ new message content.",
|
|
|
542221
542585
|
<PreviewSection
|
|
542222
542586
|
unifiedPreviewProps={
|
|
542223
542587
|
Object {
|
|
542588
|
+
"activePreviewTab": "rcs",
|
|
542224
542589
|
"channel": "WHATSAPP",
|
|
542225
542590
|
"content": Object {
|
|
542226
542591
|
"_id": null,
|
|
@@ -542255,8 +542620,11 @@ new message content.",
|
|
|
542255
542620
|
"isUpdating": false,
|
|
542256
542621
|
"lastModified": undefined,
|
|
542257
542622
|
"onDeviceChange": [Function],
|
|
542623
|
+
"onPreviewTabChange": [Function],
|
|
542258
542624
|
"selectedCustomer": null,
|
|
542259
542625
|
"showDeviceToggle": true,
|
|
542626
|
+
"smsFallbackContent": null,
|
|
542627
|
+
"smsFallbackResolvedText": undefined,
|
|
542260
542628
|
"updatedByName": undefined,
|
|
542261
542629
|
}
|
|
542262
542630
|
}
|
|
@@ -557563,6 +557931,7 @@ new message content.",
|
|
|
557563
557931
|
className="ant-col ant-col-10 cap-column-v2"
|
|
557564
557932
|
>
|
|
557565
557933
|
<UnifiedPreview
|
|
557934
|
+
activePreviewTab="rcs"
|
|
557566
557935
|
channel="WHATSAPP"
|
|
557567
557936
|
content={
|
|
557568
557937
|
Object {
|
|
@@ -559740,9 +560109,11 @@ new message content.",
|
|
|
559740
560109
|
key=".0"
|
|
559741
560110
|
lastModified={null}
|
|
559742
560111
|
onDeviceChange={[Function]}
|
|
560112
|
+
onPreviewTabChange={[Function]}
|
|
559743
560113
|
selectedCustomer={null}
|
|
559744
560114
|
showDeviceToggle={false}
|
|
559745
560115
|
showHeader={false}
|
|
560116
|
+
smsFallbackContent={null}
|
|
559746
560117
|
updatedByName={null}
|
|
559747
560118
|
>
|
|
559748
560119
|
<CapRow
|
|
@@ -566019,6 +566390,7 @@ new message content.",
|
|
|
566019
566390
|
}
|
|
566020
566391
|
}
|
|
566021
566392
|
show={false}
|
|
566393
|
+
smsFallbackContent={null}
|
|
566022
566394
|
testCustomers={Immutable.List []}
|
|
566023
566395
|
testGroups={Immutable.List []}
|
|
566024
566396
|
updatePreviewError={null}
|
|
@@ -568386,6 +568758,7 @@ new message content.",
|
|
|
568386
568758
|
}
|
|
568387
568759
|
}
|
|
568388
568760
|
show={false}
|
|
568761
|
+
smsFallbackContent={null}
|
|
568389
568762
|
templateLayoutType={null}
|
|
568390
568763
|
testCustomers={Immutable.List []}
|
|
568391
568764
|
testGroups={Immutable.List []}
|
|
@@ -568479,6 +568852,7 @@ new message content.",
|
|
|
568479
568852
|
formatMessage={[Function]}
|
|
568480
568853
|
handleSendTestMessage={[Function]}
|
|
568481
568854
|
handleTestEntitiesChange={[Function]}
|
|
568855
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
568482
568856
|
isFetchingTestCustomers={false}
|
|
568483
568857
|
isFetchingTestGroups={false}
|
|
568484
568858
|
isLoadingSenderDetails={false}
|
|
@@ -568488,7 +568862,13 @@ new message content.",
|
|
|
568488
568862
|
renderAddTestCustomerButton={[Function]}
|
|
568489
568863
|
searchValue=""
|
|
568490
568864
|
selectedTestEntities={Array []}
|
|
568491
|
-
|
|
568865
|
+
senderDetailsByChannel={
|
|
568866
|
+
Object {
|
|
568867
|
+
"EMAIL": Array [],
|
|
568868
|
+
"SMS": Array [],
|
|
568869
|
+
"WHATSAPP": Array [],
|
|
568870
|
+
}
|
|
568871
|
+
}
|
|
568492
568872
|
setSearchValue={[Function]}
|
|
568493
568873
|
smsTraiDltEnabled={false}
|
|
568494
568874
|
testEntitiesTreeData={
|
|
@@ -568520,6 +568900,7 @@ new message content.",
|
|
|
568520
568900
|
<PreviewSection
|
|
568521
568901
|
unifiedPreviewProps={
|
|
568522
568902
|
Object {
|
|
568903
|
+
"activePreviewTab": "rcs",
|
|
568523
568904
|
"channel": "WHATSAPP",
|
|
568524
568905
|
"content": Object {
|
|
568525
568906
|
"_id": null,
|
|
@@ -568554,8 +568935,11 @@ new message content.",
|
|
|
568554
568935
|
"isUpdating": false,
|
|
568555
568936
|
"lastModified": undefined,
|
|
568556
568937
|
"onDeviceChange": [Function],
|
|
568938
|
+
"onPreviewTabChange": [Function],
|
|
568557
568939
|
"selectedCustomer": null,
|
|
568558
568940
|
"showDeviceToggle": true,
|
|
568941
|
+
"smsFallbackContent": null,
|
|
568942
|
+
"smsFallbackResolvedText": undefined,
|
|
568559
568943
|
"updatedByName": undefined,
|
|
568560
568944
|
}
|
|
568561
568945
|
}
|
|
@@ -584159,6 +584543,7 @@ new message content.",
|
|
|
584159
584543
|
className="ant-col ant-col-10 cap-column-v2"
|
|
584160
584544
|
>
|
|
584161
584545
|
<UnifiedPreview
|
|
584546
|
+
activePreviewTab="rcs"
|
|
584162
584547
|
channel="WHATSAPP"
|
|
584163
584548
|
content={
|
|
584164
584549
|
Object {
|
|
@@ -586633,9 +587018,11 @@ new message content.",
|
|
|
586633
587018
|
key=".0"
|
|
586634
587019
|
lastModified={null}
|
|
586635
587020
|
onDeviceChange={[Function]}
|
|
587021
|
+
onPreviewTabChange={[Function]}
|
|
586636
587022
|
selectedCustomer={null}
|
|
586637
587023
|
showDeviceToggle={false}
|
|
586638
587024
|
showHeader={false}
|
|
587025
|
+
smsFallbackContent={null}
|
|
586639
587026
|
updatedByName={null}
|
|
586640
587027
|
>
|
|
586641
587028
|
<CapRow
|
|
@@ -593209,6 +593596,7 @@ new message content.",
|
|
|
593209
593596
|
}
|
|
593210
593597
|
}
|
|
593211
593598
|
show={false}
|
|
593599
|
+
smsFallbackContent={null}
|
|
593212
593600
|
testCustomers={Immutable.List []}
|
|
593213
593601
|
testGroups={Immutable.List []}
|
|
593214
593602
|
updatePreviewError={null}
|
|
@@ -595576,6 +595964,7 @@ new message content.",
|
|
|
595576
595964
|
}
|
|
595577
595965
|
}
|
|
595578
595966
|
show={false}
|
|
595967
|
+
smsFallbackContent={null}
|
|
595579
595968
|
templateLayoutType={null}
|
|
595580
595969
|
testCustomers={Immutable.List []}
|
|
595581
595970
|
testGroups={Immutable.List []}
|
|
@@ -595669,6 +596058,7 @@ new message content.",
|
|
|
595669
596058
|
formatMessage={[Function]}
|
|
595670
596059
|
handleSendTestMessage={[Function]}
|
|
595671
596060
|
handleTestEntitiesChange={[Function]}
|
|
596061
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
595672
596062
|
isFetchingTestCustomers={false}
|
|
595673
596063
|
isFetchingTestGroups={false}
|
|
595674
596064
|
isLoadingSenderDetails={false}
|
|
@@ -595678,7 +596068,13 @@ new message content.",
|
|
|
595678
596068
|
renderAddTestCustomerButton={[Function]}
|
|
595679
596069
|
searchValue=""
|
|
595680
596070
|
selectedTestEntities={Array []}
|
|
595681
|
-
|
|
596071
|
+
senderDetailsByChannel={
|
|
596072
|
+
Object {
|
|
596073
|
+
"EMAIL": Array [],
|
|
596074
|
+
"SMS": Array [],
|
|
596075
|
+
"WHATSAPP": Array [],
|
|
596076
|
+
}
|
|
596077
|
+
}
|
|
595682
596078
|
setSearchValue={[Function]}
|
|
595683
596079
|
smsTraiDltEnabled={false}
|
|
595684
596080
|
testEntitiesTreeData={
|
|
@@ -595710,6 +596106,7 @@ new message content.",
|
|
|
595710
596106
|
<PreviewSection
|
|
595711
596107
|
unifiedPreviewProps={
|
|
595712
596108
|
Object {
|
|
596109
|
+
"activePreviewTab": "rcs",
|
|
595713
596110
|
"channel": "WHATSAPP",
|
|
595714
596111
|
"content": Object {
|
|
595715
596112
|
"_id": null,
|
|
@@ -595744,8 +596141,11 @@ new message content.",
|
|
|
595744
596141
|
"isUpdating": false,
|
|
595745
596142
|
"lastModified": undefined,
|
|
595746
596143
|
"onDeviceChange": [Function],
|
|
596144
|
+
"onPreviewTabChange": [Function],
|
|
595747
596145
|
"selectedCustomer": null,
|
|
595748
596146
|
"showDeviceToggle": true,
|
|
596147
|
+
"smsFallbackContent": null,
|
|
596148
|
+
"smsFallbackResolvedText": undefined,
|
|
595749
596149
|
"updatedByName": undefined,
|
|
595750
596150
|
}
|
|
595751
596151
|
}
|
|
@@ -611646,6 +612046,7 @@ new message content.",
|
|
|
611646
612046
|
className="ant-col ant-col-10 cap-column-v2"
|
|
611647
612047
|
>
|
|
611648
612048
|
<UnifiedPreview
|
|
612049
|
+
activePreviewTab="rcs"
|
|
611649
612050
|
channel="WHATSAPP"
|
|
611650
612051
|
content={
|
|
611651
612052
|
Object {
|
|
@@ -614417,9 +614818,11 @@ new message content.",
|
|
|
614417
614818
|
key=".0"
|
|
614418
614819
|
lastModified={null}
|
|
614419
614820
|
onDeviceChange={[Function]}
|
|
614821
|
+
onPreviewTabChange={[Function]}
|
|
614420
614822
|
selectedCustomer={null}
|
|
614421
614823
|
showDeviceToggle={false}
|
|
614422
614824
|
showHeader={false}
|
|
614825
|
+
smsFallbackContent={null}
|
|
614423
614826
|
updatedByName={null}
|
|
614424
614827
|
>
|
|
614425
614828
|
<CapRow
|
|
@@ -621290,6 +621693,7 @@ new message content.",
|
|
|
621290
621693
|
}
|
|
621291
621694
|
}
|
|
621292
621695
|
show={false}
|
|
621696
|
+
smsFallbackContent={null}
|
|
621293
621697
|
testCustomers={Immutable.List []}
|
|
621294
621698
|
testGroups={Immutable.List []}
|
|
621295
621699
|
updatePreviewError={null}
|
|
@@ -623657,6 +624061,7 @@ new message content.",
|
|
|
623657
624061
|
}
|
|
623658
624062
|
}
|
|
623659
624063
|
show={false}
|
|
624064
|
+
smsFallbackContent={null}
|
|
623660
624065
|
templateLayoutType={null}
|
|
623661
624066
|
testCustomers={Immutable.List []}
|
|
623662
624067
|
testGroups={Immutable.List []}
|
|
@@ -623750,6 +624155,7 @@ new message content.",
|
|
|
623750
624155
|
formatMessage={[Function]}
|
|
623751
624156
|
handleSendTestMessage={[Function]}
|
|
623752
624157
|
handleTestEntitiesChange={[Function]}
|
|
624158
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
623753
624159
|
isFetchingTestCustomers={false}
|
|
623754
624160
|
isFetchingTestGroups={false}
|
|
623755
624161
|
isLoadingSenderDetails={false}
|
|
@@ -623759,7 +624165,13 @@ new message content.",
|
|
|
623759
624165
|
renderAddTestCustomerButton={[Function]}
|
|
623760
624166
|
searchValue=""
|
|
623761
624167
|
selectedTestEntities={Array []}
|
|
623762
|
-
|
|
624168
|
+
senderDetailsByChannel={
|
|
624169
|
+
Object {
|
|
624170
|
+
"EMAIL": Array [],
|
|
624171
|
+
"SMS": Array [],
|
|
624172
|
+
"WHATSAPP": Array [],
|
|
624173
|
+
}
|
|
624174
|
+
}
|
|
623763
624175
|
setSearchValue={[Function]}
|
|
623764
624176
|
smsTraiDltEnabled={false}
|
|
623765
624177
|
testEntitiesTreeData={
|
|
@@ -623791,6 +624203,7 @@ new message content.",
|
|
|
623791
624203
|
<PreviewSection
|
|
623792
624204
|
unifiedPreviewProps={
|
|
623793
624205
|
Object {
|
|
624206
|
+
"activePreviewTab": "rcs",
|
|
623794
624207
|
"channel": "WHATSAPP",
|
|
623795
624208
|
"content": Object {
|
|
623796
624209
|
"_id": null,
|
|
@@ -623825,8 +624238,11 @@ new message content.",
|
|
|
623825
624238
|
"isUpdating": false,
|
|
623826
624239
|
"lastModified": undefined,
|
|
623827
624240
|
"onDeviceChange": [Function],
|
|
624241
|
+
"onPreviewTabChange": [Function],
|
|
623828
624242
|
"selectedCustomer": null,
|
|
623829
624243
|
"showDeviceToggle": true,
|
|
624244
|
+
"smsFallbackContent": null,
|
|
624245
|
+
"smsFallbackResolvedText": undefined,
|
|
623830
624246
|
"updatedByName": undefined,
|
|
623831
624247
|
}
|
|
623832
624248
|
}
|
|
@@ -640025,6 +640441,7 @@ new message content.",
|
|
|
640025
640441
|
className="ant-col ant-col-10 cap-column-v2"
|
|
640026
640442
|
>
|
|
640027
640443
|
<UnifiedPreview
|
|
640444
|
+
activePreviewTab="rcs"
|
|
640028
640445
|
channel="WHATSAPP"
|
|
640029
640446
|
content={
|
|
640030
640447
|
Object {
|
|
@@ -643083,9 +643500,11 @@ new message content.",
|
|
|
643083
643500
|
key=".0"
|
|
643084
643501
|
lastModified={null}
|
|
643085
643502
|
onDeviceChange={[Function]}
|
|
643503
|
+
onPreviewTabChange={[Function]}
|
|
643086
643504
|
selectedCustomer={null}
|
|
643087
643505
|
showDeviceToggle={false}
|
|
643088
643506
|
showHeader={false}
|
|
643507
|
+
smsFallbackContent={null}
|
|
643089
643508
|
updatedByName={null}
|
|
643090
643509
|
>
|
|
643091
643510
|
<CapRow
|
|
@@ -650243,6 +650662,7 @@ new message content.",
|
|
|
650243
650662
|
}
|
|
650244
650663
|
}
|
|
650245
650664
|
show={false}
|
|
650665
|
+
smsFallbackContent={null}
|
|
650246
650666
|
testCustomers={Immutable.List []}
|
|
650247
650667
|
testGroups={Immutable.List []}
|
|
650248
650668
|
updatePreviewError={null}
|
|
@@ -652610,6 +653030,7 @@ new message content.",
|
|
|
652610
653030
|
}
|
|
652611
653031
|
}
|
|
652612
653032
|
show={false}
|
|
653033
|
+
smsFallbackContent={null}
|
|
652613
653034
|
templateLayoutType={null}
|
|
652614
653035
|
testCustomers={Immutable.List []}
|
|
652615
653036
|
testGroups={Immutable.List []}
|
|
@@ -652703,6 +653124,7 @@ new message content.",
|
|
|
652703
653124
|
formatMessage={[Function]}
|
|
652704
653125
|
handleSendTestMessage={[Function]}
|
|
652705
653126
|
handleTestEntitiesChange={[Function]}
|
|
653127
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
652706
653128
|
isFetchingTestCustomers={false}
|
|
652707
653129
|
isFetchingTestGroups={false}
|
|
652708
653130
|
isLoadingSenderDetails={false}
|
|
@@ -652712,7 +653134,13 @@ new message content.",
|
|
|
652712
653134
|
renderAddTestCustomerButton={[Function]}
|
|
652713
653135
|
searchValue=""
|
|
652714
653136
|
selectedTestEntities={Array []}
|
|
652715
|
-
|
|
653137
|
+
senderDetailsByChannel={
|
|
653138
|
+
Object {
|
|
653139
|
+
"EMAIL": Array [],
|
|
653140
|
+
"SMS": Array [],
|
|
653141
|
+
"WHATSAPP": Array [],
|
|
653142
|
+
}
|
|
653143
|
+
}
|
|
652716
653144
|
setSearchValue={[Function]}
|
|
652717
653145
|
smsTraiDltEnabled={false}
|
|
652718
653146
|
testEntitiesTreeData={
|
|
@@ -652744,6 +653172,7 @@ new message content.",
|
|
|
652744
653172
|
<PreviewSection
|
|
652745
653173
|
unifiedPreviewProps={
|
|
652746
653174
|
Object {
|
|
653175
|
+
"activePreviewTab": "rcs",
|
|
652747
653176
|
"channel": "WHATSAPP",
|
|
652748
653177
|
"content": Object {
|
|
652749
653178
|
"_id": null,
|
|
@@ -652778,8 +653207,11 @@ new message content.",
|
|
|
652778
653207
|
"isUpdating": false,
|
|
652779
653208
|
"lastModified": undefined,
|
|
652780
653209
|
"onDeviceChange": [Function],
|
|
653210
|
+
"onPreviewTabChange": [Function],
|
|
652781
653211
|
"selectedCustomer": null,
|
|
652782
653212
|
"showDeviceToggle": true,
|
|
653213
|
+
"smsFallbackContent": null,
|
|
653214
|
+
"smsFallbackResolvedText": undefined,
|
|
652783
653215
|
"updatedByName": undefined,
|
|
652784
653216
|
}
|
|
652785
653217
|
}
|
|
@@ -666922,6 +667354,7 @@ new message content.",
|
|
|
666922
667354
|
className="ant-col ant-col-10 cap-column-v2"
|
|
666923
667355
|
>
|
|
666924
667356
|
<UnifiedPreview
|
|
667357
|
+
activePreviewTab="rcs"
|
|
666925
667358
|
channel="WHATSAPP"
|
|
666926
667359
|
content={
|
|
666927
667360
|
Object {
|
|
@@ -667924,9 +668357,11 @@ new message content.",
|
|
|
667924
668357
|
key=".0"
|
|
667925
668358
|
lastModified={null}
|
|
667926
668359
|
onDeviceChange={[Function]}
|
|
668360
|
+
onPreviewTabChange={[Function]}
|
|
667927
668361
|
selectedCustomer={null}
|
|
667928
668362
|
showDeviceToggle={false}
|
|
667929
668363
|
showHeader={false}
|
|
668364
|
+
smsFallbackContent={null}
|
|
667930
668365
|
updatedByName={null}
|
|
667931
668366
|
>
|
|
667932
668367
|
<CapRow
|
|
@@ -673017,6 +673452,7 @@ new message content.",
|
|
|
673017
673452
|
}
|
|
673018
673453
|
}
|
|
673019
673454
|
show={false}
|
|
673455
|
+
smsFallbackContent={null}
|
|
673020
673456
|
testCustomers={Immutable.List []}
|
|
673021
673457
|
testGroups={Immutable.List []}
|
|
673022
673458
|
updatePreviewError={null}
|
|
@@ -675384,6 +675820,7 @@ new message content.",
|
|
|
675384
675820
|
}
|
|
675385
675821
|
}
|
|
675386
675822
|
show={false}
|
|
675823
|
+
smsFallbackContent={null}
|
|
675387
675824
|
templateLayoutType={null}
|
|
675388
675825
|
testCustomers={Immutable.List []}
|
|
675389
675826
|
testGroups={Immutable.List []}
|
|
@@ -675477,6 +675914,7 @@ new message content.",
|
|
|
675477
675914
|
formatMessage={[Function]}
|
|
675478
675915
|
handleSendTestMessage={[Function]}
|
|
675479
675916
|
handleTestEntitiesChange={[Function]}
|
|
675917
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
675480
675918
|
isFetchingTestCustomers={false}
|
|
675481
675919
|
isFetchingTestGroups={false}
|
|
675482
675920
|
isLoadingSenderDetails={false}
|
|
@@ -675486,7 +675924,13 @@ new message content.",
|
|
|
675486
675924
|
renderAddTestCustomerButton={[Function]}
|
|
675487
675925
|
searchValue=""
|
|
675488
675926
|
selectedTestEntities={Array []}
|
|
675489
|
-
|
|
675927
|
+
senderDetailsByChannel={
|
|
675928
|
+
Object {
|
|
675929
|
+
"EMAIL": Array [],
|
|
675930
|
+
"SMS": Array [],
|
|
675931
|
+
"WHATSAPP": Array [],
|
|
675932
|
+
}
|
|
675933
|
+
}
|
|
675490
675934
|
setSearchValue={[Function]}
|
|
675491
675935
|
smsTraiDltEnabled={false}
|
|
675492
675936
|
testEntitiesTreeData={
|
|
@@ -675518,6 +675962,7 @@ new message content.",
|
|
|
675518
675962
|
<PreviewSection
|
|
675519
675963
|
unifiedPreviewProps={
|
|
675520
675964
|
Object {
|
|
675965
|
+
"activePreviewTab": "rcs",
|
|
675521
675966
|
"channel": "WHATSAPP",
|
|
675522
675967
|
"content": Object {
|
|
675523
675968
|
"_id": null,
|
|
@@ -675552,8 +675997,11 @@ new message content.",
|
|
|
675552
675997
|
"isUpdating": false,
|
|
675553
675998
|
"lastModified": undefined,
|
|
675554
675999
|
"onDeviceChange": [Function],
|
|
676000
|
+
"onPreviewTabChange": [Function],
|
|
675555
676001
|
"selectedCustomer": null,
|
|
675556
676002
|
"showDeviceToggle": true,
|
|
676003
|
+
"smsFallbackContent": null,
|
|
676004
|
+
"smsFallbackResolvedText": undefined,
|
|
675557
676005
|
"updatedByName": undefined,
|
|
675558
676006
|
}
|
|
675559
676007
|
}
|
|
@@ -689989,6 +690437,7 @@ new message content.",
|
|
|
689989
690437
|
className="ant-col ant-col-10 cap-column-v2"
|
|
689990
690438
|
>
|
|
689991
690439
|
<UnifiedPreview
|
|
690440
|
+
activePreviewTab="rcs"
|
|
689992
690441
|
channel="WHATSAPP"
|
|
689993
690442
|
content={
|
|
689994
690443
|
Object {
|
|
@@ -691288,9 +691737,11 @@ new message content.",
|
|
|
691288
691737
|
key=".0"
|
|
691289
691738
|
lastModified={null}
|
|
691290
691739
|
onDeviceChange={[Function]}
|
|
691740
|
+
onPreviewTabChange={[Function]}
|
|
691291
691741
|
selectedCustomer={null}
|
|
691292
691742
|
showDeviceToggle={false}
|
|
691293
691743
|
showHeader={false}
|
|
691744
|
+
smsFallbackContent={null}
|
|
691294
691745
|
updatedByName={null}
|
|
691295
691746
|
>
|
|
691296
691747
|
<CapRow
|
|
@@ -696678,6 +697129,7 @@ new message content.",
|
|
|
696678
697129
|
}
|
|
696679
697130
|
}
|
|
696680
697131
|
show={false}
|
|
697132
|
+
smsFallbackContent={null}
|
|
696681
697133
|
testCustomers={Immutable.List []}
|
|
696682
697134
|
testGroups={Immutable.List []}
|
|
696683
697135
|
updatePreviewError={null}
|
|
@@ -699045,6 +699497,7 @@ new message content.",
|
|
|
699045
699497
|
}
|
|
699046
699498
|
}
|
|
699047
699499
|
show={false}
|
|
699500
|
+
smsFallbackContent={null}
|
|
699048
699501
|
templateLayoutType={null}
|
|
699049
699502
|
testCustomers={Immutable.List []}
|
|
699050
699503
|
testGroups={Immutable.List []}
|
|
@@ -699138,6 +699591,7 @@ new message content.",
|
|
|
699138
699591
|
formatMessage={[Function]}
|
|
699139
699592
|
handleSendTestMessage={[Function]}
|
|
699140
699593
|
handleTestEntitiesChange={[Function]}
|
|
699594
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
699141
699595
|
isFetchingTestCustomers={false}
|
|
699142
699596
|
isFetchingTestGroups={false}
|
|
699143
699597
|
isLoadingSenderDetails={false}
|
|
@@ -699147,7 +699601,13 @@ new message content.",
|
|
|
699147
699601
|
renderAddTestCustomerButton={[Function]}
|
|
699148
699602
|
searchValue=""
|
|
699149
699603
|
selectedTestEntities={Array []}
|
|
699150
|
-
|
|
699604
|
+
senderDetailsByChannel={
|
|
699605
|
+
Object {
|
|
699606
|
+
"EMAIL": Array [],
|
|
699607
|
+
"SMS": Array [],
|
|
699608
|
+
"WHATSAPP": Array [],
|
|
699609
|
+
}
|
|
699610
|
+
}
|
|
699151
699611
|
setSearchValue={[Function]}
|
|
699152
699612
|
smsTraiDltEnabled={false}
|
|
699153
699613
|
testEntitiesTreeData={
|
|
@@ -699179,6 +699639,7 @@ new message content.",
|
|
|
699179
699639
|
<PreviewSection
|
|
699180
699640
|
unifiedPreviewProps={
|
|
699181
699641
|
Object {
|
|
699642
|
+
"activePreviewTab": "rcs",
|
|
699182
699643
|
"channel": "WHATSAPP",
|
|
699183
699644
|
"content": Object {
|
|
699184
699645
|
"_id": null,
|
|
@@ -699213,8 +699674,11 @@ new message content.",
|
|
|
699213
699674
|
"isUpdating": false,
|
|
699214
699675
|
"lastModified": undefined,
|
|
699215
699676
|
"onDeviceChange": [Function],
|
|
699677
|
+
"onPreviewTabChange": [Function],
|
|
699216
699678
|
"selectedCustomer": null,
|
|
699217
699679
|
"showDeviceToggle": true,
|
|
699680
|
+
"smsFallbackContent": null,
|
|
699681
|
+
"smsFallbackResolvedText": undefined,
|
|
699218
699682
|
"updatedByName": undefined,
|
|
699219
699683
|
}
|
|
699220
699684
|
}
|
|
@@ -713967,6 +714431,7 @@ new message content.",
|
|
|
713967
714431
|
className="ant-col ant-col-10 cap-column-v2"
|
|
713968
714432
|
>
|
|
713969
714433
|
<UnifiedPreview
|
|
714434
|
+
activePreviewTab="rcs"
|
|
713970
714435
|
channel="WHATSAPP"
|
|
713971
714436
|
content={
|
|
713972
714437
|
Object {
|
|
@@ -715583,9 +716048,11 @@ new message content.",
|
|
|
715583
716048
|
key=".0"
|
|
715584
716049
|
lastModified={null}
|
|
715585
716050
|
onDeviceChange={[Function]}
|
|
716051
|
+
onPreviewTabChange={[Function]}
|
|
715586
716052
|
selectedCustomer={null}
|
|
715587
716053
|
showDeviceToggle={false}
|
|
715588
716054
|
showHeader={false}
|
|
716055
|
+
smsFallbackContent={null}
|
|
715589
716056
|
updatedByName={null}
|
|
715590
716057
|
>
|
|
715591
716058
|
<CapRow
|
|
@@ -721290,6 +721757,7 @@ new message content.",
|
|
|
721290
721757
|
}
|
|
721291
721758
|
}
|
|
721292
721759
|
show={false}
|
|
721760
|
+
smsFallbackContent={null}
|
|
721293
721761
|
testCustomers={Immutable.List []}
|
|
721294
721762
|
testGroups={Immutable.List []}
|
|
721295
721763
|
updatePreviewError={null}
|
|
@@ -723657,6 +724125,7 @@ new message content.",
|
|
|
723657
724125
|
}
|
|
723658
724126
|
}
|
|
723659
724127
|
show={false}
|
|
724128
|
+
smsFallbackContent={null}
|
|
723660
724129
|
templateLayoutType={null}
|
|
723661
724130
|
testCustomers={Immutable.List []}
|
|
723662
724131
|
testGroups={Immutable.List []}
|
|
@@ -723750,6 +724219,7 @@ new message content.",
|
|
|
723750
724219
|
formatMessage={[Function]}
|
|
723751
724220
|
handleSendTestMessage={[Function]}
|
|
723752
724221
|
handleTestEntitiesChange={[Function]}
|
|
724222
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
723753
724223
|
isFetchingTestCustomers={false}
|
|
723754
724224
|
isFetchingTestGroups={false}
|
|
723755
724225
|
isLoadingSenderDetails={false}
|
|
@@ -723759,7 +724229,13 @@ new message content.",
|
|
|
723759
724229
|
renderAddTestCustomerButton={[Function]}
|
|
723760
724230
|
searchValue=""
|
|
723761
724231
|
selectedTestEntities={Array []}
|
|
723762
|
-
|
|
724232
|
+
senderDetailsByChannel={
|
|
724233
|
+
Object {
|
|
724234
|
+
"EMAIL": Array [],
|
|
724235
|
+
"SMS": Array [],
|
|
724236
|
+
"WHATSAPP": Array [],
|
|
724237
|
+
}
|
|
724238
|
+
}
|
|
723763
724239
|
setSearchValue={[Function]}
|
|
723764
724240
|
smsTraiDltEnabled={false}
|
|
723765
724241
|
testEntitiesTreeData={
|
|
@@ -723791,6 +724267,7 @@ new message content.",
|
|
|
723791
724267
|
<PreviewSection
|
|
723792
724268
|
unifiedPreviewProps={
|
|
723793
724269
|
Object {
|
|
724270
|
+
"activePreviewTab": "rcs",
|
|
723794
724271
|
"channel": "WHATSAPP",
|
|
723795
724272
|
"content": Object {
|
|
723796
724273
|
"_id": null,
|
|
@@ -723825,8 +724302,11 @@ new message content.",
|
|
|
723825
724302
|
"isUpdating": false,
|
|
723826
724303
|
"lastModified": undefined,
|
|
723827
724304
|
"onDeviceChange": [Function],
|
|
724305
|
+
"onPreviewTabChange": [Function],
|
|
723828
724306
|
"selectedCustomer": null,
|
|
723829
724307
|
"showDeviceToggle": true,
|
|
724308
|
+
"smsFallbackContent": null,
|
|
724309
|
+
"smsFallbackResolvedText": undefined,
|
|
723830
724310
|
"updatedByName": undefined,
|
|
723831
724311
|
}
|
|
723832
724312
|
}
|
|
@@ -737662,6 +738142,7 @@ new message content.",
|
|
|
737662
738142
|
className="ant-col ant-col-10 cap-column-v2"
|
|
737663
738143
|
>
|
|
737664
738144
|
<UnifiedPreview
|
|
738145
|
+
activePreviewTab="rcs"
|
|
737665
738146
|
channel="WHATSAPP"
|
|
737666
738147
|
content={
|
|
737667
738148
|
Object {
|
|
@@ -738357,9 +738838,11 @@ new message content.",
|
|
|
738357
738838
|
key=".0"
|
|
738358
738839
|
lastModified={null}
|
|
738359
738840
|
onDeviceChange={[Function]}
|
|
738841
|
+
onPreviewTabChange={[Function]}
|
|
738360
738842
|
selectedCustomer={null}
|
|
738361
738843
|
showDeviceToggle={false}
|
|
738362
738844
|
showHeader={false}
|
|
738845
|
+
smsFallbackContent={null}
|
|
738363
738846
|
updatedByName={null}
|
|
738364
738847
|
>
|
|
738365
738848
|
<CapRow
|
|
@@ -743143,6 +743626,7 @@ new message content.",
|
|
|
743143
743626
|
}
|
|
743144
743627
|
}
|
|
743145
743628
|
show={false}
|
|
743629
|
+
smsFallbackContent={null}
|
|
743146
743630
|
testCustomers={Immutable.List []}
|
|
743147
743631
|
testGroups={Immutable.List []}
|
|
743148
743632
|
updatePreviewError={null}
|
|
@@ -745510,6 +745994,7 @@ new message content.",
|
|
|
745510
745994
|
}
|
|
745511
745995
|
}
|
|
745512
745996
|
show={false}
|
|
745997
|
+
smsFallbackContent={null}
|
|
745513
745998
|
templateLayoutType={null}
|
|
745514
745999
|
testCustomers={Immutable.List []}
|
|
745515
746000
|
testGroups={Immutable.List []}
|
|
@@ -745603,6 +746088,7 @@ new message content.",
|
|
|
745603
746088
|
formatMessage={[Function]}
|
|
745604
746089
|
handleSendTestMessage={[Function]}
|
|
745605
746090
|
handleTestEntitiesChange={[Function]}
|
|
746091
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
745606
746092
|
isFetchingTestCustomers={false}
|
|
745607
746093
|
isFetchingTestGroups={false}
|
|
745608
746094
|
isLoadingSenderDetails={false}
|
|
@@ -745612,7 +746098,13 @@ new message content.",
|
|
|
745612
746098
|
renderAddTestCustomerButton={[Function]}
|
|
745613
746099
|
searchValue=""
|
|
745614
746100
|
selectedTestEntities={Array []}
|
|
745615
|
-
|
|
746101
|
+
senderDetailsByChannel={
|
|
746102
|
+
Object {
|
|
746103
|
+
"EMAIL": Array [],
|
|
746104
|
+
"SMS": Array [],
|
|
746105
|
+
"WHATSAPP": Array [],
|
|
746106
|
+
}
|
|
746107
|
+
}
|
|
745616
746108
|
setSearchValue={[Function]}
|
|
745617
746109
|
smsTraiDltEnabled={false}
|
|
745618
746110
|
testEntitiesTreeData={
|
|
@@ -745644,6 +746136,7 @@ new message content.",
|
|
|
745644
746136
|
<PreviewSection
|
|
745645
746137
|
unifiedPreviewProps={
|
|
745646
746138
|
Object {
|
|
746139
|
+
"activePreviewTab": "rcs",
|
|
745647
746140
|
"channel": "WHATSAPP",
|
|
745648
746141
|
"content": Object {
|
|
745649
746142
|
"_id": null,
|
|
@@ -745678,8 +746171,11 @@ new message content.",
|
|
|
745678
746171
|
"isUpdating": false,
|
|
745679
746172
|
"lastModified": undefined,
|
|
745680
746173
|
"onDeviceChange": [Function],
|
|
746174
|
+
"onPreviewTabChange": [Function],
|
|
745681
746175
|
"selectedCustomer": null,
|
|
745682
746176
|
"showDeviceToggle": true,
|
|
746177
|
+
"smsFallbackContent": null,
|
|
746178
|
+
"smsFallbackResolvedText": undefined,
|
|
745683
746179
|
"updatedByName": undefined,
|
|
745684
746180
|
}
|
|
745685
746181
|
}
|
|
@@ -761830,6 +762326,7 @@ new message content.",
|
|
|
761830
762326
|
className="ant-col ant-col-10 cap-column-v2"
|
|
761831
762327
|
>
|
|
761832
762328
|
<UnifiedPreview
|
|
762329
|
+
activePreviewTab="rcs"
|
|
761833
762330
|
channel="WHATSAPP"
|
|
761834
762331
|
content={
|
|
761835
762332
|
Object {
|
|
@@ -763058,9 +763555,11 @@ new message content.",
|
|
|
763058
763555
|
key=".0"
|
|
763059
763556
|
lastModified={null}
|
|
763060
763557
|
onDeviceChange={[Function]}
|
|
763558
|
+
onPreviewTabChange={[Function]}
|
|
763061
763559
|
selectedCustomer={null}
|
|
763062
763560
|
showDeviceToggle={false}
|
|
763063
763561
|
showHeader={false}
|
|
763562
|
+
smsFallbackContent={null}
|
|
763064
763563
|
updatedByName={null}
|
|
763065
763564
|
>
|
|
763066
763565
|
<CapRow
|
|
@@ -768387,6 +768886,7 @@ new message content.",
|
|
|
768387
768886
|
}
|
|
768388
768887
|
}
|
|
768389
768888
|
show={false}
|
|
768889
|
+
smsFallbackContent={null}
|
|
768390
768890
|
testCustomers={Immutable.List []}
|
|
768391
768891
|
testGroups={Immutable.List []}
|
|
768392
768892
|
updatePreviewError={null}
|
|
@@ -770754,6 +771254,7 @@ new message content.",
|
|
|
770754
771254
|
}
|
|
770755
771255
|
}
|
|
770756
771256
|
show={false}
|
|
771257
|
+
smsFallbackContent={null}
|
|
770757
771258
|
templateLayoutType={null}
|
|
770758
771259
|
testCustomers={Immutable.List []}
|
|
770759
771260
|
testGroups={Immutable.List []}
|
|
@@ -770847,6 +771348,7 @@ new message content.",
|
|
|
770847
771348
|
formatMessage={[Function]}
|
|
770848
771349
|
handleSendTestMessage={[Function]}
|
|
770849
771350
|
handleTestEntitiesChange={[Function]}
|
|
771351
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
770850
771352
|
isFetchingTestCustomers={false}
|
|
770851
771353
|
isFetchingTestGroups={false}
|
|
770852
771354
|
isLoadingSenderDetails={false}
|
|
@@ -770856,7 +771358,13 @@ new message content.",
|
|
|
770856
771358
|
renderAddTestCustomerButton={[Function]}
|
|
770857
771359
|
searchValue=""
|
|
770858
771360
|
selectedTestEntities={Array []}
|
|
770859
|
-
|
|
771361
|
+
senderDetailsByChannel={
|
|
771362
|
+
Object {
|
|
771363
|
+
"EMAIL": Array [],
|
|
771364
|
+
"SMS": Array [],
|
|
771365
|
+
"WHATSAPP": Array [],
|
|
771366
|
+
}
|
|
771367
|
+
}
|
|
770860
771368
|
setSearchValue={[Function]}
|
|
770861
771369
|
smsTraiDltEnabled={false}
|
|
770862
771370
|
testEntitiesTreeData={
|
|
@@ -770888,6 +771396,7 @@ new message content.",
|
|
|
770888
771396
|
<PreviewSection
|
|
770889
771397
|
unifiedPreviewProps={
|
|
770890
771398
|
Object {
|
|
771399
|
+
"activePreviewTab": "rcs",
|
|
770891
771400
|
"channel": "WHATSAPP",
|
|
770892
771401
|
"content": Object {
|
|
770893
771402
|
"_id": null,
|
|
@@ -770922,8 +771431,11 @@ new message content.",
|
|
|
770922
771431
|
"isUpdating": false,
|
|
770923
771432
|
"lastModified": undefined,
|
|
770924
771433
|
"onDeviceChange": [Function],
|
|
771434
|
+
"onPreviewTabChange": [Function],
|
|
770925
771435
|
"selectedCustomer": null,
|
|
770926
771436
|
"showDeviceToggle": true,
|
|
771437
|
+
"smsFallbackContent": null,
|
|
771438
|
+
"smsFallbackResolvedText": undefined,
|
|
770927
771439
|
"updatedByName": undefined,
|
|
770928
771440
|
}
|
|
770929
771441
|
}
|
|
@@ -787156,6 +787668,7 @@ new message content.",
|
|
|
787156
787668
|
className="ant-col ant-col-10 cap-column-v2"
|
|
787157
787669
|
>
|
|
787158
787670
|
<UnifiedPreview
|
|
787671
|
+
activePreviewTab="rcs"
|
|
787159
787672
|
channel="WHATSAPP"
|
|
787160
787673
|
content={
|
|
787161
787674
|
Object {
|
|
@@ -788397,9 +788910,11 @@ new message content.",
|
|
|
788397
788910
|
key=".0"
|
|
788398
788911
|
lastModified={null}
|
|
788399
788912
|
onDeviceChange={[Function]}
|
|
788913
|
+
onPreviewTabChange={[Function]}
|
|
788400
788914
|
selectedCustomer={null}
|
|
788401
788915
|
showDeviceToggle={false}
|
|
788402
788916
|
showHeader={false}
|
|
788917
|
+
smsFallbackContent={null}
|
|
788403
788918
|
updatedByName={null}
|
|
788404
788919
|
>
|
|
788405
788920
|
<CapRow
|
|
@@ -793739,6 +794254,7 @@ new message content.",
|
|
|
793739
794254
|
}
|
|
793740
794255
|
}
|
|
793741
794256
|
show={false}
|
|
794257
|
+
smsFallbackContent={null}
|
|
793742
794258
|
testCustomers={Immutable.List []}
|
|
793743
794259
|
testGroups={Immutable.List []}
|
|
793744
794260
|
updatePreviewError={null}
|
|
@@ -796106,6 +796622,7 @@ new message content.",
|
|
|
796106
796622
|
}
|
|
796107
796623
|
}
|
|
796108
796624
|
show={false}
|
|
796625
|
+
smsFallbackContent={null}
|
|
796109
796626
|
templateLayoutType={null}
|
|
796110
796627
|
testCustomers={Immutable.List []}
|
|
796111
796628
|
testGroups={Immutable.List []}
|
|
@@ -796199,6 +796716,7 @@ new message content.",
|
|
|
796199
796716
|
formatMessage={[Function]}
|
|
796200
796717
|
handleSendTestMessage={[Function]}
|
|
796201
796718
|
handleTestEntitiesChange={[Function]}
|
|
796719
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
796202
796720
|
isFetchingTestCustomers={false}
|
|
796203
796721
|
isFetchingTestGroups={false}
|
|
796204
796722
|
isLoadingSenderDetails={false}
|
|
@@ -796208,7 +796726,13 @@ new message content.",
|
|
|
796208
796726
|
renderAddTestCustomerButton={[Function]}
|
|
796209
796727
|
searchValue=""
|
|
796210
796728
|
selectedTestEntities={Array []}
|
|
796211
|
-
|
|
796729
|
+
senderDetailsByChannel={
|
|
796730
|
+
Object {
|
|
796731
|
+
"EMAIL": Array [],
|
|
796732
|
+
"SMS": Array [],
|
|
796733
|
+
"WHATSAPP": Array [],
|
|
796734
|
+
}
|
|
796735
|
+
}
|
|
796212
796736
|
setSearchValue={[Function]}
|
|
796213
796737
|
smsTraiDltEnabled={false}
|
|
796214
796738
|
testEntitiesTreeData={
|
|
@@ -796240,6 +796764,7 @@ new message content.",
|
|
|
796240
796764
|
<PreviewSection
|
|
796241
796765
|
unifiedPreviewProps={
|
|
796242
796766
|
Object {
|
|
796767
|
+
"activePreviewTab": "rcs",
|
|
796243
796768
|
"channel": "WHATSAPP",
|
|
796244
796769
|
"content": Object {
|
|
796245
796770
|
"_id": null,
|
|
@@ -796274,8 +796799,11 @@ new message content.",
|
|
|
796274
796799
|
"isUpdating": false,
|
|
796275
796800
|
"lastModified": undefined,
|
|
796276
796801
|
"onDeviceChange": [Function],
|
|
796802
|
+
"onPreviewTabChange": [Function],
|
|
796277
796803
|
"selectedCustomer": null,
|
|
796278
796804
|
"showDeviceToggle": true,
|
|
796805
|
+
"smsFallbackContent": null,
|
|
796806
|
+
"smsFallbackResolvedText": undefined,
|
|
796279
796807
|
"updatedByName": undefined,
|
|
796280
796808
|
}
|
|
796281
796809
|
}
|
|
@@ -812508,6 +813036,7 @@ new message content.",
|
|
|
812508
813036
|
className="ant-col ant-col-10 cap-column-v2"
|
|
812509
813037
|
>
|
|
812510
813038
|
<UnifiedPreview
|
|
813039
|
+
activePreviewTab="rcs"
|
|
812511
813040
|
channel="WHATSAPP"
|
|
812512
813041
|
content={
|
|
812513
813042
|
Object {
|
|
@@ -813749,9 +814278,11 @@ new message content.",
|
|
|
813749
814278
|
key=".0"
|
|
813750
814279
|
lastModified={null}
|
|
813751
814280
|
onDeviceChange={[Function]}
|
|
814281
|
+
onPreviewTabChange={[Function]}
|
|
813752
814282
|
selectedCustomer={null}
|
|
813753
814283
|
showDeviceToggle={false}
|
|
813754
814284
|
showHeader={false}
|
|
814285
|
+
smsFallbackContent={null}
|
|
813755
814286
|
updatedByName={null}
|
|
813756
814287
|
>
|
|
813757
814288
|
<CapRow
|
|
@@ -819091,6 +819622,7 @@ new message content.",
|
|
|
819091
819622
|
}
|
|
819092
819623
|
}
|
|
819093
819624
|
show={false}
|
|
819625
|
+
smsFallbackContent={null}
|
|
819094
819626
|
testCustomers={Immutable.List []}
|
|
819095
819627
|
testGroups={Immutable.List []}
|
|
819096
819628
|
updatePreviewError={null}
|
|
@@ -821458,6 +821990,7 @@ new message content.",
|
|
|
821458
821990
|
}
|
|
821459
821991
|
}
|
|
821460
821992
|
show={false}
|
|
821993
|
+
smsFallbackContent={null}
|
|
821461
821994
|
templateLayoutType={null}
|
|
821462
821995
|
testCustomers={Immutable.List []}
|
|
821463
821996
|
testGroups={Immutable.List []}
|
|
@@ -821551,6 +822084,7 @@ new message content.",
|
|
|
821551
822084
|
formatMessage={[Function]}
|
|
821552
822085
|
handleSendTestMessage={[Function]}
|
|
821553
822086
|
handleTestEntitiesChange={[Function]}
|
|
822087
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
821554
822088
|
isFetchingTestCustomers={false}
|
|
821555
822089
|
isFetchingTestGroups={false}
|
|
821556
822090
|
isLoadingSenderDetails={false}
|
|
@@ -821560,7 +822094,13 @@ new message content.",
|
|
|
821560
822094
|
renderAddTestCustomerButton={[Function]}
|
|
821561
822095
|
searchValue=""
|
|
821562
822096
|
selectedTestEntities={Array []}
|
|
821563
|
-
|
|
822097
|
+
senderDetailsByChannel={
|
|
822098
|
+
Object {
|
|
822099
|
+
"EMAIL": Array [],
|
|
822100
|
+
"SMS": Array [],
|
|
822101
|
+
"WHATSAPP": Array [],
|
|
822102
|
+
}
|
|
822103
|
+
}
|
|
821564
822104
|
setSearchValue={[Function]}
|
|
821565
822105
|
smsTraiDltEnabled={false}
|
|
821566
822106
|
testEntitiesTreeData={
|
|
@@ -821592,6 +822132,7 @@ new message content.",
|
|
|
821592
822132
|
<PreviewSection
|
|
821593
822133
|
unifiedPreviewProps={
|
|
821594
822134
|
Object {
|
|
822135
|
+
"activePreviewTab": "rcs",
|
|
821595
822136
|
"channel": "WHATSAPP",
|
|
821596
822137
|
"content": Object {
|
|
821597
822138
|
"_id": null,
|
|
@@ -821626,8 +822167,11 @@ new message content.",
|
|
|
821626
822167
|
"isUpdating": false,
|
|
821627
822168
|
"lastModified": undefined,
|
|
821628
822169
|
"onDeviceChange": [Function],
|
|
822170
|
+
"onPreviewTabChange": [Function],
|
|
821629
822171
|
"selectedCustomer": null,
|
|
821630
822172
|
"showDeviceToggle": true,
|
|
822173
|
+
"smsFallbackContent": null,
|
|
822174
|
+
"smsFallbackResolvedText": undefined,
|
|
821631
822175
|
"updatedByName": undefined,
|
|
821632
822176
|
}
|
|
821633
822177
|
}
|