@capillarytech/creatives-library 8.0.259 → 8.0.260-alpha.0

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 (157) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/constants/unified.js +1 -2
  4. package/initialReducer.js +0 -2
  5. package/package.json +1 -1
  6. package/services/api.js +0 -10
  7. package/services/tests/api.test.js +0 -34
  8. package/translations/en.json +3 -4
  9. package/utils/common.js +0 -12
  10. package/utils/commonUtils.js +5 -28
  11. package/utils/tests/commonUtil.test.js +0 -224
  12. package/utils/transformTemplateConfig.js +10 -0
  13. package/v2Components/CapDeviceContent/index.js +56 -61
  14. package/v2Components/CapTagList/index.js +1 -6
  15. package/v2Components/CapTagListWithInput/index.js +1 -5
  16. package/v2Components/CapTagListWithInput/messages.js +1 -1
  17. package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
  18. package/v2Components/ErrorInfoNote/index.js +72 -457
  19. package/v2Components/ErrorInfoNote/messages.js +6 -36
  20. package/v2Components/ErrorInfoNote/style.scss +6 -282
  21. package/v2Components/FormBuilder/index.js +4 -4
  22. package/v2Components/FormBuilder/tests/index.test.js +4 -13
  23. package/v2Components/HtmlEditor/HTMLEditor.js +94 -547
  24. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1441
  25. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +16 -27
  26. package/v2Components/HtmlEditor/_htmlEditor.scss +45 -108
  27. package/v2Components/HtmlEditor/_index.lazy.scss +1 -0
  28. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +102 -23
  29. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +140 -148
  30. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
  31. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  32. package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +0 -9
  33. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +4 -4
  34. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -22
  35. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
  36. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
  37. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
  38. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  39. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
  40. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
  41. package/v2Components/HtmlEditor/components/PreviewPane/index.js +43 -22
  42. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  43. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +152 -0
  44. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/_validationErrorDisplay.scss +0 -1
  45. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
  46. package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +34 -50
  47. package/v2Components/HtmlEditor/components/ValidationPanel/index.js +41 -70
  48. package/v2Components/HtmlEditor/constants.js +20 -42
  49. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
  50. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +16 -120
  51. package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
  52. package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
  53. package/v2Components/HtmlEditor/hooks/useValidation.js +53 -189
  54. package/v2Components/HtmlEditor/index.js +1 -1
  55. package/v2Components/HtmlEditor/messages.js +94 -92
  56. package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +45 -94
  57. package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +0 -134
  58. package/v2Components/HtmlEditor/utils/contentSanitizer.js +41 -40
  59. package/v2Components/HtmlEditor/utils/htmlValidator.js +72 -71
  60. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +102 -134
  61. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
  62. package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -66
  63. package/v2Components/MobilePushPreviewV2/index.js +7 -32
  64. package/v2Components/TemplatePreview/_templatePreview.scss +24 -55
  65. package/v2Components/TemplatePreview/index.js +32 -47
  66. package/v2Components/TemplatePreview/messages.js +0 -4
  67. package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +0 -1
  68. package/v2Containers/BeeEditor/index.js +90 -172
  69. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
  70. package/v2Containers/CreativesContainer/SlideBoxContent.js +52 -128
  71. package/v2Containers/CreativesContainer/SlideBoxFooter.js +13 -163
  72. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -2
  73. package/v2Containers/CreativesContainer/constants.js +0 -1
  74. package/v2Containers/CreativesContainer/index.js +46 -240
  75. package/v2Containers/CreativesContainer/messages.js +0 -8
  76. package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +2 -11
  77. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +50 -38
  78. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -106
  79. package/v2Containers/Email/actions.js +0 -7
  80. package/v2Containers/Email/constants.js +1 -5
  81. package/v2Containers/Email/index.js +30 -239
  82. package/v2Containers/Email/messages.js +0 -32
  83. package/v2Containers/Email/reducer.js +1 -12
  84. package/v2Containers/Email/sagas.js +7 -61
  85. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
  86. package/v2Containers/Email/tests/reducer.test.js +0 -46
  87. package/v2Containers/Email/tests/sagas.test.js +29 -320
  88. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +21 -211
  89. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
  90. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
  91. package/v2Containers/EmailWrapper/constants.js +0 -2
  92. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +77 -629
  93. package/v2Containers/EmailWrapper/index.js +23 -103
  94. package/v2Containers/EmailWrapper/messages.js +1 -65
  95. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +214 -0
  96. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -594
  97. package/v2Containers/InApp/actions.js +0 -7
  98. package/v2Containers/InApp/constants.js +4 -20
  99. package/v2Containers/InApp/index.js +360 -804
  100. package/v2Containers/InApp/index.scss +3 -4
  101. package/v2Containers/InApp/messages.js +3 -7
  102. package/v2Containers/InApp/reducer.js +3 -21
  103. package/v2Containers/InApp/sagas.js +9 -29
  104. package/v2Containers/InApp/selectors.js +5 -25
  105. package/v2Containers/InApp/tests/index.test.js +71 -152
  106. package/v2Containers/InApp/tests/reducer.test.js +0 -34
  107. package/v2Containers/InApp/tests/sagas.test.js +9 -61
  108. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +12 -39
  109. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -10
  110. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -102
  111. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -81
  112. package/v2Containers/MobilePushNew/index.js +2 -3
  113. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +178 -262
  114. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
  115. package/v2Containers/SmsTrai/Edit/index.js +1 -2
  116. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +111 -468
  117. package/v2Containers/TagList/index.js +19 -62
  118. package/v2Containers/Templates/_templates.scss +1 -60
  119. package/v2Containers/Templates/index.js +4 -89
  120. package/v2Containers/Templates/messages.js +0 -4
  121. package/v2Containers/WebPush/Create/messages.js +8 -0
  122. package/v2Containers/WebPush/Create/preview/PreviewControls.js +2 -2
  123. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +3 -1
  124. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +5 -1
  125. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +5 -1
  126. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +5 -1
  127. package/v2Containers/WebPush/Create/preview/preview.scss +7 -0
  128. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +734 -1306
  129. package/v2Components/ErrorInfoNote/constants.js +0 -1
  130. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +0 -874
  131. package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +0 -6
  132. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -255
  133. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -364
  134. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
  135. package/v2Components/HtmlEditor/utils/validationConstants.js +0 -40
  136. package/v2Containers/BeePopupEditor/_beePopupEditor.scss +0 -14
  137. package/v2Containers/BeePopupEditor/constants.js +0 -10
  138. package/v2Containers/BeePopupEditor/index.js +0 -194
  139. package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
  140. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1285
  141. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +0 -1880
  142. package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +0 -520
  143. package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +0 -643
  144. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
  145. package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
  146. package/v2Containers/InApp/tests/selectors.test.js +0 -612
  147. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -151
  148. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
  149. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -23
  150. package/v2Containers/InAppWrapper/constants.js +0 -16
  151. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
  152. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
  153. package/v2Containers/InAppWrapper/index.js +0 -148
  154. package/v2Containers/InAppWrapper/messages.js +0 -49
  155. package/v2Containers/InappAdvance/index.js +0 -1099
  156. package/v2Containers/InappAdvance/index.scss +0 -10
  157. 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 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,7 +2281,6 @@ new message content.",
