@capillarytech/creatives-library 8.0.290-alpha.3 → 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.
Files changed (76) hide show
  1. package/constants/unified.js +1 -0
  2. package/initialState.js +2 -0
  3. package/package.json +1 -1
  4. package/utils/common.js +8 -5
  5. package/utils/commonUtils.js +85 -4
  6. package/utils/tagValidations.js +222 -84
  7. package/utils/tests/commonUtil.test.js +124 -147
  8. package/utils/tests/tagValidations.test.js +358 -280
  9. package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +33 -0
  10. package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +397 -0
  11. package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.scss +35 -0
  12. package/v2Components/CommonTestAndPreview/DeliverySettings/TECH_DETAILING_DELIVERY_SETTINGS.md +725 -0
  13. package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +92 -0
  14. package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +243 -0
  15. package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +111 -0
  16. package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +91 -0
  17. package/v2Components/CommonTestAndPreview/SendTestMessage.js +33 -1
  18. package/v2Components/CommonTestAndPreview/actions.js +20 -0
  19. package/v2Components/CommonTestAndPreview/constants.js +10 -0
  20. package/v2Components/CommonTestAndPreview/index.js +133 -15
  21. package/v2Components/CommonTestAndPreview/reducer.js +47 -0
  22. package/v2Components/CommonTestAndPreview/sagas.js +60 -0
  23. package/v2Components/CommonTestAndPreview/selectors.js +51 -0
  24. package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +782 -0
  25. package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +200 -0
  26. package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +235 -0
  27. package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +127 -0
  28. package/v2Components/CommonTestAndPreview/tests/actions.test.js +50 -0
  29. package/v2Components/CommonTestAndPreview/tests/constants.test.js +18 -0
  30. package/v2Components/CommonTestAndPreview/tests/index.test.js +214 -1
  31. package/v2Components/CommonTestAndPreview/tests/reducer.test.js +118 -0
  32. package/v2Components/CommonTestAndPreview/tests/sagas.test.js +145 -0
  33. package/v2Components/CommonTestAndPreview/tests/selectors.test.js +146 -0
  34. package/v2Components/ErrorInfoNote/index.js +5 -2
  35. package/v2Components/FormBuilder/index.js +162 -84
  36. package/v2Components/FormBuilder/messages.js +8 -0
  37. package/v2Components/HtmlEditor/HTMLEditor.js +5 -0
  38. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +1 -0
  39. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +15 -0
  40. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +2 -1
  41. package/v2Components/TestAndPreviewSlidebox/index.js +14 -0
  42. package/v2Containers/Cap/mockData.js +14 -0
  43. package/v2Containers/Cap/reducer.js +55 -3
  44. package/v2Containers/Cap/tests/reducer.test.js +102 -0
  45. package/v2Containers/CreativesContainer/SlideBoxFooter.js +1 -3
  46. package/v2Containers/CreativesContainer/index.js +6 -19
  47. package/v2Containers/Email/index.js +5 -1
  48. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +62 -10
  49. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +115 -12
  50. package/v2Containers/FTP/index.js +51 -2
  51. package/v2Containers/FTP/messages.js +4 -0
  52. package/v2Containers/InApp/index.js +96 -1
  53. package/v2Containers/InApp/tests/index.test.js +6 -17
  54. package/v2Containers/InappAdvance/index.js +103 -2
  55. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +24 -3
  56. package/v2Containers/Line/Container/Text/index.js +1 -0
  57. package/v2Containers/MobilePush/Create/index.js +16 -6
  58. package/v2Containers/MobilePush/Edit/index.js +16 -6
  59. package/v2Containers/MobilePushNew/index.js +33 -2
  60. package/v2Containers/Rcs/index.js +37 -12
  61. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +667 -16
  62. package/v2Containers/Sms/Create/index.js +3 -35
  63. package/v2Containers/Sms/Create/messages.js +0 -4
  64. package/v2Containers/Sms/Edit/index.js +3 -33
  65. package/v2Containers/Sms/commonMethods.js +6 -6
  66. package/v2Containers/SmsTrai/Edit/index.js +47 -6
  67. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +147 -6
  68. package/v2Containers/Viber/index.js +1 -0
  69. package/v2Containers/WebPush/Create/hooks/useTagManagement.js +3 -1
  70. package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +7 -0
  71. package/v2Containers/WebPush/Create/index.js +2 -2
  72. package/v2Containers/WebPush/Create/utils/validation.js +2 -17
  73. package/v2Containers/WebPush/Create/utils/validation.test.js +24 -0
  74. package/v2Containers/Whatsapp/index.js +18 -10
  75. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +25849 -3524
  76. package/v2Containers/Zalo/index.js +11 -3
@@ -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={null}
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={null}
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={null}
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={null}
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={null}
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
@@ -86505,6 +86775,7 @@ new message content.",
86505
86775
  },
86506
86776
  ]
86507
86777
  }
86778
+ showTruncatedTooltip={false}
86508
86779
  size="large"
86509
86780
  style={
86510
86781
  Object {
@@ -86524,6 +86795,7 @@ new message content.",
86524
86795
  />
86525
86796
  }
86526
86797
  onChange={[Function]}
86798
+ onDropdownVisibleChange={[Function]}
86527
86799
  removeIcon={
86528
86800
  <_default
86529
86801
  size="s"
@@ -86589,6 +86861,7 @@ new message content.",
86589
86861
  onBlur={[Function]}
86590
86862
  onChange={[Function]}
86591
86863
  onDeselect={[Function]}
86864
+ onDropdownVisibleChange={[Function]}
86592
86865
  onFocus={[Function]}
86593
86866
  onInputKeyDown={[Function]}
86594
86867
  onSearch={[Function]}
@@ -86827,9 +87100,13 @@ new message content.",
86827
87100
  "opacity": 1,
86828
87101
  }
86829
87102
  }
86830
- title="Vertical Medium"
87103
+ title=""
86831
87104
  >
86832
- Vertical Medium
87105
+ <div
87106
+ className="cap-select-option-tooltip"
87107
+ >
87108
+ Vertical Medium
87109
+ </div>
86833
87110
  </div>
86834
87111
  </div>
86835
87112
  <span
@@ -96282,8 +96559,10 @@ new message content.",
96282
96559
  "createMessageMetaRequested": [Function],
96283
96560
  "extractTagsRequested": [Function],
96284
96561
  "getPrefilledValuesRequested": [Function],
96562
+ "getSenderDetailsRequested": [Function],
96285
96563
  "getTestCustomersRequested": [Function],
96286
96564
  "getTestGroupsRequested": [Function],
96565
+ "getWeCrmAccountsRequested": [Function],
96287
96566
  "searchCustomersRequested": [Function],
96288
96567
  "sendTestMessageRequested": [Function],
96289
96568
  "updatePreviewRequested": [Function],
@@ -96315,6 +96594,7 @@ new message content.",
96315
96594
  isExtractingTags={false}
96316
96595
  isFetchingTestCustomers={false}
96317
96596
  isFetchingTestGroups={false}
