@capillarytech/creatives-library 9.0.56-alpha.1 → 9.0.56-alpha.3
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 +6 -0
- package/v2Components/CommonTestAndPreview/index.js +54 -1
- package/v2Components/TestAndPreviewSlidebox/index.js +6 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +12 -15
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +23 -6
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.js +25 -2
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +24 -0
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +6 -0
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +68 -0
package/package.json
CHANGED
package/services/api.js
CHANGED
|
@@ -713,6 +713,12 @@ export const editCommDefinition = (commDefinitionId, payload) => {
|
|
|
713
713
|
return request(url, getAPICallObject('POST', payload, false, false, false, true));
|
|
714
714
|
};
|
|
715
715
|
|
|
716
|
+
// Sends a real transactional comm via CCS (notify/ui's "Send test" action uses this instead of the legacy createMessageMeta/sendTestMessage flow — see CommonTestAndPreview's handleSendTestMessage).
|
|
717
|
+
export const sendTransactionalComm = (payload) => {
|
|
718
|
+
const url = `${API_ENDPOINT}/comm-definitions/send/transaction`;
|
|
719
|
+
return request(url, getAPICallObject('POST', payload, false, false, false, true));
|
|
720
|
+
};
|
|
721
|
+
|
|
716
722
|
export const getCentralCommsMetaIds = (metaIds, metaType = TRANSACTION) => {
|
|
717
723
|
const url = `${API_ENDPOINT}/common/central-comms/meta-id/${metaType}?metaIds=${metaIds}`;
|
|
718
724
|
return request(url, getAPICallObject('GET', null, false, false, false, true));
|
|
@@ -208,6 +208,8 @@ const CommonTestAndPreview = (props) => {
|
|
|
208
208
|
wecrmAccounts = [],
|
|
209
209
|
isLoadingSenderDetails = false,
|
|
210
210
|
orgUnitId = -1,
|
|
211
|
+
// notify/ui only: { commDefinitionId, referenceId } — when present, "Send test" calls CCS's send/transaction endpoint directly instead of the legacy createMessageMeta/sendTestMessage flow.
|
|
212
|
+
ccsSendTransaction,
|
|
211
213
|
// Email-specific props
|
|
212
214
|
beeInstance,
|
|
213
215
|
currentTab = 1,
|
|
@@ -231,6 +233,7 @@ const CommonTestAndPreview = (props) => {
|
|
|
231
233
|
const [smsFallbackOptionalTags, setSmsFallbackOptionalTags] = useState([]);
|
|
232
234
|
const [isExtractingSmsFallbackTags, setIsExtractingSmsFallbackTags] = useState(false);
|
|
233
235
|
const [customValues, setCustomValues] = useState({});
|
|
236
|
+
const [isSendingCcsTest, setIsSendingCcsTest] = useState(false);
|
|
234
237
|
const previewCustomValuesRef = useRef({});
|
|
235
238
|
const [showJSON, setShowJSON] = useState(false);
|
|
236
239
|
const [tagsExtracted, setTagsExtracted] = useState(false);
|
|
@@ -3625,7 +3628,52 @@ const CommonTestAndPreview = (props) => {
|
|
|
3625
3628
|
/**
|
|
3626
3629
|
* Handle send test message
|
|
3627
3630
|
*/
|
|
3631
|
+
// notify/ui: send the test through CCS's own send/transaction endpoint against the alert's
|
|
3632
|
+
// real CommDefinition, instead of the legacy createMessageMeta/sendTestMessage flow below.
|
|
3633
|
+
const handleCcsSendTestMessage = async () => {
|
|
3634
|
+
const allUserIds = [];
|
|
3635
|
+
selectedTestEntities.forEach((entityId) => {
|
|
3636
|
+
const group = testGroups.find((testGroup) => testEntityIdsEqual(testGroup.groupId, entityId));
|
|
3637
|
+
if (group) {
|
|
3638
|
+
allUserIds.push(...group.userIds);
|
|
3639
|
+
} else {
|
|
3640
|
+
allUserIds.push(entityId);
|
|
3641
|
+
}
|
|
3642
|
+
});
|
|
3643
|
+
const uniqueUserIds = [...new Set(allUserIds)];
|
|
3644
|
+
const { commDefinitionId, referenceId } = ccsSendTransaction;
|
|
3645
|
+
|
|
3646
|
+
setIsSendingCcsTest(true);
|
|
3647
|
+
try {
|
|
3648
|
+
const res = await Api.sendTransactionalComm({
|
|
3649
|
+
...(commDefinitionId ? { commDefinitionId } : { referenceId }),
|
|
3650
|
+
uniqueKey: `test_${Date.now()}`,
|
|
3651
|
+
isTest: true,
|
|
3652
|
+
recipient: {
|
|
3653
|
+
identifiers: uniqueUserIds.map((userId) => ({ type: 'USER_ID', value: String(userId) })),
|
|
3654
|
+
tagValues: customValues,
|
|
3655
|
+
},
|
|
3656
|
+
});
|
|
3657
|
+
if (res?.response?.success === false) {
|
|
3658
|
+
throw new Error(res?.response?.errors?.[0]?.message || 'Failed to send test message');
|
|
3659
|
+
}
|
|
3660
|
+
CapNotification.success({
|
|
3661
|
+
message: formatMessage(messages.testMessageSent),
|
|
3662
|
+
});
|
|
3663
|
+
} catch (error) {
|
|
3664
|
+
CapNotification.error({
|
|
3665
|
+
message: formatMessage(messages.testMessageFailed),
|
|
3666
|
+
});
|
|
3667
|
+
} finally {
|
|
3668
|
+
setIsSendingCcsTest(false);
|
|
3669
|
+
}
|
|
3670
|
+
};
|
|
3671
|
+
|
|
3628
3672
|
const handleSendTestMessage = () => {
|
|
3673
|
+
if (ccsSendTransaction) {
|
|
3674
|
+
handleCcsSendTestMessage();
|
|
3675
|
+
return;
|
|
3676
|
+
}
|
|
3629
3677
|
const allUserIds = [];
|
|
3630
3678
|
selectedTestEntities.forEach((entityId) => {
|
|
3631
3679
|
const group = testGroups.find((testGroup) => testEntityIdsEqual(testGroup.groupId, entityId));
|
|
@@ -3763,7 +3811,7 @@ const CommonTestAndPreview = (props) => {
|
|
|
3763
3811
|
formData={formDataForSendTest}
|
|
3764
3812
|
content={getCurrentContent}
|
|
3765
3813
|
channel={channel}
|
|
3766
|
-
isSendingTestMessage={isSendingTestMessage}
|
|
3814
|
+
isSendingTestMessage={isSendingTestMessage || isSendingCcsTest}
|
|
3767
3815
|
renderAddTestCustomerButton={renderAddTestCustomerButton}
|
|
3768
3816
|
formatMessage={formatMessage}
|
|
3769
3817
|
deliverySettings={testPreviewDeliverySettings[channel]}
|
|
@@ -3918,6 +3966,10 @@ CommonTestAndPreview.propTypes = {
|
|
|
3918
3966
|
wecrmAccounts: PropTypes.array,
|
|
3919
3967
|
isLoadingSenderDetails: PropTypes.bool,
|
|
3920
3968
|
orgUnitId: PropTypes.number,
|
|
3969
|
+
ccsSendTransaction: PropTypes.shape({
|
|
3970
|
+
commDefinitionId: PropTypes.string,
|
|
3971
|
+
referenceId: PropTypes.string,
|
|
3972
|
+
}),
|
|
3921
3973
|
|
|
3922
3974
|
// Email-specific props
|
|
3923
3975
|
beeInstance: PropTypes.object,
|
|
@@ -3957,6 +4009,7 @@ CommonTestAndPreview.defaultProps = {
|
|
|
3957
4009
|
wecrmAccounts: [],
|
|
3958
4010
|
isLoadingSenderDetails: false,
|
|
3959
4011
|
orgUnitId: -1,
|
|
4012
|
+
ccsSendTransaction: null,
|
|
3960
4013
|
};
|
|
3961
4014
|
|
|
3962
4015
|
// ============================================
|
|
@@ -108,6 +108,11 @@ TestAndPreviewSlidebox.propTypes = {
|
|
|
108
108
|
wecrmAccounts: PropTypes.array,
|
|
109
109
|
isLoadingSenderDetails: PropTypes.bool,
|
|
110
110
|
orgUnitId: PropTypes.number,
|
|
111
|
+
/** notify/ui only — see CommonTestAndPreview's handleSendTestMessage. */
|
|
112
|
+
ccsSendTransaction: PropTypes.shape({
|
|
113
|
+
commDefinitionId: PropTypes.string,
|
|
114
|
+
referenceId: PropTypes.string,
|
|
115
|
+
}),
|
|
111
116
|
};
|
|
112
117
|
|
|
113
118
|
TestAndPreviewSlidebox.defaultProps = {
|
|
@@ -125,6 +130,7 @@ TestAndPreviewSlidebox.defaultProps = {
|
|
|
125
130
|
isLoadingSenderDetails: false,
|
|
126
131
|
orgUnitId: -1,
|
|
127
132
|
smsFallbackContent: null,
|
|
133
|
+
ccsSendTransaction: null,
|
|
128
134
|
};
|
|
129
135
|
|
|
130
136
|
const mapStateToProps = createStructuredSelector({
|
|
@@ -70,18 +70,6 @@ const hasDeliverySettingForChannel = (channelSetting, channel) => {
|
|
|
70
70
|
// createCommDefinition resolves with the CCS error envelope for 4xx/5xx responses (see api.js request()/checkStatus); duplicate referenceId within the org returns a 409.
|
|
71
71
|
const isDuplicateReferenceIdError = (res) => res?.success === false && res?.status?.message === 'REFERENCE_ID_EXISTS';
|
|
72
72
|
|
|
73
|
-
/**
|
|
74
|
-
* CCS requires referenceId on create, while consumers require only the Alert/comm name; generate a stable fallback from the name when referenceId is omitted instead of failing the save.
|
|
75
|
-
*/
|
|
76
|
-
const buildCcsReferenceId = (name) => {
|
|
77
|
-
const slug = (name || 'COMM')
|
|
78
|
-
.trim()
|
|
79
|
-
.toUpperCase()
|
|
80
|
-
.replace(/[^A-Z0-9]+/g, '_')
|
|
81
|
-
.replace(/^_+|_+$/g, '') || 'COMM';
|
|
82
|
-
return `${slug}_${Date.now()}`;
|
|
83
|
-
};
|
|
84
|
-
|
|
85
73
|
const CommunicationFlow = ({
|
|
86
74
|
config,
|
|
87
75
|
initialData,
|
|
@@ -192,12 +180,15 @@ const CommunicationFlow = ({
|
|
|
192
180
|
const contentPayload = contentTransform ? contentTransform(contentItem.templateData) : contentItem.templateData;
|
|
193
181
|
const { dynamicControls = {} } = aggregatedData;
|
|
194
182
|
const channelSettings = aggregatedData.deliverySetting?.channelSetting?.[channel] || {};
|
|
195
|
-
|
|
183
|
+
// referenceId/description are user-editable, optional fields (up until Send for
|
|
184
|
+
// approval) — sent as '' rather than auto-generated/omitted when left blank.
|
|
185
|
+
const referenceId = config?.context?.referenceId || '';
|
|
186
|
+
const description = config?.context?.description || '';
|
|
196
187
|
|
|
197
188
|
const payload = {
|
|
198
189
|
referenceId,
|
|
199
190
|
name,
|
|
200
|
-
description
|
|
191
|
+
description,
|
|
201
192
|
strategyType: CCS_STRATEGY_TYPE_SINGLE,
|
|
202
193
|
settings: {
|
|
203
194
|
additionalSettings: {
|
|
@@ -224,6 +215,8 @@ const CommunicationFlow = ({
|
|
|
224
215
|
try {
|
|
225
216
|
const res = existingCommDefinitionId
|
|
226
217
|
? await editCommDefinition(existingCommDefinitionId, {
|
|
218
|
+
referenceId: payload.referenceId,
|
|
219
|
+
description: payload.description,
|
|
227
220
|
strategyType: payload.strategyType,
|
|
228
221
|
settings: payload.settings,
|
|
229
222
|
singleChannelStrategy: payload.singleChannelStrategy,
|
|
@@ -328,6 +321,8 @@ const CommunicationFlow = ({
|
|
|
328
321
|
onChange={(data) => handleStepChange(step, data)}
|
|
329
322
|
channelsToHide={contentTemplateData.channelsToHide}
|
|
330
323
|
channelsToDisable={contentTemplateData.channelsToDisable}
|
|
324
|
+
disablePreviewAndTest={!!contentTemplateData.disablePreviewAndTest}
|
|
325
|
+
autoOpenExistingContent={!!contentTemplateData.autoOpenExistingContent}
|
|
331
326
|
creativesMode={config.mode || 'create'}
|
|
332
327
|
selectedOfferDetails={stepData.selectedOfferDetails}
|
|
333
328
|
incentivesData={{
|
|
@@ -338,7 +333,7 @@ const CommunicationFlow = ({
|
|
|
338
333
|
config={config}
|
|
339
334
|
capData={cap || capData}
|
|
340
335
|
/>
|
|
341
|
-
<CapDivider />
|
|
336
|
+
{stepData.contentItems?.length > 0 && <CapDivider />}
|
|
342
337
|
</CapRow>
|
|
343
338
|
);
|
|
344
339
|
case STEPS.DYNAMIC_CONTROLS:
|
|
@@ -415,6 +410,8 @@ CommunicationFlow.propTypes = {
|
|
|
415
410
|
contentTemplateData: PropTypes.shape({
|
|
416
411
|
required: PropTypes.bool,
|
|
417
412
|
channels: PropTypes.object,
|
|
413
|
+
disablePreviewAndTest: PropTypes.bool,
|
|
414
|
+
autoOpenExistingContent: PropTypes.bool,
|
|
418
415
|
}),
|
|
419
416
|
enableIncentives: PropTypes.bool,
|
|
420
417
|
enableDeliverySettings: PropTypes.bool,
|
|
@@ -613,10 +613,7 @@ describe('handleSave — CCS flow', () => {
|
|
|
613
613
|
);
|
|
614
614
|
});
|
|
615
615
|
|
|
616
|
-
it('
|
|
617
|
-
// moduleMocks.js spies on Date.now globally, but this config's resetMocks:true
|
|
618
|
-
// clears that return value before every test — set it explicitly here.
|
|
619
|
-
jest.spyOn(Date, 'now').mockReturnValue(1612267539410);
|
|
616
|
+
it('sends an empty referenceId/description when config.context does not supply them', async () => {
|
|
620
617
|
renderWithFlow({
|
|
621
618
|
features: {},
|
|
622
619
|
config: ccsConfig,
|
|
@@ -627,7 +624,8 @@ describe('handleSave — CCS flow', () => {
|
|
|
627
624
|
|
|
628
625
|
await waitFor(() => expect(createCommDefinition).toHaveBeenCalled());
|
|
629
626
|
const payload = createCommDefinition.mock.calls[0][0];
|
|
630
|
-
expect(payload.referenceId).toBe('
|
|
627
|
+
expect(payload.referenceId).toBe('');
|
|
628
|
+
expect(payload.description).toBe('');
|
|
631
629
|
});
|
|
632
630
|
|
|
633
631
|
it('uses config.context.referenceId and description when provided', async () => {
|
|
@@ -820,7 +818,7 @@ describe('handleSave — CCS flow', () => {
|
|
|
820
818
|
features: {},
|
|
821
819
|
config: {
|
|
822
820
|
...ccsConfig,
|
|
823
|
-
context: { ...ccsConfig.context, referenceId: 'ORDER_PLACED', existingCommDefinitionId: 'cd_existing_1' },
|
|
821
|
+
context: { ...ccsConfig.context, referenceId: 'ORDER_PLACED', description: 'desc', existingCommDefinitionId: 'cd_existing_1' },
|
|
824
822
|
},
|
|
825
823
|
initialData: { contentItems: [{ channel: 'SMS', templateData: {} }] },
|
|
826
824
|
onSave,
|
|
@@ -832,6 +830,8 @@ describe('handleSave — CCS flow', () => {
|
|
|
832
830
|
expect(editCommDefinition).toHaveBeenCalledWith(
|
|
833
831
|
'cd_existing_1',
|
|
834
832
|
expect.objectContaining({
|
|
833
|
+
referenceId: 'ORDER_PLACED',
|
|
834
|
+
description: 'desc',
|
|
835
835
|
strategyType: 'SINGLE',
|
|
836
836
|
settings: expect.anything(),
|
|
837
837
|
singleChannelStrategy: expect.anything(),
|
|
@@ -1017,4 +1017,21 @@ describe('step dividers', () => {
|
|
|
1017
1017
|
// own trailing divider.
|
|
1018
1018
|
expect(container.querySelectorAll('.ant-divider')).toHaveLength(2);
|
|
1019
1019
|
});
|
|
1020
|
+
|
|
1021
|
+
it('omits the divider after ChannelSelectionStep when no content has been added yet', () => {
|
|
1022
|
+
const { container } = renderWithFlow({
|
|
1023
|
+
features: {
|
|
1024
|
+
communicationStrategyData: { required: true, options: STRATEGY_OPTIONS },
|
|
1025
|
+
contentTemplateData: { required: true, channels: CHANNELS },
|
|
1026
|
+
},
|
|
1027
|
+
initialData: {
|
|
1028
|
+
communicationStrategy: SINGLE_TEMPLATE,
|
|
1029
|
+
contentItems: [],
|
|
1030
|
+
},
|
|
1031
|
+
});
|
|
1032
|
+
// Only CommunicationStrategyStep's divider renders — ChannelSelectionStep's own
|
|
1033
|
+
// divider is conditional on content existing, to avoid a dangling line above an
|
|
1034
|
+
// empty "Add creative" state.
|
|
1035
|
+
expect(container.querySelectorAll('.ant-divider')).toHaveLength(1);
|
|
1036
|
+
});
|
|
1020
1037
|
});
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
* Content template selection with channel dropdown
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import React, {
|
|
7
|
+
import React, {
|
|
8
|
+
useState, useCallback, useMemo, useEffect, useRef,
|
|
9
|
+
} from 'react';
|
|
8
10
|
import PropTypes from 'prop-types';
|
|
9
11
|
import { injectIntl } from 'react-intl';
|
|
10
12
|
import CapButton from '@capillarytech/cap-ui-library/CapButton';
|
|
@@ -45,6 +47,8 @@ const ChannelSelectionStep = ({
|
|
|
45
47
|
onChange,
|
|
46
48
|
channelsToHide = [],
|
|
47
49
|
channelsToDisable = [],
|
|
50
|
+
disablePreviewAndTest = false,
|
|
51
|
+
autoOpenExistingContent = false,
|
|
48
52
|
creativesMode = 'create',
|
|
49
53
|
selectedOfferDetails = [],
|
|
50
54
|
incentivesData,
|
|
@@ -117,6 +121,21 @@ const ChannelSelectionStep = ({
|
|
|
117
121
|
}
|
|
118
122
|
}, [contentItems]);
|
|
119
123
|
|
|
124
|
+
// Editing an existing single-channel alert (e.g. CapNotify's rejected-alert edit page) should
|
|
125
|
+
// land straight in that channel's template editor, not the one-card content list — there's
|
|
126
|
+
// only ever one item under the SINGLE strategy, so the list is just an extra click. Runs once
|
|
127
|
+
// on mount only; the ref guard keeps a later content-item change (e.g. after closing/re-saving)
|
|
128
|
+
// from re-triggering the auto-open.
|
|
129
|
+
const hasAutoOpenedRef = useRef(false);
|
|
130
|
+
useEffect(() => {
|
|
131
|
+
if (hasAutoOpenedRef.current) return;
|
|
132
|
+
hasAutoOpenedRef.current = true;
|
|
133
|
+
if (autoOpenExistingContent && contentItems.length > 0) {
|
|
134
|
+
handleEditContent(contentItems[0].contentId);
|
|
135
|
+
}
|
|
136
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
137
|
+
}, []);
|
|
138
|
+
|
|
120
139
|
const handleDeleteContent = useCallback((contentId) => {
|
|
121
140
|
onChange({ contentItems: contentItems.filter((c) => c.contentId !== contentId) });
|
|
122
141
|
}, [contentItems, onChange]);
|
|
@@ -358,7 +377,7 @@ const ChannelSelectionStep = ({
|
|
|
358
377
|
>
|
|
359
378
|
{formatMessage(messages.edit)}
|
|
360
379
|
</CapMenu.Item>
|
|
361
|
-
{!PREVIEW_TEST_UNSUPPORTED_CHANNELS.includes(item?.channel?.toUpperCase()) && (
|
|
380
|
+
{!disablePreviewAndTest && !PREVIEW_TEST_UNSUPPORTED_CHANNELS.includes(item?.channel?.toUpperCase()) && (
|
|
362
381
|
<CapMenu.Item
|
|
363
382
|
id="preview-menu-item"
|
|
364
383
|
className="ant-dropdown-menu-item"
|
|
@@ -551,6 +570,8 @@ ChannelSelectionStep.propTypes = {
|
|
|
551
570
|
onChange: PropTypes.func.isRequired,
|
|
552
571
|
channelsToHide: PropTypes.array,
|
|
553
572
|
channelsToDisable: PropTypes.array,
|
|
573
|
+
disablePreviewAndTest: PropTypes.bool,
|
|
574
|
+
autoOpenExistingContent: PropTypes.bool,
|
|
554
575
|
creativesMode: PropTypes.oneOf(['create', 'edit', 'preview']),
|
|
555
576
|
selectedOfferDetails: PropTypes.array,
|
|
556
577
|
incentivesData: PropTypes.shape({
|
|
@@ -572,6 +593,8 @@ ChannelSelectionStep.defaultProps = {
|
|
|
572
593
|
error: null,
|
|
573
594
|
channelsToHide: [],
|
|
574
595
|
channelsToDisable: [],
|
|
596
|
+
disablePreviewAndTest: false,
|
|
597
|
+
autoOpenExistingContent: false,
|
|
575
598
|
creativesMode: 'create',
|
|
576
599
|
selectedOfferDetails: [],
|
|
577
600
|
incentivesData: null,
|
|
@@ -11045,6 +11045,7 @@ new message content.",
|
|
|
11045
11045
|
}
|
|
11046
11046
|
}
|
|
11047
11047
|
beeInstance={null}
|
|
11048
|
+
ccsSendTransaction={null}
|
|
11048
11049
|
channel={null}
|
|
11049
11050
|
content={
|
|
11050
11051
|
Object {
|
|
@@ -13389,6 +13390,7 @@ new message content.",
|
|
|
13389
13390
|
}
|
|
13390
13391
|
}
|
|
13391
13392
|
beeInstance={null}
|
|
13393
|
+
ccsSendTransaction={null}
|
|
13392
13394
|
channel="RCS"
|
|
13393
13395
|
config={
|
|
13394
13396
|
Object {
|
|
@@ -26971,6 +26973,7 @@ new message content.",
|
|
|
26971
26973
|
}
|
|
26972
26974
|
}
|
|
26973
26975
|
beeInstance={null}
|
|
26976
|
+
ccsSendTransaction={null}
|
|
26974
26977
|
channel={null}
|
|
26975
26978
|
content={
|
|
26976
26979
|
Object {
|
|
@@ -29315,6 +29318,7 @@ new message content.",
|
|
|
29315
29318
|
}
|
|
29316
29319
|
}
|
|
29317
29320
|
beeInstance={null}
|
|
29321
|
+
ccsSendTransaction={null}
|
|
29318
29322
|
channel="RCS"
|
|
29319
29323
|
config={
|
|
29320
29324
|
Object {
|
|
@@ -43459,6 +43463,7 @@ new message content.",
|
|
|
43459
43463
|
}
|
|
43460
43464
|
}
|
|
43461
43465
|
beeInstance={null}
|
|
43466
|
+
ccsSendTransaction={null}
|
|
43462
43467
|
channel={null}
|
|
43463
43468
|
content={
|
|
43464
43469
|
Object {
|
|
@@ -45803,6 +45808,7 @@ new message content.",
|
|
|
45803
45808
|
}
|
|
45804
45809
|
}
|
|
45805
45810
|
beeInstance={null}
|
|
45811
|
+
ccsSendTransaction={null}
|
|
45806
45812
|
channel="RCS"
|
|
45807
45813
|
config={
|
|
45808
45814
|
Object {
|
|
@@ -60557,6 +60563,7 @@ new message content.",
|
|
|
60557
60563
|
}
|
|
60558
60564
|
}
|
|
60559
60565
|
beeInstance={null}
|
|
60566
|
+
ccsSendTransaction={null}
|
|
60560
60567
|
channel={null}
|
|
60561
60568
|
content={
|
|
60562
60569
|
Object {
|
|
@@ -62901,6 +62908,7 @@ new message content.",
|
|
|
62901
62908
|
}
|
|
62902
62909
|
}
|
|
62903
62910
|
beeInstance={null}
|
|
62911
|
+
ccsSendTransaction={null}
|
|
62904
62912
|
channel="RCS"
|
|
62905
62913
|
config={
|
|
62906
62914
|
Object {
|
|
@@ -76483,6 +76491,7 @@ new message content.",
|
|
|
76483
76491
|
}
|
|
76484
76492
|
}
|
|
76485
76493
|
beeInstance={null}
|
|
76494
|
+
ccsSendTransaction={null}
|
|
76486
76495
|
channel={null}
|
|
76487
76496
|
content={
|
|
76488
76497
|
Object {
|
|
@@ -78827,6 +78836,7 @@ new message content.",
|
|
|
78827
78836
|
}
|
|
78828
78837
|
}
|
|
78829
78838
|
beeInstance={null}
|
|
78839
|
+
ccsSendTransaction={null}
|
|
78830
78840
|
channel="RCS"
|
|
78831
78841
|
config={
|
|
78832
78842
|
Object {
|
|
@@ -96349,6 +96359,7 @@ new message content.",
|
|
|
96349
96359
|
}
|
|
96350
96360
|
}
|
|
96351
96361
|
beeInstance={null}
|
|
96362
|
+
ccsSendTransaction={null}
|
|
96352
96363
|
channel={null}
|
|
96353
96364
|
content={
|
|
96354
96365
|
Object {
|
|
@@ -98698,6 +98709,7 @@ new message content.",
|
|
|
98698
98709
|
}
|
|
98699
98710
|
}
|
|
98700
98711
|
beeInstance={null}
|
|
98712
|
+
ccsSendTransaction={null}
|
|
98701
98713
|
channel="RCS"
|
|
98702
98714
|
config={
|
|
98703
98715
|
Object {
|
|
@@ -116230,6 +116242,7 @@ new message content.",
|
|
|
116230
116242
|
}
|
|
116231
116243
|
}
|
|
116232
116244
|
beeInstance={null}
|
|
116245
|
+
ccsSendTransaction={null}
|
|
116233
116246
|
channel={null}
|
|
116234
116247
|
content={
|
|
116235
116248
|
Object {
|
|
@@ -118579,6 +118592,7 @@ new message content.",
|
|
|
118579
118592
|
}
|
|
118580
118593
|
}
|
|
118581
118594
|
beeInstance={null}
|
|
118595
|
+
ccsSendTransaction={null}
|
|
118582
118596
|
channel="RCS"
|
|
118583
118597
|
config={
|
|
118584
118598
|
Object {
|
|
@@ -136480,6 +136494,7 @@ new message content.",
|
|
|
136480
136494
|
}
|
|
136481
136495
|
}
|
|
136482
136496
|
beeInstance={null}
|
|
136497
|
+
ccsSendTransaction={null}
|
|
136483
136498
|
channel={null}
|
|
136484
136499
|
content={
|
|
136485
136500
|
Object {
|
|
@@ -138824,6 +138839,7 @@ new message content.",
|
|
|
138824
138839
|
}
|
|
138825
138840
|
}
|
|
138826
138841
|
beeInstance={null}
|
|
138842
|
+
ccsSendTransaction={null}
|
|
138827
138843
|
channel="RCS"
|
|
138828
138844
|
config={
|
|
138829
138845
|
Object {
|
|
@@ -152386,6 +152402,7 @@ new message content.",
|
|
|
152386
152402
|
}
|
|
152387
152403
|
}
|
|
152388
152404
|
beeInstance={null}
|
|
152405
|
+
ccsSendTransaction={null}
|
|
152389
152406
|
channel={null}
|
|
152390
152407
|
content={
|
|
152391
152408
|
Object {
|
|
@@ -154730,6 +154747,7 @@ new message content.",
|
|
|
154730
154747
|
}
|
|
154731
154748
|
}
|
|
154732
154749
|
beeInstance={null}
|
|
154750
|
+
ccsSendTransaction={null}
|
|
154733
154751
|
channel="RCS"
|
|
154734
154752
|
config={
|
|
154735
154753
|
Object {
|
|
@@ -168292,6 +168310,7 @@ new message content.",
|
|
|
168292
168310
|
}
|
|
168293
168311
|
}
|
|
168294
168312
|
beeInstance={null}
|
|
168313
|
+
ccsSendTransaction={null}
|
|
168295
168314
|
channel={null}
|
|
168296
168315
|
content={
|
|
168297
168316
|
Object {
|
|
@@ -170636,6 +170655,7 @@ new message content.",
|
|
|
170636
170655
|
}
|
|
170637
170656
|
}
|
|
170638
170657
|
beeInstance={null}
|
|
170658
|
+
ccsSendTransaction={null}
|
|
170639
170659
|
channel="RCS"
|
|
170640
170660
|
config={
|
|
170641
170661
|
Object {
|
|
@@ -184198,6 +184218,7 @@ new message content.",
|
|
|
184198
184218
|
}
|
|
184199
184219
|
}
|
|
184200
184220
|
beeInstance={null}
|
|
184221
|
+
ccsSendTransaction={null}
|
|
184201
184222
|
channel={null}
|
|
184202
184223
|
content={
|
|
184203
184224
|
Object {
|
|
@@ -186542,6 +186563,7 @@ new message content.",
|
|
|
186542
186563
|
}
|
|
186543
186564
|
}
|
|
186544
186565
|
beeInstance={null}
|
|
186566
|
+
ccsSendTransaction={null}
|
|
186545
186567
|
channel="RCS"
|
|
186546
186568
|
config={
|
|
186547
186569
|
Object {
|
|
@@ -199882,6 +199904,7 @@ new message content.",
|
|
|
199882
199904
|
}
|
|
199883
199905
|
}
|
|
199884
199906
|
beeInstance={null}
|
|
199907
|
+
ccsSendTransaction={null}
|
|
199885
199908
|
channel={null}
|
|
199886
199909
|
content={
|
|
199887
199910
|
Object {
|
|
@@ -202239,6 +202262,7 @@ new message content.",
|
|
|
202239
202262
|
}
|
|
202240
202263
|
}
|
|
202241
202264
|
beeInstance={null}
|
|
202265
|
+
ccsSendTransaction={null}
|
|
202242
202266
|
channel="RCS"
|
|
202243
202267
|
config={
|
|
202244
202268
|
Object {
|
|
@@ -12793,6 +12793,7 @@ FREE GIFTS-
|
|
|
12793
12793
|
}
|
|
12794
12794
|
}
|
|
12795
12795
|
beeInstance={null}
|
|
12796
|
+
ccsSendTransaction={null}
|
|
12796
12797
|
channel={null}
|
|
12797
12798
|
content="LATEST FASHION@VISHAL
|
|
12798
12799
|
{#var#}
|
|
@@ -15124,6 +15125,7 @@ new message content.",
|
|
|
15124
15125
|
}
|
|
15125
15126
|
}
|
|
15126
15127
|
beeInstance={null}
|
|
15128
|
+
ccsSendTransaction={null}
|
|
15127
15129
|
channel="SMS"
|
|
15128
15130
|
config={
|
|
15129
15131
|
Object {
|
|
@@ -31913,6 +31915,7 @@ FREE GIFTS-
|
|
|
31913
31915
|
}
|
|
31914
31916
|
}
|
|
31915
31917
|
beeInstance={null}
|
|
31918
|
+
ccsSendTransaction={null}
|
|
31916
31919
|
channel={null}
|
|
31917
31920
|
content="LATEST FASHION@VISHAL
|
|
31918
31921
|
test1
|
|
@@ -34244,6 +34247,7 @@ new message content.",
|
|
|
34244
34247
|
}
|
|
34245
34248
|
}
|
|
34246
34249
|
beeInstance={null}
|
|
34250
|
+
ccsSendTransaction={null}
|
|
34247
34251
|
channel="SMS"
|
|
34248
34252
|
config={
|
|
34249
34253
|
Object {
|
|
@@ -49569,6 +49573,7 @@ FREE GIFTS-
|
|
|
49569
49573
|
}
|
|
49570
49574
|
}
|
|
49571
49575
|
beeInstance={null}
|
|
49576
|
+
ccsSendTransaction={null}
|
|
49572
49577
|
channel={null}
|
|
49573
49578
|
content="LATEST FASHION@VISHAL
|
|
49574
49579
|
{#var#}
|
|
@@ -51900,6 +51905,7 @@ new message content.",
|
|
|
51900
51905
|
}
|
|
51901
51906
|
}
|
|
51902
51907
|
beeInstance={null}
|
|
51908
|
+
ccsSendTransaction={null}
|
|
51903
51909
|
channel="SMS"
|
|
51904
51910
|
config={
|
|
51905
51911
|
Object {
|
|
@@ -14385,6 +14385,7 @@ new message content.",
|
|
|
14385
14385
|
}
|
|
14386
14386
|
}
|
|
14387
14387
|
beeInstance={null}
|
|
14388
|
+
ccsSendTransaction={null}
|
|
14388
14389
|
channel={null}
|
|
14389
14390
|
content={
|
|
14390
14391
|
Object {
|
|
@@ -16745,6 +16746,7 @@ new message content.",
|
|
|
16745
16746
|
}
|
|
16746
16747
|
}
|
|
16747
16748
|
beeInstance={null}
|
|
16749
|
+
ccsSendTransaction={null}
|
|
16748
16750
|
channel="WHATSAPP"
|
|
16749
16751
|
config={
|
|
16750
16752
|
Object {
|
|
@@ -36068,6 +36070,7 @@ new message content.",
|
|
|
36068
36070
|
}
|
|
36069
36071
|
}
|
|
36070
36072
|
beeInstance={null}
|
|
36073
|
+
ccsSendTransaction={null}
|
|
36071
36074
|
channel={null}
|
|
36072
36075
|
content={
|
|
36073
36076
|
Object {
|
|
@@ -38428,6 +38431,7 @@ new message content.",
|
|
|
38428
38431
|
}
|
|
38429
38432
|
}
|
|
38430
38433
|
beeInstance={null}
|
|
38434
|
+
ccsSendTransaction={null}
|
|
38431
38435
|
channel="WHATSAPP"
|
|
38432
38436
|
config={
|
|
38433
38437
|
Object {
|
|
@@ -58799,6 +58803,7 @@ new message content.",
|
|
|
58799
58803
|
}
|
|
58800
58804
|
}
|
|
58801
58805
|
beeInstance={null}
|
|
58806
|
+
ccsSendTransaction={null}
|
|
58802
58807
|
channel={null}
|
|
58803
58808
|
content={
|
|
58804
58809
|
Object {
|
|
@@ -61159,6 +61164,7 @@ new message content.",
|
|
|
61159
61164
|
}
|
|
61160
61165
|
}
|
|
61161
61166
|
beeInstance={null}
|
|
61167
|
+
ccsSendTransaction={null}
|
|
61162
61168
|
channel="WHATSAPP"
|
|
61163
61169
|
config={
|
|
61164
61170
|
Object {
|
|
@@ -83947,6 +83953,7 @@ new message content.",
|
|
|
83947
83953
|
}
|
|
83948
83954
|
}
|
|
83949
83955
|
beeInstance={null}
|
|
83956
|
+
ccsSendTransaction={null}
|
|
83950
83957
|
channel={null}
|
|
83951
83958
|
content={
|
|
83952
83959
|
Object {
|
|
@@ -86307,6 +86314,7 @@ new message content.",
|
|
|
86307
86314
|
}
|
|
86308
86315
|
}
|
|
86309
86316
|
beeInstance={null}
|
|
86317
|
+
ccsSendTransaction={null}
|
|
86310
86318
|
channel="WHATSAPP"
|
|
86311
86319
|
config={
|
|
86312
86320
|
Object {
|
|
@@ -104283,6 +104291,7 @@ undefined",
|
|
|
104283
104291
|
}
|
|
104284
104292
|
}
|
|
104285
104293
|
beeInstance={null}
|
|
104294
|
+
ccsSendTransaction={null}
|
|
104286
104295
|
channel={null}
|
|
104287
104296
|
content={
|
|
104288
104297
|
Object {
|
|
@@ -106647,6 +106656,7 @@ new message content.",
|
|
|
106647
106656
|
}
|
|
106648
106657
|
}
|
|
106649
106658
|
beeInstance={null}
|
|
106659
|
+
ccsSendTransaction={null}
|
|
106650
106660
|
channel="WHATSAPP"
|
|
106651
106661
|
config={
|
|
106652
106662
|
Object {
|
|
@@ -123618,6 +123628,7 @@ new message content.",
|
|
|
123618
123628
|
}
|
|
123619
123629
|
}
|
|
123620
123630
|
beeInstance={null}
|
|
123631
|
+
ccsSendTransaction={null}
|
|
123621
123632
|
channel={null}
|
|
123622
123633
|
content={
|
|
123623
123634
|
Object {
|
|
@@ -125978,6 +125989,7 @@ new message content.",
|
|
|
125978
125989
|
}
|
|
125979
125990
|
}
|
|
125980
125991
|
beeInstance={null}
|
|
125992
|
+
ccsSendTransaction={null}
|
|
125981
125993
|
channel="WHATSAPP"
|
|
125982
125994
|
config={
|
|
125983
125995
|
Object {
|
|
@@ -147317,6 +147329,7 @@ new message content.",
|
|
|
147317
147329
|
}
|
|
147318
147330
|
}
|
|
147319
147331
|
beeInstance={null}
|
|
147332
|
+
ccsSendTransaction={null}
|
|
147320
147333
|
channel={null}
|
|
147321
147334
|
content={
|
|
147322
147335
|
Object {
|
|
@@ -149677,6 +149690,7 @@ new message content.",
|
|
|
149677
149690
|
}
|
|
149678
149691
|
}
|
|
149679
149692
|
beeInstance={null}
|
|
149693
|
+
ccsSendTransaction={null}
|
|
149680
149694
|
channel="WHATSAPP"
|
|
149681
149695
|
config={
|
|
149682
149696
|
Object {
|
|
@@ -172064,6 +172078,7 @@ new message content.",
|
|
|
172064
172078
|
}
|
|
172065
172079
|
}
|
|
172066
172080
|
beeInstance={null}
|
|
172081
|
+
ccsSendTransaction={null}
|
|
172067
172082
|
channel={null}
|
|
172068
172083
|
content={
|
|
172069
172084
|
Object {
|
|
@@ -174424,6 +174439,7 @@ new message content.",
|
|
|
174424
174439
|
}
|
|
174425
174440
|
}
|
|
174426
174441
|
beeInstance={null}
|
|
174442
|
+
ccsSendTransaction={null}
|
|
174427
174443
|
channel="WHATSAPP"
|
|
174428
174444
|
config={
|
|
174429
174445
|
Object {
|
|
@@ -199228,6 +199244,7 @@ new message content.",
|
|
|
199228
199244
|
}
|
|
199229
199245
|
}
|
|
199230
199246
|
beeInstance={null}
|
|
199247
|
+
ccsSendTransaction={null}
|
|
199231
199248
|
channel={null}
|
|
199232
199249
|
content={
|
|
199233
199250
|
Object {
|
|
@@ -201588,6 +201605,7 @@ new message content.",
|
|
|
201588
201605
|
}
|
|
201589
201606
|
}
|
|
201590
201607
|
beeInstance={null}
|
|
201608
|
+
ccsSendTransaction={null}
|
|
201591
201609
|
channel="WHATSAPP"
|
|
201592
201610
|
config={
|
|
201593
201611
|
Object {
|
|
@@ -227434,6 +227452,7 @@ new message content.",
|
|
|
227434
227452
|
}
|
|
227435
227453
|
}
|
|
227436
227454
|
beeInstance={null}
|
|
227455
|
+
ccsSendTransaction={null}
|
|
227437
227456
|
channel={null}
|
|
227438
227457
|
content={
|
|
227439
227458
|
Object {
|
|
@@ -229794,6 +229813,7 @@ new message content.",
|
|
|
229794
229813
|
}
|
|
229795
229814
|
}
|
|
229796
229815
|
beeInstance={null}
|
|
229816
|
+
ccsSendTransaction={null}
|
|
229797
229817
|
channel="WHATSAPP"
|
|
229798
229818
|
config={
|
|
229799
229819
|
Object {
|
|
@@ -242981,6 +243001,7 @@ undefined",
|
|
|
242981
243001
|
}
|
|
242982
243002
|
}
|
|
242983
243003
|
beeInstance={null}
|
|
243004
|
+
ccsSendTransaction={null}
|
|
242984
243005
|
channel={null}
|
|
242985
243006
|
content={
|
|
242986
243007
|
Object {
|
|
@@ -245389,6 +245410,7 @@ new message content.",
|
|
|
245389
245410
|
}
|
|
245390
245411
|
}
|
|
245391
245412
|
beeInstance={null}
|
|
245413
|
+
ccsSendTransaction={null}
|
|
245392
245414
|
channel="WHATSAPP"
|
|
245393
245415
|
config={
|
|
245394
245416
|
Object {
|
|
@@ -257655,6 +257677,7 @@ T&C'",
|
|
|
257655
257677
|
}
|
|
257656
257678
|
}
|
|
257657
257679
|
beeInstance={null}
|
|
257680
|
+
ccsSendTransaction={null}
|
|
257658
257681
|
channel={null}
|
|
257659
257682
|
content={
|
|
257660
257683
|
Object {
|
|
@@ -260019,6 +260042,7 @@ new message content.",
|
|
|
260019
260042
|
}
|
|
260020
260043
|
}
|
|
260021
260044
|
beeInstance={null}
|
|
260045
|
+
ccsSendTransaction={null}
|
|
260022
260046
|
channel="WHATSAPP"
|
|
260023
260047
|
config={
|
|
260024
260048
|
Object {
|
|
@@ -274387,6 +274411,7 @@ new message content.",
|
|
|
274387
274411
|
}
|
|
274388
274412
|
}
|
|
274389
274413
|
beeInstance={null}
|
|
274414
|
+
ccsSendTransaction={null}
|
|
274390
274415
|
channel={null}
|
|
274391
274416
|
content={
|
|
274392
274417
|
Object {
|
|
@@ -276747,6 +276772,7 @@ new message content.",
|
|
|
276747
276772
|
}
|
|
276748
276773
|
}
|
|
276749
276774
|
beeInstance={null}
|
|
276775
|
+
ccsSendTransaction={null}
|
|
276750
276776
|
channel="WHATSAPP"
|
|
276751
276777
|
config={
|
|
276752
276778
|
Object {
|
|
@@ -298919,6 +298945,7 @@ undefined",
|
|
|
298919
298945
|
}
|
|
298920
298946
|
}
|
|
298921
298947
|
beeInstance={null}
|
|
298948
|
+
ccsSendTransaction={null}
|
|
298922
298949
|
channel={null}
|
|
298923
298950
|
content={
|
|
298924
298951
|
Object {
|
|
@@ -301327,6 +301354,7 @@ new message content.",
|
|
|
301327
301354
|
}
|
|
301328
301355
|
}
|
|
301329
301356
|
beeInstance={null}
|
|
301357
|
+
ccsSendTransaction={null}
|
|
301330
301358
|
channel="WHATSAPP"
|
|
301331
301359
|
config={
|
|
301332
301360
|
Object {
|
|
@@ -326952,6 +326980,7 @@ undefined",
|
|
|
326952
326980
|
}
|
|
326953
326981
|
}
|
|
326954
326982
|
beeInstance={null}
|
|
326983
|
+
ccsSendTransaction={null}
|
|
326955
326984
|
channel={null}
|
|
326956
326985
|
content={
|
|
326957
326986
|
Object {
|
|
@@ -329356,6 +329385,7 @@ new message content.",
|
|
|
329356
329385
|
}
|
|
329357
329386
|
}
|
|
329358
329387
|
beeInstance={null}
|
|
329388
|
+
ccsSendTransaction={null}
|
|
329359
329389
|
channel="WHATSAPP"
|
|
329360
329390
|
config={
|
|
329361
329391
|
Object {
|
|
@@ -342643,6 +342673,7 @@ new message content.",
|
|
|
342643
342673
|
}
|
|
342644
342674
|
}
|
|
342645
342675
|
beeInstance={null}
|
|
342676
|
+
ccsSendTransaction={null}
|
|
342646
342677
|
channel={null}
|
|
342647
342678
|
content={
|
|
342648
342679
|
Object {
|
|
@@ -345025,6 +345056,7 @@ new message content.",
|
|
|
345025
345056
|
}
|
|
345026
345057
|
}
|
|
345027
345058
|
beeInstance={null}
|
|
345059
|
+
ccsSendTransaction={null}
|
|
345028
345060
|
channel="WHATSAPP"
|
|
345029
345061
|
config={
|
|
345030
345062
|
Object {
|
|
@@ -362031,6 +362063,7 @@ new message content.",
|
|
|
362031
362063
|
}
|
|
362032
362064
|
}
|
|
362033
362065
|
beeInstance={null}
|
|
362066
|
+
ccsSendTransaction={null}
|
|
362034
362067
|
channel={null}
|
|
362035
362068
|
content={
|
|
362036
362069
|
Object {
|
|
@@ -364391,6 +364424,7 @@ new message content.",
|
|
|
364391
364424
|
}
|
|
364392
364425
|
}
|
|
364393
364426
|
beeInstance={null}
|
|
364427
|
+
ccsSendTransaction={null}
|
|
364394
364428
|
channel="WHATSAPP"
|
|
364395
364429
|
config={
|
|
364396
364430
|
Object {
|
|
@@ -385730,6 +385764,7 @@ new message content.",
|
|
|
385730
385764
|
}
|
|
385731
385765
|
}
|
|
385732
385766
|
beeInstance={null}
|
|
385767
|
+
ccsSendTransaction={null}
|
|
385733
385768
|
channel={null}
|
|
385734
385769
|
content={
|
|
385735
385770
|
Object {
|
|
@@ -388090,6 +388125,7 @@ new message content.",
|
|
|
388090
388125
|
}
|
|
388091
388126
|
}
|
|
388092
388127
|
beeInstance={null}
|
|
388128
|
+
ccsSendTransaction={null}
|
|
388093
388129
|
channel="WHATSAPP"
|
|
388094
388130
|
config={
|
|
388095
388131
|
Object {
|
|
@@ -405052,6 +405088,7 @@ new message content.",
|
|
|
405052
405088
|
}
|
|
405053
405089
|
}
|
|
405054
405090
|
beeInstance={null}
|
|
405091
|
+
ccsSendTransaction={null}
|
|
405055
405092
|
channel={null}
|
|
405056
405093
|
content={
|
|
405057
405094
|
Object {
|
|
@@ -407412,6 +407449,7 @@ new message content.",
|
|
|
407412
407449
|
}
|
|
407413
407450
|
}
|
|
407414
407451
|
beeInstance={null}
|
|
407452
|
+
ccsSendTransaction={null}
|
|
407415
407453
|
channel="WHATSAPP"
|
|
407416
407454
|
config={
|
|
407417
407455
|
Object {
|
|
@@ -425260,6 +425298,7 @@ new message content.",
|
|
|
425260
425298
|
}
|
|
425261
425299
|
}
|
|
425262
425300
|
beeInstance={null}
|
|
425301
|
+
ccsSendTransaction={null}
|
|
425263
425302
|
channel={null}
|
|
425264
425303
|
content={
|
|
425265
425304
|
Object {
|
|
@@ -427620,6 +427659,7 @@ new message content.",
|
|
|
427620
427659
|
}
|
|
427621
427660
|
}
|
|
427622
427661
|
beeInstance={null}
|
|
427662
|
+
ccsSendTransaction={null}
|
|
427623
427663
|
channel="WHATSAPP"
|
|
427624
427664
|
config={
|
|
427625
427665
|
Object {
|
|
@@ -446345,6 +446385,7 @@ new message content.",
|
|
|
446345
446385
|
}
|
|
446346
446386
|
}
|
|
446347
446387
|
beeInstance={null}
|
|
446388
|
+
ccsSendTransaction={null}
|
|
446348
446389
|
channel={null}
|
|
446349
446390
|
content={
|
|
446350
446391
|
Object {
|
|
@@ -448705,6 +448746,7 @@ new message content.",
|
|
|
448705
448746
|
}
|
|
448706
448747
|
}
|
|
448707
448748
|
beeInstance={null}
|
|
448749
|
+
ccsSendTransaction={null}
|
|
448708
448750
|
channel="WHATSAPP"
|
|
448709
448751
|
config={
|
|
448710
448752
|
Object {
|
|
@@ -468316,6 +468358,7 @@ new message content.",
|
|
|
468316
468358
|
}
|
|
468317
468359
|
}
|
|
468318
468360
|
beeInstance={null}
|
|
468361
|
+
ccsSendTransaction={null}
|
|
468319
468362
|
channel={null}
|
|
468320
468363
|
content={
|
|
468321
468364
|
Object {
|
|
@@ -470676,6 +470719,7 @@ new message content.",
|
|
|
470676
470719
|
}
|
|
470677
470720
|
}
|
|
470678
470721
|
beeInstance={null}
|
|
470722
|
+
ccsSendTransaction={null}
|
|
470679
470723
|
channel="WHATSAPP"
|
|
470680
470724
|
config={
|
|
470681
470725
|
Object {
|
|
@@ -491190,6 +491234,7 @@ new message content.",
|
|
|
491190
491234
|
}
|
|
491191
491235
|
}
|
|
491192
491236
|
beeInstance={null}
|
|
491237
|
+
ccsSendTransaction={null}
|
|
491193
491238
|
channel={null}
|
|
491194
491239
|
content={
|
|
491195
491240
|
Object {
|
|
@@ -493550,6 +493595,7 @@ new message content.",
|
|
|
493550
493595
|
}
|
|
493551
493596
|
}
|
|
493552
493597
|
beeInstance={null}
|
|
493598
|
+
ccsSendTransaction={null}
|
|
493553
493599
|
channel="WHATSAPP"
|
|
493554
493600
|
config={
|
|
493555
493601
|
Object {
|
|
@@ -514964,6 +515010,7 @@ new message content.",
|
|
|
514964
515010
|
}
|
|
514965
515011
|
}
|
|
514966
515012
|
beeInstance={null}
|
|
515013
|
+
ccsSendTransaction={null}
|
|
514967
515014
|
channel={null}
|
|
514968
515015
|
content={
|
|
514969
515016
|
Object {
|
|
@@ -517324,6 +517371,7 @@ new message content.",
|
|
|
517324
517371
|
}
|
|
517325
517372
|
}
|
|
517326
517373
|
beeInstance={null}
|
|
517374
|
+
ccsSendTransaction={null}
|
|
517327
517375
|
channel="WHATSAPP"
|
|
517328
517376
|
config={
|
|
517329
517377
|
Object {
|
|
@@ -539629,6 +539677,7 @@ new message content.",
|
|
|
539629
539677
|
}
|
|
539630
539678
|
}
|
|
539631
539679
|
beeInstance={null}
|
|
539680
|
+
ccsSendTransaction={null}
|
|
539632
539681
|
channel={null}
|
|
539633
539682
|
content={
|
|
539634
539683
|
Object {
|
|
@@ -541989,6 +542038,7 @@ new message content.",
|
|
|
541989
542038
|
}
|
|
541990
542039
|
}
|
|
541991
542040
|
beeInstance={null}
|
|
542041
|
+
ccsSendTransaction={null}
|
|
541992
542042
|
channel="WHATSAPP"
|
|
541993
542043
|
config={
|
|
541994
542044
|
Object {
|
|
@@ -565185,6 +565235,7 @@ new message content.",
|
|
|
565185
565235
|
}
|
|
565186
565236
|
}
|
|
565187
565237
|
beeInstance={null}
|
|
565238
|
+
ccsSendTransaction={null}
|
|
565188
565239
|
channel={null}
|
|
565189
565240
|
content={
|
|
565190
565241
|
Object {
|
|
@@ -567545,6 +567596,7 @@ new message content.",
|
|
|
567545
567596
|
}
|
|
567546
567597
|
}
|
|
567547
567598
|
beeInstance={null}
|
|
567599
|
+
ccsSendTransaction={null}
|
|
567548
567600
|
channel="WHATSAPP"
|
|
567549
567601
|
config={
|
|
567550
567602
|
Object {
|
|
@@ -591607,6 +591659,7 @@ new message content.",
|
|
|
591607
591659
|
}
|
|
591608
591660
|
}
|
|
591609
591661
|
beeInstance={null}
|
|
591662
|
+
ccsSendTransaction={null}
|
|
591610
591663
|
channel={null}
|
|
591611
591664
|
content={
|
|
591612
591665
|
Object {
|
|
@@ -593967,6 +594020,7 @@ new message content.",
|
|
|
593967
594020
|
}
|
|
593968
594021
|
}
|
|
593969
594022
|
beeInstance={null}
|
|
594023
|
+
ccsSendTransaction={null}
|
|
593970
594024
|
channel="WHATSAPP"
|
|
593971
594025
|
config={
|
|
593972
594026
|
Object {
|
|
@@ -610929,6 +610983,7 @@ new message content.",
|
|
|
610929
610983
|
}
|
|
610930
610984
|
}
|
|
610931
610985
|
beeInstance={null}
|
|
610986
|
+
ccsSendTransaction={null}
|
|
610932
610987
|
channel={null}
|
|
610933
610988
|
content={
|
|
610934
610989
|
Object {
|
|
@@ -613289,6 +613344,7 @@ new message content.",
|
|
|
613289
613344
|
}
|
|
613290
613345
|
}
|
|
613291
613346
|
beeInstance={null}
|
|
613347
|
+
ccsSendTransaction={null}
|
|
613292
613348
|
channel="WHATSAPP"
|
|
613293
613349
|
config={
|
|
613294
613350
|
Object {
|
|
@@ -630251,6 +630307,7 @@ new message content.",
|
|
|
630251
630307
|
}
|
|
630252
630308
|
}
|
|
630253
630309
|
beeInstance={null}
|
|
630310
|
+
ccsSendTransaction={null}
|
|
630254
630311
|
channel={null}
|
|
630255
630312
|
content={
|
|
630256
630313
|
Object {
|
|
@@ -632611,6 +632668,7 @@ new message content.",
|
|
|
632611
632668
|
}
|
|
632612
632669
|
}
|
|
632613
632670
|
beeInstance={null}
|
|
632671
|
+
ccsSendTransaction={null}
|
|
632614
632672
|
channel="WHATSAPP"
|
|
632615
632673
|
config={
|
|
632616
632674
|
Object {
|
|
@@ -649573,6 +649631,7 @@ new message content.",
|
|
|
649573
649631
|
}
|
|
649574
649632
|
}
|
|
649575
649633
|
beeInstance={null}
|
|
649634
|
+
ccsSendTransaction={null}
|
|
649576
649635
|
channel={null}
|
|
649577
649636
|
content={
|
|
649578
649637
|
Object {
|
|
@@ -651933,6 +651992,7 @@ new message content.",
|
|
|
651933
651992
|
}
|
|
651934
651993
|
}
|
|
651935
651994
|
beeInstance={null}
|
|
651995
|
+
ccsSendTransaction={null}
|
|
651936
651996
|
channel="WHATSAPP"
|
|
651937
651997
|
config={
|
|
651938
651998
|
Object {
|
|
@@ -668895,6 +668955,7 @@ new message content.",
|
|
|
668895
668955
|
}
|
|
668896
668956
|
}
|
|
668897
668957
|
beeInstance={null}
|
|
668958
|
+
ccsSendTransaction={null}
|
|
668898
668959
|
channel={null}
|
|
668899
668960
|
content={
|
|
668900
668961
|
Object {
|
|
@@ -671255,6 +671316,7 @@ new message content.",
|
|
|
671255
671316
|
}
|
|
671256
671317
|
}
|
|
671257
671318
|
beeInstance={null}
|
|
671319
|
+
ccsSendTransaction={null}
|
|
671258
671320
|
channel="WHATSAPP"
|
|
671259
671321
|
config={
|
|
671260
671322
|
Object {
|
|
@@ -690606,6 +690668,7 @@ new message content.",
|
|
|
690606
690668
|
}
|
|
690607
690669
|
}
|
|
690608
690670
|
beeInstance={null}
|
|
690671
|
+
ccsSendTransaction={null}
|
|
690609
690672
|
channel={null}
|
|
690610
690673
|
content={
|
|
690611
690674
|
Object {
|
|
@@ -692966,6 +693029,7 @@ new message content.",
|
|
|
692966
693029
|
}
|
|
692967
693030
|
}
|
|
692968
693031
|
beeInstance={null}
|
|
693032
|
+
ccsSendTransaction={null}
|
|
692969
693033
|
channel="WHATSAPP"
|
|
692970
693034
|
config={
|
|
692971
693035
|
Object {
|
|
@@ -712425,6 +712489,7 @@ new message content.",
|
|
|
712425
712489
|
}
|
|
712426
712490
|
}
|
|
712427
712491
|
beeInstance={null}
|
|
712492
|
+
ccsSendTransaction={null}
|
|
712428
712493
|
channel={null}
|
|
712429
712494
|
content={
|
|
712430
712495
|
Object {
|
|
@@ -714785,6 +714850,7 @@ new message content.",
|
|
|
714785
714850
|
}
|
|
714786
714851
|
}
|
|
714787
714852
|
beeInstance={null}
|
|
714853
|
+
ccsSendTransaction={null}
|
|
714788
714854
|
channel="WHATSAPP"
|
|
714789
714855
|
config={
|
|
714790
714856
|
Object {
|
|
@@ -734244,6 +734310,7 @@ new message content.",
|
|
|
734244
734310
|
}
|
|
734245
734311
|
}
|
|
734246
734312
|
beeInstance={null}
|
|
734313
|
+
ccsSendTransaction={null}
|
|
734247
734314
|
channel={null}
|
|
734248
734315
|
content={
|
|
734249
734316
|
Object {
|
|
@@ -736604,6 +736671,7 @@ new message content.",
|
|
|
736604
736671
|
}
|
|
736605
736672
|
}
|
|
736606
736673
|
beeInstance={null}
|
|
736674
|
+
ccsSendTransaction={null}
|
|
736607
736675
|
channel="WHATSAPP"
|
|
736608
736676
|
config={
|
|
736609
736677
|
Object {
|