@capillarytech/creatives-library 8.0.255-alpha.4 → 8.0.255

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/constants/unified.js +2 -2
  4. package/initialReducer.js +2 -0
  5. package/package.json +1 -1
  6. package/services/api.js +10 -5
  7. package/services/tests/api.test.js +34 -0
  8. package/translations/en.json +3 -4
  9. package/utils/common.js +5 -6
  10. package/utils/commonUtils.js +28 -5
  11. package/utils/tests/commonUtil.test.js +224 -0
  12. package/utils/tests/transformerUtils.test.js +0 -297
  13. package/utils/transformTemplateConfig.js +0 -10
  14. package/utils/transformerUtils.js +0 -40
  15. package/v2Components/CapDeviceContent/index.js +61 -56
  16. package/v2Components/CapImageUpload/constants.js +0 -2
  17. package/v2Components/CapImageUpload/index.js +16 -65
  18. package/v2Components/CapImageUpload/index.scss +1 -4
  19. package/v2Components/CapImageUpload/messages.js +1 -5
  20. package/v2Components/CapTagList/index.js +6 -1
  21. package/v2Components/CapTagListWithInput/index.js +5 -1
  22. package/v2Components/CapTagListWithInput/messages.js +1 -1
  23. package/v2Components/CapWhatsappCTA/tests/index.test.js +5 -0
  24. package/v2Components/ErrorInfoNote/constants.js +1 -0
  25. package/v2Components/ErrorInfoNote/index.js +457 -72
  26. package/v2Components/ErrorInfoNote/messages.js +36 -6
  27. package/v2Components/ErrorInfoNote/style.scss +282 -6
  28. package/v2Components/FormBuilder/tests/index.test.js +13 -4
  29. package/v2Components/HtmlEditor/HTMLEditor.js +547 -94
  30. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +874 -0
  31. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +1441 -133
  32. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +27 -16
  33. package/v2Components/HtmlEditor/_htmlEditor.scss +108 -45
  34. package/v2Components/HtmlEditor/_index.lazy.scss +0 -1
  35. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +23 -102
  36. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +148 -140
  37. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +2 -1
  38. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  39. package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +9 -0
  40. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +4 -4
  41. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +22 -0
  42. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +4 -7
  43. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +35 -45
  44. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +1 -3
  45. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  46. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +7 -6
  47. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +3 -6
  48. package/v2Components/HtmlEditor/components/PreviewPane/index.js +22 -43
  49. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  50. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/_validationErrorDisplay.scss +1 -0
  51. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +49 -31
  52. package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +50 -34
  53. package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +6 -0
  54. package/v2Components/HtmlEditor/components/ValidationPanel/index.js +70 -41
  55. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +255 -0
  56. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +364 -0
  57. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +51 -0
  58. package/v2Components/HtmlEditor/constants.js +42 -20
  59. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +373 -16
  60. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +103 -0
  61. package/v2Components/HtmlEditor/hooks/useEditorContent.js +5 -2
  62. package/v2Components/HtmlEditor/hooks/useInAppContent.js +88 -146
  63. package/v2Components/HtmlEditor/hooks/useValidation.js +189 -53
  64. package/v2Components/HtmlEditor/index.js +1 -1
  65. package/v2Components/HtmlEditor/messages.js +92 -94
  66. package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +94 -45
  67. package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +134 -0
  68. package/v2Components/HtmlEditor/utils/contentSanitizer.js +40 -41
  69. package/v2Components/HtmlEditor/utils/htmlValidator.js +71 -72
  70. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +134 -102
  71. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +23 -25
  72. package/v2Components/HtmlEditor/utils/validationAdapter.js +66 -41
  73. package/v2Components/HtmlEditor/utils/validationConstants.js +40 -0
  74. package/v2Components/MobilePushPreviewV2/index.js +32 -7
  75. package/v2Components/TemplatePreview/_templatePreview.scss +55 -24
  76. package/v2Components/TemplatePreview/index.js +47 -32
  77. package/v2Components/TemplatePreview/messages.js +4 -0
  78. package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +1 -0
  79. package/v2Containers/App/constants.js +0 -5
  80. package/v2Containers/BeeEditor/index.js +172 -90
  81. package/v2Containers/BeePopupEditor/_beePopupEditor.scss +14 -0
  82. package/v2Containers/BeePopupEditor/constants.js +10 -0
  83. package/v2Containers/BeePopupEditor/index.js +194 -0
  84. package/v2Containers/BeePopupEditor/tests/index.test.js +627 -0
  85. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
  86. package/v2Containers/CreativesContainer/SlideBoxContent.js +129 -107
  87. package/v2Containers/CreativesContainer/SlideBoxFooter.js +163 -13
  88. package/v2Containers/CreativesContainer/SlideBoxHeader.js +2 -2
  89. package/v2Containers/CreativesContainer/constants.js +1 -3
  90. package/v2Containers/CreativesContainer/index.js +239 -214
  91. package/v2Containers/CreativesContainer/messages.js +8 -4
  92. package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +0 -210
  93. package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +11 -2
  94. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +38 -354
  95. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +106 -0
  96. package/v2Containers/Email/actions.js +7 -0
  97. package/v2Containers/Email/constants.js +5 -1
  98. package/v2Containers/Email/index.js +234 -29
  99. package/v2Containers/Email/messages.js +32 -0
  100. package/v2Containers/Email/reducer.js +12 -1
  101. package/v2Containers/Email/sagas.js +61 -7
  102. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +2 -0
  103. package/v2Containers/Email/tests/reducer.test.js +46 -0
  104. package/v2Containers/Email/tests/sagas.test.js +320 -29
  105. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +1285 -0
  106. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +211 -21
  107. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +40 -74
  108. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +1880 -0
  109. package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +520 -0
  110. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +2 -67
  111. package/v2Containers/EmailWrapper/constants.js +2 -0
  112. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +629 -77
  113. package/v2Containers/EmailWrapper/index.js +103 -23
  114. package/v2Containers/EmailWrapper/messages.js +65 -1
  115. package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +643 -0
  116. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +594 -77
  117. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +376 -0
  118. package/v2Containers/InApp/__tests__/sagas.test.js +363 -0
  119. package/v2Containers/InApp/actions.js +7 -0
  120. package/v2Containers/InApp/constants.js +20 -4
  121. package/v2Containers/InApp/index.js +802 -359
  122. package/v2Containers/InApp/index.scss +4 -3
  123. package/v2Containers/InApp/messages.js +7 -3
  124. package/v2Containers/InApp/reducer.js +21 -3
  125. package/v2Containers/InApp/sagas.js +29 -9
  126. package/v2Containers/InApp/selectors.js +25 -5
  127. package/v2Containers/InApp/tests/index.test.js +154 -50
  128. package/v2Containers/InApp/tests/reducer.test.js +34 -0
  129. package/v2Containers/InApp/tests/sagas.test.js +61 -9
  130. package/v2Containers/InApp/tests/selectors.test.js +612 -0
  131. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +151 -0
  132. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +267 -0
  133. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +23 -0
  134. package/v2Containers/InAppWrapper/constants.js +16 -0
  135. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +473 -0
  136. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +198 -0
  137. package/v2Containers/InAppWrapper/index.js +148 -0
  138. package/v2Containers/InAppWrapper/messages.js +49 -0
  139. package/v2Containers/InappAdvance/index.js +1099 -0
  140. package/v2Containers/InappAdvance/index.scss +10 -0
  141. package/v2Containers/InappAdvance/tests/index.test.js +448 -0
  142. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +15 -36
  143. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +8 -8
  144. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +77 -100
  145. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +63 -72
  146. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +190 -250
  147. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
  148. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +40 -48
  149. package/v2Containers/TagList/index.js +62 -19
  150. package/v2Containers/Templates/ChannelTypeIllustration.js +1 -13
  151. package/v2Containers/Templates/_templates.scss +56 -202
  152. package/v2Containers/Templates/actions.js +1 -2
  153. package/v2Containers/Templates/constants.js +0 -1
  154. package/v2Containers/Templates/index.js +123 -278
  155. package/v2Containers/Templates/messages.js +4 -24
  156. package/v2Containers/Templates/reducer.js +0 -2
  157. package/v2Containers/Templates/tests/index.test.js +0 -10
  158. package/v2Containers/TemplatesV2/index.js +7 -15
  159. package/v2Containers/TemplatesV2/messages.js +0 -4
  160. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +768 -1272
  161. package/utils/imageUrlUpload.js +0 -141
  162. package/v2Components/CapImageUrlUpload/constants.js +0 -26
  163. package/v2Components/CapImageUrlUpload/index.js +0 -365
  164. package/v2Components/CapImageUrlUpload/index.scss +0 -35
  165. package/v2Components/CapImageUrlUpload/messages.js +0 -47
  166. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +0 -152
  167. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +0 -214
  168. package/v2Containers/WebPush/Create/components/BrandIconSection.js +0 -108
  169. package/v2Containers/WebPush/Create/components/ButtonForm.js +0 -172
  170. package/v2Containers/WebPush/Create/components/ButtonItem.js +0 -101
  171. package/v2Containers/WebPush/Create/components/ButtonList.js +0 -145
  172. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +0 -164
  173. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +0 -463
  174. package/v2Containers/WebPush/Create/components/FormActions.js +0 -54
  175. package/v2Containers/WebPush/Create/components/FormActions.test.js +0 -163
  176. package/v2Containers/WebPush/Create/components/MediaSection.js +0 -142
  177. package/v2Containers/WebPush/Create/components/MediaSection.test.js +0 -341
  178. package/v2Containers/WebPush/Create/components/MessageSection.js +0 -103
  179. package/v2Containers/WebPush/Create/components/MessageSection.test.js +0 -268
  180. package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +0 -87
  181. package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +0 -210
  182. package/v2Containers/WebPush/Create/components/TemplateNameSection.js +0 -54
  183. package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +0 -143
  184. package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +0 -86
  185. package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +0 -16
  186. package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +0 -41
  187. package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +0 -54
  188. package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +0 -37
  189. package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +0 -21
  190. package/v2Containers/WebPush/Create/components/_buttons.scss +0 -246
  191. package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +0 -554
  192. package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +0 -607
  193. package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +0 -633
  194. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +0 -666
  195. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +0 -74
  196. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +0 -78
  197. package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +0 -138
  198. package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +0 -406
  199. package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +0 -30
  200. package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +0 -151
  201. package/v2Containers/WebPush/Create/hooks/useImageUpload.js +0 -104
  202. package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +0 -538
  203. package/v2Containers/WebPush/Create/hooks/useTagManagement.js +0 -122
  204. package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +0 -633
  205. package/v2Containers/WebPush/Create/index.js +0 -1148
  206. package/v2Containers/WebPush/Create/index.scss +0 -134
  207. package/v2Containers/WebPush/Create/messages.js +0 -203
  208. package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +0 -228
  209. package/v2Containers/WebPush/Create/preview/NotificationContainer.js +0 -294
  210. package/v2Containers/WebPush/Create/preview/PreviewContent.js +0 -90
  211. package/v2Containers/WebPush/Create/preview/PreviewControls.js +0 -305
  212. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +0 -23
  213. package/v2Containers/WebPush/Create/preview/WebPushPreview.js +0 -155
  214. package/v2Containers/WebPush/Create/preview/assets/Light.svg +0 -53
  215. package/v2Containers/WebPush/Create/preview/assets/Top.svg +0 -5
  216. package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +0 -9
  217. package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +0 -9
  218. package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
  219. package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
  220. package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +0 -106
  221. package/v2Containers/WebPush/Create/preview/assets/iOS.svg +0 -26
  222. package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +0 -9
  223. package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +0 -9
  224. package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +0 -18
  225. package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +0 -29
  226. package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +0 -9
  227. package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +0 -9
  228. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +0 -47
  229. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +0 -141
  230. package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +0 -45
  231. package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +0 -68
  232. package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +0 -61
  233. package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +0 -99
  234. package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +0 -733
  235. package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +0 -571
  236. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +0 -81
  237. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +0 -81
  238. package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +0 -50
  239. package/v2Containers/WebPush/Create/preview/constants.js +0 -637
  240. package/v2Containers/WebPush/Create/preview/notification-container.scss +0 -79
  241. package/v2Containers/WebPush/Create/preview/preview.scss +0 -351
  242. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +0 -370
  243. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +0 -12
  244. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +0 -12
  245. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +0 -12
  246. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +0 -47
  247. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +0 -11
  248. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +0 -11
  249. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +0 -11
  250. package/v2Containers/WebPush/Create/preview/styles/_base.scss +0 -207
  251. package/v2Containers/WebPush/Create/preview/styles/_ios.scss +0 -153
  252. package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +0 -107
  253. package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +0 -101
  254. package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +0 -229
  255. package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +0 -909
  256. package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +0 -1081
  257. package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +0 -723
  258. package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +0 -1327
  259. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +0 -131
  260. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +0 -112
  261. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +0 -144
  262. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +0 -129
  263. package/v2Containers/WebPush/Create/utils/payloadBuilder.js +0 -96
  264. package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +0 -396
  265. package/v2Containers/WebPush/Create/utils/previewUtils.js +0 -89
  266. package/v2Containers/WebPush/Create/utils/urlValidation.js +0 -115
  267. package/v2Containers/WebPush/Create/utils/urlValidation.test.js +0 -449
  268. package/v2Containers/WebPush/Create/utils/validation.js +0 -75
  269. package/v2Containers/WebPush/Create/utils/validation.test.js +0 -283
  270. package/v2Containers/WebPush/actions.js +0 -60
  271. package/v2Containers/WebPush/constants.js +0 -132
  272. package/v2Containers/WebPush/index.js +0 -2
  273. package/v2Containers/WebPush/reducer.js +0 -104
  274. package/v2Containers/WebPush/sagas.js +0 -119
  275. package/v2Containers/WebPush/selectors.js +0 -65
  276. package/v2Containers/WebPush/tests/reducer.test.js +0 -863
  277. package/v2Containers/WebPush/tests/sagas.test.js +0 -566
  278. package/v2Containers/WebPush/tests/selectors.test.js +0 -960
