@platformos/platformos-check-common 0.0.7 → 0.0.9

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 (337) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +4 -4
  3. package/dist/AugmentedPlatformOSDocset.d.ts +11 -0
  4. package/dist/AugmentedPlatformOSDocset.js +81 -0
  5. package/dist/AugmentedPlatformOSDocset.js.map +1 -0
  6. package/dist/JSONValidator.js +1 -1
  7. package/dist/JSONValidator.js.map +1 -1
  8. package/dist/checks/deprecated-filter/index.js +4 -41
  9. package/dist/checks/deprecated-filter/index.js.map +1 -1
  10. package/dist/checks/deprecated-tag/index.js +21 -22
  11. package/dist/checks/deprecated-tag/index.js.map +1 -1
  12. package/dist/checks/duplicate-function-arguments/index.js +1 -1
  13. package/dist/checks/duplicate-function-arguments/index.js.map +1 -1
  14. package/dist/checks/duplicate-render-partial-arguments/index.js +1 -1
  15. package/dist/checks/duplicate-render-partial-arguments/index.js.map +1 -1
  16. package/dist/checks/graphql/index.js +1 -1
  17. package/dist/checks/graphql/index.js.map +1 -1
  18. package/dist/checks/graphql-variables/index.js +4 -0
  19. package/dist/checks/graphql-variables/index.js.map +1 -1
  20. package/dist/checks/img-width-and-height/index.js +1 -1
  21. package/dist/checks/img-width-and-height/index.js.map +1 -1
  22. package/dist/checks/index.d.ts +3 -3
  23. package/dist/checks/index.js +4 -79
  24. package/dist/checks/index.js.map +1 -1
  25. package/dist/checks/json-syntax-error/index.js +1 -1
  26. package/dist/checks/json-syntax-error/index.js.map +1 -1
  27. package/dist/checks/liquid-html-syntax-error/checks/InvalidLoopArguments.js +1 -1
  28. package/dist/checks/liquid-html-syntax-error/checks/InvalidLoopArguments.js.map +1 -1
  29. package/dist/checks/liquid-html-syntax-error/checks/InvalidTagSyntax.d.ts +19 -0
  30. package/dist/checks/liquid-html-syntax-error/checks/InvalidTagSyntax.js +79 -0
  31. package/dist/checks/liquid-html-syntax-error/checks/InvalidTagSyntax.js.map +1 -0
  32. package/dist/checks/liquid-html-syntax-error/checks/UnknownTag.d.ts +3 -0
  33. package/dist/checks/liquid-html-syntax-error/checks/UnknownTag.js +32 -0
  34. package/dist/checks/liquid-html-syntax-error/checks/UnknownTag.js.map +1 -0
  35. package/dist/checks/liquid-html-syntax-error/index.js +23 -5
  36. package/dist/checks/liquid-html-syntax-error/index.js.map +1 -1
  37. package/dist/checks/matching-translations/index.d.ts +2 -2
  38. package/dist/checks/matching-translations/index.js +114 -90
  39. package/dist/checks/matching-translations/index.js.map +1 -1
  40. package/dist/checks/metadata-params/index.js +6 -3
  41. package/dist/checks/metadata-params/index.js.map +1 -1
  42. package/dist/checks/missing-asset/index.js +1 -1
  43. package/dist/checks/missing-asset/index.js.map +1 -1
  44. package/dist/checks/missing-partial/index.d.ts +6 -0
  45. package/dist/checks/missing-partial/index.js +70 -0
  46. package/dist/checks/missing-partial/index.js.map +1 -0
  47. package/dist/checks/orphaned-partial/index.js +4 -4
  48. package/dist/checks/orphaned-partial/index.js.map +1 -1
  49. package/dist/checks/parser-blocking-script/index.js +10 -36
  50. package/dist/checks/parser-blocking-script/index.js.map +1 -1
  51. package/dist/checks/parser-blocking-script/suggestions.d.ts +1 -2
  52. package/dist/checks/parser-blocking-script/suggestions.js +1 -11
  53. package/dist/checks/parser-blocking-script/suggestions.js.map +1 -1
  54. package/dist/checks/reserved-doc-param-names/index.js +6 -5
  55. package/dist/checks/reserved-doc-param-names/index.js.map +1 -1
  56. package/dist/checks/translation-key-exists/index.js +1 -1
  57. package/dist/checks/translation-key-exists/index.js.map +1 -1
  58. package/dist/checks/unclosed-html-element/index.js +5 -1
  59. package/dist/checks/unclosed-html-element/index.js.map +1 -1
  60. package/dist/checks/undefined-object/index.js +13 -31
  61. package/dist/checks/undefined-object/index.js.map +1 -1
  62. package/dist/checks/unique-doc-param-names/index.js +1 -1
  63. package/dist/checks/unique-doc-param-names/index.js.map +1 -1
  64. package/dist/checks/unknown-filter/index.js +3 -3
  65. package/dist/checks/unknown-filter/index.js.map +1 -1
  66. package/dist/checks/unknown-property/index.js +1 -1
  67. package/dist/checks/unknown-property/index.js.map +1 -1
  68. package/dist/checks/unrecognized-render-partial-arguments/index.js +2 -2
  69. package/dist/checks/unrecognized-render-partial-arguments/index.js.map +1 -1
  70. package/dist/checks/unused-assign/index.js +1 -1
  71. package/dist/checks/unused-assign/index.js.map +1 -1
  72. package/dist/checks/unused-doc-param/index.js +1 -1
  73. package/dist/checks/unused-doc-param/index.js.map +1 -1
  74. package/dist/checks/utils.js +1 -1
  75. package/dist/checks/utils.js.map +1 -1
  76. package/dist/checks/valid-content-for-arguments/index.js +1 -1
  77. package/dist/checks/valid-content-for-arguments/index.js.map +1 -1
  78. package/dist/checks/valid-doc-param-types/index.js +4 -4
  79. package/dist/checks/valid-doc-param-types/index.js.map +1 -1
  80. package/dist/checks/valid-html-translation/index.d.ts +2 -2
  81. package/dist/checks/valid-html-translation/index.js +4 -4
  82. package/dist/checks/valid-html-translation/index.js.map +1 -1
  83. package/dist/checks/valid-json/index.js +1 -1
  84. package/dist/checks/valid-json/index.js.map +1 -1
  85. package/dist/checks/valid-render-partial-argument-types/index.js +2 -2
  86. package/dist/checks/valid-render-partial-argument-types/index.js.map +1 -1
  87. package/dist/checks/variable-name/index.js +1 -1
  88. package/dist/checks/variable-name/index.js.map +1 -1
  89. package/dist/context-utils.d.ts +18 -7
  90. package/dist/context-utils.js +68 -109
  91. package/dist/context-utils.js.map +1 -1
  92. package/dist/disabled-checks/index.js +4 -2
  93. package/dist/disabled-checks/index.js.map +1 -1
  94. package/dist/doc-generator/DocBlockGenerator.d.ts +16 -0
  95. package/dist/doc-generator/DocBlockGenerator.js +464 -0
  96. package/dist/doc-generator/DocBlockGenerator.js.map +1 -0
  97. package/dist/doc-generator/index.d.ts +1 -0
  98. package/dist/doc-generator/index.js +6 -0
  99. package/dist/doc-generator/index.js.map +1 -0
  100. package/dist/find-root.d.ts +7 -10
  101. package/dist/find-root.js +10 -17
  102. package/dist/find-root.js.map +1 -1
  103. package/dist/fixes/autofix.d.ts +4 -4
  104. package/dist/fixes/autofix.js +2 -2
  105. package/dist/fixes/autofix.js.map +1 -1
  106. package/dist/fixes/correctors/index.js +4 -0
  107. package/dist/fixes/correctors/index.js.map +1 -1
  108. package/dist/index.d.ts +5 -5
  109. package/dist/index.js +50 -17
  110. package/dist/index.js.map +1 -1
  111. package/dist/jsonc/parse.d.ts +1 -1
  112. package/dist/jsonc/parse.js +1 -1
  113. package/dist/liquid-doc/arguments.d.ts +7 -8
  114. package/dist/liquid-doc/arguments.js +28 -29
  115. package/dist/liquid-doc/arguments.js.map +1 -1
  116. package/dist/liquid-doc/liquidDoc.d.ts +1 -1
  117. package/dist/liquid-doc/liquidDoc.js.map +1 -1
  118. package/dist/liquid-doc/utils.d.ts +3 -3
  119. package/dist/liquid-doc/utils.js +14 -3
  120. package/dist/liquid-doc/utils.js.map +1 -1
  121. package/dist/path.d.ts +1 -0
  122. package/dist/path.js +16 -1
  123. package/dist/path.js.map +1 -1
  124. package/{src/test/MockTheme.ts → dist/test/MockApp.d.ts} +2 -3
  125. package/dist/test/MockApp.js +16 -0
  126. package/dist/test/MockApp.js.map +1 -0
  127. package/dist/test/MockFileSystem.d.ts +3 -3
  128. package/dist/test/MockFileSystem.js +6 -6
  129. package/dist/test/MockFileSystem.js.map +1 -1
  130. package/dist/test/index.d.ts +1 -1
  131. package/dist/test/index.js +1 -1
  132. package/dist/test/index.js.map +1 -1
  133. package/dist/test/test-helper.d.ts +10 -9
  134. package/dist/test/test-helper.js +15 -106
  135. package/dist/test/test-helper.js.map +1 -1
  136. package/dist/to-schema.d.ts +1 -1
  137. package/dist/to-source-code.d.ts +3 -2
  138. package/dist/to-source-code.js +20 -0
  139. package/dist/to-source-code.js.map +1 -1
  140. package/dist/tsconfig.tsbuildinfo +1 -1
  141. package/dist/types/platformos-liquid-docs.d.ts +128 -0
  142. package/dist/types/platformos-liquid-docs.js +3 -0
  143. package/dist/types/platformos-liquid-docs.js.map +1 -0
  144. package/dist/types/schemas/index.d.ts +0 -2
  145. package/dist/types/schemas/index.js.map +1 -1
  146. package/dist/types.d.ts +26 -67
  147. package/dist/types.js +3 -5
  148. package/dist/types.js.map +1 -1
  149. package/dist/utils/block.js.map +1 -1
  150. package/dist/utils/index.d.ts +0 -1
  151. package/dist/utils/index.js +0 -1
  152. package/dist/utils/index.js.map +1 -1
  153. package/dist/yaml/parse.d.ts +5 -0
  154. package/dist/yaml/parse.js +94 -0
  155. package/dist/yaml/parse.js.map +1 -0
  156. package/package.json +4 -3
  157. package/src/{AugmentedThemeDocset.spec.ts → AugmentedPlatformOSDocset.spec.ts} +47 -34
  158. package/src/AugmentedPlatformOSDocset.ts +89 -0
  159. package/src/JSONValidator.ts +1 -1
  160. package/src/checks/deprecated-filter/index.spec.ts +76 -248
  161. package/src/checks/deprecated-filter/index.ts +5 -53
  162. package/src/checks/deprecated-tag/index.spec.ts +85 -34
  163. package/src/checks/deprecated-tag/index.ts +27 -22
  164. package/src/checks/duplicate-function-arguments/index.ts +1 -1
  165. package/src/checks/duplicate-render-partial-arguments/index.spec.ts +12 -12
  166. package/src/checks/duplicate-render-partial-arguments/index.ts +1 -1
  167. package/src/checks/graphql/index.ts +1 -1
  168. package/src/checks/graphql-variables/index.spec.ts +95 -0
  169. package/src/checks/graphql-variables/index.ts +4 -0
  170. package/src/checks/img-width-and-height/index.ts +2 -2
  171. package/src/checks/index.ts +11 -80
  172. package/src/checks/invalid-hash-assign-target/index.spec.ts +27 -27
  173. package/src/checks/json-syntax-error/index.ts +2 -2
  174. package/src/checks/liquid-html-syntax-error/checks/InvalidBooleanExpression.spec.ts +0 -11
  175. package/src/checks/liquid-html-syntax-error/checks/InvalidLoopArguments.spec.ts +1 -2
  176. package/src/checks/liquid-html-syntax-error/checks/InvalidLoopArguments.ts +2 -2
  177. package/src/checks/liquid-html-syntax-error/checks/InvalidTagSyntax.spec.ts +259 -0
  178. package/src/checks/liquid-html-syntax-error/checks/InvalidTagSyntax.ts +89 -0
  179. package/src/checks/liquid-html-syntax-error/checks/UnknownTag.spec.ts +293 -0
  180. package/src/checks/liquid-html-syntax-error/checks/UnknownTag.ts +43 -0
  181. package/src/checks/liquid-html-syntax-error/index.spec.ts +1 -6
  182. package/src/checks/liquid-html-syntax-error/index.ts +26 -5
  183. package/src/checks/matching-translations/index.spec.ts +187 -354
  184. package/src/checks/matching-translations/index.ts +117 -107
  185. package/src/checks/metadata-params/index.ts +6 -8
  186. package/src/checks/missing-asset/index.ts +1 -1
  187. package/src/checks/{missing-template → missing-partial}/index.spec.ts +6 -6
  188. package/src/checks/{missing-template → missing-partial}/index.ts +12 -26
  189. package/src/checks/orphaned-partial/index.ts +3 -3
  190. package/src/checks/parser-blocking-script/index.spec.ts +0 -118
  191. package/src/checks/parser-blocking-script/index.ts +3 -33
  192. package/src/checks/parser-blocking-script/suggestions.ts +1 -28
  193. package/src/checks/translation-key-exists/index.ts +1 -1
  194. package/src/checks/unclosed-html-element/index.ts +5 -1
  195. package/src/checks/undefined-object/index.spec.ts +32 -111
  196. package/src/checks/undefined-object/index.ts +15 -34
  197. package/src/checks/unique-doc-param-names/index.ts +1 -1
  198. package/src/checks/unknown-filter/index.spec.ts +2 -2
  199. package/src/checks/unknown-filter/index.ts +3 -3
  200. package/src/checks/unknown-property/index.ts +1 -1
  201. package/src/checks/unrecognized-render-partial-arguments/index.spec.ts +5 -5
  202. package/src/checks/unrecognized-render-partial-arguments/index.ts +2 -5
  203. package/src/checks/unused-assign/index.spec.ts +0 -30
  204. package/src/checks/unused-assign/index.ts +2 -2
  205. package/src/checks/unused-doc-param/index.ts +1 -1
  206. package/src/checks/utils.ts +1 -1
  207. package/src/checks/valid-doc-param-types/index.ts +4 -4
  208. package/src/checks/valid-html-translation/index.spec.ts +42 -32
  209. package/src/checks/valid-html-translation/index.ts +7 -7
  210. package/src/checks/valid-json/index.ts +2 -2
  211. package/src/checks/valid-render-partial-argument-types/index.spec.ts +13 -13
  212. package/src/checks/valid-render-partial-argument-types/index.ts +2 -5
  213. package/src/checks/variable-name/index.ts +1 -1
  214. package/src/context-utils.spec.ts +49 -77
  215. package/src/context-utils.ts +81 -129
  216. package/src/disabled-checks/index.spec.ts +26 -26
  217. package/src/disabled-checks/index.ts +2 -2
  218. package/src/disabled-checks/test-checks.ts +4 -4
  219. package/src/find-root.ts +12 -22
  220. package/src/fixes/autofix.spec.ts +2 -2
  221. package/src/fixes/autofix.ts +4 -4
  222. package/src/fixes/correctors/index.ts +4 -0
  223. package/src/ignore.spec.ts +4 -5
  224. package/src/index.ts +51 -21
  225. package/src/jsonc/parse.ts +1 -1
  226. package/src/liquid-doc/arguments.spec.ts +19 -45
  227. package/src/liquid-doc/arguments.ts +35 -42
  228. package/src/liquid-doc/liquidDoc.spec.ts +1 -1
  229. package/src/liquid-doc/liquidDoc.ts +1 -2
  230. package/src/liquid-doc/utils.ts +17 -8
  231. package/src/path.ts +16 -0
  232. package/src/test/MockApp.ts +17 -0
  233. package/src/test/MockFileSystem.spec.ts +10 -11
  234. package/src/test/MockFileSystem.ts +6 -6
  235. package/src/test/contain-offense.spec.ts +11 -3
  236. package/src/test/index.ts +1 -1
  237. package/src/test/test-helper.ts +43 -145
  238. package/src/to-source-code.ts +20 -1
  239. package/src/types/{theme-liquid-docs.ts → platformos-liquid-docs.ts} +8 -13
  240. package/src/types.ts +29 -92
  241. package/src/utils/index.ts +0 -1
  242. package/src/visitor.spec.ts +2 -2
  243. package/src/yaml/parse.ts +111 -0
  244. package/src/AugmentedThemeDocset.ts +0 -137
  245. package/src/checks/app-block-missing-schema/index.spec.ts +0 -121
  246. package/src/checks/app-block-missing-schema/index.ts +0 -46
  247. package/src/checks/app-block-valid-tags/index.spec.ts +0 -96
  248. package/src/checks/app-block-valid-tags/index.ts +0 -54
  249. package/src/checks/asset-preload/index.spec.ts +0 -78
  250. package/src/checks/asset-preload/index.ts +0 -65
  251. package/src/checks/asset-size-app-block-css/index.spec.ts +0 -88
  252. package/src/checks/asset-size-app-block-css/index.ts +0 -78
  253. package/src/checks/asset-size-app-block-javascript/index.spec.ts +0 -66
  254. package/src/checks/asset-size-app-block-javascript/index.ts +0 -78
  255. package/src/checks/asset-size-css/index.spec.ts +0 -166
  256. package/src/checks/asset-size-css/index.ts +0 -160
  257. package/src/checks/asset-size-javascript/index.spec.ts +0 -184
  258. package/src/checks/asset-size-javascript/index.ts +0 -144
  259. package/src/checks/block-id-usage/index.spec.ts +0 -76
  260. package/src/checks/block-id-usage/index.ts +0 -72
  261. package/src/checks/cdn-preconnect/index.spec.ts +0 -40
  262. package/src/checks/cdn-preconnect/index.ts +0 -43
  263. package/src/checks/content-for-header-modification/index.spec.ts +0 -65
  264. package/src/checks/content-for-header-modification/index.ts +0 -72
  265. package/src/checks/deprecate-bgsizes/index.spec.ts +0 -41
  266. package/src/checks/deprecate-bgsizes/index.ts +0 -49
  267. package/src/checks/deprecate-lazysizes/index.spec.ts +0 -26
  268. package/src/checks/deprecate-lazysizes/index.ts +0 -58
  269. package/src/checks/deprecated-filter/fixes.ts +0 -264
  270. package/src/checks/deprecated-fonts-on-sections-and-blocks/deprecated-fonts-data.ts +0 -1343
  271. package/src/checks/deprecated-fonts-on-sections-and-blocks/index.spec.ts +0 -613
  272. package/src/checks/deprecated-fonts-on-sections-and-blocks/index.ts +0 -284
  273. package/src/checks/deprecated-fonts-on-settings-schema/index.spec.ts +0 -102
  274. package/src/checks/deprecated-fonts-on-settings-schema/index.ts +0 -66
  275. package/src/checks/duplicate-content-for-arguments/index.spec.ts +0 -98
  276. package/src/checks/duplicate-content-for-arguments/index.ts +0 -43
  277. package/src/checks/empty-block-content/index.spec.ts +0 -117
  278. package/src/checks/empty-block-content/index.ts +0 -60
  279. package/src/checks/hardcoded-routes/index.spec.ts +0 -58
  280. package/src/checks/hardcoded-routes/index.ts +0 -100
  281. package/src/checks/json-missing-block/index.spec.ts +0 -435
  282. package/src/checks/json-missing-block/index.ts +0 -56
  283. package/src/checks/json-missing-block/missing-block-utils.ts +0 -147
  284. package/src/checks/liquid-free-settings/index.spec.ts +0 -180
  285. package/src/checks/liquid-free-settings/index.ts +0 -79
  286. package/src/checks/missing-content-for-arguments/index.spec.ts +0 -144
  287. package/src/checks/missing-content-for-arguments/index.ts +0 -46
  288. package/src/checks/pagination-size/index.spec.ts +0 -158
  289. package/src/checks/pagination-size/index.ts +0 -104
  290. package/src/checks/remote-asset/index.spec.ts +0 -280
  291. package/src/checks/remote-asset/index.ts +0 -238
  292. package/src/checks/reserved-doc-param-names/index.spec.ts +0 -62
  293. package/src/checks/reserved-doc-param-names/index.ts +0 -57
  294. package/src/checks/schema-presets-block-order/index.spec.ts +0 -344
  295. package/src/checks/schema-presets-block-order/index.ts +0 -154
  296. package/src/checks/schema-presets-static-blocks/index.spec.ts +0 -145
  297. package/src/checks/schema-presets-static-blocks/index.ts +0 -126
  298. package/src/checks/static-stylesheet-and-javascript-tags/index.spec.ts +0 -257
  299. package/src/checks/static-stylesheet-and-javascript-tags/index.ts +0 -48
  300. package/src/checks/unique-settings-id/index.spec.ts +0 -24
  301. package/src/checks/unique-settings-id/index.ts +0 -84
  302. package/src/checks/unique-settings-id/test-data.ts +0 -1191
  303. package/src/checks/unique-static-block-id/index.spec.ts +0 -55
  304. package/src/checks/unique-static-block-id/index.ts +0 -60
  305. package/src/checks/unrecognized-content-for-arguments/index.spec.ts +0 -145
  306. package/src/checks/unrecognized-content-for-arguments/index.ts +0 -55
  307. package/src/checks/valid-block-target/index.spec.ts +0 -1396
  308. package/src/checks/valid-block-target/index.ts +0 -142
  309. package/src/checks/valid-content-for-argument-types/index.spec.ts +0 -382
  310. package/src/checks/valid-content-for-argument-types/index.ts +0 -42
  311. package/src/checks/valid-content-for-arguments/index.spec.ts +0 -107
  312. package/src/checks/valid-content-for-arguments/index.ts +0 -98
  313. package/src/checks/valid-local-blocks/index.spec.ts +0 -286
  314. package/src/checks/valid-local-blocks/index.ts +0 -100
  315. package/src/checks/valid-local-blocks/valid-block-utils.ts +0 -97
  316. package/src/checks/valid-schema/index.spec.ts +0 -174
  317. package/src/checks/valid-schema/index.ts +0 -41
  318. package/src/checks/valid-schema-name/index.spec.ts +0 -112
  319. package/src/checks/valid-schema-name/index.ts +0 -75
  320. package/src/checks/valid-settings-key/index.spec.ts +0 -321
  321. package/src/checks/valid-settings-key/index.ts +0 -144
  322. package/src/checks/valid-static-block-type/index.spec.ts +0 -38
  323. package/src/checks/valid-static-block-type/index.ts +0 -58
  324. package/src/checks/valid-visible-if/index.spec.ts +0 -619
  325. package/src/checks/valid-visible-if/index.ts +0 -184
  326. package/src/checks/valid-visible-if/visible-if-utils.ts +0 -158
  327. package/src/tags/content-for.ts +0 -25
  328. package/src/to-schema.ts +0 -231
  329. package/src/types/schemas/index.ts +0 -5
  330. package/src/types/schemas/preset.ts +0 -52
  331. package/src/types/schemas/section.ts +0 -86
  332. package/src/types/schemas/setting.ts +0 -320
  333. package/src/types/schemas/template.ts +0 -34
  334. package/src/types/schemas/theme-block.ts +0 -34
  335. package/src/types/theme-schemas.ts +0 -80
  336. package/src/utils/block.ts +0 -300
  337. package/src/utils/markup.ts +0 -10