96597
+ isLoadingSenderDetails={false}
96318
96598
  isSearchingCustomer={false}
96319
96599
  isSendingTestMessage={false}
96320
96600
  isUpdatingPreview={false}
@@ -96322,11 +96602,19 @@ new message content.",
96322
96602
  onClose={[Function]}
96323
96603
  prefilledValues={Object {}}
96324
96604
  previewData={null}
96605
+ senderDetailsByChannel={
96606
+ Object {
96607
+ "EMAIL": Array [],
96608
+ "SMS": Array [],
96609
+ "WHATSAPP": Array [],
96610
+ }
96611
+ }
96325
96612
  show={false}
96326
96613
  testCustomers={Immutable.List []}
96327
96614
  testGroups={Immutable.List []}
96328
96615
  updatePreviewError={null}
96329
96616
  updatePreviewErrors={Array []}
96617
+ wecrmAccounts={Array []}
96330
96618
  >
96331
96619
  <TestAndPreviewSlidebox
96332
96620
  actions={
@@ -96338,8 +96626,10 @@ new message content.",
96338
96626
  "createMessageMetaRequested": [Function],
96339
96627
  "extractTagsRequested": [Function],
96340
96628
  "getPrefilledValuesRequested": [Function],
96629
+ "getSenderDetailsRequested": [Function],
96341
96630
  "getTestCustomersRequested": [Function],
96342
96631
  "getTestGroupsRequested": [Function],
96632
+ "getWeCrmAccountsRequested": [Function],
96343
96633
  "searchCustomersRequested": [Function],
96344
96634
  "sendTestMessageRequested": [Function],
96345
96635
  "updatePreviewRequested": [Function],
@@ -98619,18 +98909,28 @@ new message content.",
98619
98909
  isExtractingTags={false}
98620
98910
  isFetchingTestCustomers={false}
98621
98911
  isFetchingTestGroups={false}
98912
+ isLoadingSenderDetails={false}
98622
98913
  isSearchingCustomer={false}
98623
98914
  isSendingTestMessage={false}
98624
98915
  isUpdatingPreview={false}
98625
98916
  messageMetaConfigId={null}
98626
98917
  onClose={[Function]}
98918
+ orgUnitId={-1}
98627
98919
  prefilledValues={Object {}}
98628
98920
  previewData={null}
98921
+ senderDetailsByChannel={
98922
+ Object {
98923
+ "EMAIL": Array [],
98924
+ "SMS": Array [],
98925
+ "WHATSAPP": Array [],
98926
+ }
98927
+ }
98629
98928
  show={false}
98630
98929
  testCustomers={Immutable.List []}
98631
98930
  testGroups={Immutable.List []}
98632
98931
  updatePreviewError={null}
98633
98932
  updatePreviewErrors={Array []}
98933
+ wecrmAccounts={Array []}
98634
98934
  >
98635
98935
  <CommonTestAndPreview
98636
98936
  actions={
@@ -98642,8 +98942,10 @@ new message content.",
98642
98942
  "createMessageMetaRequested": [Function],
98643
98943
  "extractTagsRequested": [Function],
98644
98944
  "getPrefilledValuesRequested": [Function],
98945
+ "getSenderDetailsRequested": [Function],
98645
98946
  "getTestCustomersRequested": [Function],
98646
98947
  "getTestGroupsRequested": [Function],
98948
+ "getWeCrmAccountsRequested": [Function],
98647
98949
  "searchCustomersRequested": [Function],
98648
98950
  "sendTestMessageRequested": [Function],
98649
98951
  "updatePreviewRequested": [Function],
@@ -100930,16 +101232,25 @@ new message content.",
100930
101232
  isExtractingTags={false}
100931
101233
  isFetchingTestCustomers={false}
100932
101234
  isFetchingTestGroups={false}
101235
+ isLoadingSenderDetails={false}
100933
101236
  isSearchingCustomer={false}
100934
101237
  isSendingTestMessage={false}
100935
101238
  isUpdatingPreview={false}
100936
101239
  messageMetaConfigId={null}
100937
101240
  onClose={[Function]}
101241
+ orgUnitId={-1}
100938
101242
  prefilledValues={Object {}}
100939
101243
  previewData={null}
100940
101244
  rcsIosPreview={false}
100941
101245
  rcsOrientation={null}
100942
101246
  rcsType={null}
101247
+ senderDetailsByChannel={
101248
+ Object {
101249
+ "EMAIL": Array [],
101250
+ "SMS": Array [],
101251
+ "WHATSAPP": Array [],
101252
+ }
101253
+ }
100943
101254
  show={false}
100944
101255
  templateLayoutType={null}
100945
101256
  testCustomers={Immutable.List []}
@@ -100947,6 +101258,7 @@ new message content.",
100947
101258
  unicodeEnabled={false}
100948
101259
  updatePreviewError={null}
100949
101260
  updatePreviewErrors={Array []}
101261
+ wecrmAccounts={Array []}
100950
101262
  whatsappAccountName={null}
100951
101263
  whatsappContentLen={0}
100952
101264
  >
@@ -100990,13 +101302,31 @@ new message content.",
100990
101302
  <SendTestMessage
100991
101303
  channel="RCS"
100992
101304
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
100993
- formData={null}
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
+ }
100994
101322
  formatMessage={[Function]}
100995
101323
  handleSendTestMessage={[Function]}
100996
101324
  handleTestEntitiesChange={[Function]}
100997
101325
  isFetchingTestCustomers={false}
100998
101326
  isFetchingTestGroups={false}
101327
+ isLoadingSenderDetails={false}
100999
101328
  isSendingTestMessage={false}
101329
+ onSaveDeliverySettings={[Function]}
101000
101330
  selectedTestEntities={Array []}
101001
101331
  testEntitiesTreeData={
101002
101332
  Array [
@@ -101014,6 +101344,7 @@ new message content.",
101014
101344
  },
101015
101345
  ]
101016
101346
  }
101347
+ wecrmAccounts={Array []}
101017
101348
  />
101018
101349
  </CapRow>
101019
101350
  <CapDivider
@@ -105847,6 +106178,7 @@ new message content.",
105847
106178
  },
105848
106179
  ]
105849
106180
  }
106181
+ showTruncatedTooltip={false}
105850
106182
  size="large"
105851
106183
  style={
105852
106184
  Object {
@@ -105866,6 +106198,7 @@ new message content.",
105866
106198
  />
105867
106199
  }
105868
106200
  onChange={[Function]}
106201
+ onDropdownVisibleChange={[Function]}
105869
106202
  removeIcon={
105870
106203
  <_default
105871
106204
  size="s"
@@ -105931,6 +106264,7 @@ new message content.",
105931
106264
  onBlur={[Function]}
105932
106265
  onChange={[Function]}
105933
106266
  onDeselect={[Function]}
106267
+ onDropdownVisibleChange={[Function]}
105934
106268
  onFocus={[Function]}
105935
106269
  onInputKeyDown={[Function]}
105936
106270
  onSearch={[Function]}
@@ -106169,9 +106503,13 @@ new message content.",
106169
106503
  "opacity": 1,
106170
106504
  }
106171
106505
  }