@@ -197,7 +197,7 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
197
197
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
198
198
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
199
199
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
200
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
200
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
201
201
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
202
202
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
203
203
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -205,13 +205,13 @@ exports[`Creatives SmsTraiCreate test/> done button should be disabled if blank
205
205
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
206
206
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
207
207
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
208
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
208
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
209
209
  "creatives.componentsV2.CapImageUpload.or": "OR",
210
210
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
211
211
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
212
212
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
213
213
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
214
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
214
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
215
215
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
216
216
  "creatives.componentsV2.CapTagList.Ok": "Ok",
217
217
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1904,7 +1904,6 @@ new message content.",
1904
1904
  "creatives.containersV2.WeChat.templateName": "Template Name",
1905
1905
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1906
1906
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1907
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1908
1907
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1909
1908
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1910
1909
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -3212,7 +3211,7 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
3212
3211
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
3213
3212
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
3214
3213
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
3215
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
3214
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
3216
3215
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
3217
3216
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
3218
3217
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -3220,13 +3219,13 @@ exports[`Creatives SmsTraiCreate test/> invalid file drop 1`] = `
3220
3219
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
3221
3220
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
3222
3221
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
3223
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
3222
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
3224
3223
  "creatives.componentsV2.CapImageUpload.or": "OR",
3225
3224
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
3226
3225
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
3227
3226
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
3228
3227
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
3229
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
3228
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
3230
3229
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
3231
3230
  "creatives.componentsV2.CapTagList.Ok": "Ok",
3232
3231
  "creatives.componentsV2.CapTagList.all": "All",
@@ -4919,7 +4918,6 @@ new message content.",
4919
4918
  "creatives.containersV2.WeChat.templateName": "Template Name",
4920
4919
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
4921
4920
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
4922
- "creatives.containersV2.WebPush.addLabels": "Add labels",
4923
4921
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
4924
4922
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
4925
4923
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -6227,7 +6225,7 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
6227
6225
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6228
6226
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6229
6227
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6230
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6228
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6231
6229
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6232
6230
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6233
6231
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6235,13 +6233,13 @@ exports[`Creatives SmsTraiCreate test/> renders UI 1`] = `
6235
6233
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6236
6234
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6237
6235
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6238
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6236
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6239
6237
  "creatives.componentsV2.CapImageUpload.or": "OR",
6240
6238
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6241
6239
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6242
6240
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6243
6241
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6244
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6242
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6245
6243
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6246
6244
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6247
6245
  "creatives.componentsV2.CapTagList.all": "All",
@@ -7934,7 +7932,6 @@ new message content.",
7934
7932
  "creatives.containersV2.WeChat.templateName": "Template Name",
7935
7933
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
7936
7934
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
7937
- "creatives.containersV2.WebPush.addLabels": "Add labels",
7938
7935
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
7939
7936
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
7940
7937
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9242,7 +9239,7 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
9242
9239
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9243
9240
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9244
9241
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9245
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9242
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9246
9243
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9247
9244
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9248
9245
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9250,13 +9247,13 @@ exports[`Creatives SmsTraiCreate test/> valid file drop 1`] = `
9250
9247
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9251
9248
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9252
9249
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9253
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9250
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9254
9251
  "creatives.componentsV2.CapImageUpload.or": "OR",
9255
9252
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9256
9253
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9257
9254
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9258
9255
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9259
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9256
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9260
9257
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9261
9258
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9262
9259
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10949,7 +10946,6 @@ new message content.",
10949
10946
  "creatives.containersV2.WeChat.templateName": "Template Name",
10950
10947
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10951
10948
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10952
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10953
10949
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10954
10950
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10955
10951
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -189,7 +189,7 @@ exports[`Creatives SmsTraiEdit test/> should cancel 1`] = `
189
189
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
190
190
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
191
191
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
192
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
193
193
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
194
194
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
195
195
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -197,13 +197,13 @@ exports[`Creatives SmsTraiEdit test/> should cancel 1`] = `
197
197
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
198
198
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
199
199
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
200
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
201
201
  "creatives.componentsV2.CapImageUpload.or": "OR",
202
202
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
203
203
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
204
204
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
205
205
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
206
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,7 +1896,6 @@ new message content.",
1896
1896
  "creatives.containersV2.WeChat.templateName": "Template Name",
1897
1897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1898
1898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1899
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1900
1899
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1901
1900
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1902
1901
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -2282,6 +2281,7 @@ new message content.",
2282
2281
  "email": [Function],
2283
2282
  "facebookPreview": [Function],
2284
2283
  "gallery": [Function],
2284
+ "inApp": [Function],
2285
2285
  "language": [Function],
2286
2286
  "navigationConfig": [Function],
2287
2287
  "previewAndTest": [Function],
@@ -6502,7 +6502,7 @@ FREE GIFTS-
6502
6502
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6503
6503
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6504
6504
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6505
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6505
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6506
6506
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6507
6507
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6508
6508
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6510,13 +6510,13 @@ FREE GIFTS-
6510
6510
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6511
6511
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6512
6512
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6513
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6513
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6514
6514
  "creatives.componentsV2.CapImageUpload.or": "OR",
6515
6515
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6516
6516
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6517
6517
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6518
6518
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6519
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6519
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6520
6520
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6521
6521
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6522
6522
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8209,7 +8209,6 @@ new message content.",
8209
8209
  "creatives.containersV2.WeChat.templateName": "Template Name",
8210
8210
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8211
8211
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8212
- "creatives.containersV2.WebPush.addLabels": "Add labels",
8213
8212
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8214
8213
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8215
8214
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -8808,7 +8807,7 @@ FREE GIFTS-
8808
8807
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
8809
8808
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
8810
8809
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
8811
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
8810
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
8812
8811
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
8813
8812
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
8814
8813
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -8816,13 +8815,13 @@ FREE GIFTS-
8816
8815
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
8817
8816
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
8818
8817
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
8819
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
8818
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
8820
8819
  "creatives.componentsV2.CapImageUpload.or": "OR",
8821
8820
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
8822
8821
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
8823
8822
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
8824
8823
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
8825
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
8824
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
8826
8825
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
8827
8826
  "creatives.componentsV2.CapTagList.Ok": "Ok",
8828
8827
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10515,7 +10514,6 @@ new message content.",
10515
10514
  "creatives.containersV2.WeChat.templateName": "Template Name",
10516
10515
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10517
10516
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10518
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10519
10517
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10520
10518
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10521
10519
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11238,7 +11236,7 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
11238
11236
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
11239
11237
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
11240
11238
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
11241
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
11239
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
11242
11240
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
11243
11241
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
11244
11242
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -11246,13 +11244,13 @@ exports[`Creatives SmsTraiEdit test/> should render 1`] = `
11246
11244
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
11247
11245
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
11248
11246
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
11249
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
11247
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
11250
11248
  "creatives.componentsV2.CapImageUpload.or": "OR",
11251
11249
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
11252
11250
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
11253
11251
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
11254
11252
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
11255
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
11253
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
11256
11254
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
11257
11255
  "creatives.componentsV2.CapTagList.Ok": "Ok",
11258
11256
  "creatives.componentsV2.CapTagList.all": "All",
@@ -12945,7 +12943,6 @@ new message content.",
12945
12943
  "creatives.containersV2.WeChat.templateName": "Template Name",
12946
12944
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
12947
12945
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
12948
- "creatives.containersV2.WebPush.addLabels": "Add labels",
12949
12946
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
12950
12947
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
12951
12948
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -13331,6 +13328,7 @@ new message content.",
13331
13328
  "email": [Function],
13332
13329
  "facebookPreview": [Function],
13333
13330
  "gallery": [Function],
13331
+ "inApp": [Function],
13334
13332
  "language": [Function],
13335
13333
  "navigationConfig": [Function],
13336
13334
  "previewAndTest": [Function],
@@ -17297,7 +17295,7 @@ FREE GIFTS-
17297
17295
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
17298
17296
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
17299
17297
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
17300
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
17298
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
17301
17299
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
17302
17300
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
17303
17301
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -17305,13 +17303,13 @@ FREE GIFTS-
17305
17303
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
17306
17304
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
17307
17305
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
17308
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
17306
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
17309
17307
  "creatives.componentsV2.CapImageUpload.or": "OR",
17310
17308
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
17311
17309
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
17312
17310
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
17313
17311
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
17314
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
17312
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
17315
17313
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
17316
17314
  "creatives.componentsV2.CapTagList.Ok": "Ok",
17317
17315
  "creatives.componentsV2.CapTagList.all": "All",
@@ -19004,7 +19002,6 @@ new message content.",
19004
19002
  "creatives.containersV2.WeChat.templateName": "Template Name",
19005
19003
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
19006
19004
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
19007
- "creatives.containersV2.WebPush.addLabels": "Add labels",
19008
19005
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
19009
19006
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
19010
19007
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -19603,7 +19600,7 @@ FREE GIFTS-
19603
19600
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
19604
19601
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
19605
19602
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
19606
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
19603
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
19607
19604
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
19608
19605
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
19609
19606
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -19611,13 +19608,13 @@ FREE GIFTS-
19611
19608
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
19612
19609
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
19613
19610
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
19614
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
19611
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
19615
19612
  "creatives.componentsV2.CapImageUpload.or": "OR",
19616
19613
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
19617
19614
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
19618
19615
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
19619
19616
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
19620
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
19617
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
19621
19618
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
19622
19619
  "creatives.componentsV2.CapTagList.Ok": "Ok",
19623
19620
  "creatives.componentsV2.CapTagList.all": "All",
@@ -21310,7 +21307,6 @@ new message content.",
21310
21307
  "creatives.containersV2.WeChat.templateName": "Template Name",
21311
21308
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
21312
21309
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
21313
- "creatives.containersV2.WebPush.addLabels": "Add labels",
21314
21310
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
21315
21311
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
21316
21312
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -22033,7 +22029,7 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
22033
22029
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
22034
22030
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
22035
22031
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
22036
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
22032
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
22037
22033
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
22038
22034
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
22039
22035
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -22041,13 +22037,13 @@ exports[`Creatives SmsTraiEdit test/> should render 2`] = `
22041
22037
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
22042
22038
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
22043
22039
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
22044
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
22040
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
22045
22041
  "creatives.componentsV2.CapImageUpload.or": "OR",
22046
22042
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
22047
22043
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
22048
22044
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
22049
22045
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
22050
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
22046
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
22051
22047
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
22052
22048
  "creatives.componentsV2.CapTagList.Ok": "Ok",
22053
22049
  "creatives.componentsV2.CapTagList.all": "All",
@@ -23740,7 +23736,6 @@ new message content.",
23740
23736
  "creatives.containersV2.WeChat.templateName": "Template Name",
23741
23737
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
23742
23738
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
23743
- "creatives.containersV2.WebPush.addLabels": "Add labels",
23744
23739
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
23745
23740
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
23746
23741
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -24126,6 +24121,7 @@ new message content.",
24126
24121
  "email": [Function],
24127
24122
  "facebookPreview": [Function],
24128
24123
  "gallery": [Function],
24124
+ "inApp": [Function],
24129
24125
  "language": [Function],
24130
24126
  "navigationConfig": [Function],
24131
24127
  "previewAndTest": [Function],
@@ -28092,7 +28088,7 @@ FREE GIFTS-
28092
28088
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
28093
28089
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
28094
28090
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
28095
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
28091
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
28096
28092
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
28097
28093
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
28098
28094
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -28100,13 +28096,13 @@ FREE GIFTS-
28100
28096
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
28101
28097
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
28102
28098
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
28103
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
28099
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
28104
28100
  "creatives.componentsV2.CapImageUpload.or": "OR",
28105
28101
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
28106
28102
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
28107
28103
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
28108
28104
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
28109
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
28105
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
28110
28106
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
28111
28107
  "creatives.componentsV2.CapTagList.Ok": "Ok",
28112
28108
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29799,7 +29795,6 @@ new message content.",
29799
29795
  "creatives.containersV2.WeChat.templateName": "Template Name",
29800
29796
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29801
29797
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29802
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29803
29798
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29804
29799
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29805
29800
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -30398,7 +30393,7 @@ FREE GIFTS-
30398
30393
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
30399
30394
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
30400
30395
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
30401
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
30396
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
30402
30397
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
30403
30398
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
30404
30399
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -30406,13 +30401,13 @@ FREE GIFTS-
30406
30401
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
30407
30402
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
30408
30403
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
30409
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
30404
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
30410
30405
  "creatives.componentsV2.CapImageUpload.or": "OR",
30411
30406
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
30412
30407
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
30413
30408
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
30414
30409
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
30415
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
30410
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
30416
30411
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
30417
30412
  "creatives.componentsV2.CapTagList.Ok": "Ok",
30418
30413
  "creatives.componentsV2.CapTagList.all": "All",
@@ -32105,7 +32100,6 @@ new message content.",
32105
32100
  "creatives.containersV2.WeChat.templateName": "Template Name",
32106
32101
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
32107
32102
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
32108
- "creatives.containersV2.WebPush.addLabels": "Add labels",
32109
32103
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
32110
32104
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
32111
32105
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -32828,7 +32822,7 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
32828
32822
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
32829
32823
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
32830
32824
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
32831
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
32825
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
32832
32826
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
32833
32827
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
32834
32828
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -32836,13 +32830,13 @@ exports[`Creatives SmsTraiEdit test/> should save 1`] = `
32836
32830
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
32837
32831
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
32838
32832
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
32839
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
32833
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
32840
32834
  "creatives.componentsV2.CapImageUpload.or": "OR",
32841
32835
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
32842
32836
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
32843
32837
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
32844
32838
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
32845
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
32839
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
32846
32840
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
32847
32841
  "creatives.componentsV2.CapTagList.Ok": "Ok",
32848
32842
  "creatives.componentsV2.CapTagList.all": "All",
@@ -34535,7 +34529,6 @@ new message content.",
34535
34529
  "creatives.containersV2.WeChat.templateName": "Template Name",
34536
34530
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
34537
34531
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
34538
- "creatives.containersV2.WebPush.addLabels": "Add labels",
34539
34532
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
34540
34533
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
34541
34534
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -34921,6 +34914,7 @@ new message content.",
34921
34914
  "email": [Function],
34922
34915
  "facebookPreview": [Function],
34923
34916
  "gallery": [Function],
34917
+ "inApp": [Function],
34924
34918
  "language": [Function],
34925
34919
  "navigationConfig": [Function],
34926
34920
  "previewAndTest": [Function],
@@ -39268,7 +39262,7 @@ FREE GIFTS-
39268
39262
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39269
39263
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39270
39264
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39271
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39265
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39272
39266
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39273
39267
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39274
39268
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39276,13 +39270,13 @@ FREE GIFTS-
39276
39270
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39277
39271
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39278
39272
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39279
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39273
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39280
39274
  "creatives.componentsV2.CapImageUpload.or": "OR",
39281
39275
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39282
39276
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39283
39277
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39284
39278
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39285
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39279
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39286
39280
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39287
39281
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39288
39282
  "creatives.componentsV2.CapTagList.all": "All",
@@ -40975,7 +40969,6 @@ new message content.",
40975
40969
  "creatives.containersV2.WeChat.templateName": "Template Name",
40976
40970
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
40977
40971
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
40978
- "creatives.containersV2.WebPush.addLabels": "Add labels",
40979
40972
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
40980
40973
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
40981
40974
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -41574,7 +41567,7 @@ FREE GIFTS-
41574
41567
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
41575
41568
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
41576
41569
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
41577
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
41570
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
41578
41571
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
41579
41572
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
41580
41573
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -41582,13 +41575,13 @@ FREE GIFTS-
41582
41575
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
41583
41576
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
41584
41577
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
41585
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
41578
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
41586
41579
  "creatives.componentsV2.CapImageUpload.or": "OR",
41587
41580
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
41588
41581
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
41589
41582
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
41590
41583
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
41591
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
41584
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
41592
41585
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
41593
41586
  "creatives.componentsV2.CapTagList.Ok": "Ok",
41594
41587
  "creatives.componentsV2.CapTagList.all": "All",
@@ -43281,7 +43274,6 @@ new message content.",
43281
43274
  "creatives.containersV2.WeChat.templateName": "Template Name",
43282
43275
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
43283
43276
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
43284
- "creatives.containersV2.WebPush.addLabels": "Add labels",
43285
43277
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
43286
43278
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
43287
43279
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",