@capillarytech/creatives-library 8.0.241 → 8.0.242-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 (119) hide show
  1. package/package.json +1 -1
  2. package/sagas/__tests__/assetPolling.test.js +607 -0
  3. package/sagas/assetPolling.js +156 -0
  4. package/services/api.js +16 -0
  5. package/services/tests/api.test.js +124 -0
  6. package/translations/en.json +1 -0
  7. package/utils/assetStatusConstants.js +12 -0
  8. package/utils/asyncAssetUpload.js +161 -0
  9. package/utils/tests/asyncAssetUpload.test.js +292 -0
  10. package/utils/transformerUtils.js +42 -0
  11. package/v2Components/CapImageUpload/constants.js +2 -0
  12. package/v2Components/CapImageUpload/index.js +54 -14
  13. package/v2Components/CapImageUpload/index.scss +4 -1
  14. package/v2Components/CapImageUpload/messages.js +4 -0
  15. package/v2Components/CapImageUrlUpload/constants.js +19 -0
  16. package/v2Components/CapImageUrlUpload/index.js +455 -0
  17. package/v2Components/CapImageUrlUpload/index.scss +35 -0
  18. package/v2Components/CapImageUrlUpload/messages.js +47 -0
  19. package/v2Containers/App/constants.js +5 -0
  20. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +1 -0
  21. package/v2Containers/CreativesContainer/SlideBoxContent.js +57 -2
  22. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -0
  23. package/v2Containers/CreativesContainer/constants.js +2 -0
  24. package/v2Containers/CreativesContainer/index.js +152 -0
  25. package/v2Containers/CreativesContainer/messages.js +4 -0
  26. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +3 -0
  27. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +2 -0
  28. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +25 -0
  29. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +18 -0
  30. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +46 -0
  31. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +4 -0
  32. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +8 -0
  33. package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
  34. package/v2Containers/Templates/_templates.scss +203 -0
  35. package/v2Containers/Templates/actions.js +2 -1
  36. package/v2Containers/Templates/constants.js +1 -0
  37. package/v2Containers/Templates/index.js +273 -30
  38. package/v2Containers/Templates/messages.js +24 -0
  39. package/v2Containers/Templates/reducer.js +2 -0
  40. package/v2Containers/Templates/tests/index.test.js +10 -0
  41. package/v2Containers/TemplatesV2/index.js +3 -2
  42. package/v2Containers/TemplatesV2/messages.js +4 -0
  43. package/v2Containers/WebPush/Create/components/ButtonForm.js +175 -0
  44. package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
  45. package/v2Containers/WebPush/Create/components/ButtonList.js +144 -0
  46. package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
  47. package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
  48. package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
  49. package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
  50. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
  51. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
  52. package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +80 -0
  53. package/v2Containers/WebPush/Create/index.js +1755 -0
  54. package/v2Containers/WebPush/Create/index.scss +123 -0
  55. package/v2Containers/WebPush/Create/messages.js +199 -0
  56. package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +241 -0
  57. package/v2Containers/WebPush/Create/preview/NotificationContainer.js +290 -0
  58. package/v2Containers/WebPush/Create/preview/PreviewContent.js +81 -0
  59. package/v2Containers/WebPush/Create/preview/PreviewControls.js +240 -0
  60. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
  61. package/v2Containers/WebPush/Create/preview/WebPushPreview.js +144 -0
  62. package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
  63. package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
  64. package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
  65. package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
  66. package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
  67. package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
  68. package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
  69. package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
  70. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +44 -0
  71. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +110 -0
  72. package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
  73. package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +72 -0
  74. package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +55 -0
  75. package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +70 -0
  76. package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +512 -0
  77. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +77 -0
  78. package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +527 -0
  79. package/v2Containers/WebPush/Create/preview/constants.js +162 -0
  80. package/v2Containers/WebPush/Create/preview/notification-container.scss +104 -0
  81. package/v2Containers/WebPush/Create/preview/preview.scss +409 -0
  82. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +300 -0
  83. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
  84. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
  85. package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
  86. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +303 -0
  87. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
  88. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
  89. package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
  90. package/v2Containers/WebPush/Create/preview/styles/_base.scss +188 -0
  91. package/v2Containers/WebPush/Create/preview/styles/_ios.scss +106 -0
  92. package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
  93. package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +75 -0
  94. package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +174 -0
  95. package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
  96. package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1077 -0
  97. package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
  98. package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +943 -0
  99. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +128 -0
  100. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +121 -0
  101. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
  102. package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +127 -0
  103. package/v2Containers/WebPush/Create/utils/urlValidation.js +116 -0
  104. package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
  105. package/v2Containers/WebPush/actions.js +60 -0
  106. package/v2Containers/WebPush/constants.js +108 -0
  107. package/v2Containers/WebPush/index.js +2 -0
  108. package/v2Containers/WebPush/reducer.js +104 -0
  109. package/v2Containers/WebPush/sagas.js +119 -0
  110. package/v2Containers/WebPush/selectors.js +65 -0
  111. package/v2Containers/WebPush/tests/reducer.test.js +863 -0
  112. package/v2Containers/WebPush/tests/sagas.test.js +566 -0
  113. package/v2Containers/WebPush/tests/selectors.test.js +960 -0
  114. package/v2Containers/Whatsapp/constants.js +9 -0
  115. package/v2Containers/Whatsapp/reducer.js +34 -5
  116. package/v2Containers/Whatsapp/sagas.js +61 -10
  117. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +132 -0
  118. package/v2Containers/Whatsapp/tests/reducer.test.js +188 -0
  119. package/v2Containers/Whatsapp/tests/saga.test.js +420 -7
