@capillarytech/creatives-library 9.0.56-betaa.0 → 9.0.56
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 +9 -4
- package/package.json +1 -1
- package/services/api.js +25 -4
- package/utils/common.js +0 -12
- package/utils/templateVarUtils.js +16 -0
- package/utils/tests/templateVarUtils.test.js +44 -0
- package/v2Components/CapActionButton/index.js +73 -60
- package/v2Components/CapActionButton/index.scss +44 -28
- package/v2Components/CapActionButton/messages.js +7 -3
- package/v2Components/CapActionButton/tests/index.test.js +17 -1
- package/v2Components/CapWhatsappCTA/messages.js +4 -0
- package/v2Components/CapWhatsappCarouselButton/index.js +42 -33
- package/v2Components/CapWhatsappCarouselButton/index.scss +44 -2
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +13 -0
- package/v2Components/CommonTestAndPreview/actions.js +13 -0
- package/v2Components/CommonTestAndPreview/constants.js +8 -0
- package/v2Components/CommonTestAndPreview/index.js +55 -3
- package/v2Components/CommonTestAndPreview/reducer.js +20 -0
- package/v2Components/CommonTestAndPreview/sagas.js +28 -0
- package/v2Components/CommonTestAndPreview/selectors.js +6 -0
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +106 -0
- package/v2Components/CommonTestAndPreview/tests/actions.test.js +15 -0
- package/v2Components/CommonTestAndPreview/tests/constants.test.js +9 -1
- package/v2Components/CommonTestAndPreview/tests/index.test.js +101 -0
- package/v2Components/CommonTestAndPreview/tests/reducer.test.js +41 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +84 -0
- package/v2Components/CommonTestAndPreview/tests/selectors.test.js +12 -0
- package/v2Components/FormBuilder/Functional/FormBuilderShell.js +46 -320
- package/v2Components/FormBuilder/Functional/channels/registry.js +0 -2
- package/v2Components/FormBuilder/Functional/constants.js +8 -43
- package/v2Components/FormBuilder/Functional/core/schema/initializeFormState.js +28 -175
- package/v2Components/FormBuilder/Functional/core/store/formReducer.js +6 -75
- package/v2Components/FormBuilder/Functional/core/store/toLegacyFormData.js +20 -10
- package/v2Components/FormBuilder/Functional/layout/FieldSlot.js +1 -9
- package/v2Components/FormBuilder/Functional/layout/SchemaForm.js +3 -20
- package/v2Components/FormBuilder/Functional/layout/Section.js +1 -6
- package/v2Components/FormBuilder/Functional/tests/fieldSlot.test.js +2 -9
- package/v2Components/FormBuilder/Functional/tests/schemaForm.test.js +0 -17
- package/v2Components/FormBuilder/index.js +12 -34
- package/v2Components/FormBuilder/tests/entryGate.test.js +7 -94
- package/v2Components/TestAndPreviewSlidebox/index.js +9 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +140 -75
- package/v2Containers/CommunicationFlow/CommunicationFlow.scss +18 -2
- package/v2Containers/CommunicationFlow/CommunicationFlowCard.js +67 -28
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +503 -51
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlowCard.test.js +98 -4
- package/v2Containers/CommunicationFlow/Tests/constants.test.js +85 -0
- package/v2Containers/CommunicationFlow/constants.js +65 -4
- package/v2Containers/CommunicationFlow/index.js +16 -23
- package/v2Containers/CommunicationFlow/messages.js +11 -3
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.js +27 -11
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.scss +4 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/Tests/ChannelSelectionStep.test.js +176 -4
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.js +22 -4
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/SenderDetails.js +14 -4
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/DeliverySettingsSection.test.js +11 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/SenderDetails.test.js +51 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/deliverySettingsConfig.test.js +11 -4
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/deliverySettingsConfig.js +19 -5
- package/v2Containers/CreativesContainer/SlideBoxContent.js +15 -0
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +6 -2
- package/v2Containers/CreativesContainer/index.js +29 -3
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +29 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +18 -5
- package/v2Containers/CreativesContainer/tests/index.test.js +12 -0
- package/v2Containers/MobilePush/Create/index.js +18 -1
- package/v2Containers/MobilePush/Create/test/contentValidity.test.js +96 -0
- package/v2Containers/MobilePush/Edit/index.js +18 -1
- package/v2Containers/MobilePush/Edit/test/contentValidity.test.js +116 -0
- package/v2Containers/MobilePush/commonMethods.js +49 -1
- package/v2Containers/MobilePushNew/index.js +29 -4
- package/v2Containers/MobilePushNew/tests/index.test.js +119 -0
- package/v2Containers/MobilePushNew/tests/utils.test.js +82 -0
- package/v2Containers/MobilePushNew/utils.js +34 -1
- package/v2Containers/MobilepushWrapper/index.js +3 -1
- package/v2Containers/Rcs/index.js +34 -0
- package/v2Containers/Rcs/index.scss +15 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +115 -19
- package/v2Containers/Rcs/tests/index.test.js +67 -0
- package/v2Containers/Sms/Create/index.js +3 -1
- package/v2Containers/Sms/Edit/index.js +25 -0
- package/v2Containers/Sms/Edit/tests/index.test.js +85 -0
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +27 -3
- package/v2Containers/Viber/index.js +24 -1
- package/v2Containers/Viber/tests/index.test.js +103 -0
- package/v2Containers/WebPush/Create/index.js +19 -0
- package/v2Containers/WebPush/Create/preview/WebPushPreview.js +17 -12
- package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +5 -0
- package/v2Containers/WebPush/Create/tests/contentValidity.test.js +294 -0
- package/v2Containers/Whatsapp/index.js +25 -4
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +306 -34
- package/v2Containers/Whatsapp/tests/index.test.js +115 -0
- package/v2Containers/Zalo/index.js +28 -1
- package/v2Containers/Zalo/tests/index.test.js +99 -0
- package/v2Containers/mockdata.js +25 -0
- package/v2Components/FormBuilder/Functional/channels/mobilepush/buildSubmitPayload.js +0 -10
- package/v2Components/FormBuilder/Functional/channels/mobilepush/config.js +0 -82
- package/v2Components/FormBuilder/Functional/channels/mobilepush/getEditorErrorDescriptor.js +0 -74
- package/v2Components/FormBuilder/Functional/channels/mobilepush/index.js +0 -28
- package/v2Components/FormBuilder/Functional/channels/mobilepush/modals.js +0 -19
- package/v2Components/FormBuilder/Functional/channels/mobilepush/runSubmitPipeline.js +0 -45
- package/v2Components/FormBuilder/Functional/channels/mobilepush/tests/getEditorErrorDescriptor.test.js +0 -162
- package/v2Components/FormBuilder/Functional/channels/mobilepush/tests/modals.test.js +0 -37
- package/v2Components/FormBuilder/Functional/channels/mobilepush/tests/runSubmitPipeline.test.js +0 -70
- package/v2Components/FormBuilder/Functional/channels/mobilepush/tests/validate.test.js +0 -274
- package/v2Components/FormBuilder/Functional/channels/mobilepush/validate.js +0 -251
- package/v2Components/FormBuilder/Functional/layout/TabsContainer.js +0 -89
- package/v2Components/FormBuilder/Functional/renderers/mpushRenderers.js +0 -440
- package/v2Components/FormBuilder/Functional/tests/mpush.crossFlowParity.test.js +0 -430
- package/v2Components/FormBuilder/Functional/tests/mpush.ctaFlows.parity.test.js +0 -282
- package/v2Components/FormBuilder/Functional/tests/mpush.editContainer.parity.test.js +0 -141
- package/v2Components/FormBuilder/Functional/tests/mpush.engine.test.js +0 -306
- package/v2Components/FormBuilder/Functional/tests/mpush.shellEvents.test.js +0 -151
- package/v2Components/FormBuilder/Functional/tests/mpushRenderers.test.js +0 -342
- package/v2Components/FormBuilder/Functional/tests/tabsContainer.test.js +0 -110
- package/v2Components/FormBuilder/tests/mpush.characterization.test.js +0 -459
|
@@ -2302,7 +2302,7 @@ new message content.",
|
|
|
2302
2302
|
"cont": undefined,
|
|
2303
2303
|
"done": Promise {},
|
|
2304
2304
|
"error": [Function],
|
|
2305
|
-
"id":
|
|
2305
|
+
"id": 35,
|
|
2306
2306
|
"isAborted": [Function],
|
|
2307
2307
|
"isCancelled": [Function],
|
|
2308
2308
|
"isRunning": [Function],
|
|
@@ -10945,6 +10945,7 @@ new message content.",
|
|
|
10945
10945
|
"getTestGroupsRequested": [Function],
|
|
10946
10946
|
"getWeCrmAccountsRequested": [Function],
|
|
10947
10947
|
"searchCustomersRequested": [Function],
|
|
10948
|
+
"sendCcsTestMessageRequested": [Function],
|
|
10948
10949
|
"sendTestMessageRequested": [Function],
|
|
10949
10950
|
"updatePreviewRequested": [Function],
|
|
10950
10951
|
}
|
|
@@ -10997,6 +10998,7 @@ new message content.",
|
|
|
10997
10998
|
isFetchingTestGroups={false}
|
|
10998
10999
|
isLoadingSenderDetails={false}
|
|
10999
11000
|
isSearchingCustomer={false}
|
|
11001
|
+
isSendingCcsTestMessage={false}
|
|
11000
11002
|
isSendingTestMessage={false}
|
|
11001
11003
|
isUpdatingPreview={false}
|
|
11002
11004
|
messageMetaConfigId={null}
|
|
@@ -11040,11 +11042,13 @@ new message content.",
|
|
|
11040
11042
|
"getTestGroupsRequested": [Function],
|
|
11041
11043
|
"getWeCrmAccountsRequested": [Function],
|
|
11042
11044
|
"searchCustomersRequested": [Function],
|
|
11045
|
+
"sendCcsTestMessageRequested": [Function],
|
|
11043
11046
|
"sendTestMessageRequested": [Function],
|
|
11044
11047
|
"updatePreviewRequested": [Function],
|
|
11045
11048
|
}
|
|
11046
11049
|
}
|
|
11047
11050
|
beeInstance={null}
|
|
11051
|
+
ccsSendTransaction={null}
|
|
11048
11052
|
channel={null}
|
|
11049
11053
|
content={
|
|
11050
11054
|
Object {
|
|
@@ -13340,6 +13344,7 @@ new message content.",
|
|
|
13340
13344
|
isFetchingTestGroups={false}
|
|
13341
13345
|
isLoadingSenderDetails={false}
|
|
13342
13346
|
isSearchingCustomer={false}
|
|
13347
|
+
isSendingCcsTestMessage={false}
|
|
13343
13348
|
isSendingTestMessage={false}
|
|
13344
13349
|
isUpdatingPreview={false}
|
|
13345
13350
|
messageMetaConfigId={null}
|
|
@@ -13384,11 +13389,13 @@ new message content.",
|
|
|
13384
13389
|
"getTestGroupsRequested": [Function],
|
|
13385
13390
|
"getWeCrmAccountsRequested": [Function],
|
|
13386
13391
|
"searchCustomersRequested": [Function],
|
|
13392
|
+
"sendCcsTestMessageRequested": [Function],
|
|
13387
13393
|
"sendTestMessageRequested": [Function],
|
|
13388
13394
|
"updatePreviewRequested": [Function],
|
|
13389
13395
|
}
|
|
13390
13396
|
}
|
|
13391
13397
|
beeInstance={null}
|
|
13398
|
+
ccsSendTransaction={null}
|
|
13392
13399
|
channel="RCS"
|
|
13393
13400
|
config={
|
|
13394
13401
|
Object {
|
|
@@ -15691,6 +15698,7 @@ new message content.",
|
|
|
15691
15698
|
isFetchingTestGroups={false}
|
|
15692
15699
|
isLoadingSenderDetails={false}
|
|
15693
15700
|
isSearchingCustomer={false}
|
|
15701
|
+
isSendingCcsTestMessage={false}
|
|
15694
15702
|
isSendingTestMessage={false}
|
|
15695
15703
|
isUpdatingPreview={false}
|
|
15696
15704
|
messageMetaConfigId={null}
|
|
@@ -15912,7 +15920,7 @@ new message content.",
|
|
|
15912
15920
|
</CapRow>
|
|
15913
15921
|
}
|
|
15914
15922
|
show={false}
|
|
15915
|
-
size="size-
|
|
15923
|
+
size="size-l"
|
|
15916
15924
|
/>
|
|
15917
15925
|
</CommonTestAndPreview>
|
|
15918
15926
|
</TestAndPreviewSlidebox>
|
|
@@ -18228,7 +18236,7 @@ new message content.",
|
|
|
18228
18236
|
"cont": undefined,
|
|
18229
18237
|
"done": Promise {},
|
|
18230
18238
|
"error": [Function],
|
|
18231
|
-
"id":
|
|
18239
|
+
"id": 35,
|
|
18232
18240
|
"isAborted": [Function],
|
|
18233
18241
|
"isCancelled": [Function],
|
|
18234
18242
|
"isRunning": [Function],
|
|
@@ -26871,6 +26879,7 @@ new message content.",
|
|
|
26871
26879
|
"getTestGroupsRequested": [Function],
|
|
26872
26880
|
"getWeCrmAccountsRequested": [Function],
|
|
26873
26881
|
"searchCustomersRequested": [Function],
|
|
26882
|
+
"sendCcsTestMessageRequested": [Function],
|
|
26874
26883
|
"sendTestMessageRequested": [Function],
|
|
26875
26884
|
"updatePreviewRequested": [Function],
|
|
26876
26885
|
}
|
|
@@ -26923,6 +26932,7 @@ new message content.",
|
|
|
26923
26932
|
isFetchingTestGroups={false}
|
|
26924
26933
|
isLoadingSenderDetails={false}
|
|
26925
26934
|
isSearchingCustomer={false}
|
|
26935
|
+
isSendingCcsTestMessage={false}
|
|
26926
26936
|
isSendingTestMessage={false}
|
|
26927
26937
|
isUpdatingPreview={false}
|
|
26928
26938
|
messageMetaConfigId={null}
|
|
@@ -26966,11 +26976,13 @@ new message content.",
|
|
|
26966
26976
|
"getTestGroupsRequested": [Function],
|
|
26967
26977
|
"getWeCrmAccountsRequested": [Function],
|
|
26968
26978
|
"searchCustomersRequested": [Function],
|
|
26979
|
+
"sendCcsTestMessageRequested": [Function],
|
|
26969
26980
|
"sendTestMessageRequested": [Function],
|
|
26970
26981
|
"updatePreviewRequested": [Function],
|
|
26971
26982
|
}
|
|
26972
26983
|
}
|
|
26973
26984
|
beeInstance={null}
|
|
26985
|
+
ccsSendTransaction={null}
|
|
26974
26986
|
channel={null}
|
|
26975
26987
|
content={
|
|
26976
26988
|
Object {
|
|
@@ -29266,6 +29278,7 @@ new message content.",
|
|
|
29266
29278
|
isFetchingTestGroups={false}
|
|
29267
29279
|
isLoadingSenderDetails={false}
|
|
29268
29280
|
isSearchingCustomer={false}
|
|
29281
|
+
isSendingCcsTestMessage={false}
|
|
29269
29282
|
isSendingTestMessage={false}
|
|
29270
29283
|
isUpdatingPreview={false}
|
|
29271
29284
|
messageMetaConfigId={null}
|
|
@@ -29310,11 +29323,13 @@ new message content.",
|
|
|
29310
29323
|
"getTestGroupsRequested": [Function],
|
|
29311
29324
|
"getWeCrmAccountsRequested": [Function],
|
|
29312
29325
|
"searchCustomersRequested": [Function],
|
|
29326
|
+
"sendCcsTestMessageRequested": [Function],
|
|
29313
29327
|
"sendTestMessageRequested": [Function],
|
|
29314
29328
|
"updatePreviewRequested": [Function],
|
|
29315
29329
|
}
|
|
29316
29330
|
}
|
|
29317
29331
|
beeInstance={null}
|
|
29332
|
+
ccsSendTransaction={null}
|
|
29318
29333
|
channel="RCS"
|
|
29319
29334
|
config={
|
|
29320
29335
|
Object {
|
|
@@ -31617,6 +31632,7 @@ new message content.",
|
|
|
31617
31632
|
isFetchingTestGroups={false}
|
|
31618
31633
|
isLoadingSenderDetails={false}
|
|
31619
31634
|
isSearchingCustomer={false}
|
|
31635
|
+
isSendingCcsTestMessage={false}
|
|
31620
31636
|
isSendingTestMessage={false}
|
|
31621
31637
|
isUpdatingPreview={false}
|
|
31622
31638
|
messageMetaConfigId={null}
|
|
@@ -31838,7 +31854,7 @@ new message content.",
|
|
|
31838
31854
|
</CapRow>
|
|
31839
31855
|
}
|
|
31840
31856
|
show={false}
|
|
31841
|
-
size="size-
|
|
31857
|
+
size="size-l"
|
|
31842
31858
|
/>
|
|
31843
31859
|
</CommonTestAndPreview>
|
|
31844
31860
|
</TestAndPreviewSlidebox>
|
|
@@ -43359,6 +43375,7 @@ new message content.",
|
|
|
43359
43375
|
"getTestGroupsRequested": [Function],
|
|
43360
43376
|
"getWeCrmAccountsRequested": [Function],
|
|
43361
43377
|
"searchCustomersRequested": [Function],
|
|
43378
|
+
"sendCcsTestMessageRequested": [Function],
|
|
43362
43379
|
"sendTestMessageRequested": [Function],
|
|
43363
43380
|
"updatePreviewRequested": [Function],
|
|
43364
43381
|
}
|
|
@@ -43411,6 +43428,7 @@ new message content.",
|
|
|
43411
43428
|
isFetchingTestGroups={false}
|
|
43412
43429
|
isLoadingSenderDetails={false}
|
|
43413
43430
|
isSearchingCustomer={false}
|
|
43431
|
+
isSendingCcsTestMessage={false}
|
|
43414
43432
|
isSendingTestMessage={false}
|
|
43415
43433
|
isUpdatingPreview={false}
|
|
43416
43434
|
messageMetaConfigId={null}
|
|
@@ -43454,11 +43472,13 @@ new message content.",
|
|
|
43454
43472
|
"getTestGroupsRequested": [Function],
|
|
43455
43473
|
"getWeCrmAccountsRequested": [Function],
|
|
43456
43474
|
"searchCustomersRequested": [Function],
|
|
43475
|
+
"sendCcsTestMessageRequested": [Function],
|
|
43457
43476
|
"sendTestMessageRequested": [Function],
|
|
43458
43477
|
"updatePreviewRequested": [Function],
|
|
43459
43478
|
}
|
|
43460
43479
|
}
|
|
43461
43480
|
beeInstance={null}
|
|
43481
|
+
ccsSendTransaction={null}
|
|
43462
43482
|
channel={null}
|
|
43463
43483
|
content={
|
|
43464
43484
|
Object {
|
|
@@ -45754,6 +45774,7 @@ new message content.",
|
|
|
45754
45774
|
isFetchingTestGroups={false}
|
|
45755
45775
|
isLoadingSenderDetails={false}
|
|
45756
45776
|
isSearchingCustomer={false}
|
|
45777
|
+
isSendingCcsTestMessage={false}
|
|
45757
45778
|
isSendingTestMessage={false}
|
|
45758
45779
|
isUpdatingPreview={false}
|
|
45759
45780
|
messageMetaConfigId={null}
|
|
@@ -45798,11 +45819,13 @@ new message content.",
|
|
|
45798
45819
|
"getTestGroupsRequested": [Function],
|
|
45799
45820
|
"getWeCrmAccountsRequested": [Function],
|
|
45800
45821
|
"searchCustomersRequested": [Function],
|
|
45822
|
+
"sendCcsTestMessageRequested": [Function],
|
|
45801
45823
|
"sendTestMessageRequested": [Function],
|
|
45802
45824
|
"updatePreviewRequested": [Function],
|
|
45803
45825
|
}
|
|
45804
45826
|
}
|
|
45805
45827
|
beeInstance={null}
|
|
45828
|
+
ccsSendTransaction={null}
|
|
45806
45829
|
channel="RCS"
|
|
45807
45830
|
config={
|
|
45808
45831
|
Object {
|
|
@@ -48105,6 +48128,7 @@ new message content.",
|
|
|
48105
48128
|
isFetchingTestGroups={false}
|
|
48106
48129
|
isLoadingSenderDetails={false}
|
|
48107
48130
|
isSearchingCustomer={false}
|
|
48131
|
+
isSendingCcsTestMessage={false}
|
|
48108
48132
|
isSendingTestMessage={false}
|
|
48109
48133
|
isUpdatingPreview={false}
|
|
48110
48134
|
messageMetaConfigId={null}
|
|
@@ -48326,7 +48350,7 @@ new message content.",
|
|
|
48326
48350
|
</CapRow>
|
|
48327
48351
|
}
|
|
48328
48352
|
show={false}
|
|
48329
|
-
size="size-
|
|
48353
|
+
size="size-l"
|
|
48330
48354
|
/>
|
|
48331
48355
|
</CommonTestAndPreview>
|
|
48332
48356
|
</TestAndPreviewSlidebox>
|
|
@@ -60457,6 +60481,7 @@ new message content.",
|
|
|
60457
60481
|
"getTestGroupsRequested": [Function],
|
|
60458
60482
|
"getWeCrmAccountsRequested": [Function],
|
|
60459
60483
|
"searchCustomersRequested": [Function],
|
|
60484
|
+
"sendCcsTestMessageRequested": [Function],
|
|
60460
60485
|
"sendTestMessageRequested": [Function],
|
|
60461
60486
|
"updatePreviewRequested": [Function],
|
|
60462
60487
|
}
|
|
@@ -60509,6 +60534,7 @@ new message content.",
|
|
|
60509
60534
|
isFetchingTestGroups={false}
|
|
60510
60535
|
isLoadingSenderDetails={false}
|
|
60511
60536
|
isSearchingCustomer={false}
|
|
60537
|
+
isSendingCcsTestMessage={false}
|
|
60512
60538
|
isSendingTestMessage={false}
|
|
60513
60539
|
isUpdatingPreview={false}
|
|
60514
60540
|
messageMetaConfigId={null}
|
|
@@ -60552,11 +60578,13 @@ new message content.",
|
|
|
60552
60578
|
"getTestGroupsRequested": [Function],
|
|
60553
60579
|
"getWeCrmAccountsRequested": [Function],
|
|
60554
60580
|
"searchCustomersRequested": [Function],
|
|
60581
|
+
"sendCcsTestMessageRequested": [Function],
|
|
60555
60582
|
"sendTestMessageRequested": [Function],
|
|
60556
60583
|
"updatePreviewRequested": [Function],
|
|
60557
60584
|
}
|
|
60558
60585
|
}
|
|
60559
60586
|
beeInstance={null}
|
|
60587
|
+
ccsSendTransaction={null}
|
|
60560
60588
|
channel={null}
|
|
60561
60589
|
content={
|
|
60562
60590
|
Object {
|
|
@@ -62852,6 +62880,7 @@ new message content.",
|
|
|
62852
62880
|
isFetchingTestGroups={false}
|
|
62853
62881
|
isLoadingSenderDetails={false}
|
|
62854
62882
|
isSearchingCustomer={false}
|
|
62883
|
+
isSendingCcsTestMessage={false}
|
|
62855
62884
|
isSendingTestMessage={false}
|
|
62856
62885
|
isUpdatingPreview={false}
|
|
62857
62886
|
messageMetaConfigId={null}
|
|
@@ -62896,11 +62925,13 @@ new message content.",
|
|
|
62896
62925
|
"getTestGroupsRequested": [Function],
|
|
62897
62926
|
"getWeCrmAccountsRequested": [Function],
|
|
62898
62927
|
"searchCustomersRequested": [Function],
|
|
62928
|
+
"sendCcsTestMessageRequested": [Function],
|
|
62899
62929
|
"sendTestMessageRequested": [Function],
|
|
62900
62930
|
"updatePreviewRequested": [Function],
|
|
62901
62931
|
}
|
|
62902
62932
|
}
|
|
62903
62933
|
beeInstance={null}
|
|
62934
|
+
ccsSendTransaction={null}
|
|
62904
62935
|
channel="RCS"
|
|
62905
62936
|
config={
|
|
62906
62937
|
Object {
|
|
@@ -65203,6 +65234,7 @@ new message content.",
|
|
|
65203
65234
|
isFetchingTestGroups={false}
|
|
65204
65235
|
isLoadingSenderDetails={false}
|
|
65205
65236
|
isSearchingCustomer={false}
|
|
65237
|
+
isSendingCcsTestMessage={false}
|
|
65206
65238
|
isSendingTestMessage={false}
|
|
65207
65239
|
isUpdatingPreview={false}
|
|
65208
65240
|
messageMetaConfigId={null}
|
|
@@ -65424,7 +65456,7 @@ new message content.",
|
|
|
65424
65456
|
</CapRow>
|
|
65425
65457
|
}
|
|
65426
65458
|
show={false}
|
|
65427
|
-
size="size-
|
|
65459
|
+
size="size-l"
|
|
65428
65460
|
/>
|
|
65429
65461
|
</CommonTestAndPreview>
|
|
65430
65462
|
</TestAndPreviewSlidebox>
|
|
@@ -67740,7 +67772,7 @@ new message content.",
|
|
|
67740
67772
|
"cont": undefined,
|
|
67741
67773
|
"done": Promise {},
|
|
67742
67774
|
"error": [Function],
|
|
67743
|
-
"id":
|
|
67775
|
+
"id": 35,
|
|
67744
67776
|
"isAborted": [Function],
|
|
67745
67777
|
"isCancelled": [Function],
|
|
67746
67778
|
"isRunning": [Function],
|
|
@@ -76383,6 +76415,7 @@ new message content.",
|
|
|
76383
76415
|
"getTestGroupsRequested": [Function],
|
|
76384
76416
|
"getWeCrmAccountsRequested": [Function],
|
|
76385
76417
|
"searchCustomersRequested": [Function],
|
|
76418
|
+
"sendCcsTestMessageRequested": [Function],
|
|
76386
76419
|
"sendTestMessageRequested": [Function],
|
|
76387
76420
|
"updatePreviewRequested": [Function],
|
|
76388
76421
|
}
|
|
@@ -76435,6 +76468,7 @@ new message content.",
|
|
|
76435
76468
|
isFetchingTestGroups={false}
|
|
76436
76469
|
isLoadingSenderDetails={false}
|
|
76437
76470
|
isSearchingCustomer={false}
|
|
76471
|
+
isSendingCcsTestMessage={false}
|
|
76438
76472
|
isSendingTestMessage={false}
|
|
76439
76473
|
isUpdatingPreview={false}
|
|
76440
76474
|
messageMetaConfigId={null}
|
|
@@ -76478,11 +76512,13 @@ new message content.",
|
|
|
76478
76512
|
"getTestGroupsRequested": [Function],
|
|
76479
76513
|
"getWeCrmAccountsRequested": [Function],
|
|
76480
76514
|
"searchCustomersRequested": [Function],
|
|
76515
|
+
"sendCcsTestMessageRequested": [Function],
|
|
76481
76516
|
"sendTestMessageRequested": [Function],
|
|
76482
76517
|
"updatePreviewRequested": [Function],
|
|
76483
76518
|
}
|
|
76484
76519
|
}
|
|
76485
76520
|
beeInstance={null}
|
|
76521
|
+
ccsSendTransaction={null}
|
|
76486
76522
|
channel={null}
|
|
76487
76523
|
content={
|
|
76488
76524
|
Object {
|
|
@@ -78778,6 +78814,7 @@ new message content.",
|
|
|
78778
78814
|
isFetchingTestGroups={false}
|
|
78779
78815
|
isLoadingSenderDetails={false}
|
|
78780
78816
|
isSearchingCustomer={false}
|
|
78817
|
+
isSendingCcsTestMessage={false}
|
|
78781
78818
|
isSendingTestMessage={false}
|
|
78782
78819
|
isUpdatingPreview={false}
|
|
78783
78820
|
messageMetaConfigId={null}
|
|
@@ -78822,11 +78859,13 @@ new message content.",
|
|
|
78822
78859
|
"getTestGroupsRequested": [Function],
|
|
78823
78860
|
"getWeCrmAccountsRequested": [Function],
|
|
78824
78861
|
"searchCustomersRequested": [Function],
|
|
78862
|
+
"sendCcsTestMessageRequested": [Function],
|
|
78825
78863
|
"sendTestMessageRequested": [Function],
|
|
78826
78864
|
"updatePreviewRequested": [Function],
|
|
78827
78865
|
}
|
|
78828
78866
|
}
|
|
78829
78867
|
beeInstance={null}
|
|
78868
|
+
ccsSendTransaction={null}
|
|
78830
78869
|
channel="RCS"
|
|
78831
78870
|
config={
|
|
78832
78871
|
Object {
|
|
@@ -81129,6 +81168,7 @@ new message content.",
|
|
|
81129
81168
|
isFetchingTestGroups={false}
|
|
81130
81169
|
isLoadingSenderDetails={false}
|
|
81131
81170
|
isSearchingCustomer={false}
|
|
81171
|
+
isSendingCcsTestMessage={false}
|
|
81132
81172
|
isSendingTestMessage={false}
|
|
81133
81173
|
isUpdatingPreview={false}
|
|
81134
81174
|
messageMetaConfigId={null}
|
|
@@ -81350,7 +81390,7 @@ new message content.",
|
|
|
81350
81390
|
</CapRow>
|
|
81351
81391
|
}
|
|
81352
81392
|
show={false}
|
|
81353
|
-
size="size-
|
|
81393
|
+
size="size-l"
|
|
81354
81394
|
/>
|
|
81355
81395
|
</CommonTestAndPreview>
|
|
81356
81396
|
</TestAndPreviewSlidebox>
|
|
@@ -83666,7 +83706,7 @@ new message content.",
|
|
|
83666
83706
|
"cont": undefined,
|
|
83667
83707
|
"done": Promise {},
|
|
83668
83708
|
"error": [Function],
|
|
83669
|
-
"id":
|
|
83709
|
+
"id": 35,
|
|
83670
83710
|
"isAborted": [Function],
|
|
83671
83711
|
"isCancelled": [Function],
|
|
83672
83712
|
"isRunning": [Function],
|
|
@@ -96244,6 +96284,7 @@ new message content.",
|
|
|
96244
96284
|
"getTestGroupsRequested": [Function],
|
|
96245
96285
|
"getWeCrmAccountsRequested": [Function],
|
|
96246
96286
|
"searchCustomersRequested": [Function],
|
|
96287
|
+
"sendCcsTestMessageRequested": [Function],
|
|
96247
96288
|
"sendTestMessageRequested": [Function],
|
|
96248
96289
|
"updatePreviewRequested": [Function],
|
|
96249
96290
|
}
|
|
@@ -96301,6 +96342,7 @@ new message content.",
|
|
|
96301
96342
|
isFetchingTestGroups={false}
|
|
96302
96343
|
isLoadingSenderDetails={false}
|
|
96303
96344
|
isSearchingCustomer={false}
|
|
96345
|
+
isSendingCcsTestMessage={false}
|
|
96304
96346
|
isSendingTestMessage={false}
|
|
96305
96347
|
isUpdatingPreview={false}
|
|
96306
96348
|
messageMetaConfigId={null}
|
|
@@ -96344,11 +96386,13 @@ new message content.",
|
|
|
96344
96386
|
"getTestGroupsRequested": [Function],
|
|
96345
96387
|
"getWeCrmAccountsRequested": [Function],
|
|
96346
96388
|
"searchCustomersRequested": [Function],
|
|
96389
|
+
"sendCcsTestMessageRequested": [Function],
|
|
96347
96390
|
"sendTestMessageRequested": [Function],
|
|
96348
96391
|
"updatePreviewRequested": [Function],
|
|
96349
96392
|
}
|
|
96350
96393
|
}
|
|
96351
96394
|
beeInstance={null}
|
|
96395
|
+
ccsSendTransaction={null}
|
|
96352
96396
|
channel={null}
|
|
96353
96397
|
content={
|
|
96354
96398
|
Object {
|
|
@@ -98649,6 +98693,7 @@ new message content.",
|
|
|
98649
98693
|
isFetchingTestGroups={false}
|
|
98650
98694
|
isLoadingSenderDetails={false}
|
|
98651
98695
|
isSearchingCustomer={false}
|
|
98696
|
+
isSendingCcsTestMessage={false}
|
|
98652
98697
|
isSendingTestMessage={false}
|
|
98653
98698
|
isUpdatingPreview={false}
|
|
98654
98699
|
messageMetaConfigId={null}
|
|
@@ -98693,11 +98738,13 @@ new message content.",
|
|
|
98693
98738
|
"getTestGroupsRequested": [Function],
|
|
98694
98739
|
"getWeCrmAccountsRequested": [Function],
|
|
98695
98740
|
"searchCustomersRequested": [Function],
|
|
98741
|
+
"sendCcsTestMessageRequested": [Function],
|
|
98696
98742
|
"sendTestMessageRequested": [Function],
|
|
98697
98743
|
"updatePreviewRequested": [Function],
|
|
98698
98744
|
}
|
|
98699
98745
|
}
|
|
98700
98746
|
beeInstance={null}
|
|
98747
|
+
ccsSendTransaction={null}
|
|
98701
98748
|
channel="RCS"
|
|
98702
98749
|
config={
|
|
98703
98750
|
Object {
|
|
@@ -101005,6 +101052,7 @@ new message content.",
|
|
|
101005
101052
|
isFetchingTestGroups={false}
|
|
101006
101053
|
isLoadingSenderDetails={false}
|
|
101007
101054
|
isSearchingCustomer={false}
|
|
101055
|
+
isSendingCcsTestMessage={false}
|
|
101008
101056
|
isSendingTestMessage={false}
|
|
101009
101057
|
isUpdatingPreview={false}
|
|
101010
101058
|
messageMetaConfigId={null}
|
|
@@ -101231,7 +101279,7 @@ new message content.",
|
|
|
101231
101279
|
</CapRow>
|
|
101232
101280
|
}
|
|
101233
101281
|
show={false}
|
|
101234
|
-
size="size-
|
|
101282
|
+
size="size-l"
|
|
101235
101283
|
/>
|
|
101236
101284
|
</CommonTestAndPreview>
|
|
101237
101285
|
</TestAndPreviewSlidebox>
|
|
@@ -103547,7 +103595,7 @@ new message content.",
|
|
|
103547
103595
|
"cont": undefined,
|
|
103548
103596
|
"done": Promise {},
|
|
103549
103597
|
"error": [Function],
|
|
103550
|
-
"id":
|
|
103598
|
+
"id": 35,
|
|
103551
103599
|
"isAborted": [Function],
|
|
103552
103600
|
"isCancelled": [Function],
|
|
103553
103601
|
"isRunning": [Function],
|
|
@@ -116125,6 +116173,7 @@ new message content.",
|
|
|
116125
116173
|
"getTestGroupsRequested": [Function],
|
|
116126
116174
|
"getWeCrmAccountsRequested": [Function],
|
|
116127
116175
|
"searchCustomersRequested": [Function],
|
|
116176
|
+
"sendCcsTestMessageRequested": [Function],
|
|
116128
116177
|
"sendTestMessageRequested": [Function],
|
|
116129
116178
|
"updatePreviewRequested": [Function],
|
|
116130
116179
|
}
|
|
@@ -116182,6 +116231,7 @@ new message content.",
|
|
|
116182
116231
|
isFetchingTestGroups={false}
|
|
116183
116232
|
isLoadingSenderDetails={false}
|
|
116184
116233
|
isSearchingCustomer={false}
|
|
116234
|
+
isSendingCcsTestMessage={false}
|
|
116185
116235
|
isSendingTestMessage={false}
|
|
116186
116236
|
isUpdatingPreview={false}
|
|
116187
116237
|
messageMetaConfigId={null}
|
|
@@ -116225,11 +116275,13 @@ new message content.",
|
|
|
116225
116275
|
"getTestGroupsRequested": [Function],
|
|
116226
116276
|
"getWeCrmAccountsRequested": [Function],
|
|
116227
116277
|
"searchCustomersRequested": [Function],
|
|
116278
|
+
"sendCcsTestMessageRequested": [Function],
|
|
116228
116279
|
"sendTestMessageRequested": [Function],
|
|
116229
116280
|
"updatePreviewRequested": [Function],
|
|
116230
116281
|
}
|
|
116231
116282
|
}
|
|
116232
116283
|
beeInstance={null}
|
|
116284
|
+
ccsSendTransaction={null}
|
|
116233
116285
|
channel={null}
|
|
116234
116286
|
content={
|
|
116235
116287
|
Object {
|
|
@@ -118530,6 +118582,7 @@ new message content.",
|
|
|
118530
118582
|
isFetchingTestGroups={false}
|
|
118531
118583
|
isLoadingSenderDetails={false}
|
|
118532
118584
|
isSearchingCustomer={false}
|
|
118585
|
+
isSendingCcsTestMessage={false}
|
|
118533
118586
|
isSendingTestMessage={false}
|
|
118534
118587
|
isUpdatingPreview={false}
|
|
118535
118588
|
messageMetaConfigId={null}
|
|
@@ -118574,11 +118627,13 @@ new message content.",
|
|
|
118574
118627
|
"getTestGroupsRequested": [Function],
|
|
118575
118628
|
"getWeCrmAccountsRequested": [Function],
|
|
118576
118629
|
"searchCustomersRequested": [Function],
|
|
118630
|
+
"sendCcsTestMessageRequested": [Function],
|
|
118577
118631
|
"sendTestMessageRequested": [Function],
|
|
118578
118632
|
"updatePreviewRequested": [Function],
|
|
118579
118633
|
}
|
|
118580
118634
|
}
|
|
118581
118635
|
beeInstance={null}
|
|
118636
|
+
ccsSendTransaction={null}
|
|
118582
118637
|
channel="RCS"
|
|
118583
118638
|
config={
|
|
118584
118639
|
Object {
|
|
@@ -120886,6 +120941,7 @@ new message content.",
|
|
|
120886
120941
|
isFetchingTestGroups={false}
|
|
120887
120942
|
isLoadingSenderDetails={false}
|
|
120888
120943
|
isSearchingCustomer={false}
|
|
120944
|
+
isSendingCcsTestMessage={false}
|
|
120889
120945
|
isSendingTestMessage={false}
|
|
120890
120946
|
isUpdatingPreview={false}
|
|
120891
120947
|
messageMetaConfigId={null}
|
|
@@ -121112,7 +121168,7 @@ new message content.",
|
|
|
121112
121168
|
</CapRow>
|
|
121113
121169
|
}
|
|
121114
121170
|
show={false}
|
|
121115
|
-
size="size-
|
|
121171
|
+
size="size-l"
|
|
121116
121172
|
/>
|
|
121117
121173
|
</CommonTestAndPreview>
|
|
121118
121174
|
</TestAndPreviewSlidebox>
|
|
@@ -123428,7 +123484,7 @@ new message content.",
|
|
|
123428
123484
|
"cont": undefined,
|
|
123429
123485
|
"done": Promise {},
|
|
123430
123486
|
"error": [Function],
|
|
123431
|
-
"id":
|
|
123487
|
+
"id": 35,
|
|
123432
123488
|
"isAborted": [Function],
|
|
123433
123489
|
"isCancelled": [Function],
|
|
123434
123490
|
"isRunning": [Function],
|
|
@@ -136380,6 +136436,7 @@ new message content.",
|
|
|
136380
136436
|
"getTestGroupsRequested": [Function],
|
|
136381
136437
|
"getWeCrmAccountsRequested": [Function],
|
|
136382
136438
|
"searchCustomersRequested": [Function],
|
|
136439
|
+
"sendCcsTestMessageRequested": [Function],
|
|
136383
136440
|
"sendTestMessageRequested": [Function],
|
|
136384
136441
|
"updatePreviewRequested": [Function],
|
|
136385
136442
|
}
|
|
@@ -136432,6 +136489,7 @@ new message content.",
|
|
|
136432
136489
|
isFetchingTestGroups={false}
|
|
136433
136490
|
isLoadingSenderDetails={false}
|
|
136434
136491
|
isSearchingCustomer={false}
|
|
136492
|
+
isSendingCcsTestMessage={false}
|
|
136435
136493
|
isSendingTestMessage={false}
|
|
136436
136494
|
isUpdatingPreview={false}
|
|
136437
136495
|
messageMetaConfigId={null}
|
|
@@ -136475,11 +136533,13 @@ new message content.",
|
|
|
136475
136533
|
"getTestGroupsRequested": [Function],
|
|
136476
136534
|
"getWeCrmAccountsRequested": [Function],
|
|
136477
136535
|
"searchCustomersRequested": [Function],
|
|
136536
|
+
"sendCcsTestMessageRequested": [Function],
|
|
136478
136537
|
"sendTestMessageRequested": [Function],
|
|
136479
136538
|
"updatePreviewRequested": [Function],
|
|
136480
136539
|
}
|
|
136481
136540
|
}
|
|
136482
136541
|
beeInstance={null}
|
|
136542
|
+
ccsSendTransaction={null}
|
|
136483
136543
|
channel={null}
|
|
136484
136544
|
content={
|
|
136485
136545
|
Object {
|
|
@@ -138775,6 +138835,7 @@ new message content.",
|
|
|
138775
138835
|
isFetchingTestGroups={false}
|
|
138776
138836
|
isLoadingSenderDetails={false}
|
|
138777
138837
|
isSearchingCustomer={false}
|
|
138838
|
+
isSendingCcsTestMessage={false}
|
|
138778
138839
|
isSendingTestMessage={false}
|
|
138779
138840
|
isUpdatingPreview={false}
|
|
138780
138841
|
messageMetaConfigId={null}
|
|
@@ -138819,11 +138880,13 @@ new message content.",
|
|
|
138819
138880
|
"getTestGroupsRequested": [Function],
|
|
138820
138881
|
"getWeCrmAccountsRequested": [Function],
|
|
138821
138882
|
"searchCustomersRequested": [Function],
|
|
138883
|
+
"sendCcsTestMessageRequested": [Function],
|
|
138822
138884
|
"sendTestMessageRequested": [Function],
|
|
138823
138885
|
"updatePreviewRequested": [Function],
|
|
138824
138886
|
}
|
|
138825
138887
|
}
|
|
138826
138888
|
beeInstance={null}
|
|
138889
|
+
ccsSendTransaction={null}
|
|
138827
138890
|
channel="RCS"
|
|
138828
138891
|
config={
|
|
138829
138892
|
Object {
|
|
@@ -141126,6 +141189,7 @@ new message content.",
|
|
|
141126
141189
|
isFetchingTestGroups={false}
|
|
141127
141190
|
isLoadingSenderDetails={false}
|
|
141128
141191
|
isSearchingCustomer={false}
|
|
141192
|
+
isSendingCcsTestMessage={false}
|
|
141129
141193
|
isSendingTestMessage={false}
|
|
141130
141194
|
isUpdatingPreview={false}
|
|
141131
141195
|
messageMetaConfigId={null}
|
|
@@ -141347,7 +141411,7 @@ new message content.",
|
|
|
141347
141411
|
</CapRow>
|
|
141348
141412
|
}
|
|
141349
141413
|
show={false}
|
|
141350
|
-
size="size-
|
|
141414
|
+
size="size-l"
|
|
141351
141415
|
/>
|
|
141352
141416
|
</CommonTestAndPreview>
|
|
141353
141417
|
</TestAndPreviewSlidebox>
|
|
@@ -152286,6 +152350,7 @@ new message content.",
|
|
|
152286
152350
|
"getTestGroupsRequested": [Function],
|
|
152287
152351
|
"getWeCrmAccountsRequested": [Function],
|
|
152288
152352
|
"searchCustomersRequested": [Function],
|
|
152353
|
+
"sendCcsTestMessageRequested": [Function],
|
|
152289
152354
|
"sendTestMessageRequested": [Function],
|
|
152290
152355
|
"updatePreviewRequested": [Function],
|
|
152291
152356
|
}
|
|
@@ -152338,6 +152403,7 @@ new message content.",
|
|
|
152338
152403
|
isFetchingTestGroups={false}
|
|
152339
152404
|
isLoadingSenderDetails={false}
|
|
152340
152405
|
isSearchingCustomer={false}
|
|
152406
|
+
isSendingCcsTestMessage={false}
|
|
152341
152407
|
isSendingTestMessage={false}
|
|
152342
152408
|
isUpdatingPreview={false}
|
|
152343
152409
|
messageMetaConfigId={null}
|
|
@@ -152381,11 +152447,13 @@ new message content.",
|
|
|
152381
152447
|
"getTestGroupsRequested": [Function],
|
|
152382
152448
|
"getWeCrmAccountsRequested": [Function],
|
|
152383
152449
|
"searchCustomersRequested": [Function],
|
|
152450
|
+
"sendCcsTestMessageRequested": [Function],
|
|
152384
152451
|
"sendTestMessageRequested": [Function],
|
|
152385
152452
|
"updatePreviewRequested": [Function],
|
|
152386
152453
|
}
|
|
152387
152454
|
}
|
|
152388
152455
|
beeInstance={null}
|
|
152456
|
+
ccsSendTransaction={null}
|
|
152389
152457
|
channel={null}
|
|
152390
152458
|
content={
|
|
152391
152459
|
Object {
|
|
@@ -154681,6 +154749,7 @@ new message content.",
|
|
|
154681
154749
|
isFetchingTestGroups={false}
|
|
154682
154750
|
isLoadingSenderDetails={false}
|
|
154683
154751
|
isSearchingCustomer={false}
|
|
154752
|
+
isSendingCcsTestMessage={false}
|
|
154684
154753
|
isSendingTestMessage={false}
|
|
154685
154754
|
isUpdatingPreview={false}
|
|
154686
154755
|
messageMetaConfigId={null}
|
|
@@ -154725,11 +154794,13 @@ new message content.",
|
|
|
154725
154794
|
"getTestGroupsRequested": [Function],
|
|
154726
154795
|
"getWeCrmAccountsRequested": [Function],
|
|
154727
154796
|
"searchCustomersRequested": [Function],
|
|
154797
|
+
"sendCcsTestMessageRequested": [Function],
|
|
154728
154798
|
"sendTestMessageRequested": [Function],
|
|
154729
154799
|
"updatePreviewRequested": [Function],
|
|
154730
154800
|
}
|
|
154731
154801
|
}
|
|
154732
154802
|
beeInstance={null}
|
|
154803
|
+
ccsSendTransaction={null}
|
|
154733
154804
|
channel="RCS"
|
|
154734
154805
|
config={
|
|
154735
154806
|
Object {
|
|
@@ -157032,6 +157103,7 @@ new message content.",
|
|
|
157032
157103
|
isFetchingTestGroups={false}
|
|
157033
157104
|
isLoadingSenderDetails={false}
|
|
157034
157105
|
isSearchingCustomer={false}
|
|
157106
|
+
isSendingCcsTestMessage={false}
|
|
157035
157107
|
isSendingTestMessage={false}
|
|
157036
157108
|
isUpdatingPreview={false}
|
|
157037
157109
|
messageMetaConfigId={null}
|
|
@@ -157253,7 +157325,7 @@ new message content.",
|
|
|
157253
157325
|
</CapRow>
|
|
157254
157326
|
}
|
|
157255
157327
|
show={false}
|
|
157256
|
-
size="size-
|
|
157328
|
+
size="size-l"
|
|
157257
157329
|
/>
|
|
157258
157330
|
</CommonTestAndPreview>
|
|
157259
157331
|
</TestAndPreviewSlidebox>
|
|
@@ -168192,6 +168264,7 @@ new message content.",
|
|
|
168192
168264
|
"getTestGroupsRequested": [Function],
|
|
168193
168265
|
"getWeCrmAccountsRequested": [Function],
|
|
168194
168266
|
"searchCustomersRequested": [Function],
|
|
168267
|
+
"sendCcsTestMessageRequested": [Function],
|
|
168195
168268
|
"sendTestMessageRequested": [Function],
|
|
168196
168269
|
"updatePreviewRequested": [Function],
|
|
168197
168270
|
}
|
|
@@ -168244,6 +168317,7 @@ new message content.",
|
|
|
168244
168317
|
isFetchingTestGroups={false}
|
|
168245
168318
|
isLoadingSenderDetails={false}
|
|
168246
168319
|
isSearchingCustomer={false}
|
|
168320
|
+
isSendingCcsTestMessage={false}
|
|
168247
168321
|
isSendingTestMessage={false}
|
|
168248
168322
|
isUpdatingPreview={false}
|
|
168249
168323
|
messageMetaConfigId={null}
|
|
@@ -168287,11 +168361,13 @@ new message content.",
|
|
|
168287
168361
|
"getTestGroupsRequested": [Function],
|
|
168288
168362
|
"getWeCrmAccountsRequested": [Function],
|
|
168289
168363
|
"searchCustomersRequested": [Function],
|
|
168364
|
+
"sendCcsTestMessageRequested": [Function],
|
|
168290
168365
|
"sendTestMessageRequested": [Function],
|
|
168291
168366
|
"updatePreviewRequested": [Function],
|
|
168292
168367
|
}
|
|
168293
168368
|
}
|
|
168294
168369
|
beeInstance={null}
|
|
168370
|
+
ccsSendTransaction={null}
|
|
168295
168371
|
channel={null}
|
|
168296
168372
|
content={
|
|
168297
168373
|
Object {
|
|
@@ -170587,6 +170663,7 @@ new message content.",
|
|
|
170587
170663
|
isFetchingTestGroups={false}
|
|
170588
170664
|
isLoadingSenderDetails={false}
|
|
170589
170665
|
isSearchingCustomer={false}
|
|
170666
|
+
isSendingCcsTestMessage={false}
|
|
170590
170667
|
isSendingTestMessage={false}
|
|
170591
170668
|
isUpdatingPreview={false}
|
|
170592
170669
|
messageMetaConfigId={null}
|
|
@@ -170631,11 +170708,13 @@ new message content.",
|
|
|
170631
170708
|
"getTestGroupsRequested": [Function],
|
|
170632
170709
|
"getWeCrmAccountsRequested": [Function],
|
|
170633
170710
|
"searchCustomersRequested": [Function],
|
|
170711
|
+
"sendCcsTestMessageRequested": [Function],
|
|
170634
170712
|
"sendTestMessageRequested": [Function],
|
|
170635
170713
|
"updatePreviewRequested": [Function],
|
|
170636
170714
|
}
|
|
170637
170715
|
}
|
|
170638
170716
|
beeInstance={null}
|
|
170717
|
+
ccsSendTransaction={null}
|
|
170639
170718
|
channel="RCS"
|
|
170640
170719
|
config={
|
|
170641
170720
|
Object {
|
|
@@ -172938,6 +173017,7 @@ new message content.",
|
|
|
172938
173017
|
isFetchingTestGroups={false}
|
|
172939
173018
|
isLoadingSenderDetails={false}
|
|
172940
173019
|
isSearchingCustomer={false}
|
|
173020
|
+
isSendingCcsTestMessage={false}
|
|
172941
173021
|
isSendingTestMessage={false}
|
|
172942
173022
|
isUpdatingPreview={false}
|
|
172943
173023
|
messageMetaConfigId={null}
|
|
@@ -173159,7 +173239,7 @@ new message content.",
|
|
|
173159
173239
|
</CapRow>
|
|
173160
173240
|
}
|
|
173161
173241
|
show={false}
|
|
173162
|
-
size="size-
|
|
173242
|
+
size="size-l"
|
|
173163
173243
|
/>
|
|
173164
173244
|
</CommonTestAndPreview>
|
|
173165
173245
|
</TestAndPreviewSlidebox>
|
|
@@ -184098,6 +184178,7 @@ new message content.",
|
|
|
184098
184178
|
"getTestGroupsRequested": [Function],
|
|
184099
184179
|
"getWeCrmAccountsRequested": [Function],
|
|
184100
184180
|
"searchCustomersRequested": [Function],
|
|
184181
|
+
"sendCcsTestMessageRequested": [Function],
|
|
184101
184182
|
"sendTestMessageRequested": [Function],
|
|
184102
184183
|
"updatePreviewRequested": [Function],
|
|
184103
184184
|
}
|
|
@@ -184150,6 +184231,7 @@ new message content.",
|
|
|
184150
184231
|
isFetchingTestGroups={false}
|
|
184151
184232
|
isLoadingSenderDetails={false}
|
|
184152
184233
|
isSearchingCustomer={false}
|
|
184234
|
+
isSendingCcsTestMessage={false}
|
|
184153
184235
|
isSendingTestMessage={false}
|
|
184154
184236
|
isUpdatingPreview={false}
|
|
184155
184237
|
messageMetaConfigId={null}
|
|
@@ -184193,11 +184275,13 @@ new message content.",
|
|
|
184193
184275
|
"getTestGroupsRequested": [Function],
|
|
184194
184276
|
"getWeCrmAccountsRequested": [Function],
|
|
184195
184277
|
"searchCustomersRequested": [Function],
|
|
184278
|
+
"sendCcsTestMessageRequested": [Function],
|
|
184196
184279
|
"sendTestMessageRequested": [Function],
|
|
184197
184280
|
"updatePreviewRequested": [Function],
|
|
184198
184281
|
}
|
|
184199
184282
|
}
|
|
184200
184283
|
beeInstance={null}
|
|
184284
|
+
ccsSendTransaction={null}
|
|
184201
184285
|
channel={null}
|
|
184202
184286
|
content={
|
|
184203
184287
|
Object {
|
|
@@ -186493,6 +186577,7 @@ new message content.",
|
|
|
186493
186577
|
isFetchingTestGroups={false}
|
|
186494
186578
|
isLoadingSenderDetails={false}
|
|
186495
186579
|
isSearchingCustomer={false}
|
|
186580
|
+
isSendingCcsTestMessage={false}
|
|
186496
186581
|
isSendingTestMessage={false}
|
|
186497
186582
|
isUpdatingPreview={false}
|
|
186498
186583
|
messageMetaConfigId={null}
|
|
@@ -186537,11 +186622,13 @@ new message content.",
|
|
|
186537
186622
|
"getTestGroupsRequested": [Function],
|
|
186538
186623
|
"getWeCrmAccountsRequested": [Function],
|
|
186539
186624
|
"searchCustomersRequested": [Function],
|
|
186625
|
+
"sendCcsTestMessageRequested": [Function],
|
|
186540
186626
|
"sendTestMessageRequested": [Function],
|
|
186541
186627
|
"updatePreviewRequested": [Function],
|
|
186542
186628
|
}
|
|
186543
186629
|
}
|
|
186544
186630
|
beeInstance={null}
|
|
186631
|
+
ccsSendTransaction={null}
|
|
186545
186632
|
channel="RCS"
|
|
186546
186633
|
config={
|
|
186547
186634
|
Object {
|
|
@@ -188844,6 +188931,7 @@ new message content.",
|
|
|
188844
188931
|
isFetchingTestGroups={false}
|
|
188845
188932
|
isLoadingSenderDetails={false}
|
|
188846
188933
|
isSearchingCustomer={false}
|
|
188934
|
+
isSendingCcsTestMessage={false}
|
|
188847
188935
|
isSendingTestMessage={false}
|
|
188848
188936
|
isUpdatingPreview={false}
|
|
188849
188937
|
messageMetaConfigId={null}
|
|
@@ -189065,7 +189153,7 @@ new message content.",
|
|
|
189065
189153
|
</CapRow>
|
|
189066
189154
|
}
|
|
189067
189155
|
show={false}
|
|
189068
|
-
size="size-
|
|
189156
|
+
size="size-l"
|
|
189069
189157
|
/>
|
|
189070
189158
|
</CommonTestAndPreview>
|
|
189071
189159
|
</TestAndPreviewSlidebox>
|
|
@@ -191381,7 +191469,7 @@ new message content.",
|
|
|
191381
191469
|
"cont": undefined,
|
|
191382
191470
|
"done": Promise {},
|
|
191383
191471
|
"error": [Function],
|
|
191384
|
-
"id":
|
|
191472
|
+
"id": 35,
|
|
191385
191473
|
"isAborted": [Function],
|
|
191386
191474
|
"isCancelled": [Function],
|
|
191387
191475
|
"isRunning": [Function],
|
|
@@ -199769,6 +199857,7 @@ new message content.",
|
|
|
199769
199857
|
"getTestGroupsRequested": [Function],
|
|
199770
199858
|
"getWeCrmAccountsRequested": [Function],
|
|
199771
199859
|
"searchCustomersRequested": [Function],
|
|
199860
|
+
"sendCcsTestMessageRequested": [Function],
|
|
199772
199861
|
"sendTestMessageRequested": [Function],
|
|
199773
199862
|
"updatePreviewRequested": [Function],
|
|
199774
199863
|
}
|
|
@@ -199828,6 +199917,7 @@ new message content.",
|
|
|
199828
199917
|
isFetchingTestGroups={false}
|
|
199829
199918
|
isLoadingSenderDetails={false}
|
|
199830
199919
|
isSearchingCustomer={false}
|
|
199920
|
+
isSendingCcsTestMessage={false}
|
|
199831
199921
|
isSendingTestMessage={false}
|
|
199832
199922
|
isUpdatingPreview={false}
|
|
199833
199923
|
messageMetaConfigId={null}
|
|
@@ -199877,11 +199967,13 @@ new message content.",
|
|
|
199877
199967
|
"getTestGroupsRequested": [Function],
|
|
199878
199968
|
"getWeCrmAccountsRequested": [Function],
|
|
199879
199969
|
"searchCustomersRequested": [Function],
|
|
199970
|
+
"sendCcsTestMessageRequested": [Function],
|
|
199880
199971
|
"sendTestMessageRequested": [Function],
|
|
199881
199972
|
"updatePreviewRequested": [Function],
|
|
199882
199973
|
}
|
|
199883
199974
|
}
|
|
199884
199975
|
beeInstance={null}
|
|
199976
|
+
ccsSendTransaction={null}
|
|
199885
199977
|
channel={null}
|
|
199886
199978
|
content={
|
|
199887
199979
|
Object {
|
|
@@ -202184,6 +202276,7 @@ new message content.",
|
|
|
202184
202276
|
isFetchingTestGroups={false}
|
|
202185
202277
|
isLoadingSenderDetails={false}
|
|
202186
202278
|
isSearchingCustomer={false}
|
|
202279
|
+
isSendingCcsTestMessage={false}
|
|
202187
202280
|
isSendingTestMessage={false}
|
|
202188
202281
|
isUpdatingPreview={false}
|
|
202189
202282
|
messageMetaConfigId={null}
|
|
@@ -202234,11 +202327,13 @@ new message content.",
|
|
|
202234
202327
|
"getTestGroupsRequested": [Function],
|
|
202235
202328
|
"getWeCrmAccountsRequested": [Function],
|
|
202236
202329
|
"searchCustomersRequested": [Function],
|
|
202330
|
+
"sendCcsTestMessageRequested": [Function],
|
|
202237
202331
|
"sendTestMessageRequested": [Function],
|
|
202238
202332
|
"updatePreviewRequested": [Function],
|
|
202239
202333
|
}
|
|
202240
202334
|
}
|
|
202241
202335
|
beeInstance={null}
|
|
202336
|
+
ccsSendTransaction={null}
|
|
202242
202337
|
channel="RCS"
|
|
202243
202338
|
config={
|
|
202244
202339
|
Object {
|
|
@@ -204548,6 +204643,7 @@ new message content.",
|
|
|
204548
204643
|
isFetchingTestGroups={false}
|
|
204549
204644
|
isLoadingSenderDetails={false}
|
|
204550
204645
|
isSearchingCustomer={false}
|
|
204646
|
+
isSendingCcsTestMessage={false}
|
|
204551
204647
|
isSendingTestMessage={false}
|
|
204552
204648
|
isUpdatingPreview={false}
|
|
204553
204649
|
messageMetaConfigId={null}
|
|
@@ -204786,7 +204882,7 @@ new message content.",
|
|
|
204786
204882
|
</CapRow>
|
|
204787
204883
|
}
|
|
204788
204884
|
show={false}
|
|
204789
|
-
size="size-
|
|
204885
|
+
size="size-l"
|
|
204790
204886
|
/>
|
|
204791
204887
|
</CommonTestAndPreview>
|
|
204792
204888
|
</TestAndPreviewSlidebox>
|