106172
- title="Vertical Medium"
106506
+ title=""
106173
106507
  >
106174
- Vertical Medium
106508
+ <div
106509
+ className="cap-select-option-tooltip"
106510
+ >
106511
+ Vertical Medium
106512
+ </div>
106175
106513
  </div>
106176
106514
  </div>
106177
106515
  <span
@@ -115624,8 +115962,10 @@ new message content.",
115624
115962
  "createMessageMetaRequested": [Function],
115625
115963
  "extractTagsRequested": [Function],
115626
115964
  "getPrefilledValuesRequested": [Function],
115965
+ "getSenderDetailsRequested": [Function],
115627
115966
  "getTestCustomersRequested": [Function],
115628
115967
  "getTestGroupsRequested": [Function],
115968
+ "getWeCrmAccountsRequested": [Function],
115629
115969
  "searchCustomersRequested": [Function],
115630
115970
  "sendTestMessageRequested": [Function],
115631
115971
  "updatePreviewRequested": [Function],
@@ -115657,6 +115997,7 @@ new message content.",
115657
115997
  isExtractingTags={false}
115658
115998
  isFetchingTestCustomers={false}
115659
115999
  isFetchingTestGroups={false}
116000
+ isLoadingSenderDetails={false}
115660
116001
  isSearchingCustomer={false}
115661
116002
  isSendingTestMessage={false}
115662
116003
  isUpdatingPreview={false}
@@ -115664,11 +116005,19 @@ new message content.",
115664
116005
  onClose={[Function]}
115665
116006
  prefilledValues={Object {}}
115666
116007
  previewData={null}
116008
+ senderDetailsByChannel={
116009
+ Object {
116010
+ "EMAIL": Array [],
116011
+ "SMS": Array [],
116012
+ "WHATSAPP": Array [],
116013
+ }
116014
+ }
115667
116015
  show={false}
115668
116016
  testCustomers={Immutable.List []}
115669
116017
  testGroups={Immutable.List []}
115670
116018
  updatePreviewError={null}
115671
116019
  updatePreviewErrors={Array []}
116020
+ wecrmAccounts={Array []}
115672
116021
  >
115673
116022
  <TestAndPreviewSlidebox
115674
116023
  actions={
@@ -115680,8 +116029,10 @@ new message content.",
115680
116029
  "createMessageMetaRequested": [Function],
115681
116030
  "extractTagsRequested": [Function],
115682
116031
  "getPrefilledValuesRequested": [Function],
116032
+ "getSenderDetailsRequested": [Function],
115683
116033
  "getTestCustomersRequested": [Function],
115684
116034
  "getTestGroupsRequested": [Function],
116035
+ "getWeCrmAccountsRequested": [Function],
115685
116036
  "searchCustomersRequested": [Function],
115686
116037
  "sendTestMessageRequested": [Function],
115687
116038
  "updatePreviewRequested": [Function],
@@ -117961,18 +118312,28 @@ new message content.",
117961
118312
  isExtractingTags={false}
117962
118313
  isFetchingTestCustomers={false}
117963
118314
  isFetchingTestGroups={false}
118315
+ isLoadingSenderDetails={false}
117964
118316
  isSearchingCustomer={false}
117965
118317
  isSendingTestMessage={false}
117966
118318
  isUpdatingPreview={false}
117967
118319
  messageMetaConfigId={null}
117968
118320
  onClose={[Function]}
118321
+ orgUnitId={-1}
117969
118322
  prefilledValues={Object {}}
117970
118323
  previewData={null}
118324
+ senderDetailsByChannel={
118325
+ Object {
118326
+ "EMAIL": Array [],
118327
+ "SMS": Array [],
118328
+ "WHATSAPP": Array [],
118329
+ }
118330
+ }
117971
118331
  show={false}
117972
118332
  testCustomers={Immutable.List []}
117973
118333
  testGroups={Immutable.List []}
117974
118334
  updatePreviewError={null}
117975
118335
  updatePreviewErrors={Array []}
118336
+ wecrmAccounts={Array []}
117976
118337
  >
117977
118338
  <CommonTestAndPreview
117978
118339
  actions={
@@ -117984,8 +118345,10 @@ new message content.",
117984
118345
  "createMessageMetaRequested": [Function],
117985
118346
  "extractTagsRequested": [Function],
117986
118347
  "getPrefilledValuesRequested": [Function],
118348
+ "getSenderDetailsRequested": [Function],
117987
118349
  "getTestCustomersRequested": [Function],
117988
118350
  "getTestGroupsRequested": [Function],
118351
+ "getWeCrmAccountsRequested": [Function],
117989
118352
  "searchCustomersRequested": [Function],
117990
118353
  "sendTestMessageRequested": [Function],
117991
118354
  "updatePreviewRequested": [Function],
@@ -120272,16 +120635,25 @@ new message content.",
120272
120635
  isExtractingTags={false}
120273
120636
  isFetchingTestCustomers={false}
120274
120637
  isFetchingTestGroups={false}
120638
+ isLoadingSenderDetails={false}
120275
120639
  isSearchingCustomer={false}
120276
120640
  isSendingTestMessage={false}
120277
120641
  isUpdatingPreview={false}
120278
120642
  messageMetaConfigId={null}
120279
120643
  onClose={[Function]}
120644
+ orgUnitId={-1}
120280
120645
  prefilledValues={Object {}}
120281
120646
  previewData={null}
120282
120647
  rcsIosPreview={false}
120283
120648
  rcsOrientation={null}
120284
120649
  rcsType={null}
120650
+ senderDetailsByChannel={
120651
+ Object {
120652
+ "EMAIL": Array [],
120653
+ "SMS": Array [],
120654
+ "WHATSAPP": Array [],
120655
+ }
120656
+ }
120285
120657
  show={false}
120286
120658
  templateLayoutType={null}
120287
120659
  testCustomers={Immutable.List []}
@@ -120289,6 +120661,7 @@ new message content.",
120289
120661
  unicodeEnabled={false}
120290
120662
  updatePreviewError={null}
120291
120663
  updatePreviewErrors={Array []}
120664
+ wecrmAccounts={Array []}
120292
120665
  whatsappAccountName={null}
120293
120666
  whatsappContentLen={0}
120294
120667
  >
@@ -120332,13 +120705,31 @@ new message content.",
120332
120705
  <SendTestMessage
120333
120706
  channel="RCS"
120334
120707
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
120335
- formData={null}
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
+ }
120336
120725
  formatMessage={[Function]}
120337
120726
  handleSendTestMessage={[Function]}
120338
120727
  handleTestEntitiesChange={[Function]}
120339
120728
  isFetchingTestCustomers={false}
120340
120729
  isFetchingTestGroups={false}
120730
+ isLoadingSenderDetails={false}
120341
120731
  isSendingTestMessage={false}
120732
+ onSaveDeliverySettings={[Function]}
120342
120733
  selectedTestEntities={Array []}
120343
120734
  testEntitiesTreeData={
120344
120735
  Array [
@@ -120356,6 +120747,7 @@ new message content.",
120356
120747
  },
120357
120748
  ]
120358
120749
  }