@@ -1896,6 +1896,7 @@ new message content.",
1896
1896
  "creatives.containersV2.WeChat.templateName": "Template Name",
1897
1897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1898
1898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1899
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
1899
1900
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1900
1901
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1901
1902
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9172,6 +9173,7 @@ new message content.",
9172
9173
  "creatives.containersV2.WeChat.templateName": "Template Name",
9173
9174
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
9174
9175
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
9176
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
9175
9177
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
9176
9178
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
9177
9179
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -11430,6 +11432,7 @@ new message content.",
11430
11432
  "creatives.containersV2.WeChat.templateName": "Template Name",
11431
11433
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
11432
11434
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
11435
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
11433
11436
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
11434
11437
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
11435
11438
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -15585,6 +15588,7 @@ new message content.",
15585
15588
  "creatives.containersV2.WeChat.templateName": "Template Name",
15586
15589
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
15587
15590
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
15591
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
15588
15592
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
15589
15593
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
15590
15594
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -18643,6 +18647,7 @@ new message content.",
18643
18647
  "creatives.containersV2.WeChat.templateName": "Template Name",
18644
18648
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
18645
18649
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
18650
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
18646
18651
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
18647
18652
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
18648
18653
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -25907,6 +25912,7 @@ new message content.",
25907
25912
  "creatives.containersV2.WeChat.templateName": "Template Name",
25908
25913
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
25909
25914
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
25915
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
25910
25916
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
25911
25917
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
25912
25918
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -28165,6 +28171,7 @@ new message content.",
28165
28171
  "creatives.containersV2.WeChat.templateName": "Template Name",
28166
28172
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
28167
28173
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
28174
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
28168
28175
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
28169
28176
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
28170
28177
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -32320,6 +32327,7 @@ new message content.",
32320
32327
  "creatives.containersV2.WeChat.templateName": "Template Name",
32321
32328
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
32322
32329
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
32330
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
32323
32331
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
32324
32332
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
32325
32333
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -35354,6 +35362,7 @@ new message content.",
35354
35362
  "creatives.containersV2.WeChat.templateName": "Template Name",
35355
35363
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
35356
35364
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
35365
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
35357
35366
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
35358
35367
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
35359
35368
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -43669,6 +43678,7 @@ new message content.",
43669
43678
  "creatives.containersV2.WeChat.templateName": "Template Name",
43670
43679
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
43671
43680
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
43681
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
43672
43682
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
43673
43683
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
43674
43684
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -45927,6 +45937,7 @@ new message content.",
45927
45937
  "creatives.containersV2.WeChat.templateName": "Template Name",
45928
45938
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
45929
45939
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
45940
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
45930
45941
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
45931
45942
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
45932
45943
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -50951,6 +50962,7 @@ new message content.",
50951
50962
  "creatives.containersV2.WeChat.templateName": "Template Name",
50952
50963
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
50953
50964
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
50965
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
50954
50966
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
50955
50967
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
50956
50968
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -53985,6 +53997,7 @@ new message content.",
53985
53997
  "creatives.containersV2.WeChat.templateName": "Template Name",
53986
53998
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
53987
53999
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
54000
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
53988
54001
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
53989
54002
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
53990
54003
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -62520,6 +62533,7 @@ new message content.",
62520
62533
  "creatives.containersV2.WeChat.templateName": "Template Name",
62521
62534
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
62522
62535
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
62536
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
62523
62537
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
62524
62538
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
62525
62539
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -64778,6 +64792,7 @@ new message content.",
64778
64792
  "creatives.containersV2.WeChat.templateName": "Template Name",
64779
64793
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
64780
64794
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
64795
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
64781
64796
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
64782
64797
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
64783
64798
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -69802,6 +69817,7 @@ new message content.",
69802
69817
  "creatives.containersV2.WeChat.templateName": "Template Name",