2282
2281
  "email": [Function],
2283
2282
  "facebookPreview": [Function],
2284
2283
  "gallery": [Function],
2285
- "inApp": [Function],
2286
2284
  "language": [Function],
2287
2285
  "navigationConfig": [Function],
2288
2286
  "previewAndTest": [Function],
@@ -6511,7 +6509,7 @@ new message content.",
6511
6509
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
6512
6510
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
6513
6511
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
6514
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
6512
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
6515
6513
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
6516
6514
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
6517
6515
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -6519,13 +6517,13 @@ new message content.",
6519
6517
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
6520
6518
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
6521
6519
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
6522
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
6520
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
6523
6521
  "creatives.componentsV2.CapImageUpload.or": "OR",
6524
6522
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
6525
6523
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
6526
6524
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
6527
6525
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
6528
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
6526
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
6529
6527
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
6530
6528
  "creatives.componentsV2.CapTagList.Ok": "Ok",
6531
6529
  "creatives.componentsV2.CapTagList.all": "All",
@@ -8218,7 +8216,6 @@ new message content.",
8218
8216
  "creatives.containersV2.WeChat.templateName": "Template Name",
8219
8217
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
8220
8218
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
8221
- "creatives.containersV2.WebPush.addLabels": "Add labels",
8222
8219
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
8223
8220
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
8224
8221
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9210,7 +9207,7 @@ exports[`line wrapper test/> should render line component new 2`] = `
9210
9207
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
9211
9208
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
9212
9209
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
9213
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
9210
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
9214
9211
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
9215
9212
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
9216
9213
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -9218,13 +9215,13 @@ exports[`line wrapper test/> should render line component new 2`] = `
9218
9215
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
9219
9216
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
9220
9217
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
9221
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
9218
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
9222
9219
  "creatives.componentsV2.CapImageUpload.or": "OR",