120750
+ wecrmAccounts={Array []}
120359
120751
  />
120360
120752
  </CapRow>
120361
120753
  <CapDivider
@@ -135641,8 +136033,10 @@ new message content.",
135641
136033
  "createMessageMetaRequested": [Function],
135642
136034
  "extractTagsRequested": [Function],
135643
136035
  "getPrefilledValuesRequested": [Function],
136036
+ "getSenderDetailsRequested": [Function],
135644
136037
  "getTestCustomersRequested": [Function],
135645
136038
  "getTestGroupsRequested": [Function],
136039
+ "getWeCrmAccountsRequested": [Function],
135646
136040
  "searchCustomersRequested": [Function],
135647
136041
  "sendTestMessageRequested": [Function],
135648
136042
  "updatePreviewRequested": [Function],
@@ -135674,6 +136068,7 @@ new message content.",
135674
136068
  isExtractingTags={false}
135675
136069
  isFetchingTestCustomers={false}
135676
136070
  isFetchingTestGroups={false}
136071
+ isLoadingSenderDetails={false}
135677
136072
  isSearchingCustomer={false}
135678
136073
  isSendingTestMessage={false}
135679
136074
  isUpdatingPreview={false}
@@ -135681,11 +136076,19 @@ new message content.",
135681
136076
  onClose={[Function]}
135682
136077
  prefilledValues={Object {}}
135683
136078
  previewData={null}
136079
+ senderDetailsByChannel={
136080
+ Object {
136081
+ "EMAIL": Array [],
136082
+ "SMS": Array [],
136083
+ "WHATSAPP": Array [],
136084
+ }
136085
+ }
135684
136086
  show={false}
135685
136087
  testCustomers={Immutable.List []}
135686
136088
  testGroups={Immutable.List []}
135687
136089
  updatePreviewError={null}
135688
136090
  updatePreviewErrors={Array []}
136091
+ wecrmAccounts={Array []}
135689
136092
  >
135690
136093
  <TestAndPreviewSlidebox
135691
136094
  actions={
@@ -135697,8 +136100,10 @@ new message content.",
135697
136100
  "createMessageMetaRequested": [Function],
135698
136101
  "extractTagsRequested": [Function],
135699
136102
  "getPrefilledValuesRequested": [Function],
136103
+ "getSenderDetailsRequested": [Function],
135700
136104
  "getTestCustomersRequested": [Function],
135701
136105
  "getTestGroupsRequested": [Function],
136106
+ "getWeCrmAccountsRequested": [Function],
135702
136107
  "searchCustomersRequested": [Function],
135703
136108
  "sendTestMessageRequested": [Function],
135704
136109
  "updatePreviewRequested": [Function],
@@ -137978,18 +138383,28 @@ new message content.",
137978
138383
  isExtractingTags={false}
137979
138384
  isFetchingTestCustomers={false}
137980
138385
  isFetchingTestGroups={false}
138386
+ isLoadingSenderDetails={false}
137981
138387
  isSearchingCustomer={false}
137982
138388
  isSendingTestMessage={false}
137983
138389
  isUpdatingPreview={false}
137984
138390
  messageMetaConfigId={null}
137985
138391
  onClose={[Function]}
138392
+ orgUnitId={-1}
137986
138393
  prefilledValues={Object {}}
137987
138394
  previewData={null}
138395
+ senderDetailsByChannel={
138396
+ Object {
138397
+ "EMAIL": Array [],
138398
+ "SMS": Array [],
138399
+ "WHATSAPP": Array [],
138400
+ }
138401
+ }
137988
138402
  show={false}
137989
138403
  testCustomers={Immutable.List []}
137990
138404
  testGroups={Immutable.List []}
137991
138405
  updatePreviewError={null}
137992
138406
  updatePreviewErrors={Array []}
138407
+ wecrmAccounts={Array []}
137993
138408
  >
137994
138409
  <CommonTestAndPreview
137995
138410
  actions={
@@ -138001,8 +138416,10 @@ new message content.",
138001
138416
  "createMessageMetaRequested": [Function],
138002
138417
  "extractTagsRequested": [Function],
138003
138418
  "getPrefilledValuesRequested": [Function],
138419
+ "getSenderDetailsRequested": [Function],
138004
138420
  "getTestCustomersRequested": [Function],
138005
138421
  "getTestGroupsRequested": [Function],
138422
+ "getWeCrmAccountsRequested": [Function],
138006
138423
  "searchCustomersRequested": [Function],
138007
138424
  "sendTestMessageRequested": [Function],
138008
138425
  "updatePreviewRequested": [Function],
@@ -140289,16 +140706,25 @@ new message content.",
140289
140706
  isExtractingTags={false}
140290
140707
  isFetchingTestCustomers={false}
140291
140708
  isFetchingTestGroups={false}
140709
+ isLoadingSenderDetails={false}
140292
140710
  isSearchingCustomer={false}
140293
140711
  isSendingTestMessage={false}
140294
140712
  isUpdatingPreview={false}
140295
140713
  messageMetaConfigId={null}
140296
140714
  onClose={[Function]}
140715
+ orgUnitId={-1}
140297
140716
  prefilledValues={Object {}}
140298
140717
  previewData={null}
140299
140718
  rcsIosPreview={false}
140300
140719
  rcsOrientation={null}
140301
140720
  rcsType={null}
140721
+ senderDetailsByChannel={
140722
+ Object {
140723
+ "EMAIL": Array [],
140724
+ "SMS": Array [],
140725
+ "WHATSAPP": Array [],
140726
+ }
140727
+ }
140302
140728
  show={false}
140303
140729
  templateLayoutType={null}
140304
140730
  testCustomers={Immutable.List []}
@@ -140306,6 +140732,7 @@ new message content.",
140306
140732
  unicodeEnabled={false}
140307
140733
  updatePreviewError={null}
140308
140734
  updatePreviewErrors={Array []}
140735
+ wecrmAccounts={Array []}
140309
140736
  whatsappAccountName={null}
140310
140737
  whatsappContentLen={0}
140311
140738
  >
@@ -140349,13 +140776,31 @@ new message content.",
140349
140776
  <SendTestMessage
140350
140777
  channel="RCS"
140351
140778
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
140352
- formData={null}
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
+ }
140353
140796
  formatMessage={[Function]}
140354
140797
  handleSendTestMessage={[Function]}
140355
140798
  handleTestEntitiesChange={[Function]}
140356
140799
  isFetchingTestCustomers={false}
140357
140800
  isFetchingTestGroups={false}
140801
+ isLoadingSenderDetails={false}
140358
140802
  isSendingTestMessage={false}
140803
+ onSaveDeliverySettings={[Function]}
140359
140804
  selectedTestEntities={Array []}
140360
140805
  testEntitiesTreeData={
140361
140806
  Array [
@@ -140373,6 +140818,7 @@ new message content.",
140373
140818
  },
140374
140819
  ]
140375
140820
  }
140821
+ wecrmAccounts={Array []}
140376
140822
  />