69803
69818
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
69804
69819
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
69820
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
69805
69821
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
69806
69822
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
69807
69823
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -72834,6 +72850,7 @@ new message content.",
72834
72850
  "creatives.containersV2.WeChat.templateName": "Template Name",
72835
72851
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
72836
72852
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
72853
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
72837
72854
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
72838
72855
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
72839
72856
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -82124,6 +82141,7 @@ new message content.",
82124
82141
  "creatives.containersV2.WeChat.templateName": "Template Name",
82125
82142
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
82126
82143
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
82144
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
82127
82145
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
82128
82146
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
82129
82147
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -84382,6 +84400,7 @@ new message content.",
84382
84400
  "creatives.containersV2.WeChat.templateName": "Template Name",
84383
84401
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
84384
84402
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
84403
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
84385
84404
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
84386
84405
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
84387
84406
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -89406,6 +89425,7 @@ new message content.",
89406
89425
  "creatives.containersV2.WeChat.templateName": "Template Name",
89407
89426
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
89408
89427
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
89428
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
89409
89429
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
89410
89430
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
89411
89431
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -92440,6 +92460,7 @@ new message content.",
92440
92460
  "creatives.containersV2.WeChat.templateName": "Template Name",
92441
92461
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
92442
92462
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
92463
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
92443
92464
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
92444
92465
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
92445
92466
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -99714,6 +99735,7 @@ new message content.",
99714
99735
  "creatives.containersV2.WeChat.templateName": "Template Name",
99715
99736
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
99716
99737
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
99738
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
99717
99739
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
99718
99740
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
99719
99741
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -101972,6 +101994,7 @@ new message content.",
101972
101994
  "creatives.containersV2.WeChat.templateName": "Template Name",
101973
101995
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
101974
101996
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
101997
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
101975
101998
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
101976
101999
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
101977
102000
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -106127,6 +106150,7 @@ new message content.",
106127
106150
  "creatives.containersV2.WeChat.templateName": "Template Name",
106128
106151
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
106129
106152
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
106153
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
106130
106154
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
106131
106155
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
106132
106156
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -109161,6 +109185,7 @@ new message content.",
109161
109185
  "creatives.containersV2.WeChat.templateName": "Template Name",
109162
109186
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
109163
109187
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
109188
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
109164
109189
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
109165
109190
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
109166
109191
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -116425,6 +116450,7 @@ new message content.",
116425
116450
  "creatives.containersV2.WeChat.templateName": "Template Name",
116426
116451
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
116427
116452
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
116453
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
116428
116454
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
116429
116455
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
116430
116456
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -118683,6 +118709,7 @@ new message content.",
118683
118709
  "creatives.containersV2.WeChat.templateName": "Template Name",
118684
118710
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
118685
118711
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
118712
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
118686
118713
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
118687
118714
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
118688
118715
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -122838,6 +122865,7 @@ new message content.",
122838
122865
  "creatives.containersV2.WeChat.templateName": "Template Name",
122839
122866
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
122840
122867
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
122868
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
122841
122869
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
122842
122870
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
122843
122871
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -125872,6 +125900,7 @@ new message content.",
125872
125900
  "creatives.containersV2.WeChat.templateName": "Template Name",
125873
125901
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
125874
125902
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
125903
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
125875
125904
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
125876
125905
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
125877
125906
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -134739,6 +134768,7 @@ new message content.",
134739
134768
  "creatives.containersV2.WeChat.templateName": "Template Name",
134740
134769
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
134741
134770
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
134771
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
134742
134772
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
134743
134773
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
134744
134774
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -136997,6 +137027,7 @@ new message content.",
136997
137027
  "creatives.containersV2.WeChat.templateName": "Template Name",
136998
137028
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
136999
137029
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
137030
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
137000
137031
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
137001
137032
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
137002
137033
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -142021,6 +142052,7 @@ new message content.",
142021
142052
  "creatives.containersV2.WeChat.templateName": "Template Name",
142022
142053
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
142023
142054
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
142055
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
142024
142056
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
142025
142057
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
142026
142058
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -145055,6 +145087,7 @@ new message content.",
145055
145087
  "creatives.containersV2.WeChat.templateName": "Template Name",
145056
145088
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
145057
145089
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
145090
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
145058
145091
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
145059
145092
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
145060
145093
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -154142,6 +154175,7 @@ new message content.",
154142
154175
  "creatives.containersV2.WeChat.templateName": "Template Name",
154143
154176
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
154144
154177
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
154178
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
154145
154179
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
154146
154180
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
154147
154181
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -156400,6 +156434,7 @@ new message content.",
156400
156434
  "creatives.containersV2.WeChat.templateName": "Template Name",
156401
156435
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
156402
156436
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
156437
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
156403
156438
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
156404
156439
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
156405
156440
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -161424,6 +161459,7 @@ new message content.",
161424
161459
  "creatives.containersV2.WeChat.templateName": "Template Name",