9223
9220
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
9224
9221
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
9225
9222
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
9226
9223
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
9227
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
9224
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
9228
9225
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
9229
9226
  "creatives.componentsV2.CapTagList.Ok": "Ok",
9230
9227
  "creatives.componentsV2.CapTagList.all": "All",
@@ -10917,7 +10914,6 @@ new message content.",
10917
10914
  "creatives.containersV2.WeChat.templateName": "Template Name",
10918
10915
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
10919
10916
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
10920
- "creatives.containersV2.WebPush.addLabels": "Add labels",
10921
10917
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
10922
10918
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
10923
10919
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11303,7 +11299,6 @@ new message content.",
11303
11299
  "email": [Function],
11304
11300
  "facebookPreview": [Function],
11305
11301
  "gallery": [Function],
11306
- "inApp": [Function],
11307
11302
  "language": [Function],
11308
11303
  "navigationConfig": [Function],
11309
11304
  "previewAndTest": [Function],
@@ -15716,7 +15711,7 @@ new message content.",
15716
15711
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
15717
15712
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
15718
15713
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
15719
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
15714
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
15720
15715
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
15721
15716
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
15722
15717
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -15724,13 +15719,13 @@ new message content.",
15724
15719
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
15725
15720
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
15726
15721
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
15727
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
15722
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
15728
15723
  "creatives.componentsV2.CapImageUpload.or": "OR",
15729
15724
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
15730
15725
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
15731
15726
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
15732
15727
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
15733
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
15728
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
15734
15729
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
15735
15730
  "creatives.componentsV2.CapTagList.Ok": "Ok",
15736
15731
  "creatives.componentsV2.CapTagList.all": "All",
@@ -17423,7 +17418,6 @@ new message content.",
17423
17418
  "creatives.containersV2.WeChat.templateName": "Template Name",
17424
17419
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
17425
17420
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
17426
- "creatives.containersV2.WebPush.addLabels": "Add labels",
17427
17421
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
17428
17422
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
17429
17423
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18415,7 +18409,7 @@ exports[`line wrapper test/> should render line component new 3`] = `
18415
18409
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
18416
18410
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
18417
18411
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
18418
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
18412
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
18419
18413
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
18420
18414
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
18421
18415
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -18423,13 +18417,13 @@ exports[`line wrapper test/> should render line component new 3`] = `
18423
18417
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
18424
18418
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
18425
18419
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
18426
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
18420
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
18427
18421
  "creatives.componentsV2.CapImageUpload.or": "OR",
18428
18422
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
18429
18423
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
18430
18424
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
18431
18425
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
18432
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
18426
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
18433
18427
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
18434
18428
  "creatives.componentsV2.CapTagList.Ok": "Ok",
18435
18429
  "creatives.componentsV2.CapTagList.all": "All",
@@ -20122,7 +20116,6 @@ new message content.",
20122
20116
  "creatives.containersV2.WeChat.templateName": "Template Name",