@@ -1,1191 +0,0 @@
1
- export const invalidJson = `
2
- [
3
- {
4
- "name": "theme_info",
5
- "theme_name": "SKKN",
6
- "theme_author": "Accenture",
7
- "theme_version": "2.0.0",
8
- "theme_documentation_url": "https://www.accenture.com/",
9
- "theme_support_url": "https://www.accenture.com/"
10
- },
11
- {
12
- "name": "Colors",
13
- "settings": [
14
- {
15
- "type": "color",
16
- "id": "theme_color",
17
- "label": "Theme Primary Color",
18
- "default": "#ff0000"
19
- },
20
- {
21
- "type": "color",
22
- "id": "default_shade_color",
23
- "label": "PDP default shade option",
24
- "default": "#757575"
25
- }
26
- ]
27
- },
28
- {
29
- "name": "Logos",
30
- "settings": [
31
- {
32
- "type": "image_picker",
33
- "id": "logo",
34
- "label": "Logo image"
35
- }
36
- ]
37
- },
38
- {
39
- "name": "Favicon",
40
- "settings": [
41
- {
42
- "type": "image_picker",
43
- "id": "favicon",
44
- "label": "Favicon image",
45
- "info": "Will be scaled down to 32 x 32px"
46
- }
47
- ]
48
- },
49
- {
50
- "name": "Social media",
51
- "settings": [
52
- {
53
- "type": "header",
54
- "content": "Social sharing options"
55
- },
56
- {
57
- "type": "checkbox",
58
- "id": "share_facebook",
59
- "label": "Share on Facebook",
60
- "default": true
61
- },
62
- {
63
- "type": "checkbox",
64
- "id": "share_twitter",
65
- "label": "Tweet on Twitter",
66
- "default": true
67
- },
68
- {
69
- "type": "checkbox",
70
- "id": "share_pinterest",
71
- "label": "Pin on Pinterest",
72
- "default": true
73
- },
74
- {
75
- "type": "header",
76
- "content": "Social accounts"
77
- },
78
- {
79
- "type": "text",
80
- "id": "social_twitter_link",
81
- "label": "Twitter",
82
- "info": "https://twitter.com/shopify"
83
- },
84
- {
85
- "type": "text",
86
- "id": "social_facebook_link",
87
- "label": "Facebook",
88
- "info": "https://facebook.com/shopify"
89
- },
90
- {
91
- "type": "text",
92
- "id": "social_pinterest_link",
93
- "label": "Pinterest",
94
- "info": "https://pinterest.com/shopify"
95
- },
96
- {
97
- "type": "text",
98
- "id": "social_instagram_link",
99
- "label": "Instagram",
100
- "info": "http://instagram.com/shopify"
101
- },
102
- {
103
- "type": "text",
104
- "id": "social_tiktok_link",
105
- "label": "TikTok",
106
- "info": "http://tiktok.com/shopify"
107
- },
108
- {
109
- "type": "text",
110
- "id": "social_tumblr_link",
111
- "label": "Tumblr",
112
- "info": "http://shopify.tumblr.com"
113
- },
114
- {
115
- "type": "text",
116
- "id": "social_snapchat_link",
117
- "label": "Snapchat",
118
- "info": "https://www.snapchat.com/add/shopify"
119
- },
120
- {
121
- "type": "text",
122
- "id": "social_youtube_link",
123
- "label": "YouTube",
124
- "info": "https://www.youtube.com/shopify"
125
- },
126
- {
127
- "type": "text",
128
- "id": "social_vimeo_link",
129
- "label": "Vimeo",
130
- "info": "https://vimeo.com/shopify"
131
- }
132
- ]
133
- },
134
- {
135
- "name": "Newsletter",
136
- "settings": [
137
- {
138
- "type": "header",
139
- "content": "Attentive"
140
- },
141
- {
142
- "type": "text",
143
- "id": "attentive_id_desktop",
144
- "label": "Creative ID (Desktop)"
145
- },
146
- {
147
- "type": "text",
148
- "id": "attentive_id_mobile",
149
- "label": "Creative ID (Mobile)"
150
- },
151
- {
152
- "type": "richtext",
153
- "id": "privacy_policy",
154
- "label": "Content"
155
- }
156
- ]
157
- },
158
- {
159
- "name": "Nosto Account Id",
160
- "settings": [
161
- {
162
- "type": "text",
163
- "id": "nosto_account_id",
164
- "label": "Nosto account id",
165
- "default": "shopify-62406787286",
166
- "placeholder": "If empty, Nosto script won't load"
167
- }
168
- ]
169
- },
170
- {
171
- "name": "Image Sizes",
172
- "settings": [
173
- {
174
- "type": "range",
175
- "id": "product_gallery_image_max",
176
- "min": 160,
177
- "max": 1920,
178
- "step": 40,
179
- "label": "Product Gallery",
180
- "default": 800
181
- },
182
- {
183
- "type": "range",
184
- "id": "product_tile_image_max",
185
- "min": 160,
186
- "max": 1920,
187
- "step": 40,
188
- "label": "Product Tile",
189
- "default": 800
190
- },
191
- {
192
- "type": "range",
193
- "id": "article_tile_image_max",
194
- "min": 160,
195
- "max": 1920,
196
- "step": 40,
197
- "label": "Article Tile",
198
- "default": 800
199
- },
200
- {
201
- "type": "range",
202
- "id": "collection_tile_image_max",
203
- "min": 160,
204
- "max": 1920,
205
- "step": 40,
206
- "label": "Collection Tile",
207
- "default": 800
208
- },
209
- {
210
- "type": "range",
211
- "id": "line_item_image_max",
212
- "min": 160,
213
- "max": 1920,
214
- "step": 40,
215
- "label": "Line Item Thumbnail",
216
- "default": 400
217
- },
218
- {
219
- "type": "text",
220
- "id": "responsive_sizes",
221
- "label": "Responsive Sized",
222
- "default": "360,540,720,900,1080,1200,1440,1680,1920",
223
- "info": "Comma-separated list of sizes"
224
- }
225
- ]
226
- },
227
- {
228
- "name": "Pagination",
229
- "settings": [
230
- {
231
- "type": "range",
232
- "id": "products_page_size",
233
- "min": 4,
234
- "max": 48,
235
- "step": 1,
236
- "label": "Collection Products",
237
- "default": 12
238
- },
239
- {
240
- "type": "range",
241
- "id": "results_page_size",
242
- "min": 4,
243
- "max": 48,
244
- "step": 1,
245
- "label": "Search Results",
246
- "default": 12
247
- },
248
- {
249
- "type": "range",
250
- "id": "articles_page_size",
251
- "min": 4,
252
- "max": 48,
253
- "step": 1,
254
- "label": "Blog Articles",
255
- "default": 12
256
- },
257
- {
258
- "type": "range",
259
- "id": "comments_page_size",
260
- "min": 4,
261
- "max": 48,
262
- "step": 1,
263
- "label": "Article Comments",
264
- "default": 12
265
- },
266
- {
267
- "type": "range",
268
- "id": "addresses_page_size",
269
- "min": 4,
270
- "max": 48,
271
- "step": 1,
272
- "label": "Customer Addresses",
273
- "default": 12
274
- },
275
- {
276
- "type": "range",
277
- "id": "orders_page_size",
278
- "min": 4,
279
- "max": 48,
280
- "step": 1,
281
- "label": "Customer Orders",
282
- "default": 12
283
- }
284
- ]
285
- },
286
- {
287
- "name": "Navigation",
288
- "settings": [
289
- {
290
- "type": "header",
291
- "content": "Breadcrumbs"
292
- },
293
- {
294
- "type": "checkbox",
295
- "id": "show_breadcrumbs_home",
296
- "label": "Show Home link",
297
- "default": true
298
- },
299
- {
300
- "type": "checkbox",
301
- "id": "enable_breadcrumbs_page",
302
- "label": "Enable on Page template",
303
- "default": false
304
- },
305
- {
306
- "type": "checkbox",
307
- "id": "enable_breadcrumbs_product",
308
- "label": "Enable on Product template",
309
- "default": false
310
- },
311
- {
312
- "type": "checkbox",
313
- "id": "enable_breadcrumbs_collection",
314
- "label": "Enable on Collection template",
315
- "default": false
316
- },
317
- {
318
- "type": "checkbox",
319
- "id": "enable_breadcrumbs_blog",
320
- "label": "Enable on Blog template",
321
- "default": false
322
- },
323
- {
324
- "type": "checkbox",
325
- "id": "enable_breadcrumbs_article",
326
- "label": "Enable on Article template",
327
- "default": false
328
- },
329
- {
330
- "type": "text",
331
- "id": "footer_handle",
332
- "label": "Footer Handle"
333
- },
334
- {
335
- "type": "text",
336
- "id": "checkout_footer_handle",
337
- "label": "Checkout Footer Handle"
338
- }
339
- ]
340
- },
341
- {
342
- "name": "Nosto Account Id",
343
- "settings": [
344
- {
345
- "type": "text",
346
- "id": "nosto_account_id",
347
- "label": "Nosto account id",
348
- "default": "shopify-62406787286",
349
- "placeholder": "If empty, Nosto script won't load"
350
- }
351
- ]
352
- },
353
- {
354
- "name": "Loyalty",
355
- "settings": [
356
- {
357
- "type": "range",
358
- "id": "loyalty_points_settingss",
359
- "min": 0,
360
- "max": 10,
361
- "step": 0.5,
362
- "label": "Loyalty Points",
363
- "default": 0.5
364
- }
365
- ]
366
- },
367
- {
368
- "name": "Cart",
369
- "settings": [
370
- {
371
- "type": "range",
372
- "id": "free_shipping_threshold",
373
- "min": 0,
374
- "max": 150,
375
- "step": 5,
376
- "unit": "$",
377
- "label": "Free Shipping Threshold",
378
- "default": 75
379
- },
380
- {
381
- "type": "product",
382
- "id": "complete_collection_set_handle",
383
- "label": "Complete Collection Set Handle"
384
- },
385
- {
386
- "type": "text",
387
- "id": "complete_collection_set_text",
388
- "label": "Complete Collection Set Message",
389
- "default": "You’re receiving 5 complimentary samples with your purchase of The Complete Collection."
390
- },
391
- {
392
- "type": "text",
393
- "id": "quantity_message_for_one_time_purchase",
394
- "label": "Quantity Message For Onetime Purchase",
395
- "default": "You can select a maximum of 10 products of this item per order"
396
- },
397
- {
398
- "type": "text",
399
- "id": "quantity_message_for_subscription",
400
- "label": "Quantity Message For Subscription",
401
- "default": "You can select a maximum of 3 products of this item per order"
402
- },
403
- {
404
- "type": "number",
405
- "id": "maximum_quantity_for_one_time_purchase",
406
- "label": "Maximum Quantity For Onetime Purchase",
407
- "default": 10
408
- },
409
- {
410
- "type": "number",
411
- "id": "maximum_quantity_for_subscription",
412
- "label": "Maximum Quantity For Subscription",
413
- "default": 3
414
- }
415
- ]
416
- },
417
- {
418
- "name": "Global-E",
419
- "settings": [
420
- {
421
- "type": "checkbox",
422
- "id": "enable_globale",
423
- "label": "Enable Global-E",
424
- "default": true
425
- },
426
- {
427
- "type": "select",
428
- "id": "environment",
429
- "label": "Environment",
430
- "options": [
431
- {
432
- "value": "INT",
433
- "label": "Staging"
434
- },
435
- {
436
- "value": "PROD",
437
- "label": "Production"
438
- }
439
- ],
440
- "default": "INT"
441
- },
442
- {
443
- "type": "text",
444
- "id": "globale_mid",
445
- "label": "Global-E Merchant ID",
446
- "default": "1164"
447
- },
448
- {
449
- "type": "text",
450
- "id": "globale_emi",
451
- "label": "Global-E EMI",
452
- "default": "8uyw"
453
- },
454
- {
455
- "type": "text",
456
- "id": "globale_site_id",
457
- "label": "Global-E Site ID",
458
- "default": "212b00eaaa7c"
459
- },
460
- {
461
- "type": "text",
462
- "id": "globale_appurl",
463
- "label": "Global-E App URL",
464
- "default": "https://crossborder-integration-qa-int.bglobale.com/"
465
- },
466
- {
467
- "type": "text",
468
- "id": "globale_geappurl",
469
- "label": "Global-E GE App URL",
470
- "default": "https://www.bglobale.com/"
471
- },
472
- {
473
- "type": "text",
474
- "id": "globale_apiurl",
475
- "label": "Global-E GE API URL",
476
- "default": "https://connect.bglobale.com/"
477
- },
478
- {
479
- "type": "text",
480
- "id": "globale_checkout_environment",
481
- "label": "Global-E Checkout Environment ID",
482
- "default": "www.bglobale.com"
483
- },
484
- {
485
- "type": "text",
486
- "id": "globale_operated_countries_GLBE_PARAMS",
487
- "label": "Operated Countries (GLBE_PARAMS)",
488
- "info": "Please enter a comma separated list with no spaces, ex: AT,BE,BE,BG",
489
- "default": "AD, AE, AT, BE, BG, BN, CA, CH, CN, CY, CZ, DE, DK, EE, ES, FI, FR, GB, GL, GR, HR, HU, ID, IE, IS, IT, LT, LU, LV, MC, MT, MX, NL, NO, PL, PT, RO, SA, SE, SG, SI, SK, VA"
490
- },
491
- {
492
- "type": "text",
493
- "id": "globale_operated_countries_outside_GLBE_PARAMS",
494
- "label": "Operated Countries outside GLBE_PARAMS",
495
- "info": "Please enter a comma separated list with no spaces, ex: AT,BE,BE,BG",
496
- "default": "AD,AE,AT,BE,BG,BN,CA,CH,CN,CY,CZ,DE,DK,EE,ES,FI,FR,GB,GL,GR,HR,HU,ID,IE,IS,IT,LT,LU,LV,MC,MT,MX,NL,NO,PL,PT,RO,SA,SE,SG,SI,SK,VA"
497
- }
498
- ]
499
- },
500
- {
501
- "name": "Checkout Killswitches",
502
- "settings": [
503
- {
504
- "type": "checkbox",
505
- "id": "terms_of_service_checkout",
506
- "label": "Enables Terms of Service at Checkout Payment Method Step"
507
- }
508
- ]
509
- },
510
- {
511
- "name": "Hide Discount Code",
512
- "settings": [
513
- {
514
- "type": "text",
515
- "id": "bundle_not_eligible_for_welcome10_discount",
516
- "label": "Display below message as WELCOME10 is Not eligible for Bundle Items",
517
- "default": "Part of Bundle, Not eligible for discount"
518
- },
519
- {
520
- "type": "text",
521
- "id": "tiered_off_promotion_code",
522
- "label": "Tiered % Off promotion Code (should be exact) or leave it empty if there is no tiered % off promotion active",
523
- "default": "TIEREDOFF"
524
- }
525
- ]
526
- },
527
- {
528
- "name": "Klaviyo - Back In Stock",
529
- "settings": [
530
- {
531
- "type": "text",
532
- "id": "klaviyo_public_api_key",
533
- "label": "public Klaviyo API Key",
534
- "default": "UJ6swp"
535
- },
536
- {
537
- "type": "text",
538
- "id": "listId",
539
- "label": "list id",
540
- "default": "S8qDcW"
541
- }
542
- ]
543
- },
544
- {
545
- "name": "Sample",
546
- "settings": [
547
- {
548
- "type": "text",
549
- "id": "sample_message",
550
- "label": "Display below message as when customer order again for sample"
551
- },
552
- {
553
- "type": "header",
554
- "content": "Attentive Popup for Product Page"
555
- },
556
- {
557
- "type": "text",
558
- "id": "attentive_id_desktop_sample",
559
- "label": "Creative ID (Desktop)"
560
- },
561
- {
562
- "type": "text",
563
- "id": "attentive_id_mobile_sample",
564
- "label": "Creative ID (Mobile)"
565
- }
566
- ]
567
- },
568
- {
569
- "name": "Yotpo",
570
- "settings": [
571
- {
572
- "type": "header",
573
- "content": "Yotpo - Checkout Redeem Points"
574
- },
575
- {
576
- "type": "text",
577
- "id": "yotpo_checkout_widget_id",
578
- "label": "Yotpo Checkout Widget ID",
579
- "default": "JXB__Dq8om7IRNIBU7D8ag"
580
- },
581
- {
582
- "type": "text",
583
- "id": "yotpo_checkout_instance_id",
584
- "label": "Yotpo Checkout Instance ID",
585
- "default": "472279"
586
- },
587
- {
588
- "type": "text",
589
- "id": "yotpo_account_text",
590
- "label": "Yotpo Account Text",
591
- "default": "Apply your points at checkout to receive a discount on your purchase"
592
- }
593
- ]
594
- }
595
- ]`;
596
-
597
- export const validJson = `
598
- [
599
- {
600
- "name": "theme_info",
601
- "theme_name": "SKKN",
602
- "theme_author": "Accenture",
603
- "theme_version": "2.0.0",
604
- "theme_documentation_url": "https://www.accenture.com/",
605
- "theme_support_url": "https://www.accenture.com/"
606
- },
607
- {
608
- "name": "Colors",
609
- "settings": [
610
- {
611
- "type": "color",
612
- "id": "theme_color",
613
- "label": "Theme Primary Color",
614
- "default": "#ff0000"
615
- },
616
- {
617
- "type": "color",
618
- "id": "default_shade_color",
619
- "label": "PDP default shade option",
620
- "default": "#757575"
621
- }
622
- ]
623
- },
624
- {
625
- "name": "Logos",
626
- "settings": [
627
- {
628
- "type": "image_picker",
629
- "id": "logo",
630
- "label": "Logo image"
631
- }
632
- ]
633
- },
634
- {
635
- "name": "Favicon",
636
- "settings": [
637
- {
638
- "type": "image_picker",
639
- "id": "favicon",
640
- "label": "Favicon image",
641
- "info": "Will be scaled down to 32 x 32px"
642
- }
643
- ]
644
- },
645
- {
646
- "name": "Social media",
647
- "settings": [
648
- {
649
- "type": "header",
650
- "content": "Social sharing options"
651
- },
652
- {
653
- "type": "checkbox",
654
- "id": "share_facebook",
655
- "label": "Share on Facebook",
656
- "default": true
657
- },
658
- {
659
- "type": "checkbox",
660
- "id": "share_twitter",
661
- "label": "Tweet on Twitter",
662
- "default": true
663
- },
664
- {
665
- "type": "checkbox",
666
- "id": "share_pinterest",
667
- "label": "Pin on Pinterest",
668
- "default": true
669
- },
670
- {
671
- "type": "header",
672
- "content": "Social accounts"
673
- },
674
- {
675
- "type": "text",
676
- "id": "social_twitter_link",
677
- "label": "Twitter",
678
- "info": "https://twitter.com/shopify"
679
- },
680
- {
681
- "type": "text",
682
- "id": "social_facebook_link",
683
- "label": "Facebook",
684
- "info": "https://facebook.com/shopify"
685
- },
686
- {
687
- "type": "text",
688
- "id": "social_pinterest_link",
689
- "label": "Pinterest",
690
- "info": "https://pinterest.com/shopify"
691
- },
692
- {
693
- "type": "text",
694
- "id": "social_instagram_link",
695
- "label": "Instagram",
696
- "info": "http://instagram.com/shopify"
697
- },
698
- {
699
- "type": "text",
700
- "id": "social_tiktok_link",
701
- "label": "TikTok",
702
- "info": "http://tiktok.com/shopify"
703
- },
704
- {
705
- "type": "text",
706
- "id": "social_tumblr_link",
707
- "label": "Tumblr",
708
- "info": "http://shopify.tumblr.com"
709
- },
710
- {
711
- "type": "text",
712
- "id": "social_snapchat_link",
713
- "label": "Snapchat",
714
- "info": "https://www.snapchat.com/add/shopify"
715
- },
716
- {
717
- "type": "text",
718
- "id": "social_youtube_link",
719
- "label": "YouTube",
720
- "info": "https://www.youtube.com/shopify"
721
- },
722
- {
723
- "type": "text",
724
- "id": "social_vimeo_link",
725
- "label": "Vimeo",
726
- "info": "https://vimeo.com/shopify"
727
- }
728
- ]
729
- },
730
- {
731
- "name": "Newsletter",
732
- "settings": [
733
- {
734
- "type": "header",
735
- "content": "Attentive"
736
- },
737
- {
738
- "type": "text",
739
- "id": "attentive_id_desktop",
740
- "label": "Creative ID (Desktop)"
741
- },
742
- {
743
- "type": "text",
744
- "id": "attentive_id_mobile",
745
- "label": "Creative ID (Mobile)"
746
- },
747
- {
748
- "type": "richtext",
749
- "id": "privacy_policy",
750
- "label": "Content"
751
- }
752
- ]
753
- },
754
- {
755
- "name": "Nosto Account Id",
756
- "settings": [
757
- {
758
- "type": "text",
759
- "id": "nosto_account_id",
760
- "label": "Nosto account id",
761
- "default": "shopify-62406787286",
762
- "placeholder": "If empty, Nosto script won't load"
763
- }
764
- ]
765
- },
766
- {
767
- "name": "Image Sizes",
768
- "settings": [
769
- {
770
- "type": "range",
771
- "id": "product_gallery_image_max",
772
- "min": 160,
773
- "max": 1920,
774
- "step": 40,
775
- "label": "Product Gallery",
776
- "default": 800
777
- },
778
- {
779
- "type": "range",
780
- "id": "product_tile_image_max",
781
- "min": 160,
782
- "max": 1920,
783
- "step": 40,
784
- "label": "Product Tile",
785
- "default": 800
786
- },
787
- {
788
- "type": "range",
789
- "id": "article_tile_image_max",
790
- "min": 160,
791
- "max": 1920,
792
- "step": 40,
793
- "label": "Article Tile",
794
- "default": 800
795
- },
796
- {
797
- "type": "range",
798
- "id": "collection_tile_image_max",
799
- "min": 160,
800
- "max": 1920,
801
- "step": 40,
802
- "label": "Collection Tile",
803
- "default": 800
804
- },
805
- {
806
- "type": "range",
807
- "id": "line_item_image_max",
808
- "min": 160,
809
- "max": 1920,
810
- "step": 40,
811
- "label": "Line Item Thumbnail",
812
- "default": 400
813
- },
814
- {
815
- "type": "text",
816
- "id": "responsive_sizes",
817
- "label": "Responsive Sized",
818
- "default": "360,540,720,900,1080,1200,1440,1680,1920",
819
- "info": "Comma-separated list of sizes"
820
- }
821
- ]
822
- },
823
- {
824
- "name": "Pagination",
825
- "settings": [
826
- {
827
- "type": "range",
828
- "id": "products_page_size",
829
- "min": 4,
830
- "max": 48,
831
- "step": 1,
832
- "label": "Collection Products",
833
- "default": 12
834
- },
835
- {
836
- "type": "range",
837
- "id": "results_page_size",
838
- "min": 4,
839
- "max": 48,
840
- "step": 1,
841
- "label": "Search Results",
842
- "default": 12
843
- },
844
- {
845
- "type": "range",
846
- "id": "articles_page_size",
847
- "min": 4,
848
- "max": 48,
849
- "step": 1,
850
- "label": "Blog Articles",
851
- "default": 12
852
- },
853
- {
854
- "type": "range",
855
- "id": "comments_page_size",
856
- "min": 4,
857
- "max": 48,
858
- "step": 1,
859
- "label": "Article Comments",
860
- "default": 12
861
- },
862
- {
863
- "type": "range",
864
- "id": "addresses_page_size",
865
- "min": 4,
866
- "max": 48,
867
- "step": 1,
868
- "label": "Customer Addresses",
869
- "default": 12
870
- },
871
- {
872
- "type": "range",
873
- "id": "orders_page_size",
874
- "min": 4,
875
- "max": 48,
876
- "step": 1,
877
- "label": "Customer Orders",
878
- "default": 12
879
- }
880
- ]
881
- },
882
- {
883
- "name": "Navigation",
884
- "settings": [
885
- {
886
- "type": "header",
887
- "content": "Breadcrumbs"
888
- },
889
- {
890
- "type": "checkbox",
891
- "id": "show_breadcrumbs_home",
892
- "label": "Show Home link",
893
- "default": true
894
- },
895
- {
896
- "type": "checkbox",
897
- "id": "enable_breadcrumbs_page",
898
- "label": "Enable on Page template",
899
- "default": false
900
- },
901
- {
902
- "type": "checkbox",
903
- "id": "enable_breadcrumbs_product",
904
- "label": "Enable on Product template",
905
- "default": false
906
- },
907
- {
908
- "type": "checkbox",
909
- "id": "enable_breadcrumbs_collection",
910
- "label": "Enable on Collection template",
911
- "default": false
912
- },
913
- {
914
- "type": "checkbox",
915
- "id": "enable_breadcrumbs_blog",
916
- "label": "Enable on Blog template",
917
- "default": false
918
- },
919
- {
920
- "type": "checkbox",
921
- "id": "enable_breadcrumbs_article",
922
- "label": "Enable on Article template",
923
- "default": false
924
- },
925
- {
926
- "type": "text",
927
- "id": "footer_handle",
928
- "label": "Footer Handle"
929
- },
930
- {
931
- "type": "text",
932
- "id": "checkout_footer_handle",
933
- "label": "Checkout Footer Handle"
934
- }
935
- ]
936
- },
937
- {
938
- "name": "Nosto Account Id",
939
- "settings": [
940
- {
941
- "type": "text",
942
- "id": "nosto_account_id_fixed",
943
- "label": "Nosto account id",
944
- "default": "shopify-62406787286",
945
- "placeholder": "If empty, Nosto script won't load"
946
- }
947
- ]
948
- },
949
- {
950
- "name": "Loyalty",
951
- "settings": [
952
- {
953
- "type": "range",
954
- "id": "loyalty_points_settingss",
955
- "min": 0,
956
- "max": 10,
957
- "step": 0.5,
958
- "label": "Loyalty Points",
959
- "default": 0.5
960
- }
961
- ]
962
- },
963
- {
964
- "name": "Cart",
965
- "settings": [
966
- {
967
- "type": "range",
968
- "id": "free_shipping_threshold",
969
- "min": 0,
970
- "max": 150,
971
- "step": 5,
972
- "unit": "$",
973
- "label": "Free Shipping Threshold",
974
- "default": 75
975
- },
976
- {
977
- "type": "product",
978
- "id": "complete_collection_set_handle",
979
- "label": "Complete Collection Set Handle"
980
- },
981
- {
982
- "type": "text",
983
- "id": "complete_collection_set_text",
984
- "label": "Complete Collection Set Message",
985
- "default": "You’re receiving 5 complimentary samples with your purchase of The Complete Collection."
986
- },
987
- {
988
- "type": "text",
989
- "id": "quantity_message_for_one_time_purchase",
990
- "label": "Quantity Message For Onetime Purchase",
991
- "default": "You can select a maximum of 10 products of this item per order"
992
- },
993
- {
994
- "type": "text",
995
- "id": "quantity_message_for_subscription",
996
- "label": "Quantity Message For Subscription",
997
- "default": "You can select a maximum of 3 products of this item per order"
998
- },
999
- {
1000
- "type": "number",
1001
- "id": "maximum_quantity_for_one_time_purchase",
1002
- "label": "Maximum Quantity For Onetime Purchase",
1003
- "default": 10
1004
- },
1005
- {
1006
- "type": "number",
1007
- "id": "maximum_quantity_for_subscription",
1008
- "label": "Maximum Quantity For Subscription",
1009
- "default": 3
1010
- }
1011
- ]
1012
- },
1013
- {
1014
- "name": "Global-E",
1015
- "settings": [
1016
- {
1017
- "type": "checkbox",
1018
- "id": "enable_globale",
1019
- "label": "Enable Global-E",
1020
- "default": true
1021
- },
1022
- {
1023
- "type": "select",
1024
- "id": "environment",
1025
- "label": "Environment",
1026
- "options": [
1027
- {
1028
- "value": "INT",
1029
- "label": "Staging"
1030
- },
1031
- {
1032
- "value": "PROD",
1033
- "label": "Production"
1034
- }
1035
- ],
1036
- "default": "INT"
1037
- },
1038
- {
1039
- "type": "text",
1040
- "id": "globale_mid",
1041
- "label": "Global-E Merchant ID",
1042
- "default": "1164"
1043
- },
1044
- {
1045
- "type": "text",
1046
- "id": "globale_emi",
1047
- "label": "Global-E EMI",
1048
- "default": "8uyw"
1049
- },
1050
- {
1051
- "type": "text",
1052
- "id": "globale_site_id",
1053
- "label": "Global-E Site ID",
1054
- "default": "212b00eaaa7c"
1055
- },
1056
- {
1057
- "type": "text",
1058
- "id": "globale_appurl",
1059
- "label": "Global-E App URL",
1060
- "default": "https://crossborder-integration-qa-int.bglobale.com/"
1061
- },
1062
- {
1063
- "type": "text",
1064
- "id": "globale_geappurl",
1065
- "label": "Global-E GE App URL",
1066
- "default": "https://www.bglobale.com/"
1067
- },
1068
- {
1069
- "type": "text",
1070
- "id": "globale_apiurl",
1071
- "label": "Global-E GE API URL",
1072
- "default": "https://connect.bglobale.com/"
1073
- },
1074
- {
1075
- "type": "text",
1076
- "id": "globale_checkout_environment",
1077
- "label": "Global-E Checkout Environment ID",
1078
- "default": "www.bglobale.com"
1079
- },
1080
- {
1081
- "type": "text",
1082
- "id": "globale_operated_countries_GLBE_PARAMS",
1083
- "label": "Operated Countries (GLBE_PARAMS)",
1084
- "info": "Please enter a comma separated list with no spaces, ex: AT,BE,BE,BG",
1085
- "default": "AD, AE, AT, BE, BG, BN, CA, CH, CN, CY, CZ, DE, DK, EE, ES, FI, FR, GB, GL, GR, HR, HU, ID, IE, IS, IT, LT, LU, LV, MC, MT, MX, NL, NO, PL, PT, RO, SA, SE, SG, SI, SK, VA"
1086
- },
1087
- {
1088
- "type": "text",
1089
- "id": "globale_operated_countries_outside_GLBE_PARAMS",
1090
- "label": "Operated Countries outside GLBE_PARAMS",
1091
- "info": "Please enter a comma separated list with no spaces, ex: AT,BE,BE,BG",
1092
- "default": "AD,AE,AT,BE,BG,BN,CA,CH,CN,CY,CZ,DE,DK,EE,ES,FI,FR,GB,GL,GR,HR,HU,ID,IE,IS,IT,LT,LU,LV,MC,MT,MX,NL,NO,PL,PT,RO,SA,SE,SG,SI,SK,VA"
1093
- }
1094
- ]
1095
- },
1096
- {
1097
- "name": "Checkout Killswitches",
1098
- "settings": [
1099
- {
1100
- "type": "checkbox",
1101
- "id": "terms_of_service_checkout",
1102
- "label": "Enables Terms of Service at Checkout Payment Method Step"
1103
- }
1104
- ]
1105
- },
1106
- {
1107
- "name": "Hide Discount Code",
1108
- "settings": [
1109
- {
1110
- "type": "text",
1111
- "id": "bundle_not_eligible_for_welcome10_discount",
1112
- "label": "Display below message as WELCOME10 is Not eligible for Bundle Items",
1113
- "default": "Part of Bundle, Not eligible for discount"
1114
- },
1115
- {
1116
- "type": "text",
1117
- "id": "tiered_off_promotion_code",
1118
- "label": "Tiered % Off promotion Code (should be exact) or leave it empty if there is no tiered % off promotion active",
1119
- "default": "TIEREDOFF"
1120
- }
1121
- ]
1122
- },
1123
- {
1124
- "name": "Klaviyo - Back In Stock",
1125
- "settings": [
1126
- {
1127
- "type": "text",
1128
- "id": "klaviyo_public_api_key",
1129
- "label": "public Klaviyo API Key",
1130
- "default": "UJ6swp"
1131
- },
1132
- {
1133
- "type": "text",
1134
- "id": "listId",
1135
- "label": "list id",
1136
- "default": "S8qDcW"
1137
- }
1138
- ]
1139
- },
1140
- {
1141
- "name": "Sample",
1142
- "settings": [
1143
- {
1144
- "type": "text",
1145
- "id": "sample_message",
1146
- "label": "Display below message as when customer order again for sample"
1147
- },
1148
- {
1149
- "type": "header",
1150
- "content": "Attentive Popup for Product Page"
1151
- },
1152
- {
1153
- "type": "text",
1154
- "id": "attentive_id_desktop_sample",
1155
- "label": "Creative ID (Desktop)"
1156
- },
1157
- {
1158
- "type": "text",
1159
- "id": "attentive_id_mobile_sample",
1160
- "label": "Creative ID (Mobile)"
1161
- }
1162
- ]
1163
- },
1164
- {
1165
- "name": "Yotpo",
1166
- "settings": [
1167
- {
1168
- "type": "header",
1169
- "content": "Yotpo - Checkout Redeem Points"
1170
- },
1171
- {
1172
- "type": "text",
1173
- "id": "yotpo_checkout_widget_id",
1174
- "label": "Yotpo Checkout Widget ID",
1175
- "default": "JXB__Dq8om7IRNIBU7D8ag"
1176
- },
1177
- {
1178
- "type": "text",
1179
- "id": "yotpo_checkout_instance_id",
1180
- "label": "Yotpo Checkout Instance ID",
1181
- "default": "472279"
1182
- },
1183
- {
1184
- "type": "text",
1185
- "id": "yotpo_account_text",
1186
- "label": "Yotpo Account Text",
1187
- "default": "Apply your points at checkout to receive a discount on your purchase"
1188
- }
1189
- ]
1190
- }
1191
- ]`;