@capillarytech/creatives-library 8.0.242-alpha.1 → 8.0.242-alpha.11

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 (255) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/config/app.js +1 -1
  4. package/constants/unified.js +2 -2
  5. package/initialReducer.js +0 -2
  6. package/package.json +1 -1
  7. package/services/api.js +5 -10
  8. package/services/tests/api.test.js +0 -18
  9. package/translations/en.json +4 -3
  10. package/utils/common.js +6 -5
  11. package/utils/commonUtils.js +1 -14
  12. package/utils/imageUrlUpload.js +141 -0
  13. package/utils/tests/commonUtil.test.js +0 -224
  14. package/utils/transformTemplateConfig.js +10 -0
  15. package/v2Components/CapDeviceContent/index.js +56 -61
  16. package/v2Components/CapImageUpload/constants.js +2 -0
  17. package/v2Components/CapImageUpload/index.js +65 -16
  18. package/v2Components/CapImageUpload/index.scss +4 -1
  19. package/v2Components/CapImageUpload/messages.js +5 -1
  20. package/v2Components/CapImageUrlUpload/constants.js +26 -0
  21. package/v2Components/CapImageUrlUpload/index.js +365 -0
  22. package/v2Components/CapImageUrlUpload/index.scss +35 -0
  23. package/v2Components/CapImageUrlUpload/messages.js +47 -0
  24. package/v2Components/CapTagList/index.js +1 -6
  25. package/v2Components/CapTagListWithInput/index.js +1 -5
  26. package/v2Components/CapTagListWithInput/messages.js +1 -1
  27. package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
  28. package/v2Components/ErrorInfoNote/index.js +72 -412
  29. package/v2Components/ErrorInfoNote/messages.js +0 -22
  30. package/v2Components/ErrorInfoNote/style.scss +2 -279
  31. package/v2Components/HtmlEditor/HTMLEditor.js +89 -210
  32. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1132
  33. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +12 -17
  34. package/v2Components/HtmlEditor/_htmlEditor.scss +23 -8
  35. package/v2Components/HtmlEditor/_index.lazy.scss +1 -1
  36. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +101 -13
  37. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +139 -148
  38. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
  39. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  40. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +1 -1
  41. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -1
  42. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
  43. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
  44. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
  45. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  46. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
  47. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
  48. package/v2Components/HtmlEditor/components/PreviewPane/index.js +11 -10
  49. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  50. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +62 -87
  51. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
  52. package/v2Components/HtmlEditor/constants.js +20 -29
  53. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
  54. package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
  55. package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
  56. package/v2Components/HtmlEditor/index.js +1 -1
  57. package/v2Components/HtmlEditor/messages.js +85 -95
  58. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +101 -99
  59. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
  60. package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -34
  61. package/v2Components/MobilePushPreviewV2/index.js +7 -32
  62. package/v2Components/TemplatePreview/_templatePreview.scss +24 -44
  63. package/v2Components/TemplatePreview/index.js +32 -47
  64. package/v2Components/TemplatePreview/messages.js +0 -4
  65. package/v2Components/TestAndPreviewSlidebox/index.js +25 -31
  66. package/v2Containers/App/constants.js +5 -0
  67. package/v2Containers/BeeEditor/index.js +80 -82
  68. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +4 -3
  69. package/v2Containers/CreativesContainer/SlideBoxContent.js +118 -148
  70. package/v2Containers/CreativesContainer/SlideBoxFooter.js +3 -9
  71. package/v2Containers/CreativesContainer/SlideBoxHeader.js +2 -2
  72. package/v2Containers/CreativesContainer/constants.js +2 -1
  73. package/v2Containers/CreativesContainer/index.js +41 -173
  74. package/v2Containers/CreativesContainer/messages.js +4 -4
  75. package/v2Containers/CreativesContainer/tests/SlideBoxContent.test.js +210 -0
  76. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +354 -38
  77. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -36
  78. package/v2Containers/Email/actions.js +0 -7
  79. package/v2Containers/Email/constants.js +1 -5
  80. package/v2Containers/Email/index.js +0 -13
  81. package/v2Containers/Email/messages.js +0 -32
  82. package/v2Containers/Email/reducer.js +1 -12
  83. package/v2Containers/Email/sagas.js +6 -41
  84. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
  85. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +7 -193
  86. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
  87. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
  88. package/v2Containers/EmailWrapper/constants.js +0 -2
  89. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +67 -436
  90. package/v2Containers/EmailWrapper/index.js +23 -99
  91. package/v2Containers/EmailWrapper/messages.js +1 -61
  92. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +1 -26
  93. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -111
  94. package/v2Containers/InApp/actions.js +0 -7
  95. package/v2Containers/InApp/constants.js +4 -20
  96. package/v2Containers/InApp/index.js +357 -800
  97. package/v2Containers/InApp/index.scss +3 -4
  98. package/v2Containers/InApp/messages.js +3 -7
  99. package/v2Containers/InApp/reducer.js +3 -21
  100. package/v2Containers/InApp/sagas.js +9 -29
  101. package/v2Containers/InApp/selectors.js +5 -25
  102. package/v2Containers/InApp/tests/index.test.js +50 -154
  103. package/v2Containers/InApp/tests/reducer.test.js +0 -34
  104. package/v2Containers/InApp/tests/sagas.test.js +9 -61
  105. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +12 -12
  106. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +8 -8
  107. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +100 -77
  108. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +72 -63
  109. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +184 -150
  110. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +16 -12
  111. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +32 -28
  112. package/v2Containers/TagList/index.js +1 -67
  113. package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
  114. package/v2Containers/Templates/_templates.scss +202 -56
  115. package/v2Containers/Templates/actions.js +2 -1
  116. package/v2Containers/Templates/constants.js +1 -0
  117. package/v2Containers/Templates/index.js +278 -128
  118. package/v2Containers/Templates/messages.js +24 -4
  119. package/v2Containers/Templates/reducer.js +2 -0
  120. package/v2Containers/Templates/tests/index.test.js +10 -0
  121. package/v2Containers/TemplatesV2/index.js +8 -1
  122. package/v2Containers/TemplatesV2/messages.js +4 -0
  123. package/v2Containers/WebPush/Create/components/BrandIconSection.js +108 -0
  124. package/v2Containers/WebPush/Create/components/ButtonForm.js +172 -0
  125. package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
  126. package/v2Containers/WebPush/Create/components/ButtonList.js +145 -0
  127. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.js +164 -0
  128. package/v2Containers/WebPush/Create/components/ButtonsLinksSection.test.js +463 -0
  129. package/v2Containers/WebPush/Create/components/FormActions.js +54 -0
  130. package/v2Containers/WebPush/Create/components/FormActions.test.js +163 -0
  131. package/v2Containers/WebPush/Create/components/MediaSection.js +142 -0
  132. package/v2Containers/WebPush/Create/components/MediaSection.test.js +341 -0
  133. package/v2Containers/WebPush/Create/components/MessageSection.js +103 -0
  134. package/v2Containers/WebPush/Create/components/MessageSection.test.js +268 -0
  135. package/v2Containers/WebPush/Create/components/NotificationTitleSection.js +87 -0
  136. package/v2Containers/WebPush/Create/components/NotificationTitleSection.test.js +210 -0
  137. package/v2Containers/WebPush/Create/components/TemplateNameSection.js +54 -0
  138. package/v2Containers/WebPush/Create/components/TemplateNameSection.test.js +143 -0
  139. package/v2Containers/WebPush/Create/components/__snapshots__/ButtonsLinksSection.test.js.snap +86 -0
  140. package/v2Containers/WebPush/Create/components/__snapshots__/FormActions.test.js.snap +16 -0
  141. package/v2Containers/WebPush/Create/components/__snapshots__/MediaSection.test.js.snap +41 -0
  142. package/v2Containers/WebPush/Create/components/__snapshots__/MessageSection.test.js.snap +54 -0
  143. package/v2Containers/WebPush/Create/components/__snapshots__/NotificationTitleSection.test.js.snap +37 -0
  144. package/v2Containers/WebPush/Create/components/__snapshots__/TemplateNameSection.test.js.snap +21 -0
  145. package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
  146. package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
  147. package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
  148. package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
  149. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
  150. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
  151. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +78 -0
  152. package/v2Containers/WebPush/Create/hooks/useButtonManagement.js +138 -0
  153. package/v2Containers/WebPush/Create/hooks/useButtonManagement.test.js +406 -0
  154. package/v2Containers/WebPush/Create/hooks/useCharacterCount.js +30 -0
  155. package/v2Containers/WebPush/Create/hooks/useCharacterCount.test.js +151 -0
  156. package/v2Containers/WebPush/Create/hooks/useImageUpload.js +104 -0
  157. package/v2Containers/WebPush/Create/hooks/useImageUpload.test.js +538 -0
  158. package/v2Containers/WebPush/Create/hooks/useTagManagement.js +122 -0
  159. package/v2Containers/WebPush/Create/hooks/useTagManagement.test.js +633 -0
  160. package/v2Containers/WebPush/Create/index.js +1056 -0
  161. package/v2Containers/WebPush/Create/index.scss +134 -0
  162. package/v2Containers/WebPush/Create/messages.js +203 -0
  163. package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +228 -0
  164. package/v2Containers/WebPush/Create/preview/NotificationContainer.js +294 -0
  165. package/v2Containers/WebPush/Create/preview/PreviewContent.js +90 -0
  166. package/v2Containers/WebPush/Create/preview/PreviewControls.js +305 -0
  167. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
  168. package/v2Containers/WebPush/Create/preview/WebPushPreview.js +150 -0
  169. package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
  170. package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
  171. package/v2Containers/WebPush/Create/preview/assets/android-arrow-down.svg +9 -0
  172. package/v2Containers/WebPush/Create/preview/assets/android-arrow-up.svg +9 -0
  173. package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
  174. package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
  175. package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
  176. package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
  177. package/v2Containers/WebPush/Create/preview/assets/macos-arrow-down-icon.svg +9 -0
  178. package/v2Containers/WebPush/Create/preview/assets/macos-triple-dot-icon.svg +9 -0
  179. package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
  180. package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
  181. package/v2Containers/WebPush/Create/preview/assets/windows-close-icon.svg +9 -0
  182. package/v2Containers/WebPush/Create/preview/assets/windows-triple-dot-icon.svg +9 -0
  183. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +47 -0
  184. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +141 -0
  185. package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
  186. package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +68 -0
  187. package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +61 -0
  188. package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +99 -0
  189. package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +733 -0
  190. package/v2Containers/WebPush/Create/preview/components/tests/WindowsChromeExpanded.test.js +571 -0
  191. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +81 -0
  192. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/WindowsChromeExpanded.test.js.snap +81 -0
  193. package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +50 -0
  194. package/v2Containers/WebPush/Create/preview/constants.js +637 -0
  195. package/v2Containers/WebPush/Create/preview/notification-container.scss +79 -0
  196. package/v2Containers/WebPush/Create/preview/preview.scss +351 -0
  197. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +370 -0
  198. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
  199. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
  200. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
  201. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +47 -0
  202. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
  203. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
  204. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
  205. package/v2Containers/WebPush/Create/preview/styles/_base.scss +207 -0
  206. package/v2Containers/WebPush/Create/preview/styles/_ios.scss +153 -0
  207. package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
  208. package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +101 -0
  209. package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +229 -0
  210. package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
  211. package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1081 -0
  212. package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
  213. package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +943 -0
  214. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +131 -0
  215. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +112 -0
  216. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
  217. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +129 -0
  218. package/v2Containers/WebPush/Create/utils/payloadBuilder.js +94 -0
  219. package/v2Containers/WebPush/Create/utils/payloadBuilder.test.js +390 -0
  220. package/v2Containers/WebPush/Create/utils/previewUtils.js +89 -0
  221. package/v2Containers/WebPush/Create/utils/urlValidation.js +115 -0
  222. package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
  223. package/v2Containers/WebPush/Create/utils/validation.js +75 -0
  224. package/v2Containers/WebPush/Create/utils/validation.test.js +283 -0
  225. package/v2Containers/WebPush/actions.js +60 -0
  226. package/v2Containers/WebPush/constants.js +128 -0
  227. package/v2Containers/WebPush/index.js +2 -0
  228. package/v2Containers/WebPush/reducer.js +104 -0
  229. package/v2Containers/WebPush/sagas.js +119 -0
  230. package/v2Containers/WebPush/selectors.js +65 -0
  231. package/v2Containers/WebPush/tests/reducer.test.js +863 -0
  232. package/v2Containers/WebPush/tests/sagas.test.js +566 -0
  233. package/v2Containers/WebPush/tests/selectors.test.js +843 -0
  234. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +528 -431
  235. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -254
  236. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -362
  237. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
  238. package/v2Containers/BeePopupEditor/constants.js +0 -10
  239. package/v2Containers/BeePopupEditor/index.js +0 -193
  240. package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
  241. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1045
  242. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
  243. package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
  244. package/v2Containers/InApp/tests/selectors.test.js +0 -612
  245. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -162
  246. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
  247. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -9
  248. package/v2Containers/InAppWrapper/constants.js +0 -16
  249. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
  250. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
  251. package/v2Containers/InAppWrapper/index.js +0 -148
  252. package/v2Containers/InAppWrapper/messages.js +0 -49
  253. package/v2Containers/InappAdvance/index.js +0 -1099
  254. package/v2Containers/InappAdvance/index.scss +0 -10
  255. package/v2Containers/InappAdvance/tests/index.test.js +0 -448