161425
161460
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
161426
161461
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
161462
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
161427
161463
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
161428
161464
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
161429
161465
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -164456,6 +164492,7 @@ new message content.",
164456
164492
  "creatives.containersV2.WeChat.templateName": "Template Name",
164457
164493
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
164458
164494
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
164495
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
164459
164496
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
164460
164497
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
164461
164498
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -174298,6 +174335,7 @@ new message content.",
174298
174335
  "creatives.containersV2.WeChat.templateName": "Template Name",
174299
174336
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
174300
174337
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
174338
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
174301
174339
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
174302
174340
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
174303
174341
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -176556,6 +176594,7 @@ new message content.",
176556
176594
  "creatives.containersV2.WeChat.templateName": "Template Name",
176557
176595
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
176558
176596
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
176597
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
176559
176598
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
176560
176599
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
176561
176600
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -181580,6 +181619,7 @@ new message content.",
181580
181619
  "creatives.containersV2.WeChat.templateName": "Template Name",
181581
181620
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
181582
181621
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
181622
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
181583
181623
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
181584
181624
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
181585
181625
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -184614,6 +184654,7 @@ new message content.",
184614
184654
  "creatives.containersV2.WeChat.templateName": "Template Name",
184615
184655
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
184616
184656
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
184657
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
184617
184658
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
184618
184659
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
184619
184660
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -194670,6 +194711,7 @@ new message content.",
194670
194711
  "creatives.containersV2.WeChat.templateName": "Template Name",
194671
194712
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
194672
194713
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
194714
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
194673
194715
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
194674
194716
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
194675
194717
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -196928,6 +196970,7 @@ new message content.",
196928
196970
  "creatives.containersV2.WeChat.templateName": "Template Name",
196929
196971
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
196930
196972
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
196973
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
196931
196974
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
196932
196975
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
196933
196976
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -201952,6 +201995,7 @@ new message content.",
201952
201995
  "creatives.containersV2.WeChat.templateName": "Template Name",
201953
201996
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
201954
201997
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
201998
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
201955
201999
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
201956
202000
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
201957
202001
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -204984,6 +205028,7 @@ new message content.",
204984
205028
  "creatives.containersV2.WeChat.templateName": "Template Name",
204985
205029
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
204986
205030
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
205031
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
204987
205032
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
204988
205033
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
204989
205034
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -209978,6 +210023,7 @@ new message content.",
209978
210023
  "creatives.containersV2.WeChat.templateName": "Template Name",
209979
210024
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
209980
210025
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
210026
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
209981
210027
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
209982
210028
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
209983
210029
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -213266,6 +213312,7 @@ new message content.",
213266
213312
  "creatives.containersV2.WeChat.templateName": "Template Name",
213267
213313
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
213268
213314
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
213315
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
213269
213316
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
213270
213317
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
213271
213318
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -215849,6 +215896,7 @@ new message content.",
215849
215896
  "creatives.containersV2.WeChat.templateName": "Template Name",
215850
215897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
215851
215898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
215899
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
215852
215900
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
215853
215901
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
215854
215902
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -221579,6 +221627,7 @@ new message content.",
221579
221627
  "creatives.containersV2.WeChat.templateName": "Template Name",
221580
221628
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
221581
221629
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
221630
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
221582
221631
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
221583
221632
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
221584
221633
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -223998,6 +224047,7 @@ new message content.",
223998
224047
  "creatives.containersV2.WeChat.templateName": "Template Name",
223999
224048
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
224000
224049
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
224050
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
224001
224051
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
224002
224052
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
224003
224053
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -230165,6 +230215,7 @@ new message content.",
230165
230215
  "creatives.containersV2.WeChat.templateName": "Template Name",
230166
230216
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
230167
230217
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
230218
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
230168
230219
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
230169
230220
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
230170
230221
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -232583,6 +232634,7 @@ new message content.",
232583
232634
  "creatives.containersV2.WeChat.templateName": "Template Name",
232584
232635
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
232585
232636
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
232637
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
232586
232638
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
232587
232639
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
232588
232640
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -240020,6 +240072,7 @@ new message content.",
240020
240072
  "creatives.containersV2.WeChat.templateName": "Template Name",
240021
240073
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
240022
240074
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
240075
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
240023
240076
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
240024
240077
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
240025
240078
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -243308,6 +243361,7 @@ new message content.",
243308
243361
  "creatives.containersV2.WeChat.templateName": "Template Name",
243309
243362
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
243310
243363
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
243364
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
243311
243365
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
243312
243366
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
243313
243367
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -245891,6 +245945,7 @@ new message content.",
245891
245945
  "creatives.containersV2.WeChat.templateName": "Template Name",
