@capillarytech/creatives-library 8.0.316 → 8.0.317-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/unified.js +15 -0
- package/package.json +1 -1
- package/services/api.js +6 -0
- package/services/tests/api.test.js +7 -0
- package/utils/common.js +6 -1
- package/utils/templateVarUtils.js +172 -0
- package/utils/tests/tagValidations.test.js +34 -0
- package/utils/tests/templateVarUtils.test.js +160 -0
- package/v2Components/CapTagList/index.js +25 -22
- package/v2Components/CapTagList/style.scss +48 -0
- package/v2Components/CapTagListWithInput/__tests__/CapTagListWithInput.test.js +63 -0
- package/v2Components/CapTagListWithInput/index.js +4 -0
- package/v2Components/CapWhatsappCTA/index.js +2 -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 +11 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +20 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +133 -4
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +12 -0
- package/v2Components/CommonTestAndPreview/constants.js +38 -0
- package/v2Components/CommonTestAndPreview/index.js +693 -155
- package/v2Components/CommonTestAndPreview/messages.js +41 -3
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +59 -0
- package/v2Components/CommonTestAndPreview/sagas.js +15 -6
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +352 -0
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +269 -1
- 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/SendTestMessage.test.js +25 -4
- 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 +14 -1
- package/v2Components/HtmlEditor/HTMLEditor.js +6 -1
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +1 -0
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +927 -2
- package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +3 -0
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +87 -0
- package/v2Components/SmsFallback/constants.js +73 -0
- package/v2Components/SmsFallback/index.js +956 -0
- package/v2Components/SmsFallback/index.scss +265 -0
- package/v2Components/SmsFallback/messages.js +78 -0
- package/v2Components/SmsFallback/smsFallbackUtils.js +107 -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 +261 -0
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +422 -0
- package/v2Components/SmsFallback/useLocalTemplateList.js +92 -0
- package/v2Components/TestAndPreviewSlidebox/index.js +8 -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/BeeEditor/index.js +3 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +291 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.scss +25 -0
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +255 -0
- package/v2Containers/CommunicationFlow/constants.js +200 -0
- package/v2Containers/CommunicationFlow/index.js +102 -0
- package/v2Containers/CommunicationFlow/messages.js +346 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.js +522 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.scss +170 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/Tests/ChannelSelectionStep.test.js +796 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/CommunicationStrategyStep.js +95 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/Tests/CommunicationStrategyStep.test.js +133 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.js +289 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.scss +70 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/SenderDetails.js +319 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/SenderDetails.scss +69 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/DeliverySettingsSection.test.js +616 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/SenderDetails.test.js +577 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/deliverySettingsConfig.test.js +1111 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/deliverySettingsConfig.js +696 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/index.js +7 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/DynamicControlsStep.js +102 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/DynamicControlsStep.scss +36 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/Tests/DynamicControlsStep.test.js +91 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/MessageTypeStep.js +86 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/Tests/MessageTypeStep.test.js +100 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/utils/getEnabledSteps.js +30 -0
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +43 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +64 -5
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +10 -1
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +29 -4
- package/v2Containers/CreativesContainer/constants.js +12 -0
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +67 -0
- package/v2Containers/CreativesContainer/index.js +289 -93
- package/v2Containers/CreativesContainer/index.scss +51 -1
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +90 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +104 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +110 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +8 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +363 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +20 -10
- 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/index.js +1 -0
- package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +7 -1
- package/v2Containers/EmailWrapper/components/EmailWrapperView.js +3 -0
- package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +20 -2
- package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +16 -1
- package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +3 -0
- package/v2Containers/EmailWrapper/index.js +4 -0
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +1 -0
- package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +9 -0
- package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +19 -0
- package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +3 -0
- package/v2Containers/InAppWrapper/index.js +3 -0
- package/v2Containers/MobilePush/Create/index.js +2 -0
- package/v2Containers/MobilePush/Edit/index.js +2 -0
- package/v2Containers/MobilepushWrapper/index.js +3 -1
- package/v2Containers/Rcs/constants.js +32 -1
- package/v2Containers/Rcs/index.js +951 -873
- package/v2Containers/Rcs/index.scss +85 -6
- package/v2Containers/Rcs/messages.js +10 -1
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +205 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +40834 -1963
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +0 -5
- package/v2Containers/Rcs/tests/index.test.js +41 -38
- package/v2Containers/Rcs/tests/mockData.js +38 -0
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +251 -0
- package/v2Containers/Rcs/tests/utils.test.js +379 -1
- package/v2Containers/Rcs/utils.js +358 -10
- package/v2Containers/Sms/Create/index.js +83 -36
- package/v2Containers/Sms/Edit/index.js +2 -0
- 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 +611 -128
- package/v2Containers/SmsTrai/Edit/index.scss +121 -0
- package/v2Containers/SmsTrai/Edit/messages.js +9 -4
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +4327 -2374
- package/v2Containers/SmsWrapper/index.js +39 -8
- package/v2Containers/TagList/index.js +47 -2
- package/v2Containers/TagList/messages.js +4 -0
- package/v2Containers/TagList/tests/TagList.test.js +122 -20
- package/v2Containers/TagList/tests/mockdata.js +17 -0
- package/v2Containers/Templates/TemplatesActionBar.js +101 -0
- package/v2Containers/Templates/_templates.scss +61 -2
- package/v2Containers/Templates/actions.js +11 -0
- package/v2Containers/Templates/constants.js +2 -0
- package/v2Containers/Templates/index.js +90 -40
- 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 -12
- 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/Viber/index.js +5 -0
- package/v2Containers/WebPush/Create/hooks/useTagManagement.js +0 -2
- package/v2Containers/WebPush/Create/index.js +9 -1
- package/v2Containers/Whatsapp/index.js +8 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +598 -34
- package/v2Containers/Zalo/index.js +2 -0
|
@@ -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
|
|
@@ -19260,6 +19263,7 @@ new message content.",
|
|
|
19260
19263
|
}
|
|
19261
19264
|
}
|
|
19262
19265
|
show={false}
|
|
19266
|
+
smsFallbackContent={null}
|
|
19263
19267
|
testCustomers={Immutable.List []}
|
|
19264
19268
|
testGroups={Immutable.List []}
|
|
19265
19269
|
updatePreviewError={null}
|
|
@@ -21626,6 +21630,7 @@ new message content.",
|
|
|
21626
21630
|
}
|
|
21627
21631
|
}
|
|
21628
21632
|
show={false}
|
|
21633
|
+
smsFallbackContent={null}
|
|
21629
21634
|
templateLayoutType={null}
|
|
21630
21635
|
testCustomers={Immutable.List []}
|
|
21631
21636
|
testGroups={Immutable.List []}
|
|
@@ -21715,6 +21720,7 @@ new message content.",
|
|
|
21715
21720
|
formatMessage={[Function]}
|
|
21716
21721
|
handleSendTestMessage={[Function]}
|
|
21717
21722
|
handleTestEntitiesChange={[Function]}
|
|
21723
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
21718
21724
|
isFetchingTestCustomers={false}
|
|
21719
21725
|
isFetchingTestGroups={false}
|
|
21720
21726
|
isLoadingSenderDetails={false}
|
|
@@ -21722,7 +21728,13 @@ new message content.",
|
|
|
21722
21728
|
onSaveDeliverySettings={[Function]}
|
|
21723
21729
|
registeredSenderIds={Array []}
|
|
21724
21730
|
selectedTestEntities={Array []}
|
|
21725
|
-
|
|
21731
|
+
senderDetailsByChannel={
|
|
21732
|
+
Object {
|
|
21733
|
+
"EMAIL": Array [],
|
|
21734
|
+
"SMS": Array [],
|
|
21735
|
+
"WHATSAPP": Array [],
|
|
21736
|
+
}
|
|
21737
|
+
}
|
|
21726
21738
|
smsTraiDltEnabled={false}
|
|
21727
21739
|
testEntitiesTreeData={
|
|
21728
21740
|
Array [
|
|
@@ -21753,6 +21765,7 @@ new message content.",
|
|
|
21753
21765
|
<PreviewSection
|
|
21754
21766
|
unifiedPreviewProps={
|
|
21755
21767
|
Object {
|
|
21768
|
+
"activePreviewTab": "rcs",
|
|
21756
21769
|
"channel": "WHATSAPP",
|
|
21757
21770
|
"content": Object {
|
|
21758
21771
|
"_id": null,
|
|
@@ -21787,8 +21800,11 @@ new message content.",
|
|
|
21787
21800
|
"isUpdating": false,
|
|
21788
21801
|
"lastModified": undefined,
|
|
21789
21802
|
"onDeviceChange": [Function],
|
|
21803
|
+
"onPreviewTabChange": [Function],
|
|
21790
21804
|
"selectedCustomer": null,
|
|
21791
21805
|
"showDeviceToggle": true,
|
|
21806
|
+
"smsFallbackContent": null,
|
|
21807
|
+
"smsFallbackResolvedText": undefined,
|
|
21792
21808
|
"updatedByName": undefined,
|
|
21793
21809
|
}
|
|
21794
21810
|
}
|
|
@@ -37543,6 +37559,7 @@ new message content.",
|
|
|
37543
37559
|
className="ant-col ant-col-10 cap-column-v2"
|
|
37544
37560
|
>
|
|
37545
37561
|
<UnifiedPreview
|
|
37562
|
+
activePreviewTab="rcs"
|
|
37546
37563
|
channel="WHATSAPP"
|
|
37547
37564
|
content={
|
|
37548
37565
|
Object {
|
|
@@ -38336,9 +38353,11 @@ new message content.",
|
|
|
38336
38353
|
key=".0"
|
|
38337
38354
|
lastModified={null}
|
|
38338
38355
|
onDeviceChange={[Function]}
|
|
38356
|
+
onPreviewTabChange={[Function]}
|
|
38339
38357
|
selectedCustomer={null}
|
|
38340
38358
|
showDeviceToggle={false}
|
|
38341
38359
|
showHeader={false}
|
|
38360
|
+
smsFallbackContent={null}
|
|
38342
38361
|
updatedByName={null}
|
|
38343
38362
|
>
|
|
38344
38363
|
<CapRow
|
|
@@ -43218,6 +43237,7 @@ new message content.",
|
|
|
43218
43237
|
}
|
|
43219
43238
|
}
|
|
43220
43239
|
show={false}
|
|
43240
|
+
smsFallbackContent={null}
|
|
43221
43241
|
testCustomers={Immutable.List []}
|
|
43222
43242
|
testGroups={Immutable.List []}
|
|
43223
43243
|
updatePreviewError={null}
|
|
@@ -45584,6 +45604,7 @@ new message content.",
|
|
|
45584
45604
|
}
|
|
45585
45605
|
}
|
|
45586
45606
|
show={false}
|
|
45607
|
+
smsFallbackContent={null}
|
|
45587
45608
|
templateLayoutType={null}
|
|
45588
45609
|
testCustomers={Immutable.List []}
|
|
45589
45610
|
testGroups={Immutable.List []}
|
|
@@ -45673,6 +45694,7 @@ new message content.",
|
|
|
45673
45694
|
formatMessage={[Function]}
|
|
45674
45695
|
handleSendTestMessage={[Function]}
|
|
45675
45696
|
handleTestEntitiesChange={[Function]}
|
|
45697
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
45676
45698
|
isFetchingTestCustomers={false}
|
|
45677
45699
|
isFetchingTestGroups={false}
|
|
45678
45700
|
isLoadingSenderDetails={false}
|
|
@@ -45680,7 +45702,13 @@ new message content.",
|
|
|
45680
45702
|
onSaveDeliverySettings={[Function]}
|
|
45681
45703
|
registeredSenderIds={Array []}
|
|
45682
45704
|
selectedTestEntities={Array []}
|
|
45683
|
-
|
|
45705
|
+
senderDetailsByChannel={
|
|
45706
|
+
Object {
|
|
45707
|
+
"EMAIL": Array [],
|
|
45708
|
+
"SMS": Array [],
|
|
45709
|
+
"WHATSAPP": Array [],
|
|
45710
|
+
}
|
|
45711
|
+
}
|
|
45684
45712
|
smsTraiDltEnabled={false}
|
|
45685
45713
|
testEntitiesTreeData={
|
|
45686
45714
|
Array [
|
|
@@ -45711,6 +45739,7 @@ new message content.",
|
|
|
45711
45739
|
<PreviewSection
|
|
45712
45740
|
unifiedPreviewProps={
|
|
45713
45741
|
Object {
|
|
45742
|
+
"activePreviewTab": "rcs",
|
|
45714
45743
|
"channel": "WHATSAPP",
|
|
45715
45744
|
"content": Object {
|
|
45716
45745
|
"_id": null,
|
|
@@ -45745,8 +45774,11 @@ new message content.",
|
|
|
45745
45774
|
"isUpdating": false,
|
|
45746
45775
|
"lastModified": undefined,
|
|
45747
45776
|
"onDeviceChange": [Function],
|
|
45777
|
+
"onPreviewTabChange": [Function],
|
|
45748
45778
|
"selectedCustomer": null,
|
|
45749
45779
|
"showDeviceToggle": true,
|
|
45780
|
+
"smsFallbackContent": null,
|
|
45781
|
+
"smsFallbackResolvedText": undefined,
|
|
45750
45782
|
"updatedByName": undefined,
|
|
45751
45783
|
}
|
|
45752
45784
|
}
|
|
@@ -61781,6 +61813,7 @@ new message content.",
|
|
|
61781
61813
|
className="ant-col ant-col-10 cap-column-v2"
|
|
61782
61814
|
>
|
|
61783
61815
|
<UnifiedPreview
|
|
61816
|
+
activePreviewTab="rcs"
|
|
61784
61817
|
channel="WHATSAPP"
|
|
61785
61818
|
content={
|
|
61786
61819
|
Object {
|
|
@@ -62959,9 +62992,11 @@ new message content.",
|
|
|
62959
62992
|
key=".0"
|
|
62960
62993
|
lastModified={null}
|
|
62961
62994
|
onDeviceChange={[Function]}
|
|
62995
|
+
onPreviewTabChange={[Function]}
|
|
62962
62996
|
selectedCustomer={null}
|
|
62963
62997
|
showDeviceToggle={false}
|
|
62964
62998
|
showHeader={false}
|
|
62999
|
+
smsFallbackContent={null}
|
|
62965
63000
|
updatedByName={null}
|
|
62966
63001
|
>
|
|
62967
63002
|
<CapRow
|
|
@@ -68224,6 +68259,7 @@ new message content.",
|
|
|
68224
68259
|
}
|
|
68225
68260
|
}
|
|
68226
68261
|
show={false}
|
|
68262
|
+
smsFallbackContent={null}
|
|
68227
68263
|
testCustomers={Immutable.List []}
|
|
68228
68264
|
testGroups={Immutable.List []}
|
|
68229
68265
|
updatePreviewError={null}
|
|
@@ -70590,6 +70626,7 @@ new message content.",
|
|
|
70590
70626
|
}
|
|
70591
70627
|
}
|
|
70592
70628
|
show={false}
|
|
70629
|
+
smsFallbackContent={null}
|
|
70593
70630
|
templateLayoutType={null}
|
|
70594
70631
|
testCustomers={Immutable.List []}
|
|
70595
70632
|
testGroups={Immutable.List []}
|
|
@@ -70679,6 +70716,7 @@ new message content.",
|
|
|
70679
70716
|
formatMessage={[Function]}
|
|
70680
70717
|
handleSendTestMessage={[Function]}
|
|
70681
70718
|
handleTestEntitiesChange={[Function]}
|
|
70719
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
70682
70720
|
isFetchingTestCustomers={false}
|
|
70683
70721
|
isFetchingTestGroups={false}
|
|
70684
70722
|
isLoadingSenderDetails={false}
|
|
@@ -70686,7 +70724,13 @@ new message content.",
|
|
|
70686
70724
|
onSaveDeliverySettings={[Function]}
|
|
70687
70725
|
registeredSenderIds={Array []}
|
|
70688
70726
|
selectedTestEntities={Array []}
|
|
70689
|
-
|
|
70727
|
+
senderDetailsByChannel={
|
|
70728
|
+
Object {
|
|
70729
|
+
"EMAIL": Array [],
|
|
70730
|
+
"SMS": Array [],
|
|
70731
|
+
"WHATSAPP": Array [],
|
|
70732
|
+
}
|
|
70733
|
+
}
|
|
70690
70734
|
smsTraiDltEnabled={false}
|
|
70691
70735
|
testEntitiesTreeData={
|
|
70692
70736
|
Array [
|
|
@@ -70717,6 +70761,7 @@ new message content.",
|
|
|
70717
70761
|
<PreviewSection
|
|
70718
70762
|
unifiedPreviewProps={
|
|
70719
70763
|
Object {
|
|
70764
|
+
"activePreviewTab": "rcs",
|
|
70720
70765
|
"channel": "WHATSAPP",
|
|
70721
70766
|
"content": Object {
|
|
70722
70767
|
"_id": null,
|
|
@@ -70751,8 +70796,11 @@ new message content.",
|
|
|
70751
70796
|
"isUpdating": false,
|
|
70752
70797
|
"lastModified": undefined,
|
|
70753
70798
|
"onDeviceChange": [Function],
|
|
70799
|
+
"onPreviewTabChange": [Function],
|
|
70754
70800
|
"selectedCustomer": null,
|
|
70755
70801
|
"showDeviceToggle": true,
|
|
70802
|
+
"smsFallbackContent": null,
|
|
70803
|
+
"smsFallbackResolvedText": undefined,
|
|
70756
70804
|
"updatedByName": undefined,
|
|
70757
70805
|
}
|
|
70758
70806
|
}
|
|
@@ -87662,6 +87710,7 @@ new message content.",
|
|
|
87662
87710
|
className="ant-col ant-col-10 cap-column-v2"
|
|
87663
87711
|
>
|
|
87664
87712
|
<UnifiedPreview
|
|
87713
|
+
activePreviewTab="rcs"
|
|
87665
87714
|
channel="WHATSAPP"
|
|
87666
87715
|
content={
|
|
87667
87716
|
Object {
|
|
@@ -89610,9 +89659,11 @@ new message content.",
|
|
|
89610
89659
|
key=".0"
|
|
89611
89660
|
lastModified={null}
|
|
89612
89661
|
onDeviceChange={[Function]}
|
|
89662
|
+
onPreviewTabChange={[Function]}
|
|
89613
89663
|
selectedCustomer={null}
|
|
89614
89664
|
showDeviceToggle={false}
|
|
89615
89665
|
showHeader={false}
|
|
89666
|
+
smsFallbackContent={null}
|
|
89616
89667
|
updatedByName={null}
|
|
89617
89668
|
>
|
|
89618
89669
|
<CapRow
|
|
@@ -95647,6 +95698,7 @@ new message content.",
|
|
|
95647
95698
|
}
|
|
95648
95699
|
}
|
|
95649
95700
|
show={false}
|
|
95701
|
+
smsFallbackContent={null}
|
|
95650
95702
|
testCustomers={Immutable.List []}
|
|
95651
95703
|
testGroups={Immutable.List []}
|
|
95652
95704
|
updatePreviewError={null}
|
|
@@ -98013,6 +98065,7 @@ new message content.",
|
|
|
98013
98065
|
}
|
|
98014
98066
|
}
|
|
98015
98067
|
show={false}
|
|
98068
|
+
smsFallbackContent={null}
|
|
98016
98069
|
templateLayoutType={null}
|
|
98017
98070
|
testCustomers={Immutable.List []}
|
|
98018
98071
|
testGroups={Immutable.List []}
|
|
@@ -98102,6 +98155,7 @@ new message content.",
|
|
|
98102
98155
|
formatMessage={[Function]}
|
|
98103
98156
|
handleSendTestMessage={[Function]}
|
|
98104
98157
|
handleTestEntitiesChange={[Function]}
|
|
98158
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
98105
98159
|
isFetchingTestCustomers={false}
|
|
98106
98160
|
isFetchingTestGroups={false}
|
|
98107
98161
|
isLoadingSenderDetails={false}
|
|
@@ -98109,7 +98163,13 @@ new message content.",
|
|
|
98109
98163
|
onSaveDeliverySettings={[Function]}
|
|
98110
98164
|
registeredSenderIds={Array []}
|
|
98111
98165
|
selectedTestEntities={Array []}
|
|
98112
|
-
|
|
98166
|
+
senderDetailsByChannel={
|
|
98167
|
+
Object {
|
|
98168
|
+
"EMAIL": Array [],
|
|
98169
|
+
"SMS": Array [],
|
|
98170
|
+
"WHATSAPP": Array [],
|
|
98171
|
+
}
|
|
98172
|
+
}
|
|
98113
98173
|
smsTraiDltEnabled={false}
|
|
98114
98174
|
testEntitiesTreeData={
|
|
98115
98175
|
Array [
|
|
@@ -98140,6 +98200,7 @@ new message content.",
|
|
|
98140
98200
|
<PreviewSection
|
|
98141
98201
|
unifiedPreviewProps={
|
|
98142
98202
|
Object {
|
|
98203
|
+
"activePreviewTab": "rcs",
|
|
98143
98204
|
"channel": "WHATSAPP",
|
|
98144
98205
|
"content": Object {
|
|
98145
98206
|
"_id": null,
|
|
@@ -98174,8 +98235,11 @@ new message content.",
|
|
|
98174
98235
|
"isUpdating": false,
|
|
98175
98236
|
"lastModified": undefined,
|
|
98176
98237
|
"onDeviceChange": [Function],
|
|
98238
|
+
"onPreviewTabChange": [Function],
|
|
98177
98239
|
"selectedCustomer": null,
|
|
98178
98240
|
"showDeviceToggle": true,
|
|
98241
|
+
"smsFallbackContent": null,
|
|
98242
|
+
"smsFallbackResolvedText": undefined,
|
|
98179
98243
|
"updatedByName": undefined,
|
|
98180
98244
|
}
|
|
98181
98245
|
}
|
|
@@ -112020,6 +112084,7 @@ new message content.",
|
|
|
112020
112084
|
className="ant-col ant-col-10 cap-column-v2"
|
|
112021
112085
|
>
|
|
112022
112086
|
<UnifiedPreview
|
|
112087
|
+
activePreviewTab="rcs"
|
|
112023
112088
|
channel="WHATSAPP"
|
|
112024
112089
|
content={
|
|
112025
112090
|
Object {
|
|
@@ -112725,9 +112790,11 @@ new message content.",
|
|
|
112725
112790
|
key=".0"
|
|
112726
112791
|
lastModified={null}
|
|
112727
112792
|
onDeviceChange={[Function]}
|
|
112793
|
+
onPreviewTabChange={[Function]}
|
|
112728
112794
|
selectedCustomer={null}
|
|
112729
112795
|
showDeviceToggle={false}
|
|
112730
112796
|
showHeader={false}
|
|
112797
|
+
smsFallbackContent={null}
|
|
112731
112798
|
updatedByName={null}
|
|
112732
112799
|
>
|
|
112733
112800
|
<CapRow
|
|
@@ -117519,6 +117586,7 @@ new message content.",
|
|
|
117519
117586
|
}
|
|
117520
117587
|
}
|
|
117521
117588
|
show={false}
|
|
117589
|
+
smsFallbackContent={null}
|
|
117522
117590
|
testCustomers={Immutable.List []}
|
|
117523
117591
|
testGroups={Immutable.List []}
|
|
117524
117592
|
updatePreviewError={null}
|
|
@@ -119885,6 +119953,7 @@ new message content.",
|
|
|
119885
119953
|
}
|
|
119886
119954
|
}
|
|
119887
119955
|
show={false}
|
|
119956
|
+
smsFallbackContent={null}
|
|
119888
119957
|
templateLayoutType={null}
|
|
119889
119958
|
testCustomers={Immutable.List []}
|
|
119890
119959
|
testGroups={Immutable.List []}
|
|
@@ -119974,6 +120043,7 @@ new message content.",
|
|
|
119974
120043
|
formatMessage={[Function]}
|
|
119975
120044
|
handleSendTestMessage={[Function]}
|
|
119976
120045
|
handleTestEntitiesChange={[Function]}
|
|
120046
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
119977
120047
|
isFetchingTestCustomers={false}
|
|
119978
120048
|
isFetchingTestGroups={false}
|
|
119979
120049
|
isLoadingSenderDetails={false}
|
|
@@ -119981,7 +120051,13 @@ new message content.",
|
|
|
119981
120051
|
onSaveDeliverySettings={[Function]}
|
|
119982
120052
|
registeredSenderIds={Array []}
|
|
119983
120053
|
selectedTestEntities={Array []}
|
|
119984
|
-
|
|
120054
|
+
senderDetailsByChannel={
|
|
120055
|
+
Object {
|
|
120056
|
+
"EMAIL": Array [],
|
|
120057
|
+
"SMS": Array [],
|
|
120058
|
+
"WHATSAPP": Array [],
|
|
120059
|
+
}
|
|
120060
|
+
}
|
|
119985
120061
|
smsTraiDltEnabled={false}
|
|
119986
120062
|
testEntitiesTreeData={
|
|
119987
120063
|
Array [
|
|
@@ -120012,6 +120088,7 @@ new message content.",
|
|
|
120012
120088
|
<PreviewSection
|
|
120013
120089
|
unifiedPreviewProps={
|
|
120014
120090
|
Object {
|
|
120091
|
+
"activePreviewTab": "rcs",
|
|
120015
120092
|
"channel": "WHATSAPP",
|
|
120016
120093
|
"content": Object {
|
|
120017
120094
|
"_id": null,
|
|
@@ -120046,8 +120123,11 @@ new message content.",
|
|
|
120046
120123
|
"isUpdating": false,
|
|
120047
120124
|
"lastModified": undefined,
|
|
120048
120125
|
"onDeviceChange": [Function],
|
|
120126
|
+
"onPreviewTabChange": [Function],
|
|
120049
120127
|
"selectedCustomer": null,
|
|
120050
120128
|
"showDeviceToggle": true,
|
|
120129
|
+
"smsFallbackContent": null,
|
|
120130
|
+
"smsFallbackResolvedText": undefined,
|
|
120051
120131
|
"updatedByName": undefined,
|
|
120052
120132
|
}
|
|
120053
120133
|
}
|
|
@@ -133882,6 +133962,7 @@ new message content.",
|
|
|
133882
133962
|
className="ant-col ant-col-10 cap-column-v2"
|
|
133883
133963
|
>
|
|
133884
133964
|
<UnifiedPreview
|
|
133965
|
+
activePreviewTab="rcs"
|
|
133885
133966
|
channel="WHATSAPP"
|
|
133886
133967
|
content={
|
|
133887
133968
|
Object {
|
|
@@ -134577,9 +134658,11 @@ new message content.",
|
|
|
134577
134658
|
key=".0"
|
|
134578
134659
|
lastModified={null}
|
|
134579
134660
|
onDeviceChange={[Function]}
|
|
134661
|
+
onPreviewTabChange={[Function]}
|
|
134580
134662
|
selectedCustomer={null}
|
|
134581
134663
|
showDeviceToggle={false}
|
|
134582
134664
|
showHeader={false}
|
|
134665
|
+
smsFallbackContent={null}
|
|
134583
134666
|
updatedByName={null}
|
|
134584
134667
|
>
|
|
134585
134668
|
<CapRow
|
|
@@ -139361,6 +139444,7 @@ new message content.",
|
|
|
139361
139444
|
}
|
|
139362
139445
|
}
|
|
139363
139446
|
show={false}
|
|
139447
|
+
smsFallbackContent={null}
|
|
139364
139448
|
testCustomers={Immutable.List []}
|
|
139365
139449
|
testGroups={Immutable.List []}
|
|
139366
139450
|
updatePreviewError={null}
|
|
@@ -141727,6 +141811,7 @@ new message content.",
|
|
|
141727
141811
|
}
|
|
141728
141812
|
}
|
|
141729
141813
|
show={false}
|
|
141814
|
+
smsFallbackContent={null}
|
|
141730
141815
|
templateLayoutType={null}
|
|
141731
141816
|
testCustomers={Immutable.List []}
|
|
141732
141817
|
testGroups={Immutable.List []}
|
|
@@ -141816,6 +141901,7 @@ new message content.",
|
|
|
141816
141901
|
formatMessage={[Function]}
|
|
141817
141902
|
handleSendTestMessage={[Function]}
|
|
141818
141903
|
handleTestEntitiesChange={[Function]}
|
|
141904
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
141819
141905
|
isFetchingTestCustomers={false}
|
|
141820
141906
|
isFetchingTestGroups={false}
|
|
141821
141907
|
isLoadingSenderDetails={false}
|
|
@@ -141823,7 +141909,13 @@ new message content.",
|
|
|
141823
141909
|
onSaveDeliverySettings={[Function]}
|
|
141824
141910
|
registeredSenderIds={Array []}
|
|
141825
141911
|
selectedTestEntities={Array []}
|
|
141826
|
-
|
|
141912
|
+
senderDetailsByChannel={
|
|
141913
|
+
Object {
|
|
141914
|
+
"EMAIL": Array [],
|
|
141915
|
+
"SMS": Array [],
|
|
141916
|
+
"WHATSAPP": Array [],
|
|
141917
|
+
}
|
|
141918
|
+
}
|
|
141827
141919
|
smsTraiDltEnabled={false}
|
|
141828
141920
|
testEntitiesTreeData={
|
|
141829
141921
|
Array [
|
|
@@ -141854,6 +141946,7 @@ new message content.",
|
|
|
141854
141946
|
<PreviewSection
|
|
141855
141947
|
unifiedPreviewProps={
|
|
141856
141948
|
Object {
|
|
141949
|
+
"activePreviewTab": "rcs",
|
|
141857
141950
|
"channel": "WHATSAPP",
|
|
141858
141951
|
"content": Object {
|
|
141859
141952
|
"_id": null,
|
|
@@ -141888,8 +141981,11 @@ new message content.",
|
|
|
141888
141981
|
"isUpdating": false,
|
|
141889
141982
|
"lastModified": undefined,
|
|
141890
141983
|
"onDeviceChange": [Function],
|
|
141984
|
+
"onPreviewTabChange": [Function],
|
|
141891
141985
|
"selectedCustomer": null,
|
|
141892
141986
|
"showDeviceToggle": true,
|
|
141987
|
+
"smsFallbackContent": null,
|
|
141988
|
+
"smsFallbackResolvedText": undefined,
|
|
141893
141989
|
"updatedByName": undefined,
|
|
141894
141990
|
}
|
|
141895
141991
|
}
|
|
@@ -158316,6 +158412,7 @@ new message content.",
|
|
|
158316
158412
|
className="ant-col ant-col-10 cap-column-v2"
|
|
158317
158413
|
>
|
|
158318
158414
|
<UnifiedPreview
|
|
158415
|
+
activePreviewTab="rcs"
|
|
158319
158416
|
channel="WHATSAPP"
|
|
158320
158417
|
content={
|
|
158321
158418
|
Object {
|
|
@@ -159781,9 +159878,11 @@ new message content.",
|
|
|
159781
159878
|
key=".0"
|
|
159782
159879
|
lastModified={null}
|
|
159783
159880
|
onDeviceChange={[Function]}
|
|
159881
|
+
onPreviewTabChange={[Function]}
|
|
159784
159882
|
selectedCustomer={null}
|
|
159785
159883
|
showDeviceToggle={false}
|
|
159786
159884
|
showHeader={false}
|
|
159885
|
+
smsFallbackContent={null}
|
|
159787
159886
|
updatedByName={null}
|
|
159788
159887
|
>
|
|
159789
159888
|
<CapRow
|
|
@@ -165335,6 +165434,7 @@ new message content.",
|
|
|
165335
165434
|
}
|
|
165336
165435
|
}
|
|
165337
165436
|
show={false}
|
|
165437
|
+
smsFallbackContent={null}
|
|
165338
165438
|
testCustomers={Immutable.List []}
|
|
165339
165439
|
testGroups={Immutable.List []}
|
|
165340
165440
|
updatePreviewError={null}
|
|
@@ -167701,6 +167801,7 @@ new message content.",
|
|
|
167701
167801
|
}
|
|
167702
167802
|
}
|
|
167703
167803
|
show={false}
|
|
167804
|
+
smsFallbackContent={null}
|
|
167704
167805
|
templateLayoutType={null}
|
|
167705
167806
|
testCustomers={Immutable.List []}
|
|
167706
167807
|
testGroups={Immutable.List []}
|
|
@@ -167790,6 +167891,7 @@ new message content.",
|
|
|
167790
167891
|
formatMessage={[Function]}
|
|
167791
167892
|
handleSendTestMessage={[Function]}
|
|
167792
167893
|
handleTestEntitiesChange={[Function]}
|
|
167894
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
167793
167895
|
isFetchingTestCustomers={false}
|
|
167794
167896
|
isFetchingTestGroups={false}
|
|
167795
167897
|
isLoadingSenderDetails={false}
|
|
@@ -167797,7 +167899,13 @@ new message content.",
|
|
|
167797
167899
|
onSaveDeliverySettings={[Function]}
|
|
167798
167900
|
registeredSenderIds={Array []}
|
|
167799
167901
|
selectedTestEntities={Array []}
|
|
167800
|
-
|
|
167902
|
+
senderDetailsByChannel={
|
|
167903
|
+
Object {
|
|
167904
|
+
"EMAIL": Array [],
|
|
167905
|
+
"SMS": Array [],
|
|
167906
|
+
"WHATSAPP": Array [],
|
|
167907
|
+
}
|
|
167908
|
+
}
|
|
167801
167909
|
smsTraiDltEnabled={false}
|
|
167802
167910
|
testEntitiesTreeData={
|
|
167803
167911
|
Array [
|
|
@@ -167828,6 +167936,7 @@ new message content.",
|
|
|
167828
167936
|
<PreviewSection
|
|
167829
167937
|
unifiedPreviewProps={
|
|
167830
167938
|
Object {
|
|
167939
|
+
"activePreviewTab": "rcs",
|
|
167831
167940
|
"channel": "WHATSAPP",
|
|
167832
167941
|
"content": Object {
|
|
167833
167942
|
"_id": null,
|
|
@@ -167862,8 +167971,11 @@ new message content.",
|
|
|
167862
167971
|
"isUpdating": false,
|
|
167863
167972
|
"lastModified": undefined,
|
|
167864
167973
|
"onDeviceChange": [Function],
|
|
167974
|
+
"onPreviewTabChange": [Function],
|
|
167865
167975
|
"selectedCustomer": null,
|
|
167866
167976
|
"showDeviceToggle": true,
|
|
167977
|
+
"smsFallbackContent": null,
|
|
167978
|
+
"smsFallbackResolvedText": undefined,
|
|
167867
167979
|
"updatedByName": undefined,
|
|
167868
167980
|
}
|
|
167869
167981
|
}
|
|
@@ -184570,6 +184682,7 @@ new message content.",
|
|
|
184570
184682
|
className="ant-col ant-col-10 cap-column-v2"
|
|
184571
184683
|
>
|
|
184572
184684
|
<UnifiedPreview
|
|
184685
|
+
activePreviewTab="rcs"
|
|
184573
184686
|
channel="WHATSAPP"
|
|
184574
184687
|
content={
|
|
184575
184688
|
Object {
|
|
@@ -186420,9 +186533,11 @@ new message content.",
|
|
|
186420
186533
|
key=".0"
|
|
186421
186534
|
lastModified={null}
|
|
186422
186535
|
onDeviceChange={[Function]}
|
|
186536
|
+
onPreviewTabChange={[Function]}
|
|
186423
186537
|
selectedCustomer={null}
|
|
186424
186538
|
showDeviceToggle={false}
|
|
186425
186539
|
showHeader={false}
|
|
186540
|
+
smsFallbackContent={null}
|
|
186426
186541
|
updatedByName={null}
|
|
186427
186542
|
>
|
|
186428
186543
|
<CapRow
|
|
@@ -192357,6 +192472,7 @@ new message content.",
|
|
|
192357
192472
|
}
|
|
192358
192473
|
}
|
|
192359
192474
|
show={false}
|
|
192475
|
+
smsFallbackContent={null}
|
|
192360
192476
|
testCustomers={Immutable.List []}
|
|
192361
192477
|
testGroups={Immutable.List []}
|
|
192362
192478
|
updatePreviewError={null}
|
|
@@ -194723,6 +194839,7 @@ new message content.",
|
|
|
194723
194839
|
}
|
|
194724
194840
|
}
|
|
194725
194841
|
show={false}
|
|
194842
|
+
smsFallbackContent={null}
|
|
194726
194843
|
templateLayoutType={null}
|
|
194727
194844
|
testCustomers={Immutable.List []}
|
|
194728
194845
|
testGroups={Immutable.List []}
|
|
@@ -194812,6 +194929,7 @@ new message content.",
|
|
|
194812
194929
|
formatMessage={[Function]}
|
|
194813
194930
|
handleSendTestMessage={[Function]}
|
|
194814
194931
|
handleTestEntitiesChange={[Function]}
|
|
194932
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
194815
194933
|
isFetchingTestCustomers={false}
|
|
194816
194934
|
isFetchingTestGroups={false}
|
|
194817
194935
|
isLoadingSenderDetails={false}
|
|
@@ -194819,7 +194937,13 @@ new message content.",
|
|
|
194819
194937
|
onSaveDeliverySettings={[Function]}
|
|
194820
194938
|
registeredSenderIds={Array []}
|
|
194821
194939
|
selectedTestEntities={Array []}
|
|
194822
|
-
|
|
194940
|
+
senderDetailsByChannel={
|
|
194941
|
+
Object {
|
|
194942
|
+
"EMAIL": Array [],
|
|
194943
|
+
"SMS": Array [],
|
|
194944
|
+
"WHATSAPP": Array [],
|
|
194945
|
+
}
|
|
194946
|
+
}
|
|
194823
194947
|
smsTraiDltEnabled={false}
|
|
194824
194948
|
testEntitiesTreeData={
|
|
194825
194949
|
Array [
|
|
@@ -194850,6 +194974,7 @@ new message content.",
|
|
|
194850
194974
|
<PreviewSection
|
|
194851
194975
|
unifiedPreviewProps={
|
|
194852
194976
|
Object {
|
|
194977
|
+
"activePreviewTab": "rcs",
|
|
194853
194978
|
"channel": "WHATSAPP",
|
|
194854
194979
|
"content": Object {
|
|
194855
194980
|
"_id": null,
|
|
@@ -194884,8 +195009,11 @@ new message content.",
|
|
|
194884
195009
|
"isUpdating": false,
|
|
194885
195010
|
"lastModified": undefined,
|
|
194886
195011
|
"onDeviceChange": [Function],
|
|
195012
|
+
"onPreviewTabChange": [Function],
|
|
194887
195013
|
"selectedCustomer": null,
|
|
194888
195014
|
"showDeviceToggle": true,
|
|
195015
|
+
"smsFallbackContent": null,
|
|
195016
|
+
"smsFallbackResolvedText": undefined,
|
|
194889
195017
|
"updatedByName": undefined,
|
|
194890
195018
|
}
|
|
194891
195019
|
}
|
|
@@ -212467,6 +212595,7 @@ new message content.",
|
|
|
212467
212595
|
className="ant-col ant-col-10 cap-column-v2"
|
|
212468
212596
|
>
|
|
212469
212597
|
<UnifiedPreview
|
|
212598
|
+
activePreviewTab="rcs"
|
|
212470
212599
|
channel="WHATSAPP"
|
|
212471
212600
|
content={
|
|
212472
212601
|
Object {
|
|
@@ -215087,9 +215216,11 @@ new message content.",
|
|
|
215087
215216
|
key=".0"
|
|
215088
215217
|
lastModified={null}
|
|
215089
215218
|
onDeviceChange={[Function]}
|
|
215219
|
+
onPreviewTabChange={[Function]}
|
|
215090
215220
|
selectedCustomer={null}
|
|
215091
215221
|
showDeviceToggle={false}
|
|
215092
215222
|
showHeader={false}
|
|
215223
|
+
smsFallbackContent={null}
|
|
215093
215224
|
updatedByName={null}
|
|
215094
215225
|
>
|
|
215095
215226
|
<CapRow
|
|
@@ -221796,6 +221927,7 @@ new message content.",
|
|
|
221796
221927
|
}
|
|
221797
221928
|
}
|
|
221798
221929
|
show={false}
|
|
221930
|
+
smsFallbackContent={null}
|
|
221799
221931
|
testCustomers={Immutable.List []}
|
|
221800
221932
|
testGroups={Immutable.List []}
|
|
221801
221933
|
updatePreviewError={null}
|
|
@@ -224162,6 +224294,7 @@ new message content.",
|
|
|
224162
224294
|
}
|
|
224163
224295
|
}
|
|
224164
224296
|
show={false}
|
|
224297
|
+
smsFallbackContent={null}
|
|
224165
224298
|
templateLayoutType={null}
|
|
224166
224299
|
testCustomers={Immutable.List []}
|
|
224167
224300
|
testGroups={Immutable.List []}
|
|
@@ -224251,6 +224384,7 @@ new message content.",
|
|
|
224251
224384
|
formatMessage={[Function]}
|
|
224252
224385
|
handleSendTestMessage={[Function]}
|
|
224253
224386
|
handleTestEntitiesChange={[Function]}
|
|
224387
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
224254
224388
|
isFetchingTestCustomers={false}
|
|
224255
224389
|
isFetchingTestGroups={false}
|
|
224256
224390
|
isLoadingSenderDetails={false}
|
|
@@ -224258,7 +224392,13 @@ new message content.",
|
|
|
224258
224392
|
onSaveDeliverySettings={[Function]}
|
|
224259
224393
|
registeredSenderIds={Array []}
|
|
224260
224394
|
selectedTestEntities={Array []}
|
|
224261
|
-
|
|
224395
|
+
senderDetailsByChannel={
|
|
224396
|
+
Object {
|
|
224397
|
+
"EMAIL": Array [],
|
|
224398
|
+
"SMS": Array [],
|
|
224399
|
+
"WHATSAPP": Array [],
|
|
224400
|
+
}
|
|
224401
|
+
}
|
|
224262
224402
|
smsTraiDltEnabled={false}
|
|
224263
224403
|
testEntitiesTreeData={
|
|
224264
224404
|
Array [
|
|
@@ -224289,6 +224429,7 @@ new message content.",
|
|
|
224289
224429
|
<PreviewSection
|
|
224290
224430
|
unifiedPreviewProps={
|
|
224291
224431
|
Object {
|
|
224432
|
+
"activePreviewTab": "rcs",
|
|
224292
224433
|
"channel": "WHATSAPP",
|
|
224293
224434
|
"content": Object {
|
|
224294
224435
|
"_id": null,
|
|
@@ -224323,8 +224464,11 @@ new message content.",
|
|
|
224323
224464
|
"isUpdating": false,
|
|
224324
224465
|
"lastModified": undefined,
|
|
224325
224466
|
"onDeviceChange": [Function],
|
|
224467
|
+
"onPreviewTabChange": [Function],
|
|
224326
224468
|
"selectedCustomer": null,
|
|
224327
224469
|
"showDeviceToggle": true,
|
|
224470
|
+
"smsFallbackContent": null,
|
|
224471
|
+
"smsFallbackResolvedText": undefined,
|
|
224328
224472
|
"updatedByName": undefined,
|
|
224329
224473
|
}
|
|
224330
224474
|
}
|
|
@@ -242180,6 +242324,7 @@ new message content.",
|
|
|
242180
242324
|
className="ant-col ant-col-10 cap-column-v2"
|
|
242181
242325
|
>
|
|
242182
242326
|
<UnifiedPreview
|
|
242327
|
+
activePreviewTab="rcs"
|
|
242183
242328
|
channel="WHATSAPP"
|
|
242184
242329
|
content={
|
|
242185
242330
|
Object {
|
|
@@ -245185,9 +245330,11 @@ new message content.",
|
|
|
245185
245330
|
key=".0"
|
|
245186
245331
|
lastModified={null}
|
|
245187
245332
|
onDeviceChange={[Function]}
|
|
245333
|
+
onPreviewTabChange={[Function]}
|
|
245188
245334
|
selectedCustomer={null}
|
|
245189
245335
|
showDeviceToggle={false}
|
|
245190
245336
|
showHeader={false}
|
|
245337
|
+
smsFallbackContent={null}
|
|
245191
245338
|
updatedByName={null}
|
|
245192
245339
|
>
|
|
245193
245340
|
<CapRow
|
|
@@ -252277,6 +252424,7 @@ new message content.",
|
|
|
252277
252424
|
}
|
|
252278
252425
|
}
|
|
252279
252426
|
show={false}
|
|
252427
|
+
smsFallbackContent={null}
|
|
252280
252428
|
testCustomers={Immutable.List []}
|
|
252281
252429
|
testGroups={Immutable.List []}
|
|
252282
252430
|
updatePreviewError={null}
|
|
@@ -254643,6 +254791,7 @@ new message content.",
|
|
|
254643
254791
|
}
|
|
254644
254792
|
}
|
|
254645
254793
|
show={false}
|
|
254794
|
+
smsFallbackContent={null}
|
|
254646
254795
|
templateLayoutType={null}
|
|
254647
254796
|
testCustomers={Immutable.List []}
|
|
254648
254797
|
testGroups={Immutable.List []}
|
|
@@ -254732,6 +254881,7 @@ new message content.",
|
|
|
254732
254881
|
formatMessage={[Function]}
|
|
254733
254882
|
handleSendTestMessage={[Function]}
|
|
254734
254883
|
handleTestEntitiesChange={[Function]}
|
|
254884
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
254735
254885
|
isFetchingTestCustomers={false}
|
|
254736
254886
|
isFetchingTestGroups={false}
|
|
254737
254887
|
isLoadingSenderDetails={false}
|
|
@@ -254739,7 +254889,13 @@ new message content.",
|
|
|
254739
254889
|
onSaveDeliverySettings={[Function]}
|
|
254740
254890
|
registeredSenderIds={Array []}
|
|
254741
254891
|
selectedTestEntities={Array []}
|
|
254742
|
-
|
|
254892
|
+
senderDetailsByChannel={
|
|
254893
|
+
Object {
|
|
254894
|
+
"EMAIL": Array [],
|
|
254895
|
+
"SMS": Array [],
|
|
254896
|
+
"WHATSAPP": Array [],
|
|
254897
|
+
}
|
|
254898
|
+
}
|
|
254743
254899
|
smsTraiDltEnabled={false}
|
|
254744
254900
|
testEntitiesTreeData={
|
|
254745
254901
|
Array [
|
|
@@ -254770,6 +254926,7 @@ new message content.",
|
|
|
254770
254926
|
<PreviewSection
|
|
254771
254927
|
unifiedPreviewProps={
|
|
254772
254928
|
Object {
|
|
254929
|
+
"activePreviewTab": "rcs",
|
|
254773
254930
|
"channel": "WHATSAPP",
|
|
254774
254931
|
"content": Object {
|
|
254775
254932
|
"_id": null,
|
|
@@ -254804,8 +254961,11 @@ new message content.",
|
|
|
254804
254961
|
"isUpdating": false,
|
|
254805
254962
|
"lastModified": undefined,
|
|
254806
254963
|
"onDeviceChange": [Function],
|
|
254964
|
+
"onPreviewTabChange": [Function],
|
|
254807
254965
|
"selectedCustomer": null,
|
|
254808
254966
|
"showDeviceToggle": true,
|
|
254967
|
+
"smsFallbackContent": null,
|
|
254968
|
+
"smsFallbackResolvedText": undefined,
|
|
254809
254969
|
"updatedByName": undefined,
|
|
254810
254970
|
}
|
|
254811
254971
|
}
|
|
@@ -258433,6 +258593,7 @@ Click {{3}} to unsubscribe'",
|
|
|
258433
258593
|
onContextChange={[Function]}
|
|
258434
258594
|
onTagSelect={[Function]}
|
|
258435
258595
|
tags={Array []}
|
|
258596
|
+
waitEventContextTags={Object {}}
|
|
258436
258597
|
/>
|
|
258437
258598
|
}
|
|
258438
258599
|
title={
|
|
@@ -258485,6 +258646,7 @@ Click {{3}} to unsubscribe'",
|
|
|
258485
258646
|
onContextChange={[Function]}
|
|
258486
258647
|
onTagSelect={[Function]}
|
|
258487
258648
|
tags={Array []}
|
|
258649
|
+
waitEventContextTags={Object {}}
|
|
258488
258650
|
>
|
|
258489
258651
|
<div
|
|
258490
258652
|
className="tag-mock"
|
|
@@ -258502,6 +258664,7 @@ Click {{3}} to unsubscribe'",
|
|
|
258502
258664
|
onContextChange={[Function]}
|
|
258503
258665
|
onTagSelect={[Function]}
|
|
258504
258666
|
tags={Array []}
|
|
258667
|
+
waitEventContextTags={Object {}}
|
|
258505
258668
|
>
|
|
258506
258669
|
TagList
|
|
258507
258670
|
</div>
|
|
@@ -260051,6 +260214,7 @@ T&C'
|
|
|
260051
260214
|
key=".2"
|
|
260052
260215
|
tags={Array []}
|
|
260053
260216
|
updateHandler={[Function]}
|
|
260217
|
+
waitEventContextTags={Object {}}
|
|
260054
260218
|
>
|
|
260055
260219
|
<CapWhatsappCTA
|
|
260056
260220
|
ctaData={
|
|
@@ -262326,6 +262490,7 @@ new message content.",
|
|
|
262326
262490
|
isEditFlow={true}
|
|
262327
262491
|
tags={Array []}
|
|
262328
262492
|
updateHandler={[Function]}
|
|
262493
|
+
waitEventContextTags={Object {}}
|
|
262329
262494
|
>
|
|
262330
262495
|
<CapRow
|
|
262331
262496
|
align="middle"
|
|
@@ -263264,6 +263429,7 @@ new message content.",
|
|
|
263264
263429
|
className="ant-col ant-col-10 cap-column-v2"
|
|
263265
263430
|
>
|
|
263266
263431
|
<UnifiedPreview
|
|
263432
|
+
activePreviewTab="rcs"
|
|
263267
263433
|
channel="WHATSAPP"
|
|
263268
263434
|
content={
|
|
263269
263435
|
Object {
|
|
@@ -264250,9 +264416,11 @@ undefined",
|
|
|
264250
264416
|
key=".0"
|
|
264251
264417
|
lastModified={null}
|
|
264252
264418
|
onDeviceChange={[Function]}
|
|
264419
|
+
onPreviewTabChange={[Function]}
|
|
264253
264420
|
selectedCustomer={null}
|
|
264254
264421
|
showDeviceToggle={false}
|
|
264255
264422
|
showHeader={false}
|
|
264423
|
+
smsFallbackContent={null}
|
|
264256
264424
|
updatedByName={null}
|
|
264257
264425
|
>
|
|
264258
264426
|
<CapRow
|
|
@@ -268691,6 +268859,7 @@ new message content.",
|
|
|
268691
268859
|
}
|
|
268692
268860
|
}
|
|
268693
268861
|
show={false}
|
|
268862
|
+
smsFallbackContent={null}
|
|
268694
268863
|
testCustomers={Immutable.List []}
|
|
268695
268864
|
testGroups={Immutable.List []}
|
|
268696
268865
|
updatePreviewError={null}
|
|
@@ -271105,6 +271274,7 @@ new message content.",
|
|
|
271105
271274
|
}
|
|
271106
271275
|
}
|
|
271107
271276
|
show={false}
|
|
271277
|
+
smsFallbackContent={null}
|
|
271108
271278
|
templateLayoutType={null}
|
|
271109
271279
|
testCustomers={Immutable.List []}
|
|
271110
271280
|
testGroups={Immutable.List []}
|
|
@@ -271218,6 +271388,7 @@ undefined",
|
|
|
271218
271388
|
formatMessage={[Function]}
|
|
271219
271389
|
handleSendTestMessage={[Function]}
|
|
271220
271390
|
handleTestEntitiesChange={[Function]}
|
|
271391
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
271221
271392
|
isFetchingTestCustomers={false}
|
|
271222
271393
|
isFetchingTestGroups={false}
|
|
271223
271394
|
isLoadingSenderDetails={false}
|
|
@@ -271225,7 +271396,13 @@ undefined",
|
|
|
271225
271396
|
onSaveDeliverySettings={[Function]}
|
|
271226
271397
|
registeredSenderIds={Array []}
|
|
271227
271398
|
selectedTestEntities={Array []}
|
|
271228
|
-
|
|
271399
|
+
senderDetailsByChannel={
|
|
271400
|
+
Object {
|
|
271401
|
+
"EMAIL": Array [],
|
|
271402
|
+
"SMS": Array [],
|
|
271403
|
+
"WHATSAPP": Array [],
|
|
271404
|
+
}
|
|
271405
|
+
}
|
|
271229
271406
|
smsTraiDltEnabled={false}
|
|
271230
271407
|
testEntitiesTreeData={
|
|
271231
271408
|
Array [
|
|
@@ -271256,6 +271433,7 @@ undefined",
|
|
|
271256
271433
|
<PreviewSection
|
|
271257
271434
|
unifiedPreviewProps={
|
|
271258
271435
|
Object {
|
|
271436
|
+
"activePreviewTab": "rcs",
|
|
271259
271437
|
"channel": "WHATSAPP",
|
|
271260
271438
|
"content": Object {
|
|
271261
271439
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -271314,8 +271492,11 @@ undefined",
|
|
|
271314
271492
|
"isUpdating": false,
|
|
271315
271493
|
"lastModified": undefined,
|
|
271316
271494
|
"onDeviceChange": [Function],
|
|
271495
|
+
"onPreviewTabChange": [Function],
|
|
271317
271496
|
"selectedCustomer": null,
|
|
271318
271497
|
"showDeviceToggle": true,
|
|
271498
|
+
"smsFallbackContent": null,
|
|
271499
|
+
"smsFallbackResolvedText": undefined,
|
|
271319
271500
|
"updatedByName": undefined,
|
|
271320
271501
|
}
|
|
271321
271502
|
}
|
|
@@ -277428,6 +277609,7 @@ T&C'
|
|
|
277428
277609
|
className="ant-col ant-col-10 cap-column-v2"
|
|
277429
277610
|
>
|
|
277430
277611
|
<UnifiedPreview
|
|
277612
|
+
activePreviewTab="rcs"
|
|
277431
277613
|
channel="WHATSAPP"
|
|
277432
277614
|
content={
|
|
277433
277615
|
Object {
|
|
@@ -279300,9 +279482,11 @@ T&C'",
|
|
|
279300
279482
|
key=".0"
|
|
279301
279483
|
lastModified={null}
|
|
279302
279484
|
onDeviceChange={[Function]}
|
|
279485
|
+
onPreviewTabChange={[Function]}
|
|
279303
279486
|
selectedCustomer={null}
|
|
279304
279487
|
showDeviceToggle={false}
|
|
279305
279488
|
showHeader={false}
|
|
279489
|
+
smsFallbackContent={null}
|
|
279306
279490
|
updatedByName={null}
|
|
279307
279491
|
>
|
|
279308
279492
|
<CapRow
|
|
@@ -284122,6 +284306,7 @@ new message content.",
|
|
|
284122
284306
|
}
|
|
284123
284307
|
}
|
|
284124
284308
|
show={false}
|
|
284309
|
+
smsFallbackContent={null}
|
|
284125
284310
|
testCustomers={Immutable.List []}
|
|
284126
284311
|
testGroups={Immutable.List []}
|
|
284127
284312
|
updatePreviewError={null}
|
|
@@ -286492,6 +286677,7 @@ new message content.",
|
|
|
286492
286677
|
}
|
|
286493
286678
|
}
|
|
286494
286679
|
show={false}
|
|
286680
|
+
smsFallbackContent={null}
|
|
286495
286681
|
templateLayoutType={null}
|
|
286496
286682
|
testCustomers={Immutable.List []}
|
|
286497
286683
|
testGroups={Immutable.List []}
|
|
@@ -286583,6 +286769,7 @@ T&C'",
|
|
|
286583
286769
|
formatMessage={[Function]}
|
|
286584
286770
|
handleSendTestMessage={[Function]}
|
|
286585
286771
|
handleTestEntitiesChange={[Function]}
|
|
286772
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
286586
286773
|
isFetchingTestCustomers={false}
|
|
286587
286774
|
isFetchingTestGroups={false}
|
|
286588
286775
|
isLoadingSenderDetails={false}
|
|
@@ -286590,7 +286777,13 @@ T&C'",
|
|
|
286590
286777
|
onSaveDeliverySettings={[Function]}
|
|
286591
286778
|
registeredSenderIds={Array []}
|
|
286592
286779
|
selectedTestEntities={Array []}
|
|
286593
|
-
|
|
286780
|
+
senderDetailsByChannel={
|
|
286781
|
+
Object {
|
|
286782
|
+
"EMAIL": Array [],
|
|
286783
|
+
"SMS": Array [],
|
|
286784
|
+
"WHATSAPP": Array [],
|
|
286785
|
+
}
|
|
286786
|
+
}
|
|
286594
286787
|
smsTraiDltEnabled={false}
|
|
286595
286788
|
testEntitiesTreeData={
|
|
286596
286789
|
Array [
|
|
@@ -286621,6 +286814,7 @@ T&C'",
|
|
|
286621
286814
|
<PreviewSection
|
|
286622
286815
|
unifiedPreviewProps={
|
|
286623
286816
|
Object {
|
|
286817
|
+
"activePreviewTab": "rcs",
|
|
286624
286818
|
"channel": "WHATSAPP",
|
|
286625
286819
|
"content": Object {
|
|
286626
286820
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -286657,8 +286851,11 @@ T&C'",
|
|
|
286657
286851
|
"isUpdating": false,
|
|
286658
286852
|
"lastModified": undefined,
|
|
286659
286853
|
"onDeviceChange": [Function],
|
|
286854
|
+
"onPreviewTabChange": [Function],
|
|
286660
286855
|
"selectedCustomer": null,
|
|
286661
286856
|
"showDeviceToggle": true,
|
|
286857
|
+
"smsFallbackContent": null,
|
|
286858
|
+
"smsFallbackResolvedText": undefined,
|
|
286662
286859
|
"updatedByName": undefined,
|
|
286663
286860
|
}
|
|
286664
286861
|
}
|
|
@@ -293370,6 +293567,7 @@ new message content.",
|
|
|
293370
293567
|
className="ant-col ant-col-10 cap-column-v2"
|
|
293371
293568
|
>
|
|
293372
293569
|
<UnifiedPreview
|
|
293570
|
+
activePreviewTab="rcs"
|
|
293373
293571
|
channel="WHATSAPP"
|
|
293374
293572
|
content={
|
|
293375
293573
|
Object {
|
|
@@ -296096,9 +296294,11 @@ new message content.",
|
|
|
296096
296294
|
key=".0"
|
|
296097
296295
|
lastModified={null}
|
|
296098
296296
|
onDeviceChange={[Function]}
|
|
296297
|
+
onPreviewTabChange={[Function]}
|
|
296099
296298
|
selectedCustomer={null}
|
|
296100
296299
|
showDeviceToggle={false}
|
|
296101
296300
|
showHeader={false}
|
|
296301
|
+
smsFallbackContent={null}
|
|
296102
296302
|
updatedByName={null}
|
|
296103
296303
|
>
|
|
296104
296304
|
<CapRow
|
|
@@ -301742,6 +301942,7 @@ new message content.",
|
|
|
301742
301942
|
}
|
|
301743
301943
|
}
|
|
301744
301944
|
show={false}
|
|
301945
|
+
smsFallbackContent={null}
|
|
301745
301946
|
testCustomers={Immutable.List []}
|
|
301746
301947
|
testGroups={Immutable.List []}
|
|
301747
301948
|
updatePreviewError={null}
|
|
@@ -304108,6 +304309,7 @@ new message content.",
|
|
|
304108
304309
|
}
|
|
304109
304310
|
}
|
|
304110
304311
|
show={false}
|
|
304312
|
+
smsFallbackContent={null}
|
|
304111
304313
|
templateLayoutType={null}
|
|
304112
304314
|
testCustomers={Immutable.List []}
|
|
304113
304315
|
testGroups={Immutable.List []}
|
|
@@ -304197,6 +304399,7 @@ new message content.",
|
|
|
304197
304399
|
formatMessage={[Function]}
|
|
304198
304400
|
handleSendTestMessage={[Function]}
|
|
304199
304401
|
handleTestEntitiesChange={[Function]}
|
|
304402
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
304200
304403
|
isFetchingTestCustomers={false}
|
|
304201
304404
|
isFetchingTestGroups={false}
|
|
304202
304405
|
isLoadingSenderDetails={false}
|
|
@@ -304204,7 +304407,13 @@ new message content.",
|
|
|
304204
304407
|
onSaveDeliverySettings={[Function]}
|
|
304205
304408
|
registeredSenderIds={Array []}
|
|
304206
304409
|
selectedTestEntities={Array []}
|
|
304207
|
-
|
|
304410
|
+
senderDetailsByChannel={
|
|
304411
|
+
Object {
|
|
304412
|
+
"EMAIL": Array [],
|
|
304413
|
+
"SMS": Array [],
|
|
304414
|
+
"WHATSAPP": Array [],
|
|
304415
|
+
}
|
|
304416
|
+
}
|
|
304208
304417
|
smsTraiDltEnabled={false}
|
|
304209
304418
|
testEntitiesTreeData={
|
|
304210
304419
|
Array [
|
|
@@ -304235,6 +304444,7 @@ new message content.",
|
|
|
304235
304444
|
<PreviewSection
|
|
304236
304445
|
unifiedPreviewProps={
|
|
304237
304446
|
Object {
|
|
304447
|
+
"activePreviewTab": "rcs",
|
|
304238
304448
|
"channel": "WHATSAPP",
|
|
304239
304449
|
"content": Object {
|
|
304240
304450
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -304269,8 +304479,11 @@ new message content.",
|
|
|
304269
304479
|
"isUpdating": false,
|
|
304270
304480
|
"lastModified": undefined,
|
|
304271
304481
|
"onDeviceChange": [Function],
|
|
304482
|
+
"onPreviewTabChange": [Function],
|
|
304272
304483
|
"selectedCustomer": null,
|
|
304273
304484
|
"showDeviceToggle": true,
|
|
304485
|
+
"smsFallbackContent": null,
|
|
304486
|
+
"smsFallbackResolvedText": undefined,
|
|
304274
304487
|
"updatedByName": undefined,
|
|
304275
304488
|
}
|
|
304276
304489
|
}
|
|
@@ -310931,6 +311144,7 @@ Click {{3}} to unsubscribe'",
|
|
|
310931
311144
|
onContextChange={[Function]}
|
|
310932
311145
|
onTagSelect={[Function]}
|
|
310933
311146
|
tags={Array []}
|
|
311147
|
+
waitEventContextTags={Object {}}
|
|
310934
311148
|
/>
|
|
310935
311149
|
}
|
|
310936
311150
|
title={
|
|
@@ -310983,6 +311197,7 @@ Click {{3}} to unsubscribe'",
|
|
|
310983
311197
|
onContextChange={[Function]}
|
|
310984
311198
|
onTagSelect={[Function]}
|
|
310985
311199
|
tags={Array []}
|
|
311200
|
+
waitEventContextTags={Object {}}
|
|
310986
311201
|
>
|
|
310987
311202
|
<div
|
|
310988
311203
|
className="tag-mock"
|
|
@@ -311000,6 +311215,7 @@ Click {{3}} to unsubscribe'",
|
|
|
311000
311215
|
onContextChange={[Function]}
|
|
311001
311216
|
onTagSelect={[Function]}
|
|
311002
311217
|
tags={Array []}
|
|
311218
|
+
waitEventContextTags={Object {}}
|
|
311003
311219
|
>
|
|
311004
311220
|
TagList
|
|
311005
311221
|
</div>
|
|
@@ -312549,6 +312765,7 @@ T&C'
|
|
|
312549
312765
|
key=".2"
|
|
312550
312766
|
tags={Array []}
|
|
312551
312767
|
updateHandler={[Function]}
|
|
312768
|
+
waitEventContextTags={Object {}}
|
|
312552
312769
|
>
|
|
312553
312770
|
<CapWhatsappCTA
|
|
312554
312771
|
ctaData={
|
|
@@ -314824,6 +315041,7 @@ new message content.",
|
|
|
314824
315041
|
isEditFlow={true}
|
|
314825
315042
|
tags={Array []}
|
|
314826
315043
|
updateHandler={[Function]}
|
|
315044
|
+
waitEventContextTags={Object {}}
|
|
314827
315045
|
>
|
|
314828
315046
|
<CapRow
|
|
314829
315047
|
align="middle"
|
|
@@ -315762,6 +315980,7 @@ new message content.",
|
|
|
315762
315980
|
className="ant-col ant-col-10 cap-column-v2"
|
|
315763
315981
|
>
|
|
315764
315982
|
<UnifiedPreview
|
|
315983
|
+
activePreviewTab="rcs"
|
|
315765
315984
|
channel="WHATSAPP"
|
|
315766
315985
|
content={
|
|
315767
315986
|
Object {
|
|
@@ -319724,9 +319943,11 @@ undefined",
|
|
|
319724
319943
|
key=".0"
|
|
319725
319944
|
lastModified={null}
|
|
319726
319945
|
onDeviceChange={[Function]}
|
|
319946
|
+
onPreviewTabChange={[Function]}
|
|
319727
319947
|
selectedCustomer={null}
|
|
319728
319948
|
showDeviceToggle={false}
|
|
319729
319949
|
showHeader={false}
|
|
319950
|
+
smsFallbackContent={null}
|
|
319730
319951
|
updatedByName={null}
|
|
319731
319952
|
>
|
|
319732
319953
|
<CapRow
|
|
@@ -327141,6 +327362,7 @@ new message content.",
|
|
|
327141
327362
|
}
|
|
327142
327363
|
}
|
|
327143
327364
|
show={false}
|
|
327365
|
+
smsFallbackContent={null}
|
|
327144
327366
|
testCustomers={Immutable.List []}
|
|
327145
327367
|
testGroups={Immutable.List []}
|
|
327146
327368
|
updatePreviewError={null}
|
|
@@ -329555,6 +329777,7 @@ new message content.",
|
|
|
329555
329777
|
}
|
|
329556
329778
|
}
|
|
329557
329779
|
show={false}
|
|
329780
|
+
smsFallbackContent={null}
|
|
329558
329781
|
templateLayoutType={null}
|
|
329559
329782
|
testCustomers={Immutable.List []}
|
|
329560
329783
|
testGroups={Immutable.List []}
|
|
@@ -329668,6 +329891,7 @@ undefined",
|
|
|
329668
329891
|
formatMessage={[Function]}
|
|
329669
329892
|
handleSendTestMessage={[Function]}
|
|
329670
329893
|
handleTestEntitiesChange={[Function]}
|
|
329894
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
329671
329895
|
isFetchingTestCustomers={false}
|
|
329672
329896
|
isFetchingTestGroups={false}
|
|
329673
329897
|
isLoadingSenderDetails={false}
|
|
@@ -329675,7 +329899,13 @@ undefined",
|
|
|
329675
329899
|
onSaveDeliverySettings={[Function]}
|
|
329676
329900
|
registeredSenderIds={Array []}
|
|
329677
329901
|
selectedTestEntities={Array []}
|
|
329678
|
-
|
|
329902
|
+
senderDetailsByChannel={
|
|
329903
|
+
Object {
|
|
329904
|
+
"EMAIL": Array [],
|
|
329905
|
+
"SMS": Array [],
|
|
329906
|
+
"WHATSAPP": Array [],
|
|
329907
|
+
}
|
|
329908
|
+
}
|
|
329679
329909
|
smsTraiDltEnabled={false}
|
|
329680
329910
|
testEntitiesTreeData={
|
|
329681
329911
|
Array [
|
|
@@ -329706,6 +329936,7 @@ undefined",
|
|
|
329706
329936
|
<PreviewSection
|
|
329707
329937
|
unifiedPreviewProps={
|
|
329708
329938
|
Object {
|
|
329939
|
+
"activePreviewTab": "rcs",
|
|
329709
329940
|
"channel": "WHATSAPP",
|
|
329710
329941
|
"content": Object {
|
|
329711
329942
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -329764,8 +329995,11 @@ undefined",
|
|
|
329764
329995
|
"isUpdating": false,
|
|
329765
329996
|
"lastModified": undefined,
|
|
329766
329997
|
"onDeviceChange": [Function],
|
|
329998
|
+
"onPreviewTabChange": [Function],
|
|
329767
329999
|
"selectedCustomer": null,
|
|
329768
330000
|
"showDeviceToggle": true,
|
|
330001
|
+
"smsFallbackContent": null,
|
|
330002
|
+
"smsFallbackResolvedText": undefined,
|
|
329769
330003
|
"updatedByName": undefined,
|
|
329770
330004
|
}
|
|
329771
330005
|
}
|
|
@@ -337589,6 +337823,7 @@ Click {{unsubscribe}} to unsubscribe",
|
|
|
337589
337823
|
onContextChange={[Function]}
|
|
337590
337824
|
onTagSelect={[Function]}
|
|
337591
337825
|
tags={Array []}
|
|
337826
|
+
waitEventContextTags={Object {}}
|
|
337592
337827
|
/>
|
|
337593
337828
|
}
|
|
337594
337829
|
title={
|
|
@@ -337641,6 +337876,7 @@ Click {{unsubscribe}} to unsubscribe",
|
|
|
337641
337876
|
onContextChange={[Function]}
|
|
337642
337877
|
onTagSelect={[Function]}
|
|
337643
337878
|
tags={Array []}
|
|
337879
|
+
waitEventContextTags={Object {}}
|
|
337644
337880
|
>
|
|
337645
337881
|
<div
|
|
337646
337882
|
className="tag-mock"
|
|
@@ -337658,6 +337894,7 @@ Click {{unsubscribe}} to unsubscribe",
|
|
|
337658
337894
|
onContextChange={[Function]}
|
|
337659
337895
|
onTagSelect={[Function]}
|
|
337660
337896
|
tags={Array []}
|
|
337897
|
+
waitEventContextTags={Object {}}
|
|
337661
337898
|
>
|
|
337662
337899
|
TagList
|
|
337663
337900
|
</div>
|
|
@@ -339070,6 +339307,7 @@ Click {{unsubscribe}} to unsubscribe",
|
|
|
339070
339307
|
key=".2"
|
|
339071
339308
|
tags={Array []}
|
|
339072
339309
|
updateHandler={[Function]}
|
|
339310
|
+
waitEventContextTags={Object {}}
|
|
339073
339311
|
>
|
|
339074
339312
|
<CapWhatsappCTA
|
|
339075
339313
|
ctaData={
|
|
@@ -341345,6 +341583,7 @@ new message content.",
|
|
|
341345
341583
|
isEditFlow={true}
|
|
341346
341584
|
tags={Array []}
|
|
341347
341585
|
updateHandler={[Function]}
|
|
341586
|
+
waitEventContextTags={Object {}}
|
|
341348
341587
|
>
|
|
341349
341588
|
<CapRow
|
|
341350
341589
|
align="middle"
|
|
@@ -342283,6 +342522,7 @@ new message content.",
|
|
|
342283
342522
|
className="ant-col ant-col-10 cap-column-v2"
|
|
342284
342523
|
>
|
|
342285
342524
|
<UnifiedPreview
|
|
342525
|
+
activePreviewTab="rcs"
|
|
342286
342526
|
channel="WHATSAPP"
|
|
342287
342527
|
content={
|
|
342288
342528
|
Object {
|
|
@@ -347409,9 +347649,11 @@ undefined",
|
|
|
347409
347649
|
key=".0"
|
|
347410
347650
|
lastModified={null}
|
|
347411
347651
|
onDeviceChange={[Function]}
|
|
347652
|
+
onPreviewTabChange={[Function]}
|
|
347412
347653
|
selectedCustomer={null}
|
|
347413
347654
|
showDeviceToggle={false}
|
|
347414
347655
|
showHeader={false}
|
|
347656
|
+
smsFallbackContent={null}
|
|
347415
347657
|
updatedByName={null}
|
|
347416
347658
|
>
|
|
347417
347659
|
<CapRow
|
|
@@ -356546,6 +356788,7 @@ new message content.",
|
|
|
356546
356788
|
}
|
|
356547
356789
|
}
|
|
356548
356790
|
show={false}
|
|
356791
|
+
smsFallbackContent={null}
|
|
356549
356792
|
testCustomers={Immutable.List []}
|
|
356550
356793
|
testGroups={Immutable.List []}
|
|
356551
356794
|
updatePreviewError={null}
|
|
@@ -358956,6 +359199,7 @@ new message content.",
|
|
|
358956
359199
|
}
|
|
358957
359200
|
}
|
|
358958
359201
|
show={false}
|
|
359202
|
+
smsFallbackContent={null}
|
|
358959
359203
|
templateLayoutType={null}
|
|
358960
359204
|
testCustomers={Immutable.List []}
|
|
358961
359205
|
testGroups={Immutable.List []}
|
|
@@ -359067,6 +359311,7 @@ undefined",
|
|
|
359067
359311
|
formatMessage={[Function]}
|
|
359068
359312
|
handleSendTestMessage={[Function]}
|
|
359069
359313
|
handleTestEntitiesChange={[Function]}
|
|
359314
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
359070
359315
|
isFetchingTestCustomers={false}
|
|
359071
359316
|
isFetchingTestGroups={false}
|
|
359072
359317
|
isLoadingSenderDetails={false}
|
|
@@ -359074,7 +359319,13 @@ undefined",
|
|
|
359074
359319
|
onSaveDeliverySettings={[Function]}
|
|
359075
359320
|
registeredSenderIds={Array []}
|
|
359076
359321
|
selectedTestEntities={Array []}
|
|
359077
|
-
|
|
359322
|
+
senderDetailsByChannel={
|
|
359323
|
+
Object {
|
|
359324
|
+
"EMAIL": Array [],
|
|
359325
|
+
"SMS": Array [],
|
|
359326
|
+
"WHATSAPP": Array [],
|
|
359327
|
+
}
|
|
359328
|
+
}
|
|
359078
359329
|
smsTraiDltEnabled={false}
|
|
359079
359330
|
testEntitiesTreeData={
|
|
359080
359331
|
Array [
|
|
@@ -359105,6 +359356,7 @@ undefined",
|
|
|
359105
359356
|
<PreviewSection
|
|
359106
359357
|
unifiedPreviewProps={
|
|
359107
359358
|
Object {
|
|
359359
|
+
"activePreviewTab": "rcs",
|
|
359108
359360
|
"channel": "WHATSAPP",
|
|
359109
359361
|
"content": Object {
|
|
359110
359362
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -359161,8 +359413,11 @@ undefined",
|
|
|
359161
359413
|
"isUpdating": false,
|
|
359162
359414
|
"lastModified": undefined,
|
|
359163
359415
|
"onDeviceChange": [Function],
|
|
359416
|
+
"onPreviewTabChange": [Function],
|
|
359164
359417
|
"selectedCustomer": null,
|
|
359165
359418
|
"showDeviceToggle": true,
|
|
359419
|
+
"smsFallbackContent": null,
|
|
359420
|
+
"smsFallbackResolvedText": undefined,
|
|
359166
359421
|
"updatedByName": undefined,
|
|
359167
359422
|
}
|
|
359168
359423
|
}
|
|
@@ -362931,6 +363186,7 @@ new message content.",
|
|
|
362931
363186
|
onContextChange={[Function]}
|
|
362932
363187
|
onTagSelect={[Function]}
|
|
362933
363188
|
tags={Array []}
|
|
363189
|
+
waitEventContextTags={Object {}}
|
|
362934
363190
|
/>
|
|
362935
363191
|
}
|
|
362936
363192
|
title={
|
|
@@ -362983,6 +363239,7 @@ new message content.",
|
|
|
362983
363239
|
onContextChange={[Function]}
|
|
362984
363240
|
onTagSelect={[Function]}
|
|
362985
363241
|
tags={Array []}
|
|
363242
|
+
waitEventContextTags={Object {}}
|
|
362986
363243
|
>
|
|
362987
363244
|
<div
|
|
362988
363245
|
className="tag-mock"
|
|
@@ -363000,6 +363257,7 @@ new message content.",
|
|
|
363000
363257
|
onContextChange={[Function]}
|
|
363001
363258
|
onTagSelect={[Function]}
|
|
363002
363259
|
tags={Array []}
|
|
363260
|
+
waitEventContextTags={Object {}}
|
|
363003
363261
|
>
|
|
363004
363262
|
TagList
|
|
363005
363263
|
</div>
|
|
@@ -364411,6 +364669,7 @@ new message content.",
|
|
|
364411
364669
|
key=".2"
|
|
364412
364670
|
tags={Array []}
|
|
364413
364671
|
updateHandler={[Function]}
|
|
364672
|
+
waitEventContextTags={Object {}}
|
|
364414
364673
|
>
|
|
364415
364674
|
<CapWhatsappCTA
|
|
364416
364675
|
ctaData={
|
|
@@ -366677,6 +366936,7 @@ new message content.",
|
|
|
366677
366936
|
isEditFlow={true}
|
|
366678
366937
|
tags={Array []}
|
|
366679
366938
|
updateHandler={[Function]}
|
|
366939
|
+
waitEventContextTags={Object {}}
|
|
366680
366940
|
>
|
|
366681
366941
|
<CapRow
|
|
366682
366942
|
align="middle"
|
|
@@ -367464,6 +367724,7 @@ new message content.",
|
|
|
367464
367724
|
className="ant-col ant-col-10 cap-column-v2"
|
|
367465
367725
|
>
|
|
367466
367726
|
<UnifiedPreview
|
|
367727
|
+
activePreviewTab="rcs"
|
|
367467
367728
|
channel="WHATSAPP"
|
|
367468
367729
|
content={
|
|
367469
367730
|
Object {
|
|
@@ -368613,9 +368874,11 @@ new message content.",
|
|
|
368613
368874
|
key=".0"
|
|
368614
368875
|
lastModified={null}
|
|
368615
368876
|
onDeviceChange={[Function]}
|
|
368877
|
+
onPreviewTabChange={[Function]}
|
|
368616
368878
|
selectedCustomer={null}
|
|
368617
368879
|
showDeviceToggle={false}
|
|
368618
368880
|
showHeader={false}
|
|
368881
|
+
smsFallbackContent={null}
|
|
368619
368882
|
updatedByName={null}
|
|
368620
368883
|
>
|
|
368621
368884
|
<CapRow
|
|
@@ -373554,6 +373817,7 @@ new message content.",
|
|
|
373554
373817
|
}
|
|
373555
373818
|
}
|
|
373556
373819
|
show={false}
|
|
373820
|
+
smsFallbackContent={null}
|
|
373557
373821
|
testCustomers={Immutable.List []}
|
|
373558
373822
|
testGroups={Immutable.List []}
|
|
373559
373823
|
updatePreviewError={null}
|
|
@@ -375942,6 +376206,7 @@ new message content.",
|
|
|
375942
376206
|
}
|
|
375943
376207
|
}
|
|
375944
376208
|
show={false}
|
|
376209
|
+
smsFallbackContent={null}
|
|
375945
376210
|
templateLayoutType={null}
|
|
375946
376211
|
testCustomers={Immutable.List []}
|
|
375947
376212
|
testGroups={Immutable.List []}
|
|
@@ -376042,6 +376307,7 @@ new message content.",
|
|
|
376042
376307
|
formatMessage={[Function]}
|
|
376043
376308
|
handleSendTestMessage={[Function]}
|
|
376044
376309
|
handleTestEntitiesChange={[Function]}
|
|
376310
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
376045
376311
|
isFetchingTestCustomers={false}
|
|
376046
376312
|
isFetchingTestGroups={false}
|
|
376047
376313
|
isLoadingSenderDetails={false}
|
|
@@ -376049,7 +376315,13 @@ new message content.",
|
|
|
376049
376315
|
onSaveDeliverySettings={[Function]}
|
|
376050
376316
|
registeredSenderIds={Array []}
|
|
376051
376317
|
selectedTestEntities={Array []}
|
|
376052
|
-
|
|
376318
|
+
senderDetailsByChannel={
|
|
376319
|
+
Object {
|
|
376320
|
+
"EMAIL": Array [],
|
|
376321
|
+
"SMS": Array [],
|
|
376322
|
+
"WHATSAPP": Array [],
|
|
376323
|
+
}
|
|
376324
|
+
}
|
|
376053
376325
|
smsTraiDltEnabled={false}
|
|
376054
376326
|
testEntitiesTreeData={
|
|
376055
376327
|
Array [
|
|
@@ -376080,6 +376352,7 @@ new message content.",
|
|
|
376080
376352
|
<PreviewSection
|
|
376081
376353
|
unifiedPreviewProps={
|
|
376082
376354
|
Object {
|
|
376355
|
+
"activePreviewTab": "rcs",
|
|
376083
376356
|
"channel": "WHATSAPP",
|
|
376084
376357
|
"content": Object {
|
|
376085
376358
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -376125,8 +376398,11 @@ new message content.",
|
|
|
376125
376398
|
"isUpdating": false,
|
|
376126
376399
|
"lastModified": undefined,
|
|
376127
376400
|
"onDeviceChange": [Function],
|
|
376401
|
+
"onPreviewTabChange": [Function],
|
|
376128
376402
|
"selectedCustomer": null,
|
|
376129
376403
|
"showDeviceToggle": true,
|
|
376404
|
+
"smsFallbackContent": null,
|
|
376405
|
+
"smsFallbackResolvedText": undefined,
|
|
376130
376406
|
"updatedByName": undefined,
|
|
376131
376407
|
}
|
|
376132
376408
|
}
|
|
@@ -389961,6 +390237,7 @@ new message content.",
|
|
|
389961
390237
|
className="ant-col ant-col-10 cap-column-v2"
|
|
389962
390238
|
>
|
|
389963
390239
|
<UnifiedPreview
|
|
390240
|
+
activePreviewTab="rcs"
|
|
389964
390241
|
channel="WHATSAPP"
|
|
389965
390242
|
content={
|
|
389966
390243
|
Object {
|
|
@@ -390656,9 +390933,11 @@ new message content.",
|
|
|
390656
390933
|
key=".0"
|
|
390657
390934
|
lastModified={null}
|
|
390658
390935
|
onDeviceChange={[Function]}
|
|
390936
|
+
onPreviewTabChange={[Function]}
|
|
390659
390937
|
selectedCustomer={null}
|
|
390660
390938
|
showDeviceToggle={false}
|
|
390661
390939
|
showHeader={false}
|
|
390940
|
+
smsFallbackContent={null}
|
|
390662
390941
|
updatedByName={null}
|
|
390663
390942
|
>
|
|
390664
390943
|
<CapRow
|
|
@@ -395440,6 +395719,7 @@ new message content.",
|
|
|
395440
395719
|
}
|
|
395441
395720
|
}
|
|
395442
395721
|
show={false}
|
|
395722
|
+
smsFallbackContent={null}
|
|
395443
395723
|
testCustomers={Immutable.List []}
|
|
395444
395724
|
testGroups={Immutable.List []}
|
|
395445
395725
|
updatePreviewError={null}
|
|
@@ -397806,6 +398086,7 @@ new message content.",
|
|
|
397806
398086
|
}
|
|
397807
398087
|
}
|
|
397808
398088
|
show={false}
|
|
398089
|
+
smsFallbackContent={null}
|
|
397809
398090
|
templateLayoutType={null}
|
|
397810
398091
|
testCustomers={Immutable.List []}
|
|
397811
398092
|
testGroups={Immutable.List []}
|
|
@@ -397895,6 +398176,7 @@ new message content.",
|
|
|
397895
398176
|
formatMessage={[Function]}
|
|
397896
398177
|
handleSendTestMessage={[Function]}
|
|
397897
398178
|
handleTestEntitiesChange={[Function]}
|
|
398179
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
397898
398180
|
isFetchingTestCustomers={false}
|
|
397899
398181
|
isFetchingTestGroups={false}
|
|
397900
398182
|
isLoadingSenderDetails={false}
|
|
@@ -397902,7 +398184,13 @@ new message content.",
|
|
|
397902
398184
|
onSaveDeliverySettings={[Function]}
|
|
397903
398185
|
registeredSenderIds={Array []}
|
|
397904
398186
|
selectedTestEntities={Array []}
|
|
397905
|
-
|
|
398187
|
+
senderDetailsByChannel={
|
|
398188
|
+
Object {
|
|
398189
|
+
"EMAIL": Array [],
|
|
398190
|
+
"SMS": Array [],
|
|
398191
|
+
"WHATSAPP": Array [],
|
|
398192
|
+
}
|
|
398193
|
+
}
|
|
397906
398194
|
smsTraiDltEnabled={false}
|
|
397907
398195
|
testEntitiesTreeData={
|
|
397908
398196
|
Array [
|
|
@@ -397933,6 +398221,7 @@ new message content.",
|
|
|
397933
398221
|
<PreviewSection
|
|
397934
398222
|
unifiedPreviewProps={
|
|
397935
398223
|
Object {
|
|
398224
|
+
"activePreviewTab": "rcs",
|
|
397936
398225
|
"channel": "WHATSAPP",
|
|
397937
398226
|
"content": Object {
|
|
397938
398227
|
"_id": null,
|
|
@@ -397967,8 +398256,11 @@ new message content.",
|
|
|
397967
398256
|
"isUpdating": false,
|
|
397968
398257
|
"lastModified": undefined,
|
|
397969
398258
|
"onDeviceChange": [Function],
|
|
398259
|
+
"onPreviewTabChange": [Function],
|
|
397970
398260
|
"selectedCustomer": null,
|
|
397971
398261
|
"showDeviceToggle": true,
|
|
398262
|
+
"smsFallbackContent": null,
|
|
398263
|
+
"smsFallbackResolvedText": undefined,
|
|
397972
398264
|
"updatedByName": undefined,
|
|
397973
398265
|
}
|
|
397974
398266
|
}
|
|
@@ -414395,6 +414687,7 @@ new message content.",
|
|
|
414395
414687
|
className="ant-col ant-col-10 cap-column-v2"
|
|
414396
414688
|
>
|
|
414397
414689
|
<UnifiedPreview
|
|
414690
|
+
activePreviewTab="rcs"
|
|
414398
414691
|
channel="WHATSAPP"
|
|
414399
414692
|
content={
|
|
414400
414693
|
Object {
|
|
@@ -415860,9 +416153,11 @@ new message content.",
|
|
|
415860
416153
|
key=".0"
|
|
415861
416154
|
lastModified={null}
|
|
415862
416155
|
onDeviceChange={[Function]}
|
|
416156
|
+
onPreviewTabChange={[Function]}
|
|
415863
416157
|
selectedCustomer={null}
|
|
415864
416158
|
showDeviceToggle={false}
|
|
415865
416159
|
showHeader={false}
|
|
416160
|
+
smsFallbackContent={null}
|
|
415866
416161
|
updatedByName={null}
|
|
415867
416162
|
>
|
|
415868
416163
|
<CapRow
|
|
@@ -421414,6 +421709,7 @@ new message content.",
|
|
|
421414
421709
|
}
|
|
421415
421710
|
}
|
|
421416
421711
|
show={false}
|
|
421712
|
+
smsFallbackContent={null}
|
|
421417
421713
|
testCustomers={Immutable.List []}
|
|
421418
421714
|
testGroups={Immutable.List []}
|
|
421419
421715
|
updatePreviewError={null}
|
|
@@ -423780,6 +424076,7 @@ new message content.",
|
|
|
423780
424076
|
}
|
|
423781
424077
|
}
|
|
423782
424078
|
show={false}
|
|
424079
|
+
smsFallbackContent={null}
|
|
423783
424080
|
templateLayoutType={null}
|
|
423784
424081
|
testCustomers={Immutable.List []}
|
|
423785
424082
|
testGroups={Immutable.List []}
|
|
@@ -423869,6 +424166,7 @@ new message content.",
|
|
|
423869
424166
|
formatMessage={[Function]}
|
|
423870
424167
|
handleSendTestMessage={[Function]}
|
|
423871
424168
|
handleTestEntitiesChange={[Function]}
|
|
424169
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
423872
424170
|
isFetchingTestCustomers={false}
|
|
423873
424171
|
isFetchingTestGroups={false}
|
|
423874
424172
|
isLoadingSenderDetails={false}
|
|
@@ -423876,7 +424174,13 @@ new message content.",
|
|
|
423876
424174
|
onSaveDeliverySettings={[Function]}
|
|
423877
424175
|
registeredSenderIds={Array []}
|
|
423878
424176
|
selectedTestEntities={Array []}
|
|
423879
|
-
|
|
424177
|
+
senderDetailsByChannel={
|
|
424178
|
+
Object {
|
|
424179
|
+
"EMAIL": Array [],
|
|
424180
|
+
"SMS": Array [],
|
|
424181
|
+
"WHATSAPP": Array [],
|
|
424182
|
+
}
|
|
424183
|
+
}
|
|
423880
424184
|
smsTraiDltEnabled={false}
|
|
423881
424185
|
testEntitiesTreeData={
|
|
423882
424186
|
Array [
|
|
@@ -423907,6 +424211,7 @@ new message content.",
|
|
|
423907
424211
|
<PreviewSection
|
|
423908
424212
|
unifiedPreviewProps={
|
|
423909
424213
|
Object {
|
|
424214
|
+
"activePreviewTab": "rcs",
|
|
423910
424215
|
"channel": "WHATSAPP",
|
|
423911
424216
|
"content": Object {
|
|
423912
424217
|
"_id": null,
|
|
@@ -423941,8 +424246,11 @@ new message content.",
|
|
|
423941
424246
|
"isUpdating": false,
|
|
423942
424247
|
"lastModified": undefined,
|
|
423943
424248
|
"onDeviceChange": [Function],
|
|
424249
|
+
"onPreviewTabChange": [Function],
|
|
423944
424250
|
"selectedCustomer": null,
|
|
423945
424251
|
"showDeviceToggle": true,
|
|
424252
|
+
"smsFallbackContent": null,
|
|
424253
|
+
"smsFallbackResolvedText": undefined,
|
|
423946
424254
|
"updatedByName": undefined,
|
|
423947
424255
|
}
|
|
423948
424256
|
}
|
|
@@ -437777,6 +438085,7 @@ new message content.",
|
|
|
437777
438085
|
className="ant-col ant-col-10 cap-column-v2"
|
|
437778
438086
|
>
|
|
437779
438087
|
<UnifiedPreview
|
|
438088
|
+
activePreviewTab="rcs"
|
|
437780
438089
|
channel="WHATSAPP"
|
|
437781
438090
|
content={
|
|
437782
438091
|
Object {
|
|
@@ -438472,9 +438781,11 @@ new message content.",
|
|
|
438472
438781
|
key=".0"
|
|
438473
438782
|
lastModified={null}
|
|
438474
438783
|
onDeviceChange={[Function]}
|
|
438784
|
+
onPreviewTabChange={[Function]}
|
|
438475
438785
|
selectedCustomer={null}
|
|
438476
438786
|
showDeviceToggle={false}
|
|
438477
438787
|
showHeader={false}
|
|
438788
|
+
smsFallbackContent={null}
|
|
438478
438789
|
updatedByName={null}
|
|
438479
438790
|
>
|
|
438480
438791
|
<CapRow
|
|
@@ -443256,6 +443567,7 @@ new message content.",
|
|
|
443256
443567
|
}
|
|
443257
443568
|
}
|
|
443258
443569
|
show={false}
|
|
443570
|
+
smsFallbackContent={null}
|
|
443259
443571
|
testCustomers={Immutable.List []}
|
|
443260
443572
|
testGroups={Immutable.List []}
|
|
443261
443573
|
updatePreviewError={null}
|
|
@@ -445622,6 +445934,7 @@ new message content.",
|
|
|
445622
445934
|
}
|
|
445623
445935
|
}
|
|
445624
445936
|
show={false}
|
|
445937
|
+
smsFallbackContent={null}
|
|
445625
445938
|
templateLayoutType={null}
|
|
445626
445939
|
testCustomers={Immutable.List []}
|
|
445627
445940
|
testGroups={Immutable.List []}
|
|
@@ -445711,6 +446024,7 @@ new message content.",
|
|
|
445711
446024
|
formatMessage={[Function]}
|
|
445712
446025
|
handleSendTestMessage={[Function]}
|
|
445713
446026
|
handleTestEntitiesChange={[Function]}
|
|
446027
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
445714
446028
|
isFetchingTestCustomers={false}
|
|
445715
446029
|
isFetchingTestGroups={false}
|
|
445716
446030
|
isLoadingSenderDetails={false}
|
|
@@ -445718,7 +446032,13 @@ new message content.",
|
|
|
445718
446032
|
onSaveDeliverySettings={[Function]}
|
|
445719
446033
|
registeredSenderIds={Array []}
|
|
445720
446034
|
selectedTestEntities={Array []}
|
|
445721
|
-
|
|
446035
|
+
senderDetailsByChannel={
|
|
446036
|
+
Object {
|
|
446037
|
+
"EMAIL": Array [],
|
|
446038
|
+
"SMS": Array [],
|
|
446039
|
+
"WHATSAPP": Array [],
|
|
446040
|
+
}
|
|
446041
|
+
}
|
|
445722
446042
|
smsTraiDltEnabled={false}
|
|
445723
446043
|
testEntitiesTreeData={
|
|
445724
446044
|
Array [
|
|
@@ -445749,6 +446069,7 @@ new message content.",
|
|
|
445749
446069
|
<PreviewSection
|
|
445750
446070
|
unifiedPreviewProps={
|
|
445751
446071
|
Object {
|
|
446072
|
+
"activePreviewTab": "rcs",
|
|
445752
446073
|
"channel": "WHATSAPP",
|
|
445753
446074
|
"content": Object {
|
|
445754
446075
|
"_id": null,
|
|
@@ -445783,8 +446104,11 @@ new message content.",
|
|
|
445783
446104
|
"isUpdating": false,
|
|
445784
446105
|
"lastModified": undefined,
|
|
445785
446106
|
"onDeviceChange": [Function],
|
|
446107
|
+
"onPreviewTabChange": [Function],
|
|
445786
446108
|
"selectedCustomer": null,
|
|
445787
446109
|
"showDeviceToggle": true,
|
|
446110
|
+
"smsFallbackContent": null,
|
|
446111
|
+
"smsFallbackResolvedText": undefined,
|
|
445788
446112
|
"updatedByName": undefined,
|
|
445789
446113
|
}
|
|
445790
446114
|
}
|
|
@@ -459905,6 +460229,7 @@ new message content.",
|
|
|
459905
460229
|
className="ant-col ant-col-10 cap-column-v2"
|
|
459906
460230
|
>
|
|
459907
460231
|
<UnifiedPreview
|
|
460232
|
+
activePreviewTab="rcs"
|
|
459908
460233
|
channel="WHATSAPP"
|
|
459909
460234
|
content={
|
|
459910
460235
|
Object {
|
|
@@ -460897,9 +461222,11 @@ new message content.",
|
|
|
460897
461222
|
key=".0"
|
|
460898
461223
|
lastModified={null}
|
|
460899
461224
|
onDeviceChange={[Function]}
|
|
461225
|
+
onPreviewTabChange={[Function]}
|
|
460900
461226
|
selectedCustomer={null}
|
|
460901
461227
|
showDeviceToggle={false}
|
|
460902
461228
|
showHeader={false}
|
|
461229
|
+
smsFallbackContent={null}
|
|
460903
461230
|
updatedByName={null}
|
|
460904
461231
|
>
|
|
460905
461232
|
<CapRow
|
|
@@ -465978,6 +466305,7 @@ new message content.",
|
|
|
465978
466305
|
}
|
|
465979
466306
|
}
|
|
465980
466307
|
show={false}
|
|
466308
|
+
smsFallbackContent={null}
|
|
465981
466309
|
testCustomers={Immutable.List []}
|
|
465982
466310
|
testGroups={Immutable.List []}
|
|
465983
466311
|
updatePreviewError={null}
|
|
@@ -468344,6 +468672,7 @@ new message content.",
|
|
|
468344
468672
|
}
|
|
468345
468673
|
}
|
|
468346
468674
|
show={false}
|
|
468675
|
+
smsFallbackContent={null}
|
|
468347
468676
|
templateLayoutType={null}
|
|
468348
468677
|
testCustomers={Immutable.List []}
|
|
468349
468678
|
testGroups={Immutable.List []}
|
|
@@ -468433,6 +468762,7 @@ new message content.",
|
|
|
468433
468762
|
formatMessage={[Function]}
|
|
468434
468763
|
handleSendTestMessage={[Function]}
|
|
468435
468764
|
handleTestEntitiesChange={[Function]}
|
|
468765
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
468436
468766
|
isFetchingTestCustomers={false}
|
|
468437
468767
|
isFetchingTestGroups={false}
|
|
468438
468768
|
isLoadingSenderDetails={false}
|
|
@@ -468440,7 +468770,13 @@ new message content.",
|
|
|
468440
468770
|
onSaveDeliverySettings={[Function]}
|
|
468441
468771
|
registeredSenderIds={Array []}
|
|
468442
468772
|
selectedTestEntities={Array []}
|
|
468443
|
-
|
|
468773
|
+
senderDetailsByChannel={
|
|
468774
|
+
Object {
|
|
468775
|
+
"EMAIL": Array [],
|
|
468776
|
+
"SMS": Array [],
|
|
468777
|
+
"WHATSAPP": Array [],
|
|
468778
|
+
}
|
|
468779
|
+
}
|
|
468444
468780
|
smsTraiDltEnabled={false}
|
|
468445
468781
|
testEntitiesTreeData={
|
|
468446
468782
|
Array [
|
|
@@ -468471,6 +468807,7 @@ new message content.",
|
|
|
468471
468807
|
<PreviewSection
|
|
468472
468808
|
unifiedPreviewProps={
|
|
468473
468809
|
Object {
|
|
468810
|
+
"activePreviewTab": "rcs",
|
|
468474
468811
|
"channel": "WHATSAPP",
|
|
468475
468812
|
"content": Object {
|
|
468476
468813
|
"_id": null,
|
|
@@ -468505,8 +468842,11 @@ new message content.",
|
|
|
468505
468842
|
"isUpdating": false,
|
|
468506
468843
|
"lastModified": undefined,
|
|
468507
468844
|
"onDeviceChange": [Function],
|
|
468845
|
+
"onPreviewTabChange": [Function],
|
|
468508
468846
|
"selectedCustomer": null,
|
|
468509
468847
|
"showDeviceToggle": true,
|
|
468848
|
+
"smsFallbackContent": null,
|
|
468849
|
+
"smsFallbackResolvedText": undefined,
|
|
468510
468850
|
"updatedByName": undefined,
|
|
468511
468851
|
}
|
|
468512
468852
|
}
|
|
@@ -482925,6 +483265,7 @@ new message content.",
|
|
|
482925
483265
|
className="ant-col ant-col-10 cap-column-v2"
|
|
482926
483266
|
>
|
|
482927
483267
|
<UnifiedPreview
|
|
483268
|
+
activePreviewTab="rcs"
|
|
482928
483269
|
channel="WHATSAPP"
|
|
482929
483270
|
content={
|
|
482930
483271
|
Object {
|
|
@@ -484204,9 +484545,11 @@ new message content.",
|
|
|
484204
484545
|
key=".0"
|
|
484205
484546
|
lastModified={null}
|
|
484206
484547
|
onDeviceChange={[Function]}
|
|
484548
|
+
onPreviewTabChange={[Function]}
|
|
484207
484549
|
selectedCustomer={null}
|
|
484208
484550
|
showDeviceToggle={false}
|
|
484209
484551
|
showHeader={false}
|
|
484552
|
+
smsFallbackContent={null}
|
|
484210
484553
|
updatedByName={null}
|
|
484211
484554
|
>
|
|
484212
484555
|
<CapRow
|
|
@@ -489583,6 +489926,7 @@ new message content.",
|
|
|
489583
489926
|
}
|
|
489584
489927
|
}
|
|
489585
489928
|
show={false}
|
|
489929
|
+
smsFallbackContent={null}
|
|
489586
489930
|
testCustomers={Immutable.List []}
|
|
489587
489931
|
testGroups={Immutable.List []}
|
|
489588
489932
|
updatePreviewError={null}
|
|
@@ -491949,6 +492293,7 @@ new message content.",
|
|
|
491949
492293
|
}
|
|
491950
492294
|
}
|
|
491951
492295
|
show={false}
|
|
492296
|
+
smsFallbackContent={null}
|
|
491952
492297
|
templateLayoutType={null}
|
|
491953
492298
|
testCustomers={Immutable.List []}
|
|
491954
492299
|
testGroups={Immutable.List []}
|
|
@@ -492038,6 +492383,7 @@ new message content.",
|
|
|
492038
492383
|
formatMessage={[Function]}
|
|
492039
492384
|
handleSendTestMessage={[Function]}
|
|
492040
492385
|
handleTestEntitiesChange={[Function]}
|
|
492386
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
492041
492387
|
isFetchingTestCustomers={false}
|
|
492042
492388
|
isFetchingTestGroups={false}
|
|
492043
492389
|
isLoadingSenderDetails={false}
|
|
@@ -492045,7 +492391,13 @@ new message content.",
|
|
|
492045
492391
|
onSaveDeliverySettings={[Function]}
|
|
492046
492392
|
registeredSenderIds={Array []}
|
|
492047
492393
|
selectedTestEntities={Array []}
|
|
492048
|
-
|
|
492394
|
+
senderDetailsByChannel={
|
|
492395
|
+
Object {
|
|
492396
|
+
"EMAIL": Array [],
|
|
492397
|
+
"SMS": Array [],
|
|
492398
|
+
"WHATSAPP": Array [],
|
|
492399
|
+
}
|
|
492400
|
+
}
|
|
492049
492401
|
smsTraiDltEnabled={false}
|
|
492050
492402
|
testEntitiesTreeData={
|
|
492051
492403
|
Array [
|
|
@@ -492076,6 +492428,7 @@ new message content.",
|
|
|
492076
492428
|
<PreviewSection
|
|
492077
492429
|
unifiedPreviewProps={
|
|
492078
492430
|
Object {
|
|
492431
|
+
"activePreviewTab": "rcs",
|
|
492079
492432
|
"channel": "WHATSAPP",
|
|
492080
492433
|
"content": Object {
|
|
492081
492434
|
"_id": null,
|
|
@@ -492110,8 +492463,11 @@ new message content.",
|
|
|
492110
492463
|
"isUpdating": false,
|
|
492111
492464
|
"lastModified": undefined,
|
|
492112
492465
|
"onDeviceChange": [Function],
|
|
492466
|
+
"onPreviewTabChange": [Function],
|
|
492113
492467
|
"selectedCustomer": null,
|
|
492114
492468
|
"showDeviceToggle": true,
|
|
492469
|
+
"smsFallbackContent": null,
|
|
492470
|
+
"smsFallbackResolvedText": undefined,
|
|
492115
492471
|
"updatedByName": undefined,
|
|
492116
492472
|
}
|
|
492117
492473
|
}
|
|
@@ -506816,6 +507172,7 @@ new message content.",
|
|
|
506816
507172
|
className="ant-col ant-col-10 cap-column-v2"
|
|
506817
507173
|
>
|
|
506818
507174
|
<UnifiedPreview
|
|
507175
|
+
activePreviewTab="rcs"
|
|
506819
507176
|
channel="WHATSAPP"
|
|
506820
507177
|
content={
|
|
506821
507178
|
Object {
|
|
@@ -508392,9 +508749,11 @@ new message content.",
|
|
|
508392
508749
|
key=".0"
|
|
508393
508750
|
lastModified={null}
|
|
508394
508751
|
onDeviceChange={[Function]}
|
|
508752
|
+
onPreviewTabChange={[Function]}
|
|
508395
508753
|
selectedCustomer={null}
|
|
508396
508754
|
showDeviceToggle={false}
|
|
508397
508755
|
showHeader={false}
|
|
508756
|
+
smsFallbackContent={null}
|
|
508398
508757
|
updatedByName={null}
|
|
508399
508758
|
>
|
|
508400
508759
|
<CapRow
|
|
@@ -514068,6 +514427,7 @@ new message content.",
|
|
|
514068
514427
|
}
|
|
514069
514428
|
}
|
|
514070
514429
|
show={false}
|
|
514430
|
+
smsFallbackContent={null}
|
|
514071
514431
|
testCustomers={Immutable.List []}
|
|
514072
514432
|
testGroups={Immutable.List []}
|
|
514073
514433
|
updatePreviewError={null}
|
|
@@ -516434,6 +516794,7 @@ new message content.",
|
|
|
516434
516794
|
}
|
|
516435
516795
|
}
|
|
516436
516796
|
show={false}
|
|
516797
|
+
smsFallbackContent={null}
|
|
516437
516798
|
templateLayoutType={null}
|
|
516438
516799
|
testCustomers={Immutable.List []}
|
|
516439
516800
|
testGroups={Immutable.List []}
|
|
@@ -516523,6 +516884,7 @@ new message content.",
|
|
|
516523
516884
|
formatMessage={[Function]}
|
|
516524
516885
|
handleSendTestMessage={[Function]}
|
|
516525
516886
|
handleTestEntitiesChange={[Function]}
|
|
516887
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
516526
516888
|
isFetchingTestCustomers={false}
|
|
516527
516889
|
isFetchingTestGroups={false}
|
|
516528
516890
|
isLoadingSenderDetails={false}
|
|
@@ -516530,7 +516892,13 @@ new message content.",
|
|
|
516530
516892
|
onSaveDeliverySettings={[Function]}
|
|
516531
516893
|
registeredSenderIds={Array []}
|
|
516532
516894
|
selectedTestEntities={Array []}
|
|
516533
|
-
|
|
516895
|
+
senderDetailsByChannel={
|
|
516896
|
+
Object {
|
|
516897
|
+
"EMAIL": Array [],
|
|
516898
|
+
"SMS": Array [],
|
|
516899
|
+
"WHATSAPP": Array [],
|
|
516900
|
+
}
|
|
516901
|
+
}
|
|
516534
516902
|
smsTraiDltEnabled={false}
|
|
516535
516903
|
testEntitiesTreeData={
|
|
516536
516904
|
Array [
|
|
@@ -516561,6 +516929,7 @@ new message content.",
|
|
|
516561
516929
|
<PreviewSection
|
|
516562
516930
|
unifiedPreviewProps={
|
|
516563
516931
|
Object {
|
|
516932
|
+
"activePreviewTab": "rcs",
|
|
516564
516933
|
"channel": "WHATSAPP",
|
|
516565
516934
|
"content": Object {
|
|
516566
516935
|
"_id": null,
|
|
@@ -516595,8 +516964,11 @@ new message content.",
|
|
|
516595
516964
|
"isUpdating": false,
|
|
516596
516965
|
"lastModified": undefined,
|
|
516597
516966
|
"onDeviceChange": [Function],
|
|
516967
|
+
"onPreviewTabChange": [Function],
|
|
516598
516968
|
"selectedCustomer": null,
|
|
516599
516969
|
"showDeviceToggle": true,
|
|
516970
|
+
"smsFallbackContent": null,
|
|
516971
|
+
"smsFallbackResolvedText": undefined,
|
|
516600
516972
|
"updatedByName": undefined,
|
|
516601
516973
|
}
|
|
516602
516974
|
}
|
|
@@ -531602,6 +531974,7 @@ new message content.",
|
|
|
531602
531974
|
className="ant-col ant-col-10 cap-column-v2"
|
|
531603
531975
|
>
|
|
531604
531976
|
<UnifiedPreview
|
|
531977
|
+
activePreviewTab="rcs"
|
|
531605
531978
|
channel="WHATSAPP"
|
|
531606
531979
|
content={
|
|
531607
531980
|
Object {
|
|
@@ -533479,9 +533852,11 @@ new message content.",
|
|
|
533479
533852
|
key=".0"
|
|
533480
533853
|
lastModified={null}
|
|
533481
533854
|
onDeviceChange={[Function]}
|
|
533855
|
+
onPreviewTabChange={[Function]}
|
|
533482
533856
|
selectedCustomer={null}
|
|
533483
533857
|
showDeviceToggle={false}
|
|
533484
533858
|
showHeader={false}
|
|
533859
|
+
smsFallbackContent={null}
|
|
533485
533860
|
updatedByName={null}
|
|
533486
533861
|
>
|
|
533487
533862
|
<CapRow
|
|
@@ -539456,6 +539831,7 @@ new message content.",
|
|
|
539456
539831
|
}
|
|
539457
539832
|
}
|
|
539458
539833
|
show={false}
|
|
539834
|
+
smsFallbackContent={null}
|
|
539459
539835
|
testCustomers={Immutable.List []}
|
|
539460
539836
|
testGroups={Immutable.List []}
|
|
539461
539837
|
updatePreviewError={null}
|
|
@@ -541822,6 +542198,7 @@ new message content.",
|
|
|
541822
542198
|
}
|
|
541823
542199
|
}
|
|
541824
542200
|
show={false}
|
|
542201
|
+
smsFallbackContent={null}
|
|
541825
542202
|
templateLayoutType={null}
|
|
541826
542203
|
testCustomers={Immutable.List []}
|
|
541827
542204
|
testGroups={Immutable.List []}
|
|
@@ -541911,6 +542288,7 @@ new message content.",
|
|
|
541911
542288
|
formatMessage={[Function]}
|
|
541912
542289
|
handleSendTestMessage={[Function]}
|
|
541913
542290
|
handleTestEntitiesChange={[Function]}
|
|
542291
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
541914
542292
|
isFetchingTestCustomers={false}
|
|
541915
542293
|
isFetchingTestGroups={false}
|
|
541916
542294
|
isLoadingSenderDetails={false}
|
|
@@ -541918,7 +542296,13 @@ new message content.",
|
|
|
541918
542296
|
onSaveDeliverySettings={[Function]}
|
|
541919
542297
|
registeredSenderIds={Array []}
|
|
541920
542298
|
selectedTestEntities={Array []}
|
|
541921
|
-
|
|
542299
|
+
senderDetailsByChannel={
|
|
542300
|
+
Object {
|
|
542301
|
+
"EMAIL": Array [],
|
|
542302
|
+
"SMS": Array [],
|
|
542303
|
+
"WHATSAPP": Array [],
|
|
542304
|
+
}
|
|
542305
|
+
}
|
|
541922
542306
|
smsTraiDltEnabled={false}
|
|
541923
542307
|
testEntitiesTreeData={
|
|
541924
542308
|
Array [
|
|
@@ -541949,6 +542333,7 @@ new message content.",
|
|
|
541949
542333
|
<PreviewSection
|
|
541950
542334
|
unifiedPreviewProps={
|
|
541951
542335
|
Object {
|
|
542336
|
+
"activePreviewTab": "rcs",
|
|
541952
542337
|
"channel": "WHATSAPP",
|
|
541953
542338
|
"content": Object {
|
|
541954
542339
|
"_id": null,
|
|
@@ -541983,8 +542368,11 @@ new message content.",
|
|
|
541983
542368
|
"isUpdating": false,
|
|
541984
542369
|
"lastModified": undefined,
|
|
541985
542370
|
"onDeviceChange": [Function],
|
|
542371
|
+
"onPreviewTabChange": [Function],
|
|
541986
542372
|
"selectedCustomer": null,
|
|
541987
542373
|
"showDeviceToggle": true,
|
|
542374
|
+
"smsFallbackContent": null,
|
|
542375
|
+
"smsFallbackResolvedText": undefined,
|
|
541988
542376
|
"updatedByName": undefined,
|
|
541989
542377
|
}
|
|
541990
542378
|
}
|
|
@@ -557290,6 +557678,7 @@ new message content.",
|
|
|
557290
557678
|
className="ant-col ant-col-10 cap-column-v2"
|
|
557291
557679
|
>
|
|
557292
557680
|
<UnifiedPreview
|
|
557681
|
+
activePreviewTab="rcs"
|
|
557293
557682
|
channel="WHATSAPP"
|
|
557294
557683
|
content={
|
|
557295
557684
|
Object {
|
|
@@ -559467,9 +559856,11 @@ new message content.",
|
|
|
559467
559856
|
key=".0"
|
|
559468
559857
|
lastModified={null}
|
|
559469
559858
|
onDeviceChange={[Function]}
|
|
559859
|
+
onPreviewTabChange={[Function]}
|
|
559470
559860
|
selectedCustomer={null}
|
|
559471
559861
|
showDeviceToggle={false}
|
|
559472
559862
|
showHeader={false}
|
|
559863
|
+
smsFallbackContent={null}
|
|
559473
559864
|
updatedByName={null}
|
|
559474
559865
|
>
|
|
559475
559866
|
<CapRow
|
|
@@ -565744,6 +566135,7 @@ new message content.",
|
|
|
565744
566135
|
}
|
|
565745
566136
|
}
|
|
565746
566137
|
show={false}
|
|
566138
|
+
smsFallbackContent={null}
|
|
565747
566139
|
testCustomers={Immutable.List []}
|
|
565748
566140
|
testGroups={Immutable.List []}
|
|
565749
566141
|
updatePreviewError={null}
|
|
@@ -568110,6 +568502,7 @@ new message content.",
|
|
|
568110
568502
|
}
|
|
568111
568503
|
}
|
|
568112
568504
|
show={false}
|
|
568505
|
+
smsFallbackContent={null}
|
|
568113
568506
|
templateLayoutType={null}
|
|
568114
568507
|
testCustomers={Immutable.List []}
|
|
568115
568508
|
testGroups={Immutable.List []}
|
|
@@ -568199,6 +568592,7 @@ new message content.",
|
|
|
568199
568592
|
formatMessage={[Function]}
|
|
568200
568593
|
handleSendTestMessage={[Function]}
|
|
568201
568594
|
handleTestEntitiesChange={[Function]}
|
|
568595
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
568202
568596
|
isFetchingTestCustomers={false}
|
|
568203
568597
|
isFetchingTestGroups={false}
|
|
568204
568598
|
isLoadingSenderDetails={false}
|
|
@@ -568206,7 +568600,13 @@ new message content.",
|
|
|
568206
568600
|
onSaveDeliverySettings={[Function]}
|
|
568207
568601
|
registeredSenderIds={Array []}
|
|
568208
568602
|
selectedTestEntities={Array []}
|
|
568209
|
-
|
|
568603
|
+
senderDetailsByChannel={
|
|
568604
|
+
Object {
|
|
568605
|
+
"EMAIL": Array [],
|
|
568606
|
+
"SMS": Array [],
|
|
568607
|
+
"WHATSAPP": Array [],
|
|
568608
|
+
}
|
|
568609
|
+
}
|
|
568210
568610
|
smsTraiDltEnabled={false}
|
|
568211
568611
|
testEntitiesTreeData={
|
|
568212
568612
|
Array [
|
|
@@ -568237,6 +568637,7 @@ new message content.",
|
|
|
568237
568637
|
<PreviewSection
|
|
568238
568638
|
unifiedPreviewProps={
|
|
568239
568639
|
Object {
|
|
568640
|
+
"activePreviewTab": "rcs",
|
|
568240
568641
|
"channel": "WHATSAPP",
|
|
568241
568642
|
"content": Object {
|
|
568242
568643
|
"_id": null,
|
|
@@ -568271,8 +568672,11 @@ new message content.",
|
|
|
568271
568672
|
"isUpdating": false,
|
|
568272
568673
|
"lastModified": undefined,
|
|
568273
568674
|
"onDeviceChange": [Function],
|
|
568675
|
+
"onPreviewTabChange": [Function],
|
|
568274
568676
|
"selectedCustomer": null,
|
|
568275
568677
|
"showDeviceToggle": true,
|
|
568678
|
+
"smsFallbackContent": null,
|
|
568679
|
+
"smsFallbackResolvedText": undefined,
|
|
568276
568680
|
"updatedByName": undefined,
|
|
568277
568681
|
}
|
|
568278
568682
|
}
|
|
@@ -583875,6 +584279,7 @@ new message content.",
|
|
|
583875
584279
|
className="ant-col ant-col-10 cap-column-v2"
|
|
583876
584280
|
>
|
|
583877
584281
|
<UnifiedPreview
|
|
584282
|
+
activePreviewTab="rcs"
|
|
583878
584283
|
channel="WHATSAPP"
|
|
583879
584284
|
content={
|
|
583880
584285
|
Object {
|
|
@@ -586349,9 +586754,11 @@ new message content.",
|
|
|
586349
586754
|
key=".0"
|
|
586350
586755
|
lastModified={null}
|
|
586351
586756
|
onDeviceChange={[Function]}
|
|
586757
|
+
onPreviewTabChange={[Function]}
|
|
586352
586758
|
selectedCustomer={null}
|
|
586353
586759
|
showDeviceToggle={false}
|
|
586354
586760
|
showHeader={false}
|
|
586761
|
+
smsFallbackContent={null}
|
|
586355
586762
|
updatedByName={null}
|
|
586356
586763
|
>
|
|
586357
586764
|
<CapRow
|
|
@@ -592923,6 +593330,7 @@ new message content.",
|
|
|
592923
593330
|
}
|
|
592924
593331
|
}
|
|
592925
593332
|
show={false}
|
|
593333
|
+
smsFallbackContent={null}
|
|
592926
593334
|
testCustomers={Immutable.List []}
|
|
592927
593335
|
testGroups={Immutable.List []}
|
|
592928
593336
|
updatePreviewError={null}
|
|
@@ -595289,6 +595697,7 @@ new message content.",
|
|
|
595289
595697
|
}
|
|
595290
595698
|
}
|
|
595291
595699
|
show={false}
|
|
595700
|
+
smsFallbackContent={null}
|
|
595292
595701
|
templateLayoutType={null}
|
|
595293
595702
|
testCustomers={Immutable.List []}
|
|
595294
595703
|
testGroups={Immutable.List []}
|
|
@@ -595378,6 +595787,7 @@ new message content.",
|
|
|
595378
595787
|
formatMessage={[Function]}
|
|
595379
595788
|
handleSendTestMessage={[Function]}
|
|
595380
595789
|
handleTestEntitiesChange={[Function]}
|
|
595790
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
595381
595791
|
isFetchingTestCustomers={false}
|
|
595382
595792
|
isFetchingTestGroups={false}
|
|
595383
595793
|
isLoadingSenderDetails={false}
|
|
@@ -595385,7 +595795,13 @@ new message content.",
|
|
|
595385
595795
|
onSaveDeliverySettings={[Function]}
|
|
595386
595796
|
registeredSenderIds={Array []}
|
|
595387
595797
|
selectedTestEntities={Array []}
|
|
595388
|
-
|
|
595798
|
+
senderDetailsByChannel={
|
|
595799
|
+
Object {
|
|
595800
|
+
"EMAIL": Array [],
|
|
595801
|
+
"SMS": Array [],
|
|
595802
|
+
"WHATSAPP": Array [],
|
|
595803
|
+
}
|
|
595804
|
+
}
|
|
595389
595805
|
smsTraiDltEnabled={false}
|
|
595390
595806
|
testEntitiesTreeData={
|
|
595391
595807
|
Array [
|
|
@@ -595416,6 +595832,7 @@ new message content.",
|
|
|
595416
595832
|
<PreviewSection
|
|
595417
595833
|
unifiedPreviewProps={
|
|
595418
595834
|
Object {
|
|
595835
|
+
"activePreviewTab": "rcs",
|
|
595419
595836
|
"channel": "WHATSAPP",
|
|
595420
595837
|
"content": Object {
|
|
595421
595838
|
"_id": null,
|
|
@@ -595450,8 +595867,11 @@ new message content.",
|
|
|
595450
595867
|
"isUpdating": false,
|
|
595451
595868
|
"lastModified": undefined,
|
|
595452
595869
|
"onDeviceChange": [Function],
|
|
595870
|
+
"onPreviewTabChange": [Function],
|
|
595453
595871
|
"selectedCustomer": null,
|
|
595454
595872
|
"showDeviceToggle": true,
|
|
595873
|
+
"smsFallbackContent": null,
|
|
595874
|
+
"smsFallbackResolvedText": undefined,
|
|
595455
595875
|
"updatedByName": undefined,
|
|
595456
595876
|
}
|
|
595457
595877
|
}
|
|
@@ -611351,6 +611771,7 @@ new message content.",
|
|
|
611351
611771
|
className="ant-col ant-col-10 cap-column-v2"
|
|
611352
611772
|
>
|
|
611353
611773
|
<UnifiedPreview
|
|
611774
|
+
activePreviewTab="rcs"
|
|
611354
611775
|
channel="WHATSAPP"
|
|
611355
611776
|
content={
|
|
611356
611777
|
Object {
|
|
@@ -614122,9 +614543,11 @@ new message content.",
|
|
|
614122
614543
|
key=".0"
|
|
614123
614544
|
lastModified={null}
|
|
614124
614545
|
onDeviceChange={[Function]}
|
|
614546
|
+
onPreviewTabChange={[Function]}
|
|
614125
614547
|
selectedCustomer={null}
|
|
614126
614548
|
showDeviceToggle={false}
|
|
614127
614549
|
showHeader={false}
|
|
614550
|
+
smsFallbackContent={null}
|
|
614128
614551
|
updatedByName={null}
|
|
614129
614552
|
>
|
|
614130
614553
|
<CapRow
|
|
@@ -620993,6 +621416,7 @@ new message content.",
|
|
|
620993
621416
|
}
|
|
620994
621417
|
}
|
|
620995
621418
|
show={false}
|
|
621419
|
+
smsFallbackContent={null}
|
|
620996
621420
|
testCustomers={Immutable.List []}
|
|
620997
621421
|
testGroups={Immutable.List []}
|
|
620998
621422
|
updatePreviewError={null}
|
|
@@ -623359,6 +623783,7 @@ new message content.",
|
|
|
623359
623783
|
}
|
|
623360
623784
|
}
|
|
623361
623785
|
show={false}
|
|
623786
|
+
smsFallbackContent={null}
|
|
623362
623787
|
templateLayoutType={null}
|
|
623363
623788
|
testCustomers={Immutable.List []}
|
|
623364
623789
|
testGroups={Immutable.List []}
|
|
@@ -623448,6 +623873,7 @@ new message content.",
|
|
|
623448
623873
|
formatMessage={[Function]}
|
|
623449
623874
|
handleSendTestMessage={[Function]}
|
|
623450
623875
|
handleTestEntitiesChange={[Function]}
|
|
623876
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
623451
623877
|
isFetchingTestCustomers={false}
|
|
623452
623878
|
isFetchingTestGroups={false}
|
|
623453
623879
|
isLoadingSenderDetails={false}
|
|
@@ -623455,7 +623881,13 @@ new message content.",
|
|
|
623455
623881
|
onSaveDeliverySettings={[Function]}
|
|
623456
623882
|
registeredSenderIds={Array []}
|
|
623457
623883
|
selectedTestEntities={Array []}
|
|
623458
|
-
|
|
623884
|
+
senderDetailsByChannel={
|
|
623885
|
+
Object {
|
|
623886
|
+
"EMAIL": Array [],
|
|
623887
|
+
"SMS": Array [],
|
|
623888
|
+
"WHATSAPP": Array [],
|
|
623889
|
+
}
|
|
623890
|
+
}
|
|
623459
623891
|
smsTraiDltEnabled={false}
|
|
623460
623892
|
testEntitiesTreeData={
|
|
623461
623893
|
Array [
|
|
@@ -623486,6 +623918,7 @@ new message content.",
|
|
|
623486
623918
|
<PreviewSection
|
|
623487
623919
|
unifiedPreviewProps={
|
|
623488
623920
|
Object {
|
|
623921
|
+
"activePreviewTab": "rcs",
|
|
623489
623922
|
"channel": "WHATSAPP",
|
|
623490
623923
|
"content": Object {
|
|
623491
623924
|
"_id": null,
|
|
@@ -623520,8 +623953,11 @@ new message content.",
|
|
|
623520
623953
|
"isUpdating": false,
|
|
623521
623954
|
"lastModified": undefined,
|
|
623522
623955
|
"onDeviceChange": [Function],
|
|
623956
|
+
"onPreviewTabChange": [Function],
|
|
623523
623957
|
"selectedCustomer": null,
|
|
623524
623958
|
"showDeviceToggle": true,
|
|
623959
|
+
"smsFallbackContent": null,
|
|
623960
|
+
"smsFallbackResolvedText": undefined,
|
|
623525
623961
|
"updatedByName": undefined,
|
|
623526
623962
|
}
|
|
623527
623963
|
}
|
|
@@ -639719,6 +640155,7 @@ new message content.",
|
|
|
639719
640155
|
className="ant-col ant-col-10 cap-column-v2"
|
|
639720
640156
|
>
|
|
639721
640157
|
<UnifiedPreview
|
|
640158
|
+
activePreviewTab="rcs"
|
|
639722
640159
|
channel="WHATSAPP"
|
|
639723
640160
|
content={
|
|
639724
640161
|
Object {
|
|
@@ -642777,9 +643214,11 @@ new message content.",
|
|
|
642777
643214
|
key=".0"
|
|
642778
643215
|
lastModified={null}
|
|
642779
643216
|
onDeviceChange={[Function]}
|
|
643217
|
+
onPreviewTabChange={[Function]}
|
|
642780
643218
|
selectedCustomer={null}
|
|
642781
643219
|
showDeviceToggle={false}
|
|
642782
643220
|
showHeader={false}
|
|
643221
|
+
smsFallbackContent={null}
|
|
642783
643222
|
updatedByName={null}
|
|
642784
643223
|
>
|
|
642785
643224
|
<CapRow
|
|
@@ -649935,6 +650374,7 @@ new message content.",
|
|
|
649935
650374
|
}
|
|
649936
650375
|
}
|
|
649937
650376
|
show={false}
|
|
650377
|
+
smsFallbackContent={null}
|
|
649938
650378
|
testCustomers={Immutable.List []}
|
|
649939
650379
|
testGroups={Immutable.List []}
|
|
649940
650380
|
updatePreviewError={null}
|
|
@@ -652301,6 +652741,7 @@ new message content.",
|
|
|
652301
652741
|
}
|
|
652302
652742
|
}
|
|
652303
652743
|
show={false}
|
|
652744
|
+
smsFallbackContent={null}
|
|
652304
652745
|
templateLayoutType={null}
|
|
652305
652746
|
testCustomers={Immutable.List []}
|
|
652306
652747
|
testGroups={Immutable.List []}
|
|
@@ -652390,6 +652831,7 @@ new message content.",
|
|
|
652390
652831
|
formatMessage={[Function]}
|
|
652391
652832
|
handleSendTestMessage={[Function]}
|
|
652392
652833
|
handleTestEntitiesChange={[Function]}
|
|
652834
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
652393
652835
|
isFetchingTestCustomers={false}
|
|
652394
652836
|
isFetchingTestGroups={false}
|
|
652395
652837
|
isLoadingSenderDetails={false}
|
|
@@ -652397,7 +652839,13 @@ new message content.",
|
|
|
652397
652839
|
onSaveDeliverySettings={[Function]}
|
|
652398
652840
|
registeredSenderIds={Array []}
|
|
652399
652841
|
selectedTestEntities={Array []}
|
|
652400
|
-
|
|
652842
|
+
senderDetailsByChannel={
|
|
652843
|
+
Object {
|
|
652844
|
+
"EMAIL": Array [],
|
|
652845
|
+
"SMS": Array [],
|
|
652846
|
+
"WHATSAPP": Array [],
|
|
652847
|
+
}
|
|
652848
|
+
}
|
|
652401
652849
|
smsTraiDltEnabled={false}
|
|
652402
652850
|
testEntitiesTreeData={
|
|
652403
652851
|
Array [
|
|
@@ -652428,6 +652876,7 @@ new message content.",
|
|
|
652428
652876
|
<PreviewSection
|
|
652429
652877
|
unifiedPreviewProps={
|
|
652430
652878
|
Object {
|
|
652879
|
+
"activePreviewTab": "rcs",
|
|
652431
652880
|
"channel": "WHATSAPP",
|
|
652432
652881
|
"content": Object {
|
|
652433
652882
|
"_id": null,
|
|
@@ -652462,8 +652911,11 @@ new message content.",
|
|
|
652462
652911
|
"isUpdating": false,
|
|
652463
652912
|
"lastModified": undefined,
|
|
652464
652913
|
"onDeviceChange": [Function],
|
|
652914
|
+
"onPreviewTabChange": [Function],
|
|
652465
652915
|
"selectedCustomer": null,
|
|
652466
652916
|
"showDeviceToggle": true,
|
|
652917
|
+
"smsFallbackContent": null,
|
|
652918
|
+
"smsFallbackResolvedText": undefined,
|
|
652467
652919
|
"updatedByName": undefined,
|
|
652468
652920
|
}
|
|
652469
652921
|
}
|
|
@@ -666605,6 +667057,7 @@ new message content.",
|
|
|
666605
667057
|
className="ant-col ant-col-10 cap-column-v2"
|
|
666606
667058
|
>
|
|
666607
667059
|
<UnifiedPreview
|
|
667060
|
+
activePreviewTab="rcs"
|
|
666608
667061
|
channel="WHATSAPP"
|
|
666609
667062
|
content={
|
|
666610
667063
|
Object {
|
|
@@ -667607,9 +668060,11 @@ new message content.",
|
|
|
667607
668060
|
key=".0"
|
|
667608
668061
|
lastModified={null}
|
|
667609
668062
|
onDeviceChange={[Function]}
|
|
668063
|
+
onPreviewTabChange={[Function]}
|
|
667610
668064
|
selectedCustomer={null}
|
|
667611
668065
|
showDeviceToggle={false}
|
|
667612
668066
|
showHeader={false}
|
|
668067
|
+
smsFallbackContent={null}
|
|
667613
668068
|
updatedByName={null}
|
|
667614
668069
|
>
|
|
667615
668070
|
<CapRow
|
|
@@ -672698,6 +673153,7 @@ new message content.",
|
|
|
672698
673153
|
}
|
|
672699
673154
|
}
|
|
672700
673155
|
show={false}
|
|
673156
|
+
smsFallbackContent={null}
|
|
672701
673157
|
testCustomers={Immutable.List []}
|
|
672702
673158
|
testGroups={Immutable.List []}
|
|
672703
673159
|
updatePreviewError={null}
|
|
@@ -675064,6 +675520,7 @@ new message content.",
|
|
|
675064
675520
|
}
|
|
675065
675521
|
}
|
|
675066
675522
|
show={false}
|
|
675523
|
+
smsFallbackContent={null}
|
|
675067
675524
|
templateLayoutType={null}
|
|
675068
675525
|
testCustomers={Immutable.List []}
|
|
675069
675526
|
testGroups={Immutable.List []}
|
|
@@ -675153,6 +675610,7 @@ new message content.",
|
|
|
675153
675610
|
formatMessage={[Function]}
|
|
675154
675611
|
handleSendTestMessage={[Function]}
|
|
675155
675612
|
handleTestEntitiesChange={[Function]}
|
|
675613
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
675156
675614
|
isFetchingTestCustomers={false}
|
|
675157
675615
|
isFetchingTestGroups={false}
|
|
675158
675616
|
isLoadingSenderDetails={false}
|
|
@@ -675160,7 +675618,13 @@ new message content.",
|
|
|
675160
675618
|
onSaveDeliverySettings={[Function]}
|
|
675161
675619
|
registeredSenderIds={Array []}
|
|
675162
675620
|
selectedTestEntities={Array []}
|
|
675163
|
-
|
|
675621
|
+
senderDetailsByChannel={
|
|
675622
|
+
Object {
|
|
675623
|
+
"EMAIL": Array [],
|
|
675624
|
+
"SMS": Array [],
|
|
675625
|
+
"WHATSAPP": Array [],
|
|
675626
|
+
}
|
|
675627
|
+
}
|
|
675164
675628
|
smsTraiDltEnabled={false}
|
|
675165
675629
|
testEntitiesTreeData={
|
|
675166
675630
|
Array [
|
|
@@ -675191,6 +675655,7 @@ new message content.",
|
|
|
675191
675655
|
<PreviewSection
|
|
675192
675656
|
unifiedPreviewProps={
|
|
675193
675657
|
Object {
|
|
675658
|
+
"activePreviewTab": "rcs",
|
|
675194
675659
|
"channel": "WHATSAPP",
|
|
675195
675660
|
"content": Object {
|
|
675196
675661
|
"_id": null,
|
|
@@ -675225,8 +675690,11 @@ new message content.",
|
|
|
675225
675690
|
"isUpdating": false,
|
|
675226
675691
|
"lastModified": undefined,
|
|
675227
675692
|
"onDeviceChange": [Function],
|
|
675693
|
+
"onPreviewTabChange": [Function],
|
|
675228
675694
|
"selectedCustomer": null,
|
|
675229
675695
|
"showDeviceToggle": true,
|
|
675696
|
+
"smsFallbackContent": null,
|
|
675697
|
+
"smsFallbackResolvedText": undefined,
|
|
675230
675698
|
"updatedByName": undefined,
|
|
675231
675699
|
}
|
|
675232
675700
|
}
|
|
@@ -689661,6 +690129,7 @@ new message content.",
|
|
|
689661
690129
|
className="ant-col ant-col-10 cap-column-v2"
|
|
689662
690130
|
>
|
|
689663
690131
|
<UnifiedPreview
|
|
690132
|
+
activePreviewTab="rcs"
|
|
689664
690133
|
channel="WHATSAPP"
|
|
689665
690134
|
content={
|
|
689666
690135
|
Object {
|
|
@@ -690960,9 +691429,11 @@ new message content.",
|
|
|
690960
691429
|
key=".0"
|
|
690961
691430
|
lastModified={null}
|
|
690962
691431
|
onDeviceChange={[Function]}
|
|
691432
|
+
onPreviewTabChange={[Function]}
|
|
690963
691433
|
selectedCustomer={null}
|
|
690964
691434
|
showDeviceToggle={false}
|
|
690965
691435
|
showHeader={false}
|
|
691436
|
+
smsFallbackContent={null}
|
|
690966
691437
|
updatedByName={null}
|
|
690967
691438
|
>
|
|
690968
691439
|
<CapRow
|
|
@@ -696348,6 +696819,7 @@ new message content.",
|
|
|
696348
696819
|
}
|
|
696349
696820
|
}
|
|
696350
696821
|
show={false}
|
|
696822
|
+
smsFallbackContent={null}
|
|
696351
696823
|
testCustomers={Immutable.List []}
|
|
696352
696824
|
testGroups={Immutable.List []}
|
|
696353
696825
|
updatePreviewError={null}
|
|
@@ -698714,6 +699186,7 @@ new message content.",
|
|
|
698714
699186
|
}
|
|
698715
699187
|
}
|
|
698716
699188
|
show={false}
|
|
699189
|
+
smsFallbackContent={null}
|
|
698717
699190
|
templateLayoutType={null}
|
|
698718
699191
|
testCustomers={Immutable.List []}
|
|
698719
699192
|
testGroups={Immutable.List []}
|
|
@@ -698803,6 +699276,7 @@ new message content.",
|
|
|
698803
699276
|
formatMessage={[Function]}
|
|
698804
699277
|
handleSendTestMessage={[Function]}
|
|
698805
699278
|
handleTestEntitiesChange={[Function]}
|
|
699279
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
698806
699280
|
isFetchingTestCustomers={false}
|
|
698807
699281
|
isFetchingTestGroups={false}
|
|
698808
699282
|
isLoadingSenderDetails={false}
|
|
@@ -698810,7 +699284,13 @@ new message content.",
|
|
|
698810
699284
|
onSaveDeliverySettings={[Function]}
|
|
698811
699285
|
registeredSenderIds={Array []}
|
|
698812
699286
|
selectedTestEntities={Array []}
|
|
698813
|
-
|
|
699287
|
+
senderDetailsByChannel={
|
|
699288
|
+
Object {
|
|
699289
|
+
"EMAIL": Array [],
|
|
699290
|
+
"SMS": Array [],
|
|
699291
|
+
"WHATSAPP": Array [],
|
|
699292
|
+
}
|
|
699293
|
+
}
|
|
698814
699294
|
smsTraiDltEnabled={false}
|
|
698815
699295
|
testEntitiesTreeData={
|
|
698816
699296
|
Array [
|
|
@@ -698841,6 +699321,7 @@ new message content.",
|
|
|
698841
699321
|
<PreviewSection
|
|
698842
699322
|
unifiedPreviewProps={
|
|
698843
699323
|
Object {
|
|
699324
|
+
"activePreviewTab": "rcs",
|
|
698844
699325
|
"channel": "WHATSAPP",
|
|
698845
699326
|
"content": Object {
|
|
698846
699327
|
"_id": null,
|
|
@@ -698875,8 +699356,11 @@ new message content.",
|
|
|
698875
699356
|
"isUpdating": false,
|
|
698876
699357
|
"lastModified": undefined,
|
|
698877
699358
|
"onDeviceChange": [Function],
|
|
699359
|
+
"onPreviewTabChange": [Function],
|
|
698878
699360
|
"selectedCustomer": null,
|
|
698879
699361
|
"showDeviceToggle": true,
|
|
699362
|
+
"smsFallbackContent": null,
|
|
699363
|
+
"smsFallbackResolvedText": undefined,
|
|
698880
699364
|
"updatedByName": undefined,
|
|
698881
699365
|
}
|
|
698882
699366
|
}
|
|
@@ -713628,6 +714112,7 @@ new message content.",
|
|
|
713628
714112
|
className="ant-col ant-col-10 cap-column-v2"
|
|
713629
714113
|
>
|
|
713630
714114
|
<UnifiedPreview
|
|
714115
|
+
activePreviewTab="rcs"
|
|
713631
714116
|
channel="WHATSAPP"
|
|
713632
714117
|
content={
|
|
713633
714118
|
Object {
|
|
@@ -715244,9 +715729,11 @@ new message content.",
|
|
|
715244
715729
|
key=".0"
|
|
715245
715730
|
lastModified={null}
|
|
715246
715731
|
onDeviceChange={[Function]}
|
|
715732
|
+
onPreviewTabChange={[Function]}
|
|
715247
715733
|
selectedCustomer={null}
|
|
715248
715734
|
showDeviceToggle={false}
|
|
715249
715735
|
showHeader={false}
|
|
715736
|
+
smsFallbackContent={null}
|
|
715250
715737
|
updatedByName={null}
|
|
715251
715738
|
>
|
|
715252
715739
|
<CapRow
|
|
@@ -720949,6 +721436,7 @@ new message content.",
|
|
|
720949
721436
|
}
|
|
720950
721437
|
}
|
|
720951
721438
|
show={false}
|
|
721439
|
+
smsFallbackContent={null}
|
|
720952
721440
|
testCustomers={Immutable.List []}
|
|
720953
721441
|
testGroups={Immutable.List []}
|
|
720954
721442
|
updatePreviewError={null}
|
|
@@ -723315,6 +723803,7 @@ new message content.",
|
|
|
723315
723803
|
}
|
|
723316
723804
|
}
|
|
723317
723805
|
show={false}
|
|
723806
|
+
smsFallbackContent={null}
|
|
723318
723807
|
templateLayoutType={null}
|
|
723319
723808
|
testCustomers={Immutable.List []}
|
|
723320
723809
|
testGroups={Immutable.List []}
|
|
@@ -723404,6 +723893,7 @@ new message content.",
|
|
|
723404
723893
|
formatMessage={[Function]}
|
|
723405
723894
|
handleSendTestMessage={[Function]}
|
|
723406
723895
|
handleTestEntitiesChange={[Function]}
|
|
723896
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
723407
723897
|
isFetchingTestCustomers={false}
|
|
723408
723898
|
isFetchingTestGroups={false}
|
|
723409
723899
|
isLoadingSenderDetails={false}
|
|
@@ -723411,7 +723901,13 @@ new message content.",
|
|
|
723411
723901
|
onSaveDeliverySettings={[Function]}
|
|
723412
723902
|
registeredSenderIds={Array []}
|
|
723413
723903
|
selectedTestEntities={Array []}
|
|
723414
|
-
|
|
723904
|
+
senderDetailsByChannel={
|
|
723905
|
+
Object {
|
|
723906
|
+
"EMAIL": Array [],
|
|
723907
|
+
"SMS": Array [],
|
|
723908
|
+
"WHATSAPP": Array [],
|
|
723909
|
+
}
|
|
723910
|
+
}
|
|
723415
723911
|
smsTraiDltEnabled={false}
|
|
723416
723912
|
testEntitiesTreeData={
|
|
723417
723913
|
Array [
|
|
@@ -723442,6 +723938,7 @@ new message content.",
|
|
|
723442
723938
|
<PreviewSection
|
|
723443
723939
|
unifiedPreviewProps={
|
|
723444
723940
|
Object {
|
|
723941
|
+
"activePreviewTab": "rcs",
|
|
723445
723942
|
"channel": "WHATSAPP",
|
|
723446
723943
|
"content": Object {
|
|
723447
723944
|
"_id": null,
|
|
@@ -723476,8 +723973,11 @@ new message content.",
|
|
|
723476
723973
|
"isUpdating": false,
|
|
723477
723974
|
"lastModified": undefined,
|
|
723478
723975
|
"onDeviceChange": [Function],
|
|
723976
|
+
"onPreviewTabChange": [Function],
|
|
723479
723977
|
"selectedCustomer": null,
|
|
723480
723978
|
"showDeviceToggle": true,
|
|
723979
|
+
"smsFallbackContent": null,
|
|
723980
|
+
"smsFallbackResolvedText": undefined,
|
|
723481
723981
|
"updatedByName": undefined,
|
|
723482
723982
|
}
|
|
723483
723983
|
}
|
|
@@ -737312,6 +737812,7 @@ new message content.",
|
|
|
737312
737812
|
className="ant-col ant-col-10 cap-column-v2"
|
|
737313
737813
|
>
|
|
737314
737814
|
<UnifiedPreview
|
|
737815
|
+
activePreviewTab="rcs"
|
|
737315
737816
|
channel="WHATSAPP"
|
|
737316
737817
|
content={
|
|
737317
737818
|
Object {
|
|
@@ -738007,9 +738508,11 @@ new message content.",
|
|
|
738007
738508
|
key=".0"
|
|
738008
738509
|
lastModified={null}
|
|
738009
738510
|
onDeviceChange={[Function]}
|
|
738511
|
+
onPreviewTabChange={[Function]}
|
|
738010
738512
|
selectedCustomer={null}
|
|
738011
738513
|
showDeviceToggle={false}
|
|
738012
738514
|
showHeader={false}
|
|
738515
|
+
smsFallbackContent={null}
|
|
738013
738516
|
updatedByName={null}
|
|
738014
738517
|
>
|
|
738015
738518
|
<CapRow
|
|
@@ -742791,6 +743294,7 @@ new message content.",
|
|
|
742791
743294
|
}
|
|
742792
743295
|
}
|
|
742793
743296
|
show={false}
|
|
743297
|
+
smsFallbackContent={null}
|
|
742794
743298
|
testCustomers={Immutable.List []}
|
|
742795
743299
|
testGroups={Immutable.List []}
|
|
742796
743300
|
updatePreviewError={null}
|
|
@@ -745157,6 +745661,7 @@ new message content.",
|
|
|
745157
745661
|
}
|
|
745158
745662
|
}
|
|
745159
745663
|
show={false}
|
|
745664
|
+
smsFallbackContent={null}
|
|
745160
745665
|
templateLayoutType={null}
|
|
745161
745666
|
testCustomers={Immutable.List []}
|
|
745162
745667
|
testGroups={Immutable.List []}
|
|
@@ -745246,6 +745751,7 @@ new message content.",
|
|
|
745246
745751
|
formatMessage={[Function]}
|
|
745247
745752
|
handleSendTestMessage={[Function]}
|
|
745248
745753
|
handleTestEntitiesChange={[Function]}
|
|
745754
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
745249
745755
|
isFetchingTestCustomers={false}
|
|
745250
745756
|
isFetchingTestGroups={false}
|
|
745251
745757
|
isLoadingSenderDetails={false}
|
|
@@ -745253,7 +745759,13 @@ new message content.",
|
|
|
745253
745759
|
onSaveDeliverySettings={[Function]}
|
|
745254
745760
|
registeredSenderIds={Array []}
|
|
745255
745761
|
selectedTestEntities={Array []}
|
|
745256
|
-
|
|
745762
|
+
senderDetailsByChannel={
|
|
745763
|
+
Object {
|
|
745764
|
+
"EMAIL": Array [],
|
|
745765
|
+
"SMS": Array [],
|
|
745766
|
+
"WHATSAPP": Array [],
|
|
745767
|
+
}
|
|
745768
|
+
}
|
|
745257
745769
|
smsTraiDltEnabled={false}
|
|
745258
745770
|
testEntitiesTreeData={
|
|
745259
745771
|
Array [
|
|
@@ -745284,6 +745796,7 @@ new message content.",
|
|
|
745284
745796
|
<PreviewSection
|
|
745285
745797
|
unifiedPreviewProps={
|
|
745286
745798
|
Object {
|
|
745799
|
+
"activePreviewTab": "rcs",
|
|
745287
745800
|
"channel": "WHATSAPP",
|
|
745288
745801
|
"content": Object {
|
|
745289
745802
|
"_id": null,
|
|
@@ -745318,8 +745831,11 @@ new message content.",
|
|
|
745318
745831
|
"isUpdating": false,
|
|
745319
745832
|
"lastModified": undefined,
|
|
745320
745833
|
"onDeviceChange": [Function],
|
|
745834
|
+
"onPreviewTabChange": [Function],
|
|
745321
745835
|
"selectedCustomer": null,
|
|
745322
745836
|
"showDeviceToggle": true,
|
|
745837
|
+
"smsFallbackContent": null,
|
|
745838
|
+
"smsFallbackResolvedText": undefined,
|
|
745323
745839
|
"updatedByName": undefined,
|
|
745324
745840
|
}
|
|
745325
745841
|
}
|
|
@@ -761469,6 +761985,7 @@ new message content.",
|
|
|
761469
761985
|
className="ant-col ant-col-10 cap-column-v2"
|
|
761470
761986
|
>
|
|
761471
761987
|
<UnifiedPreview
|
|
761988
|
+
activePreviewTab="rcs"
|
|
761472
761989
|
channel="WHATSAPP"
|
|
761473
761990
|
content={
|
|
761474
761991
|
Object {
|
|
@@ -762697,9 +763214,11 @@ new message content.",
|
|
|
762697
763214
|
key=".0"
|
|
762698
763215
|
lastModified={null}
|
|
762699
763216
|
onDeviceChange={[Function]}
|
|
763217
|
+
onPreviewTabChange={[Function]}
|
|
762700
763218
|
selectedCustomer={null}
|
|
762701
763219
|
showDeviceToggle={false}
|
|
762702
763220
|
showHeader={false}
|
|
763221
|
+
smsFallbackContent={null}
|
|
762703
763222
|
updatedByName={null}
|
|
762704
763223
|
>
|
|
762705
763224
|
<CapRow
|
|
@@ -768024,6 +768543,7 @@ new message content.",
|
|
|
768024
768543
|
}
|
|
768025
768544
|
}
|
|
768026
768545
|
show={false}
|
|
768546
|
+
smsFallbackContent={null}
|
|
768027
768547
|
testCustomers={Immutable.List []}
|
|
768028
768548
|
testGroups={Immutable.List []}
|
|
768029
768549
|
updatePreviewError={null}
|
|
@@ -770390,6 +770910,7 @@ new message content.",
|
|
|
770390
770910
|
}
|
|
770391
770911
|
}
|
|
770392
770912
|
show={false}
|
|
770913
|
+
smsFallbackContent={null}
|
|
770393
770914
|
templateLayoutType={null}
|
|
770394
770915
|
testCustomers={Immutable.List []}
|
|
770395
770916
|
testGroups={Immutable.List []}
|
|
@@ -770479,6 +771000,7 @@ new message content.",
|
|
|
770479
771000
|
formatMessage={[Function]}
|
|
770480
771001
|
handleSendTestMessage={[Function]}
|
|
770481
771002
|
handleTestEntitiesChange={[Function]}
|
|
771003
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
770482
771004
|
isFetchingTestCustomers={false}
|
|
770483
771005
|
isFetchingTestGroups={false}
|
|
770484
771006
|
isLoadingSenderDetails={false}
|
|
@@ -770486,7 +771008,13 @@ new message content.",
|
|
|
770486
771008
|
onSaveDeliverySettings={[Function]}
|
|
770487
771009
|
registeredSenderIds={Array []}
|
|
770488
771010
|
selectedTestEntities={Array []}
|
|
770489
|
-
|
|
771011
|
+
senderDetailsByChannel={
|
|
771012
|
+
Object {
|
|
771013
|
+
"EMAIL": Array [],
|
|
771014
|
+
"SMS": Array [],
|
|
771015
|
+
"WHATSAPP": Array [],
|
|
771016
|
+
}
|
|
771017
|
+
}
|
|
770490
771018
|
smsTraiDltEnabled={false}
|
|
770491
771019
|
testEntitiesTreeData={
|
|
770492
771020
|
Array [
|
|
@@ -770517,6 +771045,7 @@ new message content.",
|
|
|
770517
771045
|
<PreviewSection
|
|
770518
771046
|
unifiedPreviewProps={
|
|
770519
771047
|
Object {
|
|
771048
|
+
"activePreviewTab": "rcs",
|
|
770520
771049
|
"channel": "WHATSAPP",
|
|
770521
771050
|
"content": Object {
|
|
770522
771051
|
"_id": null,
|
|
@@ -770551,8 +771080,11 @@ new message content.",
|
|
|
770551
771080
|
"isUpdating": false,
|
|
770552
771081
|
"lastModified": undefined,
|
|
770553
771082
|
"onDeviceChange": [Function],
|
|
771083
|
+
"onPreviewTabChange": [Function],
|
|
770554
771084
|
"selectedCustomer": null,
|
|
770555
771085
|
"showDeviceToggle": true,
|
|
771086
|
+
"smsFallbackContent": null,
|
|
771087
|
+
"smsFallbackResolvedText": undefined,
|
|
770556
771088
|
"updatedByName": undefined,
|
|
770557
771089
|
}
|
|
770558
771090
|
}
|
|
@@ -786784,6 +787316,7 @@ new message content.",
|
|
|
786784
787316
|
className="ant-col ant-col-10 cap-column-v2"
|
|
786785
787317
|
>
|
|
786786
787318
|
<UnifiedPreview
|
|
787319
|
+
activePreviewTab="rcs"
|
|
786787
787320
|
channel="WHATSAPP"
|
|
786788
787321
|
content={
|
|
786789
787322
|
Object {
|
|
@@ -788025,9 +788558,11 @@ new message content.",
|
|
|
788025
788558
|
key=".0"
|
|
788026
788559
|
lastModified={null}
|
|
788027
788560
|
onDeviceChange={[Function]}
|
|
788561
|
+
onPreviewTabChange={[Function]}
|
|
788028
788562
|
selectedCustomer={null}
|
|
788029
788563
|
showDeviceToggle={false}
|
|
788030
788564
|
showHeader={false}
|
|
788565
|
+
smsFallbackContent={null}
|
|
788031
788566
|
updatedByName={null}
|
|
788032
788567
|
>
|
|
788033
788568
|
<CapRow
|
|
@@ -793365,6 +793900,7 @@ new message content.",
|
|
|
793365
793900
|
}
|
|
793366
793901
|
}
|
|
793367
793902
|
show={false}
|
|
793903
|
+
smsFallbackContent={null}
|
|
793368
793904
|
testCustomers={Immutable.List []}
|
|
793369
793905
|
testGroups={Immutable.List []}
|
|
793370
793906
|
updatePreviewError={null}
|
|
@@ -795731,6 +796267,7 @@ new message content.",
|
|
|
795731
796267
|
}
|
|
795732
796268
|
}
|
|
795733
796269
|
show={false}
|
|
796270
|
+
smsFallbackContent={null}
|
|
795734
796271
|
templateLayoutType={null}
|
|
795735
796272
|
testCustomers={Immutable.List []}
|
|
795736
796273
|
testGroups={Immutable.List []}
|
|
@@ -795820,6 +796357,7 @@ new message content.",
|
|
|
795820
796357
|
formatMessage={[Function]}
|
|
795821
796358
|
handleSendTestMessage={[Function]}
|
|
795822
796359
|
handleTestEntitiesChange={[Function]}
|
|
796360
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
795823
796361
|
isFetchingTestCustomers={false}
|
|
795824
796362
|
isFetchingTestGroups={false}
|
|
795825
796363
|
isLoadingSenderDetails={false}
|
|
@@ -795827,7 +796365,13 @@ new message content.",
|
|
|
795827
796365
|
onSaveDeliverySettings={[Function]}
|
|
795828
796366
|
registeredSenderIds={Array []}
|
|
795829
796367
|
selectedTestEntities={Array []}
|
|
795830
|
-
|
|
796368
|
+
senderDetailsByChannel={
|
|
796369
|
+
Object {
|
|
796370
|
+
"EMAIL": Array [],
|
|
796371
|
+
"SMS": Array [],
|
|
796372
|
+
"WHATSAPP": Array [],
|
|
796373
|
+
}
|
|
796374
|
+
}
|
|
795831
796375
|
smsTraiDltEnabled={false}
|
|
795832
796376
|
testEntitiesTreeData={
|
|
795833
796377
|
Array [
|
|
@@ -795858,6 +796402,7 @@ new message content.",
|
|
|
795858
796402
|
<PreviewSection
|
|
795859
796403
|
unifiedPreviewProps={
|
|
795860
796404
|
Object {
|
|
796405
|
+
"activePreviewTab": "rcs",
|
|
795861
796406
|
"channel": "WHATSAPP",
|
|
795862
796407
|
"content": Object {
|
|
795863
796408
|
"_id": null,
|
|
@@ -795892,8 +796437,11 @@ new message content.",
|
|
|
795892
796437
|
"isUpdating": false,
|
|
795893
796438
|
"lastModified": undefined,
|
|
795894
796439
|
"onDeviceChange": [Function],
|
|
796440
|
+
"onPreviewTabChange": [Function],
|
|
795895
796441
|
"selectedCustomer": null,
|
|
795896
796442
|
"showDeviceToggle": true,
|
|
796443
|
+
"smsFallbackContent": null,
|
|
796444
|
+
"smsFallbackResolvedText": undefined,
|
|
795897
796445
|
"updatedByName": undefined,
|
|
795898
796446
|
}
|
|
795899
796447
|
}
|
|
@@ -812125,6 +812673,7 @@ new message content.",
|
|
|
812125
812673
|
className="ant-col ant-col-10 cap-column-v2"
|
|
812126
812674
|
>
|
|
812127
812675
|
<UnifiedPreview
|
|
812676
|
+
activePreviewTab="rcs"
|
|
812128
812677
|
channel="WHATSAPP"
|
|
812129
812678
|
content={
|
|
812130
812679
|
Object {
|
|
@@ -813366,9 +813915,11 @@ new message content.",
|
|
|
813366
813915
|
key=".0"
|
|
813367
813916
|
lastModified={null}
|
|
813368
813917
|
onDeviceChange={[Function]}
|
|
813918
|
+
onPreviewTabChange={[Function]}
|
|
813369
813919
|
selectedCustomer={null}
|
|
813370
813920
|
showDeviceToggle={false}
|
|
813371
813921
|
showHeader={false}
|
|
813922
|
+
smsFallbackContent={null}
|
|
813372
813923
|
updatedByName={null}
|
|
813373
813924
|
>
|
|
813374
813925
|
<CapRow
|
|
@@ -818706,6 +819257,7 @@ new message content.",
|
|
|
818706
819257
|
}
|
|
818707
819258
|
}
|
|
818708
819259
|
show={false}
|
|
819260
|
+
smsFallbackContent={null}
|
|
818709
819261
|
testCustomers={Immutable.List []}
|
|
818710
819262
|
testGroups={Immutable.List []}
|
|
818711
819263
|
updatePreviewError={null}
|
|
@@ -821072,6 +821624,7 @@ new message content.",
|
|
|
821072
821624
|
}
|
|
821073
821625
|
}
|
|
821074
821626
|
show={false}
|
|
821627
|
+
smsFallbackContent={null}
|
|
821075
821628
|
templateLayoutType={null}
|
|
821076
821629
|
testCustomers={Immutable.List []}
|
|
821077
821630
|
testGroups={Immutable.List []}
|
|
@@ -821161,6 +821714,7 @@ new message content.",
|
|
|
821161
821714
|
formatMessage={[Function]}
|
|
821162
821715
|
handleSendTestMessage={[Function]}
|
|
821163
821716
|
handleTestEntitiesChange={[Function]}
|
|
821717
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
821164
821718
|
isFetchingTestCustomers={false}
|
|
821165
821719
|
isFetchingTestGroups={false}
|
|
821166
821720
|
isLoadingSenderDetails={false}
|
|
@@ -821168,7 +821722,13 @@ new message content.",
|
|
|
821168
821722
|
onSaveDeliverySettings={[Function]}
|
|
821169
821723
|
registeredSenderIds={Array []}
|
|
821170
821724
|
selectedTestEntities={Array []}
|
|
821171
|
-
|
|
821725
|
+
senderDetailsByChannel={
|
|
821726
|
+
Object {
|
|
821727
|
+
"EMAIL": Array [],
|
|
821728
|
+
"SMS": Array [],
|
|
821729
|
+
"WHATSAPP": Array [],
|
|
821730
|
+
}
|
|
821731
|
+
}
|
|
821172
821732
|
smsTraiDltEnabled={false}
|
|
821173
821733
|
testEntitiesTreeData={
|
|
821174
821734
|
Array [
|
|
@@ -821199,6 +821759,7 @@ new message content.",
|
|
|
821199
821759
|
<PreviewSection
|
|
821200
821760
|
unifiedPreviewProps={
|
|
821201
821761
|
Object {
|
|
821762
|
+
"activePreviewTab": "rcs",
|
|
821202
821763
|
"channel": "WHATSAPP",
|
|
821203
821764
|
"content": Object {
|
|
821204
821765
|
"_id": null,
|
|
@@ -821233,8 +821794,11 @@ new message content.",
|
|
|
821233
821794
|
"isUpdating": false,
|
|
821234
821795
|
"lastModified": undefined,
|
|
821235
821796
|
"onDeviceChange": [Function],
|
|
821797
|
+
"onPreviewTabChange": [Function],
|
|
821236
821798
|
"selectedCustomer": null,
|
|
821237
821799
|
"showDeviceToggle": true,
|
|
821800
|
+
"smsFallbackContent": null,
|
|
821801
|
+
"smsFallbackResolvedText": undefined,
|
|
821238
821802
|
"updatedByName": undefined,
|
|
821239
821803
|
}
|
|
821240
821804
|
}
|