140377
140823
  </CapRow>
140378
140824
  <CapDivider
@@ -151674,8 +152120,10 @@ new message content.",
151674
152120
  "createMessageMetaRequested": [Function],
151675
152121
  "extractTagsRequested": [Function],
151676
152122
  "getPrefilledValuesRequested": [Function],
152123
+ "getSenderDetailsRequested": [Function],
151677
152124
  "getTestCustomersRequested": [Function],
151678
152125
  "getTestGroupsRequested": [Function],
152126
+ "getWeCrmAccountsRequested": [Function],
151679
152127
  "searchCustomersRequested": [Function],
151680
152128
  "sendTestMessageRequested": [Function],
151681
152129
  "updatePreviewRequested": [Function],
@@ -151707,6 +152155,7 @@ new message content.",
151707
152155
  isExtractingTags={false}
151708
152156
  isFetchingTestCustomers={false}
151709
152157
  isFetchingTestGroups={false}
152158
+ isLoadingSenderDetails={false}
151710
152159
  isSearchingCustomer={false}
151711
152160
  isSendingTestMessage={false}
151712
152161
  isUpdatingPreview={false}
@@ -151714,11 +152163,19 @@ new message content.",
151714
152163
  onClose={[Function]}
151715
152164
  prefilledValues={Object {}}
151716
152165
  previewData={null}
152166
+ senderDetailsByChannel={
152167
+ Object {
152168
+ "EMAIL": Array [],
152169
+ "SMS": Array [],
152170
+ "WHATSAPP": Array [],
152171
+ }
152172
+ }
151717
152173
  show={false}
151718
152174
  testCustomers={Immutable.List []}
151719
152175
  testGroups={Immutable.List []}
151720
152176
  updatePreviewError={null}
151721
152177
  updatePreviewErrors={Array []}
152178
+ wecrmAccounts={Array []}
151722
152179
  >
151723
152180
  <TestAndPreviewSlidebox
151724
152181
  actions={
@@ -151730,8 +152187,10 @@ new message content.",
151730
152187
  "createMessageMetaRequested": [Function],
151731
152188
  "extractTagsRequested": [Function],
151732
152189
  "getPrefilledValuesRequested": [Function],
152190
+ "getSenderDetailsRequested": [Function],
151733
152191
  "getTestCustomersRequested": [Function],
151734
152192
  "getTestGroupsRequested": [Function],
152193
+ "getWeCrmAccountsRequested": [Function],
151735
152194
  "searchCustomersRequested": [Function],
151736
152195
  "sendTestMessageRequested": [Function],
151737
152196
  "updatePreviewRequested": [Function],
@@ -154011,18 +154470,28 @@ new message content.",
154011
154470
  isExtractingTags={false}
154012
154471
  isFetchingTestCustomers={false}
154013
154472
  isFetchingTestGroups={false}
154473
+ isLoadingSenderDetails={false}
154014
154474
  isSearchingCustomer={false}
154015
154475
  isSendingTestMessage={false}
154016
154476
  isUpdatingPreview={false}
154017
154477
  messageMetaConfigId={null}
154018
154478
  onClose={[Function]}
154479
+ orgUnitId={-1}
154019
154480
  prefilledValues={Object {}}
154020
154481
  previewData={null}
154482
+ senderDetailsByChannel={
154483
+ Object {
154484
+ "EMAIL": Array [],
154485
+ "SMS": Array [],
154486
+ "WHATSAPP": Array [],
154487
+ }
154488
+ }
154021
154489
  show={false}
154022
154490
  testCustomers={Immutable.List []}
154023
154491
  testGroups={Immutable.List []}
154024
154492
  updatePreviewError={null}
154025
154493
  updatePreviewErrors={Array []}
154494
+ wecrmAccounts={Array []}
154026
154495
  >
154027
154496
  <CommonTestAndPreview
154028
154497
  actions={
@@ -154034,8 +154503,10 @@ new message content.",
154034
154503
  "createMessageMetaRequested": [Function],
154035
154504
  "extractTagsRequested": [Function],
154036
154505
  "getPrefilledValuesRequested": [Function],
154506
+ "getSenderDetailsRequested": [Function],
154037
154507
  "getTestCustomersRequested": [Function],
154038
154508
  "getTestGroupsRequested": [Function],
154509
+ "getWeCrmAccountsRequested": [Function],
154039
154510
  "searchCustomersRequested": [Function],
154040
154511
  "sendTestMessageRequested": [Function],
154041
154512
  "updatePreviewRequested": [Function],
@@ -156322,16 +156793,25 @@ new message content.",
156322
156793
  isExtractingTags={false}
156323
156794
  isFetchingTestCustomers={false}
156324
156795
  isFetchingTestGroups={false}
156796
+ isLoadingSenderDetails={false}
156325
156797
  isSearchingCustomer={false}
156326
156798
  isSendingTestMessage={false}
156327
156799
  isUpdatingPreview={false}
156328
156800
  messageMetaConfigId={null}
156329
156801
  onClose={[Function]}
156802
+ orgUnitId={-1}
156330
156803
  prefilledValues={Object {}}
156331
156804
  previewData={null}
156332
156805
  rcsIosPreview={false}
156333
156806
  rcsOrientation={null}
156334
156807
  rcsType={null}
156808
+ senderDetailsByChannel={
156809
+ Object {
156810
+ "EMAIL": Array [],
156811
+ "SMS": Array [],
156812
+ "WHATSAPP": Array [],
156813
+ }
156814
+ }
156335
156815
  show={false}
156336
156816
  templateLayoutType={null}
156337
156817
  testCustomers={Immutable.List []}
@@ -156339,6 +156819,7 @@ new message content.",
156339
156819
  unicodeEnabled={false}
156340
156820
  updatePreviewError={null}
156341
156821
  updatePreviewErrors={Array []}
156822
+ wecrmAccounts={Array []}
156342
156823
  whatsappAccountName={null}
156343
156824
  whatsappContentLen={0}
156344
156825
  >
@@ -156382,13 +156863,31 @@ new message content.",
156382
156863
  <SendTestMessage
156383
156864
  channel="RCS"
156384
156865
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
156385
- formData={null}
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
+ }
156386
156883
  formatMessage={[Function]}
156387
156884
  handleSendTestMessage={[Function]}
156388
156885
  handleTestEntitiesChange={[Function]}
156389
156886
  isFetchingTestCustomers={false}
156390
156887
  isFetchingTestGroups={false}
156888
+ isLoadingSenderDetails={false}
156391
156889
  isSendingTestMessage={false}
156890
+ onSaveDeliverySettings={[Function]}
156392
156891
  selectedTestEntities={Array []}
156393
156892
  testEntitiesTreeData={
156394
156893
  Array [
@@ -156406,6 +156905,7 @@ new message content.",
156406
156905
  },
156407
156906
  ]
156408
156907
  }
156908
+ wecrmAccounts={Array []}
156409
156909
  />
156410
156910
  </CapRow>
156411
156911
  <CapDivider
@@ -167707,8 +168207,10 @@ new message content.",
167707
168207
  "createMessageMetaRequested": [Function],