245892
245946
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
245893
245947
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
245948
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
245894
245949
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
245895
245950
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
245896
245951
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -254094,6 +254149,7 @@ new message content.",
254094
254149
  "creatives.containersV2.WeChat.templateName": "Template Name",
254095
254150
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
254096
254151
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
254152
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
254097
254153
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
254098
254154
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
254099
254155
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -257380,6 +257436,7 @@ new message content.",
257380
257436
  "creatives.containersV2.WeChat.templateName": "Template Name",
257381
257437
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
257382
257438
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
257439
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
257383
257440
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
257384
257441
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
257385
257442
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -260549,6 +260606,7 @@ new message content.",
260549
260606
  "creatives.containersV2.WeChat.templateName": "Template Name",
260550
260607
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
260551
260608
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
260609
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
260552
260610
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
260553
260611
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
260554
260612
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -265537,6 +265595,7 @@ new message content.",
265537
265595
  "creatives.containersV2.WeChat.templateName": "Template Name",
265538
265596
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
265539
265597
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
265598
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
265540
265599
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
265541
265600
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
265542
265601
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -268648,6 +268707,7 @@ new message content.",
268648
268707
  "creatives.containersV2.WeChat.templateName": "Template Name",
268649
268708
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
268650
268709
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
268710
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
268651
268711
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
268652
268712
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
268653
268713
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -271747,6 +271807,7 @@ new message content.",
271747
271807
  "creatives.containersV2.WeChat.templateName": "Template Name",
271748
271808
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
271749
271809
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
271810
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
271750
271811
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
271751
271812
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
271752
271813
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -279011,6 +279072,7 @@ new message content.",
279011
279072
  "creatives.containersV2.WeChat.templateName": "Template Name",
279012
279073
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
279013
279074
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
279075
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
279014
279076
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
279015
279077
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
279016
279078
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -281269,6 +281331,7 @@ new message content.",
281269
281331
  "creatives.containersV2.WeChat.templateName": "Template Name",
281270
281332
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
281271
281333
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
281334
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
281272
281335
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
281273
281336
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
281274
281337
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -285424,6 +285487,7 @@ new message content.",
285424
285487
  "creatives.containersV2.WeChat.templateName": "Template Name",
285425
285488
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
285426
285489
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
285490
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
285427
285491
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
285428
285492
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
285429
285493
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -288458,6 +288522,7 @@ new message content.",
288458
288522
  "creatives.containersV2.WeChat.templateName": "Template Name",
288459
288523
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
288460
288524
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
288525
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
288461
288526
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
288462
288527
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
288463
288528
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -297325,6 +297390,7 @@ new message content.",
297325
297390
  "creatives.containersV2.WeChat.templateName": "Template Name",
297326
297391
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
297327
297392
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
297393
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
297328
297394
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
297329
297395
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
297330
297396
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -299583,6 +299649,7 @@ new message content.",
299583
299649
  "creatives.containersV2.WeChat.templateName": "Template Name",
299584
299650
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
299585
299651
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
299652
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
299586
299653
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
299587
299654
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
299588
299655
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -304607,6 +304674,7 @@ new message content.",
304607
304674
  "creatives.containersV2.WeChat.templateName": "Template Name",
304608
304675
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
304609
304676
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
304677
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
304610
304678
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
304611
304679
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
304612
304680
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -307641,6 +307709,7 @@ new message content.",
307641
307709
  "creatives.containersV2.WeChat.templateName": "Template Name",
307642
307710
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
307643
307711
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
307712
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
307644
307713
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
307645
307714
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
307646
307715
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -314905,6 +314974,7 @@ new message content.",
314905
314974
  "creatives.containersV2.WeChat.templateName": "Template Name",
314906
314975
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
314907
314976
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
314977
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
314908
314978
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
314909
314979
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
314910
314980
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -317163,6 +317233,7 @@ new message content.",
317163
317233
  "creatives.containersV2.WeChat.templateName": "Template Name",
317164
317234
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
317165
317235
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
317236
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
317166
317237
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
317167
317238
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
317168
317239
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -321318,6 +321389,7 @@ new message content.",
321318
321389
  "creatives.containersV2.WeChat.templateName": "Template Name",
321319
321390
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
321320
321391
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
321392
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
321321
321393
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
321322
321394
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
321323
321395
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -324352,6 +324424,7 @@ new message content.",
324352
324424
  "creatives.containersV2.WeChat.templateName": "Template Name",
324353
324425
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
324354
324426
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
324427
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
324355
324428
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
324356
324429
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
324357
324430
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -331842,6 +331915,7 @@ new message content.",
331842
331915
  "creatives.containersV2.WeChat.templateName": "Template Name",
331843
331916
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
331844
331917
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
331918
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
331845
331919
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
331846
331920
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
331847
331921
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -334100,6 +334174,7 @@ new message content.",
334100
334174
  "creatives.containersV2.WeChat.templateName": "Template Name",