20123
20117
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
20124
20118
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
20125
- "creatives.containersV2.WebPush.addLabels": "Add labels",
20126
20119
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
20127
20120
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
20128
20121
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -20508,7 +20501,6 @@ new message content.",
20508
20501
  "email": [Function],
20509
20502
  "facebookPreview": [Function],
20510
20503
  "gallery": [Function],
20511
- "inApp": [Function],
20512
20504
  "language": [Function],
20513
20505
  "navigationConfig": [Function],
20514
20506
  "previewAndTest": [Function],
@@ -25163,7 +25155,7 @@ new message content.",
25163
25155
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
25164
25156
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
25165
25157
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
25166
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
25158
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
25167
25159
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
25168
25160
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
25169
25161
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -25171,13 +25163,13 @@ new message content.",
25171
25163
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
25172
25164
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
25173
25165
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
25174
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
25166
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
25175
25167
  "creatives.componentsV2.CapImageUpload.or": "OR",
25176
25168
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
25177
25169
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
25178
25170
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
25179
25171
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
25180
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
25172
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
25181
25173
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
25182
25174
  "creatives.componentsV2.CapTagList.Ok": "Ok",
25183
25175
  "creatives.componentsV2.CapTagList.all": "All",
@@ -26870,7 +26862,6 @@ new message content.",
26870
26862
  "creatives.containersV2.WeChat.templateName": "Template Name",
26871
26863
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
26872
26864
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
26873
- "creatives.containersV2.WebPush.addLabels": "Add labels",
26874
26865
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
26875
26866
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
26876
26867
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -27897,7 +27888,7 @@ exports[`line wrapper test/> should render line component new 4`] = `
27897
27888
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
27898
27889
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
27899
27890
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
27900
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
27891
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
27901
27892
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
27902
27893
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
27903
27894
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -27905,13 +27896,13 @@ exports[`line wrapper test/> should render line component new 4`] = `
27905
27896
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
27906
27897
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
27907
27898
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
27908
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
27899
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
27909
27900
  "creatives.componentsV2.CapImageUpload.or": "OR",
27910
27901
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
27911
27902
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
27912
27903
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
27913
27904
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
27914
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
27905
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
27915
27906
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
27916
27907
  "creatives.componentsV2.CapTagList.Ok": "Ok",
27917
27908
  "creatives.componentsV2.CapTagList.all": "All",
@@ -29604,7 +29595,6 @@ new message content.",
29604
29595
  "creatives.containersV2.WeChat.templateName": "Template Name",
29605
29596
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
29606
29597
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
29607
- "creatives.containersV2.WebPush.addLabels": "Add labels",
29608
29598
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
29609
29599
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
29610
29600
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -29990,7 +29980,6 @@ new message content.",
29990
29980
  "email": [Function],
29991
29981
  "facebookPreview": [Function],
29992
29982
  "gallery": [Function],
29993
- "inApp": [Function],
29994
29983
  "language": [Function],
29995
29984
  "navigationConfig": [Function],
29996
29985
  "previewAndTest": [Function],
@@ -36866,7 +36855,7 @@ new message content.",
36866
36855
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
36867
36856
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
36868
36857
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
36869
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
36858
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
36870
36859
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
36871
36860
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
36872
36861
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -36874,13 +36863,13 @@ new message content.",
36874
36863
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
36875
36864
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
36876
36865
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
36877
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
36866
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
36878
36867
  "creatives.componentsV2.CapImageUpload.or": "OR",
36879
36868
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
36880
36869
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
36881
36870
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
36882
36871
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
36883
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
36872
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
36884
36873
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
36885
36874
  "creatives.componentsV2.CapTagList.Ok": "Ok",
36886
36875
  "creatives.componentsV2.CapTagList.all": "All",
@@ -38573,7 +38562,6 @@ new message content.",
38573
38562
  "creatives.containersV2.WeChat.templateName": "Template Name",
