@capillarytech/creatives-library 8.0.318 → 8.0.320
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/templateVarUtils.test.js +160 -0
- package/v2Components/CapTagList/index.js +10 -0
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +70 -49
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +8 -2
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +207 -21
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +16 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +85 -10
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +30 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +79 -11
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +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 +7 -1
- 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/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 +36 -4
- 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 -99
- 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/Rcs/constants.js +32 -1
- package/v2Containers/Rcs/index.js +950 -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 +81 -36
- 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 +609 -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 +37 -8
- package/v2Containers/TagList/index.js +6 -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/Whatsapp/index.js +3 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +578 -34
|
@@ -13781,6 +13781,7 @@ new message content.",
|
|
|
13781
13781
|
className="ant-col ant-col-10 cap-column-v2"
|
|
13782
13782
|
>
|
|
13783
13783
|
<UnifiedPreview
|
|
13784
|
+
activePreviewTab="rcs"
|
|
13784
13785
|
channel="WHATSAPP"
|
|
13785
13786
|
content={
|
|
13786
13787
|
Object {
|
|
@@ -14476,9 +14477,11 @@ new message content.",
|
|
|
14476
14477
|
key=".0"
|
|
14477
14478
|
lastModified={null}
|
|
14478
14479
|
onDeviceChange={[Function]}
|
|
14480
|
+
onPreviewTabChange={[Function]}
|
|
14479
14481
|
selectedCustomer={null}
|
|
14480
14482
|
showDeviceToggle={false}
|
|
14481
14483
|
showHeader={false}
|
|
14484
|
+
smsFallbackContent={null}
|
|
14482
14485
|
updatedByName={null}
|
|
14483
14486
|
>
|
|
14484
14487
|
<CapRow
|
|
@@ -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
|
}
|
|
@@ -263264,6 +263424,7 @@ new message content.",
|
|
|
263264
263424
|
className="ant-col ant-col-10 cap-column-v2"
|
|
263265
263425
|
>
|
|
263266
263426
|
<UnifiedPreview
|
|
263427
|
+
activePreviewTab="rcs"
|
|
263267
263428
|
channel="WHATSAPP"
|
|
263268
263429
|
content={
|
|
263269
263430
|
Object {
|
|
@@ -264250,9 +264411,11 @@ undefined",
|
|
|
264250
264411
|
key=".0"
|
|
264251
264412
|
lastModified={null}
|
|
264252
264413
|
onDeviceChange={[Function]}
|
|
264414
|
+
onPreviewTabChange={[Function]}
|
|
264253
264415
|
selectedCustomer={null}
|
|
264254
264416
|
showDeviceToggle={false}
|
|
264255
264417
|
showHeader={false}
|
|
264418
|
+
smsFallbackContent={null}
|
|
264256
264419
|
updatedByName={null}
|
|
264257
264420
|
>
|
|
264258
264421
|
<CapRow
|
|
@@ -268691,6 +268854,7 @@ new message content.",
|
|
|
268691
268854
|
}
|
|
268692
268855
|
}
|
|
268693
268856
|
show={false}
|
|
268857
|
+
smsFallbackContent={null}
|
|
268694
268858
|
testCustomers={Immutable.List []}
|
|
268695
268859
|
testGroups={Immutable.List []}
|
|
268696
268860
|
updatePreviewError={null}
|
|
@@ -271105,6 +271269,7 @@ new message content.",
|
|
|
271105
271269
|
}
|
|
271106
271270
|
}
|
|
271107
271271
|
show={false}
|
|
271272
|
+
smsFallbackContent={null}
|
|
271108
271273
|
templateLayoutType={null}
|
|
271109
271274
|
testCustomers={Immutable.List []}
|
|
271110
271275
|
testGroups={Immutable.List []}
|
|
@@ -271218,6 +271383,7 @@ undefined",
|
|
|
271218
271383
|
formatMessage={[Function]}
|
|
271219
271384
|
handleSendTestMessage={[Function]}
|
|
271220
271385
|
handleTestEntitiesChange={[Function]}
|
|
271386
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
271221
271387
|
isFetchingTestCustomers={false}
|
|
271222
271388
|
isFetchingTestGroups={false}
|
|
271223
271389
|
isLoadingSenderDetails={false}
|
|
@@ -271225,7 +271391,13 @@ undefined",
|
|
|
271225
271391
|
onSaveDeliverySettings={[Function]}
|
|
271226
271392
|
registeredSenderIds={Array []}
|
|
271227
271393
|
selectedTestEntities={Array []}
|
|
271228
|
-
|
|
271394
|
+
senderDetailsByChannel={
|
|
271395
|
+
Object {
|
|
271396
|
+
"EMAIL": Array [],
|
|
271397
|
+
"SMS": Array [],
|
|
271398
|
+
"WHATSAPP": Array [],
|
|
271399
|
+
}
|
|
271400
|
+
}
|
|
271229
271401
|
smsTraiDltEnabled={false}
|
|
271230
271402
|
testEntitiesTreeData={
|
|
271231
271403
|
Array [
|
|
@@ -271256,6 +271428,7 @@ undefined",
|
|
|
271256
271428
|
<PreviewSection
|
|
271257
271429
|
unifiedPreviewProps={
|
|
271258
271430
|
Object {
|
|
271431
|
+
"activePreviewTab": "rcs",
|
|
271259
271432
|
"channel": "WHATSAPP",
|
|
271260
271433
|
"content": Object {
|
|
271261
271434
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -271314,8 +271487,11 @@ undefined",
|
|
|
271314
271487
|
"isUpdating": false,
|
|
271315
271488
|
"lastModified": undefined,
|
|
271316
271489
|
"onDeviceChange": [Function],
|
|
271490
|
+
"onPreviewTabChange": [Function],
|
|
271317
271491
|
"selectedCustomer": null,
|
|
271318
271492
|
"showDeviceToggle": true,
|
|
271493
|
+
"smsFallbackContent": null,
|
|
271494
|
+
"smsFallbackResolvedText": undefined,
|
|
271319
271495
|
"updatedByName": undefined,
|
|
271320
271496
|
}
|
|
271321
271497
|
}
|
|
@@ -277428,6 +277604,7 @@ T&C'
|
|
|
277428
277604
|
className="ant-col ant-col-10 cap-column-v2"
|
|
277429
277605
|
>
|
|
277430
277606
|
<UnifiedPreview
|
|
277607
|
+
activePreviewTab="rcs"
|
|
277431
277608
|
channel="WHATSAPP"
|
|
277432
277609
|
content={
|
|
277433
277610
|
Object {
|
|
@@ -279300,9 +279477,11 @@ T&C'",
|
|
|
279300
279477
|
key=".0"
|
|
279301
279478
|
lastModified={null}
|
|
279302
279479
|
onDeviceChange={[Function]}
|
|
279480
|
+
onPreviewTabChange={[Function]}
|
|
279303
279481
|
selectedCustomer={null}
|
|
279304
279482
|
showDeviceToggle={false}
|
|
279305
279483
|
showHeader={false}
|
|
279484
|
+
smsFallbackContent={null}
|
|
279306
279485
|
updatedByName={null}
|
|
279307
279486
|
>
|
|
279308
279487
|
<CapRow
|
|
@@ -284122,6 +284301,7 @@ new message content.",
|
|
|
284122
284301
|
}
|
|
284123
284302
|
}
|
|
284124
284303
|
show={false}
|
|
284304
|
+
smsFallbackContent={null}
|
|
284125
284305
|
testCustomers={Immutable.List []}
|
|
284126
284306
|
testGroups={Immutable.List []}
|
|
284127
284307
|
updatePreviewError={null}
|
|
@@ -286492,6 +286672,7 @@ new message content.",
|
|
|
286492
286672
|
}
|
|
286493
286673
|
}
|
|
286494
286674
|
show={false}
|
|
286675
|
+
smsFallbackContent={null}
|
|
286495
286676
|
templateLayoutType={null}
|
|
286496
286677
|
testCustomers={Immutable.List []}
|
|
286497
286678
|
testGroups={Immutable.List []}
|
|
@@ -286583,6 +286764,7 @@ T&C'",
|
|
|
286583
286764
|
formatMessage={[Function]}
|
|
286584
286765
|
handleSendTestMessage={[Function]}
|
|
286585
286766
|
handleTestEntitiesChange={[Function]}
|
|
286767
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
286586
286768
|
isFetchingTestCustomers={false}
|
|
286587
286769
|
isFetchingTestGroups={false}
|
|
286588
286770
|
isLoadingSenderDetails={false}
|
|
@@ -286590,7 +286772,13 @@ T&C'",
|
|
|
286590
286772
|
onSaveDeliverySettings={[Function]}
|
|
286591
286773
|
registeredSenderIds={Array []}
|
|
286592
286774
|
selectedTestEntities={Array []}
|
|
286593
|
-
|
|
286775
|
+
senderDetailsByChannel={
|
|
286776
|
+
Object {
|
|
286777
|
+
"EMAIL": Array [],
|
|
286778
|
+
"SMS": Array [],
|
|
286779
|
+
"WHATSAPP": Array [],
|
|
286780
|
+
}
|
|
286781
|
+
}
|
|
286594
286782
|
smsTraiDltEnabled={false}
|
|
286595
286783
|
testEntitiesTreeData={
|
|
286596
286784
|
Array [
|
|
@@ -286621,6 +286809,7 @@ T&C'",
|
|
|
286621
286809
|
<PreviewSection
|
|
286622
286810
|
unifiedPreviewProps={
|
|
286623
286811
|
Object {
|
|
286812
|
+
"activePreviewTab": "rcs",
|
|
286624
286813
|
"channel": "WHATSAPP",
|
|
286625
286814
|
"content": Object {
|
|
286626
286815
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -286657,8 +286846,11 @@ T&C'",
|
|
|
286657
286846
|
"isUpdating": false,
|
|
286658
286847
|
"lastModified": undefined,
|
|
286659
286848
|
"onDeviceChange": [Function],
|
|
286849
|
+
"onPreviewTabChange": [Function],
|
|
286660
286850
|
"selectedCustomer": null,
|
|
286661
286851
|
"showDeviceToggle": true,
|
|
286852
|
+
"smsFallbackContent": null,
|
|
286853
|
+
"smsFallbackResolvedText": undefined,
|
|
286662
286854
|
"updatedByName": undefined,
|
|
286663
286855
|
}
|
|
286664
286856
|
}
|
|
@@ -293370,6 +293562,7 @@ new message content.",
|
|
|
293370
293562
|
className="ant-col ant-col-10 cap-column-v2"
|
|
293371
293563
|
>
|
|
293372
293564
|
<UnifiedPreview
|
|
293565
|
+
activePreviewTab="rcs"
|
|
293373
293566
|
channel="WHATSAPP"
|
|
293374
293567
|
content={
|
|
293375
293568
|
Object {
|
|
@@ -296096,9 +296289,11 @@ new message content.",
|
|
|
296096
296289
|
key=".0"
|
|
296097
296290
|
lastModified={null}
|
|
296098
296291
|
onDeviceChange={[Function]}
|
|
296292
|
+
onPreviewTabChange={[Function]}
|
|
296099
296293
|
selectedCustomer={null}
|
|
296100
296294
|
showDeviceToggle={false}
|
|
296101
296295
|
showHeader={false}
|
|
296296
|
+
smsFallbackContent={null}
|
|
296102
296297
|
updatedByName={null}
|
|
296103
296298
|
>
|
|
296104
296299
|
<CapRow
|
|
@@ -301742,6 +301937,7 @@ new message content.",
|
|
|
301742
301937
|
}
|
|
301743
301938
|
}
|
|
301744
301939
|
show={false}
|
|
301940
|
+
smsFallbackContent={null}
|
|
301745
301941
|
testCustomers={Immutable.List []}
|
|
301746
301942
|
testGroups={Immutable.List []}
|
|
301747
301943
|
updatePreviewError={null}
|
|
@@ -304108,6 +304304,7 @@ new message content.",
|
|
|
304108
304304
|
}
|
|
304109
304305
|
}
|
|
304110
304306
|
show={false}
|
|
304307
|
+
smsFallbackContent={null}
|
|
304111
304308
|
templateLayoutType={null}
|
|
304112
304309
|
testCustomers={Immutable.List []}
|
|
304113
304310
|
testGroups={Immutable.List []}
|
|
@@ -304197,6 +304394,7 @@ new message content.",
|
|
|
304197
304394
|
formatMessage={[Function]}
|
|
304198
304395
|
handleSendTestMessage={[Function]}
|
|
304199
304396
|
handleTestEntitiesChange={[Function]}
|
|
304397
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
304200
304398
|
isFetchingTestCustomers={false}
|
|
304201
304399
|
isFetchingTestGroups={false}
|
|
304202
304400
|
isLoadingSenderDetails={false}
|
|
@@ -304204,7 +304402,13 @@ new message content.",
|
|
|
304204
304402
|
onSaveDeliverySettings={[Function]}
|
|
304205
304403
|
registeredSenderIds={Array []}
|
|
304206
304404
|
selectedTestEntities={Array []}
|
|
304207
|
-
|
|
304405
|
+
senderDetailsByChannel={
|
|
304406
|
+
Object {
|
|
304407
|
+
"EMAIL": Array [],
|
|
304408
|
+
"SMS": Array [],
|
|
304409
|
+
"WHATSAPP": Array [],
|
|
304410
|
+
}
|
|
304411
|
+
}
|
|
304208
304412
|
smsTraiDltEnabled={false}
|
|
304209
304413
|
testEntitiesTreeData={
|
|
304210
304414
|
Array [
|
|
@@ -304235,6 +304439,7 @@ new message content.",
|
|
|
304235
304439
|
<PreviewSection
|
|
304236
304440
|
unifiedPreviewProps={
|
|
304237
304441
|
Object {
|
|
304442
|
+
"activePreviewTab": "rcs",
|
|
304238
304443
|
"channel": "WHATSAPP",
|
|
304239
304444
|
"content": Object {
|
|
304240
304445
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -304269,8 +304474,11 @@ new message content.",
|
|
|
304269
304474
|
"isUpdating": false,
|
|
304270
304475
|
"lastModified": undefined,
|
|
304271
304476
|
"onDeviceChange": [Function],
|
|
304477
|
+
"onPreviewTabChange": [Function],
|
|
304272
304478
|
"selectedCustomer": null,
|
|
304273
304479
|
"showDeviceToggle": true,
|
|
304480
|
+
"smsFallbackContent": null,
|
|
304481
|
+
"smsFallbackResolvedText": undefined,
|
|
304274
304482
|
"updatedByName": undefined,
|
|
304275
304483
|
}
|
|
304276
304484
|
}
|
|
@@ -315762,6 +315970,7 @@ new message content.",
|
|
|
315762
315970
|
className="ant-col ant-col-10 cap-column-v2"
|
|
315763
315971
|
>
|
|
315764
315972
|
<UnifiedPreview
|
|
315973
|
+
activePreviewTab="rcs"
|
|
315765
315974
|
channel="WHATSAPP"
|
|
315766
315975
|
content={
|
|
315767
315976
|
Object {
|
|
@@ -319724,9 +319933,11 @@ undefined",
|
|
|
319724
319933
|
key=".0"
|
|
319725
319934
|
lastModified={null}
|
|
319726
319935
|
onDeviceChange={[Function]}
|
|
319936
|
+
onPreviewTabChange={[Function]}
|
|
319727
319937
|
selectedCustomer={null}
|
|
319728
319938
|
showDeviceToggle={false}
|
|
319729
319939
|
showHeader={false}
|
|
319940
|
+
smsFallbackContent={null}
|
|
319730
319941
|
updatedByName={null}
|
|
319731
319942
|
>
|
|
319732
319943
|
<CapRow
|
|
@@ -327141,6 +327352,7 @@ new message content.",
|
|
|
327141
327352
|
}
|
|
327142
327353
|
}
|
|
327143
327354
|
show={false}
|
|
327355
|
+
smsFallbackContent={null}
|
|
327144
327356
|
testCustomers={Immutable.List []}
|
|
327145
327357
|
testGroups={Immutable.List []}
|
|
327146
327358
|
updatePreviewError={null}
|
|
@@ -329555,6 +329767,7 @@ new message content.",
|
|
|
329555
329767
|
}
|
|
329556
329768
|
}
|
|
329557
329769
|
show={false}
|
|
329770
|
+
smsFallbackContent={null}
|
|
329558
329771
|
templateLayoutType={null}
|
|
329559
329772
|
testCustomers={Immutable.List []}
|
|
329560
329773
|
testGroups={Immutable.List []}
|
|
@@ -329668,6 +329881,7 @@ undefined",
|
|
|
329668
329881
|
formatMessage={[Function]}
|
|
329669
329882
|
handleSendTestMessage={[Function]}
|
|
329670
329883
|
handleTestEntitiesChange={[Function]}
|
|
329884
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
329671
329885
|
isFetchingTestCustomers={false}
|
|
329672
329886
|
isFetchingTestGroups={false}
|
|
329673
329887
|
isLoadingSenderDetails={false}
|
|
@@ -329675,7 +329889,13 @@ undefined",
|
|
|
329675
329889
|
onSaveDeliverySettings={[Function]}
|
|
329676
329890
|
registeredSenderIds={Array []}
|
|
329677
329891
|
selectedTestEntities={Array []}
|
|
329678
|
-
|
|
329892
|
+
senderDetailsByChannel={
|
|
329893
|
+
Object {
|
|
329894
|
+
"EMAIL": Array [],
|
|
329895
|
+
"SMS": Array [],
|
|
329896
|
+
"WHATSAPP": Array [],
|
|
329897
|
+
}
|
|
329898
|
+
}
|
|
329679
329899
|
smsTraiDltEnabled={false}
|
|
329680
329900
|
testEntitiesTreeData={
|
|
329681
329901
|
Array [
|
|
@@ -329706,6 +329926,7 @@ undefined",
|
|
|
329706
329926
|
<PreviewSection
|
|
329707
329927
|
unifiedPreviewProps={
|
|
329708
329928
|
Object {
|
|
329929
|
+
"activePreviewTab": "rcs",
|
|
329709
329930
|
"channel": "WHATSAPP",
|
|
329710
329931
|
"content": Object {
|
|
329711
329932
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -329764,8 +329985,11 @@ undefined",
|
|
|
329764
329985
|
"isUpdating": false,
|
|
329765
329986
|
"lastModified": undefined,
|
|
329766
329987
|
"onDeviceChange": [Function],
|
|
329988
|
+
"onPreviewTabChange": [Function],
|
|
329767
329989
|
"selectedCustomer": null,
|
|
329768
329990
|
"showDeviceToggle": true,
|
|
329991
|
+
"smsFallbackContent": null,
|
|
329992
|
+
"smsFallbackResolvedText": undefined,
|
|
329769
329993
|
"updatedByName": undefined,
|
|
329770
329994
|
}
|
|
329771
329995
|
}
|
|
@@ -342283,6 +342507,7 @@ new message content.",
|
|
|
342283
342507
|
className="ant-col ant-col-10 cap-column-v2"
|
|
342284
342508
|
>
|
|
342285
342509
|
<UnifiedPreview
|
|
342510
|
+
activePreviewTab="rcs"
|
|
342286
342511
|
channel="WHATSAPP"
|
|
342287
342512
|
content={
|
|
342288
342513
|
Object {
|
|
@@ -347409,9 +347634,11 @@ undefined",
|
|
|
347409
347634
|
key=".0"
|
|
347410
347635
|
lastModified={null}
|
|
347411
347636
|
onDeviceChange={[Function]}
|
|
347637
|
+
onPreviewTabChange={[Function]}
|
|
347412
347638
|
selectedCustomer={null}
|
|
347413
347639
|
showDeviceToggle={false}
|
|
347414
347640
|
showHeader={false}
|
|
347641
|
+
smsFallbackContent={null}
|
|
347415
347642
|
updatedByName={null}
|
|
347416
347643
|
>
|
|
347417
347644
|
<CapRow
|
|
@@ -356546,6 +356773,7 @@ new message content.",
|
|
|
356546
356773
|
}
|
|
356547
356774
|
}
|
|
356548
356775
|
show={false}
|
|
356776
|
+
smsFallbackContent={null}
|
|
356549
356777
|
testCustomers={Immutable.List []}
|
|
356550
356778
|
testGroups={Immutable.List []}
|
|
356551
356779
|
updatePreviewError={null}
|
|
@@ -358956,6 +359184,7 @@ new message content.",
|
|
|
358956
359184
|
}
|
|
358957
359185
|
}
|
|
358958
359186
|
show={false}
|
|
359187
|
+
smsFallbackContent={null}
|
|
358959
359188
|
templateLayoutType={null}
|
|
358960
359189
|
testCustomers={Immutable.List []}
|
|
358961
359190
|
testGroups={Immutable.List []}
|
|
@@ -359067,6 +359296,7 @@ undefined",
|
|
|
359067
359296
|
formatMessage={[Function]}
|
|
359068
359297
|
handleSendTestMessage={[Function]}
|
|
359069
359298
|
handleTestEntitiesChange={[Function]}
|
|
359299
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
359070
359300
|
isFetchingTestCustomers={false}
|
|
359071
359301
|
isFetchingTestGroups={false}
|
|
359072
359302
|
isLoadingSenderDetails={false}
|
|
@@ -359074,7 +359304,13 @@ undefined",
|
|
|
359074
359304
|
onSaveDeliverySettings={[Function]}
|
|
359075
359305
|
registeredSenderIds={Array []}
|
|
359076
359306
|
selectedTestEntities={Array []}
|
|
359077
|
-
|
|
359307
|
+
senderDetailsByChannel={
|
|
359308
|
+
Object {
|
|
359309
|
+
"EMAIL": Array [],
|
|
359310
|
+
"SMS": Array [],
|
|
359311
|
+
"WHATSAPP": Array [],
|
|
359312
|
+
}
|
|
359313
|
+
}
|
|
359078
359314
|
smsTraiDltEnabled={false}
|
|
359079
359315
|
testEntitiesTreeData={
|
|
359080
359316
|
Array [
|
|
@@ -359105,6 +359341,7 @@ undefined",
|
|
|
359105
359341
|
<PreviewSection
|
|
359106
359342
|
unifiedPreviewProps={
|
|
359107
359343
|
Object {
|
|
359344
|
+
"activePreviewTab": "rcs",
|
|
359108
359345
|
"channel": "WHATSAPP",
|
|
359109
359346
|
"content": Object {
|
|
359110
359347
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -359161,8 +359398,11 @@ undefined",
|
|
|
359161
359398
|
"isUpdating": false,
|
|
359162
359399
|
"lastModified": undefined,
|
|
359163
359400
|
"onDeviceChange": [Function],
|
|
359401
|
+
"onPreviewTabChange": [Function],
|
|
359164
359402
|
"selectedCustomer": null,
|
|
359165
359403
|
"showDeviceToggle": true,
|
|
359404
|
+
"smsFallbackContent": null,
|
|
359405
|
+
"smsFallbackResolvedText": undefined,
|
|
359166
359406
|
"updatedByName": undefined,
|
|
359167
359407
|
}
|
|
359168
359408
|
}
|
|
@@ -367464,6 +367704,7 @@ new message content.",
|
|
|
367464
367704
|
className="ant-col ant-col-10 cap-column-v2"
|
|
367465
367705
|
>
|
|
367466
367706
|
<UnifiedPreview
|
|
367707
|
+
activePreviewTab="rcs"
|
|
367467
367708
|
channel="WHATSAPP"
|
|
367468
367709
|
content={
|
|
367469
367710
|
Object {
|
|
@@ -368613,9 +368854,11 @@ new message content.",
|
|
|
368613
368854
|
key=".0"
|
|
368614
368855
|
lastModified={null}
|
|
368615
368856
|
onDeviceChange={[Function]}
|
|
368857
|
+
onPreviewTabChange={[Function]}
|
|
368616
368858
|
selectedCustomer={null}
|
|
368617
368859
|
showDeviceToggle={false}
|
|
368618
368860
|
showHeader={false}
|
|
368861
|
+
smsFallbackContent={null}
|
|
368619
368862
|
updatedByName={null}
|
|
368620
368863
|
>
|
|
368621
368864
|
<CapRow
|
|
@@ -373554,6 +373797,7 @@ new message content.",
|
|
|
373554
373797
|
}
|
|
373555
373798
|
}
|
|
373556
373799
|
show={false}
|
|
373800
|
+
smsFallbackContent={null}
|
|
373557
373801
|
testCustomers={Immutable.List []}
|
|
373558
373802
|
testGroups={Immutable.List []}
|
|
373559
373803
|
updatePreviewError={null}
|
|
@@ -375942,6 +376186,7 @@ new message content.",
|
|
|
375942
376186
|
}
|
|
375943
376187
|
}
|
|
375944
376188
|
show={false}
|
|
376189
|
+
smsFallbackContent={null}
|
|
375945
376190
|
templateLayoutType={null}
|
|
375946
376191
|
testCustomers={Immutable.List []}
|
|
375947
376192
|
testGroups={Immutable.List []}
|
|
@@ -376042,6 +376287,7 @@ new message content.",
|
|
|
376042
376287
|
formatMessage={[Function]}
|
|
376043
376288
|
handleSendTestMessage={[Function]}
|
|
376044
376289
|
handleTestEntitiesChange={[Function]}
|
|
376290
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
376045
376291
|
isFetchingTestCustomers={false}
|
|
376046
376292
|
isFetchingTestGroups={false}
|
|
376047
376293
|
isLoadingSenderDetails={false}
|
|
@@ -376049,7 +376295,13 @@ new message content.",
|
|
|
376049
376295
|
onSaveDeliverySettings={[Function]}
|
|
376050
376296
|
registeredSenderIds={Array []}
|
|
376051
376297
|
selectedTestEntities={Array []}
|
|
376052
|
-
|
|
376298
|
+
senderDetailsByChannel={
|
|
376299
|
+
Object {
|
|
376300
|
+
"EMAIL": Array [],
|
|
376301
|
+
"SMS": Array [],
|
|
376302
|
+
"WHATSAPP": Array [],
|
|
376303
|
+
}
|
|
376304
|
+
}
|
|
376053
376305
|
smsTraiDltEnabled={false}
|
|
376054
376306
|
testEntitiesTreeData={
|
|
376055
376307
|
Array [
|
|
@@ -376080,6 +376332,7 @@ new message content.",
|
|
|
376080
376332
|
<PreviewSection
|
|
376081
376333
|
unifiedPreviewProps={
|
|
376082
376334
|
Object {
|
|
376335
|
+
"activePreviewTab": "rcs",
|
|
376083
376336
|
"channel": "WHATSAPP",
|
|
376084
376337
|
"content": Object {
|
|
376085
376338
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -376125,8 +376378,11 @@ new message content.",
|
|
|
376125
376378
|
"isUpdating": false,
|
|
376126
376379
|
"lastModified": undefined,
|
|
376127
376380
|
"onDeviceChange": [Function],
|
|
376381
|
+
"onPreviewTabChange": [Function],
|
|
376128
376382
|
"selectedCustomer": null,
|
|
376129
376383
|
"showDeviceToggle": true,
|
|
376384
|
+
"smsFallbackContent": null,
|
|
376385
|
+
"smsFallbackResolvedText": undefined,
|
|
376130
376386
|
"updatedByName": undefined,
|
|
376131
376387
|
}
|
|
376132
376388
|
}
|
|
@@ -389961,6 +390217,7 @@ new message content.",
|
|
|
389961
390217
|
className="ant-col ant-col-10 cap-column-v2"
|
|
389962
390218
|
>
|
|
389963
390219
|
<UnifiedPreview
|
|
390220
|
+
activePreviewTab="rcs"
|
|
389964
390221
|
channel="WHATSAPP"
|
|
389965
390222
|
content={
|
|
389966
390223
|
Object {
|
|
@@ -390656,9 +390913,11 @@ new message content.",
|
|
|
390656
390913
|
key=".0"
|
|
390657
390914
|
lastModified={null}
|
|
390658
390915
|
onDeviceChange={[Function]}
|
|
390916
|
+
onPreviewTabChange={[Function]}
|
|
390659
390917
|
selectedCustomer={null}
|
|
390660
390918
|
showDeviceToggle={false}
|
|
390661
390919
|
showHeader={false}
|
|
390920
|
+
smsFallbackContent={null}
|
|
390662
390921
|
updatedByName={null}
|
|
390663
390922
|
>
|
|
390664
390923
|
<CapRow
|
|
@@ -395440,6 +395699,7 @@ new message content.",
|
|
|
395440
395699
|
}
|
|
395441
395700
|
}
|
|
395442
395701
|
show={false}
|
|
395702
|
+
smsFallbackContent={null}
|
|
395443
395703
|
testCustomers={Immutable.List []}
|
|
395444
395704
|
testGroups={Immutable.List []}
|
|
395445
395705
|
updatePreviewError={null}
|
|
@@ -397806,6 +398066,7 @@ new message content.",
|
|
|
397806
398066
|
}
|
|
397807
398067
|
}
|
|
397808
398068
|
show={false}
|
|
398069
|
+
smsFallbackContent={null}
|
|
397809
398070
|
templateLayoutType={null}
|
|
397810
398071
|
testCustomers={Immutable.List []}
|
|
397811
398072
|
testGroups={Immutable.List []}
|
|
@@ -397895,6 +398156,7 @@ new message content.",
|
|
|
397895
398156
|
formatMessage={[Function]}
|
|
397896
398157
|
handleSendTestMessage={[Function]}
|
|
397897
398158
|
handleTestEntitiesChange={[Function]}
|
|
398159
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
397898
398160
|
isFetchingTestCustomers={false}
|
|
397899
398161
|
isFetchingTestGroups={false}
|
|
397900
398162
|
isLoadingSenderDetails={false}
|
|
@@ -397902,7 +398164,13 @@ new message content.",
|
|
|
397902
398164
|
onSaveDeliverySettings={[Function]}
|
|
397903
398165
|
registeredSenderIds={Array []}
|
|
397904
398166
|
selectedTestEntities={Array []}
|
|
397905
|
-
|
|
398167
|
+
senderDetailsByChannel={
|
|
398168
|
+
Object {
|
|
398169
|
+
"EMAIL": Array [],
|
|
398170
|
+
"SMS": Array [],
|
|
398171
|
+
"WHATSAPP": Array [],
|
|
398172
|
+
}
|
|
398173
|
+
}
|
|
397906
398174
|
smsTraiDltEnabled={false}
|
|
397907
398175
|
testEntitiesTreeData={
|
|
397908
398176
|
Array [
|
|
@@ -397933,6 +398201,7 @@ new message content.",
|
|
|
397933
398201
|
<PreviewSection
|
|
397934
398202
|
unifiedPreviewProps={
|
|
397935
398203
|
Object {
|
|
398204
|
+
"activePreviewTab": "rcs",
|
|
397936
398205
|
"channel": "WHATSAPP",
|
|
397937
398206
|
"content": Object {
|
|
397938
398207
|
"_id": null,
|
|
@@ -397967,8 +398236,11 @@ new message content.",
|
|
|
397967
398236
|
"isUpdating": false,
|
|
397968
398237
|
"lastModified": undefined,
|
|
397969
398238
|
"onDeviceChange": [Function],
|
|
398239
|
+
"onPreviewTabChange": [Function],
|
|
397970
398240
|
"selectedCustomer": null,
|
|
397971
398241
|
"showDeviceToggle": true,
|
|
398242
|
+
"smsFallbackContent": null,
|
|
398243
|
+
"smsFallbackResolvedText": undefined,
|
|
397972
398244
|
"updatedByName": undefined,
|
|
397973
398245
|
}
|
|
397974
398246
|
}
|
|
@@ -414395,6 +414667,7 @@ new message content.",
|
|
|
414395
414667
|
className="ant-col ant-col-10 cap-column-v2"
|
|
414396
414668
|
>
|
|
414397
414669
|
<UnifiedPreview
|
|
414670
|
+
activePreviewTab="rcs"
|
|
414398
414671
|
channel="WHATSAPP"
|
|
414399
414672
|
content={
|
|
414400
414673
|
Object {
|
|
@@ -415860,9 +416133,11 @@ new message content.",
|
|
|
415860
416133
|
key=".0"
|
|
415861
416134
|
lastModified={null}
|
|
415862
416135
|
onDeviceChange={[Function]}
|
|
416136
|
+
onPreviewTabChange={[Function]}
|
|
415863
416137
|
selectedCustomer={null}
|
|
415864
416138
|
showDeviceToggle={false}
|
|
415865
416139
|
showHeader={false}
|
|
416140
|
+
smsFallbackContent={null}
|
|
415866
416141
|
updatedByName={null}
|
|
415867
416142
|
>
|
|
415868
416143
|
<CapRow
|
|
@@ -421414,6 +421689,7 @@ new message content.",
|
|
|
421414
421689
|
}
|
|
421415
421690
|
}
|
|
421416
421691
|
show={false}
|
|
421692
|
+
smsFallbackContent={null}
|
|
421417
421693
|
testCustomers={Immutable.List []}
|
|
421418
421694
|
testGroups={Immutable.List []}
|
|
421419
421695
|
updatePreviewError={null}
|
|
@@ -423780,6 +424056,7 @@ new message content.",
|
|
|
423780
424056
|
}
|
|
423781
424057
|
}
|
|
423782
424058
|
show={false}
|
|
424059
|
+
smsFallbackContent={null}
|
|
423783
424060
|
templateLayoutType={null}
|
|
423784
424061
|
testCustomers={Immutable.List []}
|
|
423785
424062
|
testGroups={Immutable.List []}
|
|
@@ -423869,6 +424146,7 @@ new message content.",
|
|
|
423869
424146
|
formatMessage={[Function]}
|
|
423870
424147
|
handleSendTestMessage={[Function]}
|
|
423871
424148
|
handleTestEntitiesChange={[Function]}
|
|
424149
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
423872
424150
|
isFetchingTestCustomers={false}
|
|
423873
424151
|
isFetchingTestGroups={false}
|
|
423874
424152
|
isLoadingSenderDetails={false}
|
|
@@ -423876,7 +424154,13 @@ new message content.",
|
|
|
423876
424154
|
onSaveDeliverySettings={[Function]}
|
|
423877
424155
|
registeredSenderIds={Array []}
|
|
423878
424156
|
selectedTestEntities={Array []}
|
|
423879
|
-
|
|
424157
|
+
senderDetailsByChannel={
|
|
424158
|
+
Object {
|
|
424159
|
+
"EMAIL": Array [],
|
|
424160
|
+
"SMS": Array [],
|
|
424161
|
+
"WHATSAPP": Array [],
|
|
424162
|
+
}
|
|
424163
|
+
}
|
|
423880
424164
|
smsTraiDltEnabled={false}
|
|
423881
424165
|
testEntitiesTreeData={
|
|
423882
424166
|
Array [
|
|
@@ -423907,6 +424191,7 @@ new message content.",
|
|
|
423907
424191
|
<PreviewSection
|
|
423908
424192
|
unifiedPreviewProps={
|
|
423909
424193
|
Object {
|
|
424194
|
+
"activePreviewTab": "rcs",
|
|
423910
424195
|
"channel": "WHATSAPP",
|
|
423911
424196
|
"content": Object {
|
|
423912
424197
|
"_id": null,
|
|
@@ -423941,8 +424226,11 @@ new message content.",
|
|
|
423941
424226
|
"isUpdating": false,
|
|
423942
424227
|
"lastModified": undefined,
|
|
423943
424228
|
"onDeviceChange": [Function],
|
|
424229
|
+
"onPreviewTabChange": [Function],
|
|
423944
424230
|
"selectedCustomer": null,
|
|
423945
424231
|
"showDeviceToggle": true,
|
|
424232
|
+
"smsFallbackContent": null,
|
|
424233
|
+
"smsFallbackResolvedText": undefined,
|
|
423946
424234
|
"updatedByName": undefined,
|
|
423947
424235
|
}
|
|
423948
424236
|
}
|
|
@@ -437777,6 +438065,7 @@ new message content.",
|
|
|
437777
438065
|
className="ant-col ant-col-10 cap-column-v2"
|
|
437778
438066
|
>
|
|
437779
438067
|
<UnifiedPreview
|
|
438068
|
+
activePreviewTab="rcs"
|
|
437780
438069
|
channel="WHATSAPP"
|
|
437781
438070
|
content={
|
|
437782
438071
|
Object {
|
|
@@ -438472,9 +438761,11 @@ new message content.",
|
|
|
438472
438761
|
key=".0"
|
|
438473
438762
|
lastModified={null}
|
|
438474
438763
|
onDeviceChange={[Function]}
|
|
438764
|
+
onPreviewTabChange={[Function]}
|
|
438475
438765
|
selectedCustomer={null}
|
|
438476
438766
|
showDeviceToggle={false}
|
|
438477
438767
|
showHeader={false}
|
|
438768
|
+
smsFallbackContent={null}
|
|
438478
438769
|
updatedByName={null}
|
|
438479
438770
|
>
|
|
438480
438771
|
<CapRow
|
|
@@ -443256,6 +443547,7 @@ new message content.",
|
|
|
443256
443547
|
}
|
|
443257
443548
|
}
|
|
443258
443549
|
show={false}
|
|
443550
|
+
smsFallbackContent={null}
|
|
443259
443551
|
testCustomers={Immutable.List []}
|
|
443260
443552
|
testGroups={Immutable.List []}
|
|
443261
443553
|
updatePreviewError={null}
|
|
@@ -445622,6 +445914,7 @@ new message content.",
|
|
|
445622
445914
|
}
|
|
445623
445915
|
}
|
|
445624
445916
|
show={false}
|
|
445917
|
+
smsFallbackContent={null}
|
|
445625
445918
|
templateLayoutType={null}
|
|
445626
445919
|
testCustomers={Immutable.List []}
|
|
445627
445920
|
testGroups={Immutable.List []}
|
|
@@ -445711,6 +446004,7 @@ new message content.",
|
|
|
445711
446004
|
formatMessage={[Function]}
|
|
445712
446005
|
handleSendTestMessage={[Function]}
|
|
445713
446006
|
handleTestEntitiesChange={[Function]}
|
|
446007
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
445714
446008
|
isFetchingTestCustomers={false}
|
|
445715
446009
|
isFetchingTestGroups={false}
|
|
445716
446010
|
isLoadingSenderDetails={false}
|
|
@@ -445718,7 +446012,13 @@ new message content.",
|
|
|
445718
446012
|
onSaveDeliverySettings={[Function]}
|
|
445719
446013
|
registeredSenderIds={Array []}
|
|
445720
446014
|
selectedTestEntities={Array []}
|
|
445721
|
-
|
|
446015
|
+
senderDetailsByChannel={
|
|
446016
|
+
Object {
|
|
446017
|
+
"EMAIL": Array [],
|
|
446018
|
+
"SMS": Array [],
|
|
446019
|
+
"WHATSAPP": Array [],
|
|
446020
|
+
}
|
|
446021
|
+
}
|
|
445722
446022
|
smsTraiDltEnabled={false}
|
|
445723
446023
|
testEntitiesTreeData={
|
|
445724
446024
|
Array [
|
|
@@ -445749,6 +446049,7 @@ new message content.",
|
|
|
445749
446049
|
<PreviewSection
|
|
445750
446050
|
unifiedPreviewProps={
|
|
445751
446051
|
Object {
|
|
446052
|
+
"activePreviewTab": "rcs",
|
|
445752
446053
|
"channel": "WHATSAPP",
|
|
445753
446054
|
"content": Object {
|
|
445754
446055
|
"_id": null,
|
|
@@ -445783,8 +446084,11 @@ new message content.",
|
|
|
445783
446084
|
"isUpdating": false,
|
|
445784
446085
|
"lastModified": undefined,
|
|
445785
446086
|
"onDeviceChange": [Function],
|
|
446087
|
+
"onPreviewTabChange": [Function],
|
|
445786
446088
|
"selectedCustomer": null,
|
|
445787
446089
|
"showDeviceToggle": true,
|
|
446090
|
+
"smsFallbackContent": null,
|
|
446091
|
+
"smsFallbackResolvedText": undefined,
|
|
445788
446092
|
"updatedByName": undefined,
|
|
445789
446093
|
}
|
|
445790
446094
|
}
|
|
@@ -459905,6 +460209,7 @@ new message content.",
|
|
|
459905
460209
|
className="ant-col ant-col-10 cap-column-v2"
|
|
459906
460210
|
>
|
|
459907
460211
|
<UnifiedPreview
|
|
460212
|
+
activePreviewTab="rcs"
|
|
459908
460213
|
channel="WHATSAPP"
|
|
459909
460214
|
content={
|
|
459910
460215
|
Object {
|
|
@@ -460897,9 +461202,11 @@ new message content.",
|
|
|
460897
461202
|
key=".0"
|
|
460898
461203
|
lastModified={null}
|
|
460899
461204
|
onDeviceChange={[Function]}
|
|
461205
|
+
onPreviewTabChange={[Function]}
|
|
460900
461206
|
selectedCustomer={null}
|
|
460901
461207
|
showDeviceToggle={false}
|
|
460902
461208
|
showHeader={false}
|
|
461209
|
+
smsFallbackContent={null}
|
|
460903
461210
|
updatedByName={null}
|
|
460904
461211
|
>
|
|
460905
461212
|
<CapRow
|
|
@@ -465978,6 +466285,7 @@ new message content.",
|
|
|
465978
466285
|
}
|
|
465979
466286
|
}
|
|
465980
466287
|
show={false}
|
|
466288
|
+
smsFallbackContent={null}
|
|
465981
466289
|
testCustomers={Immutable.List []}
|
|
465982
466290
|
testGroups={Immutable.List []}
|
|
465983
466291
|
updatePreviewError={null}
|
|
@@ -468344,6 +468652,7 @@ new message content.",
|
|
|
468344
468652
|
}
|
|
468345
468653
|
}
|
|
468346
468654
|
show={false}
|
|
468655
|
+
smsFallbackContent={null}
|
|
468347
468656
|
templateLayoutType={null}
|
|
468348
468657
|
testCustomers={Immutable.List []}
|
|
468349
468658
|
testGroups={Immutable.List []}
|
|
@@ -468433,6 +468742,7 @@ new message content.",
|
|
|
468433
468742
|
formatMessage={[Function]}
|
|
468434
468743
|
handleSendTestMessage={[Function]}
|
|
468435
468744
|
handleTestEntitiesChange={[Function]}
|
|
468745
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
468436
468746
|
isFetchingTestCustomers={false}
|
|
468437
468747
|
isFetchingTestGroups={false}
|
|
468438
468748
|
isLoadingSenderDetails={false}
|
|
@@ -468440,7 +468750,13 @@ new message content.",
|
|
|
468440
468750
|
onSaveDeliverySettings={[Function]}
|
|
468441
468751
|
registeredSenderIds={Array []}
|
|
468442
468752
|
selectedTestEntities={Array []}
|
|
468443
|
-
|
|
468753
|
+
senderDetailsByChannel={
|
|
468754
|
+
Object {
|
|
468755
|
+
"EMAIL": Array [],
|
|
468756
|
+
"SMS": Array [],
|
|
468757
|
+
"WHATSAPP": Array [],
|
|
468758
|
+
}
|
|
468759
|
+
}
|
|
468444
468760
|
smsTraiDltEnabled={false}
|
|
468445
468761
|
testEntitiesTreeData={
|
|
468446
468762
|
Array [
|
|
@@ -468471,6 +468787,7 @@ new message content.",
|
|
|
468471
468787
|
<PreviewSection
|
|
468472
468788
|
unifiedPreviewProps={
|
|
468473
468789
|
Object {
|
|
468790
|
+
"activePreviewTab": "rcs",
|
|
468474
468791
|
"channel": "WHATSAPP",
|
|
468475
468792
|
"content": Object {
|
|
468476
468793
|
"_id": null,
|
|
@@ -468505,8 +468822,11 @@ new message content.",
|
|
|
468505
468822
|
"isUpdating": false,
|
|
468506
468823
|
"lastModified": undefined,
|
|
468507
468824
|
"onDeviceChange": [Function],
|
|
468825
|
+
"onPreviewTabChange": [Function],
|
|
468508
468826
|
"selectedCustomer": null,
|
|
468509
468827
|
"showDeviceToggle": true,
|
|
468828
|
+
"smsFallbackContent": null,
|
|
468829
|
+
"smsFallbackResolvedText": undefined,
|
|
468510
468830
|
"updatedByName": undefined,
|
|
468511
468831
|
}
|
|
468512
468832
|
}
|
|
@@ -482925,6 +483245,7 @@ new message content.",
|
|
|
482925
483245
|
className="ant-col ant-col-10 cap-column-v2"
|
|
482926
483246
|
>
|
|
482927
483247
|
<UnifiedPreview
|
|
483248
|
+
activePreviewTab="rcs"
|
|
482928
483249
|
channel="WHATSAPP"
|
|
482929
483250
|
content={
|
|
482930
483251
|
Object {
|
|
@@ -484204,9 +484525,11 @@ new message content.",
|
|
|
484204
484525
|
key=".0"
|
|
484205
484526
|
lastModified={null}
|
|
484206
484527
|
onDeviceChange={[Function]}
|
|
484528
|
+
onPreviewTabChange={[Function]}
|
|
484207
484529
|
selectedCustomer={null}
|
|
484208
484530
|
showDeviceToggle={false}
|
|
484209
484531
|
showHeader={false}
|
|
484532
|
+
smsFallbackContent={null}
|
|
484210
484533
|
updatedByName={null}
|
|
484211
484534
|
>
|
|
484212
484535
|
<CapRow
|
|
@@ -489583,6 +489906,7 @@ new message content.",
|
|
|
489583
489906
|
}
|
|
489584
489907
|
}
|
|
489585
489908
|
show={false}
|
|
489909
|
+
smsFallbackContent={null}
|
|
489586
489910
|
testCustomers={Immutable.List []}
|
|
489587
489911
|
testGroups={Immutable.List []}
|
|
489588
489912
|
updatePreviewError={null}
|
|
@@ -491949,6 +492273,7 @@ new message content.",
|
|
|
491949
492273
|
}
|
|
491950
492274
|
}
|
|
491951
492275
|
show={false}
|
|
492276
|
+
smsFallbackContent={null}
|
|
491952
492277
|
templateLayoutType={null}
|
|
491953
492278
|
testCustomers={Immutable.List []}
|
|
491954
492279
|
testGroups={Immutable.List []}
|
|
@@ -492038,6 +492363,7 @@ new message content.",
|
|
|
492038
492363
|
formatMessage={[Function]}
|
|
492039
492364
|
handleSendTestMessage={[Function]}
|
|
492040
492365
|
handleTestEntitiesChange={[Function]}
|
|
492366
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
492041
492367
|
isFetchingTestCustomers={false}
|
|
492042
492368
|
isFetchingTestGroups={false}
|
|
492043
492369
|
isLoadingSenderDetails={false}
|
|
@@ -492045,7 +492371,13 @@ new message content.",
|
|
|
492045
492371
|
onSaveDeliverySettings={[Function]}
|
|
492046
492372
|
registeredSenderIds={Array []}
|
|
492047
492373
|
selectedTestEntities={Array []}
|
|
492048
|
-
|
|
492374
|
+
senderDetailsByChannel={
|
|
492375
|
+
Object {
|
|
492376
|
+
"EMAIL": Array [],
|
|
492377
|
+
"SMS": Array [],
|
|
492378
|
+
"WHATSAPP": Array [],
|
|
492379
|
+
}
|
|
492380
|
+
}
|
|
492049
492381
|
smsTraiDltEnabled={false}
|
|
492050
492382
|
testEntitiesTreeData={
|
|
492051
492383
|
Array [
|
|
@@ -492076,6 +492408,7 @@ new message content.",
|
|
|
492076
492408
|
<PreviewSection
|
|
492077
492409
|
unifiedPreviewProps={
|
|
492078
492410
|
Object {
|
|
492411
|
+
"activePreviewTab": "rcs",
|
|
492079
492412
|
"channel": "WHATSAPP",
|
|
492080
492413
|
"content": Object {
|
|
492081
492414
|
"_id": null,
|
|
@@ -492110,8 +492443,11 @@ new message content.",
|
|
|
492110
492443
|
"isUpdating": false,
|
|
492111
492444
|
"lastModified": undefined,
|
|
492112
492445
|
"onDeviceChange": [Function],
|
|
492446
|
+
"onPreviewTabChange": [Function],
|
|
492113
492447
|
"selectedCustomer": null,
|
|
492114
492448
|
"showDeviceToggle": true,
|
|
492449
|
+
"smsFallbackContent": null,
|
|
492450
|
+
"smsFallbackResolvedText": undefined,
|
|
492115
492451
|
"updatedByName": undefined,
|
|
492116
492452
|
}
|
|
492117
492453
|
}
|
|
@@ -506816,6 +507152,7 @@ new message content.",
|
|
|
506816
507152
|
className="ant-col ant-col-10 cap-column-v2"
|
|
506817
507153
|
>
|
|
506818
507154
|
<UnifiedPreview
|
|
507155
|
+
activePreviewTab="rcs"
|
|
506819
507156
|
channel="WHATSAPP"
|
|
506820
507157
|
content={
|
|
506821
507158
|
Object {
|
|
@@ -508392,9 +508729,11 @@ new message content.",
|
|
|
508392
508729
|
key=".0"
|
|
508393
508730
|
lastModified={null}
|
|
508394
508731
|
onDeviceChange={[Function]}
|
|
508732
|
+
onPreviewTabChange={[Function]}
|
|
508395
508733
|
selectedCustomer={null}
|
|
508396
508734
|
showDeviceToggle={false}
|
|
508397
508735
|
showHeader={false}
|
|
508736
|
+
smsFallbackContent={null}
|
|
508398
508737
|
updatedByName={null}
|
|
508399
508738
|
>
|
|
508400
508739
|
<CapRow
|
|
@@ -514068,6 +514407,7 @@ new message content.",
|
|
|
514068
514407
|
}
|
|
514069
514408
|
}
|
|
514070
514409
|
show={false}
|
|
514410
|
+
smsFallbackContent={null}
|
|
514071
514411
|
testCustomers={Immutable.List []}
|
|
514072
514412
|
testGroups={Immutable.List []}
|
|
514073
514413
|
updatePreviewError={null}
|
|
@@ -516434,6 +516774,7 @@ new message content.",
|
|
|
516434
516774
|
}
|
|
516435
516775
|
}
|
|
516436
516776
|
show={false}
|
|
516777
|
+
smsFallbackContent={null}
|
|
516437
516778
|
templateLayoutType={null}
|
|
516438
516779
|
testCustomers={Immutable.List []}
|
|
516439
516780
|
testGroups={Immutable.List []}
|
|
@@ -516523,6 +516864,7 @@ new message content.",
|
|
|
516523
516864
|
formatMessage={[Function]}
|
|
516524
516865
|
handleSendTestMessage={[Function]}
|
|
516525
516866
|
handleTestEntitiesChange={[Function]}
|
|
516867
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
516526
516868
|
isFetchingTestCustomers={false}
|
|
516527
516869
|
isFetchingTestGroups={false}
|
|
516528
516870
|
isLoadingSenderDetails={false}
|
|
@@ -516530,7 +516872,13 @@ new message content.",
|
|
|
516530
516872
|
onSaveDeliverySettings={[Function]}
|
|
516531
516873
|
registeredSenderIds={Array []}
|
|
516532
516874
|
selectedTestEntities={Array []}
|
|
516533
|
-
|
|
516875
|
+
senderDetailsByChannel={
|
|
516876
|
+
Object {
|
|
516877
|
+
"EMAIL": Array [],
|
|
516878
|
+
"SMS": Array [],
|
|
516879
|
+
"WHATSAPP": Array [],
|
|
516880
|
+
}
|
|
516881
|
+
}
|
|
516534
516882
|
smsTraiDltEnabled={false}
|
|
516535
516883
|
testEntitiesTreeData={
|
|
516536
516884
|
Array [
|
|
@@ -516561,6 +516909,7 @@ new message content.",
|
|
|
516561
516909
|
<PreviewSection
|
|
516562
516910
|
unifiedPreviewProps={
|
|
516563
516911
|
Object {
|
|
516912
|
+
"activePreviewTab": "rcs",
|
|
516564
516913
|
"channel": "WHATSAPP",
|
|
516565
516914
|
"content": Object {
|
|
516566
516915
|
"_id": null,
|
|
@@ -516595,8 +516944,11 @@ new message content.",
|
|
|
516595
516944
|
"isUpdating": false,
|
|
516596
516945
|
"lastModified": undefined,
|
|
516597
516946
|
"onDeviceChange": [Function],
|
|
516947
|
+
"onPreviewTabChange": [Function],
|
|
516598
516948
|
"selectedCustomer": null,
|
|
516599
516949
|
"showDeviceToggle": true,
|
|
516950
|
+
"smsFallbackContent": null,
|
|
516951
|
+
"smsFallbackResolvedText": undefined,
|
|
516600
516952
|
"updatedByName": undefined,
|
|
516601
516953
|
}
|
|
516602
516954
|
}
|
|
@@ -531602,6 +531954,7 @@ new message content.",
|
|
|
531602
531954
|
className="ant-col ant-col-10 cap-column-v2"
|
|
531603
531955
|
>
|
|
531604
531956
|
<UnifiedPreview
|
|
531957
|
+
activePreviewTab="rcs"
|
|
531605
531958
|
channel="WHATSAPP"
|
|
531606
531959
|
content={
|
|
531607
531960
|
Object {
|
|
@@ -533479,9 +533832,11 @@ new message content.",
|
|
|
533479
533832
|
key=".0"
|
|
533480
533833
|
lastModified={null}
|
|
533481
533834
|
onDeviceChange={[Function]}
|
|
533835
|
+
onPreviewTabChange={[Function]}
|
|
533482
533836
|
selectedCustomer={null}
|
|
533483
533837
|
showDeviceToggle={false}
|
|
533484
533838
|
showHeader={false}
|
|
533839
|
+
smsFallbackContent={null}
|
|
533485
533840
|
updatedByName={null}
|
|
533486
533841
|
>
|
|
533487
533842
|
<CapRow
|
|
@@ -539456,6 +539811,7 @@ new message content.",
|
|
|
539456
539811
|
}
|
|
539457
539812
|
}
|
|
539458
539813
|
show={false}
|
|
539814
|
+
smsFallbackContent={null}
|
|
539459
539815
|
testCustomers={Immutable.List []}
|
|
539460
539816
|
testGroups={Immutable.List []}
|
|
539461
539817
|
updatePreviewError={null}
|
|
@@ -541822,6 +542178,7 @@ new message content.",
|
|
|
541822
542178
|
}
|
|
541823
542179
|
}
|
|
541824
542180
|
show={false}
|
|
542181
|
+
smsFallbackContent={null}
|
|
541825
542182
|
templateLayoutType={null}
|
|
541826
542183
|
testCustomers={Immutable.List []}
|
|
541827
542184
|
testGroups={Immutable.List []}
|
|
@@ -541911,6 +542268,7 @@ new message content.",
|
|
|
541911
542268
|
formatMessage={[Function]}
|
|
541912
542269
|
handleSendTestMessage={[Function]}
|
|
541913
542270
|
handleTestEntitiesChange={[Function]}
|
|
542271
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
541914
542272
|
isFetchingTestCustomers={false}
|
|
541915
542273
|
isFetchingTestGroups={false}
|
|
541916
542274
|
isLoadingSenderDetails={false}
|
|
@@ -541918,7 +542276,13 @@ new message content.",
|
|
|
541918
542276
|
onSaveDeliverySettings={[Function]}
|
|
541919
542277
|
registeredSenderIds={Array []}
|
|
541920
542278
|
selectedTestEntities={Array []}
|
|
541921
|
-
|
|
542279
|
+
senderDetailsByChannel={
|
|
542280
|
+
Object {
|
|
542281
|
+
"EMAIL": Array [],
|
|
542282
|
+
"SMS": Array [],
|
|
542283
|
+
"WHATSAPP": Array [],
|
|
542284
|
+
}
|
|
542285
|
+
}
|
|
541922
542286
|
smsTraiDltEnabled={false}
|
|
541923
542287
|
testEntitiesTreeData={
|
|
541924
542288
|
Array [
|
|
@@ -541949,6 +542313,7 @@ new message content.",
|
|
|
541949
542313
|
<PreviewSection
|
|
541950
542314
|
unifiedPreviewProps={
|
|
541951
542315
|
Object {
|
|
542316
|
+
"activePreviewTab": "rcs",
|
|
541952
542317
|
"channel": "WHATSAPP",
|
|
541953
542318
|
"content": Object {
|
|
541954
542319
|
"_id": null,
|
|
@@ -541983,8 +542348,11 @@ new message content.",
|
|
|
541983
542348
|
"isUpdating": false,
|
|
541984
542349
|
"lastModified": undefined,
|
|
541985
542350
|
"onDeviceChange": [Function],
|
|
542351
|
+
"onPreviewTabChange": [Function],
|
|
541986
542352
|
"selectedCustomer": null,
|
|
541987
542353
|
"showDeviceToggle": true,
|
|
542354
|
+
"smsFallbackContent": null,
|
|
542355
|
+
"smsFallbackResolvedText": undefined,
|
|
541988
542356
|
"updatedByName": undefined,
|
|
541989
542357
|
}
|
|
541990
542358
|
}
|
|
@@ -557290,6 +557658,7 @@ new message content.",
|
|
|
557290
557658
|
className="ant-col ant-col-10 cap-column-v2"
|
|
557291
557659
|
>
|
|
557292
557660
|
<UnifiedPreview
|
|
557661
|
+
activePreviewTab="rcs"
|
|
557293
557662
|
channel="WHATSAPP"
|
|
557294
557663
|
content={
|
|
557295
557664
|
Object {
|
|
@@ -559467,9 +559836,11 @@ new message content.",
|
|
|
559467
559836
|
key=".0"
|
|
559468
559837
|
lastModified={null}
|
|
559469
559838
|
onDeviceChange={[Function]}
|
|
559839
|
+
onPreviewTabChange={[Function]}
|
|
559470
559840
|
selectedCustomer={null}
|
|
559471
559841
|
showDeviceToggle={false}
|
|
559472
559842
|
showHeader={false}
|
|
559843
|
+
smsFallbackContent={null}
|
|
559473
559844
|
updatedByName={null}
|
|
559474
559845
|
>
|
|
559475
559846
|
<CapRow
|
|
@@ -565744,6 +566115,7 @@ new message content.",
|
|
|
565744
566115
|
}
|
|
565745
566116
|
}
|
|
565746
566117
|
show={false}
|
|
566118
|
+
smsFallbackContent={null}
|
|
565747
566119
|
testCustomers={Immutable.List []}
|
|
565748
566120
|
testGroups={Immutable.List []}
|
|
565749
566121
|
updatePreviewError={null}
|
|
@@ -568110,6 +568482,7 @@ new message content.",
|
|
|
568110
568482
|
}
|
|
568111
568483
|
}
|
|
568112
568484
|
show={false}
|
|
568485
|
+
smsFallbackContent={null}
|
|
568113
568486
|
templateLayoutType={null}
|
|
568114
568487
|
testCustomers={Immutable.List []}
|
|
568115
568488
|
testGroups={Immutable.List []}
|
|
@@ -568199,6 +568572,7 @@ new message content.",
|
|
|
568199
568572
|
formatMessage={[Function]}
|
|
568200
568573
|
handleSendTestMessage={[Function]}
|
|
568201
568574
|
handleTestEntitiesChange={[Function]}
|
|
568575
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
568202
568576
|
isFetchingTestCustomers={false}
|
|
568203
568577
|
isFetchingTestGroups={false}
|
|
568204
568578
|
isLoadingSenderDetails={false}
|
|
@@ -568206,7 +568580,13 @@ new message content.",
|
|
|
568206
568580
|
onSaveDeliverySettings={[Function]}
|
|
568207
568581
|
registeredSenderIds={Array []}
|
|
568208
568582
|
selectedTestEntities={Array []}
|
|
568209
|
-
|
|
568583
|
+
senderDetailsByChannel={
|
|
568584
|
+
Object {
|
|
568585
|
+
"EMAIL": Array [],
|
|
568586
|
+
"SMS": Array [],
|
|
568587
|
+
"WHATSAPP": Array [],
|
|
568588
|
+
}
|
|
568589
|
+
}
|
|
568210
568590
|
smsTraiDltEnabled={false}
|
|
568211
568591
|
testEntitiesTreeData={
|
|
568212
568592
|
Array [
|
|
@@ -568237,6 +568617,7 @@ new message content.",
|
|
|
568237
568617
|
<PreviewSection
|
|
568238
568618
|
unifiedPreviewProps={
|
|
568239
568619
|
Object {
|
|
568620
|
+
"activePreviewTab": "rcs",
|
|
568240
568621
|
"channel": "WHATSAPP",
|
|
568241
568622
|
"content": Object {
|
|
568242
568623
|
"_id": null,
|
|
@@ -568271,8 +568652,11 @@ new message content.",
|
|
|
568271
568652
|
"isUpdating": false,
|
|
568272
568653
|
"lastModified": undefined,
|
|
568273
568654
|
"onDeviceChange": [Function],
|
|
568655
|
+
"onPreviewTabChange": [Function],
|
|
568274
568656
|
"selectedCustomer": null,
|
|
568275
568657
|
"showDeviceToggle": true,
|
|
568658
|
+
"smsFallbackContent": null,
|
|
568659
|
+
"smsFallbackResolvedText": undefined,
|
|
568276
568660
|
"updatedByName": undefined,
|
|
568277
568661
|
}
|
|
568278
568662
|
}
|
|
@@ -583875,6 +584259,7 @@ new message content.",
|
|
|
583875
584259
|
className="ant-col ant-col-10 cap-column-v2"
|
|
583876
584260
|
>
|
|
583877
584261
|
<UnifiedPreview
|
|
584262
|
+
activePreviewTab="rcs"
|
|
583878
584263
|
channel="WHATSAPP"
|
|
583879
584264
|
content={
|
|
583880
584265
|
Object {
|
|
@@ -586349,9 +586734,11 @@ new message content.",
|
|
|
586349
586734
|
key=".0"
|
|
586350
586735
|
lastModified={null}
|
|
586351
586736
|
onDeviceChange={[Function]}
|
|
586737
|
+
onPreviewTabChange={[Function]}
|
|
586352
586738
|
selectedCustomer={null}
|
|
586353
586739
|
showDeviceToggle={false}
|
|
586354
586740
|
showHeader={false}
|
|
586741
|
+
smsFallbackContent={null}
|
|
586355
586742
|
updatedByName={null}
|
|
586356
586743
|
>
|
|
586357
586744
|
<CapRow
|
|
@@ -592923,6 +593310,7 @@ new message content.",
|
|
|
592923
593310
|
}
|
|
592924
593311
|
}
|
|
592925
593312
|
show={false}
|
|
593313
|
+
smsFallbackContent={null}
|
|
592926
593314
|
testCustomers={Immutable.List []}
|
|
592927
593315
|
testGroups={Immutable.List []}
|
|
592928
593316
|
updatePreviewError={null}
|
|
@@ -595289,6 +595677,7 @@ new message content.",
|
|
|
595289
595677
|
}
|
|
595290
595678
|
}
|
|
595291
595679
|
show={false}
|
|
595680
|
+
smsFallbackContent={null}
|
|
595292
595681
|
templateLayoutType={null}
|
|
595293
595682
|
testCustomers={Immutable.List []}
|
|
595294
595683
|
testGroups={Immutable.List []}
|
|
@@ -595378,6 +595767,7 @@ new message content.",
|
|
|
595378
595767
|
formatMessage={[Function]}
|
|
595379
595768
|
handleSendTestMessage={[Function]}
|
|
595380
595769
|
handleTestEntitiesChange={[Function]}
|
|
595770
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
595381
595771
|
isFetchingTestCustomers={false}
|
|
595382
595772
|
isFetchingTestGroups={false}
|
|
595383
595773
|
isLoadingSenderDetails={false}
|
|
@@ -595385,7 +595775,13 @@ new message content.",
|
|
|
595385
595775
|
onSaveDeliverySettings={[Function]}
|
|
595386
595776
|
registeredSenderIds={Array []}
|
|
595387
595777
|
selectedTestEntities={Array []}
|
|
595388
|
-
|
|
595778
|
+
senderDetailsByChannel={
|
|
595779
|
+
Object {
|
|
595780
|
+
"EMAIL": Array [],
|
|
595781
|
+
"SMS": Array [],
|
|
595782
|
+
"WHATSAPP": Array [],
|
|
595783
|
+
}
|
|
595784
|
+
}
|
|
595389
595785
|
smsTraiDltEnabled={false}
|
|
595390
595786
|
testEntitiesTreeData={
|
|
595391
595787
|
Array [
|
|
@@ -595416,6 +595812,7 @@ new message content.",
|
|
|
595416
595812
|
<PreviewSection
|
|
595417
595813
|
unifiedPreviewProps={
|
|
595418
595814
|
Object {
|
|
595815
|
+
"activePreviewTab": "rcs",
|
|
595419
595816
|
"channel": "WHATSAPP",
|
|
595420
595817
|
"content": Object {
|
|
595421
595818
|
"_id": null,
|
|
@@ -595450,8 +595847,11 @@ new message content.",
|
|
|
595450
595847
|
"isUpdating": false,
|
|
595451
595848
|
"lastModified": undefined,
|
|
595452
595849
|
"onDeviceChange": [Function],
|
|
595850
|
+
"onPreviewTabChange": [Function],
|
|
595453
595851
|
"selectedCustomer": null,
|
|
595454
595852
|
"showDeviceToggle": true,
|
|
595853
|
+
"smsFallbackContent": null,
|
|
595854
|
+
"smsFallbackResolvedText": undefined,
|
|
595455
595855
|
"updatedByName": undefined,
|
|
595456
595856
|
}
|
|
595457
595857
|
}
|
|
@@ -611351,6 +611751,7 @@ new message content.",
|
|
|
611351
611751
|
className="ant-col ant-col-10 cap-column-v2"
|
|
611352
611752
|
>
|
|
611353
611753
|
<UnifiedPreview
|
|
611754
|
+
activePreviewTab="rcs"
|
|
611354
611755
|
channel="WHATSAPP"
|
|
611355
611756
|
content={
|
|
611356
611757
|
Object {
|
|
@@ -614122,9 +614523,11 @@ new message content.",
|
|
|
614122
614523
|
key=".0"
|
|
614123
614524
|
lastModified={null}
|
|
614124
614525
|
onDeviceChange={[Function]}
|
|
614526
|
+
onPreviewTabChange={[Function]}
|
|
614125
614527
|
selectedCustomer={null}
|
|
614126
614528
|
showDeviceToggle={false}
|
|
614127
614529
|
showHeader={false}
|
|
614530
|
+
smsFallbackContent={null}
|
|
614128
614531
|
updatedByName={null}
|
|
614129
614532
|
>
|
|
614130
614533
|
<CapRow
|
|
@@ -620993,6 +621396,7 @@ new message content.",
|
|
|
620993
621396
|
}
|
|
620994
621397
|
}
|
|
620995
621398
|
show={false}
|
|
621399
|
+
smsFallbackContent={null}
|
|
620996
621400
|
testCustomers={Immutable.List []}
|
|
620997
621401
|
testGroups={Immutable.List []}
|
|
620998
621402
|
updatePreviewError={null}
|
|
@@ -623359,6 +623763,7 @@ new message content.",
|
|
|
623359
623763
|
}
|
|
623360
623764
|
}
|
|
623361
623765
|
show={false}
|
|
623766
|
+
smsFallbackContent={null}
|
|
623362
623767
|
templateLayoutType={null}
|
|
623363
623768
|
testCustomers={Immutable.List []}
|
|
623364
623769
|
testGroups={Immutable.List []}
|
|
@@ -623448,6 +623853,7 @@ new message content.",
|
|
|
623448
623853
|
formatMessage={[Function]}
|
|
623449
623854
|
handleSendTestMessage={[Function]}
|
|
623450
623855
|
handleTestEntitiesChange={[Function]}
|
|
623856
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
623451
623857
|
isFetchingTestCustomers={false}
|
|
623452
623858
|
isFetchingTestGroups={false}
|
|
623453
623859
|
isLoadingSenderDetails={false}
|
|
@@ -623455,7 +623861,13 @@ new message content.",
|
|
|
623455
623861
|
onSaveDeliverySettings={[Function]}
|
|
623456
623862
|
registeredSenderIds={Array []}
|
|
623457
623863
|
selectedTestEntities={Array []}
|
|
623458
|
-
|
|
623864
|
+
senderDetailsByChannel={
|
|
623865
|
+
Object {
|
|
623866
|
+
"EMAIL": Array [],
|
|
623867
|
+
"SMS": Array [],
|
|
623868
|
+
"WHATSAPP": Array [],
|
|
623869
|
+
}
|
|
623870
|
+
}
|
|
623459
623871
|
smsTraiDltEnabled={false}
|
|
623460
623872
|
testEntitiesTreeData={
|
|
623461
623873
|
Array [
|
|
@@ -623486,6 +623898,7 @@ new message content.",
|
|
|
623486
623898
|
<PreviewSection
|
|
623487
623899
|
unifiedPreviewProps={
|
|
623488
623900
|
Object {
|
|
623901
|
+
"activePreviewTab": "rcs",
|
|
623489
623902
|
"channel": "WHATSAPP",
|
|
623490
623903
|
"content": Object {
|
|
623491
623904
|
"_id": null,
|
|
@@ -623520,8 +623933,11 @@ new message content.",
|
|
|
623520
623933
|
"isUpdating": false,
|
|
623521
623934
|
"lastModified": undefined,
|
|
623522
623935
|
"onDeviceChange": [Function],
|
|
623936
|
+
"onPreviewTabChange": [Function],
|
|
623523
623937
|
"selectedCustomer": null,
|
|
623524
623938
|
"showDeviceToggle": true,
|
|
623939
|
+
"smsFallbackContent": null,
|
|
623940
|
+
"smsFallbackResolvedText": undefined,
|
|
623525
623941
|
"updatedByName": undefined,
|
|
623526
623942
|
}
|
|
623527
623943
|
}
|
|
@@ -639719,6 +640135,7 @@ new message content.",
|
|
|
639719
640135
|
className="ant-col ant-col-10 cap-column-v2"
|
|
639720
640136
|
>
|
|
639721
640137
|
<UnifiedPreview
|
|
640138
|
+
activePreviewTab="rcs"
|
|
639722
640139
|
channel="WHATSAPP"
|
|
639723
640140
|
content={
|
|
639724
640141
|
Object {
|
|
@@ -642777,9 +643194,11 @@ new message content.",
|
|
|
642777
643194
|
key=".0"
|
|
642778
643195
|
lastModified={null}
|
|
642779
643196
|
onDeviceChange={[Function]}
|
|
643197
|
+
onPreviewTabChange={[Function]}
|
|
642780
643198
|
selectedCustomer={null}
|
|
642781
643199
|
showDeviceToggle={false}
|
|
642782
643200
|
showHeader={false}
|
|
643201
|
+
smsFallbackContent={null}
|
|
642783
643202
|
updatedByName={null}
|
|
642784
643203
|
>
|
|
642785
643204
|
<CapRow
|
|
@@ -649935,6 +650354,7 @@ new message content.",
|
|
|
649935
650354
|
}
|
|
649936
650355
|
}
|
|
649937
650356
|
show={false}
|
|
650357
|
+
smsFallbackContent={null}
|
|
649938
650358
|
testCustomers={Immutable.List []}
|
|
649939
650359
|
testGroups={Immutable.List []}
|
|
649940
650360
|
updatePreviewError={null}
|
|
@@ -652301,6 +652721,7 @@ new message content.",
|
|
|
652301
652721
|
}
|
|
652302
652722
|
}
|
|
652303
652723
|
show={false}
|
|
652724
|
+
smsFallbackContent={null}
|
|
652304
652725
|
templateLayoutType={null}
|
|
652305
652726
|
testCustomers={Immutable.List []}
|
|
652306
652727
|
testGroups={Immutable.List []}
|
|
@@ -652390,6 +652811,7 @@ new message content.",
|
|
|
652390
652811
|
formatMessage={[Function]}
|
|
652391
652812
|
handleSendTestMessage={[Function]}
|
|
652392
652813
|
handleTestEntitiesChange={[Function]}
|
|
652814
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
652393
652815
|
isFetchingTestCustomers={false}
|
|
652394
652816
|
isFetchingTestGroups={false}
|
|
652395
652817
|
isLoadingSenderDetails={false}
|
|
@@ -652397,7 +652819,13 @@ new message content.",
|
|
|
652397
652819
|
onSaveDeliverySettings={[Function]}
|
|
652398
652820
|
registeredSenderIds={Array []}
|
|
652399
652821
|
selectedTestEntities={Array []}
|
|
652400
|
-
|
|
652822
|
+
senderDetailsByChannel={
|
|
652823
|
+
Object {
|
|
652824
|
+
"EMAIL": Array [],
|
|
652825
|
+
"SMS": Array [],
|
|
652826
|
+
"WHATSAPP": Array [],
|
|
652827
|
+
}
|
|
652828
|
+
}
|
|
652401
652829
|
smsTraiDltEnabled={false}
|
|
652402
652830
|
testEntitiesTreeData={
|
|
652403
652831
|
Array [
|
|
@@ -652428,6 +652856,7 @@ new message content.",
|
|
|
652428
652856
|
<PreviewSection
|
|
652429
652857
|
unifiedPreviewProps={
|
|
652430
652858
|
Object {
|
|
652859
|
+
"activePreviewTab": "rcs",
|
|
652431
652860
|
"channel": "WHATSAPP",
|
|
652432
652861
|
"content": Object {
|
|
652433
652862
|
"_id": null,
|
|
@@ -652462,8 +652891,11 @@ new message content.",
|
|
|
652462
652891
|
"isUpdating": false,
|
|
652463
652892
|
"lastModified": undefined,
|
|
652464
652893
|
"onDeviceChange": [Function],
|
|
652894
|
+
"onPreviewTabChange": [Function],
|
|
652465
652895
|
"selectedCustomer": null,
|
|
652466
652896
|
"showDeviceToggle": true,
|
|
652897
|
+
"smsFallbackContent": null,
|
|
652898
|
+
"smsFallbackResolvedText": undefined,
|
|
652467
652899
|
"updatedByName": undefined,
|
|
652468
652900
|
}
|
|
652469
652901
|
}
|
|
@@ -666605,6 +667037,7 @@ new message content.",
|
|
|
666605
667037
|
className="ant-col ant-col-10 cap-column-v2"
|
|
666606
667038
|
>
|
|
666607
667039
|
<UnifiedPreview
|
|
667040
|
+
activePreviewTab="rcs"
|
|
666608
667041
|
channel="WHATSAPP"
|
|
666609
667042
|
content={
|
|
666610
667043
|
Object {
|
|
@@ -667607,9 +668040,11 @@ new message content.",
|
|
|
667607
668040
|
key=".0"
|
|
667608
668041
|
lastModified={null}
|
|
667609
668042
|
onDeviceChange={[Function]}
|
|
668043
|
+
onPreviewTabChange={[Function]}
|
|
667610
668044
|
selectedCustomer={null}
|
|
667611
668045
|
showDeviceToggle={false}
|
|
667612
668046
|
showHeader={false}
|
|
668047
|
+
smsFallbackContent={null}
|
|
667613
668048
|
updatedByName={null}
|
|
667614
668049
|
>
|
|
667615
668050
|
<CapRow
|
|
@@ -672698,6 +673133,7 @@ new message content.",
|
|
|
672698
673133
|
}
|
|
672699
673134
|
}
|
|
672700
673135
|
show={false}
|
|
673136
|
+
smsFallbackContent={null}
|
|
672701
673137
|
testCustomers={Immutable.List []}
|
|
672702
673138
|
testGroups={Immutable.List []}
|
|
672703
673139
|
updatePreviewError={null}
|
|
@@ -675064,6 +675500,7 @@ new message content.",
|
|
|
675064
675500
|
}
|
|
675065
675501
|
}
|
|
675066
675502
|
show={false}
|
|
675503
|
+
smsFallbackContent={null}
|
|
675067
675504
|
templateLayoutType={null}
|
|
675068
675505
|
testCustomers={Immutable.List []}
|
|
675069
675506
|
testGroups={Immutable.List []}
|
|
@@ -675153,6 +675590,7 @@ new message content.",
|
|
|
675153
675590
|
formatMessage={[Function]}
|
|
675154
675591
|
handleSendTestMessage={[Function]}
|
|
675155
675592
|
handleTestEntitiesChange={[Function]}
|
|
675593
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
675156
675594
|
isFetchingTestCustomers={false}
|
|
675157
675595
|
isFetchingTestGroups={false}
|
|
675158
675596
|
isLoadingSenderDetails={false}
|
|
@@ -675160,7 +675598,13 @@ new message content.",
|
|
|
675160
675598
|
onSaveDeliverySettings={[Function]}
|
|
675161
675599
|
registeredSenderIds={Array []}
|
|
675162
675600
|
selectedTestEntities={Array []}
|
|
675163
|
-
|
|
675601
|
+
senderDetailsByChannel={
|
|
675602
|
+
Object {
|
|
675603
|
+
"EMAIL": Array [],
|
|
675604
|
+
"SMS": Array [],
|
|
675605
|
+
"WHATSAPP": Array [],
|
|
675606
|
+
}
|
|
675607
|
+
}
|
|
675164
675608
|
smsTraiDltEnabled={false}
|
|
675165
675609
|
testEntitiesTreeData={
|
|
675166
675610
|
Array [
|
|
@@ -675191,6 +675635,7 @@ new message content.",
|
|
|
675191
675635
|
<PreviewSection
|
|
675192
675636
|
unifiedPreviewProps={
|
|
675193
675637
|
Object {
|
|
675638
|
+
"activePreviewTab": "rcs",
|
|
675194
675639
|
"channel": "WHATSAPP",
|
|
675195
675640
|
"content": Object {
|
|
675196
675641
|
"_id": null,
|
|
@@ -675225,8 +675670,11 @@ new message content.",
|
|
|
675225
675670
|
"isUpdating": false,
|
|
675226
675671
|
"lastModified": undefined,
|
|
675227
675672
|
"onDeviceChange": [Function],
|
|
675673
|
+
"onPreviewTabChange": [Function],
|
|
675228
675674
|
"selectedCustomer": null,
|
|
675229
675675
|
"showDeviceToggle": true,
|
|
675676
|
+
"smsFallbackContent": null,
|
|
675677
|
+
"smsFallbackResolvedText": undefined,
|
|
675230
675678
|
"updatedByName": undefined,
|
|
675231
675679
|
}
|
|
675232
675680
|
}
|
|
@@ -689661,6 +690109,7 @@ new message content.",
|
|
|
689661
690109
|
className="ant-col ant-col-10 cap-column-v2"
|
|
689662
690110
|
>
|
|
689663
690111
|
<UnifiedPreview
|
|
690112
|
+
activePreviewTab="rcs"
|
|
689664
690113
|
channel="WHATSAPP"
|
|
689665
690114
|
content={
|
|
689666
690115
|
Object {
|
|
@@ -690960,9 +691409,11 @@ new message content.",
|
|
|
690960
691409
|
key=".0"
|
|
690961
691410
|
lastModified={null}
|
|
690962
691411
|
onDeviceChange={[Function]}
|
|
691412
|
+
onPreviewTabChange={[Function]}
|
|
690963
691413
|
selectedCustomer={null}
|
|
690964
691414
|
showDeviceToggle={false}
|
|
690965
691415
|
showHeader={false}
|
|
691416
|
+
smsFallbackContent={null}
|
|
690966
691417
|
updatedByName={null}
|
|
690967
691418
|
>
|
|
690968
691419
|
<CapRow
|
|
@@ -696348,6 +696799,7 @@ new message content.",
|
|
|
696348
696799
|
}
|
|
696349
696800
|
}
|
|
696350
696801
|
show={false}
|
|
696802
|
+
smsFallbackContent={null}
|
|
696351
696803
|
testCustomers={Immutable.List []}
|
|
696352
696804
|
testGroups={Immutable.List []}
|
|
696353
696805
|
updatePreviewError={null}
|
|
@@ -698714,6 +699166,7 @@ new message content.",
|
|
|
698714
699166
|
}
|
|
698715
699167
|
}
|
|
698716
699168
|
show={false}
|
|
699169
|
+
smsFallbackContent={null}
|
|
698717
699170
|
templateLayoutType={null}
|
|
698718
699171
|
testCustomers={Immutable.List []}
|
|
698719
699172
|
testGroups={Immutable.List []}
|
|
@@ -698803,6 +699256,7 @@ new message content.",
|
|
|
698803
699256
|
formatMessage={[Function]}
|
|
698804
699257
|
handleSendTestMessage={[Function]}
|
|
698805
699258
|
handleTestEntitiesChange={[Function]}
|
|
699259
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
698806
699260
|
isFetchingTestCustomers={false}
|
|
698807
699261
|
isFetchingTestGroups={false}
|
|
698808
699262
|
isLoadingSenderDetails={false}
|
|
@@ -698810,7 +699264,13 @@ new message content.",
|
|
|
698810
699264
|
onSaveDeliverySettings={[Function]}
|
|
698811
699265
|
registeredSenderIds={Array []}
|
|
698812
699266
|
selectedTestEntities={Array []}
|
|
698813
|
-
|
|
699267
|
+
senderDetailsByChannel={
|
|
699268
|
+
Object {
|
|
699269
|
+
"EMAIL": Array [],
|
|
699270
|
+
"SMS": Array [],
|
|
699271
|
+
"WHATSAPP": Array [],
|
|
699272
|
+
}
|
|
699273
|
+
}
|
|
698814
699274
|
smsTraiDltEnabled={false}
|
|
698815
699275
|
testEntitiesTreeData={
|
|
698816
699276
|
Array [
|
|
@@ -698841,6 +699301,7 @@ new message content.",
|
|
|
698841
699301
|
<PreviewSection
|
|
698842
699302
|
unifiedPreviewProps={
|
|
698843
699303
|
Object {
|
|
699304
|
+
"activePreviewTab": "rcs",
|
|
698844
699305
|
"channel": "WHATSAPP",
|
|
698845
699306
|
"content": Object {
|
|
698846
699307
|
"_id": null,
|
|
@@ -698875,8 +699336,11 @@ new message content.",
|
|
|
698875
699336
|
"isUpdating": false,
|
|
698876
699337
|
"lastModified": undefined,
|
|
698877
699338
|
"onDeviceChange": [Function],
|
|
699339
|
+
"onPreviewTabChange": [Function],
|
|
698878
699340
|
"selectedCustomer": null,
|
|
698879
699341
|
"showDeviceToggle": true,
|
|
699342
|
+
"smsFallbackContent": null,
|
|
699343
|
+
"smsFallbackResolvedText": undefined,
|
|
698880
699344
|
"updatedByName": undefined,
|
|
698881
699345
|
}
|
|
698882
699346
|
}
|
|
@@ -713628,6 +714092,7 @@ new message content.",
|
|
|
713628
714092
|
className="ant-col ant-col-10 cap-column-v2"
|
|
713629
714093
|
>
|
|
713630
714094
|
<UnifiedPreview
|
|
714095
|
+
activePreviewTab="rcs"
|
|
713631
714096
|
channel="WHATSAPP"
|
|
713632
714097
|
content={
|
|
713633
714098
|
Object {
|
|
@@ -715244,9 +715709,11 @@ new message content.",
|
|
|
715244
715709
|
key=".0"
|
|
715245
715710
|
lastModified={null}
|
|
715246
715711
|
onDeviceChange={[Function]}
|
|
715712
|
+
onPreviewTabChange={[Function]}
|
|
715247
715713
|
selectedCustomer={null}
|
|
715248
715714
|
showDeviceToggle={false}
|
|
715249
715715
|
showHeader={false}
|
|
715716
|
+
smsFallbackContent={null}
|
|
715250
715717
|
updatedByName={null}
|
|
715251
715718
|
>
|
|
715252
715719
|
<CapRow
|
|
@@ -720949,6 +721416,7 @@ new message content.",
|
|
|
720949
721416
|
}
|
|
720950
721417
|
}
|
|
720951
721418
|
show={false}
|
|
721419
|
+
smsFallbackContent={null}
|
|
720952
721420
|
testCustomers={Immutable.List []}
|
|
720953
721421
|
testGroups={Immutable.List []}
|
|
720954
721422
|
updatePreviewError={null}
|
|
@@ -723315,6 +723783,7 @@ new message content.",
|
|
|
723315
723783
|
}
|
|
723316
723784
|
}
|
|
723317
723785
|
show={false}
|
|
723786
|
+
smsFallbackContent={null}
|
|
723318
723787
|
templateLayoutType={null}
|
|
723319
723788
|
testCustomers={Immutable.List []}
|
|
723320
723789
|
testGroups={Immutable.List []}
|
|
@@ -723404,6 +723873,7 @@ new message content.",
|
|
|
723404
723873
|
formatMessage={[Function]}
|
|
723405
723874
|
handleSendTestMessage={[Function]}
|
|
723406
723875
|
handleTestEntitiesChange={[Function]}
|
|
723876
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
723407
723877
|
isFetchingTestCustomers={false}
|
|
723408
723878
|
isFetchingTestGroups={false}
|
|
723409
723879
|
isLoadingSenderDetails={false}
|
|
@@ -723411,7 +723881,13 @@ new message content.",
|
|
|
723411
723881
|
onSaveDeliverySettings={[Function]}
|
|
723412
723882
|
registeredSenderIds={Array []}
|
|
723413
723883
|
selectedTestEntities={Array []}
|
|
723414
|
-
|
|
723884
|
+
senderDetailsByChannel={
|
|
723885
|
+
Object {
|
|
723886
|
+
"EMAIL": Array [],
|
|
723887
|
+
"SMS": Array [],
|
|
723888
|
+
"WHATSAPP": Array [],
|
|
723889
|
+
}
|
|
723890
|
+
}
|
|
723415
723891
|
smsTraiDltEnabled={false}
|
|
723416
723892
|
testEntitiesTreeData={
|
|
723417
723893
|
Array [
|
|
@@ -723442,6 +723918,7 @@ new message content.",
|
|
|
723442
723918
|
<PreviewSection
|
|
723443
723919
|
unifiedPreviewProps={
|
|
723444
723920
|
Object {
|
|
723921
|
+
"activePreviewTab": "rcs",
|
|
723445
723922
|
"channel": "WHATSAPP",
|
|
723446
723923
|
"content": Object {
|
|
723447
723924
|
"_id": null,
|
|
@@ -723476,8 +723953,11 @@ new message content.",
|
|
|
723476
723953
|
"isUpdating": false,
|
|
723477
723954
|
"lastModified": undefined,
|
|
723478
723955
|
"onDeviceChange": [Function],
|
|
723956
|
+
"onPreviewTabChange": [Function],
|
|
723479
723957
|
"selectedCustomer": null,
|
|
723480
723958
|
"showDeviceToggle": true,
|
|
723959
|
+
"smsFallbackContent": null,
|
|
723960
|
+
"smsFallbackResolvedText": undefined,
|
|
723481
723961
|
"updatedByName": undefined,
|
|
723482
723962
|
}
|
|
723483
723963
|
}
|
|
@@ -737312,6 +737792,7 @@ new message content.",
|
|
|
737312
737792
|
className="ant-col ant-col-10 cap-column-v2"
|
|
737313
737793
|
>
|
|
737314
737794
|
<UnifiedPreview
|
|
737795
|
+
activePreviewTab="rcs"
|
|
737315
737796
|
channel="WHATSAPP"
|
|
737316
737797
|
content={
|
|
737317
737798
|
Object {
|
|
@@ -738007,9 +738488,11 @@ new message content.",
|
|
|
738007
738488
|
key=".0"
|
|
738008
738489
|
lastModified={null}
|
|
738009
738490
|
onDeviceChange={[Function]}
|
|
738491
|
+
onPreviewTabChange={[Function]}
|
|
738010
738492
|
selectedCustomer={null}
|
|
738011
738493
|
showDeviceToggle={false}
|
|
738012
738494
|
showHeader={false}
|
|
738495
|
+
smsFallbackContent={null}
|
|
738013
738496
|
updatedByName={null}
|
|
738014
738497
|
>
|
|
738015
738498
|
<CapRow
|
|
@@ -742791,6 +743274,7 @@ new message content.",
|
|
|
742791
743274
|
}
|
|
742792
743275
|
}
|
|
742793
743276
|
show={false}
|
|
743277
|
+
smsFallbackContent={null}
|
|
742794
743278
|
testCustomers={Immutable.List []}
|
|
742795
743279
|
testGroups={Immutable.List []}
|
|
742796
743280
|
updatePreviewError={null}
|
|
@@ -745157,6 +745641,7 @@ new message content.",
|
|
|
745157
745641
|
}
|
|
745158
745642
|
}
|
|
745159
745643
|
show={false}
|
|
745644
|
+
smsFallbackContent={null}
|
|
745160
745645
|
templateLayoutType={null}
|
|
745161
745646
|
testCustomers={Immutable.List []}
|
|
745162
745647
|
testGroups={Immutable.List []}
|
|
@@ -745246,6 +745731,7 @@ new message content.",
|
|
|
745246
745731
|
formatMessage={[Function]}
|
|
745247
745732
|
handleSendTestMessage={[Function]}
|
|
745248
745733
|
handleTestEntitiesChange={[Function]}
|
|
745734
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
745249
745735
|
isFetchingTestCustomers={false}
|
|
745250
745736
|
isFetchingTestGroups={false}
|
|
745251
745737
|
isLoadingSenderDetails={false}
|
|
@@ -745253,7 +745739,13 @@ new message content.",
|
|
|
745253
745739
|
onSaveDeliverySettings={[Function]}
|
|
745254
745740
|
registeredSenderIds={Array []}
|
|
745255
745741
|
selectedTestEntities={Array []}
|
|
745256
|
-
|
|
745742
|
+
senderDetailsByChannel={
|
|
745743
|
+
Object {
|
|
745744
|
+
"EMAIL": Array [],
|
|
745745
|
+
"SMS": Array [],
|
|
745746
|
+
"WHATSAPP": Array [],
|
|
745747
|
+
}
|
|
745748
|
+
}
|
|
745257
745749
|
smsTraiDltEnabled={false}
|
|
745258
745750
|
testEntitiesTreeData={
|
|
745259
745751
|
Array [
|
|
@@ -745284,6 +745776,7 @@ new message content.",
|
|
|
745284
745776
|
<PreviewSection
|
|
745285
745777
|
unifiedPreviewProps={
|
|
745286
745778
|
Object {
|
|
745779
|
+
"activePreviewTab": "rcs",
|
|
745287
745780
|
"channel": "WHATSAPP",
|
|
745288
745781
|
"content": Object {
|
|
745289
745782
|
"_id": null,
|
|
@@ -745318,8 +745811,11 @@ new message content.",
|
|
|
745318
745811
|
"isUpdating": false,
|
|
745319
745812
|
"lastModified": undefined,
|
|
745320
745813
|
"onDeviceChange": [Function],
|
|
745814
|
+
"onPreviewTabChange": [Function],
|
|
745321
745815
|
"selectedCustomer": null,
|
|
745322
745816
|
"showDeviceToggle": true,
|
|
745817
|
+
"smsFallbackContent": null,
|
|
745818
|
+
"smsFallbackResolvedText": undefined,
|
|
745323
745819
|
"updatedByName": undefined,
|
|
745324
745820
|
}
|
|
745325
745821
|
}
|
|
@@ -761469,6 +761965,7 @@ new message content.",
|
|
|
761469
761965
|
className="ant-col ant-col-10 cap-column-v2"
|
|
761470
761966
|
>
|
|
761471
761967
|
<UnifiedPreview
|
|
761968
|
+
activePreviewTab="rcs"
|
|
761472
761969
|
channel="WHATSAPP"
|
|
761473
761970
|
content={
|
|
761474
761971
|
Object {
|
|
@@ -762697,9 +763194,11 @@ new message content.",
|
|
|
762697
763194
|
key=".0"
|
|
762698
763195
|
lastModified={null}
|
|
762699
763196
|
onDeviceChange={[Function]}
|
|
763197
|
+
onPreviewTabChange={[Function]}
|
|
762700
763198
|
selectedCustomer={null}
|
|
762701
763199
|
showDeviceToggle={false}
|
|
762702
763200
|
showHeader={false}
|
|
763201
|
+
smsFallbackContent={null}
|
|
762703
763202
|
updatedByName={null}
|
|
762704
763203
|
>
|
|
762705
763204
|
<CapRow
|
|
@@ -768024,6 +768523,7 @@ new message content.",
|
|
|
768024
768523
|
}
|
|
768025
768524
|
}
|
|
768026
768525
|
show={false}
|
|
768526
|
+
smsFallbackContent={null}
|
|
768027
768527
|
testCustomers={Immutable.List []}
|
|
768028
768528
|
testGroups={Immutable.List []}
|
|
768029
768529
|
updatePreviewError={null}
|
|
@@ -770390,6 +770890,7 @@ new message content.",
|
|
|
770390
770890
|
}
|
|
770391
770891
|
}
|
|
770392
770892
|
show={false}
|
|
770893
|
+
smsFallbackContent={null}
|
|
770393
770894
|
templateLayoutType={null}
|
|
770394
770895
|
testCustomers={Immutable.List []}
|
|
770395
770896
|
testGroups={Immutable.List []}
|
|
@@ -770479,6 +770980,7 @@ new message content.",
|
|
|
770479
770980
|
formatMessage={[Function]}
|
|
770480
770981
|
handleSendTestMessage={[Function]}
|
|
770481
770982
|
handleTestEntitiesChange={[Function]}
|
|
770983
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
770482
770984
|
isFetchingTestCustomers={false}
|
|
770483
770985
|
isFetchingTestGroups={false}
|
|
770484
770986
|
isLoadingSenderDetails={false}
|
|
@@ -770486,7 +770988,13 @@ new message content.",
|
|
|
770486
770988
|
onSaveDeliverySettings={[Function]}
|
|
770487
770989
|
registeredSenderIds={Array []}
|
|
770488
770990
|
selectedTestEntities={Array []}
|
|
770489
|
-
|
|
770991
|
+
senderDetailsByChannel={
|
|
770992
|
+
Object {
|
|
770993
|
+
"EMAIL": Array [],
|
|
770994
|
+
"SMS": Array [],
|
|
770995
|
+
"WHATSAPP": Array [],
|
|
770996
|
+
}
|
|
770997
|
+
}
|
|
770490
770998
|
smsTraiDltEnabled={false}
|
|
770491
770999
|
testEntitiesTreeData={
|
|
770492
771000
|
Array [
|
|
@@ -770517,6 +771025,7 @@ new message content.",
|
|
|
770517
771025
|
<PreviewSection
|
|
770518
771026
|
unifiedPreviewProps={
|
|
770519
771027
|
Object {
|
|
771028
|
+
"activePreviewTab": "rcs",
|
|
770520
771029
|
"channel": "WHATSAPP",
|
|
770521
771030
|
"content": Object {
|
|
770522
771031
|
"_id": null,
|
|
@@ -770551,8 +771060,11 @@ new message content.",
|
|
|
770551
771060
|
"isUpdating": false,
|
|
770552
771061
|
"lastModified": undefined,
|
|
770553
771062
|
"onDeviceChange": [Function],
|
|
771063
|
+
"onPreviewTabChange": [Function],
|
|
770554
771064
|
"selectedCustomer": null,
|
|
770555
771065
|
"showDeviceToggle": true,
|
|
771066
|
+
"smsFallbackContent": null,
|
|
771067
|
+
"smsFallbackResolvedText": undefined,
|
|
770556
771068
|
"updatedByName": undefined,
|
|
770557
771069
|
}
|
|
770558
771070
|
}
|
|
@@ -786784,6 +787296,7 @@ new message content.",
|
|
|
786784
787296
|
className="ant-col ant-col-10 cap-column-v2"
|
|
786785
787297
|
>
|
|
786786
787298
|
<UnifiedPreview
|
|
787299
|
+
activePreviewTab="rcs"
|
|
786787
787300
|
channel="WHATSAPP"
|
|
786788
787301
|
content={
|
|
786789
787302
|
Object {
|
|
@@ -788025,9 +788538,11 @@ new message content.",
|
|
|
788025
788538
|
key=".0"
|
|
788026
788539
|
lastModified={null}
|
|
788027
788540
|
onDeviceChange={[Function]}
|
|
788541
|
+
onPreviewTabChange={[Function]}
|
|
788028
788542
|
selectedCustomer={null}
|
|
788029
788543
|
showDeviceToggle={false}
|
|
788030
788544
|
showHeader={false}
|
|
788545
|
+
smsFallbackContent={null}
|
|
788031
788546
|
updatedByName={null}
|
|
788032
788547
|
>
|
|
788033
788548
|
<CapRow
|
|
@@ -793365,6 +793880,7 @@ new message content.",
|
|
|
793365
793880
|
}
|
|
793366
793881
|
}
|
|
793367
793882
|
show={false}
|
|
793883
|
+
smsFallbackContent={null}
|
|
793368
793884
|
testCustomers={Immutable.List []}
|
|
793369
793885
|
testGroups={Immutable.List []}
|
|
793370
793886
|
updatePreviewError={null}
|
|
@@ -795731,6 +796247,7 @@ new message content.",
|
|
|
795731
796247
|
}
|
|
795732
796248
|
}
|
|
795733
796249
|
show={false}
|
|
796250
|
+
smsFallbackContent={null}
|
|
795734
796251
|
templateLayoutType={null}
|
|
795735
796252
|
testCustomers={Immutable.List []}
|
|
795736
796253
|
testGroups={Immutable.List []}
|
|
@@ -795820,6 +796337,7 @@ new message content.",
|
|
|
795820
796337
|
formatMessage={[Function]}
|
|
795821
796338
|
handleSendTestMessage={[Function]}
|
|
795822
796339
|
handleTestEntitiesChange={[Function]}
|
|
796340
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
795823
796341
|
isFetchingTestCustomers={false}
|
|
795824
796342
|
isFetchingTestGroups={false}
|
|
795825
796343
|
isLoadingSenderDetails={false}
|
|
@@ -795827,7 +796345,13 @@ new message content.",
|
|
|
795827
796345
|
onSaveDeliverySettings={[Function]}
|
|
795828
796346
|
registeredSenderIds={Array []}
|
|
795829
796347
|
selectedTestEntities={Array []}
|
|
795830
|
-
|
|
796348
|
+
senderDetailsByChannel={
|
|
796349
|
+
Object {
|
|
796350
|
+
"EMAIL": Array [],
|
|
796351
|
+
"SMS": Array [],
|
|
796352
|
+
"WHATSAPP": Array [],
|
|
796353
|
+
}
|
|
796354
|
+
}
|
|
795831
796355
|
smsTraiDltEnabled={false}
|
|
795832
796356
|
testEntitiesTreeData={
|
|
795833
796357
|
Array [
|
|
@@ -795858,6 +796382,7 @@ new message content.",
|
|
|
795858
796382
|
<PreviewSection
|
|
795859
796383
|
unifiedPreviewProps={
|
|
795860
796384
|
Object {
|
|
796385
|
+
"activePreviewTab": "rcs",
|
|
795861
796386
|
"channel": "WHATSAPP",
|
|
795862
796387
|
"content": Object {
|
|
795863
796388
|
"_id": null,
|
|
@@ -795892,8 +796417,11 @@ new message content.",
|
|
|
795892
796417
|
"isUpdating": false,
|
|
795893
796418
|
"lastModified": undefined,
|
|
795894
796419
|
"onDeviceChange": [Function],
|
|
796420
|
+
"onPreviewTabChange": [Function],
|
|
795895
796421
|
"selectedCustomer": null,
|
|
795896
796422
|
"showDeviceToggle": true,
|
|
796423
|
+
"smsFallbackContent": null,
|
|
796424
|
+
"smsFallbackResolvedText": undefined,
|
|
795897
796425
|
"updatedByName": undefined,
|
|
795898
796426
|
}
|
|
795899
796427
|
}
|
|
@@ -812125,6 +812653,7 @@ new message content.",
|
|
|
812125
812653
|
className="ant-col ant-col-10 cap-column-v2"
|
|
812126
812654
|
>
|
|
812127
812655
|
<UnifiedPreview
|
|
812656
|
+
activePreviewTab="rcs"
|
|
812128
812657
|
channel="WHATSAPP"
|
|
812129
812658
|
content={
|
|
812130
812659
|
Object {
|
|
@@ -813366,9 +813895,11 @@ new message content.",
|
|
|
813366
813895
|
key=".0"
|
|
813367
813896
|
lastModified={null}
|
|
813368
813897
|
onDeviceChange={[Function]}
|
|
813898
|
+
onPreviewTabChange={[Function]}
|
|
813369
813899
|
selectedCustomer={null}
|
|
813370
813900
|
showDeviceToggle={false}
|
|
813371
813901
|
showHeader={false}
|
|
813902
|
+
smsFallbackContent={null}
|
|
813372
813903
|
updatedByName={null}
|
|
813373
813904
|
>
|
|
813374
813905
|
<CapRow
|
|
@@ -818706,6 +819237,7 @@ new message content.",
|
|
|
818706
819237
|
}
|
|
818707
819238
|
}
|
|
818708
819239
|
show={false}
|
|
819240
|
+
smsFallbackContent={null}
|
|
818709
819241
|
testCustomers={Immutable.List []}
|
|
818710
819242
|
testGroups={Immutable.List []}
|
|
818711
819243
|
updatePreviewError={null}
|
|
@@ -821072,6 +821604,7 @@ new message content.",
|
|
|
821072
821604
|
}
|
|
821073
821605
|
}
|
|
821074
821606
|
show={false}
|
|
821607
|
+
smsFallbackContent={null}
|
|
821075
821608
|
templateLayoutType={null}
|
|
821076
821609
|
testCustomers={Immutable.List []}
|
|
821077
821610
|
testGroups={Immutable.List []}
|
|
@@ -821161,6 +821694,7 @@ new message content.",
|
|
|
821161
821694
|
formatMessage={[Function]}
|
|
821162
821695
|
handleSendTestMessage={[Function]}
|
|
821163
821696
|
handleTestEntitiesChange={[Function]}
|
|
821697
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
821164
821698
|
isFetchingTestCustomers={false}
|
|
821165
821699
|
isFetchingTestGroups={false}
|
|
821166
821700
|
isLoadingSenderDetails={false}
|
|
@@ -821168,7 +821702,13 @@ new message content.",
|
|
|
821168
821702
|
onSaveDeliverySettings={[Function]}
|
|
821169
821703
|
registeredSenderIds={Array []}
|
|
821170
821704
|
selectedTestEntities={Array []}
|
|
821171
|
-
|
|
821705
|
+
senderDetailsByChannel={
|
|
821706
|
+
Object {
|
|
821707
|
+
"EMAIL": Array [],
|
|
821708
|
+
"SMS": Array [],
|
|
821709
|
+
"WHATSAPP": Array [],
|
|
821710
|
+
}
|
|
821711
|
+
}
|
|
821172
821712
|
smsTraiDltEnabled={false}
|
|
821173
821713
|
testEntitiesTreeData={
|
|
821174
821714
|
Array [
|
|
@@ -821199,6 +821739,7 @@ new message content.",
|
|
|
821199
821739
|
<PreviewSection
|
|
821200
821740
|
unifiedPreviewProps={
|
|
821201
821741
|
Object {
|
|
821742
|
+
"activePreviewTab": "rcs",
|
|
821202
821743
|
"channel": "WHATSAPP",
|
|
821203
821744
|
"content": Object {
|
|
821204
821745
|
"_id": null,
|
|
@@ -821233,8 +821774,11 @@ new message content.",
|
|
|
821233
821774
|
"isUpdating": false,
|
|
821234
821775
|
"lastModified": undefined,
|
|
821235
821776
|
"onDeviceChange": [Function],
|
|
821777
|
+
"onPreviewTabChange": [Function],
|
|
821236
821778
|
"selectedCustomer": null,
|
|
821237
821779
|
"showDeviceToggle": true,
|
|
821780
|
+
"smsFallbackContent": null,
|
|
821781
|
+
"smsFallbackResolvedText": undefined,
|
|
821238
821782
|
"updatedByName": undefined,
|
|
821239
821783
|
}
|
|
821240
821784
|
}
|