@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
@@ -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 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[`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 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],
@@ -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 up to: {size}",
6513
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {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 up to: 2MB",
6521
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 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 up to: 5MB",
6527
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6528
6528
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6529
6529
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6530
6530
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8217,7 +8217,6 @@ 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",
8221
8220
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8222
8221
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8223
8222
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9209,7 +9208,7 @@ exports[`line wrapper test/> should render line component new 2`] = `
9209
9208
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9210
9209
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9211
9210
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9212
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9211
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9213
9212
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9214
9213
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9215
9214
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9217,13 +9216,13 @@ exports[`line wrapper test/> should render line component new 2`] = `
9217
9216
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9218
9217
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9219
9218
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9220
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9219
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9221
9220
  "creatives.componentsV2.CapImageUpload.or": "OR",
9222
9221
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9223
9222
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9224
9223
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9225
9224
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9226
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9225
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9227
9226
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9228
9227
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9229
9228
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10916,7 +10915,6 @@ new message content.",
10916
10915
  "creatives.containersV2.WeChat.templateName": "Template Name",
10917
10916
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10918
10917
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10919
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10920
10918
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10921
10919
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10922
10920
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11302,6 +11300,7 @@ new message content.",
11302
11300
  "email": [Function],
11303
11301
  "facebookPreview": [Function],
11304
11302
  "gallery": [Function],
11303
+ "inApp": [Function],
11305
11304
  "language": [Function],
11306
11305
  "navigationConfig": [Function],
11307
11306
  "previewAndTest": [Function],
@@ -15714,7 +15713,7 @@ new message content.",
15714
15713
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
15715
15714
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
15716
15715
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
15717
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
15716
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
15718
15717
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
15719
15718
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
15720
15719
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -15722,13 +15721,13 @@ new message content.",
15722
15721
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
15723
15722
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
15724
15723
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
15725
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
15724
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
15726
15725
  "creatives.componentsV2.CapImageUpload.or": "OR",
15727
15726
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
15728
15727
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
15729
15728
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
15730
15729
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
15731
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
15730
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
15732
15731
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
15733
15732
  "creatives.componentsV2.CapTagList.Ok": "Ok",
15734
15733
  "creatives.componentsV2.CapTagList.all": "All",
@@ -17421,7 +17420,6 @@ new message content.",
17421
17420
  "creatives.containersV2.WeChat.templateName": "Template Name",
17422
17421
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
17423
17422
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
17424
- "creatives.containersV2.WebPush.addLabels": "Add labels",
17425
17423
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
17426
17424
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
17427
17425
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18413,7 +18411,7 @@ exports[`line wrapper test/> should render line component new 3`] = `
18413
18411
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
18414
18412
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
18415
18413
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
18416
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
18414
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
18417
18415
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
18418
18416
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
18419
18417
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -18421,13 +18419,13 @@ exports[`line wrapper test/> should render line component new 3`] = `
18421
18419
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
18422
18420
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
18423
18421
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
18424
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
18422
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
18425
18423
  "creatives.componentsV2.CapImageUpload.or": "OR",
18426
18424
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
18427
18425
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
18428
18426
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
18429
18427
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
18430
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
18428
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
18431
18429
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
18432
18430
  "creatives.componentsV2.CapTagList.Ok": "Ok",
18433
18431
  "creatives.componentsV2.CapTagList.all": "All",
@@ -20120,7 +20118,6 @@ new message content.",
20120
20118
  "creatives.containersV2.WeChat.templateName": "Template Name",
20121
20119
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
20122
20120
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
20123
- "creatives.containersV2.WebPush.addLabels": "Add labels",
20124
20121
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
20125
20122
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
20126
20123
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -20506,6 +20503,7 @@ new message content.",
20506
20503
  "email": [Function],
20507
20504
  "facebookPreview": [Function],
20508
20505
  "gallery": [Function],
20506
+ "inApp": [Function],
20509
20507
  "language": [Function],
20510
20508
  "navigationConfig": [Function],
20511
20509
  "previewAndTest": [Function],
@@ -25160,7 +25158,7 @@ new message content.",
25160
25158
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
25161
25159
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
25162
25160
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
25163
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
25161
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
25164
25162
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
25165
25163
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
25166
25164
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -25168,13 +25166,13 @@ new message content.",
25168
25166
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
25169
25167
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
25170
25168
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
25171
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
25169
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
25172
25170
  "creatives.componentsV2.CapImageUpload.or": "OR",
25173
25171
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
25174
25172
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
25175
25173
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
25176
25174
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
25177
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
25175
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
25178
25176
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
25179
25177
  "creatives.componentsV2.CapTagList.Ok": "Ok",
25180
25178
  "creatives.componentsV2.CapTagList.all": "All",
@@ -26867,7 +26865,6 @@ new message content.",
26867
26865
  "creatives.containersV2.WeChat.templateName": "Template Name",
26868
26866
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
26869
26867
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
26870
- "creatives.containersV2.WebPush.addLabels": "Add labels",
26871
26868
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
26872
26869
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
26873
26870
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -27894,7 +27891,7 @@ exports[`line wrapper test/> should render line component new 4`] = `
27894
27891
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
27895
27892
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
27896
27893
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
27897
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
27894
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
27898
27895
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
27899
27896
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
27900
27897
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -27902,13 +27899,13 @@ exports[`line wrapper test/> should render line component new 4`] = `
27902
27899
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
27903
27900
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
27904
27901
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
27905
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
27902
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
27906
27903
  "creatives.componentsV2.CapImageUpload.or": "OR",
27907
27904
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
27908
27905
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
27909
27906
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
27910
27907
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
27911
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
27908
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
27912
27909
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
27913
27910
  "creatives.componentsV2.CapTagList.Ok": "Ok",
27914
27911
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29601,7 +29598,6 @@ new message content.",
29601
29598
  "creatives.containersV2.WeChat.templateName": "Template Name",
29602
29599
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29603
29600
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29604
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29605
29601
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29606
29602
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29607
29603
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -29987,6 +29983,7 @@ new message content.",
29987
29983
  "email": [Function],
29988
29984
  "facebookPreview": [Function],
29989
29985
  "gallery": [Function],
29986
+ "inApp": [Function],
29990
29987
  "language": [Function],
29991
29988
  "navigationConfig": [Function],
29992
29989
  "previewAndTest": [Function],
@@ -36862,7 +36859,7 @@ new message content.",
36862
36859
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
36863
36860
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
36864
36861
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
36865
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
36862
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
36866
36863
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
36867
36864
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
36868
36865
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -36870,13 +36867,13 @@ new message content.",
36870
36867
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
36871
36868
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
36872
36869
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
36873
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
36870
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
36874
36871
  "creatives.componentsV2.CapImageUpload.or": "OR",
36875
36872
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
36876
36873
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
36877
36874
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
36878
36875
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
36879
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
36876
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
36880
36877
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
36881
36878
  "creatives.componentsV2.CapTagList.Ok": "Ok",
36882
36879
  "creatives.componentsV2.CapTagList.all": "All",
@@ -38569,7 +38566,6 @@ new message content.",
38569
38566
  "creatives.containersV2.WeChat.templateName": "Template Name",
38570
38567
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
38571
38568
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
38572
- "creatives.containersV2.WebPush.addLabels": "Add labels",
38573
38569
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
38574
38570
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
38575
38571
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -39596,7 +39592,7 @@ exports[`line wrapper test/> should render line component new 5`] = `
39596
39592
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39597
39593
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39598
39594
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39599
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39595
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39600
39596
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39601
39597
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39602
39598
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39604,13 +39600,13 @@ exports[`line wrapper test/> should render line component new 5`] = `
39604
39600
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39605
39601
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39606
39602
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39607
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39603
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39608
39604
  "creatives.componentsV2.CapImageUpload.or": "OR",
39609
39605
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39610
39606
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39611
39607
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39612
39608
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39613
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39609
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39614
39610
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39615
39611
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39616
39612
  "creatives.componentsV2.CapTagList.all": "All",
@@ -41303,7 +41299,6 @@ new message content.",
41303
41299
  "creatives.containersV2.WeChat.templateName": "Template Name",
41304
41300
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
41305
41301
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
41306
- "creatives.containersV2.WebPush.addLabels": "Add labels",
41307
41302
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
41308
41303
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
41309
41304
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -41689,6 +41684,7 @@ new message content.",
41689
41684
  "email": [Function],
41690
41685
  "facebookPreview": [Function],
41691
41686
  "gallery": [Function],
41687
+ "inApp": [Function],
41692
41688
  "language": [Function],
41693
41689
  "navigationConfig": [Function],
41694
41690
  "previewAndTest": [Function],
@@ -48606,7 +48602,7 @@ new message content.",
48606
48602
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
48607
48603
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
48608
48604
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
48609
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
48605
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
48610
48606
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
48611
48607
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
48612
48608
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -48614,13 +48610,13 @@ new message content.",
48614
48610
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
48615
48611
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
48616
48612
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
48617
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
48613
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
48618
48614
  "creatives.componentsV2.CapImageUpload.or": "OR",
48619
48615
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
48620
48616
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
48621
48617
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
48622
48618
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
48623
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
48619
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
48624
48620
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
48625
48621
  "creatives.componentsV2.CapTagList.Ok": "Ok",
48626
48622
  "creatives.componentsV2.CapTagList.all": "All",
@@ -50313,7 +50309,6 @@ new message content.",
50313
50309
  "creatives.containersV2.WeChat.templateName": "Template Name",
50314
50310
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50315
50311
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50316
- "creatives.containersV2.WebPush.addLabels": "Add labels",
50317
50312
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50318
50313
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50319
50314
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -51340,7 +51335,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
51340
51335
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
51341
51336
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
51342
51337
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
51343
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
51338
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
51344
51339
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
51345
51340
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
51346
51341
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -51348,13 +51343,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
51348
51343
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
51349
51344
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
51350
51345
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
51351
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
51346
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
51352
51347
  "creatives.componentsV2.CapImageUpload.or": "OR",
51353
51348
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
51354
51349
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
51355
51350
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
51356
51351
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
51357
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
51352
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
51358
51353
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
51359
51354
  "creatives.componentsV2.CapTagList.Ok": "Ok",
51360
51355
  "creatives.componentsV2.CapTagList.all": "All",
@@ -53047,7 +53042,6 @@ new message content.",
53047
53042
  "creatives.containersV2.WeChat.templateName": "Template Name",
53048
53043
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
53049
53044
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
53050
- "creatives.containersV2.WebPush.addLabels": "Add labels",
53051
53045
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
53052
53046
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
53053
53047
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -53433,6 +53427,7 @@ new message content.",
53433
53427
  "email": [Function],
53434
53428
  "facebookPreview": [Function],
53435
53429
  "gallery": [Function],
53430
+ "inApp": [Function],
53436
53431
  "language": [Function],
53437
53432
  "navigationConfig": [Function],
53438
53433
  "previewAndTest": [Function],
@@ -55730,7 +55725,7 @@ new message content.",
55730
55725
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
55731
55726
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
55732
55727
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
55733
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
55728
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
55734
55729
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
55735
55730
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
55736
55731
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -55738,13 +55733,13 @@ new message content.",
55738
55733
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
55739
55734
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
55740
55735
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
55741
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
55736
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
55742
55737
  "creatives.componentsV2.CapImageUpload.or": "OR",
55743
55738
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
55744
55739
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
55745
55740
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
55746
55741
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
55747
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
55742
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
55748
55743
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
55749
55744
  "creatives.componentsV2.CapTagList.Ok": "Ok",
55750
55745
  "creatives.componentsV2.CapTagList.all": "All",
@@ -57437,7 +57432,6 @@ new message content.",
57437
57432
  "creatives.containersV2.WeChat.templateName": "Template Name",
57438
57433
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
57439
57434
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
57440
- "creatives.containersV2.WebPush.addLabels": "Add labels",
57441
57435
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
57442
57436
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
57443
57437
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -59134,7 +59128,7 @@ exports[`line wrapper test/> should render line component old 2`] = `
59134
59128
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
59135
59129
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
59136
59130
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
59137
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
59131
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
59138
59132
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
59139
59133
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
59140
59134
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -59142,13 +59136,13 @@ exports[`line wrapper test/> should render line component old 2`] = `
59142
59136
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
59143
59137
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
59144
59138
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
59145
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
59139
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
59146
59140
  "creatives.componentsV2.CapImageUpload.or": "OR",
59147
59141
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
59148
59142
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
59149
59143
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
59150
59144
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
59151
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
59145
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
59152
59146
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
59153
59147
  "creatives.componentsV2.CapTagList.Ok": "Ok",
59154
59148
  "creatives.componentsV2.CapTagList.all": "All",
@@ -60841,7 +60835,6 @@ new message content.",
60841
60835
  "creatives.containersV2.WeChat.templateName": "Template Name",
60842
60836
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
60843
60837
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
60844
- "creatives.containersV2.WebPush.addLabels": "Add labels",
60845
60838
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
60846
60839
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
60847
60840
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -61227,6 +61220,7 @@ new message content.",
61227
61220
  "email": [Function],
61228
61221
  "facebookPreview": [Function],
61229
61222
  "gallery": [Function],
61223
+ "inApp": [Function],
61230
61224
  "language": [Function],
61231
61225
  "navigationConfig": [Function],
61232
61226
  "previewAndTest": [Function],
@@ -63942,7 +63936,7 @@ new message content.",
63942
63936
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
63943
63937
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
63944
63938
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
63945
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
63939
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
63946
63940
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
63947
63941
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
63948
63942
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -63950,13 +63944,13 @@ new message content.",
63950
63944
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
63951
63945
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
63952
63946
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
63953
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
63947
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
63954
63948
  "creatives.componentsV2.CapImageUpload.or": "OR",
63955
63949
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
63956
63950
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
63957
63951
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
63958
63952
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
63959
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
63953
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
63960
63954
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
63961
63955
  "creatives.componentsV2.CapTagList.Ok": "Ok",
63962
63956
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65649,7 +65643,6 @@ new message content.",
65649
65643
  "creatives.containersV2.WeChat.templateName": "Template Name",
65650
65644
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65651
65645
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65652
- "creatives.containersV2.WebPush.addLabels": "Add labels",
65653
65646
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65654
65647
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65655
65648
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -67346,7 +67339,7 @@ exports[`line wrapper test/> should render line component old 3`] = `
67346
67339
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
67347
67340
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
67348
67341
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
67349
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
67342
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
67350
67343
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
67351
67344
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
67352
67345
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -67354,13 +67347,13 @@ exports[`line wrapper test/> should render line component old 3`] = `
67354
67347
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
67355
67348
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
67356
67349
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
67357
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
67350
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
67358
67351
  "creatives.componentsV2.CapImageUpload.or": "OR",
67359
67352
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
67360
67353
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
67361
67354
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
67362
67355
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
67363
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
67356
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
67364
67357
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
67365
67358
  "creatives.componentsV2.CapTagList.Ok": "Ok",
67366
67359
  "creatives.componentsV2.CapTagList.all": "All",
@@ -69053,7 +69046,6 @@ new message content.",
69053
69046
  "creatives.containersV2.WeChat.templateName": "Template Name",
69054
69047
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
69055
69048
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
69056
- "creatives.containersV2.WebPush.addLabels": "Add labels",
69057
69049
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
69058
69050
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
69059
69051
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -69439,6 +69431,7 @@ new message content.",
69439
69431
  "email": [Function],
69440
69432
  "facebookPreview": [Function],
69441
69433
  "gallery": [Function],
69434
+ "inApp": [Function],
69442
69435
  "language": [Function],
69443
69436
  "navigationConfig": [Function],
69444
69437
  "previewAndTest": [Function],
@@ -72396,7 +72389,7 @@ new message content.",
72396
72389
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
72397
72390
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
72398
72391
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
72399
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
72392
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
72400
72393
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
72401
72394
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
72402
72395
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -72404,13 +72397,13 @@ new message content.",
72404
72397
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
72405
72398
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
72406
72399
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
72407
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
72400
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
72408
72401
  "creatives.componentsV2.CapImageUpload.or": "OR",
72409
72402
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
72410
72403
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
72411
72404
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
72412
72405
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
72413
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
72406
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
72414
72407
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
72415
72408
  "creatives.componentsV2.CapTagList.Ok": "Ok",
72416
72409
  "creatives.componentsV2.CapTagList.all": "All",
@@ -74103,7 +74096,6 @@ new message content.",
74103
74096
  "creatives.containersV2.WeChat.templateName": "Template Name",
74104
74097
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
74105
74098
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
74106
- "creatives.containersV2.WebPush.addLabels": "Add labels",
74107
74099
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
74108
74100
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
74109
74101
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -75835,7 +75827,7 @@ exports[`line wrapper test/> should render line component old 4`] = `
75835
75827
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
75836
75828
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
75837
75829
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
75838
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
75830
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
75839
75831
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
75840
75832
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
75841
75833
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -75843,13 +75835,13 @@ exports[`line wrapper test/> should render line component old 4`] = `
75843
75835
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
75844
75836
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
75845
75837
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
75846
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
75838
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
75847
75839
  "creatives.componentsV2.CapImageUpload.or": "OR",
75848
75840
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
75849
75841
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
75850
75842
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
75851
75843
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
75852
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
75844
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
75853
75845
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
75854
75846
  "creatives.componentsV2.CapTagList.Ok": "Ok",
75855
75847
  "creatives.componentsV2.CapTagList.all": "All",
@@ -77542,7 +77534,6 @@ new message content.",
77542
77534
  "creatives.containersV2.WeChat.templateName": "Template Name",
77543
77535
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
77544
77536
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
77545
- "creatives.containersV2.WebPush.addLabels": "Add labels",
77546
77537
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
77547
77538
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
77548
77539
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -77928,6 +77919,7 @@ new message content.",
77928
77919
  "email": [Function],
77929
77920
  "facebookPreview": [Function],
77930
77921
  "gallery": [Function],
77922
+ "inApp": [Function],
77931
77923
  "language": [Function],
77932
77924
  "navigationConfig": [Function],
77933
77925
  "previewAndTest": [Function],
@@ -81005,7 +80997,7 @@ new message content.",
81005
80997
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
81006
80998
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
81007
80999
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
81008
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
81000
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
81009
81001
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
81010
81002
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
81011
81003
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -81013,13 +81005,13 @@ new message content.",
81013
81005
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
81014
81006
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
81015
81007
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
81016
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
81008
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
81017
81009
  "creatives.componentsV2.CapImageUpload.or": "OR",
81018
81010
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
81019
81011
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
81020
81012
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
81021
81013
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
81022
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
81014
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
81023
81015
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
81024
81016
  "creatives.componentsV2.CapTagList.Ok": "Ok",
81025
81017
  "creatives.componentsV2.CapTagList.all": "All",
@@ -82712,7 +82704,6 @@ new message content.",
82712
82704
  "creatives.containersV2.WeChat.templateName": "Template Name",
82713
82705
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
82714
82706
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
82715
- "creatives.containersV2.WebPush.addLabels": "Add labels",
82716
82707
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
82717
82708
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
82718
82709
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",