@capillarytech/creatives-library 9.0.13 → 9.0.14
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/package.json +1 -1
- package/services/api.js +10 -0
- package/services/tests/api.test.js +83 -0
- package/v2Components/CommonTestAndPreview/UnifiedPreview/WhatsAppPreviewContent.js +5 -3
- package/v2Components/CommonTestAndPreview/index.js +7 -0
- package/v2Components/NavigationBar/index.js +27 -0
- package/v2Components/NavigationBar/messages.js +4 -0
- package/v2Components/NavigationBar/tests/index.test.js +19 -0
- package/v2Components/NewCallTask/index.js +6 -1
- package/v2Components/TemplatePreview/index.js +4 -2
- package/v2Containers/Cap/index.js +3 -1
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +130 -20
- package/v2Containers/CommunicationFlow/CommunicationFlow.scss +154 -0
- package/v2Containers/CommunicationFlow/CommunicationFlowCard.js +240 -0
- package/v2Containers/CommunicationFlow/DemoPage.js +47 -0
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +369 -2
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlowCard.test.js +619 -0
- package/v2Containers/CommunicationFlow/Tests/DemoPage.test.js +77 -0
- package/v2Containers/CommunicationFlow/Tests/getContentBody.test.js +933 -0
- package/v2Containers/CommunicationFlow/constants.js +45 -10
- package/v2Containers/CommunicationFlow/index.js +5 -2
- package/v2Containers/CommunicationFlow/messages.js +20 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.js +94 -31
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.scss +14 -11
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/Tests/ChannelSelectionStep.test.js +1144 -32
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/extractContentForPreview.js +183 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/CommunicationStrategyStep.js +3 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.js +39 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/DeliverySettingsSection.test.js +6 -2
- package/v2Containers/CommunicationFlow/utils/getContentBody.js +369 -0
- package/v2Containers/CommunicationFlow/utils/getContentBody.scss +19 -0
- package/v2Containers/CommunicationFlow/utils/getEnabledSteps.js +1 -1
- package/v2Containers/CreativesContainer/constants.js +6 -0
- package/v2Containers/CreativesContainer/index.js +68 -1
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +2 -2
- package/v2Containers/Templates/index.js +2 -2
- package/v2Containers/TemplatesV2/index.js +9 -1
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +41 -34
|
@@ -101,6 +101,32 @@ import { updateImagesInHtml } from '../../utils/cdnTransformation';
|
|
|
101
101
|
import injectReducer from '../../utils/injectReducer';
|
|
102
102
|
import injectSaga from '../../utils/injectSaga';
|
|
103
103
|
import creativesContainerReducer from './reducer';
|
|
104
|
+
import v2TemplateReducer from '../Templates/reducer';
|
|
105
|
+
import v2EmailReducer from '../Email/reducer';
|
|
106
|
+
import capReducer from '../Cap/reducer';
|
|
107
|
+
import callTaskReducer from '../CallTask/reducer';
|
|
108
|
+
import tagListReducer from '../TagList/reducer';
|
|
109
|
+
import smsCreateReducer from '../Sms/Create/reducer';
|
|
110
|
+
import smsEditReducer from '../Sms/Edit/reducer';
|
|
111
|
+
import mobilePushCreateReducer from '../MobilePush/Create/reducer';
|
|
112
|
+
import mobilePushEditReducer from '../MobilePush/Edit/reducer';
|
|
113
|
+
import mobilePushNewReducer from '../MobilePushNew/reducer';
|
|
114
|
+
import beeEditorReducer from '../BeeEditor/reducer';
|
|
115
|
+
import ftpReducer from '../FTP/reducer';
|
|
116
|
+
import facebookReducer from '../Facebook/reducer';
|
|
117
|
+
import galleryReducer from '../Assets/Gallery/reducer';
|
|
118
|
+
import facebookPreviewReducer from '../CapFacebookPreview/reducer';
|
|
119
|
+
import smsTraiReducer from '../SmsTrai/Create/reducer';
|
|
120
|
+
import whatsappReducer from '../Whatsapp/reducer';
|
|
121
|
+
import rcsReducer from '../Rcs/reducer';
|
|
122
|
+
import zaloReducer from '../Zalo/reducer';
|
|
123
|
+
import inAppReducer from '../InApp/reducer';
|
|
124
|
+
import viberReducer from '../Viber/reducer';
|
|
125
|
+
import weChatMapTemplateReducer from '../WeChat/MapTemplates/reducer';
|
|
126
|
+
import weChatRichmediaCreateReducer from '../WeChat/RichmediaTemplates/Create/reducer';
|
|
127
|
+
import weChatRichmediaEditReducer from '../WeChat/RichmediaTemplates/Edit/reducer';
|
|
128
|
+
import lineCreateReducer from '../Line/Container/reducer';
|
|
129
|
+
import ebillReducer from '../Ebill/reducer';
|
|
104
130
|
import { capSagaForFetchSchemaForEntity, capSagaLiquidEntity } from '../Cap/sagas';
|
|
105
131
|
import { v2TemplateSagaWatchGetDefaultBeeTemplates } from '../Templates/sagas';
|
|
106
132
|
import { DYNAMIC_URL } from '../../v2Components/CapWhatsappCTA/constants';
|
|
@@ -500,6 +526,7 @@ export class Creatives extends React.Component {
|
|
|
500
526
|
base: formData,
|
|
501
527
|
edit: true,
|
|
502
528
|
type: channel,
|
|
529
|
+
_id: formData.id,
|
|
503
530
|
};
|
|
504
531
|
break;
|
|
505
532
|
}
|
|
@@ -508,6 +535,7 @@ export class Creatives extends React.Component {
|
|
|
508
535
|
subject: templateData && templateData.subject,
|
|
509
536
|
messageBody: templateData && templateData.messageBody,
|
|
510
537
|
description: templateData && templateData.description,
|
|
538
|
+
callTaskActionType: templateData && templateData.callTaskActionType,
|
|
511
539
|
edit: true,
|
|
512
540
|
type: channel,
|
|
513
541
|
};
|
|
@@ -2287,8 +2315,47 @@ function mapDispatchToProps(dispatch) {
|
|
|
2287
2315
|
|
|
2288
2316
|
const withConnect = connect(mapStatesToProps, mapDispatchToProps);
|
|
2289
2317
|
const withReducer = injectReducer({ key: 'creativesContainer', reducer: creativesContainerReducer });
|
|
2318
|
+
const withTemplateReducer = injectReducer({ key: 'templates', reducer: v2TemplateReducer });
|
|
2319
|
+
const withEmailReducer = injectReducer({ key: 'email', reducer: v2EmailReducer });
|
|
2320
|
+
const withCapReducer = injectReducer({ key: 'cap', reducer: capReducer });
|
|
2321
|
+
const withCallTaskReducer = injectReducer({ key: 'callTask', reducer: callTaskReducer });
|
|
2322
|
+
const withTagListReducer = injectReducer({ key: 'tagList', reducer: tagListReducer });
|
|
2323
|
+
const withSmsCreateReducer = injectReducer({ key: 'create', reducer: smsCreateReducer });
|
|
2324
|
+
const withSmsEditReducer = injectReducer({ key: 'edit', reducer: smsEditReducer });
|
|
2325
|
+
const withMobilePushCreateReducer = injectReducer({ key: 'mobileCreate', reducer: mobilePushCreateReducer });
|
|
2326
|
+
const withMobilePushEditReducer = injectReducer({ key: 'mobileEdit', reducer: mobilePushEditReducer });
|
|
2327
|
+
const withMobilePushNewReducer = injectReducer({ key: 'mobilePushNew', reducer: mobilePushNewReducer });
|
|
2328
|
+
const withBeeEditorReducer = injectReducer({ key: 'beeEditor', reducer: beeEditorReducer });
|
|
2329
|
+
const withFTPReducer = injectReducer({ key: 'FTP', reducer: ftpReducer });
|
|
2330
|
+
const withFacebookReducer = injectReducer({ key: 'facebook', reducer: facebookReducer });
|
|
2331
|
+
const withGalleryReducer = injectReducer({ key: 'gallery', reducer: galleryReducer });
|
|
2332
|
+
const withFacebookPreviewReducer = injectReducer({ key: 'facebookPreview', reducer: facebookPreviewReducer });
|
|
2333
|
+
const withSmsTraiReducer = injectReducer({ key: 'smsTrai', reducer: smsTraiReducer });
|
|
2334
|
+
const withWhatsappReducer = injectReducer({ key: 'whatsapp', reducer: whatsappReducer });
|
|
2335
|
+
const withRcsReducer = injectReducer({ key: 'rcs', reducer: rcsReducer });
|
|
2336
|
+
const withZaloReducer = injectReducer({ key: 'zalo', reducer: zaloReducer });
|
|
2337
|
+
const withInAppReducer = injectReducer({ key: 'inapp', reducer: inAppReducer });
|
|
2338
|
+
const withViberReducer = injectReducer({ key: 'viber', reducer: viberReducer });
|
|
2339
|
+
const withWeChatMapTemplateReducer = injectReducer({ key: 'weChatMapTemplate', reducer: weChatMapTemplateReducer });
|
|
2340
|
+
const withWeChatRichmediaCreateReducer = injectReducer({ key: 'weChatRichmediaCreate', reducer: weChatRichmediaCreateReducer });
|
|
2341
|
+
const withWeChatRichmediaEditReducer = injectReducer({ key: 'weChatRichmediaEdit', reducer: weChatRichmediaEditReducer });
|
|
2342
|
+
const withLineCreateReducer = injectReducer({ key: 'lineCreate', reducer: lineCreateReducer });
|
|
2343
|
+
const withEbillReducer = injectReducer({ key: 'ebill', reducer: ebillReducer });
|
|
2290
2344
|
const withSaga = injectSaga({ key: 'cap', saga: capSagaForFetchSchemaForEntity });
|
|
2291
2345
|
const withLiquidSaga = injectSaga({ key: 'liquid', saga: capSagaLiquidEntity, mode: DAEMON });
|
|
2292
2346
|
const withDefaultTempSaga = injectSaga({ key: 'creativesContainer', saga: v2TemplateSagaWatchGetDefaultBeeTemplates });
|
|
2293
2347
|
|
|
2294
|
-
export default compose(
|
|
2348
|
+
export default compose(
|
|
2349
|
+
withSaga, withLiquidSaga, withDefaultTempSaga,
|
|
2350
|
+
withReducer, withTemplateReducer, withEmailReducer, withCapReducer,
|
|
2351
|
+
withCallTaskReducer, withTagListReducer,
|
|
2352
|
+
withSmsCreateReducer, withSmsEditReducer,
|
|
2353
|
+
withMobilePushCreateReducer, withMobilePushEditReducer, withMobilePushNewReducer,
|
|
2354
|
+
withBeeEditorReducer, withFTPReducer,
|
|
2355
|
+
withFacebookReducer, withGalleryReducer, withFacebookPreviewReducer,
|
|
2356
|
+
withSmsTraiReducer, withWhatsappReducer, withRcsReducer, withZaloReducer,
|
|
2357
|
+
withInAppReducer, withViberReducer,
|
|
2358
|
+
withWeChatMapTemplateReducer, withWeChatRichmediaCreateReducer, withWeChatRichmediaEditReducer,
|
|
2359
|
+
withLineCreateReducer, withEbillReducer,
|
|
2360
|
+
withConnect,
|
|
2361
|
+
)(injectIntl(Creatives));
|
|
@@ -978,7 +978,7 @@ exports[`Test SlideBoxContent container Should render correct component for rcs
|
|
|
978
978
|
|
|
979
979
|
exports[`Test SlideBoxContent container Should render correct component for rcs channel templates mode 1`] = `
|
|
980
980
|
<SlideBoxContent__CreativesWrapper>
|
|
981
|
-
<Connect(UserIsAuthenticated(
|
|
981
|
+
<Connect(UserIsAuthenticated(Component))
|
|
982
982
|
FTPMode="create"
|
|
983
983
|
channel="rcs"
|
|
984
984
|
loyaltyMetaData={Object {}}
|
|
@@ -1390,7 +1390,7 @@ Click {{3}} to unsubscribe",
|
|
|
1390
1390
|
|
|
1391
1391
|
exports[`Test SlideBoxContent container Should render correct component for whatsapp channel templates mode 1`] = `
|
|
1392
1392
|
<SlideBoxContent__CreativesWrapper>
|
|
1393
|
-
<Connect(UserIsAuthenticated(
|
|
1393
|
+
<Connect(UserIsAuthenticated(Component))
|
|
1394
1394
|
FTPMode="create"
|
|
1395
1395
|
channel="whatsapp"
|
|
1396
1396
|
loyaltyMetaData={Object {}}
|
|
@@ -124,7 +124,7 @@ import {
|
|
|
124
124
|
} from '../Whatsapp/constants';
|
|
125
125
|
import { INAPP_LAYOUT_DETAILS, INAPP_MESSAGE_LAYOUT_TYPES } from '../InApp/constants';
|
|
126
126
|
import { ZALO_STATUS_OPTIONS, ZALO_STATUSES } from '../Zalo/constants';
|
|
127
|
-
import { getWhatsappContent, getWhatsappStatus, getWhatsappCategory, getWhatsappCta, getWhatsappQuickReply, getWhatsappAutoFill, getWhatsappCarouselButtonView } from '../Whatsapp/utils';
|
|
127
|
+
import { getWhatsappContent, getWhatsappStatus, getWhatsappCategory, getWhatsappCta, getWhatsappQuickReply, getWhatsappAutoFill, getWhatsappCarouselButtonView, getWhatsappDocPreview } from '../Whatsapp/utils';
|
|
128
128
|
import { getRCSContent } from '../Rcs/utils';
|
|
129
129
|
import {RCS_STATUSES} from '../Rcs/constants';
|
|
130
130
|
import zaloMessages from '../Zalo/messages';
|
|
@@ -1253,7 +1253,7 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1253
1253
|
} else if (mediaType === 'VIDEO' && whatsappData.videoPreviewImg) {
|
|
1254
1254
|
whatsappVideoPreviewImg = whatsappData.videoPreviewImg;
|
|
1255
1255
|
} else if (mediaType === 'DOCUMENT' && whatsappData.whatsappDocParams) {
|
|
1256
|
-
docPreview = whatsappData.whatsappDocParams;
|
|
1256
|
+
docPreview = getWhatsappDocPreview(whatsappData.whatsappDocParams);
|
|
1257
1257
|
}
|
|
1258
1258
|
|
|
1259
1259
|
const ctaData = buttonType === 'CTA' ? buttons : [];
|
|
@@ -20,6 +20,11 @@ import messages from './messages';
|
|
|
20
20
|
import * as actions from './actions';
|
|
21
21
|
import * as templateActions from '../Templates/actions';
|
|
22
22
|
import Templates from '../Templates';
|
|
23
|
+
import injectReducer from '../../utils/injectReducer';
|
|
24
|
+
import injectSaga from '../../utils/injectSaga';
|
|
25
|
+
import v2TemplateReducer from '../Templates/reducer';
|
|
26
|
+
import { v2TemplateSaga } from '../Templates/sagas';
|
|
27
|
+
import { DAEMON } from '@capillarytech/vulcan-react-sdk/utils/sagaInjectorTypes';
|
|
23
28
|
import * as commonUtil from '../../utils/common';
|
|
24
29
|
import CallTask from '../CallTask';
|
|
25
30
|
import Facebook from '../Facebook';
|
|
@@ -437,9 +442,12 @@ function mapDispatchToProps(dispatch) {
|
|
|
437
442
|
}
|
|
438
443
|
|
|
439
444
|
const withConnect = connect(mapStateToProps, mapDispatchToProps);
|
|
440
|
-
|
|
445
|
+
const withReducer = injectReducer({ key: 'templates', reducer: v2TemplateReducer });
|
|
446
|
+
const withSaga = injectSaga({ key: 'templates', saga: v2TemplateSaga, mode: DAEMON });
|
|
441
447
|
|
|
442
448
|
export default compose(
|
|
443
449
|
UserIsAuthenticated,
|
|
450
|
+
withSaga,
|
|
451
|
+
withReducer,
|
|
444
452
|
withConnect,
|
|
445
453
|
)(injectIntl(withStyles(TemplatesV2, styles)));
|
|
@@ -19118,7 +19118,7 @@ new message content.",
|
|
|
19118
19118
|
>
|
|
19119
19119
|
<SendTestMessage
|
|
19120
19120
|
channel="WHATSAPP"
|
|
19121
|
-
content="
|
|
19121
|
+
content=""
|
|
19122
19122
|
deliverySettings={
|
|
19123
19123
|
Object {
|
|
19124
19124
|
"domainId": null,
|
|
@@ -40765,7 +40765,7 @@ new message content.",
|
|
|
40765
40765
|
>
|
|
40766
40766
|
<SendTestMessage
|
|
40767
40767
|
channel="WHATSAPP"
|
|
40768
|
-
content="
|
|
40768
|
+
content=""
|
|
40769
40769
|
deliverySettings={
|
|
40770
40770
|
Object {
|
|
40771
40771
|
"domainId": null,
|
|
@@ -63460,7 +63460,7 @@ new message content.",
|
|
|
63460
63460
|
>
|
|
63461
63461
|
<SendTestMessage
|
|
63462
63462
|
channel="WHATSAPP"
|
|
63463
|
-
content="
|
|
63463
|
+
content=""
|
|
63464
63464
|
deliverySettings={
|
|
63465
63465
|
Object {
|
|
63466
63466
|
"domainId": null,
|
|
@@ -88572,7 +88572,7 @@ new message content.",
|
|
|
88572
88572
|
>
|
|
88573
88573
|
<SendTestMessage
|
|
88574
88574
|
channel="WHATSAPP"
|
|
88575
|
-
content="
|
|
88575
|
+
content=""
|
|
88576
88576
|
deliverySettings={
|
|
88577
88577
|
Object {
|
|
88578
88578
|
"domainId": null,
|
|
@@ -108880,7 +108880,8 @@ new message content.",
|
|
|
108880
108880
|
>
|
|
108881
108881
|
<SendTestMessage
|
|
108882
108882
|
channel="WHATSAPP"
|
|
108883
|
-
content="
|
|
108883
|
+
content="
|
|
108884
|
+
undefined"
|
|
108884
108885
|
deliverySettings={
|
|
108885
108886
|
Object {
|
|
108886
108887
|
"domainId": null,
|
|
@@ -128170,7 +128171,7 @@ new message content.",
|
|
|
128170
128171
|
>
|
|
128171
128172
|
<SendTestMessage
|
|
128172
128173
|
channel="WHATSAPP"
|
|
128173
|
-
content="
|
|
128174
|
+
content=""
|
|
128174
128175
|
deliverySettings={
|
|
128175
128176
|
Object {
|
|
128176
128177
|
"domainId": null,
|
|
@@ -151833,7 +151834,7 @@ new message content.",
|
|
|
151833
151834
|
>
|
|
151834
151835
|
<SendTestMessage
|
|
151835
151836
|
channel="WHATSAPP"
|
|
151836
|
-
content="
|
|
151837
|
+
content=""
|
|
151837
151838
|
deliverySettings={
|
|
151838
151839
|
Object {
|
|
151839
151840
|
"domainId": null,
|
|
@@ -176544,7 +176545,7 @@ new message content.",
|
|
|
176544
176545
|
>
|
|
176545
176546
|
<SendTestMessage
|
|
176546
176547
|
channel="WHATSAPP"
|
|
176547
|
-
content="
|
|
176548
|
+
content=""
|
|
176548
176549
|
deliverySettings={
|
|
176549
176550
|
Object {
|
|
176550
176551
|
"domainId": null,
|
|
@@ -203672,7 +203673,7 @@ new message content.",
|
|
|
203672
203673
|
>
|
|
203673
203674
|
<SendTestMessage
|
|
203674
203675
|
channel="WHATSAPP"
|
|
203675
|
-
content="
|
|
203676
|
+
content=""
|
|
203676
203677
|
deliverySettings={
|
|
203677
203678
|
Object {
|
|
203678
203679
|
"domainId": null,
|
|
@@ -231842,7 +231843,7 @@ new message content.",
|
|
|
231842
231843
|
>
|
|
231843
231844
|
<SendTestMessage
|
|
231844
231845
|
channel="WHATSAPP"
|
|
231845
|
-
content="
|
|
231846
|
+
content=""
|
|
231846
231847
|
deliverySettings={
|
|
231847
231848
|
Object {
|
|
231848
231849
|
"domainId": null,
|
|
@@ -247451,7 +247452,9 @@ new message content.",
|
|
|
247451
247452
|
>
|
|
247452
247453
|
<SendTestMessage
|
|
247453
247454
|
channel="WHATSAPP"
|
|
247454
|
-
content="
|
|
247455
|
+
content="$'Dear Customer, your500 points are about to expire. Redeem before tomorrow at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
247456
|
+
T&C'
|
|
247457
|
+
undefined"
|
|
247455
247458
|
deliverySettings={
|
|
247456
247459
|
Object {
|
|
247457
247460
|
"domainId": null,
|
|
@@ -262001,7 +262004,8 @@ new message content.",
|
|
|
262001
262004
|
>
|
|
262002
262005
|
<SendTestMessage
|
|
262003
262006
|
channel="WHATSAPP"
|
|
262004
|
-
content="
|
|
262007
|
+
content="$'Dear Customer, your{{1}} points are about to expire. Redeem before {{2}} at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
262008
|
+
T&C'"
|
|
262005
262009
|
deliverySettings={
|
|
262006
262010
|
Object {
|
|
262007
262011
|
"domainId": null,
|
|
@@ -278690,7 +278694,7 @@ new message content.",
|
|
|
278690
278694
|
>
|
|
278691
278695
|
<SendTestMessage
|
|
278692
278696
|
channel="WHATSAPP"
|
|
278693
|
-
content="
|
|
278697
|
+
content="test"
|
|
278694
278698
|
deliverySettings={
|
|
278695
278699
|
Object {
|
|
278696
278700
|
"domainId": null,
|
|
@@ -303284,7 +303288,9 @@ new message content.",
|
|
|
303284
303288
|
>
|
|
303285
303289
|
<SendTestMessage
|
|
303286
303290
|
channel="WHATSAPP"
|
|
303287
|
-
content="
|
|
303291
|
+
content="$'Dear Customer, your5454 points are about to expire. Redeem before tomorrow at nearest Vishal Mega Mart and SHOP FOR FREE!
|
|
303292
|
+
T&C'
|
|
303293
|
+
undefined"
|
|
303288
303294
|
deliverySettings={
|
|
303289
303295
|
Object {
|
|
303290
303296
|
"domainId": null,
|
|
@@ -331273,7 +331279,8 @@ new message content.",
|
|
|
331273
331279
|
>
|
|
331274
331280
|
<SendTestMessage
|
|
331275
331281
|
channel="WHATSAPP"
|
|
331276
|
-
content="
|
|
331282
|
+
content="You have received 50 points
|
|
331283
|
+
undefined"
|
|
331277
331284
|
deliverySettings={
|
|
331278
331285
|
Object {
|
|
331279
331286
|
"domainId": null,
|
|
@@ -346885,7 +346892,7 @@ new message content.",
|
|
|
346885
346892
|
>
|
|
346886
346893
|
<SendTestMessage
|
|
346887
346894
|
channel="WHATSAPP"
|
|
346888
|
-
content="
|
|
346895
|
+
content="You have received 50 points Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test TestTest Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test"
|
|
346889
346896
|
deliverySettings={
|
|
346890
346897
|
Object {
|
|
346891
346898
|
"domainId": null,
|
|
@@ -366193,7 +366200,7 @@ new message content.",
|
|
|
366193
366200
|
>
|
|
366194
366201
|
<SendTestMessage
|
|
366195
366202
|
channel="WHATSAPP"
|
|
366196
|
-
content="
|
|
366203
|
+
content=""
|
|
366197
366204
|
deliverySettings={
|
|
366198
366205
|
Object {
|
|
366199
366206
|
"domainId": null,
|
|
@@ -389856,7 +389863,7 @@ new message content.",
|
|
|
389856
389863
|
>
|
|
389857
389864
|
<SendTestMessage
|
|
389858
389865
|
channel="WHATSAPP"
|
|
389859
|
-
content="
|
|
389866
|
+
content=""
|
|
389860
389867
|
deliverySettings={
|
|
389861
389868
|
Object {
|
|
389862
389869
|
"domainId": null,
|
|
@@ -409142,7 +409149,7 @@ new message content.",
|
|
|
409142
409149
|
>
|
|
409143
409150
|
<SendTestMessage
|
|
409144
409151
|
channel="WHATSAPP"
|
|
409145
|
-
content="
|
|
409152
|
+
content=""
|
|
409146
409153
|
deliverySettings={
|
|
409147
409154
|
Object {
|
|
409148
409155
|
"domainId": null,
|
|
@@ -429314,7 +429321,7 @@ new message content.",
|
|
|
429314
429321
|
>
|
|
429315
429322
|
<SendTestMessage
|
|
429316
429323
|
channel="WHATSAPP"
|
|
429317
|
-
content="
|
|
429324
|
+
content=""
|
|
429318
429325
|
deliverySettings={
|
|
429319
429326
|
Object {
|
|
429320
429327
|
"domainId": null,
|
|
@@ -450363,7 +450370,7 @@ new message content.",
|
|
|
450363
450370
|
>
|
|
450364
450371
|
<SendTestMessage
|
|
450365
450372
|
channel="WHATSAPP"
|
|
450366
|
-
content="
|
|
450373
|
+
content="Hi {{1}}"
|
|
450367
450374
|
deliverySettings={
|
|
450368
450375
|
Object {
|
|
450369
450376
|
"domainId": null,
|
|
@@ -472298,7 +472305,7 @@ new message content.",
|
|
|
472298
472305
|
>
|
|
472299
472306
|
<SendTestMessage
|
|
472300
472307
|
channel="WHATSAPP"
|
|
472301
|
-
content="
|
|
472308
|
+
content="Hi {{1}}{{2}}"
|
|
472302
472309
|
deliverySettings={
|
|
472303
472310
|
Object {
|
|
472304
472311
|
"domainId": null,
|
|
@@ -495136,7 +495143,7 @@ new message content.",
|
|
|
495136
495143
|
>
|
|
495137
495144
|
<SendTestMessage
|
|
495138
495145
|
channel="WHATSAPP"
|
|
495139
|
-
content="
|
|
495146
|
+
content="Hi {{var}}"
|
|
495140
495147
|
deliverySettings={
|
|
495141
495148
|
Object {
|
|
495142
495149
|
"domainId": null,
|
|
@@ -518874,7 +518881,7 @@ new message content.",
|
|
|
518874
518881
|
>
|
|
518875
518882
|
<SendTestMessage
|
|
518876
518883
|
channel="WHATSAPP"
|
|
518877
|
-
content="
|
|
518884
|
+
content="Hi {{1}}, offer {{3}}"
|
|
518878
518885
|
deliverySettings={
|
|
518879
518886
|
Object {
|
|
518880
518887
|
"domainId": null,
|
|
@@ -543503,7 +543510,7 @@ new message content.",
|
|
|
543503
543510
|
>
|
|
543504
543511
|
<SendTestMessage
|
|
543505
543512
|
channel="WHATSAPP"
|
|
543506
|
-
content="
|
|
543513
|
+
content="Hi {{1}}{{1}}"
|
|
543507
543514
|
deliverySettings={
|
|
543508
543515
|
Object {
|
|
543509
543516
|
"domainId": null,
|
|
@@ -569023,7 +569030,7 @@ new message content.",
|
|
|
569023
569030
|
>
|
|
569024
569031
|
<SendTestMessage
|
|
569025
569032
|
channel="WHATSAPP"
|
|
569026
|
-
content="
|
|
569033
|
+
content="Hi {{{1}}}"
|
|
569027
569034
|
deliverySettings={
|
|
569028
569035
|
Object {
|
|
569029
569036
|
"domainId": null,
|
|
@@ -595409,7 +595416,7 @@ new message content.",
|
|
|
595409
595416
|
>
|
|
595410
595417
|
<SendTestMessage
|
|
595411
595418
|
channel="WHATSAPP"
|
|
595412
|
-
content="
|
|
595419
|
+
content="Hi {{"
|
|
595413
595420
|
deliverySettings={
|
|
595414
595421
|
Object {
|
|
595415
595422
|
"domainId": null,
|
|
@@ -614695,7 +614702,7 @@ new message content.",
|
|
|
614695
614702
|
>
|
|
614696
614703
|
<SendTestMessage
|
|
614697
614704
|
channel="WHATSAPP"
|
|
614698
|
-
content="
|
|
614705
|
+
content=""
|
|
614699
614706
|
deliverySettings={
|
|
614700
614707
|
Object {
|
|
614701
614708
|
"domainId": null,
|
|
@@ -633981,7 +633988,7 @@ new message content.",
|
|
|
633981
633988
|
>
|
|
633982
633989
|
<SendTestMessage
|
|
633983
633990
|
channel="WHATSAPP"
|
|
633984
|
-
content="
|
|
633991
|
+
content=""
|
|
633985
633992
|
deliverySettings={
|
|
633986
633993
|
Object {
|
|
633987
633994
|
"domainId": null,
|
|
@@ -653267,7 +653274,7 @@ new message content.",
|
|
|
653267
653274
|
>
|
|
653268
653275
|
<SendTestMessage
|
|
653269
653276
|
channel="WHATSAPP"
|
|
653270
|
-
content="
|
|
653277
|
+
content=""
|
|
653271
653278
|
deliverySettings={
|
|
653272
653279
|
Object {
|
|
653273
653280
|
"domainId": null,
|
|
@@ -672553,7 +672560,7 @@ new message content.",
|
|
|
672553
672560
|
>
|
|
672554
672561
|
<SendTestMessage
|
|
672555
672562
|
channel="WHATSAPP"
|
|
672556
|
-
content="
|
|
672563
|
+
content=""
|
|
672557
672564
|
deliverySettings={
|
|
672558
672565
|
Object {
|
|
672559
672566
|
"domainId": null,
|
|
@@ -694228,7 +694235,7 @@ new message content.",
|
|
|
694228
694235
|
>
|
|
694229
694236
|
<SendTestMessage
|
|
694230
694237
|
channel="WHATSAPP"
|
|
694231
|
-
content="
|
|
694238
|
+
content=""
|
|
694232
694239
|
deliverySettings={
|
|
694233
694240
|
Object {
|
|
694234
694241
|
"domainId": null,
|
|
@@ -716011,7 +716018,7 @@ new message content.",
|
|
|
716011
716018
|
>
|
|
716012
716019
|
<SendTestMessage
|
|
716013
716020
|
channel="WHATSAPP"
|
|
716014
|
-
content="
|
|
716021
|
+
content=""
|
|
716015
716022
|
deliverySettings={
|
|
716016
716023
|
Object {
|
|
716017
716024
|
"domainId": null,
|
|
@@ -737794,7 +737801,7 @@ new message content.",
|
|
|
737794
737801
|
>
|
|
737795
737802
|
<SendTestMessage
|
|
737796
737803
|
channel="WHATSAPP"
|
|
737797
|
-
content="
|
|
737804
|
+
content=""
|
|
737798
737805
|
deliverySettings={
|
|
737799
737806
|
Object {
|
|
737800
737807
|
"domainId": null,
|