167708
168208
  "extractTagsRequested": [Function],
167709
168209
  "getPrefilledValuesRequested": [Function],
168210
+ "getSenderDetailsRequested": [Function],
167710
168211
  "getTestCustomersRequested": [Function],
167711
168212
  "getTestGroupsRequested": [Function],
168213
+ "getWeCrmAccountsRequested": [Function],
167712
168214
  "searchCustomersRequested": [Function],
167713
168215
  "sendTestMessageRequested": [Function],
167714
168216
  "updatePreviewRequested": [Function],
@@ -167740,6 +168242,7 @@ new message content.",
167740
168242
  isExtractingTags={false}
167741
168243
  isFetchingTestCustomers={false}
167742
168244
  isFetchingTestGroups={false}
168245
+ isLoadingSenderDetails={false}
167743
168246
  isSearchingCustomer={false}
167744
168247
  isSendingTestMessage={false}
167745
168248
  isUpdatingPreview={false}
@@ -167747,11 +168250,19 @@ new message content.",
167747
168250
  onClose={[Function]}
167748
168251
  prefilledValues={Object {}}
167749
168252
  previewData={null}
168253
+ senderDetailsByChannel={
168254
+ Object {
168255
+ "EMAIL": Array [],
168256
+ "SMS": Array [],
168257
+ "WHATSAPP": Array [],
168258
+ }
168259
+ }
167750
168260
  show={false}
167751
168261
  testCustomers={Immutable.List []}
167752
168262
  testGroups={Immutable.List []}
167753
168263
  updatePreviewError={null}
167754
168264
  updatePreviewErrors={Array []}
168265
+ wecrmAccounts={Array []}
167755
168266
  >
167756
168267
  <TestAndPreviewSlidebox
167757
168268
  actions={
@@ -167763,8 +168274,10 @@ new message content.",
167763
168274
  "createMessageMetaRequested": [Function],
167764
168275
  "extractTagsRequested": [Function],
167765
168276
  "getPrefilledValuesRequested": [Function],
168277
+ "getSenderDetailsRequested": [Function],
167766
168278
  "getTestCustomersRequested": [Function],
167767
168279
  "getTestGroupsRequested": [Function],
168280
+ "getWeCrmAccountsRequested": [Function],
167768
168281
  "searchCustomersRequested": [Function],
167769
168282
  "sendTestMessageRequested": [Function],
167770
168283
  "updatePreviewRequested": [Function],
@@ -170044,18 +170557,28 @@ new message content.",
170044
170557
  isExtractingTags={false}
170045
170558
  isFetchingTestCustomers={false}
170046
170559
  isFetchingTestGroups={false}
170560
+ isLoadingSenderDetails={false}
170047
170561
  isSearchingCustomer={false}
170048
170562
  isSendingTestMessage={false}
170049
170563
  isUpdatingPreview={false}
170050
170564
  messageMetaConfigId={null}
170051
170565
  onClose={[Function]}
170566
+ orgUnitId={-1}
170052
170567
  prefilledValues={Object {}}
170053
170568
  previewData={null}
170569
+ senderDetailsByChannel={
170570
+ Object {
170571
+ "EMAIL": Array [],
170572
+ "SMS": Array [],
170573
+ "WHATSAPP": Array [],
170574
+ }
170575
+ }
170054
170576
  show={false}
170055
170577
  testCustomers={Immutable.List []}
170056
170578
  testGroups={Immutable.List []}
170057
170579
  updatePreviewError={null}
170058
170580
  updatePreviewErrors={Array []}
170581
+ wecrmAccounts={Array []}
170059
170582
  >
170060
170583
  <CommonTestAndPreview
170061
170584
  actions={
@@ -170067,8 +170590,10 @@ new message content.",
170067
170590
  "createMessageMetaRequested": [Function],
170068
170591
  "extractTagsRequested": [Function],
170069
170592
  "getPrefilledValuesRequested": [Function],
170593
+ "getSenderDetailsRequested": [Function],
170070
170594
  "getTestCustomersRequested": [Function],
170071
170595
  "getTestGroupsRequested": [Function],
170596
+ "getWeCrmAccountsRequested": [Function],
170072
170597
  "searchCustomersRequested": [Function],
170073
170598
  "sendTestMessageRequested": [Function],
170074
170599
  "updatePreviewRequested": [Function],
@@ -172355,16 +172880,25 @@ new message content.",
172355
172880
  isExtractingTags={false}
172356
172881
  isFetchingTestCustomers={false}
172357
172882
  isFetchingTestGroups={false}
172883
+ isLoadingSenderDetails={false}
172358
172884
  isSearchingCustomer={false}
172359
172885
  isSendingTestMessage={false}
172360
172886
  isUpdatingPreview={false}
172361
172887
  messageMetaConfigId={null}
172362
172888
  onClose={[Function]}
172889
+ orgUnitId={-1}
172363
172890
  prefilledValues={Object {}}
172364
172891
  previewData={null}
172365
172892
  rcsIosPreview={false}
172366
172893
  rcsOrientation={null}
172367
172894
  rcsType={null}
172895
+ senderDetailsByChannel={
172896
+ Object {
172897
+ "EMAIL": Array [],
172898
+ "SMS": Array [],
172899
+ "WHATSAPP": Array [],
172900
+ }
172901
+ }
172368
172902
  show={false}
172369
172903
  templateLayoutType={null}
172370
172904
  testCustomers={Immutable.List []}
@@ -172372,6 +172906,7 @@ new message content.",
172372
172906
  unicodeEnabled={false}
172373
172907
  updatePreviewError={null}
172374
172908
  updatePreviewErrors={Array []}
172909
+ wecrmAccounts={Array []}
172375
172910
  whatsappAccountName={null}
172376
172911
  whatsappContentLen={0}
172377
172912
  >
@@ -172415,13 +172950,31 @@ new message content.",
172415
172950
  <SendTestMessage
172416
172951
  channel="RCS"
172417
172952
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
172418
- formData={null}
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
+ }
172419
172970
  formatMessage={[Function]}
172420
172971
  handleSendTestMessage={[Function]}
172421
172972
  handleTestEntitiesChange={[Function]}
172422
172973
  isFetchingTestCustomers={false}
172423
172974
  isFetchingTestGroups={false}
172975
+ isLoadingSenderDetails={false}
172424
172976
  isSendingTestMessage={false}
172977
+ onSaveDeliverySettings={[Function]}
172425
172978
  selectedTestEntities={Array []}
172426
172979
  testEntitiesTreeData={
172427
172980
  Array [
@@ -172439,6 +172992,7 @@ new message content.",
172439
172992
  },
172440
172993
  ]
172441
172994
  }
172995
+ wecrmAccounts={Array []}
172442
172996
  />
172443
172997
  </CapRow>
172444
172998
  <CapDivider
@@ -183740,8 +184294,10 @@ new message content.",
183740
184294
  "createMessageMetaRequested": [Function],
183741
184295
  "extractTagsRequested": [Function],
183742
184296
  "getPrefilledValuesRequested": [Function],