38574
38563
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
38575
38564
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
38576
- "creatives.containersV2.WebPush.addLabels": "Add labels",
38577
38565
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
38578
38566
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
38579
38567
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -39600,7 +39588,7 @@ exports[`line wrapper test/> should render line component new 5`] = `
39600
39588
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
39601
39589
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
39602
39590
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
39603
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
39591
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
39604
39592
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
39605
39593
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
39606
39594
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -39608,13 +39596,13 @@ exports[`line wrapper test/> should render line component new 5`] = `
39608
39596
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
39609
39597
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
39610
39598
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
39611
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
39599
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
39612
39600
  "creatives.componentsV2.CapImageUpload.or": "OR",
39613
39601
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
39614
39602
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
39615
39603
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
39616
39604
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
39617
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
39605
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
39618
39606
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
39619
39607
  "creatives.componentsV2.CapTagList.Ok": "Ok",
39620
39608
  "creatives.componentsV2.CapTagList.all": "All",
@@ -41307,7 +41295,6 @@ new message content.",
41307
41295
  "creatives.containersV2.WeChat.templateName": "Template Name",
41308
41296
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
41309
41297
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
41310
- "creatives.containersV2.WebPush.addLabels": "Add labels",
41311
41298
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
41312
41299
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
41313
41300
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -41693,7 +41680,6 @@ new message content.",
41693
41680
  "email": [Function],
41694
41681
  "facebookPreview": [Function],
41695
41682
  "gallery": [Function],
41696
- "inApp": [Function],
41697
41683
  "language": [Function],
41698
41684
  "navigationConfig": [Function],
41699
41685
  "previewAndTest": [Function],
@@ -48611,7 +48597,7 @@ new message content.",
48611
48597
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
48612
48598
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
48613
48599
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
48614
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
48600
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
48615
48601
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
48616
48602
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
48617
48603
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -48619,13 +48605,13 @@ new message content.",
48619
48605
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
48620
48606
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
48621
48607
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
48622
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
48608
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
48623
48609
  "creatives.componentsV2.CapImageUpload.or": "OR",
48624
48610
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
48625
48611
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
48626
48612
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
48627
48613
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
48628
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
48614
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
48629
48615
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
48630
48616
  "creatives.componentsV2.CapTagList.Ok": "Ok",
48631
48617
  "creatives.componentsV2.CapTagList.all": "All",
@@ -50318,7 +50304,6 @@ new message content.",
50318
50304
  "creatives.containersV2.WeChat.templateName": "Template Name",
50319
50305
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50320
50306
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50321
- "creatives.containersV2.WebPush.addLabels": "Add labels",
50322
50307
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50323
50308
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50324
50309
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -51345,7 +51330,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
51345
51330
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
51346
51331
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
51347
51332
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
51348
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
51333
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
51349
51334
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
51350
51335
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
51351
51336
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -51353,13 +51338,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
51353
51338
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
51354
51339
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
51355
51340
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
51356
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
51341
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
51357
51342
  "creatives.componentsV2.CapImageUpload.or": "OR",
51358
51343
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
51359
51344
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
51360
51345
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
51361
51346
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
51362
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
51347
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
51363
51348
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
51364
51349
  "creatives.componentsV2.CapTagList.Ok": "Ok",
51365
51350
  "creatives.componentsV2.CapTagList.all": "All",
@@ -53052,7 +53037,6 @@ new message content.",
53052
53037
  "creatives.containersV2.WeChat.templateName": "Template Name",
53053
53038
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
53054
53039
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
53055
- "creatives.containersV2.WebPush.addLabels": "Add labels",
53056
53040
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
53057
53041
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
53058
53042
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -53438,7 +53422,6 @@ new message content.",
53438
53422
  "email": [Function],
53439
53423
  "facebookPreview": [Function],
53440
53424
  "gallery": [Function],
53441
- "inApp": [Function],
53442
53425
  "language": [Function],
53443
53426
  "navigationConfig": [Function],
53444
53427
  "previewAndTest": [Function],
@@ -55736,7 +55719,7 @@ new message content.",
55736
55719
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
55737
55720
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
55738
55721
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
55739
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
55722
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
55740
55723
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
55741
55724
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
55742
55725
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -55744,13 +55727,13 @@ new message content.",
55744
55727
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
55745
55728
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
55746
55729
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
55747
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
55730
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
55748
55731
  "creatives.componentsV2.CapImageUpload.or": "OR",
