@capillarytech/creatives-library 8.0.290-alpha.4 → 8.0.290
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 +1 -3
- package/initialState.js +2 -0
- package/package.json +1 -1
- package/utils/common.js +8 -5
- package/utils/commonUtils.js +85 -4
- package/utils/tagValidations.js +223 -83
- package/utils/tests/commonUtil.test.js +124 -147
- package/utils/tests/tagValidations.test.js +358 -441
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +33 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +397 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.scss +35 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/TECH_DETAILING_DELIVERY_SETTINGS.md +725 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +92 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +243 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +111 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +91 -0
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +33 -1
- package/v2Components/CommonTestAndPreview/actions.js +20 -0
- package/v2Components/CommonTestAndPreview/constants.js +10 -0
- package/v2Components/CommonTestAndPreview/index.js +133 -15
- package/v2Components/CommonTestAndPreview/reducer.js +47 -0
- package/v2Components/CommonTestAndPreview/sagas.js +60 -0
- package/v2Components/CommonTestAndPreview/selectors.js +51 -0
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +782 -0
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +200 -0
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +235 -0
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +127 -0
- package/v2Components/CommonTestAndPreview/tests/actions.test.js +50 -0
- package/v2Components/CommonTestAndPreview/tests/constants.test.js +18 -0
- package/v2Components/CommonTestAndPreview/tests/index.test.js +214 -1
- package/v2Components/CommonTestAndPreview/tests/reducer.test.js +118 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +145 -0
- package/v2Components/CommonTestAndPreview/tests/selectors.test.js +146 -0
- package/v2Components/ErrorInfoNote/index.js +5 -2
- package/v2Components/FormBuilder/index.js +201 -132
- package/v2Components/FormBuilder/messages.js +8 -0
- package/v2Components/HtmlEditor/HTMLEditor.js +5 -0
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +1 -0
- package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +15 -0
- package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +2 -1
- package/v2Components/TestAndPreviewSlidebox/index.js +14 -0
- package/v2Containers/Cap/mockData.js +14 -0
- package/v2Containers/Cap/reducer.js +55 -3
- package/v2Containers/Cap/tests/reducer.test.js +102 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +1 -5
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +5 -13
- package/v2Containers/CreativesContainer/index.js +7 -30
- package/v2Containers/Email/index.js +5 -1
- package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +70 -23
- package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +137 -29
- package/v2Containers/FTP/index.js +51 -2
- package/v2Containers/FTP/messages.js +4 -0
- package/v2Containers/InApp/index.js +104 -4
- package/v2Containers/InApp/tests/index.test.js +6 -17
- package/v2Containers/InappAdvance/index.js +108 -4
- package/v2Containers/InappAdvance/tests/index.test.js +0 -2
- package/v2Containers/Line/Container/Text/index.js +1 -0
- package/v2Containers/MobilePush/Create/index.js +19 -42
- package/v2Containers/MobilePush/Edit/index.js +19 -42
- package/v2Containers/MobilePushNew/index.js +32 -12
- package/v2Containers/MobilepushWrapper/index.js +1 -3
- package/v2Containers/Rcs/index.js +37 -12
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +649 -12
- package/v2Containers/Sms/Create/index.js +3 -39
- package/v2Containers/Sms/Create/messages.js +0 -4
- package/v2Containers/Sms/Edit/index.js +3 -35
- package/v2Containers/Sms/commonMethods.js +6 -3
- package/v2Containers/SmsTrai/Edit/index.js +47 -11
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +147 -6
- package/v2Containers/SmsWrapper/index.js +0 -2
- package/v2Containers/Viber/index.js +1 -0
- package/v2Containers/WebPush/Create/hooks/useTagManagement.js +3 -1
- package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +7 -0
- package/v2Containers/WebPush/Create/index.js +2 -2
- package/v2Containers/WebPush/Create/utils/validation.js +2 -17
- package/v2Containers/WebPush/Create/utils/validation.test.js +24 -59
- package/v2Containers/Whatsapp/index.js +18 -10
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +26174 -4225
- package/v2Containers/Zalo/index.js +11 -3
- package/v2Containers/Sms/tests/commonMethods.test.js +0 -122
|
@@ -11216,8 +11216,10 @@ new message content.",
|
|
|
11216
11216
|
"createMessageMetaRequested": [Function],
|
|
11217
11217
|
"extractTagsRequested": [Function],
|
|
11218
11218
|
"getPrefilledValuesRequested": [Function],
|
|
11219
|
+
"getSenderDetailsRequested": [Function],
|
|
11219
11220
|
"getTestCustomersRequested": [Function],
|
|
11220
11221
|
"getTestGroupsRequested": [Function],
|
|
11222
|
+
"getWeCrmAccountsRequested": [Function],
|
|
11221
11223
|
"searchCustomersRequested": [Function],
|
|
11222
11224
|
"sendTestMessageRequested": [Function],
|
|
11223
11225
|
"updatePreviewRequested": [Function],
|
|
@@ -11249,6 +11251,7 @@ new message content.",
|
|
|
11249
11251
|
isExtractingTags={false}
|
|
11250
11252
|
isFetchingTestCustomers={false}
|
|
11251
11253
|
isFetchingTestGroups={false}
|
|
11254
|
+
isLoadingSenderDetails={false}
|
|
11252
11255
|
isSearchingCustomer={false}
|
|
11253
11256
|
isSendingTestMessage={false}
|
|
11254
11257
|
isUpdatingPreview={false}
|
|
@@ -11256,11 +11259,19 @@ new message content.",
|
|
|
11256
11259
|
onClose={[Function]}
|
|
11257
11260
|
prefilledValues={Object {}}
|
|
11258
11261
|
previewData={null}
|
|
11262
|
+
senderDetailsByChannel={
|
|
11263
|
+
Object {
|
|
11264
|
+
"EMAIL": Array [],
|
|
11265
|
+
"SMS": Array [],
|
|
11266
|
+
"WHATSAPP": Array [],
|
|
11267
|
+
}
|
|
11268
|
+
}
|
|
11259
11269
|
show={false}
|
|
11260
11270
|
testCustomers={Immutable.List []}
|
|
11261
11271
|
testGroups={Immutable.List []}
|
|
11262
11272
|
updatePreviewError={null}
|
|
11263
11273
|
updatePreviewErrors={Array []}
|
|
11274
|
+
wecrmAccounts={Array []}
|
|
11264
11275
|
>
|
|
11265
11276
|
<TestAndPreviewSlidebox
|
|
11266
11277
|
actions={
|
|
@@ -11272,8 +11283,10 @@ new message content.",
|
|
|
11272
11283
|
"createMessageMetaRequested": [Function],
|
|
11273
11284
|
"extractTagsRequested": [Function],
|
|
11274
11285
|
"getPrefilledValuesRequested": [Function],
|
|
11286
|
+
"getSenderDetailsRequested": [Function],
|
|
11275
11287
|
"getTestCustomersRequested": [Function],
|
|
11276
11288
|
"getTestGroupsRequested": [Function],
|
|
11289
|
+
"getWeCrmAccountsRequested": [Function],
|
|
11277
11290
|
"searchCustomersRequested": [Function],
|
|
11278
11291
|
"sendTestMessageRequested": [Function],
|
|
11279
11292
|
"updatePreviewRequested": [Function],
|
|
@@ -13553,18 +13566,28 @@ new message content.",
|
|
|
13553
13566
|
isExtractingTags={false}
|
|
13554
13567
|
isFetchingTestCustomers={false}
|
|
13555
13568
|
isFetchingTestGroups={false}
|
|
13569
|
+
isLoadingSenderDetails={false}
|
|
13556
13570
|
isSearchingCustomer={false}
|
|
13557
13571
|
isSendingTestMessage={false}
|
|
13558
13572
|
isUpdatingPreview={false}
|
|
13559
13573
|
messageMetaConfigId={null}
|
|
13560
13574
|
onClose={[Function]}
|
|
13575
|
+
orgUnitId={-1}
|
|
13561
13576
|
prefilledValues={Object {}}
|
|
13562
13577
|
previewData={null}
|
|
13578
|
+
senderDetailsByChannel={
|
|
13579
|
+
Object {
|
|
13580
|
+
"EMAIL": Array [],
|
|
13581
|
+
"SMS": Array [],
|
|
13582
|
+
"WHATSAPP": Array [],
|
|
13583
|
+
}
|
|
13584
|
+
}
|
|
13563
13585
|
show={false}
|
|
13564
13586
|
testCustomers={Immutable.List []}
|
|
13565
13587
|
testGroups={Immutable.List []}
|
|
13566
13588
|
updatePreviewError={null}
|
|
13567
13589
|
updatePreviewErrors={Array []}
|
|
13590
|
+
wecrmAccounts={Array []}
|
|
13568
13591
|
>
|
|
13569
13592
|
<CommonTestAndPreview
|
|
13570
13593
|
actions={
|
|
@@ -13576,8 +13599,10 @@ new message content.",
|
|
|
13576
13599
|
"createMessageMetaRequested": [Function],
|
|
13577
13600
|
"extractTagsRequested": [Function],
|
|
13578
13601
|
"getPrefilledValuesRequested": [Function],
|
|
13602
|
+
"getSenderDetailsRequested": [Function],
|
|
13579
13603
|
"getTestCustomersRequested": [Function],
|
|
13580
13604
|
"getTestGroupsRequested": [Function],
|
|
13605
|
+
"getWeCrmAccountsRequested": [Function],
|
|
13581
13606
|
"searchCustomersRequested": [Function],
|
|
13582
13607
|
"sendTestMessageRequested": [Function],
|
|
13583
13608
|
"updatePreviewRequested": [Function],
|
|
@@ -15864,16 +15889,25 @@ new message content.",
|
|
|
15864
15889
|
isExtractingTags={false}
|
|
15865
15890
|
isFetchingTestCustomers={false}
|
|
15866
15891
|
isFetchingTestGroups={false}
|
|
15892
|
+
isLoadingSenderDetails={false}
|
|
15867
15893
|
isSearchingCustomer={false}
|
|
15868
15894
|
isSendingTestMessage={false}
|
|
15869
15895
|
isUpdatingPreview={false}
|
|
15870
15896
|
messageMetaConfigId={null}
|
|
15871
15897
|
onClose={[Function]}
|
|
15898
|
+
orgUnitId={-1}
|
|
15872
15899
|
prefilledValues={Object {}}
|
|
15873
15900
|
previewData={null}
|
|
15874
15901
|
rcsIosPreview={false}
|
|
15875
15902
|
rcsOrientation={null}
|
|
15876
15903
|
rcsType={null}
|
|
15904
|
+
senderDetailsByChannel={
|
|
15905
|
+
Object {
|
|
15906
|
+
"EMAIL": Array [],
|
|
15907
|
+
"SMS": Array [],
|
|
15908
|
+
"WHATSAPP": Array [],
|
|
15909
|
+
}
|
|
15910
|
+
}
|
|
15877
15911
|
show={false}
|
|
15878
15912
|
templateLayoutType={null}
|
|
15879
15913
|
testCustomers={Immutable.List []}
|
|
@@ -15881,6 +15915,7 @@ new message content.",
|
|
|
15881
15915
|
unicodeEnabled={false}
|
|
15882
15916
|
updatePreviewError={null}
|
|
15883
15917
|
updatePreviewErrors={Array []}
|
|
15918
|
+
wecrmAccounts={Array []}
|
|
15884
15919
|
whatsappAccountName={null}
|
|
15885
15920
|
whatsappContentLen={0}
|
|
15886
15921
|
>
|
|
@@ -15924,13 +15959,31 @@ new message content.",
|
|
|
15924
15959
|
<SendTestMessage
|
|
15925
15960
|
channel="RCS"
|
|
15926
15961
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
15927
|
-
formData={
|
|
15962
|
+
formData={
|
|
15963
|
+
Object {
|
|
15964
|
+
"suggestions": Array [
|
|
15965
|
+
Object {
|
|
15966
|
+
"index": 0,
|
|
15967
|
+
"isSaved": true,
|
|
15968
|
+
"phoneNumber": "",
|
|
15969
|
+
"postback": "stop",
|
|
15970
|
+
"text": "stop",
|
|
15971
|
+
"type": "QUICK_REPLY",
|
|
15972
|
+
"url": null,
|
|
15973
|
+
},
|
|
15974
|
+
],
|
|
15975
|
+
"templateHeader": "",
|
|
15976
|
+
"templateMessage": "",
|
|
15977
|
+
}
|
|
15978
|
+
}
|
|
15928
15979
|
formatMessage={[Function]}
|
|
15929
15980
|
handleSendTestMessage={[Function]}
|
|
15930
15981
|
handleTestEntitiesChange={[Function]}
|
|
15931
15982
|
isFetchingTestCustomers={false}
|
|
15932
15983
|
isFetchingTestGroups={false}
|
|
15984
|
+
isLoadingSenderDetails={false}
|
|
15933
15985
|
isSendingTestMessage={false}
|
|
15986
|
+
onSaveDeliverySettings={[Function]}
|
|
15934
15987
|
selectedTestEntities={Array []}
|
|
15935
15988
|
testEntitiesTreeData={
|
|
15936
15989
|
Array [
|
|
@@ -15948,6 +16001,7 @@ new message content.",
|
|
|
15948
16001
|
},
|
|
15949
16002
|
]
|
|
15950
16003
|
}
|
|
16004
|
+
wecrmAccounts={Array []}
|
|
15951
16005
|
/>
|
|
15952
16006
|
</CapRow>
|
|
15953
16007
|
<CapDivider
|
|
@@ -27249,8 +27303,10 @@ new message content.",
|
|
|
27249
27303
|
"createMessageMetaRequested": [Function],
|
|
27250
27304
|
"extractTagsRequested": [Function],
|
|
27251
27305
|
"getPrefilledValuesRequested": [Function],
|
|
27306
|
+
"getSenderDetailsRequested": [Function],
|
|
27252
27307
|
"getTestCustomersRequested": [Function],
|
|
27253
27308
|
"getTestGroupsRequested": [Function],
|
|
27309
|
+
"getWeCrmAccountsRequested": [Function],
|
|
27254
27310
|
"searchCustomersRequested": [Function],
|
|
27255
27311
|
"sendTestMessageRequested": [Function],
|
|
27256
27312
|
"updatePreviewRequested": [Function],
|
|
@@ -27282,6 +27338,7 @@ new message content.",
|
|
|
27282
27338
|
isExtractingTags={false}
|
|
27283
27339
|
isFetchingTestCustomers={false}
|
|
27284
27340
|
isFetchingTestGroups={false}
|
|
27341
|
+
isLoadingSenderDetails={false}
|
|
27285
27342
|
isSearchingCustomer={false}
|
|
27286
27343
|
isSendingTestMessage={false}
|
|
27287
27344
|
isUpdatingPreview={false}
|
|
@@ -27289,11 +27346,19 @@ new message content.",
|
|
|
27289
27346
|
onClose={[Function]}
|
|
27290
27347
|
prefilledValues={Object {}}
|
|
27291
27348
|
previewData={null}
|
|
27349
|
+
senderDetailsByChannel={
|
|
27350
|
+
Object {
|
|
27351
|
+
"EMAIL": Array [],
|
|
27352
|
+
"SMS": Array [],
|
|
27353
|
+
"WHATSAPP": Array [],
|
|
27354
|
+
}
|
|
27355
|
+
}
|
|
27292
27356
|
show={false}
|
|
27293
27357
|
testCustomers={Immutable.List []}
|
|
27294
27358
|
testGroups={Immutable.List []}
|
|
27295
27359
|
updatePreviewError={null}
|
|
27296
27360
|
updatePreviewErrors={Array []}
|
|
27361
|
+
wecrmAccounts={Array []}
|
|
27297
27362
|
>
|
|
27298
27363
|
<TestAndPreviewSlidebox
|
|
27299
27364
|
actions={
|
|
@@ -27305,8 +27370,10 @@ new message content.",
|
|
|
27305
27370
|
"createMessageMetaRequested": [Function],
|
|
27306
27371
|
"extractTagsRequested": [Function],
|
|
27307
27372
|
"getPrefilledValuesRequested": [Function],
|
|
27373
|
+
"getSenderDetailsRequested": [Function],
|
|
27308
27374
|
"getTestCustomersRequested": [Function],
|
|
27309
27375
|
"getTestGroupsRequested": [Function],
|
|
27376
|
+
"getWeCrmAccountsRequested": [Function],
|
|
27310
27377
|
"searchCustomersRequested": [Function],
|
|
27311
27378
|
"sendTestMessageRequested": [Function],
|
|
27312
27379
|
"updatePreviewRequested": [Function],
|
|
@@ -29586,18 +29653,28 @@ new message content.",
|
|
|
29586
29653
|
isExtractingTags={false}
|
|
29587
29654
|
isFetchingTestCustomers={false}
|
|
29588
29655
|
isFetchingTestGroups={false}
|
|
29656
|
+
isLoadingSenderDetails={false}
|
|
29589
29657
|
isSearchingCustomer={false}
|
|
29590
29658
|
isSendingTestMessage={false}
|
|
29591
29659
|
isUpdatingPreview={false}
|
|
29592
29660
|
messageMetaConfigId={null}
|
|
29593
29661
|
onClose={[Function]}
|
|
29662
|
+
orgUnitId={-1}
|
|
29594
29663
|
prefilledValues={Object {}}
|
|
29595
29664
|
previewData={null}
|
|
29665
|
+
senderDetailsByChannel={
|
|
29666
|
+
Object {
|
|
29667
|
+
"EMAIL": Array [],
|
|
29668
|
+
"SMS": Array [],
|
|
29669
|
+
"WHATSAPP": Array [],
|
|
29670
|
+
}
|
|
29671
|
+
}
|
|
29596
29672
|
show={false}
|
|
29597
29673
|
testCustomers={Immutable.List []}
|
|
29598
29674
|
testGroups={Immutable.List []}
|
|
29599
29675
|
updatePreviewError={null}
|
|
29600
29676
|
updatePreviewErrors={Array []}
|
|
29677
|
+
wecrmAccounts={Array []}
|
|
29601
29678
|
>
|
|
29602
29679
|
<CommonTestAndPreview
|
|
29603
29680
|
actions={
|
|
@@ -29609,8 +29686,10 @@ new message content.",
|
|
|
29609
29686
|
"createMessageMetaRequested": [Function],
|
|
29610
29687
|
"extractTagsRequested": [Function],
|
|
29611
29688
|
"getPrefilledValuesRequested": [Function],
|
|
29689
|
+
"getSenderDetailsRequested": [Function],
|
|
29612
29690
|
"getTestCustomersRequested": [Function],
|
|
29613
29691
|
"getTestGroupsRequested": [Function],
|
|
29692
|
+
"getWeCrmAccountsRequested": [Function],
|
|
29614
29693
|
"searchCustomersRequested": [Function],
|
|
29615
29694
|
"sendTestMessageRequested": [Function],
|
|
29616
29695
|
"updatePreviewRequested": [Function],
|
|
@@ -31897,16 +31976,25 @@ new message content.",
|
|
|
31897
31976
|
isExtractingTags={false}
|
|
31898
31977
|
isFetchingTestCustomers={false}
|
|
31899
31978
|
isFetchingTestGroups={false}
|
|
31979
|
+
isLoadingSenderDetails={false}
|
|
31900
31980
|
isSearchingCustomer={false}
|
|
31901
31981
|
isSendingTestMessage={false}
|
|
31902
31982
|
isUpdatingPreview={false}
|
|
31903
31983
|
messageMetaConfigId={null}
|
|
31904
31984
|
onClose={[Function]}
|
|
31985
|
+
orgUnitId={-1}
|
|
31905
31986
|
prefilledValues={Object {}}
|
|
31906
31987
|
previewData={null}
|
|
31907
31988
|
rcsIosPreview={false}
|
|
31908
31989
|
rcsOrientation={null}
|
|
31909
31990
|
rcsType={null}
|
|
31991
|
+
senderDetailsByChannel={
|
|
31992
|
+
Object {
|
|
31993
|
+
"EMAIL": Array [],
|
|
31994
|
+
"SMS": Array [],
|
|
31995
|
+
"WHATSAPP": Array [],
|
|
31996
|
+
}
|
|
31997
|
+
}
|
|
31910
31998
|
show={false}
|
|
31911
31999
|
templateLayoutType={null}
|
|
31912
32000
|
testCustomers={Immutable.List []}
|
|
@@ -31914,6 +32002,7 @@ new message content.",
|
|
|
31914
32002
|
unicodeEnabled={false}
|
|
31915
32003
|
updatePreviewError={null}
|
|
31916
32004
|
updatePreviewErrors={Array []}
|
|
32005
|
+
wecrmAccounts={Array []}
|
|
31917
32006
|
whatsappAccountName={null}
|
|
31918
32007
|
whatsappContentLen={0}
|
|
31919
32008
|
>
|
|
@@ -31957,13 +32046,31 @@ new message content.",
|
|
|
31957
32046
|
<SendTestMessage
|
|
31958
32047
|
channel="RCS"
|
|
31959
32048
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
31960
|
-
formData={
|
|
32049
|
+
formData={
|
|
32050
|
+
Object {
|
|
32051
|
+
"suggestions": Array [
|
|
32052
|
+
Object {
|
|
32053
|
+
"index": 0,
|
|
32054
|
+
"isSaved": true,
|
|
32055
|
+
"phoneNumber": "",
|
|
32056
|
+
"postback": "stop",
|
|
32057
|
+
"text": "stop",
|
|
32058
|
+
"type": "QUICK_REPLY",
|
|
32059
|
+
"url": null,
|
|
32060
|
+
},
|
|
32061
|
+
],
|
|
32062
|
+
"templateHeader": "",
|
|
32063
|
+
"templateMessage": "",
|
|
32064
|
+
}
|
|
32065
|
+
}
|
|
31961
32066
|
formatMessage={[Function]}
|
|
31962
32067
|
handleSendTestMessage={[Function]}
|
|
31963
32068
|
handleTestEntitiesChange={[Function]}
|
|
31964
32069
|
isFetchingTestCustomers={false}
|
|
31965
32070
|
isFetchingTestGroups={false}
|
|
32071
|
+
isLoadingSenderDetails={false}
|
|
31966
32072
|
isSendingTestMessage={false}
|
|
32073
|
+
onSaveDeliverySettings={[Function]}
|
|
31967
32074
|
selectedTestEntities={Array []}
|
|
31968
32075
|
testEntitiesTreeData={
|
|
31969
32076
|
Array [
|
|
@@ -31981,6 +32088,7 @@ new message content.",
|
|
|
31981
32088
|
},
|
|
31982
32089
|
]
|
|
31983
32090
|
}
|
|
32091
|
+
wecrmAccounts={Array []}
|
|
31984
32092
|
/>
|
|
31985
32093
|
</CapRow>
|
|
31986
32094
|
<CapDivider
|
|
@@ -43804,8 +43912,10 @@ new message content.",
|
|
|
43804
43912
|
"createMessageMetaRequested": [Function],
|
|
43805
43913
|
"extractTagsRequested": [Function],
|
|
43806
43914
|
"getPrefilledValuesRequested": [Function],
|
|
43915
|
+
"getSenderDetailsRequested": [Function],
|
|
43807
43916
|
"getTestCustomersRequested": [Function],
|
|
43808
43917
|
"getTestGroupsRequested": [Function],
|
|
43918
|
+
"getWeCrmAccountsRequested": [Function],
|
|
43809
43919
|
"searchCustomersRequested": [Function],
|
|
43810
43920
|
"sendTestMessageRequested": [Function],
|
|
43811
43921
|
"updatePreviewRequested": [Function],
|
|
@@ -43837,6 +43947,7 @@ new message content.",
|
|
|
43837
43947
|
isExtractingTags={false}
|
|
43838
43948
|
isFetchingTestCustomers={false}
|
|
43839
43949
|
isFetchingTestGroups={false}
|
|
43950
|
+
isLoadingSenderDetails={false}
|
|
43840
43951
|
isSearchingCustomer={false}
|
|
43841
43952
|
isSendingTestMessage={false}
|
|
43842
43953
|
isUpdatingPreview={false}
|
|
@@ -43844,11 +43955,19 @@ new message content.",
|
|
|
43844
43955
|
onClose={[Function]}
|
|
43845
43956
|
prefilledValues={Object {}}
|
|
43846
43957
|
previewData={null}
|
|
43958
|
+
senderDetailsByChannel={
|
|
43959
|
+
Object {
|
|
43960
|
+
"EMAIL": Array [],
|
|
43961
|
+
"SMS": Array [],
|
|
43962
|
+
"WHATSAPP": Array [],
|
|
43963
|
+
}
|
|
43964
|
+
}
|
|
43847
43965
|
show={false}
|
|
43848
43966
|
testCustomers={Immutable.List []}
|
|
43849
43967
|
testGroups={Immutable.List []}
|
|
43850
43968
|
updatePreviewError={null}
|
|
43851
43969
|
updatePreviewErrors={Array []}
|
|
43970
|
+
wecrmAccounts={Array []}
|
|
43852
43971
|
>
|
|
43853
43972
|
<TestAndPreviewSlidebox
|
|
43854
43973
|
actions={
|
|
@@ -43860,8 +43979,10 @@ new message content.",
|
|
|
43860
43979
|
"createMessageMetaRequested": [Function],
|
|
43861
43980
|
"extractTagsRequested": [Function],
|
|
43862
43981
|
"getPrefilledValuesRequested": [Function],
|
|
43982
|
+
"getSenderDetailsRequested": [Function],
|
|
43863
43983
|
"getTestCustomersRequested": [Function],
|
|
43864
43984
|
"getTestGroupsRequested": [Function],
|
|
43985
|
+
"getWeCrmAccountsRequested": [Function],
|
|
43865
43986
|
"searchCustomersRequested": [Function],
|
|
43866
43987
|
"sendTestMessageRequested": [Function],
|
|
43867
43988
|
"updatePreviewRequested": [Function],
|
|
@@ -46141,18 +46262,28 @@ new message content.",
|
|
|
46141
46262
|
isExtractingTags={false}
|
|
46142
46263
|
isFetchingTestCustomers={false}
|
|
46143
46264
|
isFetchingTestGroups={false}
|
|
46265
|
+
isLoadingSenderDetails={false}
|
|
46144
46266
|
isSearchingCustomer={false}
|
|
46145
46267
|
isSendingTestMessage={false}
|
|
46146
46268
|
isUpdatingPreview={false}
|
|
46147
46269
|
messageMetaConfigId={null}
|
|
46148
46270
|
onClose={[Function]}
|
|
46271
|
+
orgUnitId={-1}
|
|
46149
46272
|
prefilledValues={Object {}}
|
|
46150
46273
|
previewData={null}
|
|
46274
|
+
senderDetailsByChannel={
|
|
46275
|
+
Object {
|
|
46276
|
+
"EMAIL": Array [],
|
|
46277
|
+
"SMS": Array [],
|
|
46278
|
+
"WHATSAPP": Array [],
|
|
46279
|
+
}
|
|
46280
|
+
}
|
|
46151
46281
|
show={false}
|
|
46152
46282
|
testCustomers={Immutable.List []}
|
|
46153
46283
|
testGroups={Immutable.List []}
|
|
46154
46284
|
updatePreviewError={null}
|
|
46155
46285
|
updatePreviewErrors={Array []}
|
|
46286
|
+
wecrmAccounts={Array []}
|
|
46156
46287
|
>
|
|
46157
46288
|
<CommonTestAndPreview
|
|
46158
46289
|
actions={
|
|
@@ -46164,8 +46295,10 @@ new message content.",
|
|
|
46164
46295
|
"createMessageMetaRequested": [Function],
|
|
46165
46296
|
"extractTagsRequested": [Function],
|
|
46166
46297
|
"getPrefilledValuesRequested": [Function],
|
|
46298
|
+
"getSenderDetailsRequested": [Function],
|
|
46167
46299
|
"getTestCustomersRequested": [Function],
|
|
46168
46300
|
"getTestGroupsRequested": [Function],
|
|
46301
|
+
"getWeCrmAccountsRequested": [Function],
|
|
46169
46302
|
"searchCustomersRequested": [Function],
|
|
46170
46303
|
"sendTestMessageRequested": [Function],
|
|
46171
46304
|
"updatePreviewRequested": [Function],
|
|
@@ -48452,16 +48585,25 @@ new message content.",
|
|
|
48452
48585
|
isExtractingTags={false}
|
|
48453
48586
|
isFetchingTestCustomers={false}
|
|
48454
48587
|
isFetchingTestGroups={false}
|
|
48588
|
+
isLoadingSenderDetails={false}
|
|
48455
48589
|
isSearchingCustomer={false}
|
|
48456
48590
|
isSendingTestMessage={false}
|
|
48457
48591
|
isUpdatingPreview={false}
|
|
48458
48592
|
messageMetaConfigId={null}
|
|
48459
48593
|
onClose={[Function]}
|
|
48594
|
+
orgUnitId={-1}
|
|
48460
48595
|
prefilledValues={Object {}}
|
|
48461
48596
|
previewData={null}
|
|
48462
48597
|
rcsIosPreview={false}
|
|
48463
48598
|
rcsOrientation={null}
|
|
48464
48599
|
rcsType={null}
|
|
48600
|
+
senderDetailsByChannel={
|
|
48601
|
+
Object {
|
|
48602
|
+
"EMAIL": Array [],
|
|
48603
|
+
"SMS": Array [],
|
|
48604
|
+
"WHATSAPP": Array [],
|
|
48605
|
+
}
|
|
48606
|
+
}
|
|
48465
48607
|
show={false}
|
|
48466
48608
|
templateLayoutType={null}
|
|
48467
48609
|
testCustomers={Immutable.List []}
|
|
@@ -48469,6 +48611,7 @@ new message content.",
|
|
|
48469
48611
|
unicodeEnabled={false}
|
|
48470
48612
|
updatePreviewError={null}
|
|
48471
48613
|
updatePreviewErrors={Array []}
|
|
48614
|
+
wecrmAccounts={Array []}
|
|
48472
48615
|
whatsappAccountName={null}
|
|
48473
48616
|
whatsappContentLen={0}
|
|
48474
48617
|
>
|
|
@@ -48512,13 +48655,31 @@ new message content.",
|
|
|
48512
48655
|
<SendTestMessage
|
|
48513
48656
|
channel="RCS"
|
|
48514
48657
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
48515
|
-
formData={
|
|
48658
|
+
formData={
|
|
48659
|
+
Object {
|
|
48660
|
+
"suggestions": Array [
|
|
48661
|
+
Object {
|
|
48662
|
+
"index": 0,
|
|
48663
|
+
"isSaved": true,
|
|
48664
|
+
"phoneNumber": "",
|
|
48665
|
+
"postback": "stop",
|
|
48666
|
+
"text": "stop",
|
|
48667
|
+
"type": "QUICK_REPLY",
|
|
48668
|
+
"url": null,
|
|
48669
|
+
},
|
|
48670
|
+
],
|
|
48671
|
+
"templateHeader": "",
|
|
48672
|
+
"templateMessage": "",
|
|
48673
|
+
}
|
|
48674
|
+
}
|
|
48516
48675
|
formatMessage={[Function]}
|
|
48517
48676
|
handleSendTestMessage={[Function]}
|
|
48518
48677
|
handleTestEntitiesChange={[Function]}
|
|
48519
48678
|
isFetchingTestCustomers={false}
|
|
48520
48679
|
isFetchingTestGroups={false}
|
|
48680
|
+
isLoadingSenderDetails={false}
|
|
48521
48681
|
isSendingTestMessage={false}
|
|
48682
|
+
onSaveDeliverySettings={[Function]}
|
|
48522
48683
|
selectedTestEntities={Array []}
|
|
48523
48684
|
testEntitiesTreeData={
|
|
48524
48685
|
Array [
|
|
@@ -48536,6 +48697,7 @@ new message content.",
|
|
|
48536
48697
|
},
|
|
48537
48698
|
]
|
|
48538
48699
|
}
|
|
48700
|
+
wecrmAccounts={Array []}
|
|
48539
48701
|
/>
|
|
48540
48702
|
</CapRow>
|
|
48541
48703
|
<CapDivider
|
|
@@ -60907,8 +61069,10 @@ new message content.",
|
|
|
60907
61069
|
"createMessageMetaRequested": [Function],
|
|
60908
61070
|
"extractTagsRequested": [Function],
|
|
60909
61071
|
"getPrefilledValuesRequested": [Function],
|
|
61072
|
+
"getSenderDetailsRequested": [Function],
|
|
60910
61073
|
"getTestCustomersRequested": [Function],
|
|
60911
61074
|
"getTestGroupsRequested": [Function],
|
|
61075
|
+
"getWeCrmAccountsRequested": [Function],
|
|
60912
61076
|
"searchCustomersRequested": [Function],
|
|
60913
61077
|
"sendTestMessageRequested": [Function],
|
|
60914
61078
|
"updatePreviewRequested": [Function],
|
|
@@ -60940,6 +61104,7 @@ new message content.",
|
|
|
60940
61104
|
isExtractingTags={false}
|
|
60941
61105
|
isFetchingTestCustomers={false}
|
|
60942
61106
|
isFetchingTestGroups={false}
|
|
61107
|
+
isLoadingSenderDetails={false}
|
|
60943
61108
|
isSearchingCustomer={false}
|
|
60944
61109
|
isSendingTestMessage={false}
|
|
60945
61110
|
isUpdatingPreview={false}
|
|
@@ -60947,11 +61112,19 @@ new message content.",
|
|
|
60947
61112
|
onClose={[Function]}
|
|
60948
61113
|
prefilledValues={Object {}}
|
|
60949
61114
|
previewData={null}
|
|
61115
|
+
senderDetailsByChannel={
|
|
61116
|
+
Object {
|
|
61117
|
+
"EMAIL": Array [],
|
|
61118
|
+
"SMS": Array [],
|
|
61119
|
+
"WHATSAPP": Array [],
|
|
61120
|
+
}
|
|
61121
|
+
}
|
|
60950
61122
|
show={false}
|
|
60951
61123
|
testCustomers={Immutable.List []}
|
|
60952
61124
|
testGroups={Immutable.List []}
|
|
60953
61125
|
updatePreviewError={null}
|
|
60954
61126
|
updatePreviewErrors={Array []}
|
|
61127
|
+
wecrmAccounts={Array []}
|
|
60955
61128
|
>
|
|
60956
61129
|
<TestAndPreviewSlidebox
|
|
60957
61130
|
actions={
|
|
@@ -60963,8 +61136,10 @@ new message content.",
|
|
|
60963
61136
|
"createMessageMetaRequested": [Function],
|
|
60964
61137
|
"extractTagsRequested": [Function],
|
|
60965
61138
|
"getPrefilledValuesRequested": [Function],
|
|
61139
|
+
"getSenderDetailsRequested": [Function],
|
|
60966
61140
|
"getTestCustomersRequested": [Function],
|
|
60967
61141
|
"getTestGroupsRequested": [Function],
|
|
61142
|
+
"getWeCrmAccountsRequested": [Function],
|
|
60968
61143
|
"searchCustomersRequested": [Function],
|
|
60969
61144
|
"sendTestMessageRequested": [Function],
|
|
60970
61145
|
"updatePreviewRequested": [Function],
|
|
@@ -63244,18 +63419,28 @@ new message content.",
|
|
|
63244
63419
|
isExtractingTags={false}
|
|
63245
63420
|
isFetchingTestCustomers={false}
|
|
63246
63421
|
isFetchingTestGroups={false}
|
|
63422
|
+
isLoadingSenderDetails={false}
|
|
63247
63423
|
isSearchingCustomer={false}
|
|
63248
63424
|
isSendingTestMessage={false}
|
|
63249
63425
|
isUpdatingPreview={false}
|
|
63250
63426
|
messageMetaConfigId={null}
|
|
63251
63427
|
onClose={[Function]}
|
|
63428
|
+
orgUnitId={-1}
|
|
63252
63429
|
prefilledValues={Object {}}
|
|
63253
63430
|
previewData={null}
|
|
63431
|
+
senderDetailsByChannel={
|
|
63432
|
+
Object {
|
|
63433
|
+
"EMAIL": Array [],
|
|
63434
|
+
"SMS": Array [],
|
|
63435
|
+
"WHATSAPP": Array [],
|
|
63436
|
+
}
|
|
63437
|
+
}
|
|
63254
63438
|
show={false}
|
|
63255
63439
|
testCustomers={Immutable.List []}
|
|
63256
63440
|
testGroups={Immutable.List []}
|
|
63257
63441
|
updatePreviewError={null}
|
|
63258
63442
|
updatePreviewErrors={Array []}
|
|
63443
|
+
wecrmAccounts={Array []}
|
|
63259
63444
|
>
|
|
63260
63445
|
<CommonTestAndPreview
|
|
63261
63446
|
actions={
|
|
@@ -63267,8 +63452,10 @@ new message content.",
|
|
|
63267
63452
|
"createMessageMetaRequested": [Function],
|
|
63268
63453
|
"extractTagsRequested": [Function],
|
|
63269
63454
|
"getPrefilledValuesRequested": [Function],
|
|
63455
|
+
"getSenderDetailsRequested": [Function],
|
|
63270
63456
|
"getTestCustomersRequested": [Function],
|
|
63271
63457
|
"getTestGroupsRequested": [Function],
|
|
63458
|
+
"getWeCrmAccountsRequested": [Function],
|
|
63272
63459
|
"searchCustomersRequested": [Function],
|
|
63273
63460
|
"sendTestMessageRequested": [Function],
|
|
63274
63461
|
"updatePreviewRequested": [Function],
|
|
@@ -65555,16 +65742,25 @@ new message content.",
|
|
|
65555
65742
|
isExtractingTags={false}
|
|
65556
65743
|
isFetchingTestCustomers={false}
|
|
65557
65744
|
isFetchingTestGroups={false}
|
|
65745
|
+
isLoadingSenderDetails={false}
|
|
65558
65746
|
isSearchingCustomer={false}
|
|
65559
65747
|
isSendingTestMessage={false}
|
|
65560
65748
|
isUpdatingPreview={false}
|
|
65561
65749
|
messageMetaConfigId={null}
|
|
65562
65750
|
onClose={[Function]}
|
|
65751
|
+
orgUnitId={-1}
|
|
65563
65752
|
prefilledValues={Object {}}
|
|
65564
65753
|
previewData={null}
|
|
65565
65754
|
rcsIosPreview={false}
|
|
65566
65755
|
rcsOrientation={null}
|
|
65567
65756
|
rcsType={null}
|
|
65757
|
+
senderDetailsByChannel={
|
|
65758
|
+
Object {
|
|
65759
|
+
"EMAIL": Array [],
|
|
65760
|
+
"SMS": Array [],
|
|
65761
|
+
"WHATSAPP": Array [],
|
|
65762
|
+
}
|
|
65763
|
+
}
|
|
65568
65764
|
show={false}
|
|
65569
65765
|
templateLayoutType={null}
|
|
65570
65766
|
testCustomers={Immutable.List []}
|
|
@@ -65572,6 +65768,7 @@ new message content.",
|
|
|
65572
65768
|
unicodeEnabled={false}
|
|
65573
65769
|
updatePreviewError={null}
|
|
65574
65770
|
updatePreviewErrors={Array []}
|
|
65771
|
+
wecrmAccounts={Array []}
|
|
65575
65772
|
whatsappAccountName={null}
|
|
65576
65773
|
whatsappContentLen={0}
|
|
65577
65774
|
>
|
|
@@ -65615,13 +65812,31 @@ new message content.",
|
|
|
65615
65812
|
<SendTestMessage
|
|
65616
65813
|
channel="RCS"
|
|
65617
65814
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
65618
|
-
formData={
|
|
65815
|
+
formData={
|
|
65816
|
+
Object {
|
|
65817
|
+
"suggestions": Array [
|
|
65818
|
+
Object {
|
|
65819
|
+
"index": 0,
|
|
65820
|
+
"isSaved": true,
|
|
65821
|
+
"phoneNumber": "",
|
|
65822
|
+
"postback": "stop",
|
|
65823
|
+
"text": "stop",
|
|
65824
|
+
"type": "QUICK_REPLY",
|
|
65825
|
+
"url": null,
|
|
65826
|
+
},
|
|
65827
|
+
],
|
|
65828
|
+
"templateHeader": "",
|
|
65829
|
+
"templateMessage": "",
|
|
65830
|
+
}
|
|
65831
|
+
}
|
|
65619
65832
|
formatMessage={[Function]}
|
|
65620
65833
|
handleSendTestMessage={[Function]}
|
|
65621
65834
|
handleTestEntitiesChange={[Function]}
|
|
65622
65835
|
isFetchingTestCustomers={false}
|
|
65623
65836
|
isFetchingTestGroups={false}
|
|
65837
|
+
isLoadingSenderDetails={false}
|
|
65624
65838
|
isSendingTestMessage={false}
|
|
65839
|
+
onSaveDeliverySettings={[Function]}
|
|
65625
65840
|
selectedTestEntities={Array []}
|
|
65626
65841
|
testEntitiesTreeData={
|
|
65627
65842
|
Array [
|
|
@@ -65639,6 +65854,7 @@ new message content.",
|
|
|
65639
65854
|
},
|
|
65640
65855
|
]
|
|
65641
65856
|
}
|
|
65857
|
+
wecrmAccounts={Array []}
|
|
65642
65858
|
/>
|
|
65643
65859
|
</CapRow>
|
|
65644
65860
|
<CapDivider
|
|
@@ -76940,8 +77156,10 @@ new message content.",
|
|
|
76940
77156
|
"createMessageMetaRequested": [Function],
|
|
76941
77157
|
"extractTagsRequested": [Function],
|
|
76942
77158
|
"getPrefilledValuesRequested": [Function],
|
|
77159
|
+
"getSenderDetailsRequested": [Function],
|
|
76943
77160
|
"getTestCustomersRequested": [Function],
|
|
76944
77161
|
"getTestGroupsRequested": [Function],
|
|
77162
|
+
"getWeCrmAccountsRequested": [Function],
|
|
76945
77163
|
"searchCustomersRequested": [Function],
|
|
76946
77164
|
"sendTestMessageRequested": [Function],
|
|
76947
77165
|
"updatePreviewRequested": [Function],
|
|
@@ -76973,6 +77191,7 @@ new message content.",
|
|
|
76973
77191
|
isExtractingTags={false}
|
|
76974
77192
|
isFetchingTestCustomers={false}
|
|
76975
77193
|
isFetchingTestGroups={false}
|
|
77194
|
+
isLoadingSenderDetails={false}
|
|
76976
77195
|
isSearchingCustomer={false}
|
|
76977
77196
|
isSendingTestMessage={false}
|
|
76978
77197
|
isUpdatingPreview={false}
|
|
@@ -76980,11 +77199,19 @@ new message content.",
|
|
|
76980
77199
|
onClose={[Function]}
|
|
76981
77200
|
prefilledValues={Object {}}
|
|
76982
77201
|
previewData={null}
|
|
77202
|
+
senderDetailsByChannel={
|
|
77203
|
+
Object {
|
|
77204
|
+
"EMAIL": Array [],
|
|
77205
|
+
"SMS": Array [],
|
|
77206
|
+
"WHATSAPP": Array [],
|
|
77207
|
+
}
|
|
77208
|
+
}
|
|
76983
77209
|
show={false}
|
|
76984
77210
|
testCustomers={Immutable.List []}
|
|
76985
77211
|
testGroups={Immutable.List []}
|
|
76986
77212
|
updatePreviewError={null}
|
|
76987
77213
|
updatePreviewErrors={Array []}
|
|
77214
|
+
wecrmAccounts={Array []}
|
|
76988
77215
|
>
|
|
76989
77216
|
<TestAndPreviewSlidebox
|
|
76990
77217
|
actions={
|
|
@@ -76996,8 +77223,10 @@ new message content.",
|
|
|
76996
77223
|
"createMessageMetaRequested": [Function],
|
|
76997
77224
|
"extractTagsRequested": [Function],
|
|
76998
77225
|
"getPrefilledValuesRequested": [Function],
|
|
77226
|
+
"getSenderDetailsRequested": [Function],
|
|
76999
77227
|
"getTestCustomersRequested": [Function],
|
|
77000
77228
|
"getTestGroupsRequested": [Function],
|
|
77229
|
+
"getWeCrmAccountsRequested": [Function],
|
|
77001
77230
|
"searchCustomersRequested": [Function],
|
|
77002
77231
|
"sendTestMessageRequested": [Function],
|
|
77003
77232
|
"updatePreviewRequested": [Function],
|
|
@@ -79277,18 +79506,28 @@ new message content.",
|
|
|
79277
79506
|
isExtractingTags={false}
|
|
79278
79507
|
isFetchingTestCustomers={false}
|
|
79279
79508
|
isFetchingTestGroups={false}
|
|
79509
|
+
isLoadingSenderDetails={false}
|
|
79280
79510
|
isSearchingCustomer={false}
|
|
79281
79511
|
isSendingTestMessage={false}
|
|
79282
79512
|
isUpdatingPreview={false}
|
|
79283
79513
|
messageMetaConfigId={null}
|
|
79284
79514
|
onClose={[Function]}
|
|
79515
|
+
orgUnitId={-1}
|
|
79285
79516
|
prefilledValues={Object {}}
|
|
79286
79517
|
previewData={null}
|
|
79518
|
+
senderDetailsByChannel={
|
|
79519
|
+
Object {
|
|
79520
|
+
"EMAIL": Array [],
|
|
79521
|
+
"SMS": Array [],
|
|
79522
|
+
"WHATSAPP": Array [],
|
|
79523
|
+
}
|
|
79524
|
+
}
|
|
79287
79525
|
show={false}
|
|
79288
79526
|
testCustomers={Immutable.List []}
|
|
79289
79527
|
testGroups={Immutable.List []}
|
|
79290
79528
|
updatePreviewError={null}
|
|
79291
79529
|
updatePreviewErrors={Array []}
|
|
79530
|
+
wecrmAccounts={Array []}
|
|
79292
79531
|
>
|
|
79293
79532
|
<CommonTestAndPreview
|
|
79294
79533
|
actions={
|
|
@@ -79300,8 +79539,10 @@ new message content.",
|
|
|
79300
79539
|
"createMessageMetaRequested": [Function],
|
|
79301
79540
|
"extractTagsRequested": [Function],
|
|
79302
79541
|
"getPrefilledValuesRequested": [Function],
|
|
79542
|
+
"getSenderDetailsRequested": [Function],
|
|
79303
79543
|
"getTestCustomersRequested": [Function],
|
|
79304
79544
|
"getTestGroupsRequested": [Function],
|
|
79545
|
+
"getWeCrmAccountsRequested": [Function],
|
|
79305
79546
|
"searchCustomersRequested": [Function],
|
|
79306
79547
|
"sendTestMessageRequested": [Function],
|
|
79307
79548
|
"updatePreviewRequested": [Function],
|
|
@@ -81588,16 +81829,25 @@ new message content.",
|
|
|
81588
81829
|
isExtractingTags={false}
|
|
81589
81830
|
isFetchingTestCustomers={false}
|
|
81590
81831
|
isFetchingTestGroups={false}
|
|
81832
|
+
isLoadingSenderDetails={false}
|
|
81591
81833
|
isSearchingCustomer={false}
|
|
81592
81834
|
isSendingTestMessage={false}
|
|
81593
81835
|
isUpdatingPreview={false}
|
|
81594
81836
|
messageMetaConfigId={null}
|
|
81595
81837
|
onClose={[Function]}
|
|
81838
|
+
orgUnitId={-1}
|
|
81596
81839
|
prefilledValues={Object {}}
|
|
81597
81840
|
previewData={null}
|
|
81598
81841
|
rcsIosPreview={false}
|
|
81599
81842
|
rcsOrientation={null}
|
|
81600
81843
|
rcsType={null}
|
|
81844
|
+
senderDetailsByChannel={
|
|
81845
|
+
Object {
|
|
81846
|
+
"EMAIL": Array [],
|
|
81847
|
+
"SMS": Array [],
|
|
81848
|
+
"WHATSAPP": Array [],
|
|
81849
|
+
}
|
|
81850
|
+
}
|
|
81601
81851
|
show={false}
|
|
81602
81852
|
templateLayoutType={null}
|
|
81603
81853
|
testCustomers={Immutable.List []}
|
|
@@ -81605,6 +81855,7 @@ new message content.",
|
|
|
81605
81855
|
unicodeEnabled={false}
|
|
81606
81856
|
updatePreviewError={null}
|
|
81607
81857
|
updatePreviewErrors={Array []}
|
|
81858
|
+
wecrmAccounts={Array []}
|
|
81608
81859
|
whatsappAccountName={null}
|
|
81609
81860
|
whatsappContentLen={0}
|
|
81610
81861
|
>
|
|
@@ -81648,13 +81899,31 @@ new message content.",
|
|
|
81648
81899
|
<SendTestMessage
|
|
81649
81900
|
channel="RCS"
|
|
81650
81901
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
81651
|
-
formData={
|
|
81902
|
+
formData={
|
|
81903
|
+
Object {
|
|
81904
|
+
"suggestions": Array [
|
|
81905
|
+
Object {
|
|
81906
|
+
"index": 0,
|
|
81907
|
+
"isSaved": true,
|
|
81908
|
+
"phoneNumber": "",
|
|
81909
|
+
"postback": "stop",
|
|
81910
|
+
"text": "stop",
|
|
81911
|
+
"type": "QUICK_REPLY",
|
|
81912
|
+
"url": null,
|
|
81913
|
+
},
|
|
81914
|
+
],
|
|
81915
|
+
"templateHeader": "",
|
|
81916
|
+
"templateMessage": "",
|
|
81917
|
+
}
|
|
81918
|
+
}
|
|
81652
81919
|
formatMessage={[Function]}
|
|
81653
81920
|
handleSendTestMessage={[Function]}
|
|
81654
81921
|
handleTestEntitiesChange={[Function]}
|
|
81655
81922
|
isFetchingTestCustomers={false}
|
|
81656
81923
|
isFetchingTestGroups={false}
|
|
81924
|
+
isLoadingSenderDetails={false}
|
|
81657
81925
|
isSendingTestMessage={false}
|
|
81926
|
+
onSaveDeliverySettings={[Function]}
|
|
81658
81927
|
selectedTestEntities={Array []}
|
|
81659
81928
|
testEntitiesTreeData={
|
|
81660
81929
|
Array [
|
|
@@ -81672,6 +81941,7 @@ new message content.",
|
|
|
81672
81941
|
},
|
|
81673
81942
|
]
|
|
81674
81943
|
}
|
|
81944
|
+
wecrmAccounts={Array []}
|
|
81675
81945
|
/>
|
|
81676
81946
|
</CapRow>
|
|
81677
81947
|
<CapDivider
|
|
@@ -96289,8 +96559,10 @@ new message content.",
|
|
|
96289
96559
|
"createMessageMetaRequested": [Function],
|
|
96290
96560
|
"extractTagsRequested": [Function],
|
|
96291
96561
|
"getPrefilledValuesRequested": [Function],
|
|
96562
|
+
"getSenderDetailsRequested": [Function],
|
|
96292
96563
|
"getTestCustomersRequested": [Function],
|
|
96293
96564
|
"getTestGroupsRequested": [Function],
|
|
96565
|
+
"getWeCrmAccountsRequested": [Function],
|
|
96294
96566
|
"searchCustomersRequested": [Function],
|
|
96295
96567
|
"sendTestMessageRequested": [Function],
|
|
96296
96568
|
"updatePreviewRequested": [Function],
|
|
@@ -96322,6 +96594,7 @@ new message content.",
|
|
|
96322
96594
|
isExtractingTags={false}
|
|
96323
96595
|
isFetchingTestCustomers={false}
|
|
96324
96596
|
isFetchingTestGroups={false}
|
|
96597
|
+
isLoadingSenderDetails={false}
|
|
96325
96598
|
isSearchingCustomer={false}
|
|
96326
96599
|
isSendingTestMessage={false}
|
|
96327
96600
|
isUpdatingPreview={false}
|
|
@@ -96329,11 +96602,19 @@ new message content.",
|
|
|
96329
96602
|
onClose={[Function]}
|
|
96330
96603
|
prefilledValues={Object {}}
|
|
96331
96604
|
previewData={null}
|
|
96605
|
+
senderDetailsByChannel={
|
|
96606
|
+
Object {
|
|
96607
|
+
"EMAIL": Array [],
|
|
96608
|
+
"SMS": Array [],
|
|
96609
|
+
"WHATSAPP": Array [],
|
|
96610
|
+
}
|
|
96611
|
+
}
|
|
96332
96612
|
show={false}
|
|
96333
96613
|
testCustomers={Immutable.List []}
|
|
96334
96614
|
testGroups={Immutable.List []}
|
|
96335
96615
|
updatePreviewError={null}
|
|
96336
96616
|
updatePreviewErrors={Array []}
|
|
96617
|
+
wecrmAccounts={Array []}
|
|
96337
96618
|
>
|
|
96338
96619
|
<TestAndPreviewSlidebox
|
|
96339
96620
|
actions={
|
|
@@ -96345,8 +96626,10 @@ new message content.",
|
|
|
96345
96626
|
"createMessageMetaRequested": [Function],
|
|
96346
96627
|
"extractTagsRequested": [Function],
|
|
96347
96628
|
"getPrefilledValuesRequested": [Function],
|
|
96629
|
+
"getSenderDetailsRequested": [Function],
|
|
96348
96630
|
"getTestCustomersRequested": [Function],
|
|
96349
96631
|
"getTestGroupsRequested": [Function],
|
|
96632
|
+
"getWeCrmAccountsRequested": [Function],
|
|
96350
96633
|
"searchCustomersRequested": [Function],
|
|
96351
96634
|
"sendTestMessageRequested": [Function],
|
|
96352
96635
|
"updatePreviewRequested": [Function],
|
|
@@ -98626,18 +98909,28 @@ new message content.",
|
|
|
98626
98909
|
isExtractingTags={false}
|
|
98627
98910
|
isFetchingTestCustomers={false}
|
|
98628
98911
|
isFetchingTestGroups={false}
|
|
98912
|
+
isLoadingSenderDetails={false}
|
|
98629
98913
|
isSearchingCustomer={false}
|
|
98630
98914
|
isSendingTestMessage={false}
|
|
98631
98915
|
isUpdatingPreview={false}
|
|
98632
98916
|
messageMetaConfigId={null}
|
|
98633
98917
|
onClose={[Function]}
|
|
98918
|
+
orgUnitId={-1}
|
|
98634
98919
|
prefilledValues={Object {}}
|
|
98635
98920
|
previewData={null}
|
|
98921
|
+
senderDetailsByChannel={
|
|
98922
|
+
Object {
|
|
98923
|
+
"EMAIL": Array [],
|
|
98924
|
+
"SMS": Array [],
|
|
98925
|
+
"WHATSAPP": Array [],
|
|
98926
|
+
}
|
|
98927
|
+
}
|
|
98636
98928
|
show={false}
|
|
98637
98929
|
testCustomers={Immutable.List []}
|
|
98638
98930
|
testGroups={Immutable.List []}
|
|
98639
98931
|
updatePreviewError={null}
|
|
98640
98932
|
updatePreviewErrors={Array []}
|
|
98933
|
+
wecrmAccounts={Array []}
|
|
98641
98934
|
>
|
|
98642
98935
|
<CommonTestAndPreview
|
|
98643
98936
|
actions={
|
|
@@ -98649,8 +98942,10 @@ new message content.",
|
|
|
98649
98942
|
"createMessageMetaRequested": [Function],
|
|
98650
98943
|
"extractTagsRequested": [Function],
|
|
98651
98944
|
"getPrefilledValuesRequested": [Function],
|
|
98945
|
+
"getSenderDetailsRequested": [Function],
|
|
98652
98946
|
"getTestCustomersRequested": [Function],
|
|
98653
98947
|
"getTestGroupsRequested": [Function],
|
|
98948
|
+
"getWeCrmAccountsRequested": [Function],
|
|
98654
98949
|
"searchCustomersRequested": [Function],
|
|
98655
98950
|
"sendTestMessageRequested": [Function],
|
|
98656
98951
|
"updatePreviewRequested": [Function],
|
|
@@ -100937,16 +101232,25 @@ new message content.",
|
|
|
100937
101232
|
isExtractingTags={false}
|
|
100938
101233
|
isFetchingTestCustomers={false}
|
|
100939
101234
|
isFetchingTestGroups={false}
|
|
101235
|
+
isLoadingSenderDetails={false}
|
|
100940
101236
|
isSearchingCustomer={false}
|
|
100941
101237
|
isSendingTestMessage={false}
|
|
100942
101238
|
isUpdatingPreview={false}
|
|
100943
101239
|
messageMetaConfigId={null}
|
|
100944
101240
|
onClose={[Function]}
|
|
101241
|
+
orgUnitId={-1}
|
|
100945
101242
|
prefilledValues={Object {}}
|
|
100946
101243
|
previewData={null}
|
|
100947
101244
|
rcsIosPreview={false}
|
|
100948
101245
|
rcsOrientation={null}
|
|
100949
101246
|
rcsType={null}
|
|
101247
|
+
senderDetailsByChannel={
|
|
101248
|
+
Object {
|
|
101249
|
+
"EMAIL": Array [],
|
|
101250
|
+
"SMS": Array [],
|
|
101251
|
+
"WHATSAPP": Array [],
|
|
101252
|
+
}
|
|
101253
|
+
}
|
|
100950
101254
|
show={false}
|
|
100951
101255
|
templateLayoutType={null}
|
|
100952
101256
|
testCustomers={Immutable.List []}
|
|
@@ -100954,6 +101258,7 @@ new message content.",
|
|
|
100954
101258
|
unicodeEnabled={false}
|
|
100955
101259
|
updatePreviewError={null}
|
|
100956
101260
|
updatePreviewErrors={Array []}
|
|
101261
|
+
wecrmAccounts={Array []}
|
|
100957
101262
|
whatsappAccountName={null}
|
|
100958
101263
|
whatsappContentLen={0}
|
|
100959
101264
|
>
|
|
@@ -100997,13 +101302,31 @@ new message content.",
|
|
|
100997
101302
|
<SendTestMessage
|
|
100998
101303
|
channel="RCS"
|
|
100999
101304
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
101000
|
-
formData={
|
|
101305
|
+
formData={
|
|
101306
|
+
Object {
|
|
101307
|
+
"suggestions": Array [
|
|
101308
|
+
Object {
|
|
101309
|
+
"index": 0,
|
|
101310
|
+
"isSaved": true,
|
|
101311
|
+
"phoneNumber": "",
|
|
101312
|
+
"postback": "stop",
|
|
101313
|
+
"text": "stop",
|
|
101314
|
+
"type": "QUICK_REPLY",
|
|
101315
|
+
"url": null,
|
|
101316
|
+
},
|
|
101317
|
+
],
|
|
101318
|
+
"templateHeader": "",
|
|
101319
|
+
"templateMessage": "",
|
|
101320
|
+
}
|
|
101321
|
+
}
|
|
101001
101322
|
formatMessage={[Function]}
|
|
101002
101323
|
handleSendTestMessage={[Function]}
|
|
101003
101324
|
handleTestEntitiesChange={[Function]}
|
|
101004
101325
|
isFetchingTestCustomers={false}
|
|
101005
101326
|
isFetchingTestGroups={false}
|
|
101327
|
+
isLoadingSenderDetails={false}
|
|
101006
101328
|
isSendingTestMessage={false}
|
|
101329
|
+
onSaveDeliverySettings={[Function]}
|
|
101007
101330
|
selectedTestEntities={Array []}
|
|
101008
101331
|
testEntitiesTreeData={
|
|
101009
101332
|
Array [
|
|
@@ -101021,6 +101344,7 @@ new message content.",
|
|
|
101021
101344
|
},
|
|
101022
101345
|
]
|
|
101023
101346
|
}
|
|
101347
|
+
wecrmAccounts={Array []}
|
|
101024
101348
|
/>
|
|
101025
101349
|
</CapRow>
|
|
101026
101350
|
<CapDivider
|
|
@@ -115638,8 +115962,10 @@ new message content.",
|
|
|
115638
115962
|
"createMessageMetaRequested": [Function],
|
|
115639
115963
|
"extractTagsRequested": [Function],
|
|
115640
115964
|
"getPrefilledValuesRequested": [Function],
|
|
115965
|
+
"getSenderDetailsRequested": [Function],
|
|
115641
115966
|
"getTestCustomersRequested": [Function],
|
|
115642
115967
|
"getTestGroupsRequested": [Function],
|
|
115968
|
+
"getWeCrmAccountsRequested": [Function],
|
|
115643
115969
|
"searchCustomersRequested": [Function],
|
|
115644
115970
|
"sendTestMessageRequested": [Function],
|
|
115645
115971
|
"updatePreviewRequested": [Function],
|
|
@@ -115671,6 +115997,7 @@ new message content.",
|
|
|
115671
115997
|
isExtractingTags={false}
|
|
115672
115998
|
isFetchingTestCustomers={false}
|
|
115673
115999
|
isFetchingTestGroups={false}
|
|
116000
|
+
isLoadingSenderDetails={false}
|
|
115674
116001
|
isSearchingCustomer={false}
|
|
115675
116002
|
isSendingTestMessage={false}
|
|
115676
116003
|
isUpdatingPreview={false}
|
|
@@ -115678,11 +116005,19 @@ new message content.",
|
|
|
115678
116005
|
onClose={[Function]}
|
|
115679
116006
|
prefilledValues={Object {}}
|
|
115680
116007
|
previewData={null}
|
|
116008
|
+
senderDetailsByChannel={
|
|
116009
|
+
Object {
|
|
116010
|
+
"EMAIL": Array [],
|
|
116011
|
+
"SMS": Array [],
|
|
116012
|
+
"WHATSAPP": Array [],
|
|
116013
|
+
}
|
|
116014
|
+
}
|
|
115681
116015
|
show={false}
|
|
115682
116016
|
testCustomers={Immutable.List []}
|
|
115683
116017
|
testGroups={Immutable.List []}
|
|
115684
116018
|
updatePreviewError={null}
|
|
115685
116019
|
updatePreviewErrors={Array []}
|
|
116020
|
+
wecrmAccounts={Array []}
|
|
115686
116021
|
>
|
|
115687
116022
|
<TestAndPreviewSlidebox
|
|
115688
116023
|
actions={
|
|
@@ -115694,8 +116029,10 @@ new message content.",
|
|
|
115694
116029
|
"createMessageMetaRequested": [Function],
|
|
115695
116030
|
"extractTagsRequested": [Function],
|
|
115696
116031
|
"getPrefilledValuesRequested": [Function],
|
|
116032
|
+
"getSenderDetailsRequested": [Function],
|
|
115697
116033
|
"getTestCustomersRequested": [Function],
|
|
115698
116034
|
"getTestGroupsRequested": [Function],
|
|
116035
|
+
"getWeCrmAccountsRequested": [Function],
|
|
115699
116036
|
"searchCustomersRequested": [Function],
|
|
115700
116037
|
"sendTestMessageRequested": [Function],
|
|
115701
116038
|
"updatePreviewRequested": [Function],
|
|
@@ -117975,18 +118312,28 @@ new message content.",
|
|
|
117975
118312
|
isExtractingTags={false}
|
|
117976
118313
|
isFetchingTestCustomers={false}
|
|
117977
118314
|
isFetchingTestGroups={false}
|
|
118315
|
+
isLoadingSenderDetails={false}
|
|
117978
118316
|
isSearchingCustomer={false}
|
|
117979
118317
|
isSendingTestMessage={false}
|
|
117980
118318
|
isUpdatingPreview={false}
|
|
117981
118319
|
messageMetaConfigId={null}
|
|
117982
118320
|
onClose={[Function]}
|
|
118321
|
+
orgUnitId={-1}
|
|
117983
118322
|
prefilledValues={Object {}}
|
|
117984
118323
|
previewData={null}
|
|
118324
|
+
senderDetailsByChannel={
|
|
118325
|
+
Object {
|
|
118326
|
+
"EMAIL": Array [],
|
|
118327
|
+
"SMS": Array [],
|
|
118328
|
+
"WHATSAPP": Array [],
|
|
118329
|
+
}
|
|
118330
|
+
}
|
|
117985
118331
|
show={false}
|
|
117986
118332
|
testCustomers={Immutable.List []}
|
|
117987
118333
|
testGroups={Immutable.List []}
|
|
117988
118334
|
updatePreviewError={null}
|
|
117989
118335
|
updatePreviewErrors={Array []}
|
|
118336
|
+
wecrmAccounts={Array []}
|
|
117990
118337
|
>
|
|
117991
118338
|
<CommonTestAndPreview
|
|
117992
118339
|
actions={
|
|
@@ -117998,8 +118345,10 @@ new message content.",
|
|
|
117998
118345
|
"createMessageMetaRequested": [Function],
|
|
117999
118346
|
"extractTagsRequested": [Function],
|
|
118000
118347
|
"getPrefilledValuesRequested": [Function],
|
|
118348
|
+
"getSenderDetailsRequested": [Function],
|
|
118001
118349
|
"getTestCustomersRequested": [Function],
|
|
118002
118350
|
"getTestGroupsRequested": [Function],
|
|
118351
|
+
"getWeCrmAccountsRequested": [Function],
|
|
118003
118352
|
"searchCustomersRequested": [Function],
|
|
118004
118353
|
"sendTestMessageRequested": [Function],
|
|
118005
118354
|
"updatePreviewRequested": [Function],
|
|
@@ -120286,16 +120635,25 @@ new message content.",
|
|
|
120286
120635
|
isExtractingTags={false}
|
|
120287
120636
|
isFetchingTestCustomers={false}
|
|
120288
120637
|
isFetchingTestGroups={false}
|
|
120638
|
+
isLoadingSenderDetails={false}
|
|
120289
120639
|
isSearchingCustomer={false}
|
|
120290
120640
|
isSendingTestMessage={false}
|
|
120291
120641
|
isUpdatingPreview={false}
|
|
120292
120642
|
messageMetaConfigId={null}
|
|
120293
120643
|
onClose={[Function]}
|
|
120644
|
+
orgUnitId={-1}
|
|
120294
120645
|
prefilledValues={Object {}}
|
|
120295
120646
|
previewData={null}
|
|
120296
120647
|
rcsIosPreview={false}
|
|
120297
120648
|
rcsOrientation={null}
|
|
120298
120649
|
rcsType={null}
|
|
120650
|
+
senderDetailsByChannel={
|
|
120651
|
+
Object {
|
|
120652
|
+
"EMAIL": Array [],
|
|
120653
|
+
"SMS": Array [],
|
|
120654
|
+
"WHATSAPP": Array [],
|
|
120655
|
+
}
|
|
120656
|
+
}
|
|
120299
120657
|
show={false}
|
|
120300
120658
|
templateLayoutType={null}
|
|
120301
120659
|
testCustomers={Immutable.List []}
|
|
@@ -120303,6 +120661,7 @@ new message content.",
|
|
|
120303
120661
|
unicodeEnabled={false}
|
|
120304
120662
|
updatePreviewError={null}
|
|
120305
120663
|
updatePreviewErrors={Array []}
|
|
120664
|
+
wecrmAccounts={Array []}
|
|
120306
120665
|
whatsappAccountName={null}
|
|
120307
120666
|
whatsappContentLen={0}
|
|
120308
120667
|
>
|
|
@@ -120346,13 +120705,31 @@ new message content.",
|
|
|
120346
120705
|
<SendTestMessage
|
|
120347
120706
|
channel="RCS"
|
|
120348
120707
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
120349
|
-
formData={
|
|
120708
|
+
formData={
|
|
120709
|
+
Object {
|
|
120710
|
+
"suggestions": Array [
|
|
120711
|
+
Object {
|
|
120712
|
+
"index": 0,
|
|
120713
|
+
"isSaved": true,
|
|
120714
|
+
"phoneNumber": "",
|
|
120715
|
+
"postback": "stop",
|
|
120716
|
+
"text": "stop",
|
|
120717
|
+
"type": "QUICK_REPLY",
|
|
120718
|
+
"url": null,
|
|
120719
|
+
},
|
|
120720
|
+
],
|
|
120721
|
+
"templateHeader": "",
|
|
120722
|
+
"templateMessage": "",
|
|
120723
|
+
}
|
|
120724
|
+
}
|
|
120350
120725
|
formatMessage={[Function]}
|
|
120351
120726
|
handleSendTestMessage={[Function]}
|
|
120352
120727
|
handleTestEntitiesChange={[Function]}
|
|
120353
120728
|
isFetchingTestCustomers={false}
|
|
120354
120729
|
isFetchingTestGroups={false}
|
|
120730
|
+
isLoadingSenderDetails={false}
|
|
120355
120731
|
isSendingTestMessage={false}
|
|
120732
|
+
onSaveDeliverySettings={[Function]}
|
|
120356
120733
|
selectedTestEntities={Array []}
|
|
120357
120734
|
testEntitiesTreeData={
|
|
120358
120735
|
Array [
|
|
@@ -120370,6 +120747,7 @@ new message content.",
|
|
|
120370
120747
|
},
|
|
120371
120748
|
]
|
|
120372
120749
|
}
|
|
120750
|
+
wecrmAccounts={Array []}
|
|
120373
120751
|
/>
|
|
120374
120752
|
</CapRow>
|
|
120375
120753
|
<CapDivider
|
|
@@ -135655,8 +136033,10 @@ new message content.",
|
|
|
135655
136033
|
"createMessageMetaRequested": [Function],
|
|
135656
136034
|
"extractTagsRequested": [Function],
|
|
135657
136035
|
"getPrefilledValuesRequested": [Function],
|
|
136036
|
+
"getSenderDetailsRequested": [Function],
|
|
135658
136037
|
"getTestCustomersRequested": [Function],
|
|
135659
136038
|
"getTestGroupsRequested": [Function],
|
|
136039
|
+
"getWeCrmAccountsRequested": [Function],
|
|
135660
136040
|
"searchCustomersRequested": [Function],
|
|
135661
136041
|
"sendTestMessageRequested": [Function],
|
|
135662
136042
|
"updatePreviewRequested": [Function],
|
|
@@ -135688,6 +136068,7 @@ new message content.",
|
|
|
135688
136068
|
isExtractingTags={false}
|
|
135689
136069
|
isFetchingTestCustomers={false}
|
|
135690
136070
|
isFetchingTestGroups={false}
|
|
136071
|
+
isLoadingSenderDetails={false}
|
|
135691
136072
|
isSearchingCustomer={false}
|
|
135692
136073
|
isSendingTestMessage={false}
|
|
135693
136074
|
isUpdatingPreview={false}
|
|
@@ -135695,11 +136076,19 @@ new message content.",
|
|
|
135695
136076
|
onClose={[Function]}
|
|
135696
136077
|
prefilledValues={Object {}}
|
|
135697
136078
|
previewData={null}
|
|
136079
|
+
senderDetailsByChannel={
|
|
136080
|
+
Object {
|
|
136081
|
+
"EMAIL": Array [],
|
|
136082
|
+
"SMS": Array [],
|
|
136083
|
+
"WHATSAPP": Array [],
|
|
136084
|
+
}
|
|
136085
|
+
}
|
|
135698
136086
|
show={false}
|
|
135699
136087
|
testCustomers={Immutable.List []}
|
|
135700
136088
|
testGroups={Immutable.List []}
|
|
135701
136089
|
updatePreviewError={null}
|
|
135702
136090
|
updatePreviewErrors={Array []}
|
|
136091
|
+
wecrmAccounts={Array []}
|
|
135703
136092
|
>
|
|
135704
136093
|
<TestAndPreviewSlidebox
|
|
135705
136094
|
actions={
|
|
@@ -135711,8 +136100,10 @@ new message content.",
|
|
|
135711
136100
|
"createMessageMetaRequested": [Function],
|
|
135712
136101
|
"extractTagsRequested": [Function],
|
|
135713
136102
|
"getPrefilledValuesRequested": [Function],
|
|
136103
|
+
"getSenderDetailsRequested": [Function],
|
|
135714
136104
|
"getTestCustomersRequested": [Function],
|
|
135715
136105
|
"getTestGroupsRequested": [Function],
|
|
136106
|
+
"getWeCrmAccountsRequested": [Function],
|
|
135716
136107
|
"searchCustomersRequested": [Function],
|
|
135717
136108
|
"sendTestMessageRequested": [Function],
|
|
135718
136109
|
"updatePreviewRequested": [Function],
|
|
@@ -137992,18 +138383,28 @@ new message content.",
|
|
|
137992
138383
|
isExtractingTags={false}
|
|
137993
138384
|
isFetchingTestCustomers={false}
|
|
137994
138385
|
isFetchingTestGroups={false}
|
|
138386
|
+
isLoadingSenderDetails={false}
|
|
137995
138387
|
isSearchingCustomer={false}
|
|
137996
138388
|
isSendingTestMessage={false}
|
|
137997
138389
|
isUpdatingPreview={false}
|
|
137998
138390
|
messageMetaConfigId={null}
|
|
137999
138391
|
onClose={[Function]}
|
|
138392
|
+
orgUnitId={-1}
|
|
138000
138393
|
prefilledValues={Object {}}
|
|
138001
138394
|
previewData={null}
|
|
138395
|
+
senderDetailsByChannel={
|
|
138396
|
+
Object {
|
|
138397
|
+
"EMAIL": Array [],
|
|
138398
|
+
"SMS": Array [],
|
|
138399
|
+
"WHATSAPP": Array [],
|
|
138400
|
+
}
|
|
138401
|
+
}
|
|
138002
138402
|
show={false}
|
|
138003
138403
|
testCustomers={Immutable.List []}
|
|
138004
138404
|
testGroups={Immutable.List []}
|
|
138005
138405
|
updatePreviewError={null}
|
|
138006
138406
|
updatePreviewErrors={Array []}
|
|
138407
|
+
wecrmAccounts={Array []}
|
|
138007
138408
|
>
|
|
138008
138409
|
<CommonTestAndPreview
|
|
138009
138410
|
actions={
|
|
@@ -138015,8 +138416,10 @@ new message content.",
|
|
|
138015
138416
|
"createMessageMetaRequested": [Function],
|
|
138016
138417
|
"extractTagsRequested": [Function],
|
|
138017
138418
|
"getPrefilledValuesRequested": [Function],
|
|
138419
|
+
"getSenderDetailsRequested": [Function],
|
|
138018
138420
|
"getTestCustomersRequested": [Function],
|
|
138019
138421
|
"getTestGroupsRequested": [Function],
|
|
138422
|
+
"getWeCrmAccountsRequested": [Function],
|
|
138020
138423
|
"searchCustomersRequested": [Function],
|
|
138021
138424
|
"sendTestMessageRequested": [Function],
|
|
138022
138425
|
"updatePreviewRequested": [Function],
|
|
@@ -140303,16 +140706,25 @@ new message content.",
|
|
|
140303
140706
|
isExtractingTags={false}
|
|
140304
140707
|
isFetchingTestCustomers={false}
|
|
140305
140708
|
isFetchingTestGroups={false}
|
|
140709
|
+
isLoadingSenderDetails={false}
|
|
140306
140710
|
isSearchingCustomer={false}
|
|
140307
140711
|
isSendingTestMessage={false}
|
|
140308
140712
|
isUpdatingPreview={false}
|
|
140309
140713
|
messageMetaConfigId={null}
|
|
140310
140714
|
onClose={[Function]}
|
|
140715
|
+
orgUnitId={-1}
|
|
140311
140716
|
prefilledValues={Object {}}
|
|
140312
140717
|
previewData={null}
|
|
140313
140718
|
rcsIosPreview={false}
|
|
140314
140719
|
rcsOrientation={null}
|
|
140315
140720
|
rcsType={null}
|
|
140721
|
+
senderDetailsByChannel={
|
|
140722
|
+
Object {
|
|
140723
|
+
"EMAIL": Array [],
|
|
140724
|
+
"SMS": Array [],
|
|
140725
|
+
"WHATSAPP": Array [],
|
|
140726
|
+
}
|
|
140727
|
+
}
|
|
140316
140728
|
show={false}
|
|
140317
140729
|
templateLayoutType={null}
|
|
140318
140730
|
testCustomers={Immutable.List []}
|
|
@@ -140320,6 +140732,7 @@ new message content.",
|
|
|
140320
140732
|
unicodeEnabled={false}
|
|
140321
140733
|
updatePreviewError={null}
|
|
140322
140734
|
updatePreviewErrors={Array []}
|
|
140735
|
+
wecrmAccounts={Array []}
|
|
140323
140736
|
whatsappAccountName={null}
|
|
140324
140737
|
whatsappContentLen={0}
|
|
140325
140738
|
>
|
|
@@ -140363,13 +140776,31 @@ new message content.",
|
|
|
140363
140776
|
<SendTestMessage
|
|
140364
140777
|
channel="RCS"
|
|
140365
140778
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
140366
|
-
formData={
|
|
140779
|
+
formData={
|
|
140780
|
+
Object {
|
|
140781
|
+
"suggestions": Array [
|
|
140782
|
+
Object {
|
|
140783
|
+
"index": 0,
|
|
140784
|
+
"isSaved": true,
|
|
140785
|
+
"phoneNumber": "",
|
|
140786
|
+
"postback": "stop",
|
|
140787
|
+
"text": "stop",
|
|
140788
|
+
"type": "QUICK_REPLY",
|
|
140789
|
+
"url": null,
|
|
140790
|
+
},
|
|
140791
|
+
],
|
|
140792
|
+
"templateHeader": "",
|
|
140793
|
+
"templateMessage": "",
|
|
140794
|
+
}
|
|
140795
|
+
}
|
|
140367
140796
|
formatMessage={[Function]}
|
|
140368
140797
|
handleSendTestMessage={[Function]}
|
|
140369
140798
|
handleTestEntitiesChange={[Function]}
|
|
140370
140799
|
isFetchingTestCustomers={false}
|
|
140371
140800
|
isFetchingTestGroups={false}
|
|
140801
|
+
isLoadingSenderDetails={false}
|
|
140372
140802
|
isSendingTestMessage={false}
|
|
140803
|
+
onSaveDeliverySettings={[Function]}
|
|
140373
140804
|
selectedTestEntities={Array []}
|
|
140374
140805
|
testEntitiesTreeData={
|
|
140375
140806
|
Array [
|
|
@@ -140387,6 +140818,7 @@ new message content.",
|
|
|
140387
140818
|
},
|
|
140388
140819
|
]
|
|
140389
140820
|
}
|
|
140821
|
+
wecrmAccounts={Array []}
|
|
140390
140822
|
/>
|
|
140391
140823
|
</CapRow>
|
|
140392
140824
|
<CapDivider
|
|
@@ -151688,8 +152120,10 @@ new message content.",
|
|
|
151688
152120
|
"createMessageMetaRequested": [Function],
|
|
151689
152121
|
"extractTagsRequested": [Function],
|
|
151690
152122
|
"getPrefilledValuesRequested": [Function],
|
|
152123
|
+
"getSenderDetailsRequested": [Function],
|
|
151691
152124
|
"getTestCustomersRequested": [Function],
|
|
151692
152125
|
"getTestGroupsRequested": [Function],
|
|
152126
|
+
"getWeCrmAccountsRequested": [Function],
|
|
151693
152127
|
"searchCustomersRequested": [Function],
|
|
151694
152128
|
"sendTestMessageRequested": [Function],
|
|
151695
152129
|
"updatePreviewRequested": [Function],
|
|
@@ -151721,6 +152155,7 @@ new message content.",
|
|
|
151721
152155
|
isExtractingTags={false}
|
|
151722
152156
|
isFetchingTestCustomers={false}
|
|
151723
152157
|
isFetchingTestGroups={false}
|
|
152158
|
+
isLoadingSenderDetails={false}
|
|
151724
152159
|
isSearchingCustomer={false}
|
|
151725
152160
|
isSendingTestMessage={false}
|
|
151726
152161
|
isUpdatingPreview={false}
|
|
@@ -151728,11 +152163,19 @@ new message content.",
|
|
|
151728
152163
|
onClose={[Function]}
|
|
151729
152164
|
prefilledValues={Object {}}
|
|
151730
152165
|
previewData={null}
|
|
152166
|
+
senderDetailsByChannel={
|
|
152167
|
+
Object {
|
|
152168
|
+
"EMAIL": Array [],
|
|
152169
|
+
"SMS": Array [],
|
|
152170
|
+
"WHATSAPP": Array [],
|
|
152171
|
+
}
|
|
152172
|
+
}
|
|
151731
152173
|
show={false}
|
|
151732
152174
|
testCustomers={Immutable.List []}
|
|
151733
152175
|
testGroups={Immutable.List []}
|
|
151734
152176
|
updatePreviewError={null}
|
|
151735
152177
|
updatePreviewErrors={Array []}
|
|
152178
|
+
wecrmAccounts={Array []}
|
|
151736
152179
|
>
|
|
151737
152180
|
<TestAndPreviewSlidebox
|
|
151738
152181
|
actions={
|
|
@@ -151744,8 +152187,10 @@ new message content.",
|
|
|
151744
152187
|
"createMessageMetaRequested": [Function],
|
|
151745
152188
|
"extractTagsRequested": [Function],
|
|
151746
152189
|
"getPrefilledValuesRequested": [Function],
|
|
152190
|
+
"getSenderDetailsRequested": [Function],
|
|
151747
152191
|
"getTestCustomersRequested": [Function],
|
|
151748
152192
|
"getTestGroupsRequested": [Function],
|
|
152193
|
+
"getWeCrmAccountsRequested": [Function],
|
|
151749
152194
|
"searchCustomersRequested": [Function],
|
|
151750
152195
|
"sendTestMessageRequested": [Function],
|
|
151751
152196
|
"updatePreviewRequested": [Function],
|
|
@@ -154025,18 +154470,28 @@ new message content.",
|
|
|
154025
154470
|
isExtractingTags={false}
|
|
154026
154471
|
isFetchingTestCustomers={false}
|
|
154027
154472
|
isFetchingTestGroups={false}
|
|
154473
|
+
isLoadingSenderDetails={false}
|
|
154028
154474
|
isSearchingCustomer={false}
|
|
154029
154475
|
isSendingTestMessage={false}
|
|
154030
154476
|
isUpdatingPreview={false}
|
|
154031
154477
|
messageMetaConfigId={null}
|
|
154032
154478
|
onClose={[Function]}
|
|
154479
|
+
orgUnitId={-1}
|
|
154033
154480
|
prefilledValues={Object {}}
|
|
154034
154481
|
previewData={null}
|
|
154482
|
+
senderDetailsByChannel={
|
|
154483
|
+
Object {
|
|
154484
|
+
"EMAIL": Array [],
|
|
154485
|
+
"SMS": Array [],
|
|
154486
|
+
"WHATSAPP": Array [],
|
|
154487
|
+
}
|
|
154488
|
+
}
|
|
154035
154489
|
show={false}
|
|
154036
154490
|
testCustomers={Immutable.List []}
|
|
154037
154491
|
testGroups={Immutable.List []}
|
|
154038
154492
|
updatePreviewError={null}
|
|
154039
154493
|
updatePreviewErrors={Array []}
|
|
154494
|
+
wecrmAccounts={Array []}
|
|
154040
154495
|
>
|
|
154041
154496
|
<CommonTestAndPreview
|
|
154042
154497
|
actions={
|
|
@@ -154048,8 +154503,10 @@ new message content.",
|
|
|
154048
154503
|
"createMessageMetaRequested": [Function],
|
|
154049
154504
|
"extractTagsRequested": [Function],
|
|
154050
154505
|
"getPrefilledValuesRequested": [Function],
|
|
154506
|
+
"getSenderDetailsRequested": [Function],
|
|
154051
154507
|
"getTestCustomersRequested": [Function],
|
|
154052
154508
|
"getTestGroupsRequested": [Function],
|
|
154509
|
+
"getWeCrmAccountsRequested": [Function],
|
|
154053
154510
|
"searchCustomersRequested": [Function],
|
|
154054
154511
|
"sendTestMessageRequested": [Function],
|
|
154055
154512
|
"updatePreviewRequested": [Function],
|
|
@@ -156336,16 +156793,25 @@ new message content.",
|
|
|
156336
156793
|
isExtractingTags={false}
|
|
156337
156794
|
isFetchingTestCustomers={false}
|
|
156338
156795
|
isFetchingTestGroups={false}
|
|
156796
|
+
isLoadingSenderDetails={false}
|
|
156339
156797
|
isSearchingCustomer={false}
|
|
156340
156798
|
isSendingTestMessage={false}
|
|
156341
156799
|
isUpdatingPreview={false}
|
|
156342
156800
|
messageMetaConfigId={null}
|
|
156343
156801
|
onClose={[Function]}
|
|
156802
|
+
orgUnitId={-1}
|
|
156344
156803
|
prefilledValues={Object {}}
|
|
156345
156804
|
previewData={null}
|
|
156346
156805
|
rcsIosPreview={false}
|
|
156347
156806
|
rcsOrientation={null}
|
|
156348
156807
|
rcsType={null}
|
|
156808
|
+
senderDetailsByChannel={
|
|
156809
|
+
Object {
|
|
156810
|
+
"EMAIL": Array [],
|
|
156811
|
+
"SMS": Array [],
|
|
156812
|
+
"WHATSAPP": Array [],
|
|
156813
|
+
}
|
|
156814
|
+
}
|
|
156349
156815
|
show={false}
|
|
156350
156816
|
templateLayoutType={null}
|
|
156351
156817
|
testCustomers={Immutable.List []}
|
|
@@ -156353,6 +156819,7 @@ new message content.",
|
|
|
156353
156819
|
unicodeEnabled={false}
|
|
156354
156820
|
updatePreviewError={null}
|
|
156355
156821
|
updatePreviewErrors={Array []}
|
|
156822
|
+
wecrmAccounts={Array []}
|
|
156356
156823
|
whatsappAccountName={null}
|
|
156357
156824
|
whatsappContentLen={0}
|
|
156358
156825
|
>
|
|
@@ -156396,13 +156863,31 @@ new message content.",
|
|
|
156396
156863
|
<SendTestMessage
|
|
156397
156864
|
channel="RCS"
|
|
156398
156865
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
156399
|
-
formData={
|
|
156866
|
+
formData={
|
|
156867
|
+
Object {
|
|
156868
|
+
"suggestions": Array [
|
|
156869
|
+
Object {
|
|
156870
|
+
"index": 0,
|
|
156871
|
+
"isSaved": true,
|
|
156872
|
+
"phoneNumber": "",
|
|
156873
|
+
"postback": "stop",
|
|
156874
|
+
"text": "stop",
|
|
156875
|
+
"type": "QUICK_REPLY",
|
|
156876
|
+
"url": null,
|
|
156877
|
+
},
|
|
156878
|
+
],
|
|
156879
|
+
"templateHeader": "",
|
|
156880
|
+
"templateMessage": "",
|
|
156881
|
+
}
|
|
156882
|
+
}
|
|
156400
156883
|
formatMessage={[Function]}
|
|
156401
156884
|
handleSendTestMessage={[Function]}
|
|
156402
156885
|
handleTestEntitiesChange={[Function]}
|
|
156403
156886
|
isFetchingTestCustomers={false}
|
|
156404
156887
|
isFetchingTestGroups={false}
|
|
156888
|
+
isLoadingSenderDetails={false}
|
|
156405
156889
|
isSendingTestMessage={false}
|
|
156890
|
+
onSaveDeliverySettings={[Function]}
|
|
156406
156891
|
selectedTestEntities={Array []}
|
|
156407
156892
|
testEntitiesTreeData={
|
|
156408
156893
|
Array [
|
|
@@ -156420,6 +156905,7 @@ new message content.",
|
|
|
156420
156905
|
},
|
|
156421
156906
|
]
|
|
156422
156907
|
}
|
|
156908
|
+
wecrmAccounts={Array []}
|
|
156423
156909
|
/>
|
|
156424
156910
|
</CapRow>
|
|
156425
156911
|
<CapDivider
|
|
@@ -167721,8 +168207,10 @@ new message content.",
|
|
|
167721
168207
|
"createMessageMetaRequested": [Function],
|
|
167722
168208
|
"extractTagsRequested": [Function],
|
|
167723
168209
|
"getPrefilledValuesRequested": [Function],
|
|
168210
|
+
"getSenderDetailsRequested": [Function],
|
|
167724
168211
|
"getTestCustomersRequested": [Function],
|
|
167725
168212
|
"getTestGroupsRequested": [Function],
|
|
168213
|
+
"getWeCrmAccountsRequested": [Function],
|
|
167726
168214
|
"searchCustomersRequested": [Function],
|
|
167727
168215
|
"sendTestMessageRequested": [Function],
|
|
167728
168216
|
"updatePreviewRequested": [Function],
|
|
@@ -167754,6 +168242,7 @@ new message content.",
|
|
|
167754
168242
|
isExtractingTags={false}
|
|
167755
168243
|
isFetchingTestCustomers={false}
|
|
167756
168244
|
isFetchingTestGroups={false}
|
|
168245
|
+
isLoadingSenderDetails={false}
|
|
167757
168246
|
isSearchingCustomer={false}
|
|
167758
168247
|
isSendingTestMessage={false}
|
|
167759
168248
|
isUpdatingPreview={false}
|
|
@@ -167761,11 +168250,19 @@ new message content.",
|
|
|
167761
168250
|
onClose={[Function]}
|
|
167762
168251
|
prefilledValues={Object {}}
|
|
167763
168252
|
previewData={null}
|
|
168253
|
+
senderDetailsByChannel={
|
|
168254
|
+
Object {
|
|
168255
|
+
"EMAIL": Array [],
|
|
168256
|
+
"SMS": Array [],
|
|
168257
|
+
"WHATSAPP": Array [],
|
|
168258
|
+
}
|
|
168259
|
+
}
|
|
167764
168260
|
show={false}
|
|
167765
168261
|
testCustomers={Immutable.List []}
|
|
167766
168262
|
testGroups={Immutable.List []}
|
|
167767
168263
|
updatePreviewError={null}
|
|
167768
168264
|
updatePreviewErrors={Array []}
|
|
168265
|
+
wecrmAccounts={Array []}
|
|
167769
168266
|
>
|
|
167770
168267
|
<TestAndPreviewSlidebox
|
|
167771
168268
|
actions={
|
|
@@ -167777,8 +168274,10 @@ new message content.",
|
|
|
167777
168274
|
"createMessageMetaRequested": [Function],
|
|
167778
168275
|
"extractTagsRequested": [Function],
|
|
167779
168276
|
"getPrefilledValuesRequested": [Function],
|
|
168277
|
+
"getSenderDetailsRequested": [Function],
|
|
167780
168278
|
"getTestCustomersRequested": [Function],
|
|
167781
168279
|
"getTestGroupsRequested": [Function],
|
|
168280
|
+
"getWeCrmAccountsRequested": [Function],
|
|
167782
168281
|
"searchCustomersRequested": [Function],
|
|
167783
168282
|
"sendTestMessageRequested": [Function],
|
|
167784
168283
|
"updatePreviewRequested": [Function],
|
|
@@ -170058,18 +170557,28 @@ new message content.",
|
|
|
170058
170557
|
isExtractingTags={false}
|
|
170059
170558
|
isFetchingTestCustomers={false}
|
|
170060
170559
|
isFetchingTestGroups={false}
|
|
170560
|
+
isLoadingSenderDetails={false}
|
|
170061
170561
|
isSearchingCustomer={false}
|
|
170062
170562
|
isSendingTestMessage={false}
|
|
170063
170563
|
isUpdatingPreview={false}
|
|
170064
170564
|
messageMetaConfigId={null}
|
|
170065
170565
|
onClose={[Function]}
|
|
170566
|
+
orgUnitId={-1}
|
|
170066
170567
|
prefilledValues={Object {}}
|
|
170067
170568
|
previewData={null}
|
|
170569
|
+
senderDetailsByChannel={
|
|
170570
|
+
Object {
|
|
170571
|
+
"EMAIL": Array [],
|
|
170572
|
+
"SMS": Array [],
|
|
170573
|
+
"WHATSAPP": Array [],
|
|
170574
|
+
}
|
|
170575
|
+
}
|
|
170068
170576
|
show={false}
|
|
170069
170577
|
testCustomers={Immutable.List []}
|
|
170070
170578
|
testGroups={Immutable.List []}
|
|
170071
170579
|
updatePreviewError={null}
|
|
170072
170580
|
updatePreviewErrors={Array []}
|
|
170581
|
+
wecrmAccounts={Array []}
|
|
170073
170582
|
>
|
|
170074
170583
|
<CommonTestAndPreview
|
|
170075
170584
|
actions={
|
|
@@ -170081,8 +170590,10 @@ new message content.",
|
|
|
170081
170590
|
"createMessageMetaRequested": [Function],
|
|
170082
170591
|
"extractTagsRequested": [Function],
|
|
170083
170592
|
"getPrefilledValuesRequested": [Function],
|
|
170593
|
+
"getSenderDetailsRequested": [Function],
|
|
170084
170594
|
"getTestCustomersRequested": [Function],
|
|
170085
170595
|
"getTestGroupsRequested": [Function],
|
|
170596
|
+
"getWeCrmAccountsRequested": [Function],
|
|
170086
170597
|
"searchCustomersRequested": [Function],
|
|
170087
170598
|
"sendTestMessageRequested": [Function],
|
|
170088
170599
|
"updatePreviewRequested": [Function],
|
|
@@ -172369,16 +172880,25 @@ new message content.",
|
|
|
172369
172880
|
isExtractingTags={false}
|
|
172370
172881
|
isFetchingTestCustomers={false}
|
|
172371
172882
|
isFetchingTestGroups={false}
|
|
172883
|
+
isLoadingSenderDetails={false}
|
|
172372
172884
|
isSearchingCustomer={false}
|
|
172373
172885
|
isSendingTestMessage={false}
|
|
172374
172886
|
isUpdatingPreview={false}
|
|
172375
172887
|
messageMetaConfigId={null}
|
|
172376
172888
|
onClose={[Function]}
|
|
172889
|
+
orgUnitId={-1}
|
|
172377
172890
|
prefilledValues={Object {}}
|
|
172378
172891
|
previewData={null}
|
|
172379
172892
|
rcsIosPreview={false}
|
|
172380
172893
|
rcsOrientation={null}
|
|
172381
172894
|
rcsType={null}
|
|
172895
|
+
senderDetailsByChannel={
|
|
172896
|
+
Object {
|
|
172897
|
+
"EMAIL": Array [],
|
|
172898
|
+
"SMS": Array [],
|
|
172899
|
+
"WHATSAPP": Array [],
|
|
172900
|
+
}
|
|
172901
|
+
}
|
|
172382
172902
|
show={false}
|
|
172383
172903
|
templateLayoutType={null}
|
|
172384
172904
|
testCustomers={Immutable.List []}
|
|
@@ -172386,6 +172906,7 @@ new message content.",
|
|
|
172386
172906
|
unicodeEnabled={false}
|
|
172387
172907
|
updatePreviewError={null}
|
|
172388
172908
|
updatePreviewErrors={Array []}
|
|
172909
|
+
wecrmAccounts={Array []}
|
|
172389
172910
|
whatsappAccountName={null}
|
|
172390
172911
|
whatsappContentLen={0}
|
|
172391
172912
|
>
|
|
@@ -172429,13 +172950,31 @@ new message content.",
|
|
|
172429
172950
|
<SendTestMessage
|
|
172430
172951
|
channel="RCS"
|
|
172431
172952
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
172432
|
-
formData={
|
|
172953
|
+
formData={
|
|
172954
|
+
Object {
|
|
172955
|
+
"suggestions": Array [
|
|
172956
|
+
Object {
|
|
172957
|
+
"index": 0,
|
|
172958
|
+
"isSaved": true,
|
|
172959
|
+
"phoneNumber": "",
|
|
172960
|
+
"postback": "stop",
|
|
172961
|
+
"text": "stop",
|
|
172962
|
+
"type": "QUICK_REPLY",
|
|
172963
|
+
"url": null,
|
|
172964
|
+
},
|
|
172965
|
+
],
|
|
172966
|
+
"templateHeader": "",
|
|
172967
|
+
"templateMessage": "",
|
|
172968
|
+
}
|
|
172969
|
+
}
|
|
172433
172970
|
formatMessage={[Function]}
|
|
172434
172971
|
handleSendTestMessage={[Function]}
|
|
172435
172972
|
handleTestEntitiesChange={[Function]}
|
|
172436
172973
|
isFetchingTestCustomers={false}
|
|
172437
172974
|
isFetchingTestGroups={false}
|
|
172975
|
+
isLoadingSenderDetails={false}
|
|
172438
172976
|
isSendingTestMessage={false}
|
|
172977
|
+
onSaveDeliverySettings={[Function]}
|
|
172439
172978
|
selectedTestEntities={Array []}
|
|
172440
172979
|
testEntitiesTreeData={
|
|
172441
172980
|
Array [
|
|
@@ -172453,6 +172992,7 @@ new message content.",
|
|
|
172453
172992
|
},
|
|
172454
172993
|
]
|
|
172455
172994
|
}
|
|
172995
|
+
wecrmAccounts={Array []}
|
|
172456
172996
|
/>
|
|
172457
172997
|
</CapRow>
|
|
172458
172998
|
<CapDivider
|
|
@@ -183754,8 +184294,10 @@ new message content.",
|
|
|
183754
184294
|
"createMessageMetaRequested": [Function],
|
|
183755
184295
|
"extractTagsRequested": [Function],
|
|
183756
184296
|
"getPrefilledValuesRequested": [Function],
|
|
184297
|
+
"getSenderDetailsRequested": [Function],
|
|
183757
184298
|
"getTestCustomersRequested": [Function],
|
|
183758
184299
|
"getTestGroupsRequested": [Function],
|
|
184300
|
+
"getWeCrmAccountsRequested": [Function],
|
|
183759
184301
|
"searchCustomersRequested": [Function],
|
|
183760
184302
|
"sendTestMessageRequested": [Function],
|
|
183761
184303
|
"updatePreviewRequested": [Function],
|
|
@@ -183787,6 +184329,7 @@ new message content.",
|
|
|
183787
184329
|
isExtractingTags={false}
|
|
183788
184330
|
isFetchingTestCustomers={false}
|
|
183789
184331
|
isFetchingTestGroups={false}
|
|
184332
|
+
isLoadingSenderDetails={false}
|
|
183790
184333
|
isSearchingCustomer={false}
|
|
183791
184334
|
isSendingTestMessage={false}
|
|
183792
184335
|
isUpdatingPreview={false}
|
|
@@ -183794,11 +184337,19 @@ new message content.",
|
|
|
183794
184337
|
onClose={[Function]}
|
|
183795
184338
|
prefilledValues={Object {}}
|
|
183796
184339
|
previewData={null}
|
|
184340
|
+
senderDetailsByChannel={
|
|
184341
|
+
Object {
|
|
184342
|
+
"EMAIL": Array [],
|
|
184343
|
+
"SMS": Array [],
|
|
184344
|
+
"WHATSAPP": Array [],
|
|
184345
|
+
}
|
|
184346
|
+
}
|
|
183797
184347
|
show={false}
|
|
183798
184348
|
testCustomers={Immutable.List []}
|
|
183799
184349
|
testGroups={Immutable.List []}
|
|
183800
184350
|
updatePreviewError={null}
|
|
183801
184351
|
updatePreviewErrors={Array []}
|
|
184352
|
+
wecrmAccounts={Array []}
|
|
183802
184353
|
>
|
|
183803
184354
|
<TestAndPreviewSlidebox
|
|
183804
184355
|
actions={
|
|
@@ -183810,8 +184361,10 @@ new message content.",
|
|
|
183810
184361
|
"createMessageMetaRequested": [Function],
|
|
183811
184362
|
"extractTagsRequested": [Function],
|
|
183812
184363
|
"getPrefilledValuesRequested": [Function],
|
|
184364
|
+
"getSenderDetailsRequested": [Function],
|
|
183813
184365
|
"getTestCustomersRequested": [Function],
|
|
183814
184366
|
"getTestGroupsRequested": [Function],
|
|
184367
|
+
"getWeCrmAccountsRequested": [Function],
|
|
183815
184368
|
"searchCustomersRequested": [Function],
|
|
183816
184369
|
"sendTestMessageRequested": [Function],
|
|
183817
184370
|
"updatePreviewRequested": [Function],
|
|
@@ -186091,18 +186644,28 @@ new message content.",
|
|
|
186091
186644
|
isExtractingTags={false}
|
|
186092
186645
|
isFetchingTestCustomers={false}
|
|
186093
186646
|
isFetchingTestGroups={false}
|
|
186647
|
+
isLoadingSenderDetails={false}
|
|
186094
186648
|
isSearchingCustomer={false}
|
|
186095
186649
|
isSendingTestMessage={false}
|
|
186096
186650
|
isUpdatingPreview={false}
|
|
186097
186651
|
messageMetaConfigId={null}
|
|
186098
186652
|
onClose={[Function]}
|
|
186653
|
+
orgUnitId={-1}
|
|
186099
186654
|
prefilledValues={Object {}}
|
|
186100
186655
|
previewData={null}
|
|
186656
|
+
senderDetailsByChannel={
|
|
186657
|
+
Object {
|
|
186658
|
+
"EMAIL": Array [],
|
|
186659
|
+
"SMS": Array [],
|
|
186660
|
+
"WHATSAPP": Array [],
|
|
186661
|
+
}
|
|
186662
|
+
}
|
|
186101
186663
|
show={false}
|
|
186102
186664
|
testCustomers={Immutable.List []}
|
|
186103
186665
|
testGroups={Immutable.List []}
|
|
186104
186666
|
updatePreviewError={null}
|
|
186105
186667
|
updatePreviewErrors={Array []}
|
|
186668
|
+
wecrmAccounts={Array []}
|
|
186106
186669
|
>
|
|
186107
186670
|
<CommonTestAndPreview
|
|
186108
186671
|
actions={
|
|
@@ -186114,8 +186677,10 @@ new message content.",
|
|
|
186114
186677
|
"createMessageMetaRequested": [Function],
|
|
186115
186678
|
"extractTagsRequested": [Function],
|
|
186116
186679
|
"getPrefilledValuesRequested": [Function],
|
|
186680
|
+
"getSenderDetailsRequested": [Function],
|
|
186117
186681
|
"getTestCustomersRequested": [Function],
|
|
186118
186682
|
"getTestGroupsRequested": [Function],
|
|
186683
|
+
"getWeCrmAccountsRequested": [Function],
|
|
186119
186684
|
"searchCustomersRequested": [Function],
|
|
186120
186685
|
"sendTestMessageRequested": [Function],
|
|
186121
186686
|
"updatePreviewRequested": [Function],
|
|
@@ -188402,16 +188967,25 @@ new message content.",
|
|
|
188402
188967
|
isExtractingTags={false}
|
|
188403
188968
|
isFetchingTestCustomers={false}
|
|
188404
188969
|
isFetchingTestGroups={false}
|
|
188970
|
+
isLoadingSenderDetails={false}
|
|
188405
188971
|
isSearchingCustomer={false}
|
|
188406
188972
|
isSendingTestMessage={false}
|
|
188407
188973
|
isUpdatingPreview={false}
|
|
188408
188974
|
messageMetaConfigId={null}
|
|
188409
188975
|
onClose={[Function]}
|
|
188976
|
+
orgUnitId={-1}
|
|
188410
188977
|
prefilledValues={Object {}}
|
|
188411
188978
|
previewData={null}
|
|
188412
188979
|
rcsIosPreview={false}
|
|
188413
188980
|
rcsOrientation={null}
|
|
188414
188981
|
rcsType={null}
|
|
188982
|
+
senderDetailsByChannel={
|
|
188983
|
+
Object {
|
|
188984
|
+
"EMAIL": Array [],
|
|
188985
|
+
"SMS": Array [],
|
|
188986
|
+
"WHATSAPP": Array [],
|
|
188987
|
+
}
|
|
188988
|
+
}
|
|
188415
188989
|
show={false}
|
|
188416
188990
|
templateLayoutType={null}
|
|
188417
188991
|
testCustomers={Immutable.List []}
|
|
@@ -188419,6 +188993,7 @@ new message content.",
|
|
|
188419
188993
|
unicodeEnabled={false}
|
|
188420
188994
|
updatePreviewError={null}
|
|
188421
188995
|
updatePreviewErrors={Array []}
|
|
188996
|
+
wecrmAccounts={Array []}
|
|
188422
188997
|
whatsappAccountName={null}
|
|
188423
188998
|
whatsappContentLen={0}
|
|
188424
188999
|
>
|
|
@@ -188462,13 +189037,31 @@ new message content.",
|
|
|
188462
189037
|
<SendTestMessage
|
|
188463
189038
|
channel="RCS"
|
|
188464
189039
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
|
|
188465
|
-
formData={
|
|
189040
|
+
formData={
|
|
189041
|
+
Object {
|
|
189042
|
+
"suggestions": Array [
|
|
189043
|
+
Object {
|
|
189044
|
+
"index": 0,
|
|
189045
|
+
"isSaved": true,
|
|
189046
|
+
"phoneNumber": "",
|
|
189047
|
+
"postback": "stop",
|
|
189048
|
+
"text": "stop",
|
|
189049
|
+
"type": "QUICK_REPLY",
|
|
189050
|
+
"url": null,
|
|
189051
|
+
},
|
|
189052
|
+
],
|
|
189053
|
+
"templateHeader": "",
|
|
189054
|
+
"templateMessage": "",
|
|
189055
|
+
}
|
|
189056
|
+
}
|
|
188466
189057
|
formatMessage={[Function]}
|
|
188467
189058
|
handleSendTestMessage={[Function]}
|
|
188468
189059
|
handleTestEntitiesChange={[Function]}
|
|
188469
189060
|
isFetchingTestCustomers={false}
|
|
188470
189061
|
isFetchingTestGroups={false}
|
|
189062
|
+
isLoadingSenderDetails={false}
|
|
188471
189063
|
isSendingTestMessage={false}
|
|
189064
|
+
onSaveDeliverySettings={[Function]}
|
|
188472
189065
|
selectedTestEntities={Array []}
|
|
188473
189066
|
testEntitiesTreeData={
|
|
188474
189067
|
Array [
|
|
@@ -188486,6 +189079,7 @@ new message content.",
|
|
|
188486
189079
|
},
|
|
188487
189080
|
]
|
|
188488
189081
|
}
|
|
189082
|
+
wecrmAccounts={Array []}
|
|
188489
189083
|
/>
|
|
188490
189084
|
</CapRow>
|
|
188491
189085
|
<CapDivider
|
|
@@ -196309,8 +196903,10 @@ new message content.",
|
|
|
196309
196903
|
"createMessageMetaRequested": [Function],
|
|
196310
196904
|
"extractTagsRequested": [Function],
|
|
196311
196905
|
"getPrefilledValuesRequested": [Function],
|
|
196906
|
+
"getSenderDetailsRequested": [Function],
|
|
196312
196907
|
"getTestCustomersRequested": [Function],
|
|
196313
196908
|
"getTestGroupsRequested": [Function],
|
|
196909
|
+
"getWeCrmAccountsRequested": [Function],
|
|
196314
196910
|
"searchCustomersRequested": [Function],
|
|
196315
196911
|
"sendTestMessageRequested": [Function],
|
|
196316
196912
|
"updatePreviewRequested": [Function],
|
|
@@ -196331,6 +196927,7 @@ new message content.",
|
|
|
196331
196927
|
isExtractingTags={false}
|
|
196332
196928
|
isFetchingTestCustomers={false}
|
|
196333
196929
|
isFetchingTestGroups={false}
|
|
196930
|
+
isLoadingSenderDetails={false}
|
|
196334
196931
|
isSearchingCustomer={false}
|
|
196335
196932
|
isSendingTestMessage={false}
|
|
196336
196933
|
isUpdatingPreview={false}
|
|
@@ -196338,11 +196935,19 @@ new message content.",
|
|
|
196338
196935
|
onClose={[Function]}
|
|
196339
196936
|
prefilledValues={Object {}}
|
|
196340
196937
|
previewData={null}
|
|
196938
|
+
senderDetailsByChannel={
|
|
196939
|
+
Object {
|
|
196940
|
+
"EMAIL": Array [],
|
|
196941
|
+
"SMS": Array [],
|
|
196942
|
+
"WHATSAPP": Array [],
|
|
196943
|
+
}
|
|
196944
|
+
}
|
|
196341
196945
|
show={false}
|
|
196342
196946
|
testCustomers={Immutable.List []}
|
|
196343
196947
|
testGroups={Immutable.List []}
|
|
196344
196948
|
updatePreviewError={null}
|
|
196345
196949
|
updatePreviewErrors={Array []}
|
|
196950
|
+
wecrmAccounts={Array []}
|
|
196346
196951
|
>
|
|
196347
196952
|
<TestAndPreviewSlidebox
|
|
196348
196953
|
actions={
|
|
@@ -196354,8 +196959,10 @@ new message content.",
|
|
|
196354
196959
|
"createMessageMetaRequested": [Function],
|
|
196355
196960
|
"extractTagsRequested": [Function],
|
|
196356
196961
|
"getPrefilledValuesRequested": [Function],
|
|
196962
|
+
"getSenderDetailsRequested": [Function],
|
|
196357
196963
|
"getTestCustomersRequested": [Function],
|
|
196358
196964
|
"getTestGroupsRequested": [Function],
|
|
196965
|
+
"getWeCrmAccountsRequested": [Function],
|
|
196359
196966
|
"searchCustomersRequested": [Function],
|
|
196360
196967
|
"sendTestMessageRequested": [Function],
|
|
196361
196968
|
"updatePreviewRequested": [Function],
|
|
@@ -198624,18 +199231,28 @@ new message content.",
|
|
|
198624
199231
|
isExtractingTags={false}
|
|
198625
199232
|
isFetchingTestCustomers={false}
|
|
198626
199233
|
isFetchingTestGroups={false}
|
|
199234
|
+
isLoadingSenderDetails={false}
|
|
198627
199235
|
isSearchingCustomer={false}
|
|
198628
199236
|
isSendingTestMessage={false}
|
|
198629
199237
|
isUpdatingPreview={false}
|
|
198630
199238
|
messageMetaConfigId={null}
|
|
198631
199239
|
onClose={[Function]}
|
|
199240
|
+
orgUnitId={-1}
|
|
198632
199241
|
prefilledValues={Object {}}
|
|
198633
199242
|
previewData={null}
|
|
199243
|
+
senderDetailsByChannel={
|
|
199244
|
+
Object {
|
|
199245
|
+
"EMAIL": Array [],
|
|
199246
|
+
"SMS": Array [],
|
|
199247
|
+
"WHATSAPP": Array [],
|
|
199248
|
+
}
|
|
199249
|
+
}
|
|
198634
199250
|
show={false}
|
|
198635
199251
|
testCustomers={Immutable.List []}
|
|
198636
199252
|
testGroups={Immutable.List []}
|
|
198637
199253
|
updatePreviewError={null}
|
|
198638
199254
|
updatePreviewErrors={Array []}
|
|
199255
|
+
wecrmAccounts={Array []}
|
|
198639
199256
|
>
|
|
198640
199257
|
<CommonTestAndPreview
|
|
198641
199258
|
actions={
|
|
@@ -198647,8 +199264,10 @@ new message content.",
|
|
|
198647
199264
|
"createMessageMetaRequested": [Function],
|
|
198648
199265
|
"extractTagsRequested": [Function],
|
|
198649
199266
|
"getPrefilledValuesRequested": [Function],
|
|
199267
|
+
"getSenderDetailsRequested": [Function],
|
|
198650
199268
|
"getTestCustomersRequested": [Function],
|
|
198651
199269
|
"getTestGroupsRequested": [Function],
|
|
199270
|
+
"getWeCrmAccountsRequested": [Function],
|
|
198652
199271
|
"searchCustomersRequested": [Function],
|
|
198653
199272
|
"sendTestMessageRequested": [Function],
|
|
198654
199273
|
"updatePreviewRequested": [Function],
|
|
@@ -200924,16 +201543,25 @@ new message content.",
|
|
|
200924
201543
|
isExtractingTags={false}
|
|
200925
201544
|
isFetchingTestCustomers={false}
|
|
200926
201545
|
isFetchingTestGroups={false}
|
|
201546
|
+
isLoadingSenderDetails={false}
|
|
200927
201547
|
isSearchingCustomer={false}
|
|
200928
201548
|
isSendingTestMessage={false}
|
|
200929
201549
|
isUpdatingPreview={false}
|
|
200930
201550
|
messageMetaConfigId={null}
|
|
200931
201551
|
onClose={[Function]}
|
|
201552
|
+
orgUnitId={-1}
|
|
200932
201553
|
prefilledValues={Object {}}
|
|
200933
201554
|
previewData={null}
|
|
200934
201555
|
rcsIosPreview={false}
|
|
200935
201556
|
rcsOrientation={null}
|
|
200936
201557
|
rcsType={null}
|
|
201558
|
+
senderDetailsByChannel={
|
|
201559
|
+
Object {
|
|
201560
|
+
"EMAIL": Array [],
|
|
201561
|
+
"SMS": Array [],
|
|
201562
|
+
"WHATSAPP": Array [],
|
|
201563
|
+
}
|
|
201564
|
+
}
|
|
200937
201565
|
show={false}
|
|
200938
201566
|
templateLayoutType={null}
|
|
200939
201567
|
testCustomers={Immutable.List []}
|
|
@@ -200941,6 +201569,7 @@ new message content.",
|
|
|
200941
201569
|
unicodeEnabled={false}
|
|
200942
201570
|
updatePreviewError={null}
|
|
200943
201571
|
updatePreviewErrors={Array []}
|
|
201572
|
+
wecrmAccounts={Array []}
|
|
200944
201573
|
whatsappAccountName={null}
|
|
200945
201574
|
whatsappContentLen={0}
|
|
200946
201575
|
>
|
|
@@ -200984,13 +201613,20 @@ new message content.",
|
|
|
200984
201613
|
<SendTestMessage
|
|
200985
201614
|
channel="RCS"
|
|
200986
201615
|
content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\"}"
|
|
200987
|
-
formData={
|
|
201616
|
+
formData={
|
|
201617
|
+
Object {
|
|
201618
|
+
"templateHeader": "",
|
|
201619
|
+
"templateMessage": "",
|
|
201620
|
+
}
|
|
201621
|
+
}
|
|
200988
201622
|
formatMessage={[Function]}
|
|
200989
201623
|
handleSendTestMessage={[Function]}
|
|
200990
201624
|
handleTestEntitiesChange={[Function]}
|
|
200991
201625
|
isFetchingTestCustomers={false}
|
|
200992
201626
|
isFetchingTestGroups={false}
|
|
201627
|
+
isLoadingSenderDetails={false}
|
|
200993
201628
|
isSendingTestMessage={false}
|
|
201629
|
+
onSaveDeliverySettings={[Function]}
|
|
200994
201630
|
selectedTestEntities={Array []}
|
|
200995
201631
|
testEntitiesTreeData={
|
|
200996
201632
|
Array [
|
|
@@ -201008,6 +201644,7 @@ new message content.",
|
|
|
201008
201644
|
},
|
|
201009
201645
|
]
|
|
201010
201646
|
}
|
|
201647
|
+
wecrmAccounts={Array []}
|
|
201011
201648
|
/>
|
|
201012
201649
|
</CapRow>
|
|
201013
201650
|
<CapDivider
|