184297
+ "getSenderDetailsRequested": [Function],
183743
184298
  "getTestCustomersRequested": [Function],
183744
184299
  "getTestGroupsRequested": [Function],
184300
+ "getWeCrmAccountsRequested": [Function],
183745
184301
  "searchCustomersRequested": [Function],
183746
184302
  "sendTestMessageRequested": [Function],
183747
184303
  "updatePreviewRequested": [Function],
@@ -183773,6 +184329,7 @@ new message content.",
183773
184329
  isExtractingTags={false}
183774
184330
  isFetchingTestCustomers={false}
183775
184331
  isFetchingTestGroups={false}
184332
+ isLoadingSenderDetails={false}
183776
184333
  isSearchingCustomer={false}
183777
184334
  isSendingTestMessage={false}
183778
184335
  isUpdatingPreview={false}
@@ -183780,11 +184337,19 @@ new message content.",
183780
184337
  onClose={[Function]}
183781
184338
  prefilledValues={Object {}}
183782
184339
  previewData={null}
184340
+ senderDetailsByChannel={
184341
+ Object {
184342
+ "EMAIL": Array [],
184343
+ "SMS": Array [],
184344
+ "WHATSAPP": Array [],
184345
+ }
184346
+ }
183783
184347
  show={false}
183784
184348
  testCustomers={Immutable.List []}
183785
184349
  testGroups={Immutable.List []}
183786
184350
  updatePreviewError={null}
183787
184351
  updatePreviewErrors={Array []}
184352
+ wecrmAccounts={Array []}
183788
184353
  >
183789
184354
  <TestAndPreviewSlidebox
183790
184355
  actions={
@@ -183796,8 +184361,10 @@ new message content.",
183796
184361
  "createMessageMetaRequested": [Function],
183797
184362
  "extractTagsRequested": [Function],
183798
184363
  "getPrefilledValuesRequested": [Function],
184364
+ "getSenderDetailsRequested": [Function],
183799
184365
  "getTestCustomersRequested": [Function],
183800
184366
  "getTestGroupsRequested": [Function],
184367
+ "getWeCrmAccountsRequested": [Function],
183801
184368
  "searchCustomersRequested": [Function],
183802
184369
  "sendTestMessageRequested": [Function],
183803
184370
  "updatePreviewRequested": [Function],
@@ -186077,18 +186644,28 @@ new message content.",
186077
186644
  isExtractingTags={false}
186078
186645
  isFetchingTestCustomers={false}
186079
186646
  isFetchingTestGroups={false}
186647
+ isLoadingSenderDetails={false}
186080
186648
  isSearchingCustomer={false}
186081
186649
  isSendingTestMessage={false}
186082
186650
  isUpdatingPreview={false}
186083
186651
  messageMetaConfigId={null}
186084
186652
  onClose={[Function]}
186653
+ orgUnitId={-1}
186085
186654
  prefilledValues={Object {}}
186086
186655
  previewData={null}
186656
+ senderDetailsByChannel={
186657
+ Object {
186658
+ "EMAIL": Array [],
186659
+ "SMS": Array [],
186660
+ "WHATSAPP": Array [],
186661
+ }
186662
+ }
186087
186663
  show={false}
186088
186664
  testCustomers={Immutable.List []}
186089
186665
  testGroups={Immutable.List []}
186090
186666
  updatePreviewError={null}
186091
186667
  updatePreviewErrors={Array []}
186668
+ wecrmAccounts={Array []}
186092
186669
  >
186093
186670
  <CommonTestAndPreview
186094
186671
  actions={
@@ -186100,8 +186677,10 @@ new message content.",
186100
186677
  "createMessageMetaRequested": [Function],
186101
186678
  "extractTagsRequested": [Function],
186102
186679
  "getPrefilledValuesRequested": [Function],
186680
+ "getSenderDetailsRequested": [Function],
186103
186681
  "getTestCustomersRequested": [Function],
186104
186682
  "getTestGroupsRequested": [Function],
186683
+ "getWeCrmAccountsRequested": [Function],
186105
186684
  "searchCustomersRequested": [Function],
186106
186685
  "sendTestMessageRequested": [Function],
186107
186686
  "updatePreviewRequested": [Function],
@@ -188388,16 +188967,25 @@ new message content.",
188388
188967
  isExtractingTags={false}
188389
188968
  isFetchingTestCustomers={false}
188390
188969
  isFetchingTestGroups={false}
188970
+ isLoadingSenderDetails={false}
188391
188971
  isSearchingCustomer={false}
188392
188972
  isSendingTestMessage={false}
188393
188973
  isUpdatingPreview={false}
188394
188974
  messageMetaConfigId={null}
188395
188975
  onClose={[Function]}
188976
+ orgUnitId={-1}
188396
188977
  prefilledValues={Object {}}
188397
188978
  previewData={null}
188398
188979
  rcsIosPreview={false}
188399
188980
  rcsOrientation={null}
188400
188981
  rcsType={null}
188982
+ senderDetailsByChannel={
188983
+ Object {
188984
+ "EMAIL": Array [],
188985
+ "SMS": Array [],
188986
+ "WHATSAPP": Array [],
188987
+ }
188988
+ }
188401
188989
  show={false}
188402
188990
  templateLayoutType={null}
188403
188991
  testCustomers={Immutable.List []}
@@ -188405,6 +188993,7 @@ new message content.",
188405
188993
  unicodeEnabled={false}
188406
188994
  updatePreviewError={null}
188407
188995
  updatePreviewErrors={Array []}
188996
+ wecrmAccounts={Array []}
188408
188997
  whatsappAccountName={null}
188409
188998
  whatsappContentLen={0}
188410
188999
  >
@@ -188448,13 +189037,31 @@ new message content.",
188448
189037
  <SendTestMessage
188449
189038
  channel="RCS"
188450
189039
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\",\\"suggestions\\":[{\\"index\\":0,\\"type\\":\\"QUICK_REPLY\\",\\"text\\":\\"stop\\",\\"phoneNumber\\":\\"\\",\\"url\\":null,\\"postback\\":\\"stop\\",\\"isSaved\\":true}]}"
188451
- formData={null}
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
+ }
188452
189057
  formatMessage={[Function]}
188453
189058
  handleSendTestMessage={[Function]}
188454
189059
  handleTestEntitiesChange={[Function]}
188455
189060
  isFetchingTestCustomers={false}
188456
189061
  isFetchingTestGroups={false}
189062
+ isLoadingSenderDetails={false}
188457
189063
  isSendingTestMessage={false}
189064
+ onSaveDeliverySettings={[Function]}
188458
189065
  selectedTestEntities={Array []}
188459
189066
  testEntitiesTreeData={
188460
189067
  Array [
@@ -188472,6 +189079,7 @@ new message content.",
188472
189079
  },
188473
189080
  ]
188474
189081
  }
189082
+ wecrmAccounts={Array []}
188475
189083
  />
188476
189084
  </CapRow>
188477
189085
  <CapDivider
@@ -196295,8 +196903,10 @@ new message content.",
196295
196903
  "createMessageMetaRequested": [Function],