334101
334175
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
334102
334176
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
334177
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
334103
334178
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
334104
334179
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
334105
334180
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -338255,6 +338330,7 @@ new message content.",
338255
338330
  "creatives.containersV2.WeChat.templateName": "Template Name",
338256
338331
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
338257
338332
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
338333
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
338258
338334
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
338259
338335
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
338260
338336
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -341289,6 +341365,7 @@ new message content.",
341289
341365
  "creatives.containersV2.WeChat.templateName": "Template Name",
341290
341366
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
341291
341367
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
341368
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
341292
341369
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
341293
341370
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
341294
341371
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -349017,6 +349094,7 @@ new message content.",
349017
349094
  "creatives.containersV2.WeChat.templateName": "Template Name",
349018
349095
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
349019
349096
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
349097
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
349020
349098
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
349021
349099
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
349022
349100
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -351275,6 +351353,7 @@ new message content.",
351275
351353
  "creatives.containersV2.WeChat.templateName": "Template Name",
351276
351354
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
351277
351355
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
351356
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
351278
351357
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
351279
351358
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
351280
351359
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -355430,6 +355509,7 @@ new message content.",
355430
355509
  "creatives.containersV2.WeChat.templateName": "Template Name",
355431
355510
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
355432
355511
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
355512
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
355433
355513
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
355434
355514
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
355435
355515
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -358466,6 +358546,7 @@ new message content.",
358466
358546
  "creatives.containersV2.WeChat.templateName": "Template Name",
358467
358547
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
358468
358548
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
358549
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
358469
358550
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
358470
358551
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
358471
358552
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -366420,6 +366501,7 @@ new message content.",
366420
366501
  "creatives.containersV2.WeChat.templateName": "Template Name",
366421
366502
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
366422
366503
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
366504
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
366423
366505
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
366424
366506
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
366425
366507
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -368678,6 +368760,7 @@ new message content.",
368678
368760
  "creatives.containersV2.WeChat.templateName": "Template Name",
368679
368761
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
368680
368762
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
368763
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
368681
368764
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
368682
368765
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
368683
368766
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -372833,6 +372916,7 @@ new message content.",
372833
372916
  "creatives.containersV2.WeChat.templateName": "Template Name",
372834
372917
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
372835
372918
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
372919
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
372836
372920
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
372837
372921
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
372838
372922
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -375869,6 +375953,7 @@ new message content.",
375869
375953
  "creatives.containersV2.WeChat.templateName": "Template Name",
375870
375954
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
375871
375955
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
375956
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
375872
375957
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
375873
375958
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
375874
375959
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -384064,6 +384149,7 @@ new message content.",
384064
384149
  "creatives.containersV2.WeChat.templateName": "Template Name",
384065
384150
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
384066
384151
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
384152
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
384067
384153
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
384068
384154
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
384069
384155
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -386322,6 +386408,7 @@ new message content.",
386322
386408
  "creatives.containersV2.WeChat.templateName": "Template Name",
386323
386409
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
386324
386410
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
386411
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
386325
386412
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
386326
386413
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
386327
386414
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -390477,6 +390564,7 @@ new message content.",
390477
390564
  "creatives.containersV2.WeChat.templateName": "Template Name",
390478
390565
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
390479
390566
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
390567
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
390480
390568
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
390481
390569
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
390482
390570
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -393513,6 +393601,7 @@ new message content.",
393513
393601
  "creatives.containersV2.WeChat.templateName": "Template Name",
393514
393602
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
393515
393603
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
393604
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
393516
393605
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
393517
393606
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
393518
393607
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -401948,6 +402037,7 @@ new message content.",
401948
402037
  "creatives.containersV2.WeChat.templateName": "Template Name",
401949
402038
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
401950
402039
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
402040
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
401951
402041
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
401952
402042
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
401953
402043
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -404206,6 +404296,7 @@ new message content.",
404206
404296
  "creatives.containersV2.WeChat.templateName": "Template Name",
404207
404297
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
404208
404298
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
404299
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
404209
404300
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
404210
404301
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
404211
404302
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -408361,6 +408452,7 @@ new message content.",
408361
408452
  "creatives.containersV2.WeChat.templateName": "Template Name",
408362
408453
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
408363
408454
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
408455
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
408364
408456
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
408365
408457
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
408366
408458
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -411397,6 +411489,7 @@ new message content.",
411397
411489
  "creatives.containersV2.WeChat.templateName": "Template Name",
411398
411490
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
411399
411491
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
411492
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
411400
411493
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
411401
411494
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
411402
411495
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -420069,6 +420162,7 @@ new message content.",
420069
420162
  "creatives.containersV2.WeChat.templateName": "Template Name",