@@ -189,7 +189,7 @@ exports[`line wrapper test/> should render line component new 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 upto: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {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[`line wrapper test/> should render line component new 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 upto: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 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 upto: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,6 +1896,7 @@ 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",
1899
1900
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1900
1901
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1901
1902
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -2281,7 +2282,6 @@ new message content.",
2281
2282
  "email": [Function],
2282
2283
  "facebookPreview": [Function],
2283
2284
  "gallery": [Function],
2284
- "inApp": [Function],
2285
2285
  "language": [Function],
2286
2286
  "navigationConfig": [Function],
2287
2287
  "previewAndTest": [Function],
@@ -6510,7 +6510,7 @@ new message content.",
6510
6510
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6511
6511
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6512
6512
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6513
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6513
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6514
6514
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6515
6515
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6516
6516
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6518,13 +6518,13 @@ new message content.",
6518
6518
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6519
6519
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6520
6520
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6521
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6521
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6522
6522
  "creatives.componentsV2.CapImageUpload.or": "OR",
6523
6523
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6524
6524
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6525
6525
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6526
6526
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6527
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6527
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6528
6528
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6529
6529
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6530
6530
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8217,6 +8217,7 @@ new message content.",
8217
8217
  "creatives.containersV2.WeChat.templateName": "Template Name",
8218
8218
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8219
8219
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8220
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
8220
8221
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8221
8222
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8222
8223
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9208,7 +9209,7 @@ exports[`line wrapper test/> should render line component new 2`] = `
9208
9209
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9209
9210
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9210
9211
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9211
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9212
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9212
9213
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9213
9214
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9214
9215
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9216,13 +9217,13 @@ exports[`line wrapper test/> should render line component new 2`] = `
9216
9217
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9217
9218
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9218
9219
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9219
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9220
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9220
9221
  "creatives.componentsV2.CapImageUpload.or": "OR",
9221
9222
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9222
9223
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9223
9224
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9224
9225
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9225
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9226
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9226
9227
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9227
9228
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9228
9229
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10915,6 +10916,7 @@ new message content.",
10915
10916
  "creatives.containersV2.WeChat.templateName": "Template Name",
10916
10917
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10917
10918
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10919
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
10918
10920
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10919
10921
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10920
10922
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11300,7 +11302,6 @@ new message content.",
11300
11302
  "email": [Function],
11301
11303
  "facebookPreview": [Function],
11302
11304
  "gallery": [Function],
11303
- "inApp": [Function],
11304
11305
  "language": [Function],
11305
11306
  "navigationConfig": [Function],
11306
11307
  "previewAndTest": [Function],
@@ -15713,7 +15714,7 @@ new message content.",
15713
15714
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
15714
15715
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
15715
15716
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
15716
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
15717
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
15717
15718
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
15718
15719
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
15719
15720
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -15721,13 +15722,13 @@ new message content.",
15721
15722
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
15722
15723
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
15723
15724
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
15724
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
15725
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
15725
15726
  "creatives.componentsV2.CapImageUpload.or": "OR",
15726
15727
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
15727
15728
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
15728
15729
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
15729
15730
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
15730
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
15731
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
15731
15732
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
15732
15733
  "creatives.componentsV2.CapTagList.Ok": "Ok",
15733
15734
  "creatives.componentsV2.CapTagList.all": "All",
@@ -17420,6 +17421,7 @@ new message content.",
17420
17421
  "creatives.containersV2.WeChat.templateName": "Template Name",
17421
17422
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
17422
17423
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
17424
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
17423
17425
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
17424
17426
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
17425
17427
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18411,7 +18413,7 @@ exports[`line wrapper test/> should render line component new 3`] = `
18411
18413
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
18412
18414
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
18413
18415
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
18414
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
18416
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
18415
18417
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
18416
18418
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
18417
18419
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -18419,13 +18421,13 @@ exports[`line wrapper test/> should render line component new 3`] = `
18419
18421
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
18420
18422
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
18421
18423
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
18422
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
18424
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
18423
18425
  "creatives.componentsV2.CapImageUpload.or": "OR",
18424
18426
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
18425
18427
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
18426
18428
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
18427
18429
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
18428
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
18430
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
18429
18431
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
18430
18432
  "creatives.componentsV2.CapTagList.Ok": "Ok",
18431
18433
  "creatives.componentsV2.CapTagList.all": "All",
@@ -20118,6 +20120,7 @@ new message content.",
20118
20120
  "creatives.containersV2.WeChat.templateName": "Template Name",
20119
20121
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
20120
20122
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
20123
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
20121
20124
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
20122
20125
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
20123
20126
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -20503,7 +20506,6 @@ new message content.",
20503
20506
  "email": [Function],
20504
20507
  "facebookPreview": [Function],
20505
20508
  "gallery": [Function],
20506
- "inApp": [Function],
20507
20509
  "language": [Function],
20508
20510
  "navigationConfig": [Function],
20509
20511
  "previewAndTest": [Function],
@@ -25158,7 +25160,7 @@ new message content.",
25158
25160
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
25159
25161
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
25160
25162
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
25161
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
25163
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
25162
25164
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
25163
25165
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
25164
25166
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -25166,13 +25168,13 @@ new message content.",
25166
25168
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
25167
25169
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
25168
25170
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
25169
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
25171
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
25170
25172
  "creatives.componentsV2.CapImageUpload.or": "OR",
25171
25173
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
25172
25174
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
25173
25175
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
25174
25176
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
25175
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
25177
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
25176
25178
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
25177
25179
  "creatives.componentsV2.CapTagList.Ok": "Ok",
25178
25180
  "creatives.componentsV2.CapTagList.all": "All",
@@ -26865,6 +26867,7 @@ new message content.",
26865
26867
  "creatives.containersV2.WeChat.templateName": "Template Name",
26866
26868
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
26867
26869
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
26870
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
26868
26871
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
26869
26872
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
26870
26873
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -27891,7 +27894,7 @@ exports[`line wrapper test/> should render line component new 4`] = `
27891
27894
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
27892
27895
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
27893
27896
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
27894
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
27897
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
27895
27898
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
27896
27899
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
27897
27900
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -27899,13 +27902,13 @@ exports[`line wrapper test/> should render line component new 4`] = `
27899
27902
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
27900
27903
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
27901
27904
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
27902
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
27905
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
27903
27906
  "creatives.componentsV2.CapImageUpload.or": "OR",
27904
27907
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
27905
27908
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
27906
27909
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
27907
27910
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
27908
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
27911
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
27909
27912
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
27910
27913
  "creatives.componentsV2.CapTagList.Ok": "Ok",
27911
27914
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29598,6 +29601,7 @@ new message content.",
29598
29601
  "creatives.containersV2.WeChat.templateName": "Template Name",
29599
29602
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29600
29603
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29604
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
29601
29605
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29602
29606
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29603
29607
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -29983,7 +29987,6 @@ new message content.",
29983
29987
  "email": [Function],
29984
29988
  "facebookPreview": [Function],
29985
29989
  "gallery": [Function],
29986
- "inApp": [Function],
29987
29990
  "language": [Function],
29988
29991
  "navigationConfig": [Function],
29989
29992
  "previewAndTest": [Function],
@@ -36859,7 +36862,7 @@ new message content.",
36859
36862
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
36860
36863
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
36861
36864
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
36862
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
36865
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
36863
36866
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
36864
36867
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
36865
36868
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -36867,13 +36870,13 @@ new message content.",
36867
36870
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
36868
36871
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
36869
36872
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
36870
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
36873
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
36871
36874
  "creatives.componentsV2.CapImageUpload.or": "OR",
36872
36875
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
36873
36876
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
36874
36877
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
36875
36878
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
36876
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
36879
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
36877
36880
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
36878
36881
  "creatives.componentsV2.CapTagList.Ok": "Ok",
36879
36882
  "creatives.componentsV2.CapTagList.all": "All",
@@ -38566,6 +38569,7 @@ new message content.",
38566
38569
  "creatives.containersV2.WeChat.templateName": "Template Name",
38567
38570
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
38568
38571
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
38572
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
38569
38573
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
38570
38574
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
38571
38575
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -39592,7 +39596,7 @@ exports[`line wrapper test/> should render line component new 5`] = `
39592
39596
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39593
39597
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39594
39598
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39595
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39599
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39596
39600
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39597
39601
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39598
39602
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39600,13 +39604,13 @@ exports[`line wrapper test/> should render line component new 5`] = `
39600
39604
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39601
39605
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39602
39606
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39603
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39607
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39604
39608
  "creatives.componentsV2.CapImageUpload.or": "OR",
39605
39609
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39606
39610
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39607
39611
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39608
39612
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39609
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39613
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39610
39614
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39611
39615
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39612
39616
  "creatives.componentsV2.CapTagList.all": "All",
@@ -41299,6 +41303,7 @@ new message content.",
41299
41303
  "creatives.containersV2.WeChat.templateName": "Template Name",
41300
41304
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
41301
41305
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
41306
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
41302
41307
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
41303
41308
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
41304
41309
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -41684,7 +41689,6 @@ new message content.",
41684
41689
  "email": [Function],
41685
41690
  "facebookPreview": [Function],
41686
41691
  "gallery": [Function],
41687
- "inApp": [Function],
41688
41692
  "language": [Function],
41689
41693
  "navigationConfig": [Function],
41690
41694
  "previewAndTest": [Function],
@@ -48602,7 +48606,7 @@ new message content.",
48602
48606
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
48603
48607
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
48604
48608
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
48605
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
48609
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
48606
48610
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
48607
48611
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
48608
48612
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -48610,13 +48614,13 @@ new message content.",
48610
48614
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
48611
48615
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
48612
48616
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
48613
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
48617
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
48614
48618
  "creatives.componentsV2.CapImageUpload.or": "OR",
48615
48619
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
48616
48620
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
48617
48621
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
48618
48622
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
48619
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
48623
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
48620
48624
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
48621
48625
  "creatives.componentsV2.CapTagList.Ok": "Ok",
48622
48626
  "creatives.componentsV2.CapTagList.all": "All",
@@ -50309,6 +50313,7 @@ new message content.",
50309
50313
  "creatives.containersV2.WeChat.templateName": "Template Name",
50310
50314
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50311
50315
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50316
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
50312
50317
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50313
50318
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50314
50319
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -51335,7 +51340,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
51335
51340
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
51336
51341
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
51337
51342
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
51338
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
51343
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
51339
51344
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
51340
51345
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
51341
51346
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -51343,13 +51348,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
51343
51348
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
51344
51349
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
51345
51350
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
51346
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
51351
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
51347
51352
  "creatives.componentsV2.CapImageUpload.or": "OR",
51348
51353
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
51349
51354
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
51350
51355
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
51351
51356
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
51352
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
51357
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
51353
51358
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
51354
51359
  "creatives.componentsV2.CapTagList.Ok": "Ok",
51355
51360
  "creatives.componentsV2.CapTagList.all": "All",
@@ -53042,6 +53047,7 @@ new message content.",
53042
53047
  "creatives.containersV2.WeChat.templateName": "Template Name",
53043
53048
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
53044
53049
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
53050
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
53045
53051
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
53046
53052
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
53047
53053
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -53427,7 +53433,6 @@ new message content.",
53427
53433
  "email": [Function],
53428
53434
  "facebookPreview": [Function],
53429
53435
  "gallery": [Function],
53430
- "inApp": [Function],
53431
53436
  "language": [Function],
53432
53437
  "navigationConfig": [Function],
53433
53438
  "previewAndTest": [Function],
@@ -55725,7 +55730,7 @@ new message content.",
55725
55730
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
55726
55731
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
55727
55732
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
55728
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
55733
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
55729
55734
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
55730
55735
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
55731
55736
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -55733,13 +55738,13 @@ new message content.",
55733
55738
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
55734
55739
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
55735
55740
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
55736
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
55741
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
55737
55742
  "creatives.componentsV2.CapImageUpload.or": "OR",
55738
55743
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
55739
55744
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
55740
55745
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
55741
55746
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
55742
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
55747
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
55743
55748
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
55744
55749
  "creatives.componentsV2.CapTagList.Ok": "Ok",
55745
55750
  "creatives.componentsV2.CapTagList.all": "All",
@@ -57432,6 +57437,7 @@ new message content.",
57432
57437
  "creatives.containersV2.WeChat.templateName": "Template Name",
57433
57438
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
57434
57439
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
57440
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
57435
57441
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
57436
57442
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
57437
57443
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -59128,7 +59134,7 @@ exports[`line wrapper test/> should render line component old 2`] = `
59128
59134
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
59129
59135
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
59130
59136
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
59131
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
59137
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
59132
59138
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
59133
59139
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
59134
59140
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -59136,13 +59142,13 @@ exports[`line wrapper test/> should render line component old 2`] = `
59136
59142
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
59137
59143
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
59138
59144
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
59139
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
59145
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
59140
59146
  "creatives.componentsV2.CapImageUpload.or": "OR",
59141
59147
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
59142
59148
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
59143
59149
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
59144
59150
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
59145
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
59151
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
59146
59152
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
59147
59153
  "creatives.componentsV2.CapTagList.Ok": "Ok",
59148
59154
  "creatives.componentsV2.CapTagList.all": "All",
@@ -60835,6 +60841,7 @@ new message content.",
60835
60841
  "creatives.containersV2.WeChat.templateName": "Template Name",
60836
60842
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
60837
60843
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
60844
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
60838
60845
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
60839
60846
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
60840
60847
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -61220,7 +61227,6 @@ new message content.",
61220
61227
  "email": [Function],
61221
61228
  "facebookPreview": [Function],
61222
61229
  "gallery": [Function],
61223
- "inApp": [Function],
61224
61230
  "language": [Function],
61225
61231
  "navigationConfig": [Function],
61226
61232
  "previewAndTest": [Function],
@@ -63936,7 +63942,7 @@ new message content.",
63936
63942
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
63937
63943
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
63938
63944
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
63939
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
63945
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
63940
63946
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
63941
63947
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
63942
63948
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -63944,13 +63950,13 @@ new message content.",
63944
63950
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
63945
63951
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
63946
63952
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
63947
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
63953
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
63948
63954
  "creatives.componentsV2.CapImageUpload.or": "OR",
63949
63955
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
63950
63956
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
63951
63957
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
63952
63958
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
63953
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
63959
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
63954
63960
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
63955
63961
  "creatives.componentsV2.CapTagList.Ok": "Ok",
63956
63962
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65643,6 +65649,7 @@ new message content.",
65643
65649
  "creatives.containersV2.WeChat.templateName": "Template Name",
65644
65650
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65645
65651
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65652
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
65646
65653
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65647
65654
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65648
65655
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -67339,7 +67346,7 @@ exports[`line wrapper test/> should render line component old 3`] = `
67339
67346
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
67340
67347
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
67341
67348
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
67342
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
67349
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
67343
67350
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
67344
67351
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
67345
67352
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -67347,13 +67354,13 @@ exports[`line wrapper test/> should render line component old 3`] = `
67347
67354
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
67348
67355
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
67349
67356
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
67350
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
67357
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
67351
67358
  "creatives.componentsV2.CapImageUpload.or": "OR",
67352
67359
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
67353
67360
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
67354
67361
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
67355
67362
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
67356
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
67363
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
67357
67364
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
67358
67365
  "creatives.componentsV2.CapTagList.Ok": "Ok",
67359
67366
  "creatives.componentsV2.CapTagList.all": "All",
@@ -69046,6 +69053,7 @@ new message content.",
69046
69053
  "creatives.containersV2.WeChat.templateName": "Template Name",
69047
69054
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
69048
69055
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
69056
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
69049
69057
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
69050
69058
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
69051
69059
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -69431,7 +69439,6 @@ new message content.",
69431
69439
  "email": [Function],
69432
69440
  "facebookPreview": [Function],
69433
69441
  "gallery": [Function],
69434
- "inApp": [Function],
69435
69442
  "language": [Function],
69436
69443
  "navigationConfig": [Function],
69437
69444
  "previewAndTest": [Function],
@@ -72389,7 +72396,7 @@ new message content.",
72389
72396
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
72390
72397
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
72391
72398
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
72392
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
72399
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
72393
72400
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
72394
72401
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
72395
72402
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -72397,13 +72404,13 @@ new message content.",
72397
72404
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
72398
72405
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
72399
72406
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
72400
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
72407
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
72401
72408
  "creatives.componentsV2.CapImageUpload.or": "OR",
72402
72409
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
72403
72410
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
72404
72411
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
72405
72412
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
72406
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
72413
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
72407
72414
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
72408
72415
  "creatives.componentsV2.CapTagList.Ok": "Ok",
72409
72416
  "creatives.componentsV2.CapTagList.all": "All",
@@ -74096,6 +74103,7 @@ new message content.",
74096
74103
  "creatives.containersV2.WeChat.templateName": "Template Name",
74097
74104
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
74098
74105
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
74106
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
74099
74107
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
74100
74108
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
74101
74109
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -75827,7 +75835,7 @@ exports[`line wrapper test/> should render line component old 4`] = `
75827
75835
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
75828
75836
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
75829
75837
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
75830
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
75838
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
75831
75839
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
75832
75840
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
75833
75841
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -75835,13 +75843,13 @@ exports[`line wrapper test/> should render line component old 4`] = `
75835
75843
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
75836
75844
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
75837
75845
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
75838
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
75846
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
75839
75847
  "creatives.componentsV2.CapImageUpload.or": "OR",
75840
75848
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
75841
75849
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
75842
75850
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
75843
75851
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
75844
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
75852
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
75845
75853
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
75846
75854
  "creatives.componentsV2.CapTagList.Ok": "Ok",
75847
75855
  "creatives.componentsV2.CapTagList.all": "All",
@@ -77534,6 +77542,7 @@ new message content.",
77534
77542
  "creatives.containersV2.WeChat.templateName": "Template Name",
77535
77543
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
77536
77544
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
77545
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
77537
77546
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
77538
77547
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
77539
77548
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -77919,7 +77928,6 @@ new message content.",
77919
77928
  "email": [Function],
77920
77929
  "facebookPreview": [Function],
77921
77930
  "gallery": [Function],
77922
- "inApp": [Function],
77923
77931
  "language": [Function],
77924
77932
  "navigationConfig": [Function],
77925
77933
  "previewAndTest": [Function],
@@ -80997,7 +81005,7 @@ new message content.",
80997
81005
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
80998
81006
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
80999
81007
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
81000
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
81008
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
81001
81009
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
81002
81010
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
81003
81011
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -81005,13 +81013,13 @@ new message content.",
81005
81013
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
81006
81014
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
81007
81015
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
81008
- "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
81016
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
81009
81017
  "creatives.componentsV2.CapImageUpload.or": "OR",
81010
81018
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
81011
81019
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
81012
81020
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
81013
81021
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
81014
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
81022
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
81015
81023
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
81016
81024
  "creatives.componentsV2.CapTagList.Ok": "Ok",
81017
81025
  "creatives.componentsV2.CapTagList.all": "All",
@@ -82704,6 +82712,7 @@ new message content.",
82704
82712
  "creatives.containersV2.WeChat.templateName": "Template Name",
82705
82713
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
82706
82714
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
82715
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
82707
82716
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
82708
82717
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
82709
82718
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",