@capillarytech/creatives-library 8.0.318 → 8.0.320
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/unified.js +15 -0
- package/package.json +1 -1
- package/services/api.js +6 -0
- package/services/tests/api.test.js +7 -0
- package/utils/common.js +6 -1
- package/utils/templateVarUtils.js +172 -0
- package/utils/tests/templateVarUtils.test.js +160 -0
- package/v2Components/CapTagList/index.js +10 -0
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +70 -49
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +8 -2
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +207 -21
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +16 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +85 -10
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +30 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +79 -11
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +11 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +20 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +133 -4
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +12 -0
- package/v2Components/CommonTestAndPreview/constants.js +38 -0
- package/v2Components/CommonTestAndPreview/index.js +693 -155
- package/v2Components/CommonTestAndPreview/messages.js +41 -3
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +59 -0
- package/v2Components/CommonTestAndPreview/sagas.js +15 -6
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +352 -0
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +269 -1
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +118 -5
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +341 -0
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +25 -4
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +199 -1
- package/v2Components/CommonTestAndPreview/tests/index.test.js +132 -4
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +67 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +2 -2
- package/v2Components/FormBuilder/index.js +7 -1
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +87 -0
- package/v2Components/SmsFallback/constants.js +73 -0
- package/v2Components/SmsFallback/index.js +956 -0
- package/v2Components/SmsFallback/index.scss +265 -0
- package/v2Components/SmsFallback/messages.js +78 -0
- package/v2Components/SmsFallback/smsFallbackUtils.js +107 -0
- package/v2Components/SmsFallback/tests/SmsFallbackLocalSelector.test.js +50 -0
- package/v2Components/SmsFallback/tests/rcsSmsFallback.acceptance.test.js +147 -0
- package/v2Components/SmsFallback/tests/smsFallbackHandlers.test.js +304 -0
- package/v2Components/SmsFallback/tests/smsFallbackUi.test.js +197 -0
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +261 -0
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +422 -0
- package/v2Components/SmsFallback/useLocalTemplateList.js +92 -0
- package/v2Components/TestAndPreviewSlidebox/index.js +8 -1
- package/v2Components/TestAndPreviewSlidebox/sagas.js +11 -4
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +3 -1
- package/v2Components/VarSegmentMessageEditor/constants.js +2 -0
- package/v2Components/VarSegmentMessageEditor/index.js +125 -0
- package/v2Components/VarSegmentMessageEditor/index.scss +46 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +291 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.scss +25 -0
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +255 -0
- package/v2Containers/CommunicationFlow/constants.js +200 -0
- package/v2Containers/CommunicationFlow/index.js +102 -0
- package/v2Containers/CommunicationFlow/messages.js +346 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.js +522 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/ChannelSelectionStep.scss +170 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/Tests/ChannelSelectionStep.test.js +796 -0
- package/v2Containers/CommunicationFlow/steps/ChannelSelectionStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/CommunicationStrategyStep.js +95 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/Tests/CommunicationStrategyStep.test.js +133 -0
- package/v2Containers/CommunicationFlow/steps/CommunicationStrategyStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.js +289 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/DeliverySettingsSection.scss +70 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/SenderDetails.js +319 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/SenderDetails.scss +69 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/DeliverySettingsSection.test.js +616 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/SenderDetails.test.js +577 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/Tests/deliverySettingsConfig.test.js +1111 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/deliverySettingsConfig.js +696 -0
- package/v2Containers/CommunicationFlow/steps/DeliverySettingsStep/index.js +7 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/DynamicControlsStep.js +102 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/DynamicControlsStep.scss +36 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/Tests/DynamicControlsStep.test.js +91 -0
- package/v2Containers/CommunicationFlow/steps/DynamicControlsStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/MessageTypeStep.js +86 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/Tests/MessageTypeStep.test.js +100 -0
- package/v2Containers/CommunicationFlow/steps/MessageTypeStep/index.js +5 -0
- package/v2Containers/CommunicationFlow/utils/getEnabledSteps.js +30 -0
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +43 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +36 -4
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +10 -1
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +29 -4
- package/v2Containers/CreativesContainer/constants.js +12 -0
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +67 -0
- package/v2Containers/CreativesContainer/index.js +289 -99
- package/v2Containers/CreativesContainer/index.scss +51 -1
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +90 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +104 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +110 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +8 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +363 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +20 -10
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +258 -0
- package/v2Containers/CreativesContainer/tests/index.test.js +71 -9
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +125 -0
- package/v2Containers/Rcs/constants.js +32 -1
- package/v2Containers/Rcs/index.js +950 -873
- package/v2Containers/Rcs/index.scss +85 -6
- package/v2Containers/Rcs/messages.js +10 -1
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +205 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +40834 -1963
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +0 -5
- package/v2Containers/Rcs/tests/index.test.js +41 -38
- package/v2Containers/Rcs/tests/mockData.js +38 -0
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +251 -0
- package/v2Containers/Rcs/tests/utils.test.js +379 -1
- package/v2Containers/Rcs/utils.js +358 -10
- package/v2Containers/Sms/Create/index.js +81 -36
- package/v2Containers/Sms/smsFormDataHelpers.js +67 -0
- package/v2Containers/Sms/tests/smsFormDataHelpers.test.js +253 -0
- package/v2Containers/SmsTrai/Create/index.js +9 -4
- package/v2Containers/SmsTrai/Edit/constants.js +2 -0
- package/v2Containers/SmsTrai/Edit/index.js +609 -128
- package/v2Containers/SmsTrai/Edit/index.scss +121 -0
- package/v2Containers/SmsTrai/Edit/messages.js +9 -4
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +4327 -2374
- package/v2Containers/SmsWrapper/index.js +37 -8
- package/v2Containers/TagList/index.js +6 -0
- package/v2Containers/Templates/TemplatesActionBar.js +101 -0
- package/v2Containers/Templates/_templates.scss +61 -2
- package/v2Containers/Templates/actions.js +11 -0
- package/v2Containers/Templates/constants.js +2 -0
- package/v2Containers/Templates/index.js +90 -40
- package/v2Containers/Templates/sagas.js +57 -12
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +120 -0
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1043 -1079
- package/v2Containers/Templates/tests/sagas.test.js +193 -12
- package/v2Containers/Templates/tests/smsTemplatesListApi.test.js +180 -0
- package/v2Containers/Templates/utils/smsTemplatesListApi.js +79 -0
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +72 -1
- package/v2Containers/TemplatesV2/index.js +86 -23
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +131 -0
- package/v2Containers/Whatsapp/index.js +3 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +578 -34
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CommunicationFlow Messages (i18n)
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
const prefix = 'creatives.v2Containers.CommunicationFlow';
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
// Step titles
|
|
9
|
+
stepMessageType: {
|
|
10
|
+
id: `${prefix}.stepMessageType`,
|
|
11
|
+
defaultMessage: 'Message Type',
|
|
12
|
+
},
|
|
13
|
+
stepCommunicationStrategy: {
|
|
14
|
+
id: `${prefix}.stepCommunicationStrategy`,
|
|
15
|
+
defaultMessage: 'Communication Strategy',
|
|
16
|
+
},
|
|
17
|
+
stepChannelSelection: {
|
|
18
|
+
id: `${prefix}.stepChannelSelection`,
|
|
19
|
+
defaultMessage: 'Channel Selection',
|
|
20
|
+
},
|
|
21
|
+
stepIncentives: {
|
|
22
|
+
id: `${prefix}.stepIncentives`,
|
|
23
|
+
defaultMessage: 'Incentives',
|
|
24
|
+
},
|
|
25
|
+
stepDeliverySettings: {
|
|
26
|
+
id: `${prefix}.stepDeliverySettings`,
|
|
27
|
+
defaultMessage: 'Delivery Settings',
|
|
28
|
+
},
|
|
29
|
+
stepOtherSettings: {
|
|
30
|
+
id: `${prefix}.stepOtherSettings`,
|
|
31
|
+
defaultMessage: 'Other Settings',
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
// Validation messages
|
|
35
|
+
messageTypeRequired: {
|
|
36
|
+
id: `${prefix}.messageTypeRequired`,
|
|
37
|
+
defaultMessage: 'Message type is required',
|
|
38
|
+
},
|
|
39
|
+
communicationStrategyRequired: {
|
|
40
|
+
id: `${prefix}.communicationStrategyRequired`,
|
|
41
|
+
defaultMessage: 'Communication strategy is required',
|
|
42
|
+
},
|
|
43
|
+
channelSelectionRequired: {
|
|
44
|
+
id: `${prefix}.channelSelectionRequired`,
|
|
45
|
+
defaultMessage: 'Channel selection is required',
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
// Action buttons
|
|
49
|
+
next: {
|
|
50
|
+
id: `${prefix}.next`,
|
|
51
|
+
defaultMessage: 'Next',
|
|
52
|
+
},
|
|
53
|
+
back: {
|
|
54
|
+
id: `${prefix}.back`,
|
|
55
|
+
defaultMessage: 'Back',
|
|
56
|
+
},
|
|
57
|
+
cancel: {
|
|
58
|
+
id: `${prefix}.cancel`,
|
|
59
|
+
defaultMessage: 'Cancel',
|
|
60
|
+
},
|
|
61
|
+
save: {
|
|
62
|
+
id: `${prefix}.save`,
|
|
63
|
+
defaultMessage: 'Save',
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
// Slidebox header
|
|
67
|
+
addMessage: {
|
|
68
|
+
id: `${prefix}.addMessage`,
|
|
69
|
+
defaultMessage: 'Add message',
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
// Step prompts
|
|
73
|
+
messageTypeHeading: {
|
|
74
|
+
id: `${prefix}.messageTypeHeading`,
|
|
75
|
+
defaultMessage: 'Message type',
|
|
76
|
+
},
|
|
77
|
+
communicationStrategyHeading: {
|
|
78
|
+
id: `${prefix}.communicationStrategyHeading`,
|
|
79
|
+
defaultMessage: 'Communication strategy',
|
|
80
|
+
},
|
|
81
|
+
communicationStrategyPlaceholder: {
|
|
82
|
+
id: `${prefix}.communicationStrategyPlaceholder`,
|
|
83
|
+
defaultMessage: 'Select strategy',
|
|
84
|
+
},
|
|
85
|
+
promotional: {
|
|
86
|
+
id: `${prefix}.promotional`,
|
|
87
|
+
defaultMessage: 'Promotional',
|
|
88
|
+
},
|
|
89
|
+
transactional: {
|
|
90
|
+
id: `${prefix}.transactional`,
|
|
91
|
+
defaultMessage: 'Transactional',
|
|
92
|
+
},
|
|
93
|
+
singleTemplate: {
|
|
94
|
+
id: `${prefix}.singleTemplate`,
|
|
95
|
+
defaultMessage: 'Single template',
|
|
96
|
+
},
|
|
97
|
+
channelPriority: {
|
|
98
|
+
id: `${prefix}.channelPriority`,
|
|
99
|
+
defaultMessage: 'Channel priority',
|
|
100
|
+
},
|
|
101
|
+
abTest: {
|
|
102
|
+
id: `${prefix}.abTest`,
|
|
103
|
+
defaultMessage: 'A/B Test',
|
|
104
|
+
},
|
|
105
|
+
singleChannel: {
|
|
106
|
+
id: `${prefix}.singleChannel`,
|
|
107
|
+
defaultMessage: 'Single channel',
|
|
108
|
+
},
|
|
109
|
+
multipleChannel: {
|
|
110
|
+
id: `${prefix}.multipleChannel`,
|
|
111
|
+
defaultMessage: 'Multiple channel',
|
|
112
|
+
},
|
|
113
|
+
incentivesPrompt: {
|
|
114
|
+
id: `${prefix}.incentivesPrompt`,
|
|
115
|
+
defaultMessage: 'Incentives',
|
|
116
|
+
},
|
|
117
|
+
incentivesPlaceholder: {
|
|
118
|
+
id: `${prefix}.incentivesPlaceholder`,
|
|
119
|
+
defaultMessage: 'Select incentives',
|
|
120
|
+
},
|
|
121
|
+
deliverySettingsPrompt: {
|
|
122
|
+
id: `${prefix}.deliverySettingsPrompt`,
|
|
123
|
+
defaultMessage: 'Delivery settings',
|
|
124
|
+
},
|
|
125
|
+
deliverySettingsPlaceholder: {
|
|
126
|
+
id: `${prefix}.deliverySettingsPlaceholder`,
|
|
127
|
+
defaultMessage: 'Select delivery settings',
|
|
128
|
+
},
|
|
129
|
+
otherSettingsPrompt: {
|
|
130
|
+
id: `${prefix}.otherSettingsPrompt`,
|
|
131
|
+
defaultMessage: 'Other settings',
|
|
132
|
+
},
|
|
133
|
+
otherSettingsPlaceholder: {
|
|
134
|
+
id: `${prefix}.otherSettingsPlaceholder`,
|
|
135
|
+
defaultMessage: 'Select other settings',
|
|
136
|
+
},
|
|
137
|
+
addMessageContentAndIncentive: {
|
|
138
|
+
id: `${prefix}.addMessageContentAndIncentive`,
|
|
139
|
+
defaultMessage: 'Add message content and incentive',
|
|
140
|
+
},
|
|
141
|
+
contentTemplate: {
|
|
142
|
+
id: `${prefix}.contentTemplate`,
|
|
143
|
+
defaultMessage: 'Content template',
|
|
144
|
+
},
|
|
145
|
+
addedContent: {
|
|
146
|
+
id: `${prefix}.addedContent`,
|
|
147
|
+
defaultMessage: 'Added content',
|
|
148
|
+
},
|
|
149
|
+
addContentTemplate: {
|
|
150
|
+
id: `${prefix}.addContentTemplate`,
|
|
151
|
+
defaultMessage: 'Content template',
|
|
152
|
+
},
|
|
153
|
+
edit: {
|
|
154
|
+
id: `${prefix}.edit`,
|
|
155
|
+
defaultMessage: 'Edit',
|
|
156
|
+
},
|
|
157
|
+
delete: {
|
|
158
|
+
id: `${prefix}.delete`,
|
|
159
|
+
defaultMessage: 'Delete',
|
|
160
|
+
},
|
|
161
|
+
previewAndTest: {
|
|
162
|
+
id: `${prefix}.previewAndTest`,
|
|
163
|
+
defaultMessage: 'Preview and Test',
|
|
164
|
+
},
|
|
165
|
+
remove: {
|
|
166
|
+
id: `${prefix}.remove`,
|
|
167
|
+
defaultMessage: 'Remove',
|
|
168
|
+
},
|
|
169
|
+
senderDetails: {
|
|
170
|
+
id: `${prefix}.senderDetails`,
|
|
171
|
+
defaultMessage: 'Sender details',
|
|
172
|
+
},
|
|
173
|
+
saveChanges: {
|
|
174
|
+
id: `${prefix}.saveChanges`,
|
|
175
|
+
defaultMessage: 'Save changes',
|
|
176
|
+
},
|
|
177
|
+
senderIdLabel: {
|
|
178
|
+
id: `${prefix}.senderIdLabel`,
|
|
179
|
+
defaultMessage: 'Sender ID',
|
|
180
|
+
},
|
|
181
|
+
senderNumberLabel: {
|
|
182
|
+
id: `${prefix}.senderNumberLabel`,
|
|
183
|
+
defaultMessage: 'Sender number',
|
|
184
|
+
},
|
|
185
|
+
viberAccountLabel: {
|
|
186
|
+
id: `${prefix}.viberAccountLabel`,
|
|
187
|
+
defaultMessage: 'Viber account',
|
|
188
|
+
},
|
|
189
|
+
accountLabel: {
|
|
190
|
+
id: `${prefix}.accountLabel`,
|
|
191
|
+
defaultMessage: 'Account',
|
|
192
|
+
},
|
|
193
|
+
smsDomain: {
|
|
194
|
+
id: `${prefix}.smsDomain`,
|
|
195
|
+
defaultMessage: 'SMS Domain',
|
|
196
|
+
},
|
|
197
|
+
emailDomainLabel: {
|
|
198
|
+
id: `${prefix}.emailDomainLabel`,
|
|
199
|
+
defaultMessage: 'Email Domain',
|
|
200
|
+
},
|
|
201
|
+
emailSenderName: {
|
|
202
|
+
id: `${prefix}.emailSenderName`,
|
|
203
|
+
defaultMessage: 'Sender name',
|
|
204
|
+
},
|
|
205
|
+
emailReplyToId: {
|
|
206
|
+
id: `${prefix}.emailReplyToId`,
|
|
207
|
+
defaultMessage: 'Reply-to ID',
|
|
208
|
+
},
|
|
209
|
+
reset: {
|
|
210
|
+
id: `${prefix}.reset`,
|
|
211
|
+
defaultMessage: 'Reset',
|
|
212
|
+
},
|
|
213
|
+
select: {
|
|
214
|
+
id: `${prefix}.select`,
|
|
215
|
+
defaultMessage: 'Select',
|
|
216
|
+
},
|
|
217
|
+
addIncentive: {
|
|
218
|
+
id: `${prefix}.addIncentive`,
|
|
219
|
+
defaultMessage: 'Add incentive',
|
|
220
|
+
},
|
|
221
|
+
optional: {
|
|
222
|
+
id: `${prefix}.optional`,
|
|
223
|
+
defaultMessage: '(Optional)',
|
|
224
|
+
},
|
|
225
|
+
sms: {
|
|
226
|
+
id: `${prefix}.sms`,
|
|
227
|
+
defaultMessage: 'SMS',
|
|
228
|
+
},
|
|
229
|
+
email: {
|
|
230
|
+
id: `${prefix}.email`,
|
|
231
|
+
defaultMessage: 'Email',
|
|
232
|
+
},
|
|
233
|
+
mobilePush: {
|
|
234
|
+
id: `${prefix}.mobilePush`,
|
|
235
|
+
defaultMessage: 'Mobile push',
|
|
236
|
+
},
|
|
237
|
+
inApp: {
|
|
238
|
+
id: `${prefix}.inApp`,
|
|
239
|
+
defaultMessage: 'In-app',
|
|
240
|
+
},
|
|
241
|
+
whatsApp: {
|
|
242
|
+
id: `${prefix}.whatsApp`,
|
|
243
|
+
defaultMessage: 'WhatsApp',
|
|
244
|
+
},
|
|
245
|
+
weChat: {
|
|
246
|
+
id: `${prefix}.weChat`,
|
|
247
|
+
defaultMessage: 'WeChat',
|
|
248
|
+
},
|
|
249
|
+
line: {
|
|
250
|
+
id: `${prefix}.line`,
|
|
251
|
+
defaultMessage: 'Line',
|
|
252
|
+
},
|
|
253
|
+
viber: {
|
|
254
|
+
id: `${prefix}.viber`,
|
|
255
|
+
defaultMessage: 'Viber',
|
|
256
|
+
},
|
|
257
|
+
facebook: {
|
|
258
|
+
id: `${prefix}.facebook`,
|
|
259
|
+
defaultMessage: 'Facebook',
|
|
260
|
+
},
|
|
261
|
+
rcs: {
|
|
262
|
+
id: `${prefix}.rcs`,
|
|
263
|
+
defaultMessage: 'RCS',
|
|
264
|
+
},
|
|
265
|
+
zalo: {
|
|
266
|
+
id: `${prefix}.zalo`,
|
|
267
|
+
defaultMessage: 'Zalo',
|
|
268
|
+
},
|
|
269
|
+
callTask: {
|
|
270
|
+
id: `${prefix}.callTask`,
|
|
271
|
+
defaultMessage: 'Call task',
|
|
272
|
+
},
|
|
273
|
+
webPush: {
|
|
274
|
+
id: `${prefix}.webPush`,
|
|
275
|
+
defaultMessage: 'Web push',
|
|
276
|
+
},
|
|
277
|
+
incentives: {
|
|
278
|
+
id: `${prefix}.incentives`,
|
|
279
|
+
defaultMessage: 'Incentives',
|
|
280
|
+
},
|
|
281
|
+
coupons: {
|
|
282
|
+
id: `${prefix}.coupons`,
|
|
283
|
+
defaultMessage: 'Coupons',
|
|
284
|
+
},
|
|
285
|
+
points: {
|
|
286
|
+
id: `${prefix}.points`,
|
|
287
|
+
defaultMessage: 'Points',
|
|
288
|
+
},
|
|
289
|
+
promotions: {
|
|
290
|
+
id: `${prefix}.promotions`,
|
|
291
|
+
defaultMessage: 'Promotions',
|
|
292
|
+
},
|
|
293
|
+
giftVouchers: {
|
|
294
|
+
id: `${prefix}.giftVouchers`,
|
|
295
|
+
defaultMessage: 'Gift vouchers',
|
|
296
|
+
},
|
|
297
|
+
badges: {
|
|
298
|
+
id: `${prefix}.badges`,
|
|
299
|
+
defaultMessage: 'Badges',
|
|
300
|
+
},
|
|
301
|
+
dynamicControlsTitle: {
|
|
302
|
+
id: `${prefix}.dynamicControlsTitle`,
|
|
303
|
+
defaultMessage: 'Other controls',
|
|
304
|
+
},
|
|
305
|
+
whatsappBusinessAccount: {
|
|
306
|
+
id: `${prefix}.whatsappBusinessAccount`,
|
|
307
|
+
defaultMessage: 'WhatsApp Business account',
|
|
308
|
+
},
|
|
309
|
+
whatsappAccountTooltip: {
|
|
310
|
+
id: `${prefix}.whatsappAccountTooltip`,
|
|
311
|
+
defaultMessage: 'Message template selected belongs to this account',
|
|
312
|
+
},
|
|
313
|
+
rcsAccountLabel: {
|
|
314
|
+
id: `${prefix}.rcsAccountLabel`,
|
|
315
|
+
defaultMessage: 'RCS account',
|
|
316
|
+
},
|
|
317
|
+
// Dynamic Controls toggle labels and descriptions
|
|
318
|
+
sendToControlCustomers: {
|
|
319
|
+
id: `${prefix}.sendToControlCustomers`,
|
|
320
|
+
defaultMessage: 'Send to control customers',
|
|
321
|
+
},
|
|
322
|
+
sendToBrandPocs: {
|
|
323
|
+
id: `${prefix}.sendToBrandPocs`,
|
|
324
|
+
defaultMessage: 'Send to brand POCs',
|
|
325
|
+
},
|
|
326
|
+
useTinyUrl: {
|
|
327
|
+
id: `${prefix}.useTinyUrl`,
|
|
328
|
+
defaultMessage: 'Use tiny URL',
|
|
329
|
+
},
|
|
330
|
+
overrideDailyLimit: {
|
|
331
|
+
id: `${prefix}.overrideDailyLimit`,
|
|
332
|
+
defaultMessage: 'Override daily communication limit',
|
|
333
|
+
},
|
|
334
|
+
overrideDailyLimitDesc: {
|
|
335
|
+
id: `${prefix}.overrideDailyLimitDesc`,
|
|
336
|
+
defaultMessage: "Customers will still receive this message even if they've already reached their daily message limit",
|
|
337
|
+
},
|
|
338
|
+
domainGatewayError: {
|
|
339
|
+
id: `${prefix}.domainGatewayError`,
|
|
340
|
+
defaultMessage: 'Domain gateway id is not found for the selected channel. Please contact the gateway team to register them with Capillary.',
|
|
341
|
+
},
|
|
342
|
+
senderNotConfiguredError: {
|
|
343
|
+
id: `${prefix}.senderNotConfiguredError`,
|
|
344
|
+
defaultMessage: 'Selected domain gateway id is not correct. Please change the domain id or contact the gateway team to register them with Capillary.',
|
|
345
|
+
},
|
|
346
|
+
};
|