420070
420163
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
420071
420164
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
420165
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
420072
420166
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
420073
420167
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
420074
420168
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -422327,6 +422421,7 @@ new message content.",
422327
422421
  "creatives.containersV2.WeChat.templateName": "Template Name",
422328
422422
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
422329
422423
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
422424
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
422330
422425
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
422331
422426
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
422332
422427
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -426482,6 +426577,7 @@ new message content.",
426482
426577
  "creatives.containersV2.WeChat.templateName": "Template Name",
426483
426578
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
426484
426579
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
426580
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
426485
426581
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
426486
426582
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
426487
426583
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -429518,6 +429614,7 @@ new message content.",
429518
429614
  "creatives.containersV2.WeChat.templateName": "Template Name",
429519
429615
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
429520
429616
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
429617
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
429521
429618
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
429522
429619
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
429523
429620
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -438427,6 +438524,7 @@ new message content.",
438427
438524
  "creatives.containersV2.WeChat.templateName": "Template Name",
438428
438525
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
438429
438526
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
438527
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
438430
438528
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
438431
438529
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
438432
438530
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -440685,6 +440783,7 @@ new message content.",
440685
440783
  "creatives.containersV2.WeChat.templateName": "Template Name",
440686
440784
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
440687
440785
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
440786
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
440688
440787
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
440689
440788
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
440690
440789
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -444840,6 +444939,7 @@ new message content.",
444840
444939
  "creatives.containersV2.WeChat.templateName": "Template Name",
444841
444940
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
444842
444941
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
444942
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
444843
444943
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
444844
444944
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
444845
444945
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -447876,6 +447976,7 @@ new message content.",
447876
447976
  "creatives.containersV2.WeChat.templateName": "Template Name",
447877
447977
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
447878
447978
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
447979
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
447879
447980
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
447880
447981
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
447881
447982
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -457023,6 +457124,7 @@ new message content.",
457023
457124
  "creatives.containersV2.WeChat.templateName": "Template Name",
457024
457125
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
457025
457126
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
457127
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
457026
457128
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
457027
457129
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
457028
457130
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -459281,6 +459383,7 @@ new message content.",
459281
459383
  "creatives.containersV2.WeChat.templateName": "Template Name",
459282
459384
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
459283
459385
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
459386
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
459284
459387
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
459285
459388
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
459286
459389
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -463436,6 +463539,7 @@ new message content.",
463436
463539
  "creatives.containersV2.WeChat.templateName": "Template Name",
463437
463540
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
463438
463541
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
463542
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
463439
463543
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
463440
463544
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
463441
463545
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -466472,6 +466576,7 @@ new message content.",
466472
466576
  "creatives.containersV2.WeChat.templateName": "Template Name",
466473
466577
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
466474
466578
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
466579
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
466475
466580
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
466476
466581
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
466477
466582
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -473983,6 +474088,7 @@ new message content.",
473983
474088
  "creatives.containersV2.WeChat.templateName": "Template Name",
473984
474089
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
473985
474090
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
474091
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
473986
474092
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
473987
474093
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
473988
474094
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -476241,6 +476347,7 @@ new message content.",
476241
476347
  "creatives.containersV2.WeChat.templateName": "Template Name",
476242
476348
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
476243
476349
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
476350
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
476244
476351
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
476245
476352
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
476246
476353
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -480396,6 +480503,7 @@ new message content.",
480396
480503
  "creatives.containersV2.WeChat.templateName": "Template Name",
480397
480504
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
480398
480505
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
480506
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
480399
480507
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
480400
480508
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
480401
480509
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -483430,6 +483538,7 @@ new message content.",
483430
483538
  "creatives.containersV2.WeChat.templateName": "Template Name",
483431
483539
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
483432
483540
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
483541
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
483433
483542
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
483434
483543
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
483435
483544
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -491174,6 +491283,7 @@ new message content.",
491174
491283
  "creatives.containersV2.WeChat.templateName": "Template Name",
491175
491284
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
491176
491285
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
491286
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
491177
491287
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
491178
491288
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
491179
491289
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -493432,6 +493542,7 @@ new message content.",
493432
493542
  "creatives.containersV2.WeChat.templateName": "Template Name",
493433
493543
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
493434
493544
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
493545
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
493435
493546
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
493436
493547
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
493437
493548
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -497587,6 +497698,7 @@ new message content.",
497587
497698
  "creatives.containersV2.WeChat.templateName": "Template Name",
497588
497699
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
497589
497700
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
497701
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
497590
497702
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
497591
497703
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
497592
497704
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -500621,6 +500733,7 @@ new message content.",
500621
500733
  "creatives.containersV2.WeChat.templateName": "Template Name",