55749
55732
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
55750
55733
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
55751
55734
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
55752
55735
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
55753
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
55736
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
55754
55737
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
55755
55738
  "creatives.componentsV2.CapTagList.Ok": "Ok",
55756
55739
  "creatives.componentsV2.CapTagList.all": "All",
@@ -57443,7 +57426,6 @@ new message content.",
57443
57426
  "creatives.containersV2.WeChat.templateName": "Template Name",
57444
57427
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
57445
57428
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
57446
- "creatives.containersV2.WebPush.addLabels": "Add labels",
57447
57429
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
57448
57430
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
57449
57431
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -59140,7 +59122,7 @@ exports[`line wrapper test/> should render line component old 2`] = `
59140
59122
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
59141
59123
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
59142
59124
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
59143
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
59125
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
59144
59126
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
59145
59127
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
59146
59128
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -59148,13 +59130,13 @@ exports[`line wrapper test/> should render line component old 2`] = `
59148
59130
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
59149
59131
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
59150
59132
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
59151
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
59133
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
59152
59134
  "creatives.componentsV2.CapImageUpload.or": "OR",
59153
59135
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
59154
59136
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
59155
59137
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
59156
59138
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
59157
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
59139
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
59158
59140
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
59159
59141
  "creatives.componentsV2.CapTagList.Ok": "Ok",
59160
59142
  "creatives.componentsV2.CapTagList.all": "All",
@@ -60847,7 +60829,6 @@ new message content.",
60847
60829
  "creatives.containersV2.WeChat.templateName": "Template Name",
60848
60830
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
60849
60831
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
60850
- "creatives.containersV2.WebPush.addLabels": "Add labels",
60851
60832
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
60852
60833
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
60853
60834
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -61233,7 +61214,6 @@ new message content.",
61233
61214
  "email": [Function],
61234
61215
  "facebookPreview": [Function],
61235
61216
  "gallery": [Function],
61236
- "inApp": [Function],
61237
61217
  "language": [Function],
61238
61218
  "navigationConfig": [Function],
61239
61219
  "previewAndTest": [Function],
@@ -63949,7 +63929,7 @@ new message content.",
63949
63929
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
63950
63930
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
63951
63931
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
63952
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
63932
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
63953
63933
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
63954
63934
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
63955
63935
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -63957,13 +63937,13 @@ new message content.",
63957
63937
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
63958
63938
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
63959
63939
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
63960
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
63940
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
63961
63941
  "creatives.componentsV2.CapImageUpload.or": "OR",
63962
63942
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
63963
63943
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
63964
63944
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
63965
63945
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
63966
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
63946
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
63967
63947
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
63968
63948
  "creatives.componentsV2.CapTagList.Ok": "Ok",
63969
63949
  "creatives.componentsV2.CapTagList.all": "All",
@@ -65656,7 +65636,6 @@ new message content.",
65656
65636
  "creatives.containersV2.WeChat.templateName": "Template Name",
65657
65637
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
65658
65638
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
65659
- "creatives.containersV2.WebPush.addLabels": "Add labels",
65660
65639
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
65661
65640
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
65662
65641
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -67353,7 +67332,7 @@ exports[`line wrapper test/> should render line component old 3`] = `
67353
67332
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
67354
67333
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
67355
67334
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
67356
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
67335
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
67357
67336
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
67358
67337
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
67359
67338
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -67361,13 +67340,13 @@ exports[`line wrapper test/> should render line component old 3`] = `
67361
67340
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
67362
67341
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
67363
67342
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
67364
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
67343
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
67365
67344
  "creatives.componentsV2.CapImageUpload.or": "OR",
67366
67345
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
67367
67346
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
67368
67347
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
67369
67348
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
67370
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
67349
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
67371
67350
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
67372
67351
  "creatives.componentsV2.CapTagList.Ok": "Ok",
67373
67352
  "creatives.componentsV2.CapTagList.all": "All",
@@ -69060,7 +69039,6 @@ new message content.",
69060
69039
  "creatives.containersV2.WeChat.templateName": "Template Name",