196296
196904
  "extractTagsRequested": [Function],
196297
196905
  "getPrefilledValuesRequested": [Function],
196906
+ "getSenderDetailsRequested": [Function],
196298
196907
  "getTestCustomersRequested": [Function],
196299
196908
  "getTestGroupsRequested": [Function],
196909
+ "getWeCrmAccountsRequested": [Function],
196300
196910
  "searchCustomersRequested": [Function],
196301
196911
  "sendTestMessageRequested": [Function],
196302
196912
  "updatePreviewRequested": [Function],
@@ -196317,6 +196927,7 @@ new message content.",
196317
196927
  isExtractingTags={false}
196318
196928
  isFetchingTestCustomers={false}
196319
196929
  isFetchingTestGroups={false}
196930
+ isLoadingSenderDetails={false}
196320
196931
  isSearchingCustomer={false}
196321
196932
  isSendingTestMessage={false}
196322
196933
  isUpdatingPreview={false}
@@ -196324,11 +196935,19 @@ new message content.",
196324
196935
  onClose={[Function]}
196325
196936
  prefilledValues={Object {}}
196326
196937
  previewData={null}
196938
+ senderDetailsByChannel={
196939
+ Object {
196940
+ "EMAIL": Array [],
196941
+ "SMS": Array [],
196942
+ "WHATSAPP": Array [],
196943
+ }
196944
+ }
196327
196945
  show={false}
196328
196946
  testCustomers={Immutable.List []}
196329
196947
  testGroups={Immutable.List []}
196330
196948
  updatePreviewError={null}
196331
196949
  updatePreviewErrors={Array []}
196950
+ wecrmAccounts={Array []}
196332
196951
  >
196333
196952
  <TestAndPreviewSlidebox
196334
196953
  actions={
@@ -196340,8 +196959,10 @@ new message content.",
196340
196959
  "createMessageMetaRequested": [Function],
196341
196960
  "extractTagsRequested": [Function],
196342
196961
  "getPrefilledValuesRequested": [Function],
196962
+ "getSenderDetailsRequested": [Function],
196343
196963
  "getTestCustomersRequested": [Function],
196344
196964
  "getTestGroupsRequested": [Function],
196965
+ "getWeCrmAccountsRequested": [Function],
196345
196966
  "searchCustomersRequested": [Function],
196346
196967
  "sendTestMessageRequested": [Function],
196347
196968
  "updatePreviewRequested": [Function],
@@ -198610,18 +199231,28 @@ new message content.",
198610
199231
  isExtractingTags={false}
198611
199232
  isFetchingTestCustomers={false}
198612
199233
  isFetchingTestGroups={false}
199234
+ isLoadingSenderDetails={false}
198613
199235
  isSearchingCustomer={false}
198614
199236
  isSendingTestMessage={false}
198615
199237
  isUpdatingPreview={false}
198616
199238
  messageMetaConfigId={null}
198617
199239
  onClose={[Function]}
199240
+ orgUnitId={-1}
198618
199241
  prefilledValues={Object {}}
198619
199242
  previewData={null}
199243
+ senderDetailsByChannel={
199244
+ Object {
199245
+ "EMAIL": Array [],
199246
+ "SMS": Array [],
199247
+ "WHATSAPP": Array [],
199248
+ }
199249
+ }
198620
199250
  show={false}
198621
199251
  testCustomers={Immutable.List []}
198622
199252
  testGroups={Immutable.List []}
198623
199253
  updatePreviewError={null}
198624
199254
  updatePreviewErrors={Array []}
199255
+ wecrmAccounts={Array []}
198625
199256
  >
198626
199257
  <CommonTestAndPreview
198627
199258
  actions={
@@ -198633,8 +199264,10 @@ new message content.",
198633
199264
  "createMessageMetaRequested": [Function],
198634
199265
  "extractTagsRequested": [Function],
198635
199266
  "getPrefilledValuesRequested": [Function],
199267
+ "getSenderDetailsRequested": [Function],
198636
199268
  "getTestCustomersRequested": [Function],
198637
199269
  "getTestGroupsRequested": [Function],
199270
+ "getWeCrmAccountsRequested": [Function],
198638
199271
  "searchCustomersRequested": [Function],
198639
199272
  "sendTestMessageRequested": [Function],
198640
199273
  "updatePreviewRequested": [Function],
@@ -200910,16 +201543,25 @@ new message content.",
200910
201543
  isExtractingTags={false}
200911
201544
  isFetchingTestCustomers={false}
200912
201545
  isFetchingTestGroups={false}
201546
+ isLoadingSenderDetails={false}
200913
201547
  isSearchingCustomer={false}
200914
201548
  isSendingTestMessage={false}
200915
201549
  isUpdatingPreview={false}
200916
201550
  messageMetaConfigId={null}
200917
201551
  onClose={[Function]}
201552
+ orgUnitId={-1}
200918
201553
  prefilledValues={Object {}}
200919
201554
  previewData={null}
200920
201555
  rcsIosPreview={false}
200921
201556
  rcsOrientation={null}
200922
201557
  rcsType={null}
201558
+ senderDetailsByChannel={
201559
+ Object {
201560
+ "EMAIL": Array [],
201561
+ "SMS": Array [],
201562
+ "WHATSAPP": Array [],
201563
+ }
201564
+ }
200923
201565
  show={false}
200924
201566
  templateLayoutType={null}
200925
201567
  testCustomers={Immutable.List []}
@@ -200927,6 +201569,7 @@ new message content.",
200927
201569
  unicodeEnabled={false}
200928
201570
  updatePreviewError={null}
200929
201571
  updatePreviewErrors={Array []}
201572
+ wecrmAccounts={Array []}
200930
201573
  whatsappAccountName={null}
200931
201574
  whatsappContentLen={0}
200932
201575
  >
@@ -200970,13 +201613,20 @@ new message content.",
200970
201613
  <SendTestMessage
200971
201614
  channel="RCS"
200972
201615
  content="{\\"templateHeader\\":\\"\\",\\"templateMessage\\":\\"\\"}"
200973
- formData={null}
201616
+ formData={
201617
+ Object {
201618
+ "templateHeader": "",
201619
+ "templateMessage": "",
201620
+ }
201621
+ }
200974
201622
  formatMessage={[Function]}
200975
201623
  handleSendTestMessage={[Function]}
200976
201624
  handleTestEntitiesChange={[Function]}
200977
201625
  isFetchingTestCustomers={false}
200978
201626
  isFetchingTestGroups={false}
201627
+ isLoadingSenderDetails={false}
200979
201628
  isSendingTestMessage={false}
201629
+ onSaveDeliverySettings={[Function]}
200980
201630
  selectedTestEntities={Array []}
200981
201631
  testEntitiesTreeData={
200982
201632
  Array [
@@ -200994,6 +201644,7 @@ new message content.",
200994
201644
  },
200995
201645
  ]
200996
201646
  }
201647
+ wecrmAccounts={Array []}
200997
201648
  />
200998
201649
  </CapRow>
200999
201650
  <CapDivider