500622
500734
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
500623
500735
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
500736
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
500624
500737
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
500625
500738
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
500626
500739
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -508622,6 +508735,7 @@ new message content.",
508622
508735
  "creatives.containersV2.WeChat.templateName": "Template Name",
508623
508736
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
508624
508737
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
508738
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
508625
508739
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
508626
508740
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
508627
508741
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -510880,6 +510994,7 @@ new message content.",
510880
510994
  "creatives.containersV2.WeChat.templateName": "Template Name",
510881
510995
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
510882
510996
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
510997
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
510883
510998
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
510884
510999
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
510885
511000
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -515035,6 +515150,7 @@ new message content.",
515035
515150
  "creatives.containersV2.WeChat.templateName": "Template Name",
515036
515151
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
515037
515152
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
515153
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
515038
515154
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
515039
515155
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
515040
515156
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -518069,6 +518185,7 @@ new message content.",
518069
518185
  "creatives.containersV2.WeChat.templateName": "Template Name",
518070
518186
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
518071
518187
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
518188
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
518072
518189
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
518073
518190
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
518074
518191
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -525333,6 +525450,7 @@ new message content.",
525333
525450
  "creatives.containersV2.WeChat.templateName": "Template Name",
525334
525451
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
525335
525452
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
525453
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
525336
525454
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
525337
525455
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
525338
525456
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -527591,6 +527709,7 @@ new message content.",
527591
527709
  "creatives.containersV2.WeChat.templateName": "Template Name",
527592
527710
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
527593
527711
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
527712
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
527594
527713
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
527595
527714
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
527596
527715
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -531746,6 +531865,7 @@ new message content.",
531746
531865
  "creatives.containersV2.WeChat.templateName": "Template Name",
531747
531866
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
531748
531867
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
531868
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
531749
531869
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
531750
531870
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
531751
531871
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -534780,6 +534900,7 @@ new message content.",
534780
534900
  "creatives.containersV2.WeChat.templateName": "Template Name",
534781
534901
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
534782
534902
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
534903
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
534783
534904
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
534784
534905
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
534785
534906
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -543426,6 +543547,7 @@ new message content.",
543426
543547
  "creatives.containersV2.WeChat.templateName": "Template Name",
543427
543548
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
543428
543549
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
543550
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
543429
543551
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
543430
543552
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
543431
543553
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -545684,6 +545806,7 @@ new message content.",
545684
545806
  "creatives.containersV2.WeChat.templateName": "Template Name",
545685
545807
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
545686
545808
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
545809
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
545687
545810
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
545688
545811
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
545689
545812
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -550708,6 +550831,7 @@ new message content.",
550708
550831
  "creatives.containersV2.WeChat.templateName": "Template Name",
550709
550832
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
550710
550833
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
550834
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
550711
550835
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
550712
550836
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
550713
550837
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -553742,6 +553866,7 @@ new message content.",
553742
553866
  "creatives.containersV2.WeChat.templateName": "Template Name",
553743
553867
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
553744
553868
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
553869
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
553745
553870
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
553746
553871
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
553747
553872
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -562470,6 +562595,7 @@ new message content.",
562470
562595
  "creatives.containersV2.WeChat.templateName": "Template Name",
562471
562596
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
562472
562597
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
562598
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
562473
562599
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
562474
562600
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
562475
562601
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -564728,6 +564854,7 @@ new message content.",
564728
564854
  "creatives.containersV2.WeChat.templateName": "Template Name",
564729
564855
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
564730
564856
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
564857
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
564731
564858
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
564732
564859
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
564733
564860
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -569752,6 +569879,7 @@ new message content.",
569752
569879
  "creatives.containersV2.WeChat.templateName": "Template Name",
569753
569880
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
569754
569881
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
569882
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
569755
569883
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
569756
569884
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
569757
569885
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -572786,6 +572914,7 @@ new message content.",
572786
572914
  "creatives.containersV2.WeChat.templateName": "Template Name",
572787
572915
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
572788
572916
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
572917
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
572789
572918
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
572790
572919
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
572791
572920
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -581514,6 +581643,7 @@ new message content.",
581514
581643
  "creatives.containersV2.WeChat.templateName": "Template Name",
581515
581644
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
581516
581645
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
581646
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
581517
581647
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
581518
581648
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
581519
581649
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -583772,6 +583902,7 @@ new message content.",
583772
583902
  "creatives.containersV2.WeChat.templateName": "Template Name",
583773
583903
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
583774
583904
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
583905
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
583775
583906
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
583776
583907
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
583777
583908
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -588796,6 +588927,7 @@ new message content.",
588796
588927
  "creatives.containersV2.WeChat.templateName": "Template Name",
588797
588928
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
588798
588929
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
588930
+ "creatives.containersV2.WebPush.addLabels": "Add labels",
588799
588931
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
588800
588932
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
588801
588933
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",