@capillarytech/creatives-library 9.0.28 → 9.0.29-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/unified.js +29 -0
- package/global-styles.js +1 -1
- package/package.json +1 -1
- package/services/tests/api.test.js +35 -20
- package/utils/commonUtils.js +22 -1
- package/utils/rcsPayloadUtils.js +102 -0
- package/utils/templateVarUtils.js +198 -0
- package/utils/tests/rcsPayloadUtils.test.js +295 -0
- package/utils/tests/templateVarUtils.test.js +204 -0
- package/v2Components/CapActionButton/constants.js +21 -1
- package/v2Components/CapActionButton/index.js +260 -144
- package/v2Components/CapActionButton/index.scss +245 -14
- package/v2Components/CapActionButton/messages.js +32 -3
- package/v2Components/CapActionButton/tests/index.test.js +74 -19
- package/v2Components/CapImageUpload/index.js +2 -2
- package/v2Components/CapTagList/index.js +9 -0
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +70 -48
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +8 -2
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +214 -21
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +16 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +83 -9
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +30 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +58 -11
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +10 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/RcsPreviewContent.js +186 -22
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +381 -80
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +155 -8
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +11 -0
- package/v2Components/CommonTestAndPreview/constants.js +35 -2
- package/v2Components/CommonTestAndPreview/index.js +770 -231
- package/v2Components/CommonTestAndPreview/messages.js +45 -3
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +59 -0
- package/v2Components/CommonTestAndPreview/sagas.js +25 -6
- package/v2Components/CommonTestAndPreview/tests/CommonTestAndPreview.addTestCustomer.test.js +1 -0
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +412 -257
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +337 -63
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +118 -5
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +341 -0
- package/v2Components/CommonTestAndPreview/tests/PreviewSection.test.js +8 -1
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +108 -15
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/RcsPreviewContent.test.js +281 -283
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +199 -1
- package/v2Components/CommonTestAndPreview/tests/index.test.js +133 -4
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +67 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +31 -24
- package/v2Components/CommonTestAndPreview/tests/utils.test.js +151 -0
- package/v2Components/CommonTestAndPreview/utils.js +84 -0
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +91 -0
- package/v2Components/SmsFallback/constants.js +94 -0
- package/v2Components/SmsFallback/index.js +958 -0
- package/v2Components/SmsFallback/index.scss +266 -0
- package/v2Components/SmsFallback/messages.js +78 -0
- package/v2Components/SmsFallback/smsFallbackUtils.js +120 -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 +208 -0
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +309 -0
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +471 -0
- package/v2Components/SmsFallback/useLocalTemplateList.js +92 -0
- package/v2Components/TemplatePreview/_templatePreview.scss +45 -25
- package/v2Components/TemplatePreview/constants.js +2 -0
- package/v2Components/TemplatePreview/index.js +147 -32
- package/v2Components/TemplatePreview/tests/index.test.js +142 -0
- package/v2Components/TestAndPreviewSlidebox/CustomValuesEditor.js +6 -6
- package/v2Components/TestAndPreviewSlidebox/index.js +13 -1
- package/v2Components/TestAndPreviewSlidebox/sagas.js +11 -4
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +3 -1
- package/v2Components/VarSegmentMessageEditor/constants.js +2 -0
- package/v2Components/VarSegmentMessageEditor/index.js +125 -0
- package/v2Components/VarSegmentMessageEditor/index.scss +46 -0
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +4 -1
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/DeliverySettingsSection.test.js +4 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/SenderDetails.test.js +20 -20
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +27 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +37 -4
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +14 -5
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +36 -5
- package/v2Containers/CreativesContainer/constants.js +11 -0
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +77 -0
- package/v2Containers/CreativesContainer/index.js +328 -106
- package/v2Containers/CreativesContainer/index.scss +102 -1
- package/v2Containers/CreativesContainer/tests/CreativesSlideBoxWrapper.test.js +58 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +90 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.smsDltPreview.test.js +73 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +37 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +103 -34
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +193 -15
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +88 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +549 -57
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +20 -15
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +258 -0
- package/v2Containers/CreativesContainer/tests/index.test.js +71 -9
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +125 -0
- package/v2Containers/Email/index.js +3 -63
- package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +4 -9
- package/v2Containers/MobilePush/Create/test/saga.test.js +2 -2
- package/v2Containers/Rcs/carouselUtils.js +224 -0
- package/v2Containers/Rcs/components/CarouselCard.js +317 -0
- package/v2Containers/Rcs/components/CarouselCardButtons.js +113 -0
- package/v2Containers/Rcs/components/CarouselCardMedia.js +136 -0
- package/v2Containers/Rcs/components/CarouselCharacterCount.js +31 -0
- package/v2Containers/Rcs/components/CarouselDimensionSelection.js +80 -0
- package/v2Containers/Rcs/constants.js +132 -16
- package/v2Containers/Rcs/index.js +1808 -949
- package/v2Containers/Rcs/index.scss +443 -8
- package/v2Containers/Rcs/messages.js +45 -22
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +484 -0
- package/v2Containers/Rcs/tests/CarouselCard.test.js +464 -0
- package/v2Containers/Rcs/tests/CarouselCardButtons.test.js +211 -0
- package/v2Containers/Rcs/tests/CarouselCardMedia.test.js +160 -0
- package/v2Containers/Rcs/tests/CarouselCharacterCount.test.js +50 -0
- package/v2Containers/Rcs/tests/CarouselDimensionSelection.test.js +119 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +74176 -39409
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +10 -74
- package/v2Containers/Rcs/tests/carouselUtils.test.js +916 -0
- package/v2Containers/Rcs/tests/index.test.js +219 -40
- package/v2Containers/Rcs/tests/mockData.js +38 -0
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +873 -0
- package/v2Containers/Rcs/tests/utils.test.js +682 -30
- package/v2Containers/Rcs/utils.js +514 -12
- package/v2Containers/Sms/Create/index.js +115 -48
- 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 +678 -169
- package/v2Containers/SmsTrai/Edit/index.scss +126 -0
- package/v2Containers/SmsTrai/Edit/messages.js +14 -4
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +5615 -3014
- package/v2Containers/SmsWrapper/index.js +37 -8
- package/v2Containers/TagList/index.js +5 -0
- package/v2Containers/Templates/TemplatesActionBar.js +101 -0
- package/v2Containers/Templates/_templates.scss +196 -12
- package/v2Containers/Templates/actions.js +11 -0
- package/v2Containers/Templates/constants.js +2 -0
- package/v2Containers/Templates/index.js +131 -59
- package/v2Containers/Templates/sagas.js +57 -13
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +129 -0
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1060 -1015
- package/v2Containers/Templates/tests/sagas.test.js +199 -16
- 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 +88 -25
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +131 -0
- package/v2Containers/WeChat/MapTemplates/test/saga.test.js +9 -9
- package/v2Containers/Whatsapp/index.js +3 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +578 -34
|
@@ -12176,6 +12176,7 @@ new message content.",
|
|
|
12176
12176
|
style={Object {}}
|
|
12177
12177
|
>
|
|
12178
12178
|
<UnifiedPreview
|
|
12179
|
+
activePreviewTab="rcs"
|
|
12179
12180
|
channel="WHATSAPP"
|
|
12180
12181
|
content={
|
|
12181
12182
|
Object {
|
|
@@ -12871,9 +12872,11 @@ new message content.",
|
|
|
12871
12872
|
key=".0"
|
|
12872
12873
|
lastModified={null}
|
|
12873
12874
|
onDeviceChange={[Function]}
|
|
12875
|
+
onPreviewTabChange={[Function]}
|
|
12874
12876
|
selectedCustomer={null}
|
|
12875
12877
|
showDeviceToggle={false}
|
|
12876
12878
|
showHeader={false}
|
|
12879
|
+
smsFallbackContent={null}
|
|
12877
12880
|
updatedByName={null}
|
|
12878
12881
|
>
|
|
12879
12882
|
<CapRow
|
|
@@ -16698,6 +16701,7 @@ new message content.",
|
|
|
16698
16701
|
}
|
|
16699
16702
|
}
|
|
16700
16703
|
show={false}
|
|
16704
|
+
smsFallbackContent={null}
|
|
16701
16705
|
testCustomers={Immutable.List []}
|
|
16702
16706
|
testGroups={Immutable.List []}
|
|
16703
16707
|
updatePreviewError={null}
|
|
@@ -19065,6 +19069,7 @@ new message content.",
|
|
|
19065
19069
|
}
|
|
19066
19070
|
}
|
|
19067
19071
|
show={false}
|
|
19072
|
+
smsFallbackContent={null}
|
|
19068
19073
|
templateLayoutType={null}
|
|
19069
19074
|
testCustomers={Immutable.List []}
|
|
19070
19075
|
testGroups={Immutable.List []}
|
|
@@ -19158,6 +19163,7 @@ new message content.",
|
|
|
19158
19163
|
formatMessage={[Function]}
|
|
19159
19164
|
handleSendTestMessage={[Function]}
|
|
19160
19165
|
handleTestEntitiesChange={[Function]}
|
|
19166
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
19161
19167
|
isFetchingTestCustomers={false}
|
|
19162
19168
|
isFetchingTestGroups={false}
|
|
19163
19169
|
isLoadingSenderDetails={false}
|
|
@@ -19167,7 +19173,13 @@ new message content.",
|
|
|
19167
19173
|
renderAddTestCustomerButton={[Function]}
|
|
19168
19174
|
searchValue=""
|
|
19169
19175
|
selectedTestEntities={Array []}
|
|
19170
|
-
|
|
19176
|
+
senderDetailsByChannel={
|
|
19177
|
+
Object {
|
|
19178
|
+
"EMAIL": Array [],
|
|
19179
|
+
"SMS": Array [],
|
|
19180
|
+
"WHATSAPP": Array [],
|
|
19181
|
+
}
|
|
19182
|
+
}
|
|
19171
19183
|
setSearchValue={[Function]}
|
|
19172
19184
|
smsTraiDltEnabled={false}
|
|
19173
19185
|
testEntitiesTreeData={
|
|
@@ -19199,6 +19211,7 @@ new message content.",
|
|
|
19199
19211
|
<PreviewSection
|
|
19200
19212
|
unifiedPreviewProps={
|
|
19201
19213
|
Object {
|
|
19214
|
+
"activePreviewTab": "rcs",
|
|
19202
19215
|
"channel": "WHATSAPP",
|
|
19203
19216
|
"content": Object {
|
|
19204
19217
|
"_id": null,
|
|
@@ -19233,8 +19246,11 @@ new message content.",
|
|
|
19233
19246
|
"isUpdating": false,
|
|
19234
19247
|
"lastModified": undefined,
|
|
19235
19248
|
"onDeviceChange": [Function],
|
|
19249
|
+
"onPreviewTabChange": [Function],
|
|
19236
19250
|
"selectedCustomer": null,
|
|
19237
19251
|
"showDeviceToggle": true,
|
|
19252
|
+
"smsFallbackContent": null,
|
|
19253
|
+
"smsFallbackResolvedText": undefined,
|
|
19238
19254
|
"updatedByName": undefined,
|
|
19239
19255
|
}
|
|
19240
19256
|
}
|
|
@@ -33627,6 +33643,7 @@ new message content.",
|
|
|
33627
33643
|
style={Object {}}
|
|
33628
33644
|
>
|
|
33629
33645
|
<UnifiedPreview
|
|
33646
|
+
activePreviewTab="rcs"
|
|
33630
33647
|
channel="WHATSAPP"
|
|
33631
33648
|
content={
|
|
33632
33649
|
Object {
|
|
@@ -34420,9 +34437,11 @@ new message content.",
|
|
|
34420
34437
|
key=".0"
|
|
34421
34438
|
lastModified={null}
|
|
34422
34439
|
onDeviceChange={[Function]}
|
|
34440
|
+
onPreviewTabChange={[Function]}
|
|
34423
34441
|
selectedCustomer={null}
|
|
34424
34442
|
showDeviceToggle={false}
|
|
34425
34443
|
showHeader={false}
|
|
34444
|
+
smsFallbackContent={null}
|
|
34426
34445
|
updatedByName={null}
|
|
34427
34446
|
>
|
|
34428
34447
|
<CapRow
|
|
@@ -38345,6 +38364,7 @@ new message content.",
|
|
|
38345
38364
|
}
|
|
38346
38365
|
}
|
|
38347
38366
|
show={false}
|
|
38367
|
+
smsFallbackContent={null}
|
|
38348
38368
|
testCustomers={Immutable.List []}
|
|
38349
38369
|
testGroups={Immutable.List []}
|
|
38350
38370
|
updatePreviewError={null}
|
|
@@ -40712,6 +40732,7 @@ new message content.",
|
|
|
40712
40732
|
}
|
|
40713
40733
|
}
|
|
40714
40734
|
show={false}
|
|
40735
|
+
smsFallbackContent={null}
|
|
40715
40736
|
templateLayoutType={null}
|
|
40716
40737
|
testCustomers={Immutable.List []}
|
|
40717
40738
|
testGroups={Immutable.List []}
|
|
@@ -40805,6 +40826,7 @@ new message content.",
|
|
|
40805
40826
|
formatMessage={[Function]}
|
|
40806
40827
|
handleSendTestMessage={[Function]}
|
|
40807
40828
|
handleTestEntitiesChange={[Function]}
|
|
40829
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
40808
40830
|
isFetchingTestCustomers={false}
|
|
40809
40831
|
isFetchingTestGroups={false}
|
|
40810
40832
|
isLoadingSenderDetails={false}
|
|
@@ -40814,7 +40836,13 @@ new message content.",
|
|
|
40814
40836
|
renderAddTestCustomerButton={[Function]}
|
|
40815
40837
|
searchValue=""
|
|
40816
40838
|
selectedTestEntities={Array []}
|
|
40817
|
-
|
|
40839
|
+
senderDetailsByChannel={
|
|
40840
|
+
Object {
|
|
40841
|
+
"EMAIL": Array [],
|
|
40842
|
+
"SMS": Array [],
|
|
40843
|
+
"WHATSAPP": Array [],
|
|
40844
|
+
}
|
|
40845
|
+
}
|
|
40818
40846
|
setSearchValue={[Function]}
|
|
40819
40847
|
smsTraiDltEnabled={false}
|
|
40820
40848
|
testEntitiesTreeData={
|
|
@@ -40846,6 +40874,7 @@ new message content.",
|
|
|
40846
40874
|
<PreviewSection
|
|
40847
40875
|
unifiedPreviewProps={
|
|
40848
40876
|
Object {
|
|
40877
|
+
"activePreviewTab": "rcs",
|
|
40849
40878
|
"channel": "WHATSAPP",
|
|
40850
40879
|
"content": Object {
|
|
40851
40880
|
"_id": null,
|
|
@@ -40880,8 +40909,11 @@ new message content.",
|
|
|
40880
40909
|
"isUpdating": false,
|
|
40881
40910
|
"lastModified": undefined,
|
|
40882
40911
|
"onDeviceChange": [Function],
|
|
40912
|
+
"onPreviewTabChange": [Function],
|
|
40883
40913
|
"selectedCustomer": null,
|
|
40884
40914
|
"showDeviceToggle": true,
|
|
40915
|
+
"smsFallbackContent": null,
|
|
40916
|
+
"smsFallbackResolvedText": undefined,
|
|
40885
40917
|
"updatedByName": undefined,
|
|
40886
40918
|
}
|
|
40887
40919
|
}
|
|
@@ -55554,6 +55586,7 @@ new message content.",
|
|
|
55554
55586
|
style={Object {}}
|
|
55555
55587
|
>
|
|
55556
55588
|
<UnifiedPreview
|
|
55589
|
+
activePreviewTab="rcs"
|
|
55557
55590
|
channel="WHATSAPP"
|
|
55558
55591
|
content={
|
|
55559
55592
|
Object {
|
|
@@ -56732,9 +56765,11 @@ new message content.",
|
|
|
56732
56765
|
key=".0"
|
|
56733
56766
|
lastModified={null}
|
|
56734
56767
|
onDeviceChange={[Function]}
|
|
56768
|
+
onPreviewTabChange={[Function]}
|
|
56735
56769
|
selectedCustomer={null}
|
|
56736
56770
|
showDeviceToggle={false}
|
|
56737
56771
|
showHeader={false}
|
|
56772
|
+
smsFallbackContent={null}
|
|
56738
56773
|
updatedByName={null}
|
|
56739
56774
|
>
|
|
56740
56775
|
<CapRow
|
|
@@ -61040,6 +61075,7 @@ new message content.",
|
|
|
61040
61075
|
}
|
|
61041
61076
|
}
|
|
61042
61077
|
show={false}
|
|
61078
|
+
smsFallbackContent={null}
|
|
61043
61079
|
testCustomers={Immutable.List []}
|
|
61044
61080
|
testGroups={Immutable.List []}
|
|
61045
61081
|
updatePreviewError={null}
|
|
@@ -63407,6 +63443,7 @@ new message content.",
|
|
|
63407
63443
|
}
|
|
63408
63444
|
}
|
|
63409
63445
|
show={false}
|
|
63446
|
+
smsFallbackContent={null}
|
|
63410
63447
|
templateLayoutType={null}
|
|
63411
63448
|
testCustomers={Immutable.List []}
|
|
63412
63449
|
testGroups={Immutable.List []}
|
|
@@ -63500,6 +63537,7 @@ new message content.",
|
|
|
63500
63537
|
formatMessage={[Function]}
|
|
63501
63538
|
handleSendTestMessage={[Function]}
|
|
63502
63539
|
handleTestEntitiesChange={[Function]}
|
|
63540
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
63503
63541
|
isFetchingTestCustomers={false}
|
|
63504
63542
|
isFetchingTestGroups={false}
|
|
63505
63543
|
isLoadingSenderDetails={false}
|
|
@@ -63509,7 +63547,13 @@ new message content.",
|
|
|
63509
63547
|
renderAddTestCustomerButton={[Function]}
|
|
63510
63548
|
searchValue=""
|
|
63511
63549
|
selectedTestEntities={Array []}
|
|
63512
|
-
|
|
63550
|
+
senderDetailsByChannel={
|
|
63551
|
+
Object {
|
|
63552
|
+
"EMAIL": Array [],
|
|
63553
|
+
"SMS": Array [],
|
|
63554
|
+
"WHATSAPP": Array [],
|
|
63555
|
+
}
|
|
63556
|
+
}
|
|
63513
63557
|
setSearchValue={[Function]}
|
|
63514
63558
|
smsTraiDltEnabled={false}
|
|
63515
63559
|
testEntitiesTreeData={
|
|
@@ -63541,6 +63585,7 @@ new message content.",
|
|
|
63541
63585
|
<PreviewSection
|
|
63542
63586
|
unifiedPreviewProps={
|
|
63543
63587
|
Object {
|
|
63588
|
+
"activePreviewTab": "rcs",
|
|
63544
63589
|
"channel": "WHATSAPP",
|
|
63545
63590
|
"content": Object {
|
|
63546
63591
|
"_id": null,
|
|
@@ -63575,8 +63620,11 @@ new message content.",
|
|
|
63575
63620
|
"isUpdating": false,
|
|
63576
63621
|
"lastModified": undefined,
|
|
63577
63622
|
"onDeviceChange": [Function],
|
|
63623
|
+
"onPreviewTabChange": [Function],
|
|
63578
63624
|
"selectedCustomer": null,
|
|
63579
63625
|
"showDeviceToggle": true,
|
|
63626
|
+
"smsFallbackContent": null,
|
|
63627
|
+
"smsFallbackResolvedText": undefined,
|
|
63580
63628
|
"updatedByName": undefined,
|
|
63581
63629
|
}
|
|
63582
63630
|
}
|
|
@@ -79124,6 +79172,7 @@ new message content.",
|
|
|
79124
79172
|
style={Object {}}
|
|
79125
79173
|
>
|
|
79126
79174
|
<UnifiedPreview
|
|
79175
|
+
activePreviewTab="rcs"
|
|
79127
79176
|
channel="WHATSAPP"
|
|
79128
79177
|
content={
|
|
79129
79178
|
Object {
|
|
@@ -81072,9 +81121,11 @@ new message content.",
|
|
|
81072
81121
|
key=".0"
|
|
81073
81122
|
lastModified={null}
|
|
81074
81123
|
onDeviceChange={[Function]}
|
|
81124
|
+
onPreviewTabChange={[Function]}
|
|
81075
81125
|
selectedCustomer={null}
|
|
81076
81126
|
showDeviceToggle={false}
|
|
81077
81127
|
showHeader={false}
|
|
81128
|
+
smsFallbackContent={null}
|
|
81078
81129
|
updatedByName={null}
|
|
81079
81130
|
>
|
|
81080
81131
|
<CapRow
|
|
@@ -86152,6 +86203,7 @@ new message content.",
|
|
|
86152
86203
|
}
|
|
86153
86204
|
}
|
|
86154
86205
|
show={false}
|
|
86206
|
+
smsFallbackContent={null}
|
|
86155
86207
|
testCustomers={Immutable.List []}
|
|
86156
86208
|
testGroups={Immutable.List []}
|
|
86157
86209
|
updatePreviewError={null}
|
|
@@ -88519,6 +88571,7 @@ new message content.",
|
|
|
88519
88571
|
}
|
|
88520
88572
|
}
|
|
88521
88573
|
show={false}
|
|
88574
|
+
smsFallbackContent={null}
|
|
88522
88575
|
templateLayoutType={null}
|
|
88523
88576
|
testCustomers={Immutable.List []}
|
|
88524
88577
|
testGroups={Immutable.List []}
|
|
@@ -88612,6 +88665,7 @@ new message content.",
|
|
|
88612
88665
|
formatMessage={[Function]}
|
|
88613
88666
|
handleSendTestMessage={[Function]}
|
|
88614
88667
|
handleTestEntitiesChange={[Function]}
|
|
88668
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
88615
88669
|
isFetchingTestCustomers={false}
|
|
88616
88670
|
isFetchingTestGroups={false}
|
|
88617
88671
|
isLoadingSenderDetails={false}
|
|
@@ -88621,7 +88675,13 @@ new message content.",
|
|
|
88621
88675
|
renderAddTestCustomerButton={[Function]}
|
|
88622
88676
|
searchValue=""
|
|
88623
88677
|
selectedTestEntities={Array []}
|
|
88624
|
-
|
|
88678
|
+
senderDetailsByChannel={
|
|
88679
|
+
Object {
|
|
88680
|
+
"EMAIL": Array [],
|
|
88681
|
+
"SMS": Array [],
|
|
88682
|
+
"WHATSAPP": Array [],
|
|
88683
|
+
}
|
|
88684
|
+
}
|
|
88625
88685
|
setSearchValue={[Function]}
|
|
88626
88686
|
smsTraiDltEnabled={false}
|
|
88627
88687
|
testEntitiesTreeData={
|
|
@@ -88653,6 +88713,7 @@ new message content.",
|
|
|
88653
88713
|
<PreviewSection
|
|
88654
88714
|
unifiedPreviewProps={
|
|
88655
88715
|
Object {
|
|
88716
|
+
"activePreviewTab": "rcs",
|
|
88656
88717
|
"channel": "WHATSAPP",
|
|
88657
88718
|
"content": Object {
|
|
88658
88719
|
"_id": null,
|
|
@@ -88687,8 +88748,11 @@ new message content.",
|
|
|
88687
88748
|
"isUpdating": false,
|
|
88688
88749
|
"lastModified": undefined,
|
|
88689
88750
|
"onDeviceChange": [Function],
|
|
88751
|
+
"onPreviewTabChange": [Function],
|
|
88690
88752
|
"selectedCustomer": null,
|
|
88691
88753
|
"showDeviceToggle": true,
|
|
88754
|
+
"smsFallbackContent": null,
|
|
88755
|
+
"smsFallbackResolvedText": undefined,
|
|
88692
88756
|
"updatedByName": undefined,
|
|
88693
88757
|
}
|
|
88694
88758
|
}
|
|
@@ -101238,6 +101302,7 @@ new message content.",
|
|
|
101238
101302
|
style={Object {}}
|
|
101239
101303
|
>
|
|
101240
101304
|
<UnifiedPreview
|
|
101305
|
+
activePreviewTab="rcs"
|
|
101241
101306
|
channel="WHATSAPP"
|
|
101242
101307
|
content={
|
|
101243
101308
|
Object {
|
|
@@ -102261,9 +102326,11 @@ undefined",
|
|
|
102261
102326
|
key=".0"
|
|
102262
102327
|
lastModified={null}
|
|
102263
102328
|
onDeviceChange={[Function]}
|
|
102329
|
+
onPreviewTabChange={[Function]}
|
|
102264
102330
|
selectedCustomer={null}
|
|
102265
102331
|
showDeviceToggle={false}
|
|
102266
102332
|
showHeader={false}
|
|
102333
|
+
smsFallbackContent={null}
|
|
102267
102334
|
updatedByName={null}
|
|
102268
102335
|
>
|
|
102269
102336
|
<CapRow
|
|
@@ -106456,6 +106523,7 @@ new message content.",
|
|
|
106456
106523
|
}
|
|
106457
106524
|
}
|
|
106458
106525
|
show={false}
|
|
106526
|
+
smsFallbackContent={null}
|
|
106459
106527
|
testCustomers={Immutable.List []}
|
|
106460
106528
|
testGroups={Immutable.List []}
|
|
106461
106529
|
updatePreviewError={null}
|
|
@@ -108827,6 +108895,7 @@ new message content.",
|
|
|
108827
108895
|
}
|
|
108828
108896
|
}
|
|
108829
108897
|
show={false}
|
|
108898
|
+
smsFallbackContent={null}
|
|
108830
108899
|
templateLayoutType={null}
|
|
108831
108900
|
testCustomers={Immutable.List []}
|
|
108832
108901
|
testGroups={Immutable.List []}
|
|
@@ -108923,6 +108992,7 @@ undefined",
|
|
|
108923
108992
|
formatMessage={[Function]}
|
|
108924
108993
|
handleSendTestMessage={[Function]}
|
|
108925
108994
|
handleTestEntitiesChange={[Function]}
|
|
108995
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
108926
108996
|
isFetchingTestCustomers={false}
|
|
108927
108997
|
isFetchingTestGroups={false}
|
|
108928
108998
|
isLoadingSenderDetails={false}
|
|
@@ -108932,7 +109002,13 @@ undefined",
|
|
|
108932
109002
|
renderAddTestCustomerButton={[Function]}
|
|
108933
109003
|
searchValue=""
|
|
108934
109004
|
selectedTestEntities={Array []}
|
|
108935
|
-
|
|
109005
|
+
senderDetailsByChannel={
|
|
109006
|
+
Object {
|
|
109007
|
+
"EMAIL": Array [],
|
|
109008
|
+
"SMS": Array [],
|
|
109009
|
+
"WHATSAPP": Array [],
|
|
109010
|
+
}
|
|
109011
|
+
}
|
|
108936
109012
|
setSearchValue={[Function]}
|
|
108937
109013
|
smsTraiDltEnabled={false}
|
|
108938
109014
|
testEntitiesTreeData={
|
|
@@ -108964,6 +109040,7 @@ undefined",
|
|
|
108964
109040
|
<PreviewSection
|
|
108965
109041
|
unifiedPreviewProps={
|
|
108966
109042
|
Object {
|
|
109043
|
+
"activePreviewTab": "rcs",
|
|
108967
109044
|
"channel": "WHATSAPP",
|
|
108968
109045
|
"content": Object {
|
|
108969
109046
|
"_id": null,
|
|
@@ -109000,8 +109077,11 @@ undefined",
|
|
|
109000
109077
|
"isUpdating": false,
|
|
109001
109078
|
"lastModified": undefined,
|
|
109002
109079
|
"onDeviceChange": [Function],
|
|
109080
|
+
"onPreviewTabChange": [Function],
|
|
109003
109081
|
"selectedCustomer": null,
|
|
109004
109082
|
"showDeviceToggle": true,
|
|
109083
|
+
"smsFallbackContent": null,
|
|
109084
|
+
"smsFallbackResolvedText": undefined,
|
|
109005
109085
|
"updatedByName": undefined,
|
|
109006
109086
|
}
|
|
109007
109087
|
}
|
|
@@ -121229,6 +121309,7 @@ new message content.",
|
|
|
121229
121309
|
style={Object {}}
|
|
121230
121310
|
>
|
|
121231
121311
|
<UnifiedPreview
|
|
121312
|
+
activePreviewTab="rcs"
|
|
121232
121313
|
channel="WHATSAPP"
|
|
121233
121314
|
content={
|
|
121234
121315
|
Object {
|
|
@@ -121924,9 +122005,11 @@ new message content.",
|
|
|
121924
122005
|
key=".0"
|
|
121925
122006
|
lastModified={null}
|
|
121926
122007
|
onDeviceChange={[Function]}
|
|
122008
|
+
onPreviewTabChange={[Function]}
|
|
121927
122009
|
selectedCustomer={null}
|
|
121928
122010
|
showDeviceToggle={false}
|
|
121929
122011
|
showHeader={false}
|
|
122012
|
+
smsFallbackContent={null}
|
|
121930
122013
|
updatedByName={null}
|
|
121931
122014
|
>
|
|
121932
122015
|
<CapRow
|
|
@@ -125751,6 +125834,7 @@ new message content.",
|
|
|
125751
125834
|
}
|
|
125752
125835
|
}
|
|
125753
125836
|
show={false}
|
|
125837
|
+
smsFallbackContent={null}
|
|
125754
125838
|
testCustomers={Immutable.List []}
|
|
125755
125839
|
testGroups={Immutable.List []}
|
|
125756
125840
|
updatePreviewError={null}
|
|
@@ -128118,6 +128202,7 @@ new message content.",
|
|
|
128118
128202
|
}
|
|
128119
128203
|
}
|
|
128120
128204
|
show={false}
|
|
128205
|
+
smsFallbackContent={null}
|
|
128121
128206
|
templateLayoutType={null}
|
|
128122
128207
|
testCustomers={Immutable.List []}
|
|
128123
128208
|
testGroups={Immutable.List []}
|
|
@@ -128211,6 +128296,7 @@ new message content.",
|
|
|
128211
128296
|
formatMessage={[Function]}
|
|
128212
128297
|
handleSendTestMessage={[Function]}
|
|
128213
128298
|
handleTestEntitiesChange={[Function]}
|
|
128299
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
128214
128300
|
isFetchingTestCustomers={false}
|
|
128215
128301
|
isFetchingTestGroups={false}
|
|
128216
128302
|
isLoadingSenderDetails={false}
|
|
@@ -128220,7 +128306,13 @@ new message content.",
|
|
|
128220
128306
|
renderAddTestCustomerButton={[Function]}
|
|
128221
128307
|
searchValue=""
|
|
128222
128308
|
selectedTestEntities={Array []}
|
|
128223
|
-
|
|
128309
|
+
senderDetailsByChannel={
|
|
128310
|
+
Object {
|
|
128311
|
+
"EMAIL": Array [],
|
|
128312
|
+
"SMS": Array [],
|
|
128313
|
+
"WHATSAPP": Array [],
|
|
128314
|
+
}
|
|
128315
|
+
}
|
|
128224
128316
|
setSearchValue={[Function]}
|
|
128225
128317
|
smsTraiDltEnabled={false}
|
|
128226
128318
|
testEntitiesTreeData={
|
|
@@ -128252,6 +128344,7 @@ new message content.",
|
|
|
128252
128344
|
<PreviewSection
|
|
128253
128345
|
unifiedPreviewProps={
|
|
128254
128346
|
Object {
|
|
128347
|
+
"activePreviewTab": "rcs",
|
|
128255
128348
|
"channel": "WHATSAPP",
|
|
128256
128349
|
"content": Object {
|
|
128257
128350
|
"_id": null,
|
|
@@ -128286,8 +128379,11 @@ new message content.",
|
|
|
128286
128379
|
"isUpdating": false,
|
|
128287
128380
|
"lastModified": undefined,
|
|
128288
128381
|
"onDeviceChange": [Function],
|
|
128382
|
+
"onPreviewTabChange": [Function],
|
|
128289
128383
|
"selectedCustomer": null,
|
|
128290
128384
|
"showDeviceToggle": true,
|
|
128385
|
+
"smsFallbackContent": null,
|
|
128386
|
+
"smsFallbackResolvedText": undefined,
|
|
128291
128387
|
"updatedByName": undefined,
|
|
128292
128388
|
}
|
|
128293
128389
|
}
|
|
@@ -143352,6 +143448,7 @@ new message content.",
|
|
|
143352
143448
|
style={Object {}}
|
|
143353
143449
|
>
|
|
143354
143450
|
<UnifiedPreview
|
|
143451
|
+
activePreviewTab="rcs"
|
|
143355
143452
|
channel="WHATSAPP"
|
|
143356
143453
|
content={
|
|
143357
143454
|
Object {
|
|
@@ -144817,9 +144914,11 @@ new message content.",
|
|
|
144817
144914
|
key=".0"
|
|
144818
144915
|
lastModified={null}
|
|
144819
144916
|
onDeviceChange={[Function]}
|
|
144917
|
+
onPreviewTabChange={[Function]}
|
|
144820
144918
|
selectedCustomer={null}
|
|
144821
144919
|
showDeviceToggle={false}
|
|
144822
144920
|
showHeader={false}
|
|
144921
|
+
smsFallbackContent={null}
|
|
144823
144922
|
updatedByName={null}
|
|
144824
144923
|
>
|
|
144825
144924
|
<CapRow
|
|
@@ -149414,6 +149513,7 @@ new message content.",
|
|
|
149414
149513
|
}
|
|
149415
149514
|
}
|
|
149416
149515
|
show={false}
|
|
149516
|
+
smsFallbackContent={null}
|
|
149417
149517
|
testCustomers={Immutable.List []}
|
|
149418
149518
|
testGroups={Immutable.List []}
|
|
149419
149519
|
updatePreviewError={null}
|
|
@@ -151781,6 +151881,7 @@ new message content.",
|
|
|
151781
151881
|
}
|
|
151782
151882
|
}
|
|
151783
151883
|
show={false}
|
|
151884
|
+
smsFallbackContent={null}
|
|
151784
151885
|
templateLayoutType={null}
|
|
151785
151886
|
testCustomers={Immutable.List []}
|
|
151786
151887
|
testGroups={Immutable.List []}
|
|
@@ -151874,6 +151975,7 @@ new message content.",
|
|
|
151874
151975
|
formatMessage={[Function]}
|
|
151875
151976
|
handleSendTestMessage={[Function]}
|
|
151876
151977
|
handleTestEntitiesChange={[Function]}
|
|
151978
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
151877
151979
|
isFetchingTestCustomers={false}
|
|
151878
151980
|
isFetchingTestGroups={false}
|
|
151879
151981
|
isLoadingSenderDetails={false}
|
|
@@ -151883,7 +151985,13 @@ new message content.",
|
|
|
151883
151985
|
renderAddTestCustomerButton={[Function]}
|
|
151884
151986
|
searchValue=""
|
|
151885
151987
|
selectedTestEntities={Array []}
|
|
151886
|
-
|
|
151988
|
+
senderDetailsByChannel={
|
|
151989
|
+
Object {
|
|
151990
|
+
"EMAIL": Array [],
|
|
151991
|
+
"SMS": Array [],
|
|
151992
|
+
"WHATSAPP": Array [],
|
|
151993
|
+
}
|
|
151994
|
+
}
|
|
151887
151995
|
setSearchValue={[Function]}
|
|
151888
151996
|
smsTraiDltEnabled={false}
|
|
151889
151997
|
testEntitiesTreeData={
|
|
@@ -151915,6 +152023,7 @@ new message content.",
|
|
|
151915
152023
|
<PreviewSection
|
|
151916
152024
|
unifiedPreviewProps={
|
|
151917
152025
|
Object {
|
|
152026
|
+
"activePreviewTab": "rcs",
|
|
151918
152027
|
"channel": "WHATSAPP",
|
|
151919
152028
|
"content": Object {
|
|
151920
152029
|
"_id": null,
|
|
@@ -151949,8 +152058,11 @@ new message content.",
|
|
|
151949
152058
|
"isUpdating": false,
|
|
151950
152059
|
"lastModified": undefined,
|
|
151951
152060
|
"onDeviceChange": [Function],
|
|
152061
|
+
"onPreviewTabChange": [Function],
|
|
151952
152062
|
"selectedCustomer": null,
|
|
151953
152063
|
"showDeviceToggle": true,
|
|
152064
|
+
"smsFallbackContent": null,
|
|
152065
|
+
"smsFallbackResolvedText": undefined,
|
|
151954
152066
|
"updatedByName": undefined,
|
|
151955
152067
|
}
|
|
151956
152068
|
}
|
|
@@ -167295,6 +167407,7 @@ new message content.",
|
|
|
167295
167407
|
style={Object {}}
|
|
167296
167408
|
>
|
|
167297
167409
|
<UnifiedPreview
|
|
167410
|
+
activePreviewTab="rcs"
|
|
167298
167411
|
channel="WHATSAPP"
|
|
167299
167412
|
content={
|
|
167300
167413
|
Object {
|
|
@@ -169145,9 +169258,11 @@ new message content.",
|
|
|
169145
169258
|
key=".0"
|
|
169146
169259
|
lastModified={null}
|
|
169147
169260
|
onDeviceChange={[Function]}
|
|
169261
|
+
onPreviewTabChange={[Function]}
|
|
169148
169262
|
selectedCustomer={null}
|
|
169149
169263
|
showDeviceToggle={false}
|
|
169150
169264
|
showHeader={false}
|
|
169265
|
+
smsFallbackContent={null}
|
|
169151
169266
|
updatedByName={null}
|
|
169152
169267
|
>
|
|
169153
169268
|
<CapRow
|
|
@@ -174125,6 +174240,7 @@ new message content.",
|
|
|
174125
174240
|
}
|
|
174126
174241
|
}
|
|
174127
174242
|
show={false}
|
|
174243
|
+
smsFallbackContent={null}
|
|
174128
174244
|
testCustomers={Immutable.List []}
|
|
174129
174245
|
testGroups={Immutable.List []}
|
|
174130
174246
|
updatePreviewError={null}
|
|
@@ -176492,6 +176608,7 @@ new message content.",
|
|
|
176492
176608
|
}
|
|
176493
176609
|
}
|
|
176494
176610
|
show={false}
|
|
176611
|
+
smsFallbackContent={null}
|
|
176495
176612
|
templateLayoutType={null}
|
|
176496
176613
|
testCustomers={Immutable.List []}
|
|
176497
176614
|
testGroups={Immutable.List []}
|
|
@@ -176585,6 +176702,7 @@ new message content.",
|
|
|
176585
176702
|
formatMessage={[Function]}
|
|
176586
176703
|
handleSendTestMessage={[Function]}
|
|
176587
176704
|
handleTestEntitiesChange={[Function]}
|
|
176705
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
176588
176706
|
isFetchingTestCustomers={false}
|
|
176589
176707
|
isFetchingTestGroups={false}
|
|
176590
176708
|
isLoadingSenderDetails={false}
|
|
@@ -176594,7 +176712,13 @@ new message content.",
|
|
|
176594
176712
|
renderAddTestCustomerButton={[Function]}
|
|
176595
176713
|
searchValue=""
|
|
176596
176714
|
selectedTestEntities={Array []}
|
|
176597
|
-
|
|
176715
|
+
senderDetailsByChannel={
|
|
176716
|
+
Object {
|
|
176717
|
+
"EMAIL": Array [],
|
|
176718
|
+
"SMS": Array [],
|
|
176719
|
+
"WHATSAPP": Array [],
|
|
176720
|
+
}
|
|
176721
|
+
}
|
|
176598
176722
|
setSearchValue={[Function]}
|
|
176599
176723
|
smsTraiDltEnabled={false}
|
|
176600
176724
|
testEntitiesTreeData={
|
|
@@ -176626,6 +176750,7 @@ new message content.",
|
|
|
176626
176750
|
<PreviewSection
|
|
176627
176751
|
unifiedPreviewProps={
|
|
176628
176752
|
Object {
|
|
176753
|
+
"activePreviewTab": "rcs",
|
|
176629
176754
|
"channel": "WHATSAPP",
|
|
176630
176755
|
"content": Object {
|
|
176631
176756
|
"_id": null,
|
|
@@ -176660,8 +176785,11 @@ new message content.",
|
|
|
176660
176785
|
"isUpdating": false,
|
|
176661
176786
|
"lastModified": undefined,
|
|
176662
176787
|
"onDeviceChange": [Function],
|
|
176788
|
+
"onPreviewTabChange": [Function],
|
|
176663
176789
|
"selectedCustomer": null,
|
|
176664
176790
|
"showDeviceToggle": true,
|
|
176791
|
+
"smsFallbackContent": null,
|
|
176792
|
+
"smsFallbackResolvedText": undefined,
|
|
176665
176793
|
"updatedByName": undefined,
|
|
176666
176794
|
}
|
|
176667
176795
|
}
|
|
@@ -192881,6 +193009,7 @@ new message content.",
|
|
|
192881
193009
|
style={Object {}}
|
|
192882
193010
|
>
|
|
192883
193011
|
<UnifiedPreview
|
|
193012
|
+
activePreviewTab="rcs"
|
|
192884
193013
|
channel="WHATSAPP"
|
|
192885
193014
|
content={
|
|
192886
193015
|
Object {
|
|
@@ -195501,9 +195630,11 @@ new message content.",
|
|
|
195501
195630
|
key=".0"
|
|
195502
195631
|
lastModified={null}
|
|
195503
195632
|
onDeviceChange={[Function]}
|
|
195633
|
+
onPreviewTabChange={[Function]}
|
|
195504
195634
|
selectedCustomer={null}
|
|
195505
195635
|
showDeviceToggle={false}
|
|
195506
195636
|
showHeader={false}
|
|
195637
|
+
smsFallbackContent={null}
|
|
195507
195638
|
updatedByName={null}
|
|
195508
195639
|
>
|
|
195509
195640
|
<CapRow
|
|
@@ -201253,6 +201384,7 @@ new message content.",
|
|
|
201253
201384
|
}
|
|
201254
201385
|
}
|
|
201255
201386
|
show={false}
|
|
201387
|
+
smsFallbackContent={null}
|
|
201256
201388
|
testCustomers={Immutable.List []}
|
|
201257
201389
|
testGroups={Immutable.List []}
|
|
201258
201390
|
updatePreviewError={null}
|
|
@@ -203620,6 +203752,7 @@ new message content.",
|
|
|
203620
203752
|
}
|
|
203621
203753
|
}
|
|
203622
203754
|
show={false}
|
|
203755
|
+
smsFallbackContent={null}
|
|
203623
203756
|
templateLayoutType={null}
|
|
203624
203757
|
testCustomers={Immutable.List []}
|
|
203625
203758
|
testGroups={Immutable.List []}
|
|
@@ -203713,6 +203846,7 @@ new message content.",
|
|
|
203713
203846
|
formatMessage={[Function]}
|
|
203714
203847
|
handleSendTestMessage={[Function]}
|
|
203715
203848
|
handleTestEntitiesChange={[Function]}
|
|
203849
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
203716
203850
|
isFetchingTestCustomers={false}
|
|
203717
203851
|
isFetchingTestGroups={false}
|
|
203718
203852
|
isLoadingSenderDetails={false}
|
|
@@ -203722,7 +203856,13 @@ new message content.",
|
|
|
203722
203856
|
renderAddTestCustomerButton={[Function]}
|
|
203723
203857
|
searchValue=""
|
|
203724
203858
|
selectedTestEntities={Array []}
|
|
203725
|
-
|
|
203859
|
+
senderDetailsByChannel={
|
|
203860
|
+
Object {
|
|
203861
|
+
"EMAIL": Array [],
|
|
203862
|
+
"SMS": Array [],
|
|
203863
|
+
"WHATSAPP": Array [],
|
|
203864
|
+
}
|
|
203865
|
+
}
|
|
203726
203866
|
setSearchValue={[Function]}
|
|
203727
203867
|
smsTraiDltEnabled={false}
|
|
203728
203868
|
testEntitiesTreeData={
|
|
@@ -203754,6 +203894,7 @@ new message content.",
|
|
|
203754
203894
|
<PreviewSection
|
|
203755
203895
|
unifiedPreviewProps={
|
|
203756
203896
|
Object {
|
|
203897
|
+
"activePreviewTab": "rcs",
|
|
203757
203898
|
"channel": "WHATSAPP",
|
|
203758
203899
|
"content": Object {
|
|
203759
203900
|
"_id": null,
|
|
@@ -203788,8 +203929,11 @@ new message content.",
|
|
|
203788
203929
|
"isUpdating": false,
|
|
203789
203930
|
"lastModified": undefined,
|
|
203790
203931
|
"onDeviceChange": [Function],
|
|
203932
|
+
"onPreviewTabChange": [Function],
|
|
203791
203933
|
"selectedCustomer": null,
|
|
203792
203934
|
"showDeviceToggle": true,
|
|
203935
|
+
"smsFallbackContent": null,
|
|
203936
|
+
"smsFallbackResolvedText": undefined,
|
|
203793
203937
|
"updatedByName": undefined,
|
|
203794
203938
|
}
|
|
203795
203939
|
}
|
|
@@ -220283,6 +220427,7 @@ new message content.",
|
|
|
220283
220427
|
style={Object {}}
|
|
220284
220428
|
>
|
|
220285
220429
|
<UnifiedPreview
|
|
220430
|
+
activePreviewTab="rcs"
|
|
220286
220431
|
channel="WHATSAPP"
|
|
220287
220432
|
content={
|
|
220288
220433
|
Object {
|
|
@@ -223288,9 +223433,11 @@ new message content.",
|
|
|
223288
223433
|
key=".0"
|
|
223289
223434
|
lastModified={null}
|
|
223290
223435
|
onDeviceChange={[Function]}
|
|
223436
|
+
onPreviewTabChange={[Function]}
|
|
223291
223437
|
selectedCustomer={null}
|
|
223292
223438
|
showDeviceToggle={false}
|
|
223293
223439
|
showHeader={false}
|
|
223440
|
+
smsFallbackContent={null}
|
|
223294
223441
|
updatedByName={null}
|
|
223295
223442
|
>
|
|
223296
223443
|
<CapRow
|
|
@@ -229423,6 +229570,7 @@ new message content.",
|
|
|
229423
229570
|
}
|
|
229424
229571
|
}
|
|
229425
229572
|
show={false}
|
|
229573
|
+
smsFallbackContent={null}
|
|
229426
229574
|
testCustomers={Immutable.List []}
|
|
229427
229575
|
testGroups={Immutable.List []}
|
|
229428
229576
|
updatePreviewError={null}
|
|
@@ -231790,6 +231938,7 @@ new message content.",
|
|
|
231790
231938
|
}
|
|
231791
231939
|
}
|
|
231792
231940
|
show={false}
|
|
231941
|
+
smsFallbackContent={null}
|
|
231793
231942
|
templateLayoutType={null}
|
|
231794
231943
|
testCustomers={Immutable.List []}
|
|
231795
231944
|
testGroups={Immutable.List []}
|
|
@@ -231883,6 +232032,7 @@ new message content.",
|
|
|
231883
232032
|
formatMessage={[Function]}
|
|
231884
232033
|
handleSendTestMessage={[Function]}
|
|
231885
232034
|
handleTestEntitiesChange={[Function]}
|
|
232035
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
231886
232036
|
isFetchingTestCustomers={false}
|
|
231887
232037
|
isFetchingTestGroups={false}
|
|
231888
232038
|
isLoadingSenderDetails={false}
|
|
@@ -231892,7 +232042,13 @@ new message content.",
|
|
|
231892
232042
|
renderAddTestCustomerButton={[Function]}
|
|
231893
232043
|
searchValue=""
|
|
231894
232044
|
selectedTestEntities={Array []}
|
|
231895
|
-
|
|
232045
|
+
senderDetailsByChannel={
|
|
232046
|
+
Object {
|
|
232047
|
+
"EMAIL": Array [],
|
|
232048
|
+
"SMS": Array [],
|
|
232049
|
+
"WHATSAPP": Array [],
|
|
232050
|
+
}
|
|
232051
|
+
}
|
|
231896
232052
|
setSearchValue={[Function]}
|
|
231897
232053
|
smsTraiDltEnabled={false}
|
|
231898
232054
|
testEntitiesTreeData={
|
|
@@ -231924,6 +232080,7 @@ new message content.",
|
|
|
231924
232080
|
<PreviewSection
|
|
231925
232081
|
unifiedPreviewProps={
|
|
231926
232082
|
Object {
|
|
232083
|
+
"activePreviewTab": "rcs",
|
|
231927
232084
|
"channel": "WHATSAPP",
|
|
231928
232085
|
"content": Object {
|
|
231929
232086
|
"_id": null,
|
|
@@ -231958,8 +232115,11 @@ new message content.",
|
|
|
231958
232115
|
"isUpdating": false,
|
|
231959
232116
|
"lastModified": undefined,
|
|
231960
232117
|
"onDeviceChange": [Function],
|
|
232118
|
+
"onPreviewTabChange": [Function],
|
|
231961
232119
|
"selectedCustomer": null,
|
|
231962
232120
|
"showDeviceToggle": true,
|
|
232121
|
+
"smsFallbackContent": null,
|
|
232122
|
+
"smsFallbackResolvedText": undefined,
|
|
231963
232123
|
"updatedByName": undefined,
|
|
231964
232124
|
}
|
|
231965
232125
|
}
|
|
@@ -239507,6 +239667,7 @@ new message content.",
|
|
|
239507
239667
|
style={Object {}}
|
|
239508
239668
|
>
|
|
239509
239669
|
<UnifiedPreview
|
|
239670
|
+
activePreviewTab="rcs"
|
|
239510
239671
|
channel="WHATSAPP"
|
|
239511
239672
|
content={
|
|
239512
239673
|
Object {
|
|
@@ -240493,9 +240654,11 @@ undefined",
|
|
|
240493
240654
|
key=".0"
|
|
240494
240655
|
lastModified={null}
|
|
240495
240656
|
onDeviceChange={[Function]}
|
|
240657
|
+
onPreviewTabChange={[Function]}
|
|
240496
240658
|
selectedCustomer={null}
|
|
240497
240659
|
showDeviceToggle={false}
|
|
240498
240660
|
showHeader={false}
|
|
240661
|
+
smsFallbackContent={null}
|
|
240499
240662
|
updatedByName={null}
|
|
240500
240663
|
>
|
|
240501
240664
|
<CapRow
|
|
@@ -244984,6 +245147,7 @@ new message content.",
|
|
|
244984
245147
|
}
|
|
244985
245148
|
}
|
|
244986
245149
|
show={false}
|
|
245150
|
+
smsFallbackContent={null}
|
|
244987
245151
|
testCustomers={Immutable.List []}
|
|
244988
245152
|
testGroups={Immutable.List []}
|
|
244989
245153
|
updatePreviewError={null}
|
|
@@ -247399,6 +247563,7 @@ new message content.",
|
|
|
247399
247563
|
}
|
|
247400
247564
|
}
|
|
247401
247565
|
show={false}
|
|
247566
|
+
smsFallbackContent={null}
|
|
247402
247567
|
templateLayoutType={null}
|
|
247403
247568
|
testCustomers={Immutable.List []}
|
|
247404
247569
|
testGroups={Immutable.List []}
|
|
@@ -247518,6 +247683,7 @@ undefined",
|
|
|
247518
247683
|
formatMessage={[Function]}
|
|
247519
247684
|
handleSendTestMessage={[Function]}
|
|
247520
247685
|
handleTestEntitiesChange={[Function]}
|
|
247686
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
247521
247687
|
isFetchingTestCustomers={false}
|
|
247522
247688
|
isFetchingTestGroups={false}
|
|
247523
247689
|
isLoadingSenderDetails={false}
|
|
@@ -247527,7 +247693,13 @@ undefined",
|
|
|
247527
247693
|
renderAddTestCustomerButton={[Function]}
|
|
247528
247694
|
searchValue=""
|
|
247529
247695
|
selectedTestEntities={Array []}
|
|
247530
|
-
|
|
247696
|
+
senderDetailsByChannel={
|
|
247697
|
+
Object {
|
|
247698
|
+
"EMAIL": Array [],
|
|
247699
|
+
"SMS": Array [],
|
|
247700
|
+
"WHATSAPP": Array [],
|
|
247701
|
+
}
|
|
247702
|
+
}
|
|
247531
247703
|
setSearchValue={[Function]}
|
|
247532
247704
|
smsTraiDltEnabled={false}
|
|
247533
247705
|
testEntitiesTreeData={
|
|
@@ -247559,6 +247731,7 @@ undefined",
|
|
|
247559
247731
|
<PreviewSection
|
|
247560
247732
|
unifiedPreviewProps={
|
|
247561
247733
|
Object {
|
|
247734
|
+
"activePreviewTab": "rcs",
|
|
247562
247735
|
"channel": "WHATSAPP",
|
|
247563
247736
|
"content": Object {
|
|
247564
247737
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -247617,8 +247790,11 @@ undefined",
|
|
|
247617
247790
|
"isUpdating": false,
|
|
247618
247791
|
"lastModified": undefined,
|
|
247619
247792
|
"onDeviceChange": [Function],
|
|
247793
|
+
"onPreviewTabChange": [Function],
|
|
247620
247794
|
"selectedCustomer": null,
|
|
247621
247795
|
"showDeviceToggle": true,
|
|
247796
|
+
"smsFallbackContent": null,
|
|
247797
|
+
"smsFallbackResolvedText": undefined,
|
|
247622
247798
|
"updatedByName": undefined,
|
|
247623
247799
|
}
|
|
247624
247800
|
}
|
|
@@ -252821,6 +252997,7 @@ T&C'
|
|
|
252821
252997
|
style={Object {}}
|
|
252822
252998
|
>
|
|
252823
252999
|
<UnifiedPreview
|
|
253000
|
+
activePreviewTab="rcs"
|
|
252824
253001
|
channel="WHATSAPP"
|
|
252825
253002
|
content={
|
|
252826
253003
|
Object {
|
|
@@ -254693,9 +254870,11 @@ T&C'",
|
|
|
254693
254870
|
key=".0"
|
|
254694
254871
|
lastModified={null}
|
|
254695
254872
|
onDeviceChange={[Function]}
|
|
254873
|
+
onPreviewTabChange={[Function]}
|
|
254696
254874
|
selectedCustomer={null}
|
|
254697
254875
|
showDeviceToggle={false}
|
|
254698
254876
|
showHeader={false}
|
|
254877
|
+
smsFallbackContent={null}
|
|
254699
254878
|
updatedByName={null}
|
|
254700
254879
|
>
|
|
254701
254880
|
<CapRow
|
|
@@ -259580,6 +259759,7 @@ new message content.",
|
|
|
259580
259759
|
}
|
|
259581
259760
|
}
|
|
259582
259761
|
show={false}
|
|
259762
|
+
smsFallbackContent={null}
|
|
259583
259763
|
testCustomers={Immutable.List []}
|
|
259584
259764
|
testGroups={Immutable.List []}
|
|
259585
259765
|
updatePreviewError={null}
|
|
@@ -261951,6 +262131,7 @@ new message content.",
|
|
|
261951
262131
|
}
|
|
261952
262132
|
}
|
|
261953
262133
|
show={false}
|
|
262134
|
+
smsFallbackContent={null}
|
|
261954
262135
|
templateLayoutType={null}
|
|
261955
262136
|
testCustomers={Immutable.List []}
|
|
261956
262137
|
testGroups={Immutable.List []}
|
|
@@ -262047,6 +262228,7 @@ T&C'",
|
|
|
262047
262228
|
formatMessage={[Function]}
|
|
262048
262229
|
handleSendTestMessage={[Function]}
|
|
262049
262230
|
handleTestEntitiesChange={[Function]}
|
|
262231
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
262050
262232
|
isFetchingTestCustomers={false}
|
|
262051
262233
|
isFetchingTestGroups={false}
|
|
262052
262234
|
isLoadingSenderDetails={false}
|
|
@@ -262056,7 +262238,13 @@ T&C'",
|
|
|
262056
262238
|
renderAddTestCustomerButton={[Function]}
|
|
262057
262239
|
searchValue=""
|
|
262058
262240
|
selectedTestEntities={Array []}
|
|
262059
|
-
|
|
262241
|
+
senderDetailsByChannel={
|
|
262242
|
+
Object {
|
|
262243
|
+
"EMAIL": Array [],
|
|
262244
|
+
"SMS": Array [],
|
|
262245
|
+
"WHATSAPP": Array [],
|
|
262246
|
+
}
|
|
262247
|
+
}
|
|
262060
262248
|
setSearchValue={[Function]}
|
|
262061
262249
|
smsTraiDltEnabled={false}
|
|
262062
262250
|
testEntitiesTreeData={
|
|
@@ -262088,6 +262276,7 @@ T&C'",
|
|
|
262088
262276
|
<PreviewSection
|
|
262089
262277
|
unifiedPreviewProps={
|
|
262090
262278
|
Object {
|
|
262279
|
+
"activePreviewTab": "rcs",
|
|
262091
262280
|
"channel": "WHATSAPP",
|
|
262092
262281
|
"content": Object {
|
|
262093
262282
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -262124,8 +262313,11 @@ T&C'",
|
|
|
262124
262313
|
"isUpdating": false,
|
|
262125
262314
|
"lastModified": undefined,
|
|
262126
262315
|
"onDeviceChange": [Function],
|
|
262316
|
+
"onPreviewTabChange": [Function],
|
|
262127
262317
|
"selectedCustomer": null,
|
|
262128
262318
|
"showDeviceToggle": true,
|
|
262319
|
+
"smsFallbackContent": null,
|
|
262320
|
+
"smsFallbackResolvedText": undefined,
|
|
262129
262321
|
"updatedByName": undefined,
|
|
262130
262322
|
}
|
|
262131
262323
|
}
|
|
@@ -267837,6 +268029,7 @@ new message content.",
|
|
|
267837
268029
|
style={Object {}}
|
|
267838
268030
|
>
|
|
267839
268031
|
<UnifiedPreview
|
|
268032
|
+
activePreviewTab="rcs"
|
|
267840
268033
|
channel="WHATSAPP"
|
|
267841
268034
|
content={
|
|
267842
268035
|
Object {
|
|
@@ -270563,9 +270756,11 @@ new message content.",
|
|
|
270563
270756
|
key=".0"
|
|
270564
270757
|
lastModified={null}
|
|
270565
270758
|
onDeviceChange={[Function]}
|
|
270759
|
+
onPreviewTabChange={[Function]}
|
|
270566
270760
|
selectedCustomer={null}
|
|
270567
270761
|
showDeviceToggle={false}
|
|
270568
270762
|
showHeader={false}
|
|
270763
|
+
smsFallbackContent={null}
|
|
270569
270764
|
updatedByName={null}
|
|
270570
270765
|
>
|
|
270571
270766
|
<CapRow
|
|
@@ -276274,6 +276469,7 @@ new message content.",
|
|
|
276274
276469
|
}
|
|
276275
276470
|
}
|
|
276276
276471
|
show={false}
|
|
276472
|
+
smsFallbackContent={null}
|
|
276277
276473
|
testCustomers={Immutable.List []}
|
|
276278
276474
|
testGroups={Immutable.List []}
|
|
276279
276475
|
updatePreviewError={null}
|
|
@@ -278641,6 +278837,7 @@ new message content.",
|
|
|
278641
278837
|
}
|
|
278642
278838
|
}
|
|
278643
278839
|
show={false}
|
|
278840
|
+
smsFallbackContent={null}
|
|
278644
278841
|
templateLayoutType={null}
|
|
278645
278842
|
testCustomers={Immutable.List []}
|
|
278646
278843
|
testGroups={Immutable.List []}
|
|
@@ -278734,6 +278931,7 @@ new message content.",
|
|
|
278734
278931
|
formatMessage={[Function]}
|
|
278735
278932
|
handleSendTestMessage={[Function]}
|
|
278736
278933
|
handleTestEntitiesChange={[Function]}
|
|
278934
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
278737
278935
|
isFetchingTestCustomers={false}
|
|
278738
278936
|
isFetchingTestGroups={false}
|
|
278739
278937
|
isLoadingSenderDetails={false}
|
|
@@ -278743,7 +278941,13 @@ new message content.",
|
|
|
278743
278941
|
renderAddTestCustomerButton={[Function]}
|
|
278744
278942
|
searchValue=""
|
|
278745
278943
|
selectedTestEntities={Array []}
|
|
278746
|
-
|
|
278944
|
+
senderDetailsByChannel={
|
|
278945
|
+
Object {
|
|
278946
|
+
"EMAIL": Array [],
|
|
278947
|
+
"SMS": Array [],
|
|
278948
|
+
"WHATSAPP": Array [],
|
|
278949
|
+
}
|
|
278950
|
+
}
|
|
278747
278951
|
setSearchValue={[Function]}
|
|
278748
278952
|
smsTraiDltEnabled={false}
|
|
278749
278953
|
testEntitiesTreeData={
|
|
@@ -278775,6 +278979,7 @@ new message content.",
|
|
|
278775
278979
|
<PreviewSection
|
|
278776
278980
|
unifiedPreviewProps={
|
|
278777
278981
|
Object {
|
|
278982
|
+
"activePreviewTab": "rcs",
|
|
278778
278983
|
"channel": "WHATSAPP",
|
|
278779
278984
|
"content": Object {
|
|
278780
278985
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -278809,8 +279014,11 @@ new message content.",
|
|
|
278809
279014
|
"isUpdating": false,
|
|
278810
279015
|
"lastModified": undefined,
|
|
278811
279016
|
"onDeviceChange": [Function],
|
|
279017
|
+
"onPreviewTabChange": [Function],
|
|
278812
279018
|
"selectedCustomer": null,
|
|
278813
279019
|
"showDeviceToggle": true,
|
|
279020
|
+
"smsFallbackContent": null,
|
|
279021
|
+
"smsFallbackResolvedText": undefined,
|
|
278814
279022
|
"updatedByName": undefined,
|
|
278815
279023
|
}
|
|
278816
279024
|
}
|
|
@@ -289391,6 +289599,7 @@ new message content.",
|
|
|
289391
289599
|
style={Object {}}
|
|
289392
289600
|
>
|
|
289393
289601
|
<UnifiedPreview
|
|
289602
|
+
activePreviewTab="rcs"
|
|
289394
289603
|
channel="WHATSAPP"
|
|
289395
289604
|
content={
|
|
289396
289605
|
Object {
|
|
@@ -293353,9 +293562,11 @@ undefined",
|
|
|
293353
293562
|
key=".0"
|
|
293354
293563
|
lastModified={null}
|
|
293355
293564
|
onDeviceChange={[Function]}
|
|
293565
|
+
onPreviewTabChange={[Function]}
|
|
293356
293566
|
selectedCustomer={null}
|
|
293357
293567
|
showDeviceToggle={false}
|
|
293358
293568
|
showHeader={false}
|
|
293569
|
+
smsFallbackContent={null}
|
|
293359
293570
|
updatedByName={null}
|
|
293360
293571
|
>
|
|
293361
293572
|
<CapRow
|
|
@@ -300820,6 +301031,7 @@ new message content.",
|
|
|
300820
301031
|
}
|
|
300821
301032
|
}
|
|
300822
301033
|
show={false}
|
|
301034
|
+
smsFallbackContent={null}
|
|
300823
301035
|
testCustomers={Immutable.List []}
|
|
300824
301036
|
testGroups={Immutable.List []}
|
|
300825
301037
|
updatePreviewError={null}
|
|
@@ -303235,6 +303447,7 @@ new message content.",
|
|
|
303235
303447
|
}
|
|
303236
303448
|
}
|
|
303237
303449
|
show={false}
|
|
303450
|
+
smsFallbackContent={null}
|
|
303238
303451
|
templateLayoutType={null}
|
|
303239
303452
|
testCustomers={Immutable.List []}
|
|
303240
303453
|
testGroups={Immutable.List []}
|
|
@@ -303354,6 +303567,7 @@ undefined",
|
|
|
303354
303567
|
formatMessage={[Function]}
|
|
303355
303568
|
handleSendTestMessage={[Function]}
|
|
303356
303569
|
handleTestEntitiesChange={[Function]}
|
|
303570
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
303357
303571
|
isFetchingTestCustomers={false}
|
|
303358
303572
|
isFetchingTestGroups={false}
|
|
303359
303573
|
isLoadingSenderDetails={false}
|
|
@@ -303363,7 +303577,13 @@ undefined",
|
|
|
303363
303577
|
renderAddTestCustomerButton={[Function]}
|
|
303364
303578
|
searchValue=""
|
|
303365
303579
|
selectedTestEntities={Array []}
|
|
303366
|
-
|
|
303580
|
+
senderDetailsByChannel={
|
|
303581
|
+
Object {
|
|
303582
|
+
"EMAIL": Array [],
|
|
303583
|
+
"SMS": Array [],
|
|
303584
|
+
"WHATSAPP": Array [],
|
|
303585
|
+
}
|
|
303586
|
+
}
|
|
303367
303587
|
setSearchValue={[Function]}
|
|
303368
303588
|
smsTraiDltEnabled={false}
|
|
303369
303589
|
testEntitiesTreeData={
|
|
@@ -303395,6 +303615,7 @@ undefined",
|
|
|
303395
303615
|
<PreviewSection
|
|
303396
303616
|
unifiedPreviewProps={
|
|
303397
303617
|
Object {
|
|
303618
|
+
"activePreviewTab": "rcs",
|
|
303398
303619
|
"channel": "WHATSAPP",
|
|
303399
303620
|
"content": Object {
|
|
303400
303621
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -303453,8 +303674,11 @@ undefined",
|
|
|
303453
303674
|
"isUpdating": false,
|
|
303454
303675
|
"lastModified": undefined,
|
|
303455
303676
|
"onDeviceChange": [Function],
|
|
303677
|
+
"onPreviewTabChange": [Function],
|
|
303456
303678
|
"selectedCustomer": null,
|
|
303457
303679
|
"showDeviceToggle": true,
|
|
303680
|
+
"smsFallbackContent": null,
|
|
303681
|
+
"smsFallbackResolvedText": undefined,
|
|
303458
303682
|
"updatedByName": undefined,
|
|
303459
303683
|
}
|
|
303460
303684
|
}
|
|
@@ -315016,6 +315240,7 @@ new message content.",
|
|
|
315016
315240
|
style={Object {}}
|
|
315017
315241
|
>
|
|
315018
315242
|
<UnifiedPreview
|
|
315243
|
+
activePreviewTab="rcs"
|
|
315019
315244
|
channel="WHATSAPP"
|
|
315020
315245
|
content={
|
|
315021
315246
|
Object {
|
|
@@ -320142,9 +320367,11 @@ undefined",
|
|
|
320142
320367
|
key=".0"
|
|
320143
320368
|
lastModified={null}
|
|
320144
320369
|
onDeviceChange={[Function]}
|
|
320370
|
+
onPreviewTabChange={[Function]}
|
|
320145
320371
|
selectedCustomer={null}
|
|
320146
320372
|
showDeviceToggle={false}
|
|
320147
320373
|
showHeader={false}
|
|
320374
|
+
smsFallbackContent={null}
|
|
320148
320375
|
updatedByName={null}
|
|
320149
320376
|
>
|
|
320150
320377
|
<CapRow
|
|
@@ -328815,6 +329042,7 @@ new message content.",
|
|
|
328815
329042
|
}
|
|
328816
329043
|
}
|
|
328817
329044
|
show={false}
|
|
329045
|
+
smsFallbackContent={null}
|
|
328818
329046
|
testCustomers={Immutable.List []}
|
|
328819
329047
|
testGroups={Immutable.List []}
|
|
328820
329048
|
updatePreviewError={null}
|
|
@@ -331226,6 +331454,7 @@ new message content.",
|
|
|
331226
331454
|
}
|
|
331227
331455
|
}
|
|
331228
331456
|
show={false}
|
|
331457
|
+
smsFallbackContent={null}
|
|
331229
331458
|
templateLayoutType={null}
|
|
331230
331459
|
testCustomers={Immutable.List []}
|
|
331231
331460
|
testGroups={Immutable.List []}
|
|
@@ -331342,6 +331571,7 @@ undefined",
|
|
|
331342
331571
|
formatMessage={[Function]}
|
|
331343
331572
|
handleSendTestMessage={[Function]}
|
|
331344
331573
|
handleTestEntitiesChange={[Function]}
|
|
331574
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
331345
331575
|
isFetchingTestCustomers={false}
|
|
331346
331576
|
isFetchingTestGroups={false}
|
|
331347
331577
|
isLoadingSenderDetails={false}
|
|
@@ -331351,7 +331581,13 @@ undefined",
|
|
|
331351
331581
|
renderAddTestCustomerButton={[Function]}
|
|
331352
331582
|
searchValue=""
|
|
331353
331583
|
selectedTestEntities={Array []}
|
|
331354
|
-
|
|
331584
|
+
senderDetailsByChannel={
|
|
331585
|
+
Object {
|
|
331586
|
+
"EMAIL": Array [],
|
|
331587
|
+
"SMS": Array [],
|
|
331588
|
+
"WHATSAPP": Array [],
|
|
331589
|
+
}
|
|
331590
|
+
}
|
|
331355
331591
|
setSearchValue={[Function]}
|
|
331356
331592
|
smsTraiDltEnabled={false}
|
|
331357
331593
|
testEntitiesTreeData={
|
|
@@ -331383,6 +331619,7 @@ undefined",
|
|
|
331383
331619
|
<PreviewSection
|
|
331384
331620
|
unifiedPreviewProps={
|
|
331385
331621
|
Object {
|
|
331622
|
+
"activePreviewTab": "rcs",
|
|
331386
331623
|
"channel": "WHATSAPP",
|
|
331387
331624
|
"content": Object {
|
|
331388
331625
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -331439,8 +331676,11 @@ undefined",
|
|
|
331439
331676
|
"isUpdating": false,
|
|
331440
331677
|
"lastModified": undefined,
|
|
331441
331678
|
"onDeviceChange": [Function],
|
|
331679
|
+
"onPreviewTabChange": [Function],
|
|
331442
331680
|
"selectedCustomer": null,
|
|
331443
331681
|
"showDeviceToggle": true,
|
|
331682
|
+
"smsFallbackContent": null,
|
|
331683
|
+
"smsFallbackResolvedText": undefined,
|
|
331444
331684
|
"updatedByName": undefined,
|
|
331445
331685
|
}
|
|
331446
331686
|
}
|
|
@@ -338801,6 +339041,7 @@ new message content.",
|
|
|
338801
339041
|
style={Object {}}
|
|
338802
339042
|
>
|
|
338803
339043
|
<UnifiedPreview
|
|
339044
|
+
activePreviewTab="rcs"
|
|
338804
339045
|
channel="WHATSAPP"
|
|
338805
339046
|
content={
|
|
338806
339047
|
Object {
|
|
@@ -339950,9 +340191,11 @@ new message content.",
|
|
|
339950
340191
|
key=".0"
|
|
339951
340192
|
lastModified={null}
|
|
339952
340193
|
onDeviceChange={[Function]}
|
|
340194
|
+
onPreviewTabChange={[Function]}
|
|
339953
340195
|
selectedCustomer={null}
|
|
339954
340196
|
showDeviceToggle={false}
|
|
339955
340197
|
showHeader={false}
|
|
340198
|
+
smsFallbackContent={null}
|
|
339956
340199
|
updatedByName={null}
|
|
339957
340200
|
>
|
|
339958
340201
|
<CapRow
|
|
@@ -344450,6 +344693,7 @@ new message content.",
|
|
|
344450
344693
|
}
|
|
344451
344694
|
}
|
|
344452
344695
|
show={false}
|
|
344696
|
+
smsFallbackContent={null}
|
|
344453
344697
|
testCustomers={Immutable.List []}
|
|
344454
344698
|
testGroups={Immutable.List []}
|
|
344455
344699
|
updatePreviewError={null}
|
|
@@ -346839,6 +347083,7 @@ new message content.",
|
|
|
346839
347083
|
}
|
|
346840
347084
|
}
|
|
346841
347085
|
show={false}
|
|
347086
|
+
smsFallbackContent={null}
|
|
346842
347087
|
templateLayoutType={null}
|
|
346843
347088
|
testCustomers={Immutable.List []}
|
|
346844
347089
|
testGroups={Immutable.List []}
|
|
@@ -346943,6 +347188,7 @@ new message content.",
|
|
|
346943
347188
|
formatMessage={[Function]}
|
|
346944
347189
|
handleSendTestMessage={[Function]}
|
|
346945
347190
|
handleTestEntitiesChange={[Function]}
|
|
347191
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
346946
347192
|
isFetchingTestCustomers={false}
|
|
346947
347193
|
isFetchingTestGroups={false}
|
|
346948
347194
|
isLoadingSenderDetails={false}
|
|
@@ -346952,7 +347198,13 @@ new message content.",
|
|
|
346952
347198
|
renderAddTestCustomerButton={[Function]}
|
|
346953
347199
|
searchValue=""
|
|
346954
347200
|
selectedTestEntities={Array []}
|
|
346955
|
-
|
|
347201
|
+
senderDetailsByChannel={
|
|
347202
|
+
Object {
|
|
347203
|
+
"EMAIL": Array [],
|
|
347204
|
+
"SMS": Array [],
|
|
347205
|
+
"WHATSAPP": Array [],
|
|
347206
|
+
}
|
|
347207
|
+
}
|
|
346956
347208
|
setSearchValue={[Function]}
|
|
346957
347209
|
smsTraiDltEnabled={false}
|
|
346958
347210
|
testEntitiesTreeData={
|
|
@@ -346984,6 +347236,7 @@ new message content.",
|
|
|
346984
347236
|
<PreviewSection
|
|
346985
347237
|
unifiedPreviewProps={
|
|
346986
347238
|
Object {
|
|
347239
|
+
"activePreviewTab": "rcs",
|
|
346987
347240
|
"channel": "WHATSAPP",
|
|
346988
347241
|
"content": Object {
|
|
346989
347242
|
"_id": "62034b4683c75608cf2404ec",
|
|
@@ -347029,8 +347282,11 @@ new message content.",
|
|
|
347029
347282
|
"isUpdating": false,
|
|
347030
347283
|
"lastModified": undefined,
|
|
347031
347284
|
"onDeviceChange": [Function],
|
|
347285
|
+
"onPreviewTabChange": [Function],
|
|
347032
347286
|
"selectedCustomer": null,
|
|
347033
347287
|
"showDeviceToggle": true,
|
|
347288
|
+
"smsFallbackContent": null,
|
|
347289
|
+
"smsFallbackResolvedText": undefined,
|
|
347034
347290
|
"updatedByName": undefined,
|
|
347035
347291
|
}
|
|
347036
347292
|
}
|
|
@@ -359258,6 +359514,7 @@ new message content.",
|
|
|
359258
359514
|
style={Object {}}
|
|
359259
359515
|
>
|
|
359260
359516
|
<UnifiedPreview
|
|
359517
|
+
activePreviewTab="rcs"
|
|
359261
359518
|
channel="WHATSAPP"
|
|
359262
359519
|
content={
|
|
359263
359520
|
Object {
|
|
@@ -359953,9 +360210,11 @@ new message content.",
|
|
|
359953
360210
|
key=".0"
|
|
359954
360211
|
lastModified={null}
|
|
359955
360212
|
onDeviceChange={[Function]}
|
|
360213
|
+
onPreviewTabChange={[Function]}
|
|
359956
360214
|
selectedCustomer={null}
|
|
359957
360215
|
showDeviceToggle={false}
|
|
359958
360216
|
showHeader={false}
|
|
360217
|
+
smsFallbackContent={null}
|
|
359959
360218
|
updatedByName={null}
|
|
359960
360219
|
>
|
|
359961
360220
|
<CapRow
|
|
@@ -363780,6 +364039,7 @@ new message content.",
|
|
|
363780
364039
|
}
|
|
363781
364040
|
}
|
|
363782
364041
|
show={false}
|
|
364042
|
+
smsFallbackContent={null}
|
|
363783
364043
|
testCustomers={Immutable.List []}
|
|
363784
364044
|
testGroups={Immutable.List []}
|
|
363785
364045
|
updatePreviewError={null}
|
|
@@ -366147,6 +366407,7 @@ new message content.",
|
|
|
366147
366407
|
}
|
|
366148
366408
|
}
|
|
366149
366409
|
show={false}
|
|
366410
|
+
smsFallbackContent={null}
|
|
366150
366411
|
templateLayoutType={null}
|
|
366151
366412
|
testCustomers={Immutable.List []}
|
|
366152
366413
|
testGroups={Immutable.List []}
|
|
@@ -366240,6 +366501,7 @@ new message content.",
|
|
|
366240
366501
|
formatMessage={[Function]}
|
|
366241
366502
|
handleSendTestMessage={[Function]}
|
|
366242
366503
|
handleTestEntitiesChange={[Function]}
|
|
366504
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
366243
366505
|
isFetchingTestCustomers={false}
|
|
366244
366506
|
isFetchingTestGroups={false}
|
|
366245
366507
|
isLoadingSenderDetails={false}
|
|
@@ -366249,7 +366511,13 @@ new message content.",
|
|
|
366249
366511
|
renderAddTestCustomerButton={[Function]}
|
|
366250
366512
|
searchValue=""
|
|
366251
366513
|
selectedTestEntities={Array []}
|
|
366252
|
-
|
|
366514
|
+
senderDetailsByChannel={
|
|
366515
|
+
Object {
|
|
366516
|
+
"EMAIL": Array [],
|
|
366517
|
+
"SMS": Array [],
|
|
366518
|
+
"WHATSAPP": Array [],
|
|
366519
|
+
}
|
|
366520
|
+
}
|
|
366253
366521
|
setSearchValue={[Function]}
|
|
366254
366522
|
smsTraiDltEnabled={false}
|
|
366255
366523
|
testEntitiesTreeData={
|
|
@@ -366281,6 +366549,7 @@ new message content.",
|
|
|
366281
366549
|
<PreviewSection
|
|
366282
366550
|
unifiedPreviewProps={
|
|
366283
366551
|
Object {
|
|
366552
|
+
"activePreviewTab": "rcs",
|
|
366284
366553
|
"channel": "WHATSAPP",
|
|
366285
366554
|
"content": Object {
|
|
366286
366555
|
"_id": null,
|
|
@@ -366315,8 +366584,11 @@ new message content.",
|
|
|
366315
366584
|
"isUpdating": false,
|
|
366316
366585
|
"lastModified": undefined,
|
|
366317
366586
|
"onDeviceChange": [Function],
|
|
366587
|
+
"onPreviewTabChange": [Function],
|
|
366318
366588
|
"selectedCustomer": null,
|
|
366319
366589
|
"showDeviceToggle": true,
|
|
366590
|
+
"smsFallbackContent": null,
|
|
366591
|
+
"smsFallbackResolvedText": undefined,
|
|
366320
366592
|
"updatedByName": undefined,
|
|
366321
366593
|
}
|
|
366322
366594
|
}
|
|
@@ -381381,6 +381653,7 @@ new message content.",
|
|
|
381381
381653
|
style={Object {}}
|
|
381382
381654
|
>
|
|
381383
381655
|
<UnifiedPreview
|
|
381656
|
+
activePreviewTab="rcs"
|
|
381384
381657
|
channel="WHATSAPP"
|
|
381385
381658
|
content={
|
|
381386
381659
|
Object {
|
|
@@ -382846,9 +383119,11 @@ new message content.",
|
|
|
382846
383119
|
key=".0"
|
|
382847
383120
|
lastModified={null}
|
|
382848
383121
|
onDeviceChange={[Function]}
|
|
383122
|
+
onPreviewTabChange={[Function]}
|
|
382849
383123
|
selectedCustomer={null}
|
|
382850
383124
|
showDeviceToggle={false}
|
|
382851
383125
|
showHeader={false}
|
|
383126
|
+
smsFallbackContent={null}
|
|
382852
383127
|
updatedByName={null}
|
|
382853
383128
|
>
|
|
382854
383129
|
<CapRow
|
|
@@ -387443,6 +387718,7 @@ new message content.",
|
|
|
387443
387718
|
}
|
|
387444
387719
|
}
|
|
387445
387720
|
show={false}
|
|
387721
|
+
smsFallbackContent={null}
|
|
387446
387722
|
testCustomers={Immutable.List []}
|
|
387447
387723
|
testGroups={Immutable.List []}
|
|
387448
387724
|
updatePreviewError={null}
|
|
@@ -389810,6 +390086,7 @@ new message content.",
|
|
|
389810
390086
|
}
|
|
389811
390087
|
}
|
|
389812
390088
|
show={false}
|
|
390089
|
+
smsFallbackContent={null}
|
|
389813
390090
|
templateLayoutType={null}
|
|
389814
390091
|
testCustomers={Immutable.List []}
|
|
389815
390092
|
testGroups={Immutable.List []}
|
|
@@ -389903,6 +390180,7 @@ new message content.",
|
|
|
389903
390180
|
formatMessage={[Function]}
|
|
389904
390181
|
handleSendTestMessage={[Function]}
|
|
389905
390182
|
handleTestEntitiesChange={[Function]}
|
|
390183
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
389906
390184
|
isFetchingTestCustomers={false}
|
|
389907
390185
|
isFetchingTestGroups={false}
|
|
389908
390186
|
isLoadingSenderDetails={false}
|
|
@@ -389912,7 +390190,13 @@ new message content.",
|
|
|
389912
390190
|
renderAddTestCustomerButton={[Function]}
|
|
389913
390191
|
searchValue=""
|
|
389914
390192
|
selectedTestEntities={Array []}
|
|
389915
|
-
|
|
390193
|
+
senderDetailsByChannel={
|
|
390194
|
+
Object {
|
|
390195
|
+
"EMAIL": Array [],
|
|
390196
|
+
"SMS": Array [],
|
|
390197
|
+
"WHATSAPP": Array [],
|
|
390198
|
+
}
|
|
390199
|
+
}
|
|
389916
390200
|
setSearchValue={[Function]}
|
|
389917
390201
|
smsTraiDltEnabled={false}
|
|
389918
390202
|
testEntitiesTreeData={
|
|
@@ -389944,6 +390228,7 @@ new message content.",
|
|
|
389944
390228
|
<PreviewSection
|
|
389945
390229
|
unifiedPreviewProps={
|
|
389946
390230
|
Object {
|
|
390231
|
+
"activePreviewTab": "rcs",
|
|
389947
390232
|
"channel": "WHATSAPP",
|
|
389948
390233
|
"content": Object {
|
|
389949
390234
|
"_id": null,
|
|
@@ -389978,8 +390263,11 @@ new message content.",
|
|
|
389978
390263
|
"isUpdating": false,
|
|
389979
390264
|
"lastModified": undefined,
|
|
389980
390265
|
"onDeviceChange": [Function],
|
|
390266
|
+
"onPreviewTabChange": [Function],
|
|
389981
390267
|
"selectedCustomer": null,
|
|
389982
390268
|
"showDeviceToggle": true,
|
|
390269
|
+
"smsFallbackContent": null,
|
|
390270
|
+
"smsFallbackResolvedText": undefined,
|
|
389983
390271
|
"updatedByName": undefined,
|
|
389984
390272
|
}
|
|
389985
390273
|
}
|
|
@@ -402207,6 +402495,7 @@ new message content.",
|
|
|
402207
402495
|
style={Object {}}
|
|
402208
402496
|
>
|
|
402209
402497
|
<UnifiedPreview
|
|
402498
|
+
activePreviewTab="rcs"
|
|
402210
402499
|
channel="WHATSAPP"
|
|
402211
402500
|
content={
|
|
402212
402501
|
Object {
|
|
@@ -402902,9 +403191,11 @@ new message content.",
|
|
|
402902
403191
|
key=".0"
|
|
402903
403192
|
lastModified={null}
|
|
402904
403193
|
onDeviceChange={[Function]}
|
|
403194
|
+
onPreviewTabChange={[Function]}
|
|
402905
403195
|
selectedCustomer={null}
|
|
402906
403196
|
showDeviceToggle={false}
|
|
402907
403197
|
showHeader={false}
|
|
403198
|
+
smsFallbackContent={null}
|
|
402908
403199
|
updatedByName={null}
|
|
402909
403200
|
>
|
|
402910
403201
|
<CapRow
|
|
@@ -406729,6 +407020,7 @@ new message content.",
|
|
|
406729
407020
|
}
|
|
406730
407021
|
}
|
|
406731
407022
|
show={false}
|
|
407023
|
+
smsFallbackContent={null}
|
|
406732
407024
|
testCustomers={Immutable.List []}
|
|
406733
407025
|
testGroups={Immutable.List []}
|
|
406734
407026
|
updatePreviewError={null}
|
|
@@ -409096,6 +409388,7 @@ new message content.",
|
|
|
409096
409388
|
}
|
|
409097
409389
|
}
|
|
409098
409390
|
show={false}
|
|
409391
|
+
smsFallbackContent={null}
|
|
409099
409392
|
templateLayoutType={null}
|
|
409100
409393
|
testCustomers={Immutable.List []}
|
|
409101
409394
|
testGroups={Immutable.List []}
|
|
@@ -409189,6 +409482,7 @@ new message content.",
|
|
|
409189
409482
|
formatMessage={[Function]}
|
|
409190
409483
|
handleSendTestMessage={[Function]}
|
|
409191
409484
|
handleTestEntitiesChange={[Function]}
|
|
409485
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
409192
409486
|
isFetchingTestCustomers={false}
|
|
409193
409487
|
isFetchingTestGroups={false}
|
|
409194
409488
|
isLoadingSenderDetails={false}
|
|
@@ -409198,7 +409492,13 @@ new message content.",
|
|
|
409198
409492
|
renderAddTestCustomerButton={[Function]}
|
|
409199
409493
|
searchValue=""
|
|
409200
409494
|
selectedTestEntities={Array []}
|
|
409201
|
-
|
|
409495
|
+
senderDetailsByChannel={
|
|
409496
|
+
Object {
|
|
409497
|
+
"EMAIL": Array [],
|
|
409498
|
+
"SMS": Array [],
|
|
409499
|
+
"WHATSAPP": Array [],
|
|
409500
|
+
}
|
|
409501
|
+
}
|
|
409202
409502
|
setSearchValue={[Function]}
|
|
409203
409503
|
smsTraiDltEnabled={false}
|
|
409204
409504
|
testEntitiesTreeData={
|
|
@@ -409230,6 +409530,7 @@ new message content.",
|
|
|
409230
409530
|
<PreviewSection
|
|
409231
409531
|
unifiedPreviewProps={
|
|
409232
409532
|
Object {
|
|
409533
|
+
"activePreviewTab": "rcs",
|
|
409233
409534
|
"channel": "WHATSAPP",
|
|
409234
409535
|
"content": Object {
|
|
409235
409536
|
"_id": null,
|
|
@@ -409264,8 +409565,11 @@ new message content.",
|
|
|
409264
409565
|
"isUpdating": false,
|
|
409265
409566
|
"lastModified": undefined,
|
|
409266
409567
|
"onDeviceChange": [Function],
|
|
409568
|
+
"onPreviewTabChange": [Function],
|
|
409267
409569
|
"selectedCustomer": null,
|
|
409268
409570
|
"showDeviceToggle": true,
|
|
409571
|
+
"smsFallbackContent": null,
|
|
409572
|
+
"smsFallbackResolvedText": undefined,
|
|
409269
409573
|
"updatedByName": undefined,
|
|
409270
409574
|
}
|
|
409271
409575
|
}
|
|
@@ -421785,6 +422089,7 @@ new message content.",
|
|
|
421785
422089
|
style={Object {}}
|
|
421786
422090
|
>
|
|
421787
422091
|
<UnifiedPreview
|
|
422092
|
+
activePreviewTab="rcs"
|
|
421788
422093
|
channel="WHATSAPP"
|
|
421789
422094
|
content={
|
|
421790
422095
|
Object {
|
|
@@ -422777,9 +423082,11 @@ new message content.",
|
|
|
422777
423082
|
key=".0"
|
|
422778
423083
|
lastModified={null}
|
|
422779
423084
|
onDeviceChange={[Function]}
|
|
423085
|
+
onPreviewTabChange={[Function]}
|
|
422780
423086
|
selectedCustomer={null}
|
|
422781
423087
|
showDeviceToggle={false}
|
|
422782
423088
|
showHeader={false}
|
|
423089
|
+
smsFallbackContent={null}
|
|
422783
423090
|
updatedByName={null}
|
|
422784
423091
|
>
|
|
422785
423092
|
<CapRow
|
|
@@ -426901,6 +427208,7 @@ new message content.",
|
|
|
426901
427208
|
}
|
|
426902
427209
|
}
|
|
426903
427210
|
show={false}
|
|
427211
|
+
smsFallbackContent={null}
|
|
426904
427212
|
testCustomers={Immutable.List []}
|
|
426905
427213
|
testGroups={Immutable.List []}
|
|
426906
427214
|
updatePreviewError={null}
|
|
@@ -429268,6 +429576,7 @@ new message content.",
|
|
|
429268
429576
|
}
|
|
429269
429577
|
}
|
|
429270
429578
|
show={false}
|
|
429579
|
+
smsFallbackContent={null}
|
|
429271
429580
|
templateLayoutType={null}
|
|
429272
429581
|
testCustomers={Immutable.List []}
|
|
429273
429582
|
testGroups={Immutable.List []}
|
|
@@ -429361,6 +429670,7 @@ new message content.",
|
|
|
429361
429670
|
formatMessage={[Function]}
|
|
429362
429671
|
handleSendTestMessage={[Function]}
|
|
429363
429672
|
handleTestEntitiesChange={[Function]}
|
|
429673
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
429364
429674
|
isFetchingTestCustomers={false}
|
|
429365
429675
|
isFetchingTestGroups={false}
|
|
429366
429676
|
isLoadingSenderDetails={false}
|
|
@@ -429370,7 +429680,13 @@ new message content.",
|
|
|
429370
429680
|
renderAddTestCustomerButton={[Function]}
|
|
429371
429681
|
searchValue=""
|
|
429372
429682
|
selectedTestEntities={Array []}
|
|
429373
|
-
|
|
429683
|
+
senderDetailsByChannel={
|
|
429684
|
+
Object {
|
|
429685
|
+
"EMAIL": Array [],
|
|
429686
|
+
"SMS": Array [],
|
|
429687
|
+
"WHATSAPP": Array [],
|
|
429688
|
+
}
|
|
429689
|
+
}
|
|
429374
429690
|
setSearchValue={[Function]}
|
|
429375
429691
|
smsTraiDltEnabled={false}
|
|
429376
429692
|
testEntitiesTreeData={
|
|
@@ -429402,6 +429718,7 @@ new message content.",
|
|
|
429402
429718
|
<PreviewSection
|
|
429403
429719
|
unifiedPreviewProps={
|
|
429404
429720
|
Object {
|
|
429721
|
+
"activePreviewTab": "rcs",
|
|
429405
429722
|
"channel": "WHATSAPP",
|
|
429406
429723
|
"content": Object {
|
|
429407
429724
|
"_id": null,
|
|
@@ -429436,8 +429753,11 @@ new message content.",
|
|
|
429436
429753
|
"isUpdating": false,
|
|
429437
429754
|
"lastModified": undefined,
|
|
429438
429755
|
"onDeviceChange": [Function],
|
|
429756
|
+
"onPreviewTabChange": [Function],
|
|
429439
429757
|
"selectedCustomer": null,
|
|
429440
429758
|
"showDeviceToggle": true,
|
|
429759
|
+
"smsFallbackContent": null,
|
|
429760
|
+
"smsFallbackResolvedText": undefined,
|
|
429441
429761
|
"updatedByName": undefined,
|
|
429442
429762
|
}
|
|
429443
429763
|
}
|
|
@@ -442249,6 +442569,7 @@ new message content.",
|
|
|
442249
442569
|
style={Object {}}
|
|
442250
442570
|
>
|
|
442251
442571
|
<UnifiedPreview
|
|
442572
|
+
activePreviewTab="rcs"
|
|
442252
442573
|
channel="WHATSAPP"
|
|
442253
442574
|
content={
|
|
442254
442575
|
Object {
|
|
@@ -443528,9 +443849,11 @@ new message content.",
|
|
|
443528
443849
|
key=".0"
|
|
443529
443850
|
lastModified={null}
|
|
443530
443851
|
onDeviceChange={[Function]}
|
|
443852
|
+
onPreviewTabChange={[Function]}
|
|
443531
443853
|
selectedCustomer={null}
|
|
443532
443854
|
showDeviceToggle={false}
|
|
443533
443855
|
showHeader={false}
|
|
443856
|
+
smsFallbackContent={null}
|
|
443534
443857
|
updatedByName={null}
|
|
443535
443858
|
>
|
|
443536
443859
|
<CapRow
|
|
@@ -447950,6 +448273,7 @@ new message content.",
|
|
|
447950
448273
|
}
|
|
447951
448274
|
}
|
|
447952
448275
|
show={false}
|
|
448276
|
+
smsFallbackContent={null}
|
|
447953
448277
|
testCustomers={Immutable.List []}
|
|
447954
448278
|
testGroups={Immutable.List []}
|
|
447955
448279
|
updatePreviewError={null}
|
|
@@ -450317,6 +450641,7 @@ new message content.",
|
|
|
450317
450641
|
}
|
|
450318
450642
|
}
|
|
450319
450643
|
show={false}
|
|
450644
|
+
smsFallbackContent={null}
|
|
450320
450645
|
templateLayoutType={null}
|
|
450321
450646
|
testCustomers={Immutable.List []}
|
|
450322
450647
|
testGroups={Immutable.List []}
|
|
@@ -450410,6 +450735,7 @@ new message content.",
|
|
|
450410
450735
|
formatMessage={[Function]}
|
|
450411
450736
|
handleSendTestMessage={[Function]}
|
|
450412
450737
|
handleTestEntitiesChange={[Function]}
|
|
450738
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
450413
450739
|
isFetchingTestCustomers={false}
|
|
450414
450740
|
isFetchingTestGroups={false}
|
|
450415
450741
|
isLoadingSenderDetails={false}
|
|
@@ -450419,7 +450745,13 @@ new message content.",
|
|
|
450419
450745
|
renderAddTestCustomerButton={[Function]}
|
|
450420
450746
|
searchValue=""
|
|
450421
450747
|
selectedTestEntities={Array []}
|
|
450422
|
-
|
|
450748
|
+
senderDetailsByChannel={
|
|
450749
|
+
Object {
|
|
450750
|
+
"EMAIL": Array [],
|
|
450751
|
+
"SMS": Array [],
|
|
450752
|
+
"WHATSAPP": Array [],
|
|
450753
|
+
}
|
|
450754
|
+
}
|
|
450423
450755
|
setSearchValue={[Function]}
|
|
450424
450756
|
smsTraiDltEnabled={false}
|
|
450425
450757
|
testEntitiesTreeData={
|
|
@@ -450451,6 +450783,7 @@ new message content.",
|
|
|
450451
450783
|
<PreviewSection
|
|
450452
450784
|
unifiedPreviewProps={
|
|
450453
450785
|
Object {
|
|
450786
|
+
"activePreviewTab": "rcs",
|
|
450454
450787
|
"channel": "WHATSAPP",
|
|
450455
450788
|
"content": Object {
|
|
450456
450789
|
"_id": null,
|
|
@@ -450485,8 +450818,11 @@ new message content.",
|
|
|
450485
450818
|
"isUpdating": false,
|
|
450486
450819
|
"lastModified": undefined,
|
|
450487
450820
|
"onDeviceChange": [Function],
|
|
450821
|
+
"onPreviewTabChange": [Function],
|
|
450488
450822
|
"selectedCustomer": null,
|
|
450489
450823
|
"showDeviceToggle": true,
|
|
450824
|
+
"smsFallbackContent": null,
|
|
450825
|
+
"smsFallbackResolvedText": undefined,
|
|
450490
450826
|
"updatedByName": undefined,
|
|
450491
450827
|
}
|
|
450492
450828
|
}
|
|
@@ -463590,6 +463926,7 @@ new message content.",
|
|
|
463590
463926
|
style={Object {}}
|
|
463591
463927
|
>
|
|
463592
463928
|
<UnifiedPreview
|
|
463929
|
+
activePreviewTab="rcs"
|
|
463593
463930
|
channel="WHATSAPP"
|
|
463594
463931
|
content={
|
|
463595
463932
|
Object {
|
|
@@ -465166,9 +465503,11 @@ new message content.",
|
|
|
465166
465503
|
key=".0"
|
|
465167
465504
|
lastModified={null}
|
|
465168
465505
|
onDeviceChange={[Function]}
|
|
465506
|
+
onPreviewTabChange={[Function]}
|
|
465169
465507
|
selectedCustomer={null}
|
|
465170
465508
|
showDeviceToggle={false}
|
|
465171
465509
|
showHeader={false}
|
|
465510
|
+
smsFallbackContent={null}
|
|
465172
465511
|
updatedByName={null}
|
|
465173
465512
|
>
|
|
465174
465513
|
<CapRow
|
|
@@ -469885,6 +470224,7 @@ new message content.",
|
|
|
469885
470224
|
}
|
|
469886
470225
|
}
|
|
469887
470226
|
show={false}
|
|
470227
|
+
smsFallbackContent={null}
|
|
469888
470228
|
testCustomers={Immutable.List []}
|
|
469889
470229
|
testGroups={Immutable.List []}
|
|
469890
470230
|
updatePreviewError={null}
|
|
@@ -472252,6 +472592,7 @@ new message content.",
|
|
|
472252
472592
|
}
|
|
472253
472593
|
}
|
|
472254
472594
|
show={false}
|
|
472595
|
+
smsFallbackContent={null}
|
|
472255
472596
|
templateLayoutType={null}
|
|
472256
472597
|
testCustomers={Immutable.List []}
|
|
472257
472598
|
testGroups={Immutable.List []}
|
|
@@ -472345,6 +472686,7 @@ new message content.",
|
|
|
472345
472686
|
formatMessage={[Function]}
|
|
472346
472687
|
handleSendTestMessage={[Function]}
|
|
472347
472688
|
handleTestEntitiesChange={[Function]}
|
|
472689
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
472348
472690
|
isFetchingTestCustomers={false}
|
|
472349
472691
|
isFetchingTestGroups={false}
|
|
472350
472692
|
isLoadingSenderDetails={false}
|
|
@@ -472354,7 +472696,13 @@ new message content.",
|
|
|
472354
472696
|
renderAddTestCustomerButton={[Function]}
|
|
472355
472697
|
searchValue=""
|
|
472356
472698
|
selectedTestEntities={Array []}
|
|
472357
|
-
|
|
472699
|
+
senderDetailsByChannel={
|
|
472700
|
+
Object {
|
|
472701
|
+
"EMAIL": Array [],
|
|
472702
|
+
"SMS": Array [],
|
|
472703
|
+
"WHATSAPP": Array [],
|
|
472704
|
+
}
|
|
472705
|
+
}
|
|
472358
472706
|
setSearchValue={[Function]}
|
|
472359
472707
|
smsTraiDltEnabled={false}
|
|
472360
472708
|
testEntitiesTreeData={
|
|
@@ -472386,6 +472734,7 @@ new message content.",
|
|
|
472386
472734
|
<PreviewSection
|
|
472387
472735
|
unifiedPreviewProps={
|
|
472388
472736
|
Object {
|
|
472737
|
+
"activePreviewTab": "rcs",
|
|
472389
472738
|
"channel": "WHATSAPP",
|
|
472390
472739
|
"content": Object {
|
|
472391
472740
|
"_id": null,
|
|
@@ -472420,8 +472769,11 @@ new message content.",
|
|
|
472420
472769
|
"isUpdating": false,
|
|
472421
472770
|
"lastModified": undefined,
|
|
472422
472771
|
"onDeviceChange": [Function],
|
|
472772
|
+
"onPreviewTabChange": [Function],
|
|
472423
472773
|
"selectedCustomer": null,
|
|
472424
472774
|
"showDeviceToggle": true,
|
|
472775
|
+
"smsFallbackContent": null,
|
|
472776
|
+
"smsFallbackResolvedText": undefined,
|
|
472425
472777
|
"updatedByName": undefined,
|
|
472426
472778
|
}
|
|
472427
472779
|
}
|
|
@@ -485826,6 +486178,7 @@ new message content.",
|
|
|
485826
486178
|
style={Object {}}
|
|
485827
486179
|
>
|
|
485828
486180
|
<UnifiedPreview
|
|
486181
|
+
activePreviewTab="rcs"
|
|
485829
486182
|
channel="WHATSAPP"
|
|
485830
486183
|
content={
|
|
485831
486184
|
Object {
|
|
@@ -487703,9 +488056,11 @@ new message content.",
|
|
|
487703
488056
|
key=".0"
|
|
487704
488057
|
lastModified={null}
|
|
487705
488058
|
onDeviceChange={[Function]}
|
|
488059
|
+
onPreviewTabChange={[Function]}
|
|
487706
488060
|
selectedCustomer={null}
|
|
487707
488061
|
showDeviceToggle={false}
|
|
487708
488062
|
showHeader={false}
|
|
488063
|
+
smsFallbackContent={null}
|
|
487709
488064
|
updatedByName={null}
|
|
487710
488065
|
>
|
|
487711
488066
|
<CapRow
|
|
@@ -492723,6 +493078,7 @@ new message content.",
|
|
|
492723
493078
|
}
|
|
492724
493079
|
}
|
|
492725
493080
|
show={false}
|
|
493081
|
+
smsFallbackContent={null}
|
|
492726
493082
|
testCustomers={Immutable.List []}
|
|
492727
493083
|
testGroups={Immutable.List []}
|
|
492728
493084
|
updatePreviewError={null}
|
|
@@ -495090,6 +495446,7 @@ new message content.",
|
|
|
495090
495446
|
}
|
|
495091
495447
|
}
|
|
495092
495448
|
show={false}
|
|
495449
|
+
smsFallbackContent={null}
|
|
495093
495450
|
templateLayoutType={null}
|
|
495094
495451
|
testCustomers={Immutable.List []}
|
|
495095
495452
|
testGroups={Immutable.List []}
|
|
@@ -495183,6 +495540,7 @@ new message content.",
|
|
|
495183
495540
|
formatMessage={[Function]}
|
|
495184
495541
|
handleSendTestMessage={[Function]}
|
|
495185
495542
|
handleTestEntitiesChange={[Function]}
|
|
495543
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
495186
495544
|
isFetchingTestCustomers={false}
|
|
495187
495545
|
isFetchingTestGroups={false}
|
|
495188
495546
|
isLoadingSenderDetails={false}
|
|
@@ -495192,7 +495550,13 @@ new message content.",
|
|
|
495192
495550
|
renderAddTestCustomerButton={[Function]}
|
|
495193
495551
|
searchValue=""
|
|
495194
495552
|
selectedTestEntities={Array []}
|
|
495195
|
-
|
|
495553
|
+
senderDetailsByChannel={
|
|
495554
|
+
Object {
|
|
495555
|
+
"EMAIL": Array [],
|
|
495556
|
+
"SMS": Array [],
|
|
495557
|
+
"WHATSAPP": Array [],
|
|
495558
|
+
}
|
|
495559
|
+
}
|
|
495196
495560
|
setSearchValue={[Function]}
|
|
495197
495561
|
smsTraiDltEnabled={false}
|
|
495198
495562
|
testEntitiesTreeData={
|
|
@@ -495224,6 +495588,7 @@ new message content.",
|
|
|
495224
495588
|
<PreviewSection
|
|
495225
495589
|
unifiedPreviewProps={
|
|
495226
495590
|
Object {
|
|
495591
|
+
"activePreviewTab": "rcs",
|
|
495227
495592
|
"channel": "WHATSAPP",
|
|
495228
495593
|
"content": Object {
|
|
495229
495594
|
"_id": null,
|
|
@@ -495258,8 +495623,11 @@ new message content.",
|
|
|
495258
495623
|
"isUpdating": false,
|
|
495259
495624
|
"lastModified": undefined,
|
|
495260
495625
|
"onDeviceChange": [Function],
|
|
495626
|
+
"onPreviewTabChange": [Function],
|
|
495261
495627
|
"selectedCustomer": null,
|
|
495262
495628
|
"showDeviceToggle": true,
|
|
495629
|
+
"smsFallbackContent": null,
|
|
495630
|
+
"smsFallbackResolvedText": undefined,
|
|
495263
495631
|
"updatedByName": undefined,
|
|
495264
495632
|
}
|
|
495265
495633
|
}
|
|
@@ -508964,6 +509332,7 @@ new message content.",
|
|
|
508964
509332
|
style={Object {}}
|
|
508965
509333
|
>
|
|
508966
509334
|
<UnifiedPreview
|
|
509335
|
+
activePreviewTab="rcs"
|
|
508967
509336
|
channel="WHATSAPP"
|
|
508968
509337
|
content={
|
|
508969
509338
|
Object {
|
|
@@ -511141,9 +511510,11 @@ new message content.",
|
|
|
511141
511510
|
key=".0"
|
|
511142
511511
|
lastModified={null}
|
|
511143
511512
|
onDeviceChange={[Function]}
|
|
511513
|
+
onPreviewTabChange={[Function]}
|
|
511144
511514
|
selectedCustomer={null}
|
|
511145
511515
|
showDeviceToggle={false}
|
|
511146
511516
|
showHeader={false}
|
|
511517
|
+
smsFallbackContent={null}
|
|
511147
511518
|
updatedByName={null}
|
|
511148
511519
|
>
|
|
511149
511520
|
<CapRow
|
|
@@ -516461,6 +516832,7 @@ new message content.",
|
|
|
516461
516832
|
}
|
|
516462
516833
|
}
|
|
516463
516834
|
show={false}
|
|
516835
|
+
smsFallbackContent={null}
|
|
516464
516836
|
testCustomers={Immutable.List []}
|
|
516465
516837
|
testGroups={Immutable.List []}
|
|
516466
516838
|
updatePreviewError={null}
|
|
@@ -518828,6 +519200,7 @@ new message content.",
|
|
|
518828
519200
|
}
|
|
518829
519201
|
}
|
|
518830
519202
|
show={false}
|
|
519203
|
+
smsFallbackContent={null}
|
|
518831
519204
|
templateLayoutType={null}
|
|
518832
519205
|
testCustomers={Immutable.List []}
|
|
518833
519206
|
testGroups={Immutable.List []}
|
|
@@ -518921,6 +519294,7 @@ new message content.",
|
|
|
518921
519294
|
formatMessage={[Function]}
|
|
518922
519295
|
handleSendTestMessage={[Function]}
|
|
518923
519296
|
handleTestEntitiesChange={[Function]}
|
|
519297
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
518924
519298
|
isFetchingTestCustomers={false}
|
|
518925
519299
|
isFetchingTestGroups={false}
|
|
518926
519300
|
isLoadingSenderDetails={false}
|
|
@@ -518930,7 +519304,13 @@ new message content.",
|
|
|
518930
519304
|
renderAddTestCustomerButton={[Function]}
|
|
518931
519305
|
searchValue=""
|
|
518932
519306
|
selectedTestEntities={Array []}
|
|
518933
|
-
|
|
519307
|
+
senderDetailsByChannel={
|
|
519308
|
+
Object {
|
|
519309
|
+
"EMAIL": Array [],
|
|
519310
|
+
"SMS": Array [],
|
|
519311
|
+
"WHATSAPP": Array [],
|
|
519312
|
+
}
|
|
519313
|
+
}
|
|
518934
519314
|
setSearchValue={[Function]}
|
|
518935
519315
|
smsTraiDltEnabled={false}
|
|
518936
519316
|
testEntitiesTreeData={
|
|
@@ -518962,6 +519342,7 @@ new message content.",
|
|
|
518962
519342
|
<PreviewSection
|
|
518963
519343
|
unifiedPreviewProps={
|
|
518964
519344
|
Object {
|
|
519345
|
+
"activePreviewTab": "rcs",
|
|
518965
519346
|
"channel": "WHATSAPP",
|
|
518966
519347
|
"content": Object {
|
|
518967
519348
|
"_id": null,
|
|
@@ -518996,8 +519377,11 @@ new message content.",
|
|
|
518996
519377
|
"isUpdating": false,
|
|
518997
519378
|
"lastModified": undefined,
|
|
518998
519379
|
"onDeviceChange": [Function],
|
|
519380
|
+
"onPreviewTabChange": [Function],
|
|
518999
519381
|
"selectedCustomer": null,
|
|
519000
519382
|
"showDeviceToggle": true,
|
|
519383
|
+
"smsFallbackContent": null,
|
|
519384
|
+
"smsFallbackResolvedText": undefined,
|
|
519001
519385
|
"updatedByName": undefined,
|
|
519002
519386
|
}
|
|
519003
519387
|
}
|
|
@@ -532999,6 +533383,7 @@ new message content.",
|
|
|
532999
533383
|
style={Object {}}
|
|
533000
533384
|
>
|
|
533001
533385
|
<UnifiedPreview
|
|
533386
|
+
activePreviewTab="rcs"
|
|
533002
533387
|
channel="WHATSAPP"
|
|
533003
533388
|
content={
|
|
533004
533389
|
Object {
|
|
@@ -535473,9 +535858,11 @@ new message content.",
|
|
|
535473
535858
|
key=".0"
|
|
535474
535859
|
lastModified={null}
|
|
535475
535860
|
onDeviceChange={[Function]}
|
|
535861
|
+
onPreviewTabChange={[Function]}
|
|
535476
535862
|
selectedCustomer={null}
|
|
535477
535863
|
showDeviceToggle={false}
|
|
535478
535864
|
showHeader={false}
|
|
535865
|
+
smsFallbackContent={null}
|
|
535479
535866
|
updatedByName={null}
|
|
535480
535867
|
>
|
|
535481
535868
|
<CapRow
|
|
@@ -541090,6 +541477,7 @@ new message content.",
|
|
|
541090
541477
|
}
|
|
541091
541478
|
}
|
|
541092
541479
|
show={false}
|
|
541480
|
+
smsFallbackContent={null}
|
|
541093
541481
|
testCustomers={Immutable.List []}
|
|
541094
541482
|
testGroups={Immutable.List []}
|
|
541095
541483
|
updatePreviewError={null}
|
|
@@ -543457,6 +543845,7 @@ new message content.",
|
|
|
543457
543845
|
}
|
|
543458
543846
|
}
|
|
543459
543847
|
show={false}
|
|
543848
|
+
smsFallbackContent={null}
|
|
543460
543849
|
templateLayoutType={null}
|
|
543461
543850
|
testCustomers={Immutable.List []}
|
|
543462
543851
|
testGroups={Immutable.List []}
|
|
@@ -543550,6 +543939,7 @@ new message content.",
|
|
|
543550
543939
|
formatMessage={[Function]}
|
|
543551
543940
|
handleSendTestMessage={[Function]}
|
|
543552
543941
|
handleTestEntitiesChange={[Function]}
|
|
543942
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
543553
543943
|
isFetchingTestCustomers={false}
|
|
543554
543944
|
isFetchingTestGroups={false}
|
|
543555
543945
|
isLoadingSenderDetails={false}
|
|
@@ -543559,7 +543949,13 @@ new message content.",
|
|
|
543559
543949
|
renderAddTestCustomerButton={[Function]}
|
|
543560
543950
|
searchValue=""
|
|
543561
543951
|
selectedTestEntities={Array []}
|
|
543562
|
-
|
|
543952
|
+
senderDetailsByChannel={
|
|
543953
|
+
Object {
|
|
543954
|
+
"EMAIL": Array [],
|
|
543955
|
+
"SMS": Array [],
|
|
543956
|
+
"WHATSAPP": Array [],
|
|
543957
|
+
}
|
|
543958
|
+
}
|
|
543563
543959
|
setSearchValue={[Function]}
|
|
543564
543960
|
smsTraiDltEnabled={false}
|
|
543565
543961
|
testEntitiesTreeData={
|
|
@@ -543591,6 +543987,7 @@ new message content.",
|
|
|
543591
543987
|
<PreviewSection
|
|
543592
543988
|
unifiedPreviewProps={
|
|
543593
543989
|
Object {
|
|
543990
|
+
"activePreviewTab": "rcs",
|
|
543594
543991
|
"channel": "WHATSAPP",
|
|
543595
543992
|
"content": Object {
|
|
543596
543993
|
"_id": null,
|
|
@@ -543625,8 +544022,11 @@ new message content.",
|
|
|
543625
544022
|
"isUpdating": false,
|
|
543626
544023
|
"lastModified": undefined,
|
|
543627
544024
|
"onDeviceChange": [Function],
|
|
544025
|
+
"onPreviewTabChange": [Function],
|
|
543628
544026
|
"selectedCustomer": null,
|
|
543629
544027
|
"showDeviceToggle": true,
|
|
544028
|
+
"smsFallbackContent": null,
|
|
544029
|
+
"smsFallbackResolvedText": undefined,
|
|
543630
544030
|
"updatedByName": undefined,
|
|
543631
544031
|
}
|
|
543632
544032
|
}
|
|
@@ -557925,6 +558325,7 @@ new message content.",
|
|
|
557925
558325
|
style={Object {}}
|
|
557926
558326
|
>
|
|
557927
558327
|
<UnifiedPreview
|
|
558328
|
+
activePreviewTab="rcs"
|
|
557928
558329
|
channel="WHATSAPP"
|
|
557929
558330
|
content={
|
|
557930
558331
|
Object {
|
|
@@ -560696,9 +561097,11 @@ new message content.",
|
|
|
560696
561097
|
key=".0"
|
|
560697
561098
|
lastModified={null}
|
|
560698
561099
|
onDeviceChange={[Function]}
|
|
561100
|
+
onPreviewTabChange={[Function]}
|
|
560699
561101
|
selectedCustomer={null}
|
|
560700
561102
|
showDeviceToggle={false}
|
|
560701
561103
|
showHeader={false}
|
|
561104
|
+
smsFallbackContent={null}
|
|
560702
561105
|
updatedByName={null}
|
|
560703
561106
|
>
|
|
560704
561107
|
<CapRow
|
|
@@ -566610,6 +567013,7 @@ new message content.",
|
|
|
566610
567013
|
}
|
|
566611
567014
|
}
|
|
566612
567015
|
show={false}
|
|
567016
|
+
smsFallbackContent={null}
|
|
566613
567017
|
testCustomers={Immutable.List []}
|
|
566614
567018
|
testGroups={Immutable.List []}
|
|
566615
567019
|
updatePreviewError={null}
|
|
@@ -568977,6 +569381,7 @@ new message content.",
|
|
|
568977
569381
|
}
|
|
568978
569382
|
}
|
|
568979
569383
|
show={false}
|
|
569384
|
+
smsFallbackContent={null}
|
|
568980
569385
|
templateLayoutType={null}
|
|
568981
569386
|
testCustomers={Immutable.List []}
|
|
568982
569387
|
testGroups={Immutable.List []}
|
|
@@ -569070,6 +569475,7 @@ new message content.",
|
|
|
569070
569475
|
formatMessage={[Function]}
|
|
569071
569476
|
handleSendTestMessage={[Function]}
|
|
569072
569477
|
handleTestEntitiesChange={[Function]}
|
|
569478
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
569073
569479
|
isFetchingTestCustomers={false}
|
|
569074
569480
|
isFetchingTestGroups={false}
|
|
569075
569481
|
isLoadingSenderDetails={false}
|
|
@@ -569079,7 +569485,13 @@ new message content.",
|
|
|
569079
569485
|
renderAddTestCustomerButton={[Function]}
|
|
569080
569486
|
searchValue=""
|
|
569081
569487
|
selectedTestEntities={Array []}
|
|
569082
|
-
|
|
569488
|
+
senderDetailsByChannel={
|
|
569489
|
+
Object {
|
|
569490
|
+
"EMAIL": Array [],
|
|
569491
|
+
"SMS": Array [],
|
|
569492
|
+
"WHATSAPP": Array [],
|
|
569493
|
+
}
|
|
569494
|
+
}
|
|
569083
569495
|
setSearchValue={[Function]}
|
|
569084
569496
|
smsTraiDltEnabled={false}
|
|
569085
569497
|
testEntitiesTreeData={
|
|
@@ -569111,6 +569523,7 @@ new message content.",
|
|
|
569111
569523
|
<PreviewSection
|
|
569112
569524
|
unifiedPreviewProps={
|
|
569113
569525
|
Object {
|
|
569526
|
+
"activePreviewTab": "rcs",
|
|
569114
569527
|
"channel": "WHATSAPP",
|
|
569115
569528
|
"content": Object {
|
|
569116
569529
|
"_id": null,
|
|
@@ -569145,8 +569558,11 @@ new message content.",
|
|
|
569145
569558
|
"isUpdating": false,
|
|
569146
569559
|
"lastModified": undefined,
|
|
569147
569560
|
"onDeviceChange": [Function],
|
|
569561
|
+
"onPreviewTabChange": [Function],
|
|
569148
569562
|
"selectedCustomer": null,
|
|
569149
569563
|
"showDeviceToggle": true,
|
|
569564
|
+
"smsFallbackContent": null,
|
|
569565
|
+
"smsFallbackResolvedText": undefined,
|
|
569150
569566
|
"updatedByName": undefined,
|
|
569151
569567
|
}
|
|
569152
569568
|
}
|
|
@@ -583737,6 +584153,7 @@ new message content.",
|
|
|
583737
584153
|
style={Object {}}
|
|
583738
584154
|
>
|
|
583739
584155
|
<UnifiedPreview
|
|
584156
|
+
activePreviewTab="rcs"
|
|
583740
584157
|
channel="WHATSAPP"
|
|
583741
584158
|
content={
|
|
583742
584159
|
Object {
|
|
@@ -586795,9 +587212,11 @@ new message content.",
|
|
|
586795
587212
|
key=".0"
|
|
586796
587213
|
lastModified={null}
|
|
586797
587214
|
onDeviceChange={[Function]}
|
|
587215
|
+
onPreviewTabChange={[Function]}
|
|
586798
587216
|
selectedCustomer={null}
|
|
586799
587217
|
showDeviceToggle={false}
|
|
586800
587218
|
showHeader={false}
|
|
587219
|
+
smsFallbackContent={null}
|
|
586801
587220
|
updatedByName={null}
|
|
586802
587221
|
>
|
|
586803
587222
|
<CapRow
|
|
@@ -592996,6 +593415,7 @@ new message content.",
|
|
|
592996
593415
|
}
|
|
592997
593416
|
}
|
|
592998
593417
|
show={false}
|
|
593418
|
+
smsFallbackContent={null}
|
|
592999
593419
|
testCustomers={Immutable.List []}
|
|
593000
593420
|
testGroups={Immutable.List []}
|
|
593001
593421
|
updatePreviewError={null}
|
|
@@ -595363,6 +595783,7 @@ new message content.",
|
|
|
595363
595783
|
}
|
|
595364
595784
|
}
|
|
595365
595785
|
show={false}
|
|
595786
|
+
smsFallbackContent={null}
|
|
595366
595787
|
templateLayoutType={null}
|
|
595367
595788
|
testCustomers={Immutable.List []}
|
|
595368
595789
|
testGroups={Immutable.List []}
|
|
@@ -595456,6 +595877,7 @@ new message content.",
|
|
|
595456
595877
|
formatMessage={[Function]}
|
|
595457
595878
|
handleSendTestMessage={[Function]}
|
|
595458
595879
|
handleTestEntitiesChange={[Function]}
|
|
595880
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
595459
595881
|
isFetchingTestCustomers={false}
|
|
595460
595882
|
isFetchingTestGroups={false}
|
|
595461
595883
|
isLoadingSenderDetails={false}
|
|
@@ -595465,7 +595887,13 @@ new message content.",
|
|
|
595465
595887
|
renderAddTestCustomerButton={[Function]}
|
|
595466
595888
|
searchValue=""
|
|
595467
595889
|
selectedTestEntities={Array []}
|
|
595468
|
-
|
|
595890
|
+
senderDetailsByChannel={
|
|
595891
|
+
Object {
|
|
595892
|
+
"EMAIL": Array [],
|
|
595893
|
+
"SMS": Array [],
|
|
595894
|
+
"WHATSAPP": Array [],
|
|
595895
|
+
}
|
|
595896
|
+
}
|
|
595469
595897
|
setSearchValue={[Function]}
|
|
595470
595898
|
smsTraiDltEnabled={false}
|
|
595471
595899
|
testEntitiesTreeData={
|
|
@@ -595497,6 +595925,7 @@ new message content.",
|
|
|
595497
595925
|
<PreviewSection
|
|
595498
595926
|
unifiedPreviewProps={
|
|
595499
595927
|
Object {
|
|
595928
|
+
"activePreviewTab": "rcs",
|
|
595500
595929
|
"channel": "WHATSAPP",
|
|
595501
595930
|
"content": Object {
|
|
595502
595931
|
"_id": null,
|
|
@@ -595531,8 +595960,11 @@ new message content.",
|
|
|
595531
595960
|
"isUpdating": false,
|
|
595532
595961
|
"lastModified": undefined,
|
|
595533
595962
|
"onDeviceChange": [Function],
|
|
595963
|
+
"onPreviewTabChange": [Function],
|
|
595534
595964
|
"selectedCustomer": null,
|
|
595535
595965
|
"showDeviceToggle": true,
|
|
595966
|
+
"smsFallbackContent": null,
|
|
595967
|
+
"smsFallbackResolvedText": undefined,
|
|
595536
595968
|
"updatedByName": undefined,
|
|
595537
595969
|
}
|
|
595538
595970
|
}
|
|
@@ -607760,6 +608192,7 @@ new message content.",
|
|
|
607760
608192
|
style={Object {}}
|
|
607761
608193
|
>
|
|
607762
608194
|
<UnifiedPreview
|
|
608195
|
+
activePreviewTab="rcs"
|
|
607763
608196
|
channel="WHATSAPP"
|
|
607764
608197
|
content={
|
|
607765
608198
|
Object {
|
|
@@ -608455,9 +608888,11 @@ new message content.",
|
|
|
608455
608888
|
key=".0"
|
|
608456
608889
|
lastModified={null}
|
|
608457
608890
|
onDeviceChange={[Function]}
|
|
608891
|
+
onPreviewTabChange={[Function]}
|
|
608458
608892
|
selectedCustomer={null}
|
|
608459
608893
|
showDeviceToggle={false}
|
|
608460
608894
|
showHeader={false}
|
|
608895
|
+
smsFallbackContent={null}
|
|
608461
608896
|
updatedByName={null}
|
|
608462
608897
|
>
|
|
608463
608898
|
<CapRow
|
|
@@ -612282,6 +612717,7 @@ new message content.",
|
|
|
612282
612717
|
}
|
|
612283
612718
|
}
|
|
612284
612719
|
show={false}
|
|
612720
|
+
smsFallbackContent={null}
|
|
612285
612721
|
testCustomers={Immutable.List []}
|
|
612286
612722
|
testGroups={Immutable.List []}
|
|
612287
612723
|
updatePreviewError={null}
|
|
@@ -614649,6 +615085,7 @@ new message content.",
|
|
|
614649
615085
|
}
|
|
614650
615086
|
}
|
|
614651
615087
|
show={false}
|
|
615088
|
+
smsFallbackContent={null}
|
|
614652
615089
|
templateLayoutType={null}
|
|
614653
615090
|
testCustomers={Immutable.List []}
|
|
614654
615091
|
testGroups={Immutable.List []}
|
|
@@ -614742,6 +615179,7 @@ new message content.",
|
|
|
614742
615179
|
formatMessage={[Function]}
|
|
614743
615180
|
handleSendTestMessage={[Function]}
|
|
614744
615181
|
handleTestEntitiesChange={[Function]}
|
|
615182
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
614745
615183
|
isFetchingTestCustomers={false}
|
|
614746
615184
|
isFetchingTestGroups={false}
|
|
614747
615185
|
isLoadingSenderDetails={false}
|
|
@@ -614751,7 +615189,13 @@ new message content.",
|
|
|
614751
615189
|
renderAddTestCustomerButton={[Function]}
|
|
614752
615190
|
searchValue=""
|
|
614753
615191
|
selectedTestEntities={Array []}
|
|
614754
|
-
|
|
615192
|
+
senderDetailsByChannel={
|
|
615193
|
+
Object {
|
|
615194
|
+
"EMAIL": Array [],
|
|
615195
|
+
"SMS": Array [],
|
|
615196
|
+
"WHATSAPP": Array [],
|
|
615197
|
+
}
|
|
615198
|
+
}
|
|
614755
615199
|
setSearchValue={[Function]}
|
|
614756
615200
|
smsTraiDltEnabled={false}
|
|
614757
615201
|
testEntitiesTreeData={
|
|
@@ -614783,6 +615227,7 @@ new message content.",
|
|
|
614783
615227
|
<PreviewSection
|
|
614784
615228
|
unifiedPreviewProps={
|
|
614785
615229
|
Object {
|
|
615230
|
+
"activePreviewTab": "rcs",
|
|
614786
615231
|
"channel": "WHATSAPP",
|
|
614787
615232
|
"content": Object {
|
|
614788
615233
|
"_id": null,
|
|
@@ -614817,8 +615262,11 @@ new message content.",
|
|
|
614817
615262
|
"isUpdating": false,
|
|
614818
615263
|
"lastModified": undefined,
|
|
614819
615264
|
"onDeviceChange": [Function],
|
|
615265
|
+
"onPreviewTabChange": [Function],
|
|
614820
615266
|
"selectedCustomer": null,
|
|
614821
615267
|
"showDeviceToggle": true,
|
|
615268
|
+
"smsFallbackContent": null,
|
|
615269
|
+
"smsFallbackResolvedText": undefined,
|
|
614822
615270
|
"updatedByName": undefined,
|
|
614823
615271
|
}
|
|
614824
615272
|
}
|
|
@@ -627046,6 +627494,7 @@ new message content.",
|
|
|
627046
627494
|
style={Object {}}
|
|
627047
627495
|
>
|
|
627048
627496
|
<UnifiedPreview
|
|
627497
|
+
activePreviewTab="rcs"
|
|
627049
627498
|
channel="WHATSAPP"
|
|
627050
627499
|
content={
|
|
627051
627500
|
Object {
|
|
@@ -627741,9 +628190,11 @@ new message content.",
|
|
|
627741
628190
|
key=".0"
|
|
627742
628191
|
lastModified={null}
|
|
627743
628192
|
onDeviceChange={[Function]}
|
|
628193
|
+
onPreviewTabChange={[Function]}
|
|
627744
628194
|
selectedCustomer={null}
|
|
627745
628195
|
showDeviceToggle={false}
|
|
627746
628196
|
showHeader={false}
|
|
628197
|
+
smsFallbackContent={null}
|
|
627747
628198
|
updatedByName={null}
|
|
627748
628199
|
>
|
|
627749
628200
|
<CapRow
|
|
@@ -631568,6 +632019,7 @@ new message content.",
|
|
|
631568
632019
|
}
|
|
631569
632020
|
}
|
|
631570
632021
|
show={false}
|
|
632022
|
+
smsFallbackContent={null}
|
|
631571
632023
|
testCustomers={Immutable.List []}
|
|
631572
632024
|
testGroups={Immutable.List []}
|
|
631573
632025
|
updatePreviewError={null}
|
|
@@ -633935,6 +634387,7 @@ new message content.",
|
|
|
633935
634387
|
}
|
|
633936
634388
|
}
|
|
633937
634389
|
show={false}
|
|
634390
|
+
smsFallbackContent={null}
|
|
633938
634391
|
templateLayoutType={null}
|
|
633939
634392
|
testCustomers={Immutable.List []}
|
|
633940
634393
|
testGroups={Immutable.List []}
|
|
@@ -634028,6 +634481,7 @@ new message content.",
|
|
|
634028
634481
|
formatMessage={[Function]}
|
|
634029
634482
|
handleSendTestMessage={[Function]}
|
|
634030
634483
|
handleTestEntitiesChange={[Function]}
|
|
634484
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
634031
634485
|
isFetchingTestCustomers={false}
|
|
634032
634486
|
isFetchingTestGroups={false}
|
|
634033
634487
|
isLoadingSenderDetails={false}
|
|
@@ -634037,7 +634491,13 @@ new message content.",
|
|
|
634037
634491
|
renderAddTestCustomerButton={[Function]}
|
|
634038
634492
|
searchValue=""
|
|
634039
634493
|
selectedTestEntities={Array []}
|
|
634040
|
-
|
|
634494
|
+
senderDetailsByChannel={
|
|
634495
|
+
Object {
|
|
634496
|
+
"EMAIL": Array [],
|
|
634497
|
+
"SMS": Array [],
|
|
634498
|
+
"WHATSAPP": Array [],
|
|
634499
|
+
}
|
|
634500
|
+
}
|
|
634041
634501
|
setSearchValue={[Function]}
|
|
634042
634502
|
smsTraiDltEnabled={false}
|
|
634043
634503
|
testEntitiesTreeData={
|
|
@@ -634069,6 +634529,7 @@ new message content.",
|
|
|
634069
634529
|
<PreviewSection
|
|
634070
634530
|
unifiedPreviewProps={
|
|
634071
634531
|
Object {
|
|
634532
|
+
"activePreviewTab": "rcs",
|
|
634072
634533
|
"channel": "WHATSAPP",
|
|
634073
634534
|
"content": Object {
|
|
634074
634535
|
"_id": null,
|
|
@@ -634103,8 +634564,11 @@ new message content.",
|
|
|
634103
634564
|
"isUpdating": false,
|
|
634104
634565
|
"lastModified": undefined,
|
|
634105
634566
|
"onDeviceChange": [Function],
|
|
634567
|
+
"onPreviewTabChange": [Function],
|
|
634106
634568
|
"selectedCustomer": null,
|
|
634107
634569
|
"showDeviceToggle": true,
|
|
634570
|
+
"smsFallbackContent": null,
|
|
634571
|
+
"smsFallbackResolvedText": undefined,
|
|
634108
634572
|
"updatedByName": undefined,
|
|
634109
634573
|
}
|
|
634110
634574
|
}
|
|
@@ -646332,6 +646796,7 @@ new message content.",
|
|
|
646332
646796
|
style={Object {}}
|
|
646333
646797
|
>
|
|
646334
646798
|
<UnifiedPreview
|
|
646799
|
+
activePreviewTab="rcs"
|
|
646335
646800
|
channel="WHATSAPP"
|
|
646336
646801
|
content={
|
|
646337
646802
|
Object {
|
|
@@ -647027,9 +647492,11 @@ new message content.",
|
|
|
647027
647492
|
key=".0"
|
|
647028
647493
|
lastModified={null}
|
|
647029
647494
|
onDeviceChange={[Function]}
|
|
647495
|
+
onPreviewTabChange={[Function]}
|
|
647030
647496
|
selectedCustomer={null}
|
|
647031
647497
|
showDeviceToggle={false}
|
|
647032
647498
|
showHeader={false}
|
|
647499
|
+
smsFallbackContent={null}
|
|
647033
647500
|
updatedByName={null}
|
|
647034
647501
|
>
|
|
647035
647502
|
<CapRow
|
|
@@ -650854,6 +651321,7 @@ new message content.",
|
|
|
650854
651321
|
}
|
|
650855
651322
|
}
|
|
650856
651323
|
show={false}
|
|
651324
|
+
smsFallbackContent={null}
|
|
650857
651325
|
testCustomers={Immutable.List []}
|
|
650858
651326
|
testGroups={Immutable.List []}
|
|
650859
651327
|
updatePreviewError={null}
|
|
@@ -653221,6 +653689,7 @@ new message content.",
|
|
|
653221
653689
|
}
|
|
653222
653690
|
}
|
|
653223
653691
|
show={false}
|
|
653692
|
+
smsFallbackContent={null}
|
|
653224
653693
|
templateLayoutType={null}
|
|
653225
653694
|
testCustomers={Immutable.List []}
|
|
653226
653695
|
testGroups={Immutable.List []}
|
|
@@ -653314,6 +653783,7 @@ new message content.",
|
|
|
653314
653783
|
formatMessage={[Function]}
|
|
653315
653784
|
handleSendTestMessage={[Function]}
|
|
653316
653785
|
handleTestEntitiesChange={[Function]}
|
|
653786
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
653317
653787
|
isFetchingTestCustomers={false}
|
|
653318
653788
|
isFetchingTestGroups={false}
|
|
653319
653789
|
isLoadingSenderDetails={false}
|
|
@@ -653323,7 +653793,13 @@ new message content.",
|
|
|
653323
653793
|
renderAddTestCustomerButton={[Function]}
|
|
653324
653794
|
searchValue=""
|
|
653325
653795
|
selectedTestEntities={Array []}
|
|
653326
|
-
|
|
653796
|
+
senderDetailsByChannel={
|
|
653797
|
+
Object {
|
|
653798
|
+
"EMAIL": Array [],
|
|
653799
|
+
"SMS": Array [],
|
|
653800
|
+
"WHATSAPP": Array [],
|
|
653801
|
+
}
|
|
653802
|
+
}
|
|
653327
653803
|
setSearchValue={[Function]}
|
|
653328
653804
|
smsTraiDltEnabled={false}
|
|
653329
653805
|
testEntitiesTreeData={
|
|
@@ -653355,6 +653831,7 @@ new message content.",
|
|
|
653355
653831
|
<PreviewSection
|
|
653356
653832
|
unifiedPreviewProps={
|
|
653357
653833
|
Object {
|
|
653834
|
+
"activePreviewTab": "rcs",
|
|
653358
653835
|
"channel": "WHATSAPP",
|
|
653359
653836
|
"content": Object {
|
|
653360
653837
|
"_id": null,
|
|
@@ -653389,8 +653866,11 @@ new message content.",
|
|
|
653389
653866
|
"isUpdating": false,
|
|
653390
653867
|
"lastModified": undefined,
|
|
653391
653868
|
"onDeviceChange": [Function],
|
|
653869
|
+
"onPreviewTabChange": [Function],
|
|
653392
653870
|
"selectedCustomer": null,
|
|
653393
653871
|
"showDeviceToggle": true,
|
|
653872
|
+
"smsFallbackContent": null,
|
|
653873
|
+
"smsFallbackResolvedText": undefined,
|
|
653394
653874
|
"updatedByName": undefined,
|
|
653395
653875
|
}
|
|
653396
653876
|
}
|
|
@@ -665618,6 +666098,7 @@ new message content.",
|
|
|
665618
666098
|
style={Object {}}
|
|
665619
666099
|
>
|
|
665620
666100
|
<UnifiedPreview
|
|
666101
|
+
activePreviewTab="rcs"
|
|
665621
666102
|
channel="WHATSAPP"
|
|
665622
666103
|
content={
|
|
665623
666104
|
Object {
|
|
@@ -666313,9 +666794,11 @@ new message content.",
|
|
|
666313
666794
|
key=".0"
|
|
666314
666795
|
lastModified={null}
|
|
666315
666796
|
onDeviceChange={[Function]}
|
|
666797
|
+
onPreviewTabChange={[Function]}
|
|
666316
666798
|
selectedCustomer={null}
|
|
666317
666799
|
showDeviceToggle={false}
|
|
666318
666800
|
showHeader={false}
|
|
666801
|
+
smsFallbackContent={null}
|
|
666319
666802
|
updatedByName={null}
|
|
666320
666803
|
>
|
|
666321
666804
|
<CapRow
|
|
@@ -670140,6 +670623,7 @@ new message content.",
|
|
|
670140
670623
|
}
|
|
670141
670624
|
}
|
|
670142
670625
|
show={false}
|
|
670626
|
+
smsFallbackContent={null}
|
|
670143
670627
|
testCustomers={Immutable.List []}
|
|
670144
670628
|
testGroups={Immutable.List []}
|
|
670145
670629
|
updatePreviewError={null}
|
|
@@ -672507,6 +672991,7 @@ new message content.",
|
|
|
672507
672991
|
}
|
|
672508
672992
|
}
|
|
672509
672993
|
show={false}
|
|
672994
|
+
smsFallbackContent={null}
|
|
672510
672995
|
templateLayoutType={null}
|
|
672511
672996
|
testCustomers={Immutable.List []}
|
|
672512
672997
|
testGroups={Immutable.List []}
|
|
@@ -672600,6 +673085,7 @@ new message content.",
|
|
|
672600
673085
|
formatMessage={[Function]}
|
|
672601
673086
|
handleSendTestMessage={[Function]}
|
|
672602
673087
|
handleTestEntitiesChange={[Function]}
|
|
673088
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
672603
673089
|
isFetchingTestCustomers={false}
|
|
672604
673090
|
isFetchingTestGroups={false}
|
|
672605
673091
|
isLoadingSenderDetails={false}
|
|
@@ -672609,7 +673095,13 @@ new message content.",
|
|
|
672609
673095
|
renderAddTestCustomerButton={[Function]}
|
|
672610
673096
|
searchValue=""
|
|
672611
673097
|
selectedTestEntities={Array []}
|
|
672612
|
-
|
|
673098
|
+
senderDetailsByChannel={
|
|
673099
|
+
Object {
|
|
673100
|
+
"EMAIL": Array [],
|
|
673101
|
+
"SMS": Array [],
|
|
673102
|
+
"WHATSAPP": Array [],
|
|
673103
|
+
}
|
|
673104
|
+
}
|
|
672613
673105
|
setSearchValue={[Function]}
|
|
672614
673106
|
smsTraiDltEnabled={false}
|
|
672615
673107
|
testEntitiesTreeData={
|
|
@@ -672641,6 +673133,7 @@ new message content.",
|
|
|
672641
673133
|
<PreviewSection
|
|
672642
673134
|
unifiedPreviewProps={
|
|
672643
673135
|
Object {
|
|
673136
|
+
"activePreviewTab": "rcs",
|
|
672644
673137
|
"channel": "WHATSAPP",
|
|
672645
673138
|
"content": Object {
|
|
672646
673139
|
"_id": null,
|
|
@@ -672675,8 +673168,11 @@ new message content.",
|
|
|
672675
673168
|
"isUpdating": false,
|
|
672676
673169
|
"lastModified": undefined,
|
|
672677
673170
|
"onDeviceChange": [Function],
|
|
673171
|
+
"onPreviewTabChange": [Function],
|
|
672678
673172
|
"selectedCustomer": null,
|
|
672679
673173
|
"showDeviceToggle": true,
|
|
673174
|
+
"smsFallbackContent": null,
|
|
673175
|
+
"smsFallbackResolvedText": undefined,
|
|
672680
673176
|
"updatedByName": undefined,
|
|
672681
673177
|
}
|
|
672682
673178
|
}
|
|
@@ -687068,6 +687564,7 @@ new message content.",
|
|
|
687068
687564
|
style={Object {}}
|
|
687069
687565
|
>
|
|
687070
687566
|
<UnifiedPreview
|
|
687567
|
+
activePreviewTab="rcs"
|
|
687071
687568
|
channel="WHATSAPP"
|
|
687072
687569
|
content={
|
|
687073
687570
|
Object {
|
|
@@ -687871,9 +688368,11 @@ new message content.",
|
|
|
687871
688368
|
key=".0"
|
|
687872
688369
|
lastModified={null}
|
|
687873
688370
|
onDeviceChange={[Function]}
|
|
688371
|
+
onPreviewTabChange={[Function]}
|
|
687874
688372
|
selectedCustomer={null}
|
|
687875
688373
|
showDeviceToggle={false}
|
|
687876
688374
|
showHeader={false}
|
|
688375
|
+
smsFallbackContent={null}
|
|
687877
688376
|
updatedByName={null}
|
|
687878
688377
|
>
|
|
687879
688378
|
<CapRow
|
|
@@ -691815,6 +692314,7 @@ new message content.",
|
|
|
691815
692314
|
}
|
|
691816
692315
|
}
|
|
691817
692316
|
show={false}
|
|
692317
|
+
smsFallbackContent={null}
|
|
691818
692318
|
testCustomers={Immutable.List []}
|
|
691819
692319
|
testGroups={Immutable.List []}
|
|
691820
692320
|
updatePreviewError={null}
|
|
@@ -694182,6 +694682,7 @@ new message content.",
|
|
|
694182
694682
|
}
|
|
694183
694683
|
}
|
|
694184
694684
|
show={false}
|
|
694685
|
+
smsFallbackContent={null}
|
|
694185
694686
|
templateLayoutType={null}
|
|
694186
694687
|
testCustomers={Immutable.List []}
|
|
694187
694688
|
testGroups={Immutable.List []}
|
|
@@ -694275,6 +694776,7 @@ new message content.",
|
|
|
694275
694776
|
formatMessage={[Function]}
|
|
694276
694777
|
handleSendTestMessage={[Function]}
|
|
694277
694778
|
handleTestEntitiesChange={[Function]}
|
|
694779
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
694278
694780
|
isFetchingTestCustomers={false}
|
|
694279
694781
|
isFetchingTestGroups={false}
|
|
694280
694782
|
isLoadingSenderDetails={false}
|
|
@@ -694284,7 +694786,13 @@ new message content.",
|
|
|
694284
694786
|
renderAddTestCustomerButton={[Function]}
|
|
694285
694787
|
searchValue=""
|
|
694286
694788
|
selectedTestEntities={Array []}
|
|
694287
|
-
|
|
694789
|
+
senderDetailsByChannel={
|
|
694790
|
+
Object {
|
|
694791
|
+
"EMAIL": Array [],
|
|
694792
|
+
"SMS": Array [],
|
|
694793
|
+
"WHATSAPP": Array [],
|
|
694794
|
+
}
|
|
694795
|
+
}
|
|
694288
694796
|
setSearchValue={[Function]}
|
|
694289
694797
|
smsTraiDltEnabled={false}
|
|
694290
694798
|
testEntitiesTreeData={
|
|
@@ -694316,6 +694824,7 @@ new message content.",
|
|
|
694316
694824
|
<PreviewSection
|
|
694317
694825
|
unifiedPreviewProps={
|
|
694318
694826
|
Object {
|
|
694827
|
+
"activePreviewTab": "rcs",
|
|
694319
694828
|
"channel": "WHATSAPP",
|
|
694320
694829
|
"content": Object {
|
|
694321
694830
|
"_id": null,
|
|
@@ -694350,8 +694859,11 @@ new message content.",
|
|
|
694350
694859
|
"isUpdating": false,
|
|
694351
694860
|
"lastModified": undefined,
|
|
694352
694861
|
"onDeviceChange": [Function],
|
|
694862
|
+
"onPreviewTabChange": [Function],
|
|
694353
694863
|
"selectedCustomer": null,
|
|
694354
694864
|
"showDeviceToggle": true,
|
|
694865
|
+
"smsFallbackContent": null,
|
|
694866
|
+
"smsFallbackResolvedText": undefined,
|
|
694355
694867
|
"updatedByName": undefined,
|
|
694356
694868
|
}
|
|
694357
694869
|
}
|
|
@@ -708825,6 +709337,7 @@ new message content.",
|
|
|
708825
709337
|
style={Object {}}
|
|
708826
709338
|
>
|
|
708827
709339
|
<UnifiedPreview
|
|
709340
|
+
activePreviewTab="rcs"
|
|
708828
709341
|
channel="WHATSAPP"
|
|
708829
709342
|
content={
|
|
708830
709343
|
Object {
|
|
@@ -709641,9 +710154,11 @@ new message content.",
|
|
|
709641
710154
|
key=".0"
|
|
709642
710155
|
lastModified={null}
|
|
709643
710156
|
onDeviceChange={[Function]}
|
|
710157
|
+
onPreviewTabChange={[Function]}
|
|
709644
710158
|
selectedCustomer={null}
|
|
709645
710159
|
showDeviceToggle={false}
|
|
709646
710160
|
showHeader={false}
|
|
710161
|
+
smsFallbackContent={null}
|
|
709647
710162
|
updatedByName={null}
|
|
709648
710163
|
>
|
|
709649
710164
|
<CapRow
|
|
@@ -713598,6 +714113,7 @@ new message content.",
|
|
|
713598
714113
|
}
|
|
713599
714114
|
}
|
|
713600
714115
|
show={false}
|
|
714116
|
+
smsFallbackContent={null}
|
|
713601
714117
|
testCustomers={Immutable.List []}
|
|
713602
714118
|
testGroups={Immutable.List []}
|
|
713603
714119
|
updatePreviewError={null}
|
|
@@ -715965,6 +716481,7 @@ new message content.",
|
|
|
715965
716481
|
}
|
|
715966
716482
|
}
|
|
715967
716483
|
show={false}
|
|
716484
|
+
smsFallbackContent={null}
|
|
715968
716485
|
templateLayoutType={null}
|
|
715969
716486
|
testCustomers={Immutable.List []}
|
|
715970
716487
|
testGroups={Immutable.List []}
|
|
@@ -716058,6 +716575,7 @@ new message content.",
|
|
|
716058
716575
|
formatMessage={[Function]}
|
|
716059
716576
|
handleSendTestMessage={[Function]}
|
|
716060
716577
|
handleTestEntitiesChange={[Function]}
|
|
716578
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
716061
716579
|
isFetchingTestCustomers={false}
|
|
716062
716580
|
isFetchingTestGroups={false}
|
|
716063
716581
|
isLoadingSenderDetails={false}
|
|
@@ -716067,7 +716585,13 @@ new message content.",
|
|
|
716067
716585
|
renderAddTestCustomerButton={[Function]}
|
|
716068
716586
|
searchValue=""
|
|
716069
716587
|
selectedTestEntities={Array []}
|
|
716070
|
-
|
|
716588
|
+
senderDetailsByChannel={
|
|
716589
|
+
Object {
|
|
716590
|
+
"EMAIL": Array [],
|
|
716591
|
+
"SMS": Array [],
|
|
716592
|
+
"WHATSAPP": Array [],
|
|
716593
|
+
}
|
|
716594
|
+
}
|
|
716071
716595
|
setSearchValue={[Function]}
|
|
716072
716596
|
smsTraiDltEnabled={false}
|
|
716073
716597
|
testEntitiesTreeData={
|
|
@@ -716099,6 +716623,7 @@ new message content.",
|
|
|
716099
716623
|
<PreviewSection
|
|
716100
716624
|
unifiedPreviewProps={
|
|
716101
716625
|
Object {
|
|
716626
|
+
"activePreviewTab": "rcs",
|
|
716102
716627
|
"channel": "WHATSAPP",
|
|
716103
716628
|
"content": Object {
|
|
716104
716629
|
"_id": null,
|
|
@@ -716133,8 +716658,11 @@ new message content.",
|
|
|
716133
716658
|
"isUpdating": false,
|
|
716134
716659
|
"lastModified": undefined,
|
|
716135
716660
|
"onDeviceChange": [Function],
|
|
716661
|
+
"onPreviewTabChange": [Function],
|
|
716136
716662
|
"selectedCustomer": null,
|
|
716137
716663
|
"showDeviceToggle": true,
|
|
716664
|
+
"smsFallbackContent": null,
|
|
716665
|
+
"smsFallbackResolvedText": undefined,
|
|
716138
716666
|
"updatedByName": undefined,
|
|
716139
716667
|
}
|
|
716140
716668
|
}
|
|
@@ -730608,6 +731136,7 @@ new message content.",
|
|
|
730608
731136
|
style={Object {}}
|
|
730609
731137
|
>
|
|
730610
731138
|
<UnifiedPreview
|
|
731139
|
+
activePreviewTab="rcs"
|
|
730611
731140
|
channel="WHATSAPP"
|
|
730612
731141
|
content={
|
|
730613
731142
|
Object {
|
|
@@ -731424,9 +731953,11 @@ new message content.",
|
|
|
731424
731953
|
key=".0"
|
|
731425
731954
|
lastModified={null}
|
|
731426
731955
|
onDeviceChange={[Function]}
|
|
731956
|
+
onPreviewTabChange={[Function]}
|
|
731427
731957
|
selectedCustomer={null}
|
|
731428
731958
|
showDeviceToggle={false}
|
|
731429
731959
|
showHeader={false}
|
|
731960
|
+
smsFallbackContent={null}
|
|
731430
731961
|
updatedByName={null}
|
|
731431
731962
|
>
|
|
731432
731963
|
<CapRow
|
|
@@ -735381,6 +735912,7 @@ new message content.",
|
|
|
735381
735912
|
}
|
|
735382
735913
|
}
|
|
735383
735914
|
show={false}
|
|
735915
|
+
smsFallbackContent={null}
|
|
735384
735916
|
testCustomers={Immutable.List []}
|
|
735385
735917
|
testGroups={Immutable.List []}
|
|
735386
735918
|
updatePreviewError={null}
|
|
@@ -737748,6 +738280,7 @@ new message content.",
|
|
|
737748
738280
|
}
|
|
737749
738281
|
}
|
|
737750
738282
|
show={false}
|
|
738283
|
+
smsFallbackContent={null}
|
|
737751
738284
|
templateLayoutType={null}
|
|
737752
738285
|
testCustomers={Immutable.List []}
|
|
737753
738286
|
testGroups={Immutable.List []}
|
|
@@ -737841,6 +738374,7 @@ new message content.",
|
|
|
737841
738374
|
formatMessage={[Function]}
|
|
737842
738375
|
handleSendTestMessage={[Function]}
|
|
737843
738376
|
handleTestEntitiesChange={[Function]}
|
|
738377
|
+
isChannelSmsFallbackPreviewEnabled={false}
|
|
737844
738378
|
isFetchingTestCustomers={false}
|
|
737845
738379
|
isFetchingTestGroups={false}
|
|
737846
738380
|
isLoadingSenderDetails={false}
|
|
@@ -737850,7 +738384,13 @@ new message content.",
|
|
|
737850
738384
|
renderAddTestCustomerButton={[Function]}
|
|
737851
738385
|
searchValue=""
|
|
737852
738386
|
selectedTestEntities={Array []}
|
|
737853
|
-
|
|
738387
|
+
senderDetailsByChannel={
|
|
738388
|
+
Object {
|
|
738389
|
+
"EMAIL": Array [],
|
|
738390
|
+
"SMS": Array [],
|
|
738391
|
+
"WHATSAPP": Array [],
|
|
738392
|
+
}
|
|
738393
|
+
}
|
|
737854
738394
|
setSearchValue={[Function]}
|
|
737855
738395
|
smsTraiDltEnabled={false}
|
|
737856
738396
|
testEntitiesTreeData={
|
|
@@ -737882,6 +738422,7 @@ new message content.",
|
|
|
737882
738422
|
<PreviewSection
|
|
737883
738423
|
unifiedPreviewProps={
|
|
737884
738424
|
Object {
|
|
738425
|
+
"activePreviewTab": "rcs",
|
|
737885
738426
|
"channel": "WHATSAPP",
|
|
737886
738427
|
"content": Object {
|
|
737887
738428
|
"_id": null,
|
|
@@ -737916,8 +738457,11 @@ new message content.",
|
|
|
737916
738457
|
"isUpdating": false,
|
|
737917
738458
|
"lastModified": undefined,
|
|
737918
738459
|
"onDeviceChange": [Function],
|
|
738460
|
+
"onPreviewTabChange": [Function],
|
|
737919
738461
|
"selectedCustomer": null,
|
|
737920
738462
|
"showDeviceToggle": true,
|
|
738463
|
+
"smsFallbackContent": null,
|
|
738464
|
+
"smsFallbackResolvedText": undefined,
|
|
737921
738465
|
"updatedByName": undefined,
|
|
737922
738466
|
}
|
|
737923
738467
|
}
|