69061
69040
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
69062
69041
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
69063
- "creatives.containersV2.WebPush.addLabels": "Add labels",
69064
69042
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
69065
69043
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
69066
69044
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -69446,7 +69424,6 @@ new message content.",
69446
69424
  "email": [Function],
69447
69425
  "facebookPreview": [Function],
69448
69426
  "gallery": [Function],
69449
- "inApp": [Function],
69450
69427
  "language": [Function],
69451
69428
  "navigationConfig": [Function],
69452
69429
  "previewAndTest": [Function],
@@ -72404,7 +72381,7 @@ new message content.",
72404
72381
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
72405
72382
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
72406
72383
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
72407
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
72384
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
72408
72385
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
72409
72386
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
72410
72387
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -72412,13 +72389,13 @@ new message content.",
72412
72389
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
72413
72390
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
72414
72391
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
72415
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
72392
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
72416
72393
  "creatives.componentsV2.CapImageUpload.or": "OR",
72417
72394
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
72418
72395
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
72419
72396
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
72420
72397
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
72421
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
72398
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
72422
72399
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
72423
72400
  "creatives.componentsV2.CapTagList.Ok": "Ok",
72424
72401
  "creatives.componentsV2.CapTagList.all": "All",
@@ -74111,7 +74088,6 @@ new message content.",
74111
74088
  "creatives.containersV2.WeChat.templateName": "Template Name",
74112
74089
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
74113
74090
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
74114
- "creatives.containersV2.WebPush.addLabels": "Add labels",
74115
74091
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
74116
74092
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
74117
74093
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -75843,7 +75819,7 @@ exports[`line wrapper test/> should render line component old 4`] = `
75843
75819
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
75844
75820
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
75845
75821
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
75846
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
75822
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
75847
75823
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
75848
75824
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
75849
75825
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -75851,13 +75827,13 @@ exports[`line wrapper test/> should render line component old 4`] = `
75851
75827
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
75852
75828
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
75853
75829
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
75854
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
75830
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
75855
75831
  "creatives.componentsV2.CapImageUpload.or": "OR",
75856
75832
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
75857
75833
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
75858
75834
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
75859
75835
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
75860
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
75836
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
75861
75837
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
75862
75838
  "creatives.componentsV2.CapTagList.Ok": "Ok",
75863
75839
  "creatives.componentsV2.CapTagList.all": "All",
@@ -77550,7 +77526,6 @@ new message content.",
77550
77526
  "creatives.containersV2.WeChat.templateName": "Template Name",
77551
77527
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
77552
77528
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
77553
- "creatives.containersV2.WebPush.addLabels": "Add labels",
77554
77529
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
77555
77530
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
77556
77531
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -77936,7 +77911,6 @@ new message content.",
77936
77911
  "email": [Function],
77937
77912
  "facebookPreview": [Function],
77938
77913
  "gallery": [Function],
77939
- "inApp": [Function],
77940
77914
  "language": [Function],
77941
77915
  "navigationConfig": [Function],
77942
77916
  "previewAndTest": [Function],
@@ -81014,7 +80988,7 @@ new message content.",
81014
80988
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
81015
80989
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
81016
80990
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
81017
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
80991
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
81018
80992
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
81019
80993
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
81020
80994
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -81022,13 +80996,13 @@ new message content.",
81022
80996
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
81023
80997
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
81024
80998
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
81025
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
80999
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
81026
81000
  "creatives.componentsV2.CapImageUpload.or": "OR",
81027
81001
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
81028
81002
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
81029
81003
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
81030
81004
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
81031
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
81005
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
81032
81006
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
81033
81007
  "creatives.componentsV2.CapTagList.Ok": "Ok",
81034
81008
  "creatives.componentsV2.CapTagList.all": "All",
@@ -82721,7 +82695,6 @@ new message content.",
82721
82695
  "creatives.containersV2.WeChat.templateName": "Template Name",
82722
82696
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
82723
82697
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
82724
- "creatives.containersV2.WebPush.addLabels": "Add labels",
82725
82698
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
82726
82699
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
82727
82700
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",