@takeshape/schema 11.45.5 → 11.47.1

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 (465) hide show
  1. package/dist/cjs/src/agents.js +6 -6
  2. package/dist/cjs/src/api-version.js +1 -1
  3. package/dist/cjs/src/content-schema-transform.js +12 -12
  4. package/dist/cjs/src/create-input-schema.js +1 -1
  5. package/dist/cjs/src/enum.js +1 -1
  6. package/dist/cjs/src/flatten-templates.js +4 -4
  7. package/dist/cjs/src/get-is-leaf.js +1 -1
  8. package/dist/cjs/src/interfaces.js +11 -9
  9. package/dist/cjs/src/layers/layers.js +11 -5
  10. package/dist/cjs/src/layers/refs.js +3 -3
  11. package/dist/cjs/src/layers/type-utils.js +1 -1
  12. package/dist/cjs/src/migration/index.js +3 -1
  13. package/dist/cjs/src/migration/to/v3.0.0.js +20 -8
  14. package/dist/cjs/src/migration/to/v3.1.0.js +6 -4
  15. package/dist/cjs/src/migration/to/v3.10.0.js +1 -1
  16. package/dist/cjs/src/migration/to/v3.13.0.js +1 -1
  17. package/dist/cjs/src/migration/to/v3.17.0.js +1 -1
  18. package/dist/cjs/src/migration/to/v3.18.0.js +4 -4
  19. package/dist/cjs/src/migration/to/v3.18.1.js +1 -1
  20. package/dist/cjs/src/migration/to/v3.18.2.js +1 -1
  21. package/dist/cjs/src/migration/to/v3.20.0.js +5 -2
  22. package/dist/cjs/src/migration/to/v3.22.0.js +1 -1
  23. package/dist/cjs/src/migration/to/v3.31.0.js +2 -2
  24. package/dist/cjs/src/migration/to/v3.32.0.js +3 -1
  25. package/dist/cjs/src/migration/to/v3.34.0.js +6 -9
  26. package/dist/cjs/src/migration/to/v3.36.0.js +1 -1
  27. package/dist/cjs/src/migration/to/v3.39.0.js +8 -8
  28. package/dist/cjs/src/migration/to/v3.40.0.js +1 -1
  29. package/dist/cjs/src/migration/to/v3.46.0.js +1 -1
  30. package/dist/cjs/src/migration/to/v3.51.0.js +12 -0
  31. package/dist/cjs/src/migration/to/v3.9.0.js +3 -3
  32. package/dist/cjs/src/models/project-schema.js +4 -4
  33. package/dist/cjs/src/models/shape.js +2 -2
  34. package/dist/cjs/src/project-schema/index.js +4 -2
  35. package/dist/cjs/src/project-schema/migrate.js +3 -1
  36. package/dist/cjs/src/project-schema/v3.51.0.js +8 -0
  37. package/dist/cjs/src/refs.js +28 -18
  38. package/dist/cjs/src/relationships.js +25 -20
  39. package/dist/cjs/src/runtime-schema.js +16 -9
  40. package/dist/cjs/src/schema-transform.js +3 -3
  41. package/dist/cjs/src/schema-util.js +38 -30
  42. package/dist/cjs/src/schemas/auth-schemas.json +18 -78
  43. package/dist/cjs/src/schemas/index.js +7 -5
  44. package/dist/cjs/src/schemas/project-schema/experimental.json +7 -20
  45. package/dist/cjs/src/schemas/project-schema/latest.json +166 -566
  46. package/dist/cjs/src/schemas/project-schema/meta-schema-v1.0.0.json +3 -17
  47. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.0.0.json +4 -4
  48. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.1.0.json +4 -4
  49. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.2.0.json +5 -5
  50. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.3.0.json +5 -5
  51. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.4.0.json +11 -43
  52. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.5.0.json +7 -7
  53. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.5.1.json +8 -11
  54. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.6.0.json +8 -11
  55. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.7.0.json +11 -9
  56. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.8.0.json +11 -9
  57. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.9.0.json +24 -22
  58. package/dist/cjs/src/schemas/project-schema/v1.0.0.json +3 -3
  59. package/dist/cjs/src/schemas/project-schema/v3.0.0.json +1 -1
  60. package/dist/cjs/src/schemas/project-schema/v3.1.0.json +2 -2
  61. package/dist/cjs/src/schemas/project-schema/v3.10.0.json +32 -30
  62. package/dist/cjs/src/schemas/project-schema/v3.11.0.json +32 -30
  63. package/dist/cjs/src/schemas/project-schema/v3.12.0.json +33 -36
  64. package/dist/cjs/src/schemas/project-schema/v3.12.1.json +33 -36
  65. package/dist/cjs/src/schemas/project-schema/v3.12.2.json +2122 -2125
  66. package/dist/cjs/src/schemas/project-schema/v3.12.3.json +2175 -2178
  67. package/dist/cjs/src/schemas/project-schema/v3.13.0.json +32 -30
  68. package/dist/cjs/src/schemas/project-schema/v3.14.0.json +32 -30
  69. package/dist/cjs/src/schemas/project-schema/v3.15.0.json +40 -38
  70. package/dist/cjs/src/schemas/project-schema/v3.16.0.json +40 -38
  71. package/dist/cjs/src/schemas/project-schema/v3.17.0.json +47 -39
  72. package/dist/cjs/src/schemas/project-schema/v3.17.1.json +2204 -2196
  73. package/dist/cjs/src/schemas/project-schema/v3.18.0.json +40 -38
  74. package/dist/cjs/src/schemas/project-schema/v3.18.1.json +40 -38
  75. package/dist/cjs/src/schemas/project-schema/v3.18.2.json +40 -38
  76. package/dist/cjs/src/schemas/project-schema/v3.19.0.json +40 -38
  77. package/dist/cjs/src/schemas/project-schema/v3.2.0.json +1 -1
  78. package/dist/cjs/src/schemas/project-schema/v3.20.0.json +40 -38
  79. package/dist/cjs/src/schemas/project-schema/v3.21.0.json +41 -39
  80. package/dist/cjs/src/schemas/project-schema/v3.22.0.json +41 -39
  81. package/dist/cjs/src/schemas/project-schema/v3.23.0.json +43 -43
  82. package/dist/cjs/src/schemas/project-schema/v3.24.0.json +105 -458
  83. package/dist/cjs/src/schemas/project-schema/v3.25.0.json +105 -458
  84. package/dist/cjs/src/schemas/project-schema/v3.26.0.json +107 -466
  85. package/dist/cjs/src/schemas/project-schema/v3.27.0.json +107 -466
  86. package/dist/cjs/src/schemas/project-schema/v3.28.0.json +112 -471
  87. package/dist/cjs/src/schemas/project-schema/v3.29.0.json +112 -471
  88. package/dist/cjs/src/schemas/project-schema/v3.3.0.json +1 -1
  89. package/dist/cjs/src/schemas/project-schema/v3.30.0.json +112 -472
  90. package/dist/cjs/src/schemas/project-schema/v3.31.0.json +112 -486
  91. package/dist/cjs/src/schemas/project-schema/v3.32.0.json +113 -488
  92. package/dist/cjs/src/schemas/project-schema/v3.33.0.json +113 -488
  93. package/dist/cjs/src/schemas/project-schema/v3.34.0.json +113 -488
  94. package/dist/cjs/src/schemas/project-schema/v3.35.0.json +114 -491
  95. package/dist/cjs/src/schemas/project-schema/v3.36.0.json +114 -491
  96. package/dist/cjs/src/schemas/project-schema/v3.37.0.json +118 -511
  97. package/dist/cjs/src/schemas/project-schema/v3.38.0.json +118 -511
  98. package/dist/cjs/src/schemas/project-schema/v3.39.0.json +118 -511
  99. package/dist/cjs/src/schemas/project-schema/v3.4.0.json +1 -1
  100. package/dist/cjs/src/schemas/project-schema/v3.40.0.json +118 -512
  101. package/dist/cjs/src/schemas/project-schema/v3.41.0.json +118 -512
  102. package/dist/cjs/src/schemas/project-schema/v3.42.0.json +118 -512
  103. package/dist/cjs/src/schemas/project-schema/v3.43.0.json +118 -512
  104. package/dist/cjs/src/schemas/project-schema/v3.44.0.json +125 -540
  105. package/dist/cjs/src/schemas/project-schema/v3.45.0.json +128 -554
  106. package/dist/cjs/src/schemas/project-schema/v3.46.0.json +129 -560
  107. package/dist/cjs/src/schemas/project-schema/v3.47.0.json +131 -568
  108. package/dist/cjs/src/schemas/project-schema/v3.48.0.json +132 -572
  109. package/dist/cjs/src/schemas/project-schema/v3.49.0.json +132 -558
  110. package/dist/cjs/src/schemas/project-schema/v3.5.0.json +1 -1
  111. package/dist/cjs/src/schemas/project-schema/v3.5.1.json +1 -1
  112. package/dist/cjs/src/schemas/project-schema/v3.50.0.json +165 -565
  113. package/dist/cjs/src/schemas/project-schema/v3.51.0.json +3320 -0
  114. package/dist/cjs/src/schemas/project-schema/v3.6.0.json +1 -1
  115. package/dist/cjs/src/schemas/project-schema/v3.7.0.json +1 -1
  116. package/dist/cjs/src/schemas/project-schema/v3.8.0.json +1 -1
  117. package/dist/cjs/src/schemas/project-schema/v3.9.0.json +1 -1
  118. package/dist/cjs/src/schemas/project-schema/v4.0.0.json +31 -29
  119. package/dist/cjs/src/schemas/project-schema.json +3 -0
  120. package/dist/cjs/src/schemas/user-schema.json +2 -9
  121. package/dist/cjs/src/service-dependencies.js +15 -9
  122. package/dist/cjs/src/services/services.js +12 -11
  123. package/dist/cjs/src/services/util.js +4 -4
  124. package/dist/cjs/src/template-shapes/templates.js +18 -12
  125. package/dist/cjs/src/template-shapes/where.js +23 -14
  126. package/dist/cjs/src/types/utils.js +3 -3
  127. package/dist/cjs/src/unions.js +6 -8
  128. package/dist/cjs/src/util/api-indexing.js +4 -4
  129. package/dist/cjs/src/util/detect-cycles.js +2 -2
  130. package/dist/cjs/src/util/find-shape-at-path.js +1 -1
  131. package/dist/cjs/src/util/form-config.js +0 -1
  132. package/dist/cjs/src/util/get-conflicting-properties.js +1 -1
  133. package/dist/cjs/src/util/merge.js +22 -13
  134. package/dist/cjs/src/util/patch-schema.js +2 -2
  135. package/dist/cjs/src/util/shapes.js +2 -2
  136. package/dist/cjs/src/validate.js +64 -47
  137. package/dist/cjs/src/workflows.js +4 -4
  138. package/dist/esm/src/agents.js +6 -6
  139. package/dist/esm/src/api-version.js +1 -1
  140. package/dist/esm/src/content-schema-transform.js +12 -12
  141. package/dist/esm/src/create-input-schema.js +1 -1
  142. package/dist/esm/src/enum.js +1 -1
  143. package/dist/esm/src/flatten-templates.js +4 -4
  144. package/dist/esm/src/get-is-leaf.js +1 -1
  145. package/dist/esm/src/interfaces.js +12 -10
  146. package/dist/esm/src/layers/layers.js +12 -6
  147. package/dist/esm/src/layers/refs.js +3 -3
  148. package/dist/esm/src/layers/type-utils.js +1 -1
  149. package/dist/esm/src/migration/index.js +3 -1
  150. package/dist/esm/src/migration/to/v3.0.0.js +20 -8
  151. package/dist/esm/src/migration/to/v3.1.0.js +6 -4
  152. package/dist/esm/src/migration/to/v3.10.0.js +1 -1
  153. package/dist/esm/src/migration/to/v3.13.0.js +1 -1
  154. package/dist/esm/src/migration/to/v3.17.0.js +1 -1
  155. package/dist/esm/src/migration/to/v3.18.0.js +4 -4
  156. package/dist/esm/src/migration/to/v3.18.1.js +1 -1
  157. package/dist/esm/src/migration/to/v3.18.2.js +1 -1
  158. package/dist/esm/src/migration/to/v3.20.0.js +5 -2
  159. package/dist/esm/src/migration/to/v3.22.0.js +1 -1
  160. package/dist/esm/src/migration/to/v3.31.0.js +2 -2
  161. package/dist/esm/src/migration/to/v3.32.0.js +3 -1
  162. package/dist/esm/src/migration/to/v3.34.0.js +6 -9
  163. package/dist/esm/src/migration/to/v3.36.0.js +1 -1
  164. package/dist/esm/src/migration/to/v3.39.0.js +8 -8
  165. package/dist/esm/src/migration/to/v3.40.0.js +1 -1
  166. package/dist/esm/src/migration/to/v3.46.0.js +1 -1
  167. package/dist/esm/src/migration/to/v3.51.0.js +10 -0
  168. package/dist/esm/src/migration/to/v3.9.0.js +3 -3
  169. package/dist/esm/src/mocks.js +1 -1
  170. package/dist/esm/src/models/project-schema.js +4 -4
  171. package/dist/esm/src/models/shape.js +2 -2
  172. package/dist/esm/src/project-schema/index.js +3 -1
  173. package/dist/esm/src/project-schema/migrate.js +4 -2
  174. package/dist/esm/src/project-schema/v3.51.0.js +7 -0
  175. package/dist/esm/src/refs.js +29 -19
  176. package/dist/esm/src/relationships.js +26 -21
  177. package/dist/esm/src/runtime-schema.js +16 -9
  178. package/dist/esm/src/schema-transform.js +3 -3
  179. package/dist/esm/src/schema-util.js +40 -32
  180. package/dist/esm/src/schemas/auth-schemas.json +18 -78
  181. package/dist/esm/src/schemas/index.js +4 -2
  182. package/dist/esm/src/schemas/project-schema/experimental.json +7 -20
  183. package/dist/esm/src/schemas/project-schema/latest.json +166 -566
  184. package/dist/esm/src/schemas/project-schema/meta-schema-v1.0.0.json +3 -17
  185. package/dist/esm/src/schemas/project-schema/meta-schema-v3.0.0.json +4 -4
  186. package/dist/esm/src/schemas/project-schema/meta-schema-v3.1.0.json +4 -4
  187. package/dist/esm/src/schemas/project-schema/meta-schema-v3.2.0.json +5 -5
  188. package/dist/esm/src/schemas/project-schema/meta-schema-v3.3.0.json +5 -5
  189. package/dist/esm/src/schemas/project-schema/meta-schema-v3.4.0.json +11 -43
  190. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.0.json +7 -7
  191. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.1.json +8 -11
  192. package/dist/esm/src/schemas/project-schema/meta-schema-v3.6.0.json +8 -11
  193. package/dist/esm/src/schemas/project-schema/meta-schema-v3.7.0.json +11 -9
  194. package/dist/esm/src/schemas/project-schema/meta-schema-v3.8.0.json +11 -9
  195. package/dist/esm/src/schemas/project-schema/meta-schema-v3.9.0.json +24 -22
  196. package/dist/esm/src/schemas/project-schema/v1.0.0.json +3 -3
  197. package/dist/esm/src/schemas/project-schema/v3.0.0.json +1 -1
  198. package/dist/esm/src/schemas/project-schema/v3.1.0.json +2 -2
  199. package/dist/esm/src/schemas/project-schema/v3.10.0.json +32 -30
  200. package/dist/esm/src/schemas/project-schema/v3.11.0.json +32 -30
  201. package/dist/esm/src/schemas/project-schema/v3.12.0.json +33 -36
  202. package/dist/esm/src/schemas/project-schema/v3.12.1.json +33 -36
  203. package/dist/esm/src/schemas/project-schema/v3.12.2.json +2122 -2125
  204. package/dist/esm/src/schemas/project-schema/v3.12.3.json +2175 -2178
  205. package/dist/esm/src/schemas/project-schema/v3.13.0.json +32 -30
  206. package/dist/esm/src/schemas/project-schema/v3.14.0.json +32 -30
  207. package/dist/esm/src/schemas/project-schema/v3.15.0.json +40 -38
  208. package/dist/esm/src/schemas/project-schema/v3.16.0.json +40 -38
  209. package/dist/esm/src/schemas/project-schema/v3.17.0.json +47 -39
  210. package/dist/esm/src/schemas/project-schema/v3.17.1.json +2204 -2196
  211. package/dist/esm/src/schemas/project-schema/v3.18.0.json +40 -38
  212. package/dist/esm/src/schemas/project-schema/v3.18.1.json +40 -38
  213. package/dist/esm/src/schemas/project-schema/v3.18.2.json +40 -38
  214. package/dist/esm/src/schemas/project-schema/v3.19.0.json +40 -38
  215. package/dist/esm/src/schemas/project-schema/v3.2.0.json +1 -1
  216. package/dist/esm/src/schemas/project-schema/v3.20.0.json +40 -38
  217. package/dist/esm/src/schemas/project-schema/v3.21.0.json +41 -39
  218. package/dist/esm/src/schemas/project-schema/v3.22.0.json +41 -39
  219. package/dist/esm/src/schemas/project-schema/v3.23.0.json +43 -43
  220. package/dist/esm/src/schemas/project-schema/v3.24.0.json +105 -458
  221. package/dist/esm/src/schemas/project-schema/v3.25.0.json +105 -458
  222. package/dist/esm/src/schemas/project-schema/v3.26.0.json +107 -466
  223. package/dist/esm/src/schemas/project-schema/v3.27.0.json +107 -466
  224. package/dist/esm/src/schemas/project-schema/v3.28.0.json +112 -471
  225. package/dist/esm/src/schemas/project-schema/v3.29.0.json +112 -471
  226. package/dist/esm/src/schemas/project-schema/v3.3.0.json +1 -1
  227. package/dist/esm/src/schemas/project-schema/v3.30.0.json +112 -472
  228. package/dist/esm/src/schemas/project-schema/v3.31.0.json +112 -486
  229. package/dist/esm/src/schemas/project-schema/v3.32.0.json +113 -488
  230. package/dist/esm/src/schemas/project-schema/v3.33.0.json +113 -488
  231. package/dist/esm/src/schemas/project-schema/v3.34.0.json +113 -488
  232. package/dist/esm/src/schemas/project-schema/v3.35.0.json +114 -491
  233. package/dist/esm/src/schemas/project-schema/v3.36.0.json +114 -491
  234. package/dist/esm/src/schemas/project-schema/v3.37.0.json +118 -511
  235. package/dist/esm/src/schemas/project-schema/v3.38.0.json +118 -511
  236. package/dist/esm/src/schemas/project-schema/v3.39.0.json +118 -511
  237. package/dist/esm/src/schemas/project-schema/v3.4.0.json +1 -1
  238. package/dist/esm/src/schemas/project-schema/v3.40.0.json +118 -512
  239. package/dist/esm/src/schemas/project-schema/v3.41.0.json +118 -512
  240. package/dist/esm/src/schemas/project-schema/v3.42.0.json +118 -512
  241. package/dist/esm/src/schemas/project-schema/v3.43.0.json +118 -512
  242. package/dist/esm/src/schemas/project-schema/v3.44.0.json +125 -540
  243. package/dist/esm/src/schemas/project-schema/v3.45.0.json +128 -554
  244. package/dist/esm/src/schemas/project-schema/v3.46.0.json +129 -560
  245. package/dist/esm/src/schemas/project-schema/v3.47.0.json +131 -568
  246. package/dist/esm/src/schemas/project-schema/v3.48.0.json +132 -572
  247. package/dist/esm/src/schemas/project-schema/v3.49.0.json +132 -558
  248. package/dist/esm/src/schemas/project-schema/v3.5.0.json +1 -1
  249. package/dist/esm/src/schemas/project-schema/v3.5.1.json +1 -1
  250. package/dist/esm/src/schemas/project-schema/v3.50.0.json +165 -565
  251. package/dist/esm/src/schemas/project-schema/v3.51.0.json +3320 -0
  252. package/dist/esm/src/schemas/project-schema/v3.6.0.json +1 -1
  253. package/dist/esm/src/schemas/project-schema/v3.7.0.json +1 -1
  254. package/dist/esm/src/schemas/project-schema/v3.8.0.json +1 -1
  255. package/dist/esm/src/schemas/project-schema/v3.9.0.json +1 -1
  256. package/dist/esm/src/schemas/project-schema/v4.0.0.json +31 -29
  257. package/dist/esm/src/schemas/project-schema.json +3 -0
  258. package/dist/esm/src/schemas/user-schema.json +2 -9
  259. package/dist/esm/src/service-dependencies.js +17 -11
  260. package/dist/esm/src/services/services.js +12 -11
  261. package/dist/esm/src/services/util.js +4 -4
  262. package/dist/esm/src/template-shapes/templates.js +18 -12
  263. package/dist/esm/src/template-shapes/where.js +24 -15
  264. package/dist/esm/src/types/utils.js +3 -3
  265. package/dist/esm/src/unions.js +6 -8
  266. package/dist/esm/src/util/api-indexing.js +4 -4
  267. package/dist/esm/src/util/detect-cycles.js +2 -2
  268. package/dist/esm/src/util/find-shape-at-path.js +1 -1
  269. package/dist/esm/src/util/form-config.js +0 -1
  270. package/dist/esm/src/util/get-conflicting-properties.js +1 -1
  271. package/dist/esm/src/util/merge.js +23 -14
  272. package/dist/esm/src/util/patch-schema.js +2 -2
  273. package/dist/esm/src/util/shapes.js +2 -2
  274. package/dist/esm/src/validate.js +64 -47
  275. package/dist/esm/src/workflows.js +4 -4
  276. package/dist/types/src/agents.d.ts +1 -1
  277. package/dist/types/src/builtin-schema.d.ts +2 -2
  278. package/dist/types/src/content-schema-transform.d.ts +1 -1
  279. package/dist/types/src/create-input-schema.d.ts +1 -1
  280. package/dist/types/src/enum.d.ts +1 -1
  281. package/dist/types/src/flatten-templates.d.ts +1 -1
  282. package/dist/types/src/layers/layers.d.ts +1 -1
  283. package/dist/types/src/layers/refs.d.ts +1 -1
  284. package/dist/types/src/layers/type-utils.d.ts +1 -1
  285. package/dist/types/src/layers/visitor.d.ts +2 -2
  286. package/dist/types/src/migration/index.d.ts +1 -0
  287. package/dist/types/src/migration/to/v3.17.1.d.ts +1 -1
  288. package/dist/types/src/migration/to/v3.19.0.d.ts +1 -1
  289. package/dist/types/src/migration/to/v3.21.0.d.ts +1 -1
  290. package/dist/types/src/migration/to/v3.22.0.d.ts +1 -1
  291. package/dist/types/src/migration/to/v3.23.0.d.ts +1 -1
  292. package/dist/types/src/migration/to/v3.24.0.d.ts +1 -1
  293. package/dist/types/src/migration/to/v3.25.0.d.ts +1 -1
  294. package/dist/types/src/migration/to/v3.26.0.d.ts +1 -1
  295. package/dist/types/src/migration/to/v3.27.0.d.ts +1 -1
  296. package/dist/types/src/migration/to/v3.28.0.d.ts +1 -1
  297. package/dist/types/src/migration/to/v3.29.0.d.ts +1 -1
  298. package/dist/types/src/migration/to/v3.30.0.d.ts +1 -1
  299. package/dist/types/src/migration/to/v3.31.0.d.ts +1 -1
  300. package/dist/types/src/migration/to/v3.32.0.d.ts +1 -1
  301. package/dist/types/src/migration/to/v3.33.0.d.ts +1 -1
  302. package/dist/types/src/migration/to/v3.34.0.d.ts +1 -1
  303. package/dist/types/src/migration/to/v3.35.0.d.ts +1 -1
  304. package/dist/types/src/migration/to/v3.36.0.d.ts +1 -1
  305. package/dist/types/src/migration/to/v3.37.0.d.ts +1 -1
  306. package/dist/types/src/migration/to/v3.38.0.d.ts +1 -1
  307. package/dist/types/src/migration/to/v3.39.0.d.ts +1 -1
  308. package/dist/types/src/migration/to/v3.40.0.d.ts +1 -1
  309. package/dist/types/src/migration/to/v3.41.0.d.ts +1 -1
  310. package/dist/types/src/migration/to/v3.42.0.d.ts +1 -1
  311. package/dist/types/src/migration/to/v3.43.0.d.ts +1 -1
  312. package/dist/types/src/migration/to/v3.44.0.d.ts +1 -1
  313. package/dist/types/src/migration/to/v3.45.0.d.ts +1 -1
  314. package/dist/types/src/migration/to/v3.46.0.d.ts +1 -1
  315. package/dist/types/src/migration/to/v3.47.0.d.ts +1 -1
  316. package/dist/types/src/migration/to/v3.48.0.d.ts +1 -1
  317. package/dist/types/src/migration/to/v3.49.0.d.ts +1 -1
  318. package/dist/types/src/migration/to/v3.50.0.d.ts +1 -1
  319. package/dist/types/src/migration/to/v3.51.0.d.ts +4 -0
  320. package/dist/types/src/migration/types.d.ts +1 -1
  321. package/dist/types/src/mocks.d.ts +1 -1
  322. package/dist/types/src/models/project-schema.d.ts +3 -3
  323. package/dist/types/src/models/query.d.ts +2 -2
  324. package/dist/types/src/models/service.d.ts +2 -2
  325. package/dist/types/src/models/shape.d.ts +2 -2
  326. package/dist/types/src/project-schema/index.d.ts +4 -1
  327. package/dist/types/src/project-schema/latest.d.ts +28 -10
  328. package/dist/types/src/project-schema/v3.50.0.d.ts +27 -9
  329. package/dist/types/src/project-schema/v3.51.0.d.ts +2189 -0
  330. package/dist/types/src/refs.d.ts +1 -1
  331. package/dist/types/src/relationships.d.ts +2 -2
  332. package/dist/types/src/runtime-schema.d.ts +1 -1
  333. package/dist/types/src/schema-transform.d.ts +1 -1
  334. package/dist/types/src/schema-util.d.ts +2 -2
  335. package/dist/types/src/schemas/index.d.ts +2 -2
  336. package/dist/types/src/service-dependencies.d.ts +2 -2
  337. package/dist/types/src/services/services.d.ts +3 -3
  338. package/dist/types/src/services/util.d.ts +2 -2
  339. package/dist/types/src/template-shapes/index.d.ts +2 -2
  340. package/dist/types/src/template-shapes/names.d.ts +1 -1
  341. package/dist/types/src/template-shapes/types.d.ts +2 -2
  342. package/dist/types/src/template-shapes/where.d.ts +1 -1
  343. package/dist/types/src/types/transforms.d.ts +1 -1
  344. package/dist/types/src/types/types.d.ts +4 -4
  345. package/dist/types/src/types/utils.d.ts +2 -2
  346. package/dist/types/src/unions.d.ts +2 -2
  347. package/dist/types/src/util/ai-tools.d.ts +1 -1
  348. package/dist/types/src/util/api-indexing.d.ts +1 -1
  349. package/dist/types/src/util/detect-cycles.d.ts +1 -1
  350. package/dist/types/src/util/find-shape-at-path.d.ts +1 -1
  351. package/dist/types/src/util/form-config.d.ts +1 -1
  352. package/dist/types/src/util/get-conflicting-properties.d.ts +1 -1
  353. package/dist/types/src/util/get-return-shape.d.ts +1 -1
  354. package/dist/types/src/util/has-arg.d.ts +2 -2
  355. package/dist/types/src/util/merge.d.ts +1 -1
  356. package/dist/types/src/util/patch-schema.d.ts +2 -2
  357. package/dist/types/src/util/shapes.d.ts +1 -1
  358. package/dist/types/src/validate.d.ts +4 -4
  359. package/dist/types/src/workflows.d.ts +1 -1
  360. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  361. package/examples/latest/agent-schema.json +5 -13
  362. package/examples/latest/all-fields-shapes-inline.json +19 -53
  363. package/examples/latest/all-fields-shapes.json +27 -77
  364. package/examples/latest/betzino.json +903 -3140
  365. package/examples/latest/blog-schema.json +9 -29
  366. package/examples/latest/brewery-schema.json +8 -26
  367. package/examples/latest/clear-cache-schema.json +4 -8
  368. package/examples/latest/complex-project-schema.json +99 -360
  369. package/examples/latest/complex-schema.json +487 -1754
  370. package/examples/latest/edit-schema.json +5 -12
  371. package/examples/latest/fabric-ecommerce.json +188 -839
  372. package/examples/latest/frank-and-fred-schema.json +489 -1756
  373. package/examples/latest/klirr-schema.json +683 -2412
  374. package/examples/latest/layers/rick-and-morty-layer.json +12 -33
  375. package/examples/latest/layers/shopify-layer-2023-01.json +2207 -8638
  376. package/examples/latest/layers/shopify-storefront-2023-04.json +403 -1713
  377. package/examples/latest/layers/wordpress-2024-01.json +689 -2744
  378. package/examples/latest/massive-schema.json +132 -585
  379. package/examples/latest/mill-components-schema.json +30 -126
  380. package/examples/latest/nested-shape-arrays.json +8 -20
  381. package/examples/latest/one-earth.json +237 -1114
  382. package/examples/latest/pet-oneof-array.json +8 -23
  383. package/examples/latest/post-schema.json +7 -21
  384. package/examples/latest/pruned-shopify-product-schema.json +186 -831
  385. package/examples/latest/rag-example.json +6 -16
  386. package/examples/latest/real-world-schema.json +15 -57
  387. package/examples/latest/recursive-repeater-schema.json +5 -12
  388. package/examples/latest/recursive-schema.json +5 -12
  389. package/examples/latest/rick-and-morty-ast.json +46 -175
  390. package/examples/latest/rick-and-morty-graphql.json +26 -101
  391. package/examples/latest/rick-and-morty-rest.json +4 -8
  392. package/examples/latest/rick-and-morty-with-indexing.json +6 -14
  393. package/examples/latest/schema-where-filter.json +12 -41
  394. package/examples/latest/schema-with-repeater-draftjs.json +4 -9
  395. package/examples/latest/schema-with-rick-and-morty.json +3 -5
  396. package/examples/latest/shape-books-v3_2_0.json +18 -72
  397. package/examples/latest/shape-books.json +18 -72
  398. package/examples/latest/shape-editor-schema-edited.json +24 -70
  399. package/examples/latest/shape-editor-schema-initial.json +11 -29
  400. package/examples/latest/shapedb-crud-every-prop-type.json +9 -23
  401. package/examples/latest/shopify-lookbook.json +6 -20
  402. package/examples/latest/shopify-product-2022-07.json +727 -3218
  403. package/examples/latest/shopify-product-2023-04.json +1013 -4497
  404. package/examples/latest/shopify-store-with-widget.json +214 -943
  405. package/examples/latest/stripe-product-runtime-schema.json +82 -278
  406. package/examples/latest/stripe-starter-resolved.json +477 -1954
  407. package/examples/latest/user-schema-no-required.json +4 -14
  408. package/examples/latest/user-schema-with-defaults.json +6 -28
  409. package/examples/latest/valvoline-ai-demo.json +18 -70
  410. package/examples/latest/vector-search-schema.json +9 -25
  411. package/examples/source/agent-schema.json +29 -16
  412. package/examples/source/all-fields-shapes-inline.json +21 -30
  413. package/examples/source/all-fields-shapes.json +26 -76
  414. package/examples/source/betzino.json +1501 -4960
  415. package/examples/source/blog-schema.json +1 -1
  416. package/examples/source/brewery-schema.json +1 -1
  417. package/examples/source/clear-cache-schema.json +4 -4
  418. package/examples/source/complex-project-schema.json +196 -688
  419. package/examples/source/edit-schema.json +3 -3
  420. package/examples/source/fabric-ecommerce.json +186 -837
  421. package/examples/source/frank-and-fred-schema.json +1136 -3929
  422. package/examples/source/layers/rick-and-morty-layer.json +10 -31
  423. package/examples/source/layers/shopify-layer-2023-01.json +2205 -8636
  424. package/examples/source/layers/shopify-storefront-2023-04.json +401 -1711
  425. package/examples/source/layers/wordpress-2024-01.json +689 -2743
  426. package/examples/source/massive-schema.json +386 -1455
  427. package/examples/source/nested-shape-arrays.json +12 -12
  428. package/examples/source/pet-oneof-array.json +31 -29
  429. package/examples/source/post-schema.json +1 -1
  430. package/examples/source/pruned-shopify-product-schema.json +184 -829
  431. package/examples/source/rag-example.json +5 -15
  432. package/examples/source/real-world-schema.json +32 -119
  433. package/examples/source/recursive-repeater-schema.json +3 -8
  434. package/examples/source/recursive-schema.json +1 -1
  435. package/examples/source/rick-and-morty-ast.json +66 -251
  436. package/examples/source/rick-and-morty-graphql.json +41 -162
  437. package/examples/source/rick-and-morty-rest.json +24 -6
  438. package/examples/source/rick-and-morty-with-indexing.json +25 -25
  439. package/examples/source/schema-where-filter.json +29 -50
  440. package/examples/source/schema-with-repeater-draftjs.json +9 -31
  441. package/examples/source/schema-with-rick-and-morty.json +4 -4
  442. package/examples/source/shape-books.json +49 -181
  443. package/examples/source/shape-editor-schema-edited.json +22 -68
  444. package/examples/source/shape-editor-schema-initial.json +9 -27
  445. package/examples/source/shapedb-crud-every-prop-type.json +20 -29
  446. package/examples/source/shopify-product-2022-07.json +736 -3261
  447. package/examples/source/shopify-product-2023-04.json +1022 -4540
  448. package/examples/source/shopify-store-with-widget.json +212 -941
  449. package/examples/source/stripe-product-runtime-schema.json +91 -321
  450. package/examples/source/stripe-starter-resolved.json +475 -1952
  451. package/examples/source/user-schema-with-defaults.json +1 -9
  452. package/examples/source/valvoline-ai-demo.json +175 -219
  453. package/examples/source/vector-search-schema.json +37 -38
  454. package/examples/v4_0_0/rick-and-morty-notes/flattened-schema.json +15 -49
  455. package/examples/v4_0_0/rick-and-morty-notes/layers/character-notes.json +8 -8
  456. package/examples/v4_0_0/rick-and-morty-notes/layers/takeshape-builtins.json +1 -3
  457. package/examples/v4_0_0/rick-and-morty-notes/layers/takeshape-static-sites.json +19 -79
  458. package/examples/v4_0_0/rick-and-morty-notes/schema.json +8 -5
  459. package/examples/v4_0_0/shopify-lookbook/flattened-schema.json +190 -851
  460. package/examples/v4_0_0/shopify-lookbook/layers/andrews-store.json +1103 -4431
  461. package/examples/v4_0_0/shopify-lookbook/layers/lookbook.json +64 -56
  462. package/examples/v4_0_0/shopify-lookbook/layers/takeshape-assets.json +1 -4
  463. package/examples/v4_0_0/shopify-lookbook/layers/takeshape-builtins.json +1 -3
  464. package/examples/v4_0_0/shopify-lookbook/schema.json +3 -10
  465. package/package.json +12 -9
@@ -2,20 +2,11 @@
2
2
  "workflows": {},
3
3
  "projectId": "f1679577-e89a-449b-9313-e2edac0a5bf0",
4
4
  "defaultLocale": "en",
5
- "locales": [
6
- "en",
7
- "sv",
8
- "de",
9
- "fi",
10
- "no",
11
- "en-ca",
12
- "en-nz",
13
- "pt-br"
14
- ],
5
+ "locales": ["en", "sv", "de", "fi", "no", "en-ca", "en-nz", "pt-br"],
15
6
  "apiVersion": "1",
16
7
  "queries": {},
17
8
  "mutations": {},
18
- "schemaVersion": "3.50.0",
9
+ "schemaVersion": "3.51.0",
19
10
  "shapes": {
20
11
  "DocumentUploadForm": {
21
12
  "id": "HJPFlRKkr",
@@ -78,9 +69,7 @@
78
69
  }
79
70
  }
80
71
  },
81
- "required": [
82
- "usedFor"
83
- ]
72
+ "required": ["usedFor"]
84
73
  }
85
74
  },
86
75
  "ProfileForm": {
@@ -149,49 +138,34 @@
149
138
  "oneOf": [
150
139
  {
151
140
  "title": "Primary",
152
- "enum": [
153
- "primary"
154
- ]
141
+ "enum": ["primary"]
155
142
  },
156
143
  {
157
144
  "title": "Accent",
158
- "enum": [
159
- "accent"
160
- ]
145
+ "enum": ["accent"]
161
146
  },
162
147
  {
163
148
  "title": "Warn",
164
- "enum": [
165
- "warn"
166
- ]
149
+ "enum": ["warn"]
167
150
  },
168
151
  {
169
152
  "title": "Primary Outline",
170
- "enum": [
171
- "primary-outline"
172
- ]
153
+ "enum": ["primary-outline"]
173
154
  },
174
155
  {
175
156
  "title": "Accent outline",
176
- "enum": [
177
- "accent-outline"
178
- ]
157
+ "enum": ["accent-outline"]
179
158
  },
180
159
  {
181
160
  "title": "Warn Outline",
182
- "enum": [
183
- "warn-outline"
184
- ]
161
+ "enum": ["warn-outline"]
185
162
  }
186
163
  ],
187
164
  "minLength": 1,
188
165
  "@mapping": "shapedb:ProfileForm.sr9C0Vjd3"
189
166
  }
190
167
  },
191
- "required": [
192
- "usedFor",
193
- "submitColor"
194
- ]
168
+ "required": ["usedFor", "submitColor"]
195
169
  }
196
170
  },
197
171
  "BonusEntity": {
@@ -268,11 +242,7 @@
268
242
  }
269
243
  }
270
244
  },
271
- "required": [
272
- "bonusId",
273
- "title",
274
- "description"
275
- ]
245
+ "required": ["bonusId", "title", "description"]
276
246
  }
277
247
  },
278
248
  "LoginProvider": {
@@ -297,39 +267,27 @@
297
267
  "oneOf": [
298
268
  {
299
269
  "title": "Default",
300
- "enum": [
301
- "default"
302
- ]
270
+ "enum": ["default"]
303
271
  },
304
272
  {
305
273
  "title": "English",
306
- "enum": [
307
- "en"
308
- ]
274
+ "enum": ["en"]
309
275
  },
310
276
  {
311
277
  "title": "German",
312
- "enum": [
313
- "de"
314
- ]
278
+ "enum": ["de"]
315
279
  },
316
280
  {
317
281
  "title": "Finnish",
318
- "enum": [
319
- "fi"
320
- ]
282
+ "enum": ["fi"]
321
283
  },
322
284
  {
323
285
  "title": "Swedish",
324
- "enum": [
325
- "sv"
326
- ]
286
+ "enum": ["sv"]
327
287
  },
328
288
  {
329
289
  "title": "Norwegian",
330
- "enum": [
331
- "no"
332
- ]
290
+ "enum": ["no"]
333
291
  }
334
292
  ],
335
293
  "minLength": 1,
@@ -343,39 +301,27 @@
343
301
  "oneOf": [
344
302
  {
345
303
  "title": "Facebook",
346
- "enum": [
347
- "FACEBOOK"
348
- ]
304
+ "enum": ["FACEBOOK"]
349
305
  },
350
306
  {
351
307
  "title": "Steam",
352
- "enum": [
353
- "STEAM"
354
- ]
308
+ "enum": ["STEAM"]
355
309
  },
356
310
  {
357
311
  "title": "Euteller",
358
- "enum": [
359
- "EUTELLER"
360
- ]
312
+ "enum": ["EUTELLER"]
361
313
  },
362
314
  {
363
315
  "title": "BankId",
364
- "enum": [
365
- "BANKID_SE"
366
- ]
316
+ "enum": ["BANKID_SE"]
367
317
  },
368
318
  {
369
319
  "title": "Email",
370
- "enum": [
371
- "EMAIL"
372
- ]
320
+ "enum": ["EMAIL"]
373
321
  },
374
322
  {
375
323
  "title": "Pay and Play",
376
- "enum": [
377
- "TRUSTLY"
378
- ]
324
+ "enum": ["TRUSTLY"]
379
325
  }
380
326
  ]
381
327
  },
@@ -391,11 +337,7 @@
391
337
  "@mapping": "shapedb:LoginProvider.SJ-_CEkNQ"
392
338
  }
393
339
  },
394
- "required": [
395
- "usedFor",
396
- "locale",
397
- "providers"
398
- ]
340
+ "required": ["usedFor", "locale", "providers"]
399
341
  }
400
342
  },
401
343
  "LoginProviderTags": {
@@ -412,9 +354,7 @@
412
354
  "@mapping": "shapedb:LoginProviderTags.vLOGCaHD6"
413
355
  }
414
356
  },
415
- "required": [
416
- "value"
417
- ]
357
+ "required": ["value"]
418
358
  }
419
359
  },
420
360
  "Redirection": {
@@ -455,15 +395,11 @@
455
395
  "oneOf": [
456
396
  {
457
397
  "title": "Primary",
458
- "enum": [
459
- "primary"
460
- ]
398
+ "enum": ["primary"]
461
399
  },
462
400
  {
463
401
  "title": "Modal",
464
- "enum": [
465
- "modal"
466
- ]
402
+ "enum": ["modal"]
467
403
  }
468
404
  ],
469
405
  "minLength": 1,
@@ -486,11 +422,7 @@
486
422
  "@mapping": "shapedb:Redirection.ME3RU9Tcf"
487
423
  }
488
424
  },
489
- "required": [
490
- "path",
491
- "outlet",
492
- "redirectTo"
493
- ]
425
+ "required": ["path", "outlet", "redirectTo"]
494
426
  }
495
427
  },
496
428
  "RedirectionDevices": {
@@ -507,9 +439,7 @@
507
439
  "@mapping": "shapedb:RedirectionDevices.x9AQ99fmO"
508
440
  }
509
441
  },
510
- "required": [
511
- "value"
512
- ]
442
+ "required": ["value"]
513
443
  }
514
444
  },
515
445
  "RedirectionJurisdictions": {
@@ -526,9 +456,7 @@
526
456
  "@mapping": "shapedb:RedirectionJurisdictions.rHt14dGOw"
527
457
  }
528
458
  },
529
- "required": [
530
- "value"
531
- ]
459
+ "required": ["value"]
532
460
  }
533
461
  },
534
462
  "StyleTag": {
@@ -560,10 +488,7 @@
560
488
  "@tag": "draftjs"
561
489
  }
562
490
  },
563
- "required": [
564
- "attributes",
565
- "contents"
566
- ]
491
+ "required": ["attributes", "contents"]
567
492
  }
568
493
  },
569
494
  "Copy": {
@@ -582,21 +507,15 @@
582
507
  "oneOf": [
583
508
  {
584
509
  "title": "Visible for all users",
585
- "enum": [
586
- "any"
587
- ]
510
+ "enum": ["any"]
588
511
  },
589
512
  {
590
513
  "title": "Visible for logged in users only",
591
- "enum": [
592
- "true"
593
- ]
514
+ "enum": ["true"]
594
515
  },
595
516
  {
596
517
  "title": "Visible for logged out users only",
597
- "enum": [
598
- "false"
599
- ]
518
+ "enum": ["false"]
600
519
  }
601
520
  ],
602
521
  "minLength": 1,
@@ -705,11 +624,7 @@
705
624
  "@tag": "draftjs"
706
625
  }
707
626
  },
708
- "required": [
709
- "usedFor",
710
- "content",
711
- "requiresAuth"
712
- ]
627
+ "required": ["usedFor", "content", "requiresAuth"]
713
628
  }
714
629
  },
715
630
  "CasinoGame": {
@@ -883,21 +798,15 @@
883
798
  "oneOf": [
884
799
  {
885
800
  "title": "True",
886
- "enum": [
887
- "true"
888
- ]
801
+ "enum": ["true"]
889
802
  },
890
803
  {
891
804
  "title": "False",
892
- "enum": [
893
- "false"
894
- ]
805
+ "enum": ["false"]
895
806
  },
896
807
  {
897
808
  "title": "Any",
898
- "enum": [
899
- "any"
900
- ]
809
+ "enum": ["any"]
901
810
  }
902
811
  ],
903
812
  "minLength": 1,
@@ -1161,9 +1070,7 @@
1161
1070
  "@mapping": "shapedb:Dialog.cfNgbJp3m"
1162
1071
  }
1163
1072
  },
1164
- "required": [
1165
- "requiresAuth"
1166
- ]
1073
+ "required": ["requiresAuth"]
1167
1074
  }
1168
1075
  },
1169
1076
  "TabGroup": {
@@ -1296,10 +1203,7 @@
1296
1203
  }
1297
1204
  }
1298
1205
  },
1299
- "required": [
1300
- "usedFor",
1301
- "color"
1302
- ]
1206
+ "required": ["usedFor", "color"]
1303
1207
  }
1304
1208
  },
1305
1209
  "ContentBlock": {
@@ -1327,9 +1231,7 @@
1327
1231
  "@tag": "draftjs"
1328
1232
  }
1329
1233
  },
1330
- "required": [
1331
- "content"
1332
- ]
1234
+ "required": ["content"]
1333
1235
  }
1334
1236
  },
1335
1237
  "ComponentCollection": {
@@ -1516,10 +1418,7 @@
1516
1418
  }
1517
1419
  }
1518
1420
  },
1519
- "required": [
1520
- "usedFor",
1521
- "components"
1522
- ]
1421
+ "required": ["usedFor", "components"]
1523
1422
  }
1524
1423
  },
1525
1424
  "ResponsiveTable": {
@@ -1739,9 +1638,7 @@
1739
1638
  "@mapping": "shapedb:NavList.HkYeNCFJr"
1740
1639
  }
1741
1640
  },
1742
- "required": [
1743
- "usedFor"
1744
- ]
1641
+ "required": ["usedFor"]
1745
1642
  }
1746
1643
  },
1747
1644
  "ActiveLimitTable": {
@@ -1867,15 +1764,11 @@
1867
1764
  "oneOf": [
1868
1765
  {
1869
1766
  "title": "Phone",
1870
- "enum": [
1871
- "phone"
1872
- ]
1767
+ "enum": ["phone"]
1873
1768
  },
1874
1769
  {
1875
1770
  "title": "Email",
1876
- "enum": [
1877
- "email"
1878
- ]
1771
+ "enum": ["email"]
1879
1772
  }
1880
1773
  ],
1881
1774
  "minLength": 1,
@@ -1909,50 +1802,34 @@
1909
1802
  "oneOf": [
1910
1803
  {
1911
1804
  "title": "Primary",
1912
- "enum": [
1913
- "primary"
1914
- ]
1805
+ "enum": ["primary"]
1915
1806
  },
1916
1807
  {
1917
1808
  "title": "Accent",
1918
- "enum": [
1919
- "accent"
1920
- ]
1809
+ "enum": ["accent"]
1921
1810
  },
1922
1811
  {
1923
1812
  "title": "Warn",
1924
- "enum": [
1925
- "warn"
1926
- ]
1813
+ "enum": ["warn"]
1927
1814
  },
1928
1815
  {
1929
1816
  "title": "Primary Outline",
1930
- "enum": [
1931
- "primary-outline"
1932
- ]
1817
+ "enum": ["primary-outline"]
1933
1818
  },
1934
1819
  {
1935
1820
  "title": "Accent Outline",
1936
- "enum": [
1937
- "accent-outline"
1938
- ]
1821
+ "enum": ["accent-outline"]
1939
1822
  },
1940
1823
  {
1941
1824
  "title": "Warn Outline",
1942
- "enum": [
1943
- "warn-outline"
1944
- ]
1825
+ "enum": ["warn-outline"]
1945
1826
  }
1946
1827
  ],
1947
1828
  "minLength": 1,
1948
1829
  "@mapping": "shapedb:Activate.osIefr8Vp"
1949
1830
  }
1950
1831
  },
1951
- "required": [
1952
- "usedFor",
1953
- "type",
1954
- "submitColor"
1955
- ]
1832
+ "required": ["usedFor", "type", "submitColor"]
1956
1833
  }
1957
1834
  },
1958
1835
  "Alignment": {
@@ -1972,9 +1849,7 @@
1972
1849
  "@mapping": "shapedb:Alignment.rJsd8aFJS"
1973
1850
  }
1974
1851
  },
1975
- "required": [
1976
- "value"
1977
- ]
1852
+ "required": ["value"]
1978
1853
  }
1979
1854
  },
1980
1855
  "ColorPalette": {
@@ -2004,11 +1879,7 @@
2004
1879
  "$ref": "#/shapes/ColorPaletteColors/schema"
2005
1880
  }
2006
1881
  },
2007
- "required": [
2008
- "usedFor",
2009
- "colors",
2010
- "contrastColors"
2011
- ]
1882
+ "required": ["usedFor", "colors", "contrastColors"]
2012
1883
  }
2013
1884
  },
2014
1885
  "ColorPaletteContrastColors": {
@@ -2373,9 +2244,7 @@
2373
2244
  }
2374
2245
  }
2375
2246
  },
2376
- "required": [
2377
- "componentCollection"
2378
- ]
2247
+ "required": ["componentCollection"]
2379
2248
  }
2380
2249
  },
2381
2250
  "GridLayoutTiles": {
@@ -2408,18 +2277,14 @@
2408
2277
  "oneOf": [
2409
2278
  {
2410
2279
  "title": "Placeholder",
2411
- "enum": [
2412
- "Placeholder"
2413
- ]
2280
+ "enum": ["Placeholder"]
2414
2281
  }
2415
2282
  ],
2416
2283
  "minLength": 1,
2417
2284
  "@mapping": "shapedb:GridLayoutBlacklistedComponents.DSJy53Omf"
2418
2285
  }
2419
2286
  },
2420
- "required": [
2421
- "value"
2422
- ]
2287
+ "required": ["value"]
2423
2288
  }
2424
2289
  },
2425
2290
  "PaymentMethod": {
@@ -2447,33 +2312,23 @@
2447
2312
  "oneOf": [
2448
2313
  {
2449
2314
  "title": "Bank",
2450
- "enum": [
2451
- "BANK"
2452
- ]
2315
+ "enum": ["BANK"]
2453
2316
  },
2454
2317
  {
2455
2318
  "title": "Card",
2456
- "enum": [
2457
- "CARD"
2458
- ]
2319
+ "enum": ["CARD"]
2459
2320
  },
2460
2321
  {
2461
2322
  "title": "Voucher",
2462
- "enum": [
2463
- "VOUCHER"
2464
- ]
2323
+ "enum": ["VOUCHER"]
2465
2324
  },
2466
2325
  {
2467
2326
  "title": "Wallet",
2468
- "enum": [
2469
- "WALLET"
2470
- ]
2327
+ "enum": ["WALLET"]
2471
2328
  },
2472
2329
  {
2473
2330
  "title": "Bank IBAN",
2474
- "enum": [
2475
- "BANK_IBAN"
2476
- ]
2331
+ "enum": ["BANK_IBAN"]
2477
2332
  }
2478
2333
  ],
2479
2334
  "@mapping": "shapedb:PaymentMethod.3m5KYCxaW"
@@ -2484,129 +2339,87 @@
2484
2339
  "oneOf": [
2485
2340
  {
2486
2341
  "title": "Cash to Code",
2487
- "enum": [
2488
- "CASHTOCODE"
2489
- ]
2342
+ "enum": ["CASHTOCODE"]
2490
2343
  },
2491
2344
  {
2492
2345
  "title": "Ecopayz",
2493
- "enum": [
2494
- "ECOPAYZ"
2495
- ]
2346
+ "enum": ["ECOPAYZ"]
2496
2347
  },
2497
2348
  {
2498
2349
  "title": "Euteller",
2499
- "enum": [
2500
- "EUTELLER"
2501
- ]
2350
+ "enum": ["EUTELLER"]
2502
2351
  },
2503
2352
  {
2504
2353
  "title": "Klarna",
2505
- "enum": [
2506
- "KLARNA"
2507
- ]
2354
+ "enum": ["KLARNA"]
2508
2355
  },
2509
2356
  {
2510
2357
  "title": "Neteller",
2511
- "enum": [
2512
- "NETELLER"
2513
- ]
2358
+ "enum": ["NETELLER"]
2514
2359
  },
2515
2360
  {
2516
2361
  "title": "Payment IQ",
2517
- "enum": [
2518
- "PAYMENT_IQ"
2519
- ]
2362
+ "enum": ["PAYMENT_IQ"]
2520
2363
  },
2521
2364
  {
2522
2365
  "title": "Paysafecard",
2523
- "enum": [
2524
- "PAYSAFECARD"
2525
- ]
2366
+ "enum": ["PAYSAFECARD"]
2526
2367
  },
2527
2368
  {
2528
2369
  "title": "Siirto",
2529
- "enum": [
2530
- "SIIRTO"
2531
- ]
2370
+ "enum": ["SIIRTO"]
2532
2371
  },
2533
2372
  {
2534
2373
  "title": "Skrill",
2535
- "enum": [
2536
- "SKRILL"
2537
- ]
2374
+ "enum": ["SKRILL"]
2538
2375
  },
2539
2376
  {
2540
2377
  "title": "Swish",
2541
- "enum": [
2542
- "SWISH"
2543
- ]
2378
+ "enum": ["SWISH"]
2544
2379
  },
2545
2380
  {
2546
2381
  "title": "Test",
2547
- "enum": [
2548
- "TEST"
2549
- ]
2382
+ "enum": ["TEST"]
2550
2383
  },
2551
2384
  {
2552
2385
  "title": "Trustly",
2553
- "enum": [
2554
- "TRUSTLY"
2555
- ]
2386
+ "enum": ["TRUSTLY"]
2556
2387
  },
2557
2388
  {
2558
2389
  "title": "Zimpler",
2559
- "enum": [
2560
- "ZIMPLER"
2561
- ]
2390
+ "enum": ["ZIMPLER"]
2562
2391
  },
2563
2392
  {
2564
2393
  "title": "Muchbetter",
2565
- "enum": [
2566
- "MUCHBETTER"
2567
- ]
2394
+ "enum": ["MUCHBETTER"]
2568
2395
  },
2569
2396
  {
2570
2397
  "title": "Rapid Transfer",
2571
- "enum": [
2572
- "RAPIDTRANSFER"
2573
- ]
2398
+ "enum": ["RAPIDTRANSFER"]
2574
2399
  },
2575
2400
  {
2576
2401
  "title": "Pay4Fun",
2577
- "enum": [
2578
- "PAY4FUN"
2579
- ]
2402
+ "enum": ["PAY4FUN"]
2580
2403
  },
2581
2404
  {
2582
2405
  "title": "Astropay",
2583
- "enum": [
2584
- "ASTROPAY"
2585
- ]
2406
+ "enum": ["ASTROPAY"]
2586
2407
  },
2587
2408
  {
2588
2409
  "title": "Inovapay",
2589
- "enum": [
2590
- "INOVAPAY"
2591
- ]
2410
+ "enum": ["INOVAPAY"]
2592
2411
  },
2593
2412
  {
2594
2413
  "title": "Interac",
2595
- "enum": [
2596
- "INTERAC"
2597
- ]
2414
+ "enum": ["INTERAC"]
2598
2415
  },
2599
2416
  {
2600
2417
  "title": "Instadebit",
2601
- "enum": [
2602
- "INSTADEBIT"
2603
- ]
2418
+ "enum": ["INSTADEBIT"]
2604
2419
  },
2605
2420
  {
2606
2421
  "title": "Idebit",
2607
- "enum": [
2608
- "IDEBIT"
2609
- ]
2422
+ "enum": ["IDEBIT"]
2610
2423
  }
2611
2424
  ],
2612
2425
  "@mapping": "shapedb:PaymentMethod.xLaaM8arC"
@@ -2662,9 +2475,7 @@
2662
2475
  "@tag": "draftjs"
2663
2476
  }
2664
2477
  },
2665
- "required": [
2666
- "displayName"
2667
- ]
2478
+ "required": ["displayName"]
2668
2479
  }
2669
2480
  },
2670
2481
  "Placeholder": {
@@ -2712,57 +2523,39 @@
2712
2523
  "oneOf": [
2713
2524
  {
2714
2525
  "title": "Card",
2715
- "enum": [
2716
- "card"
2717
- ]
2526
+ "enum": ["card"]
2718
2527
  },
2719
2528
  {
2720
2529
  "title": "Carousel",
2721
- "enum": [
2722
- "carousel"
2723
- ]
2530
+ "enum": ["carousel"]
2724
2531
  },
2725
2532
  {
2726
2533
  "title": "Banner",
2727
- "enum": [
2728
- "banner"
2729
- ]
2534
+ "enum": ["banner"]
2730
2535
  },
2731
2536
  {
2732
2537
  "title": "NavList",
2733
- "enum": [
2734
- "navList"
2735
- ]
2538
+ "enum": ["navList"]
2736
2539
  },
2737
2540
  {
2738
2541
  "title": "Copy",
2739
- "enum": [
2740
- "copy"
2741
- ]
2542
+ "enum": ["copy"]
2742
2543
  },
2743
2544
  {
2744
2545
  "title": "Image",
2745
- "enum": [
2746
- "image"
2747
- ]
2546
+ "enum": ["image"]
2748
2547
  },
2749
2548
  {
2750
2549
  "title": "Button Layout",
2751
- "enum": [
2752
- "buttonLayout"
2753
- ]
2550
+ "enum": ["buttonLayout"]
2754
2551
  },
2755
2552
  {
2756
2553
  "title": "Flippable Card",
2757
- "enum": [
2758
- "flippableCard"
2759
- ]
2554
+ "enum": ["flippableCard"]
2760
2555
  },
2761
2556
  {
2762
2557
  "title": "Expansion Panel",
2763
- "enum": [
2764
- "expansionPanel"
2765
- ]
2558
+ "enum": ["expansionPanel"]
2766
2559
  }
2767
2560
  ],
2768
2561
  "minLength": 1,
@@ -2825,25 +2618,18 @@
2825
2618
  "oneOf": [
2826
2619
  {
2827
2620
  "title": "Multiple",
2828
- "enum": [
2829
- "multiple"
2830
- ]
2621
+ "enum": ["multiple"]
2831
2622
  },
2832
2623
  {
2833
2624
  "title": "Active Template Slug",
2834
- "enum": [
2835
- "activeTemplateSlug"
2836
- ]
2625
+ "enum": ["activeTemplateSlug"]
2837
2626
  }
2838
2627
  ],
2839
2628
  "minLength": 1,
2840
2629
  "@mapping": "shapedb:Placeholder.ZGGsVsIOy"
2841
2630
  }
2842
2631
  },
2843
- "required": [
2844
- "type",
2845
- "transformer"
2846
- ]
2632
+ "required": ["type", "transformer"]
2847
2633
  }
2848
2634
  },
2849
2635
  "LanguageSelector": {
@@ -2904,45 +2690,31 @@
2904
2690
  "oneOf": [
2905
2691
  {
2906
2692
  "title": "Light",
2907
- "enum": [
2908
- "light"
2909
- ]
2693
+ "enum": ["light"]
2910
2694
  },
2911
2695
  {
2912
2696
  "title": "Primary",
2913
- "enum": [
2914
- "primary"
2915
- ]
2697
+ "enum": ["primary"]
2916
2698
  },
2917
2699
  {
2918
2700
  "title": "Accent",
2919
- "enum": [
2920
- "accent"
2921
- ]
2701
+ "enum": ["accent"]
2922
2702
  },
2923
2703
  {
2924
2704
  "title": "Warn",
2925
- "enum": [
2926
- "warn"
2927
- ]
2705
+ "enum": ["warn"]
2928
2706
  },
2929
2707
  {
2930
2708
  "title": "Primary Outline",
2931
- "enum": [
2932
- "primary-outline"
2933
- ]
2709
+ "enum": ["primary-outline"]
2934
2710
  },
2935
2711
  {
2936
2712
  "title": "Accent Outline",
2937
- "enum": [
2938
- "accent-outline"
2939
- ]
2713
+ "enum": ["accent-outline"]
2940
2714
  },
2941
2715
  {
2942
2716
  "title": "Warn Outline",
2943
- "enum": [
2944
- "warn-outline"
2945
- ]
2717
+ "enum": ["warn-outline"]
2946
2718
  }
2947
2719
  ],
2948
2720
  "minLength": 1,
@@ -2971,10 +2743,7 @@
2971
2743
  }
2972
2744
  }
2973
2745
  },
2974
- "required": [
2975
- "usedFor",
2976
- "color"
2977
- ]
2746
+ "required": ["usedFor", "color"]
2978
2747
  }
2979
2748
  },
2980
2749
  "LanguageSelectorFlagsFlag": {
@@ -3007,10 +2776,7 @@
3007
2776
  }
3008
2777
  }
3009
2778
  },
3010
- "required": [
3011
- "locale",
3012
- "image"
3013
- ]
2779
+ "required": ["locale", "image"]
3014
2780
  }
3015
2781
  },
3016
2782
  "LanguageSelectorFlags": {
@@ -3170,9 +2936,7 @@
3170
2936
  "@mapping": "shapedb:GridList.H1jP3AKyS"
3171
2937
  }
3172
2938
  },
3173
- "required": [
3174
- "componentCollection"
3175
- ]
2939
+ "required": ["componentCollection"]
3176
2940
  }
3177
2941
  },
3178
2942
  "GridListTiles": {
@@ -3234,18 +2998,14 @@
3234
2998
  "oneOf": [
3235
2999
  {
3236
3000
  "title": "Placeholder",
3237
- "enum": [
3238
- "Placeholder"
3239
- ]
3001
+ "enum": ["Placeholder"]
3240
3002
  }
3241
3003
  ],
3242
3004
  "minLength": 1,
3243
3005
  "@mapping": "shapedb:GridListBlacklistedComponents.nFQbUr0jY"
3244
3006
  }
3245
3007
  },
3246
- "required": [
3247
- "value"
3248
- ]
3008
+ "required": ["value"]
3249
3009
  }
3250
3010
  },
3251
3011
  "CasinoGameSearch": {
@@ -3394,10 +3154,7 @@
3394
3154
  }
3395
3155
  }
3396
3156
  },
3397
- "required": [
3398
- "usedFor",
3399
- "content"
3400
- ]
3157
+ "required": ["usedFor", "content"]
3401
3158
  }
3402
3159
  },
3403
3160
  "Video": {
@@ -3550,12 +3307,7 @@
3550
3307
  "@mapping": "shapedb:Route.4cXIgMeyH"
3551
3308
  }
3552
3309
  },
3553
- "required": [
3554
- "usedFor",
3555
- "name",
3556
- "path",
3557
- "component"
3558
- ]
3310
+ "required": ["usedFor", "name", "path", "component"]
3559
3311
  }
3560
3312
  },
3561
3313
  "RouteDevices": {
@@ -3572,9 +3324,7 @@
3572
3324
  "@mapping": "shapedb:RouteDevices.2ciERY4B0"
3573
3325
  }
3574
3326
  },
3575
- "required": [
3576
- "value"
3577
- ]
3327
+ "required": ["value"]
3578
3328
  }
3579
3329
  },
3580
3330
  "RouteJurisdictions": {
@@ -3591,9 +3341,7 @@
3591
3341
  "@mapping": "shapedb:RouteJurisdictions.b5xnnI3tj"
3592
3342
  }
3593
3343
  },
3594
- "required": [
3595
- "value"
3596
- ]
3344
+ "required": ["value"]
3597
3345
  }
3598
3346
  },
3599
3347
  "SetLimitForm": {
@@ -3647,39 +3395,27 @@
3647
3395
  "oneOf": [
3648
3396
  {
3649
3397
  "title": "Primary",
3650
- "enum": [
3651
- "primary"
3652
- ]
3398
+ "enum": ["primary"]
3653
3399
  },
3654
3400
  {
3655
3401
  "title": "Accent",
3656
- "enum": [
3657
- "accent"
3658
- ]
3402
+ "enum": ["accent"]
3659
3403
  },
3660
3404
  {
3661
3405
  "title": "Warn",
3662
- "enum": [
3663
- "warn"
3664
- ]
3406
+ "enum": ["warn"]
3665
3407
  },
3666
3408
  {
3667
3409
  "title": "Primary Outline",
3668
- "enum": [
3669
- "primary-outline"
3670
- ]
3410
+ "enum": ["primary-outline"]
3671
3411
  },
3672
3412
  {
3673
3413
  "title": "Accent Outline",
3674
- "enum": [
3675
- "accent-outline"
3676
- ]
3414
+ "enum": ["accent-outline"]
3677
3415
  },
3678
3416
  {
3679
3417
  "title": "Warn Outline",
3680
- "enum": [
3681
- "warn-outline"
3682
- ]
3418
+ "enum": ["warn-outline"]
3683
3419
  }
3684
3420
  ],
3685
3421
  "minLength": 1,
@@ -3720,27 +3456,19 @@
3720
3456
  "oneOf": [
3721
3457
  {
3722
3458
  "title": "Bet",
3723
- "enum": [
3724
- "BET"
3725
- ]
3459
+ "enum": ["BET"]
3726
3460
  },
3727
3461
  {
3728
3462
  "title": "Deposit",
3729
- "enum": [
3730
- "DEPOSIT"
3731
- ]
3463
+ "enum": ["DEPOSIT"]
3732
3464
  },
3733
3465
  {
3734
3466
  "title": "Loss",
3735
- "enum": [
3736
- "LOSS"
3737
- ]
3467
+ "enum": ["LOSS"]
3738
3468
  },
3739
3469
  {
3740
3470
  "title": "Session",
3741
- "enum": [
3742
- "SESSION"
3743
- ]
3471
+ "enum": ["SESSION"]
3744
3472
  }
3745
3473
  ],
3746
3474
  "minLength": 1,
@@ -3752,51 +3480,34 @@
3752
3480
  "oneOf": [
3753
3481
  {
3754
3482
  "title": "Primary",
3755
- "enum": [
3756
- "primary"
3757
- ]
3483
+ "enum": ["primary"]
3758
3484
  },
3759
3485
  {
3760
3486
  "title": "Accent",
3761
- "enum": [
3762
- "accent"
3763
- ]
3487
+ "enum": ["accent"]
3764
3488
  },
3765
3489
  {
3766
3490
  "title": "Warn",
3767
- "enum": [
3768
- "warn"
3769
- ]
3491
+ "enum": ["warn"]
3770
3492
  },
3771
3493
  {
3772
3494
  "title": "Primary Outline",
3773
- "enum": [
3774
- "primary-outline"
3775
- ]
3495
+ "enum": ["primary-outline"]
3776
3496
  },
3777
3497
  {
3778
3498
  "title": "Accent Outline",
3779
- "enum": [
3780
- "accent-outline"
3781
- ]
3499
+ "enum": ["accent-outline"]
3782
3500
  },
3783
3501
  {
3784
3502
  "title": "Warn Outline",
3785
- "enum": [
3786
- "warn-outline"
3787
- ]
3503
+ "enum": ["warn-outline"]
3788
3504
  }
3789
3505
  ],
3790
3506
  "minLength": 1,
3791
3507
  "@mapping": "shapedb:SetLimitForm.OS3fATeOr"
3792
3508
  }
3793
3509
  },
3794
- "required": [
3795
- "usedFor",
3796
- "type",
3797
- "submitColor",
3798
- "skipColor"
3799
- ]
3510
+ "required": ["usedFor", "type", "submitColor", "skipColor"]
3800
3511
  }
3801
3512
  },
3802
3513
  "AchievementProgressBar": {
@@ -3920,10 +3631,7 @@
3920
3631
  }
3921
3632
  }
3922
3633
  },
3923
- "required": [
3924
- "name",
3925
- "asset"
3926
- ]
3634
+ "required": ["name", "asset"]
3927
3635
  }
3928
3636
  },
3929
3637
  "Jurisdiction": {
@@ -3943,9 +3651,7 @@
3943
3651
  "@mapping": "shapedb:Jurisdiction.ToDrgZuKY"
3944
3652
  }
3945
3653
  },
3946
- "required": [
3947
- "value"
3948
- ]
3654
+ "required": ["value"]
3949
3655
  }
3950
3656
  },
3951
3657
  "LoginForm": {
@@ -4037,15 +3743,11 @@
4037
3743
  "oneOf": [
4038
3744
  {
4039
3745
  "title": "Pay and Play",
4040
- "enum": [
4041
- "payAndPlay"
4042
- ]
3746
+ "enum": ["payAndPlay"]
4043
3747
  },
4044
3748
  {
4045
3749
  "title": "Normal",
4046
- "enum": [
4047
- "normal"
4048
- ]
3750
+ "enum": ["normal"]
4049
3751
  }
4050
3752
  ],
4051
3753
  "@mapping": "shapedb:LoginForm.dVhB9k9ks"
@@ -4060,33 +3762,23 @@
4060
3762
  "oneOf": [
4061
3763
  {
4062
3764
  "title": "Facebook",
4063
- "enum": [
4064
- "FACEBOOK"
4065
- ]
3765
+ "enum": ["FACEBOOK"]
4066
3766
  },
4067
3767
  {
4068
3768
  "title": "Steam",
4069
- "enum": [
4070
- "STEAM"
4071
- ]
3769
+ "enum": ["STEAM"]
4072
3770
  },
4073
3771
  {
4074
3772
  "title": "BankId",
4075
- "enum": [
4076
- "BANKID_SE"
4077
- ]
3773
+ "enum": ["BANKID_SE"]
4078
3774
  },
4079
3775
  {
4080
3776
  "title": "Pay and Play",
4081
- "enum": [
4082
- "TRUSTTLY"
4083
- ]
3777
+ "enum": ["TRUSTTLY"]
4084
3778
  },
4085
3779
  {
4086
3780
  "title": "Euteller",
4087
- "enum": [
4088
- "EUTELLER"
4089
- ]
3781
+ "enum": ["EUTELLER"]
4090
3782
  }
4091
3783
  ]
4092
3784
  },
@@ -4121,49 +3813,34 @@
4121
3813
  "oneOf": [
4122
3814
  {
4123
3815
  "title": "Primary",
4124
- "enum": [
4125
- "primary"
4126
- ]
3816
+ "enum": ["primary"]
4127
3817
  },
4128
3818
  {
4129
3819
  "title": "Accent",
4130
- "enum": [
4131
- "accent"
4132
- ]
3820
+ "enum": ["accent"]
4133
3821
  },
4134
3822
  {
4135
3823
  "title": "Warn",
4136
- "enum": [
4137
- "warn"
4138
- ]
3824
+ "enum": ["warn"]
4139
3825
  },
4140
3826
  {
4141
3827
  "title": "Primary Outline",
4142
- "enum": [
4143
- "primary-outline"
4144
- ]
3828
+ "enum": ["primary-outline"]
4145
3829
  },
4146
3830
  {
4147
3831
  "title": "Accent Outline",
4148
- "enum": [
4149
- "accent-outline"
4150
- ]
3832
+ "enum": ["accent-outline"]
4151
3833
  },
4152
3834
  {
4153
3835
  "title": "Warn Outline",
4154
- "enum": [
4155
- "warn-outline"
4156
- ]
3836
+ "enum": ["warn-outline"]
4157
3837
  }
4158
3838
  ],
4159
3839
  "minLength": 1,
4160
3840
  "@mapping": "shapedb:LoginForm.FJJU7rNmV"
4161
3841
  }
4162
3842
  },
4163
- "required": [
4164
- "providers",
4165
- "submitColor"
4166
- ]
3843
+ "required": ["providers", "submitColor"]
4167
3844
  }
4168
3845
  },
4169
3846
  "Icon": {
@@ -4199,10 +3876,7 @@
4199
3876
  "@mapping": "shapedb:Icon.Hyci04YJH"
4200
3877
  }
4201
3878
  },
4202
- "required": [
4203
- "asset",
4204
- "slug"
4205
- ]
3879
+ "required": ["asset", "slug"]
4206
3880
  }
4207
3881
  },
4208
3882
  "Tab": {
@@ -4466,9 +4140,7 @@
4466
4140
  "@mapping": "shapedb:Tab.nR7f3OAcW"
4467
4141
  }
4468
4142
  },
4469
- "required": [
4470
- "usedFor"
4471
- ]
4143
+ "required": ["usedFor"]
4472
4144
  }
4473
4145
  },
4474
4146
  "Layout": {
@@ -4516,27 +4188,19 @@
4516
4188
  "oneOf": [
4517
4189
  {
4518
4190
  "title": "Row",
4519
- "enum": [
4520
- "row"
4521
- ]
4191
+ "enum": ["row"]
4522
4192
  },
4523
4193
  {
4524
4194
  "title": "Column",
4525
- "enum": [
4526
- "column"
4527
- ]
4195
+ "enum": ["column"]
4528
4196
  },
4529
4197
  {
4530
4198
  "title": "Row Reverse",
4531
- "enum": [
4532
- "row-reverse"
4533
- ]
4199
+ "enum": ["row-reverse"]
4534
4200
  },
4535
4201
  {
4536
4202
  "title": "Column Reverse",
4537
- "enum": [
4538
- "column-reverse"
4539
- ]
4203
+ "enum": ["column-reverse"]
4540
4204
  }
4541
4205
  ],
4542
4206
  "minLength": 1,
@@ -4649,13 +4313,7 @@
4649
4313
  "@mapping": "shapedb:Layout.BkiQjiVbr"
4650
4314
  }
4651
4315
  },
4652
- "required": [
4653
- "usedFor",
4654
- "display",
4655
- "alignX",
4656
- "alignY",
4657
- "items"
4658
- ]
4316
+ "required": ["usedFor", "display", "alignX", "alignY", "items"]
4659
4317
  }
4660
4318
  },
4661
4319
  "LayoutItems": {
@@ -4903,9 +4561,7 @@
4903
4561
  }
4904
4562
  }
4905
4563
  },
4906
- "required": [
4907
- "components"
4908
- ]
4564
+ "required": ["components"]
4909
4565
  }
4910
4566
  },
4911
4567
  "PlaceholderTemplate": {
@@ -4924,21 +4580,15 @@
4924
4580
  "oneOf": [
4925
4581
  {
4926
4582
  "title": "Any",
4927
- "enum": [
4928
- "any"
4929
- ]
4583
+ "enum": ["any"]
4930
4584
  },
4931
4585
  {
4932
4586
  "title": "True",
4933
- "enum": [
4934
- "true"
4935
- ]
4587
+ "enum": ["true"]
4936
4588
  },
4937
4589
  {
4938
4590
  "title": "False",
4939
- "enum": [
4940
- "false"
4941
- ]
4591
+ "enum": ["false"]
4942
4592
  }
4943
4593
  ],
4944
4594
  "minLength": 1,
@@ -5046,15 +4696,11 @@
5046
4696
  "oneOf": [
5047
4697
  {
5048
4698
  "title": "Fullpage",
5049
- "enum": [
5050
- "fullpage"
5051
- ]
4699
+ "enum": ["fullpage"]
5052
4700
  },
5053
4701
  {
5054
4702
  "title": "Normal",
5055
- "enum": [
5056
- "normal"
5057
- ]
4703
+ "enum": ["normal"]
5058
4704
  }
5059
4705
  ],
5060
4706
  "minLength": 1,
@@ -5188,10 +4834,7 @@
5188
4834
  "@mapping": "shapedb:PlaceholderTemplate.v8r9Y4fKQ"
5189
4835
  }
5190
4836
  },
5191
- "required": [
5192
- "usedFor",
5193
- "requiresAuth"
5194
- ]
4837
+ "required": ["usedFor", "requiresAuth"]
5195
4838
  }
5196
4839
  },
5197
4840
  "PlaceholderTemplateModifiers": {
@@ -5209,21 +4852,15 @@
5209
4852
  "oneOf": [
5210
4853
  {
5211
4854
  "title": "Banner Overlay",
5212
- "enum": [
5213
- "BANNER_OVERLAY"
5214
- ]
4855
+ "enum": ["BANNER_OVERLAY"]
5215
4856
  },
5216
4857
  {
5217
4858
  "title": "Full Height on Homepage",
5218
- "enum": [
5219
- "FULL_HEIGHT_HOME"
5220
- ]
4859
+ "enum": ["FULL_HEIGHT_HOME"]
5221
4860
  },
5222
4861
  {
5223
4862
  "title": "Show normal for logged in",
5224
- "enum": [
5225
- "NORMAL_HEIGHT_AUTHED"
5226
- ]
4863
+ "enum": ["NORMAL_HEIGHT_AUTHED"]
5227
4864
  }
5228
4865
  ],
5229
4866
  "@mapping": "shapedb:PlaceholderTemplateModifiers.l8XTxrsrU"
@@ -5245,9 +4882,7 @@
5245
4882
  "@mapping": "shapedb:PlaceholderTemplateCampaignIds.tOq56FgVr"
5246
4883
  }
5247
4884
  },
5248
- "required": [
5249
- "value"
5250
- ]
4885
+ "required": ["value"]
5251
4886
  }
5252
4887
  },
5253
4888
  "VipBenefit": {
@@ -5298,11 +4933,7 @@
5298
4933
  "@mapping": "shapedb:VipBenefit.rkUM2mM-r"
5299
4934
  }
5300
4935
  },
5301
- "required": [
5302
- "name",
5303
- "benefit",
5304
- "levels"
5305
- ]
4936
+ "required": ["name", "benefit", "levels"]
5306
4937
  }
5307
4938
  },
5308
4939
  "VipBenefitLevels": {
@@ -5459,13 +5090,7 @@
5459
5090
  "@mapping": "shapedb:ImageCard.SjCIMZfB1"
5460
5091
  }
5461
5092
  },
5462
- "required": [
5463
- "usedFor",
5464
- "aspectRatioPercentage",
5465
- "backgroundImage",
5466
- "alignX",
5467
- "alignY"
5468
- ]
5093
+ "required": ["usedFor", "aspectRatioPercentage", "backgroundImage", "alignX", "alignY"]
5469
5094
  }
5470
5095
  },
5471
5096
  "Translation": {
@@ -5502,9 +5127,7 @@
5502
5127
  "@mapping": "shapedb:Translation.rkkajVY1B"
5503
5128
  }
5504
5129
  },
5505
- "required": [
5506
- "source"
5507
- ]
5130
+ "required": ["source"]
5508
5131
  }
5509
5132
  },
5510
5133
  "SessionTimer": {
@@ -5652,48 +5275,34 @@
5652
5275
  "oneOf": [
5653
5276
  {
5654
5277
  "title": "Primary",
5655
- "enum": [
5656
- "primary"
5657
- ]
5278
+ "enum": ["primary"]
5658
5279
  },
5659
5280
  {
5660
5281
  "title": "Accent",
5661
- "enum": [
5662
- "accent"
5663
- ]
5282
+ "enum": ["accent"]
5664
5283
  },
5665
5284
  {
5666
5285
  "title": "Warn",
5667
- "enum": [
5668
- "warn"
5669
- ]
5286
+ "enum": ["warn"]
5670
5287
  },
5671
5288
  {
5672
5289
  "title": "Primary outline",
5673
- "enum": [
5674
- "primary-outline"
5675
- ]
5290
+ "enum": ["primary-outline"]
5676
5291
  },
5677
5292
  {
5678
5293
  "title": "Accent Outline",
5679
- "enum": [
5680
- "accent-outline"
5681
- ]
5294
+ "enum": ["accent-outline"]
5682
5295
  },
5683
5296
  {
5684
5297
  "title": "Warn Outline",
5685
- "enum": [
5686
- "warn-outline"
5687
- ]
5298
+ "enum": ["warn-outline"]
5688
5299
  }
5689
5300
  ],
5690
5301
  "minLength": 1,
5691
5302
  "@mapping": "shapedb:RegistrationForm.jO6F9tOqb"
5692
5303
  }
5693
5304
  },
5694
- "required": [
5695
- "submitColor"
5696
- ]
5305
+ "required": ["submitColor"]
5697
5306
  }
5698
5307
  },
5699
5308
  "Action": {
@@ -5746,9 +5355,7 @@
5746
5355
  "@mapping": "shapedb:Action.3n5l1Wbbe"
5747
5356
  }
5748
5357
  },
5749
- "required": [
5750
- "value"
5751
- ]
5358
+ "required": ["value"]
5752
5359
  }
5753
5360
  },
5754
5361
  "ActionDevices": {
@@ -5765,9 +5372,7 @@
5765
5372
  "@mapping": "shapedb:ActionDevices.3RmzhcI4n"
5766
5373
  }
5767
5374
  },
5768
- "required": [
5769
- "value"
5770
- ]
5375
+ "required": ["value"]
5771
5376
  }
5772
5377
  },
5773
5378
  "ActionJurisdictions": {
@@ -5784,9 +5389,7 @@
5784
5389
  "@mapping": "shapedb:ActionJurisdictions.Ugrq6Etr-"
5785
5390
  }
5786
5391
  },
5787
- "required": [
5788
- "value"
5789
- ]
5392
+ "required": ["value"]
5790
5393
  }
5791
5394
  },
5792
5395
  "GameType": {
@@ -5814,10 +5417,7 @@
5814
5417
  "@mapping": "shapedb:GameType.MNK8MIbVW"
5815
5418
  }
5816
5419
  },
5817
- "required": [
5818
- "value",
5819
- "text"
5820
- ]
5420
+ "required": ["value", "text"]
5821
5421
  }
5822
5422
  },
5823
5423
  "Accordion": {
@@ -5933,10 +5533,7 @@
5933
5533
  "@mapping": "shapedb:Accordion.SkxpWScJB"
5934
5534
  }
5935
5535
  },
5936
- "required": [
5937
- "usedFor",
5938
- "panels"
5939
- ]
5536
+ "required": ["usedFor", "panels"]
5940
5537
  }
5941
5538
  },
5942
5539
  "PendingWithdrawals": {
@@ -5983,15 +5580,11 @@
5983
5580
  "oneOf": [
5984
5581
  {
5985
5582
  "title": "Widget",
5986
- "enum": [
5987
- "widget"
5988
- ]
5583
+ "enum": ["widget"]
5989
5584
  },
5990
5585
  {
5991
5586
  "title": "Table",
5992
- "enum": [
5993
- "table"
5994
- ]
5587
+ "enum": ["table"]
5995
5588
  }
5996
5589
  ],
5997
5590
  "minLength": 1,
@@ -6025,50 +5618,34 @@
6025
5618
  "oneOf": [
6026
5619
  {
6027
5620
  "title": "Primary",
6028
- "enum": [
6029
- "primary"
6030
- ]
5621
+ "enum": ["primary"]
6031
5622
  },
6032
5623
  {
6033
5624
  "title": "Accent",
6034
- "enum": [
6035
- "accent"
6036
- ]
5625
+ "enum": ["accent"]
6037
5626
  },
6038
5627
  {
6039
5628
  "title": "Warn",
6040
- "enum": [
6041
- "warn"
6042
- ]
5629
+ "enum": ["warn"]
6043
5630
  },
6044
5631
  {
6045
5632
  "title": "Primary Outline",
6046
- "enum": [
6047
- "primary-outline"
6048
- ]
5633
+ "enum": ["primary-outline"]
6049
5634
  },
6050
5635
  {
6051
5636
  "title": "Accent Outline",
6052
- "enum": [
6053
- "accent-outline"
6054
- ]
5637
+ "enum": ["accent-outline"]
6055
5638
  },
6056
5639
  {
6057
5640
  "title": "Warn Outline",
6058
- "enum": [
6059
- "warn-outline"
6060
- ]
5641
+ "enum": ["warn-outline"]
6061
5642
  }
6062
5643
  ],
6063
5644
  "minLength": 1,
6064
5645
  "@mapping": "shapedb:PendingWithdrawals.jOhZ-Cqxu"
6065
5646
  }
6066
5647
  },
6067
- "required": [
6068
- "usedFor",
6069
- "type",
6070
- "submitColor"
6071
- ]
5648
+ "required": ["usedFor", "type", "submitColor"]
6072
5649
  }
6073
5650
  },
6074
5651
  "Sidebar": {
@@ -6501,9 +6078,7 @@
6501
6078
  "@mapping": "shapedb:Sidebar.c81MqK71H"
6502
6079
  }
6503
6080
  },
6504
- "required": [
6505
- "usedFor"
6506
- ]
6081
+ "required": ["usedFor"]
6507
6082
  }
6508
6083
  },
6509
6084
  "SidebarDevices": {
@@ -6520,9 +6095,7 @@
6520
6095
  "@mapping": "shapedb:SidebarDevices.4wOMpeplQ"
6521
6096
  }
6522
6097
  },
6523
- "required": [
6524
- "value"
6525
- ]
6098
+ "required": ["value"]
6526
6099
  }
6527
6100
  },
6528
6101
  "SidebarJurisdictions": {
@@ -6539,9 +6112,7 @@
6539
6112
  "@mapping": "shapedb:SidebarJurisdictions.FMYr9BGAG"
6540
6113
  }
6541
6114
  },
6542
- "required": [
6543
- "value"
6544
- ]
6115
+ "required": ["value"]
6545
6116
  }
6546
6117
  },
6547
6118
  "PaymentSearch": {
@@ -6610,48 +6181,34 @@
6610
6181
  "oneOf": [
6611
6182
  {
6612
6183
  "title": "Primary",
6613
- "enum": [
6614
- "primary"
6615
- ]
6184
+ "enum": ["primary"]
6616
6185
  },
6617
6186
  {
6618
6187
  "title": "Accent",
6619
- "enum": [
6620
- "accent"
6621
- ]
6188
+ "enum": ["accent"]
6622
6189
  },
6623
6190
  {
6624
6191
  "title": "Warn",
6625
- "enum": [
6626
- "warn"
6627
- ]
6192
+ "enum": ["warn"]
6628
6193
  },
6629
6194
  {
6630
6195
  "title": "Primary Outline",
6631
- "enum": [
6632
- "primary-outline"
6633
- ]
6196
+ "enum": ["primary-outline"]
6634
6197
  },
6635
6198
  {
6636
6199
  "title": "Accent Outline",
6637
- "enum": [
6638
- "accent-outline"
6639
- ]
6200
+ "enum": ["accent-outline"]
6640
6201
  },
6641
6202
  {
6642
6203
  "title": "Warn Outline",
6643
- "enum": [
6644
- "warn-outline"
6645
- ]
6204
+ "enum": ["warn-outline"]
6646
6205
  }
6647
6206
  ],
6648
6207
  "minLength": 1,
6649
6208
  "@mapping": "shapedb:PaymentSearch.eFzJXE7uE"
6650
6209
  }
6651
6210
  },
6652
- "required": [
6653
- "submitColor"
6654
- ]
6211
+ "required": ["submitColor"]
6655
6212
  }
6656
6213
  },
6657
6214
  "LinkTag": {
@@ -6677,10 +6234,7 @@
6677
6234
  "@tag": "draftjs"
6678
6235
  }
6679
6236
  },
6680
- "required": [
6681
- "usedFor",
6682
- "attributes"
6683
- ]
6237
+ "required": ["usedFor", "attributes"]
6684
6238
  }
6685
6239
  },
6686
6240
  "CssClass": {
@@ -6706,10 +6260,7 @@
6706
6260
  "@mapping": "shapedb:CssClass.B1_MOTKJH"
6707
6261
  }
6708
6262
  },
6709
- "required": [
6710
- "value",
6711
- "name"
6712
- ]
6263
+ "required": ["value", "name"]
6713
6264
  }
6714
6265
  },
6715
6266
  "GameFeature": {
@@ -6737,10 +6288,7 @@
6737
6288
  "@mapping": "shapedb:GameFeature.K_efRLRCa"
6738
6289
  }
6739
6290
  },
6740
- "required": [
6741
- "value",
6742
- "text"
6743
- ]
6291
+ "required": ["value", "text"]
6744
6292
  }
6745
6293
  },
6746
6294
  "ResponsiveTransform": {
@@ -6790,11 +6338,7 @@
6790
6338
  }
6791
6339
  }
6792
6340
  },
6793
- "required": [
6794
- "usedFor",
6795
- "breakpoints",
6796
- "transforms"
6797
- ]
6341
+ "required": ["usedFor", "breakpoints", "transforms"]
6798
6342
  }
6799
6343
  },
6800
6344
  "ChangePasswordForm": {
@@ -6863,49 +6407,34 @@
6863
6407
  "oneOf": [
6864
6408
  {
6865
6409
  "title": "Primary",
6866
- "enum": [
6867
- "primary"
6868
- ]
6410
+ "enum": ["primary"]
6869
6411
  },
6870
6412
  {
6871
6413
  "title": "Accent",
6872
- "enum": [
6873
- "accent"
6874
- ]
6414
+ "enum": ["accent"]
6875
6415
  },
6876
6416
  {
6877
6417
  "title": "Warn",
6878
- "enum": [
6879
- "warn"
6880
- ]
6418
+ "enum": ["warn"]
6881
6419
  },
6882
6420
  {
6883
6421
  "title": "Primary Outline",
6884
- "enum": [
6885
- "primary-outline"
6886
- ]
6422
+ "enum": ["primary-outline"]
6887
6423
  },
6888
6424
  {
6889
6425
  "title": "Accent Outline",
6890
- "enum": [
6891
- "accent-outline"
6892
- ]
6426
+ "enum": ["accent-outline"]
6893
6427
  },
6894
6428
  {
6895
6429
  "title": "Warn Outline",
6896
- "enum": [
6897
- "warn-outline"
6898
- ]
6430
+ "enum": ["warn-outline"]
6899
6431
  }
6900
6432
  ],
6901
6433
  "minLength": 1,
6902
6434
  "@mapping": "shapedb:ChangePasswordForm.EC6QknwLV"
6903
6435
  }
6904
6436
  },
6905
- "required": [
6906
- "usedFor",
6907
- "submitColor"
6908
- ]
6437
+ "required": ["usedFor", "submitColor"]
6909
6438
  }
6910
6439
  },
6911
6440
  "ExpansionPanel": {
@@ -7129,11 +6658,7 @@
7129
6658
  "@tag": "draftjs"
7130
6659
  }
7131
6660
  },
7132
- "required": [
7133
- "usedFor",
7134
- "header",
7135
- "content"
7136
- ]
6661
+ "required": ["usedFor", "header", "content"]
7137
6662
  }
7138
6663
  },
7139
6664
  "Card": {
@@ -7299,21 +6824,15 @@
7299
6824
  "oneOf": [
7300
6825
  {
7301
6826
  "title": "Visible for all users",
7302
- "enum": [
7303
- "any"
7304
- ]
6827
+ "enum": ["any"]
7305
6828
  },
7306
6829
  {
7307
6830
  "title": "Visible for logged in users only",
7308
- "enum": [
7309
- "true"
7310
- ]
6831
+ "enum": ["true"]
7311
6832
  },
7312
6833
  {
7313
6834
  "title": "Visible for logged out users only",
7314
- "enum": [
7315
- "false"
7316
- ]
6835
+ "enum": ["false"]
7317
6836
  }
7318
6837
  ],
7319
6838
  "minLength": 1,
@@ -7325,45 +6844,31 @@
7325
6844
  "oneOf": [
7326
6845
  {
7327
6846
  "title": "Primary",
7328
- "enum": [
7329
- "primary"
7330
- ]
6847
+ "enum": ["primary"]
7331
6848
  },
7332
6849
  {
7333
6850
  "title": "Accent",
7334
- "enum": [
7335
- "accent"
7336
- ]
6851
+ "enum": ["accent"]
7337
6852
  },
7338
6853
  {
7339
6854
  "title": "Warn",
7340
- "enum": [
7341
- "warn"
7342
- ]
6855
+ "enum": ["warn"]
7343
6856
  },
7344
6857
  {
7345
6858
  "title": "None",
7346
- "enum": [
7347
- "none"
7348
- ]
6859
+ "enum": ["none"]
7349
6860
  },
7350
6861
  {
7351
6862
  "title": "Primary Outline",
7352
- "enum": [
7353
- "primary-outline"
7354
- ]
6863
+ "enum": ["primary-outline"]
7355
6864
  },
7356
6865
  {
7357
6866
  "title": "Accent Outline",
7358
- "enum": [
7359
- "accent-outline"
7360
- ]
6867
+ "enum": ["accent-outline"]
7361
6868
  },
7362
6869
  {
7363
6870
  "title": "Warn Outline",
7364
- "enum": [
7365
- "warn-outline"
7366
- ]
6871
+ "enum": ["warn-outline"]
7367
6872
  }
7368
6873
  ],
7369
6874
  "minLength": 1,
@@ -7419,45 +6924,31 @@
7419
6924
  "oneOf": [
7420
6925
  {
7421
6926
  "title": "Raised",
7422
- "enum": [
7423
- "raised"
7424
- ]
6927
+ "enum": ["raised"]
7425
6928
  },
7426
6929
  {
7427
6930
  "title": "Stroked",
7428
- "enum": [
7429
- "stroked"
7430
- ]
6931
+ "enum": ["stroked"]
7431
6932
  },
7432
6933
  {
7433
6934
  "title": "Flat",
7434
- "enum": [
7435
- "flat"
7436
- ]
6935
+ "enum": ["flat"]
7437
6936
  },
7438
6937
  {
7439
6938
  "title": "Icon",
7440
- "enum": [
7441
- "icon"
7442
- ]
6939
+ "enum": ["icon"]
7443
6940
  },
7444
6941
  {
7445
6942
  "title": "Fab",
7446
- "enum": [
7447
- "fab"
7448
- ]
6943
+ "enum": ["fab"]
7449
6944
  },
7450
6945
  {
7451
6946
  "title": "Mini Fab",
7452
- "enum": [
7453
- "mini-Ffb"
7454
- ]
6947
+ "enum": ["mini-Ffb"]
7455
6948
  },
7456
6949
  {
7457
6950
  "title": "Default",
7458
- "enum": [
7459
- "default"
7460
- ]
6951
+ "enum": ["default"]
7461
6952
  }
7462
6953
  ],
7463
6954
  "minLength": 1,
@@ -7547,12 +7038,7 @@
7547
7038
  }
7548
7039
  }
7549
7040
  },
7550
- "required": [
7551
- "usedFor",
7552
- "type",
7553
- "color",
7554
- "requiresAuth"
7555
- ]
7041
+ "required": ["usedFor", "type", "color", "requiresAuth"]
7556
7042
  }
7557
7043
  },
7558
7044
  "Iframe": {
@@ -7612,9 +7098,7 @@
7612
7098
  "@mapping": "shapedb:Iframe.ByjUzAYyS"
7613
7099
  }
7614
7100
  },
7615
- "required": [
7616
- "url"
7617
- ]
7101
+ "required": ["url"]
7618
7102
  }
7619
7103
  },
7620
7104
  "VipLevel": {
@@ -7650,10 +7134,7 @@
7650
7134
  }
7651
7135
  }
7652
7136
  },
7653
- "required": [
7654
- "name",
7655
- "badge"
7656
- ]
7137
+ "required": ["name", "badge"]
7657
7138
  }
7658
7139
  },
7659
7140
  "App": {
@@ -7820,9 +7301,7 @@
7820
7301
  "@mapping": "shapedb:AppCampaignBonusConfigs.jj0VCOTN4"
7821
7302
  }
7822
7303
  },
7823
- "required": [
7824
- "campaignId"
7825
- ]
7304
+ "required": ["campaignId"]
7826
7305
  }
7827
7306
  },
7828
7307
  "Event": {
@@ -7842,9 +7321,7 @@
7842
7321
  "@mapping": "shapedb:Event.ZztrhCeCR"
7843
7322
  }
7844
7323
  },
7845
- "required": [
7846
- "name"
7847
- ]
7324
+ "required": ["name"]
7848
7325
  }
7849
7326
  },
7850
7327
  "DocumentUploadList": {
@@ -7908,9 +7385,7 @@
7908
7385
  }
7909
7386
  }
7910
7387
  },
7911
- "required": [
7912
- "usedFor"
7913
- ]
7388
+ "required": ["usedFor"]
7914
7389
  }
7915
7390
  },
7916
7391
  "PageMetadata": {
@@ -8032,9 +7507,7 @@
8032
7507
  }
8033
7508
  }
8034
7509
  },
8035
- "required": [
8036
- "usedFor"
8037
- ]
7510
+ "required": ["usedFor"]
8038
7511
  }
8039
7512
  },
8040
7513
  "SelfExclusionForm": {
@@ -8119,50 +7592,34 @@
8119
7592
  "oneOf": [
8120
7593
  {
8121
7594
  "title": "Primary",
8122
- "enum": [
8123
- "primary"
8124
- ]
7595
+ "enum": ["primary"]
8125
7596
  },
8126
7597
  {
8127
7598
  "title": "Accent",
8128
- "enum": [
8129
- "accent"
8130
- ]
7599
+ "enum": ["accent"]
8131
7600
  },
8132
7601
  {
8133
7602
  "title": "Warn",
8134
- "enum": [
8135
- "warn"
8136
- ]
7603
+ "enum": ["warn"]
8137
7604
  },
8138
7605
  {
8139
7606
  "title": "Primary Outline",
8140
- "enum": [
8141
- "primary-outline"
8142
- ]
7607
+ "enum": ["primary-outline"]
8143
7608
  },
8144
7609
  {
8145
7610
  "title": "Accent Outline",
8146
- "enum": [
8147
- "accent-outline"
8148
- ]
7611
+ "enum": ["accent-outline"]
8149
7612
  },
8150
7613
  {
8151
7614
  "title": "Warn Outline",
8152
- "enum": [
8153
- "warn-outline"
8154
- ]
7615
+ "enum": ["warn-outline"]
8155
7616
  }
8156
7617
  ],
8157
7618
  "minLength": 1,
8158
7619
  "@mapping": "shapedb:SelfExclusionForm.TgPLkDuqu"
8159
7620
  }
8160
7621
  },
8161
- "required": [
8162
- "usedFor",
8163
- "successUrl",
8164
- "submitColor"
8165
- ]
7622
+ "required": ["usedFor", "successUrl", "submitColor"]
8166
7623
  }
8167
7624
  },
8168
7625
  "FontSettings": {
@@ -8288,21 +7745,15 @@
8288
7745
  "oneOf": [
8289
7746
  {
8290
7747
  "title": "Visible for all users",
8291
- "enum": [
8292
- "any"
8293
- ]
7748
+ "enum": ["any"]
8294
7749
  },
8295
7750
  {
8296
7751
  "title": "Visible for logged in users only",
8297
- "enum": [
8298
- "true"
8299
- ]
7752
+ "enum": ["true"]
8300
7753
  },
8301
7754
  {
8302
7755
  "title": "Visible for logged out users only",
8303
- "enum": [
8304
- "false"
8305
- ]
7756
+ "enum": ["false"]
8306
7757
  }
8307
7758
  ],
8308
7759
  "minLength": 1,
@@ -8756,21 +8207,15 @@
8756
8207
  "oneOf": [
8757
8208
  {
8758
8209
  "title": "Static",
8759
- "enum": [
8760
- "static"
8761
- ]
8210
+ "enum": ["static"]
8762
8211
  },
8763
8212
  {
8764
8213
  "title": "Fixed Top",
8765
- "enum": [
8766
- "fixed-top"
8767
- ]
8214
+ "enum": ["fixed-top"]
8768
8215
  },
8769
8216
  {
8770
8217
  "title": "Fixed Bottom",
8771
- "enum": [
8772
- "fixed-bottom"
8773
- ]
8218
+ "enum": ["fixed-bottom"]
8774
8219
  }
8775
8220
  ],
8776
8221
  "minLength": 1,
@@ -8791,11 +8236,7 @@
8791
8236
  "@mapping": "shapedb:Header.KXk11TV2S"
8792
8237
  }
8793
8238
  },
8794
- "required": [
8795
- "usedFor",
8796
- "position",
8797
- "requiresAuth"
8798
- ]
8239
+ "required": ["usedFor", "position", "requiresAuth"]
8799
8240
  }
8800
8241
  },
8801
8242
  "HeaderDevices": {
@@ -8812,9 +8253,7 @@
8812
8253
  "@mapping": "shapedb:HeaderDevices.qaaOY-Aks"
8813
8254
  }
8814
8255
  },
8815
- "required": [
8816
- "value"
8817
- ]
8256
+ "required": ["value"]
8818
8257
  }
8819
8258
  },
8820
8259
  "HeaderJurisdictions": {
@@ -8831,9 +8270,7 @@
8831
8270
  "@mapping": "shapedb:HeaderJurisdictions.a35HCLS8T"
8832
8271
  }
8833
8272
  },
8834
- "required": [
8835
- "value"
8836
- ]
8273
+ "required": ["value"]
8837
8274
  }
8838
8275
  },
8839
8276
  "ForgotPasswordForm": {
@@ -8950,49 +8387,34 @@
8950
8387
  "oneOf": [
8951
8388
  {
8952
8389
  "title": "Primary",
8953
- "enum": [
8954
- "primary"
8955
- ]
8390
+ "enum": ["primary"]
8956
8391
  },
8957
8392
  {
8958
8393
  "title": "Accent",
8959
- "enum": [
8960
- "accent"
8961
- ]
8394
+ "enum": ["accent"]
8962
8395
  },
8963
8396
  {
8964
8397
  "title": "Warn",
8965
- "enum": [
8966
- "warn"
8967
- ]
8398
+ "enum": ["warn"]
8968
8399
  },
8969
8400
  {
8970
8401
  "title": "Primary Outline",
8971
- "enum": [
8972
- "primary-outline"
8973
- ]
8402
+ "enum": ["primary-outline"]
8974
8403
  },
8975
8404
  {
8976
8405
  "title": "Accent Outline",
8977
- "enum": [
8978
- "accent-outline"
8979
- ]
8406
+ "enum": ["accent-outline"]
8980
8407
  },
8981
8408
  {
8982
8409
  "title": "Warn Outline",
8983
- "enum": [
8984
- "warnOutline"
8985
- ]
8410
+ "enum": ["warnOutline"]
8986
8411
  }
8987
8412
  ],
8988
8413
  "minLength": 1,
8989
8414
  "@mapping": "shapedb:ForgotPasswordForm.ZkNXejMl-"
8990
8415
  }
8991
8416
  },
8992
- "required": [
8993
- "usedFor",
8994
- "submitColor"
8995
- ]
8417
+ "required": ["usedFor", "submitColor"]
8996
8418
  }
8997
8419
  },
8998
8420
  "PaymentProcess": {
@@ -9055,15 +8477,11 @@
9055
8477
  "oneOf": [
9056
8478
  {
9057
8479
  "title": "Deposit",
9058
- "enum": [
9059
- "DEPOSIT"
9060
- ]
8480
+ "enum": ["DEPOSIT"]
9061
8481
  },
9062
8482
  {
9063
8483
  "title": "Withdrawal",
9064
- "enum": [
9065
- "WITHDRAWAL"
9066
- ]
8484
+ "enum": ["WITHDRAWAL"]
9067
8485
  }
9068
8486
  ],
9069
8487
  "minLength": 1,
@@ -9097,49 +8515,34 @@
9097
8515
  "oneOf": [
9098
8516
  {
9099
8517
  "title": "Primary",
9100
- "enum": [
9101
- "primary"
9102
- ]
8518
+ "enum": ["primary"]
9103
8519
  },
9104
8520
  {
9105
8521
  "title": "Accent",
9106
- "enum": [
9107
- "accent"
9108
- ]
8522
+ "enum": ["accent"]
9109
8523
  },
9110
8524
  {
9111
8525
  "title": "Warn",
9112
- "enum": [
9113
- "warn"
9114
- ]
8526
+ "enum": ["warn"]
9115
8527
  },
9116
8528
  {
9117
8529
  "title": "Primary Outline",
9118
- "enum": [
9119
- "primary-outline"
9120
- ]
8530
+ "enum": ["primary-outline"]
9121
8531
  },
9122
8532
  {
9123
8533
  "title": "Accent Outline",
9124
- "enum": [
9125
- "accent-outline"
9126
- ]
8534
+ "enum": ["accent-outline"]
9127
8535
  },
9128
8536
  {
9129
8537
  "title": "Warn Outline",
9130
- "enum": [
9131
- "warn-outline"
9132
- ]
8538
+ "enum": ["warn-outline"]
9133
8539
  }
9134
8540
  ],
9135
8541
  "minLength": 1,
9136
8542
  "@mapping": "shapedb:PaymentProcess.7BWKzmccW"
9137
8543
  }
9138
8544
  },
9139
- "required": [
9140
- "type",
9141
- "submitColor"
9142
- ]
8545
+ "required": ["type", "submitColor"]
9143
8546
  }
9144
8547
  },
9145
8548
  "Page": {
@@ -9158,21 +8561,15 @@
9158
8561
  "oneOf": [
9159
8562
  {
9160
8563
  "title": "Visible for all users",
9161
- "enum": [
9162
- "any"
9163
- ]
8564
+ "enum": ["any"]
9164
8565
  },
9165
8566
  {
9166
8567
  "title": "Visible for logged in users only",
9167
- "enum": [
9168
- "true"
9169
- ]
8568
+ "enum": ["true"]
9170
8569
  },
9171
8570
  {
9172
8571
  "title": "Visible for logged out users only",
9173
- "enum": [
9174
- "false"
9175
- ]
8572
+ "enum": ["false"]
9176
8573
  }
9177
8574
  ],
9178
8575
  "minLength": 1,
@@ -9439,10 +8836,7 @@
9439
8836
  "@mapping": "shapedb:Page.z_iwDRjhG"
9440
8837
  }
9441
8838
  },
9442
- "required": [
9443
- "title",
9444
- "requiresAuth"
9445
- ]
8839
+ "required": ["title", "requiresAuth"]
9446
8840
  }
9447
8841
  },
9448
8842
  "ResetPasswordForm": {
@@ -9527,49 +8921,34 @@
9527
8921
  "oneOf": [
9528
8922
  {
9529
8923
  "title": "Primary",
9530
- "enum": [
9531
- "primary"
9532
- ]
8924
+ "enum": ["primary"]
9533
8925
  },
9534
8926
  {
9535
8927
  "title": "Accent",
9536
- "enum": [
9537
- "accent"
9538
- ]
8928
+ "enum": ["accent"]
9539
8929
  },
9540
8930
  {
9541
8931
  "title": "Warn",
9542
- "enum": [
9543
- "warn"
9544
- ]
8932
+ "enum": ["warn"]
9545
8933
  },
9546
8934
  {
9547
8935
  "title": "Primary Outline",
9548
- "enum": [
9549
- "primary-outline"
9550
- ]
8936
+ "enum": ["primary-outline"]
9551
8937
  },
9552
8938
  {
9553
8939
  "title": "Accent Outline",
9554
- "enum": [
9555
- "accent-outline"
9556
- ]
8940
+ "enum": ["accent-outline"]
9557
8941
  },
9558
8942
  {
9559
8943
  "title": "Warn Outline",
9560
- "enum": [
9561
- "warn-outline"
9562
- ]
8944
+ "enum": ["warn-outline"]
9563
8945
  }
9564
8946
  ],
9565
8947
  "minLength": 1,
9566
8948
  "@mapping": "shapedb:ResetPasswordForm.5PqvihUxQ"
9567
8949
  }
9568
8950
  },
9569
- "required": [
9570
- "usedFor",
9571
- "submitColor"
9572
- ]
8951
+ "required": ["usedFor", "submitColor"]
9573
8952
  }
9574
8953
  },
9575
8954
  "NewTermsForm": {
@@ -9661,50 +9040,34 @@
9661
9040
  "oneOf": [
9662
9041
  {
9663
9042
  "title": "Primary",
9664
- "enum": [
9665
- "primary"
9666
- ]
9043
+ "enum": ["primary"]
9667
9044
  },
9668
9045
  {
9669
9046
  "title": "Accent",
9670
- "enum": [
9671
- "accent"
9672
- ]
9047
+ "enum": ["accent"]
9673
9048
  },
9674
9049
  {
9675
9050
  "title": "Warn",
9676
- "enum": [
9677
- "warn"
9678
- ]
9051
+ "enum": ["warn"]
9679
9052
  },
9680
9053
  {
9681
9054
  "title": "Primary Outline",
9682
- "enum": [
9683
- "primary-outline"
9684
- ]
9055
+ "enum": ["primary-outline"]
9685
9056
  },
9686
9057
  {
9687
9058
  "title": "Accent Outline",
9688
- "enum": [
9689
- "accent-outline"
9690
- ]
9059
+ "enum": ["accent-outline"]
9691
9060
  },
9692
9061
  {
9693
9062
  "title": "Warn Outline",
9694
- "enum": [
9695
- "warn-outline"
9696
- ]
9063
+ "enum": ["warn-outline"]
9697
9064
  }
9698
9065
  ],
9699
9066
  "minLength": 1,
9700
9067
  "@mapping": "shapedb:NewTermsForm.B9waO0lCw"
9701
9068
  }
9702
9069
  },
9703
- "required": [
9704
- "usedFor",
9705
- "termsAndConditions",
9706
- "submitColor"
9707
- ]
9070
+ "required": ["usedFor", "termsAndConditions", "submitColor"]
9708
9071
  }
9709
9072
  },
9710
9073
  "MetaTag": {
@@ -9730,10 +9093,7 @@
9730
9093
  "@tag": "draftjs"
9731
9094
  }
9732
9095
  },
9733
- "required": [
9734
- "usedFor",
9735
- "attributes"
9736
- ]
9096
+ "required": ["usedFor", "attributes"]
9737
9097
  }
9738
9098
  },
9739
9099
  "AppTheme": {
@@ -9757,15 +9117,11 @@
9757
9117
  "oneOf": [
9758
9118
  {
9759
9119
  "title": "Light",
9760
- "enum": [
9761
- "light-theme"
9762
- ]
9120
+ "enum": ["light-theme"]
9763
9121
  },
9764
9122
  {
9765
9123
  "title": "Dark",
9766
- "enum": [
9767
- "dark-theme"
9768
- ]
9124
+ "enum": ["dark-theme"]
9769
9125
  }
9770
9126
  ],
9771
9127
  "minLength": 1,
@@ -9782,21 +9138,15 @@
9782
9138
  "oneOf": [
9783
9139
  {
9784
9140
  "title": "Standard",
9785
- "enum": [
9786
- "standard"
9787
- ]
9141
+ "enum": ["standard"]
9788
9142
  },
9789
9143
  {
9790
9144
  "title": "Fill",
9791
- "enum": [
9792
- "fill"
9793
- ]
9145
+ "enum": ["fill"]
9794
9146
  },
9795
9147
  {
9796
9148
  "title": "Outline",
9797
- "enum": [
9798
- "outline"
9799
- ]
9149
+ "enum": ["outline"]
9800
9150
  }
9801
9151
  ],
9802
9152
  "minLength": 1,
@@ -9902,11 +9252,7 @@
9902
9252
  }
9903
9253
  }
9904
9254
  },
9905
- "required": [
9906
- "primary",
9907
- "accent",
9908
- "backgroundForeground"
9909
- ]
9255
+ "required": ["primary", "accent", "backgroundForeground"]
9910
9256
  }
9911
9257
  },
9912
9258
  "AppThemeHeadingStyle": {
@@ -9928,31 +9274,22 @@
9928
9274
  "oneOf": [
9929
9275
  {
9930
9276
  "title": "None",
9931
- "enum": [
9932
- "none"
9933
- ]
9277
+ "enum": ["none"]
9934
9278
  },
9935
9279
  {
9936
9280
  "title": "Capitalize",
9937
- "enum": [
9938
- "capitalize"
9939
- ]
9281
+ "enum": ["capitalize"]
9940
9282
  },
9941
9283
  {
9942
9284
  "title": "Uppercase",
9943
- "enum": [
9944
- "uppercase"
9945
- ]
9285
+ "enum": ["uppercase"]
9946
9286
  }
9947
9287
  ],
9948
9288
  "minLength": 1,
9949
9289
  "@mapping": "shapedb:AppThemeHeadingStyle.BJmanplZS"
9950
9290
  }
9951
9291
  },
9952
- "required": [
9953
- "color",
9954
- "textTransform"
9955
- ]
9292
+ "required": ["color", "textTransform"]
9956
9293
  }
9957
9294
  },
9958
9295
  "AppThemeButtonStyle": {
@@ -9968,15 +9305,11 @@
9968
9305
  "oneOf": [
9969
9306
  {
9970
9307
  "title": "Square",
9971
- "enum": [
9972
- "square"
9973
- ]
9308
+ "enum": ["square"]
9974
9309
  },
9975
9310
  {
9976
9311
  "title": "Round",
9977
- "enum": [
9978
- "round"
9979
- ]
9312
+ "enum": ["round"]
9980
9313
  }
9981
9314
  ],
9982
9315
  "minLength": 1,
@@ -9988,31 +9321,22 @@
9988
9321
  "oneOf": [
9989
9322
  {
9990
9323
  "title": "None",
9991
- "enum": [
9992
- "none"
9993
- ]
9324
+ "enum": ["none"]
9994
9325
  },
9995
9326
  {
9996
9327
  "title": "Capitalize",
9997
- "enum": [
9998
- "capitalize"
9999
- ]
9328
+ "enum": ["capitalize"]
10000
9329
  },
10001
9330
  {
10002
9331
  "title": "Uppercase",
10003
- "enum": [
10004
- "uppercase"
10005
- ]
9332
+ "enum": ["uppercase"]
10006
9333
  }
10007
9334
  ],
10008
9335
  "minLength": 1,
10009
9336
  "@mapping": "shapedb:AppThemeButtonStyle.r1ctTxTeH"
10010
9337
  }
10011
9338
  },
10012
- "required": [
10013
- "shape",
10014
- "textTransform"
10015
- ]
9339
+ "required": ["shape", "textTransform"]
10016
9340
  }
10017
9341
  },
10018
9342
  "AppThemeDarkTheme": {
@@ -10071,11 +9395,7 @@
10071
9395
  }
10072
9396
  }
10073
9397
  },
10074
- "required": [
10075
- "primary",
10076
- "accent",
10077
- "backgroundForeground"
10078
- ]
9398
+ "required": ["primary", "accent", "backgroundForeground"]
10079
9399
  }
10080
9400
  },
10081
9401
  "AppThemeTabStyle": {
@@ -10103,32 +9423,22 @@
10103
9423
  "oneOf": [
10104
9424
  {
10105
9425
  "title": "None",
10106
- "enum": [
10107
- "none"
10108
- ]
9426
+ "enum": ["none"]
10109
9427
  },
10110
9428
  {
10111
9429
  "title": "Capitalize",
10112
- "enum": [
10113
- "capitalize"
10114
- ]
9430
+ "enum": ["capitalize"]
10115
9431
  },
10116
9432
  {
10117
9433
  "title": "Uppercase",
10118
- "enum": [
10119
- "uppercase"
10120
- ]
9434
+ "enum": ["uppercase"]
10121
9435
  }
10122
9436
  ],
10123
9437
  "minLength": 1,
10124
9438
  "@mapping": "shapedb:AppThemeTabStyle.S1PBw_EWB"
10125
9439
  }
10126
9440
  },
10127
- "required": [
10128
- "color",
10129
- "activeColor",
10130
- "textTransform"
10131
- ]
9441
+ "required": ["color", "activeColor", "textTransform"]
10132
9442
  }
10133
9443
  },
10134
9444
  "CasinoGameThumb": {
@@ -10357,99 +9667,67 @@
10357
9667
  "oneOf": [
10358
9668
  {
10359
9669
  "title": "Normal",
10360
- "enum": [
10361
- "normal"
10362
- ]
9670
+ "enum": ["normal"]
10363
9671
  },
10364
9672
  {
10365
9673
  "title": "Multiply",
10366
- "enum": [
10367
- "multiply"
10368
- ]
9674
+ "enum": ["multiply"]
10369
9675
  },
10370
9676
  {
10371
9677
  "title": "Screen",
10372
- "enum": [
10373
- "screen"
10374
- ]
9678
+ "enum": ["screen"]
10375
9679
  },
10376
9680
  {
10377
9681
  "title": "Overlay",
10378
- "enum": [
10379
- "overlay"
10380
- ]
9682
+ "enum": ["overlay"]
10381
9683
  },
10382
9684
  {
10383
9685
  "title": "Darken",
10384
- "enum": [
10385
- "darken"
10386
- ]
9686
+ "enum": ["darken"]
10387
9687
  },
10388
9688
  {
10389
9689
  "title": "Lighten",
10390
- "enum": [
10391
- "lighten"
10392
- ]
9690
+ "enum": ["lighten"]
10393
9691
  },
10394
9692
  {
10395
9693
  "title": "Color Dodge",
10396
- "enum": [
10397
- "color-dodge"
10398
- ]
9694
+ "enum": ["color-dodge"]
10399
9695
  },
10400
9696
  {
10401
9697
  "title": "Color Burn",
10402
- "enum": [
10403
- "color-burn"
10404
- ]
9698
+ "enum": ["color-burn"]
10405
9699
  },
10406
9700
  {
10407
9701
  "title": "Hard Light",
10408
- "enum": [
10409
- "hard-light"
10410
- ]
9702
+ "enum": ["hard-light"]
10411
9703
  },
10412
9704
  {
10413
9705
  "title": "Soft Light",
10414
- "enum": [
10415
- "soft-light"
10416
- ]
9706
+ "enum": ["soft-light"]
10417
9707
  },
10418
9708
  {
10419
9709
  "title": "Difference",
10420
- "enum": [
10421
- "difference"
10422
- ]
9710
+ "enum": ["difference"]
10423
9711
  },
10424
9712
  {
10425
9713
  "title": "Exclusion",
10426
- "enum": [
10427
- "exclusion"
10428
- ]
9714
+ "enum": ["exclusion"]
10429
9715
  },
10430
9716
  {
10431
9717
  "title": "Hue",
10432
- "enum": [
10433
- "hue"
10434
- ]
9718
+ "enum": ["hue"]
10435
9719
  },
10436
9720
  {
10437
9721
  "title": "Saturation",
10438
- "enum": [
10439
- "saturation"
10440
- ]
9722
+ "enum": ["saturation"]
10441
9723
  },
10442
9724
  {
10443
9725
  "title": "Color",
10444
- "enum": [
10445
- "color"
10446
- ]
9726
+ "enum": ["color"]
10447
9727
  },
10448
9728
  {
10449
9729
  "title": "Luminosity",
10450
- "enum": [
10451
- "luminosity"
10452
- ]
9730
+ "enum": ["luminosity"]
10453
9731
  }
10454
9732
  ],
10455
9733
  "@mapping": "shapedb:Asset.HJcAjXfgr"
@@ -10519,10 +9797,7 @@
10519
9797
  "@mapping": "shapedb:Asset.Sy-PBmjgr"
10520
9798
  }
10521
9799
  },
10522
- "required": [
10523
- "filename",
10524
- "path"
10525
- ]
9800
+ "required": ["filename", "path"]
10526
9801
  }
10527
9802
  },
10528
9803
  "Ribbon": {
@@ -10639,15 +9914,11 @@
10639
9914
  "oneOf": [
10640
9915
  {
10641
9916
  "title": "Fullpage",
10642
- "enum": [
10643
- "fullpage"
10644
- ]
9917
+ "enum": ["fullpage"]
10645
9918
  },
10646
9919
  {
10647
9920
  "title": "Normal",
10648
- "enum": [
10649
- "normal"
10650
- ]
9921
+ "enum": ["normal"]
10651
9922
  }
10652
9923
  ],
10653
9924
  "@mapping": "shapedb:Banner.wxJKzE_8_"
@@ -10736,9 +10007,7 @@
10736
10007
  }
10737
10008
  }
10738
10009
  },
10739
- "required": [
10740
- "title"
10741
- ]
10010
+ "required": ["title"]
10742
10011
  }
10743
10012
  },
10744
10013
  "NavListItem": {
@@ -10757,21 +10026,15 @@
10757
10026
  "oneOf": [
10758
10027
  {
10759
10028
  "title": "Visible for all users",
10760
- "enum": [
10761
- "any"
10762
- ]
10029
+ "enum": ["any"]
10763
10030
  },
10764
10031
  {
10765
10032
  "title": "Visible for logged in users only",
10766
- "enum": [
10767
- "true"
10768
- ]
10033
+ "enum": ["true"]
10769
10034
  },
10770
10035
  {
10771
10036
  "title": "Visible for logged out users only",
10772
- "enum": [
10773
- "false"
10774
- ]
10037
+ "enum": ["false"]
10775
10038
  }
10776
10039
  ],
10777
10040
  "minLength": 1,
@@ -10920,10 +10183,7 @@
10920
10183
  "@mapping": "shapedb:NavListItem.SyUhIZMgS"
10921
10184
  }
10922
10185
  },
10923
- "required": [
10924
- "usedFor",
10925
- "requiresAuth"
10926
- ]
10186
+ "required": ["usedFor", "requiresAuth"]
10927
10187
  }
10928
10188
  },
10929
10189
  "CasinoGameDetails": {
@@ -11023,10 +10283,7 @@
11023
10283
  "@tag": "draftjs"
11024
10284
  }
11025
10285
  },
11026
- "required": [
11027
- "usedFor",
11028
- "defaultDescription"
11029
- ]
10286
+ "required": ["usedFor", "defaultDescription"]
11030
10287
  }
11031
10288
  },
11032
10289
  "Overlay": {
@@ -11279,21 +10536,15 @@
11279
10536
  "oneOf": [
11280
10537
  {
11281
10538
  "title": "Center",
11282
- "enum": [
11283
- "centerHorizontally"
11284
- ]
10539
+ "enum": ["centerHorizontally"]
11285
10540
  },
11286
10541
  {
11287
10542
  "title": "Left",
11288
- "enum": [
11289
- "left"
11290
- ]
10543
+ "enum": ["left"]
11291
10544
  },
11292
10545
  {
11293
10546
  "title": "Right",
11294
- "enum": [
11295
- "right"
11296
- ]
10547
+ "enum": ["right"]
11297
10548
  }
11298
10549
  ],
11299
10550
  "@mapping": "shapedb:Overlay.FIDA7VRdT"
@@ -11310,21 +10561,15 @@
11310
10561
  "oneOf": [
11311
10562
  {
11312
10563
  "title": "Center",
11313
- "enum": [
11314
- "centerVertically"
11315
- ]
10564
+ "enum": ["centerVertically"]
11316
10565
  },
11317
10566
  {
11318
10567
  "title": "Top",
11319
- "enum": [
11320
- "top"
11321
- ]
10568
+ "enum": ["top"]
11322
10569
  },
11323
10570
  {
11324
10571
  "title": "Bottom",
11325
- "enum": [
11326
- "bottom"
11327
- ]
10572
+ "enum": ["bottom"]
11328
10573
  }
11329
10574
  ],
11330
10575
  "@mapping": "shapedb:Overlay.UfxedkrpS"
@@ -11354,27 +10599,19 @@
11354
10599
  "oneOf": [
11355
10600
  {
11356
10601
  "title": "Block",
11357
- "enum": [
11358
- "block"
11359
- ]
10602
+ "enum": ["block"]
11360
10603
  },
11361
10604
  {
11362
10605
  "title": "Close",
11363
- "enum": [
11364
- "close"
11365
- ]
10606
+ "enum": ["close"]
11366
10607
  },
11367
10608
  {
11368
10609
  "title": "Do nothing",
11369
- "enum": [
11370
- "noop"
11371
- ]
10610
+ "enum": ["noop"]
11372
10611
  },
11373
10612
  {
11374
10613
  "title": "Reposition",
11375
- "enum": [
11376
- "reposition"
11377
- ]
10614
+ "enum": ["reposition"]
11378
10615
  }
11379
10616
  ],
11380
10617
  "@mapping": "shapedb:Overlay.GpgVagXfF"
@@ -11472,10 +10709,7 @@
11472
10709
  "@mapping": "shapedb:Breakpoint.SJeLB6Fyr"
11473
10710
  }
11474
10711
  },
11475
- "required": [
11476
- "value",
11477
- "name"
11478
- ]
10712
+ "required": ["value", "name"]
11479
10713
  }
11480
10714
  },
11481
10715
  "GameProvider": {
@@ -11514,9 +10748,7 @@
11514
10748
  "@mapping": "shapedb:TextAlignment.HJ4NTaKkS"
11515
10749
  }
11516
10750
  },
11517
- "required": [
11518
- "value"
11519
- ]
10751
+ "required": ["value"]
11520
10752
  }
11521
10753
  },
11522
10754
  "Image": {
@@ -11680,10 +10912,7 @@
11680
10912
  "@mapping": "shapedb:Image.UxSL-iVNS"
11681
10913
  }
11682
10914
  },
11683
- "required": [
11684
- "usedFor",
11685
- "asset"
11686
- ]
10915
+ "required": ["usedFor", "asset"]
11687
10916
  }
11688
10917
  },
11689
10918
  "Game": {
@@ -11958,10 +11187,7 @@
11958
11187
  }
11959
11188
  }
11960
11189
  },
11961
- "required": [
11962
- "name",
11963
- "slug"
11964
- ]
11190
+ "required": ["name", "slug"]
11965
11191
  }
11966
11192
  },
11967
11193
  "GameJurisdictions": {
@@ -11978,9 +11204,7 @@
11978
11204
  "@mapping": "shapedb:GameJurisdictions.3Mb0m7Rpl"
11979
11205
  }
11980
11206
  },
11981
- "required": [
11982
- "value"
11983
- ]
11207
+ "required": ["value"]
11984
11208
  }
11985
11209
  },
11986
11210
  "GameDevices": {
@@ -11997,9 +11221,7 @@
11997
11221
  "@mapping": "shapedb:GameDevices.HYCmh5-mb"
11998
11222
  }
11999
11223
  },
12000
- "required": [
12001
- "value"
12002
- ]
11224
+ "required": ["value"]
12003
11225
  }
12004
11226
  },
12005
11227
  "PayAndPlay": {
@@ -12046,39 +11268,27 @@
12046
11268
  "oneOf": [
12047
11269
  {
12048
11270
  "title": "Primary",
12049
- "enum": [
12050
- "primary"
12051
- ]
11271
+ "enum": ["primary"]
12052
11272
  },
12053
11273
  {
12054
11274
  "title": "Accent",
12055
- "enum": [
12056
- "accent"
12057
- ]
11275
+ "enum": ["accent"]
12058
11276
  },
12059
11277
  {
12060
11278
  "title": "Warn",
12061
- "enum": [
12062
- "warn"
12063
- ]
11279
+ "enum": ["warn"]
12064
11280
  },
12065
11281
  {
12066
11282
  "title": "Primary Outline",
12067
- "enum": [
12068
- "primary-outline"
12069
- ]
11283
+ "enum": ["primary-outline"]
12070
11284
  },
12071
11285
  {
12072
11286
  "title": "Accent Outline",
12073
- "enum": [
12074
- "accent-outline"
12075
- ]
11287
+ "enum": ["accent-outline"]
12076
11288
  },
12077
11289
  {
12078
11290
  "title": "Warn Outline",
12079
- "enum": [
12080
- "warn-outline"
12081
- ]
11291
+ "enum": ["warn-outline"]
12082
11292
  }
12083
11293
  ],
12084
11294
  "@mapping": "shapedb:PayAndPlay.DW-xupwV_"
@@ -12127,49 +11337,34 @@
12127
11337
  "oneOf": [
12128
11338
  {
12129
11339
  "title": "Primary",
12130
- "enum": [
12131
- "primary"
12132
- ]
11340
+ "enum": ["primary"]
12133
11341
  },
12134
11342
  {
12135
11343
  "title": "Accent",
12136
- "enum": [
12137
- "accent"
12138
- ]
11344
+ "enum": ["accent"]
12139
11345
  },
12140
11346
  {
12141
11347
  "title": "Warn",
12142
- "enum": [
12143
- "warn"
12144
- ]
11348
+ "enum": ["warn"]
12145
11349
  },
12146
11350
  {
12147
11351
  "title": "Primary Outline",
12148
- "enum": [
12149
- "primary-outline"
12150
- ]
11352
+ "enum": ["primary-outline"]
12151
11353
  },
12152
11354
  {
12153
11355
  "title": "Accent Outline",
12154
- "enum": [
12155
- "accent-outline"
12156
- ]
11356
+ "enum": ["accent-outline"]
12157
11357
  },
12158
11358
  {
12159
11359
  "title": "Warn Outline",
12160
- "enum": [
12161
- "warn-outline"
12162
- ]
11360
+ "enum": ["warn-outline"]
12163
11361
  }
12164
11362
  ],
12165
11363
  "minLength": 1,
12166
11364
  "@mapping": "shapedb:PayAndPlay.3GZTsBl1M"
12167
11365
  }
12168
11366
  },
12169
- "required": [
12170
- "usedFor",
12171
- "submitColor"
12172
- ]
11367
+ "required": ["usedFor", "submitColor"]
12173
11368
  }
12174
11369
  },
12175
11370
  "GameSessionSearch": {
@@ -12238,49 +11433,34 @@
12238
11433
  "oneOf": [
12239
11434
  {
12240
11435
  "title": "Primary",
12241
- "enum": [
12242
- "primary"
12243
- ]
11436
+ "enum": ["primary"]
12244
11437
  },
12245
11438
  {
12246
11439
  "title": "Accent",
12247
- "enum": [
12248
- "accent"
12249
- ]
11440
+ "enum": ["accent"]
12250
11441
  },
12251
11442
  {
12252
11443
  "title": "Warn",
12253
- "enum": [
12254
- "warn"
12255
- ]
11444
+ "enum": ["warn"]
12256
11445
  },
12257
11446
  {
12258
11447
  "title": "Primary Outline",
12259
- "enum": [
12260
- "primary-outline"
12261
- ]
11448
+ "enum": ["primary-outline"]
12262
11449
  },
12263
11450
  {
12264
11451
  "title": "Accent Outline",
12265
- "enum": [
12266
- "accent-outline"
12267
- ]
11452
+ "enum": ["accent-outline"]
12268
11453
  },
12269
11454
  {
12270
11455
  "title": "Warn Outline",
12271
- "enum": [
12272
- "warn-outline"
12273
- ]
11456
+ "enum": ["warn-outline"]
12274
11457
  }
12275
11458
  ],
12276
11459
  "minLength": 1,
12277
11460
  "@mapping": "shapedb:GameSessionSearch.SzX0h7nda"
12278
11461
  }
12279
11462
  },
12280
- "required": [
12281
- "usedFor",
12282
- "submitColor"
12283
- ]
11463
+ "required": ["usedFor", "submitColor"]
12284
11464
  }
12285
11465
  },
12286
11466
  "TransactionSearch": {
@@ -12349,47 +11529,33 @@
12349
11529
  "oneOf": [
12350
11530
  {
12351
11531
  "title": "Primary",
12352
- "enum": [
12353
- "primary"
12354
- ]
11532
+ "enum": ["primary"]
12355
11533
  },
12356
11534
  {
12357
11535
  "title": "Accent",
12358
- "enum": [
12359
- "accent"
12360
- ]
11536
+ "enum": ["accent"]
12361
11537
  },
12362
11538
  {
12363
11539
  "title": "Warn",
12364
- "enum": [
12365
- "warn"
12366
- ]
11540
+ "enum": ["warn"]
12367
11541
  },
12368
11542
  {
12369
11543
  "title": "Primary Outline",
12370
- "enum": [
12371
- "primary-outline"
12372
- ]
11544
+ "enum": ["primary-outline"]
12373
11545
  },
12374
11546
  {
12375
11547
  "title": "Accent Outline",
12376
- "enum": [
12377
- "accent-outline"
12378
- ]
11548
+ "enum": ["accent-outline"]
12379
11549
  },
12380
11550
  {
12381
11551
  "title": "Warn Outline",
12382
- "enum": [
12383
- "warn-outline"
12384
- ]
11552
+ "enum": ["warn-outline"]
12385
11553
  }
12386
11554
  ],
12387
11555
  "@mapping": "shapedb:TransactionSearch.C2kKz4GA-"
12388
11556
  }
12389
11557
  },
12390
- "required": [
12391
- "usedFor"
12392
- ]
11558
+ "required": ["usedFor"]
12393
11559
  }
12394
11560
  },
12395
11561
  "Footer": {
@@ -12652,9 +11818,7 @@
12652
11818
  "@mapping": "shapedb:Footer.OzFhx2PK5"
12653
11819
  }
12654
11820
  },
12655
- "required": [
12656
- "usedFor"
12657
- ]
11821
+ "required": ["usedFor"]
12658
11822
  }
12659
11823
  },
12660
11824
  "FooterDevices": {
@@ -12671,9 +11835,7 @@
12671
11835
  "@mapping": "shapedb:FooterDevices.5-RQCi8M8"
12672
11836
  }
12673
11837
  },
12674
- "required": [
12675
- "value"
12676
- ]
11838
+ "required": ["value"]
12677
11839
  }
12678
11840
  },
12679
11841
  "FooterJurisdictions": {
@@ -12690,9 +11852,7 @@
12690
11852
  "@mapping": "shapedb:FooterJurisdictions.Hvddxfl-n"
12691
11853
  }
12692
11854
  },
12693
- "required": [
12694
- "value"
12695
- ]
11855
+ "required": ["value"]
12696
11856
  }
12697
11857
  },
12698
11858
  "CommunicationDetailsForm": {
@@ -12768,49 +11928,34 @@
12768
11928
  "oneOf": [
12769
11929
  {
12770
11930
  "title": "Primary",
12771
- "enum": [
12772
- "primary"
12773
- ]
11931
+ "enum": ["primary"]
12774
11932
  },
12775
11933
  {
12776
11934
  "title": "Accent",
12777
- "enum": [
12778
- "accent"
12779
- ]
11935
+ "enum": ["accent"]
12780
11936
  },
12781
11937
  {
12782
11938
  "title": "Warn",
12783
- "enum": [
12784
- "warn"
12785
- ]
11939
+ "enum": ["warn"]
12786
11940
  },
12787
11941
  {
12788
11942
  "title": "Primary Outline",
12789
- "enum": [
12790
- "primary-outline"
12791
- ]
11943
+ "enum": ["primary-outline"]
12792
11944
  },
12793
11945
  {
12794
11946
  "title": "Accent Outline",
12795
- "enum": [
12796
- "accent-outline"
12797
- ]
11947
+ "enum": ["accent-outline"]
12798
11948
  },
12799
11949
  {
12800
11950
  "title": "Warn Outline",
12801
- "enum": [
12802
- "warn-outline"
12803
- ]
11951
+ "enum": ["warn-outline"]
12804
11952
  }
12805
11953
  ],
12806
11954
  "minLength": 1,
12807
11955
  "@mapping": "shapedb:CommunicationDetailsForm.L3hpQ4qg5"
12808
11956
  }
12809
11957
  },
12810
- "required": [
12811
- "usedFor",
12812
- "submitColor"
12813
- ]
11958
+ "required": ["usedFor", "submitColor"]
12814
11959
  }
12815
11960
  },
12816
11961
  "BackgroundForeground": {
@@ -12840,11 +11985,7 @@
12840
11985
  "$ref": "#/shapes/BackgroundForegroundForeground/schema"
12841
11986
  }
12842
11987
  },
12843
- "required": [
12844
- "usedFor",
12845
- "background",
12846
- "foreground"
12847
- ]
11988
+ "required": ["usedFor", "background", "foreground"]
12848
11989
  }
12849
11990
  },
12850
11991
  "BackgroundForegroundBackground": {
@@ -13138,21 +12279,15 @@
13138
12279
  "oneOf": [
13139
12280
  {
13140
12281
  "title": "Activated",
13141
- "enum": [
13142
- "ACTIVATED"
13143
- ]
12282
+ "enum": ["ACTIVATED"]
13144
12283
  },
13145
12284
  {
13146
12285
  "title": "Available",
13147
- "enum": [
13148
- "AVAILABLE"
13149
- ]
12286
+ "enum": ["AVAILABLE"]
13150
12287
  },
13151
12288
  {
13152
12289
  "title": "Canceled",
13153
- "enum": [
13154
- "CANCELED"
13155
- ]
12290
+ "enum": ["CANCELED"]
13156
12291
  }
13157
12292
  ],
13158
12293
  "@mapping": "shapedb:BonusList.By2DiCYkS"
@@ -13202,10 +12337,7 @@
13202
12337
  "@tag": "draftjs"
13203
12338
  }
13204
12339
  },
13205
- "required": [
13206
- "usedFor",
13207
- "termsAndConditions"
13208
- ]
12340
+ "required": ["usedFor", "termsAndConditions"]
13209
12341
  }
13210
12342
  },
13211
12343
  "Carousel": {
@@ -13301,9 +12433,7 @@
13301
12433
  }
13302
12434
  }
13303
12435
  },
13304
- "required": [
13305
- "usedFor"
13306
- ]
12436
+ "required": ["usedFor"]
13307
12437
  }
13308
12438
  },
13309
12439
  "ScriptTag": {
@@ -13344,11 +12474,7 @@
13344
12474
  "@tag": "draftjs"
13345
12475
  }
13346
12476
  },
13347
- "required": [
13348
- "usedFor",
13349
- "attributes",
13350
- "contents"
13351
- ]
12477
+ "required": ["usedFor", "attributes", "contents"]
13352
12478
  }
13353
12479
  }
13354
12480
  },
@@ -13368,11 +12494,7 @@
13368
12494
  "widget": "relationship"
13369
12495
  }
13370
12496
  },
13371
- "order": [
13372
- "usedFor",
13373
- "classes",
13374
- "breakpoints"
13375
- ]
12497
+ "order": ["usedFor", "classes", "breakpoints"]
13376
12498
  }
13377
12499
  },
13378
12500
  "ProfileForm": {
@@ -13393,12 +12515,7 @@
13393
12515
  "widget": "dropdown"
13394
12516
  }
13395
12517
  },
13396
- "order": [
13397
- "usedFor",
13398
- "classes",
13399
- "breakpoints",
13400
- "submitColor"
13401
- ]
12518
+ "order": ["usedFor", "classes", "breakpoints", "submitColor"]
13402
12519
  }
13403
12520
  },
13404
12521
  "BonusEntity": {
@@ -13423,14 +12540,7 @@
13423
12540
  "widget": "relationship"
13424
12541
  }
13425
12542
  },
13426
- "order": [
13427
- "usedFor",
13428
- "bonusId",
13429
- "title",
13430
- "description",
13431
- "termsConditions",
13432
- "image"
13433
- ]
12543
+ "order": ["usedFor", "bonusId", "title", "description", "termsConditions", "image"]
13434
12544
  }
13435
12545
  },
13436
12546
  "LoginProviderTags": {
@@ -13441,9 +12551,7 @@
13441
12551
  }
13442
12552
  },
13443
12553
  "widget": "repeater",
13444
- "order": [
13445
- "value"
13446
- ]
12554
+ "order": ["value"]
13447
12555
  }
13448
12556
  },
13449
12557
  "LoginProvider": {
@@ -13462,12 +12570,7 @@
13462
12570
  "widget": "shapeArray"
13463
12571
  }
13464
12572
  },
13465
- "order": [
13466
- "usedFor",
13467
- "locale",
13468
- "providers",
13469
- "tags"
13470
- ]
12573
+ "order": ["usedFor", "locale", "providers", "tags"]
13471
12574
  }
13472
12575
  },
13473
12576
  "RedirectionDevices": {
@@ -13478,9 +12581,7 @@
13478
12581
  }
13479
12582
  },
13480
12583
  "widget": "repeater",
13481
- "order": [
13482
- "value"
13483
- ]
12584
+ "order": ["value"]
13484
12585
  }
13485
12586
  },
13486
12587
  "Redirection": {
@@ -13502,13 +12603,7 @@
13502
12603
  "widget": "shapeArray"
13503
12604
  }
13504
12605
  },
13505
- "order": [
13506
- "path",
13507
- "outlet",
13508
- "redirectTo",
13509
- "jurisdictions",
13510
- "devices"
13511
- ]
12606
+ "order": ["path", "outlet", "redirectTo", "jurisdictions", "devices"]
13512
12607
  }
13513
12608
  },
13514
12609
  "RedirectionJurisdictions": {
@@ -13519,9 +12614,7 @@
13519
12614
  }
13520
12615
  },
13521
12616
  "widget": "repeater",
13522
- "order": [
13523
- "value"
13524
- ]
12617
+ "order": ["value"]
13525
12618
  }
13526
12619
  },
13527
12620
  "StyleTag": {
@@ -13537,11 +12630,7 @@
13537
12630
  "widget": "wysiwygText"
13538
12631
  }
13539
12632
  },
13540
- "order": [
13541
- "usedFor",
13542
- "attributes",
13543
- "contents"
13544
- ]
12633
+ "order": ["usedFor", "attributes", "contents"]
13545
12634
  }
13546
12635
  },
13547
12636
  "Copy": {
@@ -13763,10 +12852,7 @@
13763
12852
  "widget": "wysiwygText"
13764
12853
  }
13765
12854
  },
13766
- "order": [
13767
- "usedFor",
13768
- "content"
13769
- ]
12855
+ "order": ["usedFor", "content"]
13770
12856
  }
13771
12857
  },
13772
12858
  "ComponentCollection": {
@@ -13779,10 +12865,7 @@
13779
12865
  "widget": "relationship"
13780
12866
  }
13781
12867
  },
13782
- "order": [
13783
- "usedFor",
13784
- "components"
13785
- ]
12868
+ "order": ["usedFor", "components"]
13786
12869
  }
13787
12870
  },
13788
12871
  "ResponsiveTableHeaderColumn": {
@@ -13793,9 +12876,7 @@
13793
12876
  }
13794
12877
  },
13795
12878
  "widget": "repeater",
13796
- "order": [
13797
- "content"
13798
- ]
12879
+ "order": ["content"]
13799
12880
  }
13800
12881
  },
13801
12882
  "ResponsiveTable": {
@@ -13811,11 +12892,7 @@
13811
12892
  "widget": "shapeArray"
13812
12893
  }
13813
12894
  },
13814
- "order": [
13815
- "usedFor",
13816
- "headerColumn",
13817
- "row"
13818
- ]
12895
+ "order": ["usedFor", "headerColumn", "row"]
13819
12896
  }
13820
12897
  },
13821
12898
  "ResponsiveTableRow": {
@@ -13826,9 +12903,7 @@
13826
12903
  }
13827
12904
  },
13828
12905
  "widget": "repeater",
13829
- "order": [
13830
- "column"
13831
- ]
12906
+ "order": ["column"]
13832
12907
  }
13833
12908
  },
13834
12909
  "ResponsiveTableRowColumn": {
@@ -13842,10 +12917,7 @@
13842
12917
  }
13843
12918
  },
13844
12919
  "widget": "repeater",
13845
- "order": [
13846
- "width",
13847
- "content"
13848
- ]
12920
+ "order": ["width", "content"]
13849
12921
  }
13850
12922
  },
13851
12923
  "NavList": {
@@ -13909,11 +12981,7 @@
13909
12981
  "widget": "relationship"
13910
12982
  }
13911
12983
  },
13912
- "order": [
13913
- "usedFor",
13914
- "breakpoints",
13915
- "classes"
13916
- ]
12984
+ "order": ["usedFor", "breakpoints", "classes"]
13917
12985
  }
13918
12986
  },
13919
12987
  "Activate": {
@@ -13938,14 +13006,7 @@
13938
13006
  "widget": "dropdown"
13939
13007
  }
13940
13008
  },
13941
- "order": [
13942
- "usedFor",
13943
- "breakpoints",
13944
- "classes",
13945
- "successUrl",
13946
- "type",
13947
- "submitColor"
13948
- ]
13009
+ "order": ["usedFor", "breakpoints", "classes", "successUrl", "type", "submitColor"]
13949
13010
  }
13950
13011
  },
13951
13012
  "Alignment": {
@@ -13955,9 +13016,7 @@
13955
13016
  "widget": "singleLineText"
13956
13017
  }
13957
13018
  },
13958
- "order": [
13959
- "value"
13960
- ]
13019
+ "order": ["value"]
13961
13020
  }
13962
13021
  },
13963
13022
  "ColorPaletteContrastColors": {
@@ -14038,11 +13097,7 @@
14038
13097
  "widget": "shapeObject"
14039
13098
  }
14040
13099
  },
14041
- "order": [
14042
- "usedFor",
14043
- "colors",
14044
- "contrastColors"
14045
- ]
13100
+ "order": ["usedFor", "colors", "contrastColors"]
14046
13101
  }
14047
13102
  },
14048
13103
  "ColorPaletteColors": {
@@ -14118,9 +13173,7 @@
14118
13173
  }
14119
13174
  },
14120
13175
  "widget": "repeater",
14121
- "order": [
14122
- "gridArea"
14123
- ]
13176
+ "order": ["gridArea"]
14124
13177
  }
14125
13178
  },
14126
13179
  "GridLayout": {
@@ -14183,9 +13236,7 @@
14183
13236
  }
14184
13237
  },
14185
13238
  "widget": "repeater",
14186
- "order": [
14187
- "value"
14188
- ]
13239
+ "order": ["value"]
14189
13240
  }
14190
13241
  },
14191
13242
  "PaymentMethod": {
@@ -14258,15 +13309,7 @@
14258
13309
  "widget": "dropdown"
14259
13310
  }
14260
13311
  },
14261
- "order": [
14262
- "usedFor",
14263
- "classes",
14264
- "breakpoints",
14265
- "responsiveTransforms",
14266
- "type",
14267
- "transformer",
14268
- "limit"
14269
- ]
13312
+ "order": ["usedFor", "classes", "breakpoints", "responsiveTransforms", "type", "transformer", "limit"]
14270
13313
  }
14271
13314
  },
14272
13315
  "LanguageSelectorFlags": {
@@ -14277,9 +13320,7 @@
14277
13320
  }
14278
13321
  },
14279
13322
  "widget": "repeater",
14280
- "order": [
14281
- "flag"
14282
- ]
13323
+ "order": ["flag"]
14283
13324
  }
14284
13325
  },
14285
13326
  "LanguageSelector": {
@@ -14304,14 +13345,7 @@
14304
13345
  "widget": "relationship"
14305
13346
  }
14306
13347
  },
14307
- "order": [
14308
- "usedFor",
14309
- "color",
14310
- "classes",
14311
- "breakpoints",
14312
- "minWidth",
14313
- "flags"
14314
- ]
13348
+ "order": ["usedFor", "color", "classes", "breakpoints", "minWidth", "flags"]
14315
13349
  }
14316
13350
  },
14317
13351
  "LanguageSelectorFlagsFlag": {
@@ -14325,10 +13359,7 @@
14325
13359
  }
14326
13360
  },
14327
13361
  "widget": "object",
14328
- "order": [
14329
- "locale",
14330
- "image"
14331
- ]
13362
+ "order": ["locale", "image"]
14332
13363
  }
14333
13364
  },
14334
13365
  "GridListTiles": {
@@ -14345,11 +13376,7 @@
14345
13376
  }
14346
13377
  },
14347
13378
  "widget": "repeater",
14348
- "order": [
14349
- "classes",
14350
- "cols",
14351
- "rows"
14352
- ]
13379
+ "order": ["classes", "cols", "rows"]
14353
13380
  }
14354
13381
  },
14355
13382
  "GridList": {
@@ -14416,9 +13443,7 @@
14416
13443
  }
14417
13444
  },
14418
13445
  "widget": "repeater",
14419
- "order": [
14420
- "value"
14421
- ]
13446
+ "order": ["value"]
14422
13447
  }
14423
13448
  },
14424
13449
  "CasinoGameSearch": {
@@ -14440,13 +13465,7 @@
14440
13465
  "widget": "relationship"
14441
13466
  }
14442
13467
  },
14443
- "order": [
14444
- "usedFor",
14445
- "classes",
14446
- "breakpoints",
14447
- "maxResults",
14448
- "suffixedResults"
14449
- ]
13468
+ "order": ["usedFor", "classes", "breakpoints", "maxResults", "suffixedResults"]
14450
13469
  }
14451
13470
  },
14452
13471
  "Html": {
@@ -14467,12 +13486,7 @@
14467
13486
  "widget": "relationship"
14468
13487
  }
14469
13488
  },
14470
- "order": [
14471
- "usedFor",
14472
- "classes",
14473
- "breakpoints",
14474
- "content"
14475
- ]
13489
+ "order": ["usedFor", "classes", "breakpoints", "content"]
14476
13490
  }
14477
13491
  },
14478
13492
  "Video": {
@@ -14491,12 +13505,7 @@
14491
13505
  "widget": "relationship"
14492
13506
  }
14493
13507
  },
14494
- "order": [
14495
- "usedFor",
14496
- "breakpoints",
14497
- "classes",
14498
- "asset"
14499
- ]
13508
+ "order": ["usedFor", "breakpoints", "classes", "asset"]
14500
13509
  }
14501
13510
  },
14502
13511
  "RouteDevices": {
@@ -14507,9 +13516,7 @@
14507
13516
  }
14508
13517
  },
14509
13518
  "widget": "repeater",
14510
- "order": [
14511
- "value"
14512
- ]
13519
+ "order": ["value"]
14513
13520
  }
14514
13521
  },
14515
13522
  "Route": {
@@ -14534,14 +13541,7 @@
14534
13541
  "widget": "shapeArray"
14535
13542
  }
14536
13543
  },
14537
- "order": [
14538
- "usedFor",
14539
- "name",
14540
- "path",
14541
- "component",
14542
- "jurisdictions",
14543
- "devices"
14544
- ]
13544
+ "order": ["usedFor", "name", "path", "component", "jurisdictions", "devices"]
14545
13545
  }
14546
13546
  },
14547
13547
  "RouteJurisdictions": {
@@ -14552,9 +13552,7 @@
14552
13552
  }
14553
13553
  },
14554
13554
  "widget": "repeater",
14555
- "order": [
14556
- "value"
14557
- ]
13555
+ "order": ["value"]
14558
13556
  }
14559
13557
  },
14560
13558
  "SetLimitForm": {
@@ -14585,16 +13583,7 @@
14585
13583
  "widget": "dropdown"
14586
13584
  }
14587
13585
  },
14588
- "order": [
14589
- "usedFor",
14590
- "breakpoints",
14591
- "classes",
14592
- "type",
14593
- "isSeparated",
14594
- "enableSkip",
14595
- "submitColor",
14596
- "skipColor"
14597
- ]
13586
+ "order": ["usedFor", "breakpoints", "classes", "type", "isSeparated", "enableSkip", "submitColor", "skipColor"]
14598
13587
  }
14599
13588
  },
14600
13589
  "AchievementProgressBarBadges": {
@@ -14608,10 +13597,7 @@
14608
13597
  }
14609
13598
  },
14610
13599
  "widget": "repeater",
14611
- "order": [
14612
- "name",
14613
- "asset"
14614
- ]
13600
+ "order": ["name", "asset"]
14615
13601
  }
14616
13602
  },
14617
13603
  "AchievementProgressBar": {
@@ -14639,15 +13625,7 @@
14639
13625
  "widget": "checkbox"
14640
13626
  }
14641
13627
  },
14642
- "order": [
14643
- "usedFor",
14644
- "classes",
14645
- "breakpoints",
14646
- "showIcon",
14647
- "showProgress",
14648
- "width",
14649
- "badges"
14650
- ]
13628
+ "order": ["usedFor", "classes", "breakpoints", "showIcon", "showProgress", "width", "badges"]
14651
13629
  }
14652
13630
  },
14653
13631
  "Jurisdiction": {
@@ -14657,9 +13635,7 @@
14657
13635
  "widget": "singleLineText"
14658
13636
  }
14659
13637
  },
14660
- "order": [
14661
- "value"
14662
- ]
13638
+ "order": ["value"]
14663
13639
  }
14664
13640
  },
14665
13641
  "LoginForm": {
@@ -14719,10 +13695,7 @@
14719
13695
  "widget": "singleLineText"
14720
13696
  }
14721
13697
  },
14722
- "order": [
14723
- "asset",
14724
- "slug"
14725
- ]
13698
+ "order": ["asset", "slug"]
14726
13699
  }
14727
13700
  },
14728
13701
  "Tab": {
@@ -14789,14 +13762,7 @@
14789
13762
  }
14790
13763
  },
14791
13764
  "widget": "repeater",
14792
- "order": [
14793
- "breakpoints",
14794
- "components",
14795
- "grow",
14796
- "shrink",
14797
- "size",
14798
- "classes"
14799
- ]
13765
+ "order": ["breakpoints", "components", "grow", "shrink", "size", "classes"]
14800
13766
  }
14801
13767
  },
14802
13768
  "Layout": {
@@ -14861,9 +13827,7 @@
14861
13827
  }
14862
13828
  },
14863
13829
  "widget": "repeater",
14864
- "order": [
14865
- "value"
14866
- ]
13830
+ "order": ["value"]
14867
13831
  }
14868
13832
  },
14869
13833
  "PlaceholderTemplate": {
@@ -14958,9 +13922,7 @@
14958
13922
  }
14959
13923
  },
14960
13924
  "widget": "repeater",
14961
- "order": [
14962
- "value"
14963
- ]
13925
+ "order": ["value"]
14964
13926
  }
14965
13927
  },
14966
13928
  "VipBenefitLevels": {
@@ -14977,11 +13939,7 @@
14977
13939
  }
14978
13940
  },
14979
13941
  "widget": "repeater",
14980
- "order": [
14981
- "level",
14982
- "hasValue",
14983
- "value"
14984
- ]
13942
+ "order": ["level", "hasValue", "value"]
14985
13943
  }
14986
13944
  },
14987
13945
  "VipBenefit": {
@@ -15000,12 +13958,7 @@
15000
13958
  "widget": "shapeArray"
15001
13959
  }
15002
13960
  },
15003
- "order": [
15004
- "name",
15005
- "benefit",
15006
- "icon",
15007
- "levels"
15008
- ]
13961
+ "order": ["name", "benefit", "icon", "levels"]
15009
13962
  }
15010
13963
  },
15011
13964
  "ImageCard": {
@@ -15067,11 +14020,7 @@
15067
14020
  "widget": "singleLineText"
15068
14021
  }
15069
14022
  },
15070
- "order": [
15071
- "source",
15072
- "target",
15073
- "markForDelete"
15074
- ]
14023
+ "order": ["source", "target", "markForDelete"]
15075
14024
  }
15076
14025
  },
15077
14026
  "SessionTimer": {
@@ -15087,11 +14036,7 @@
15087
14036
  "widget": "relationship"
15088
14037
  }
15089
14038
  },
15090
- "order": [
15091
- "usedFor",
15092
- "breakpoints",
15093
- "classes"
15094
- ]
14039
+ "order": ["usedFor", "breakpoints", "classes"]
15095
14040
  }
15096
14041
  },
15097
14042
  "RegistrationForm": {
@@ -15115,13 +14060,7 @@
15115
14060
  "widget": "dropdown"
15116
14061
  }
15117
14062
  },
15118
- "order": [
15119
- "usedFor",
15120
- "classes",
15121
- "breakpoints",
15122
- "successUrl",
15123
- "submitColor"
15124
- ]
14063
+ "order": ["usedFor", "classes", "breakpoints", "successUrl", "submitColor"]
15125
14064
  }
15126
14065
  },
15127
14066
  "ActionDevices": {
@@ -15132,9 +14071,7 @@
15132
14071
  }
15133
14072
  },
15134
14073
  "widget": "repeater",
15135
- "order": [
15136
- "value"
15137
- ]
14074
+ "order": ["value"]
15138
14075
  }
15139
14076
  },
15140
14077
  "Action": {
@@ -15153,12 +14090,7 @@
15153
14090
  "widget": "shapeArray"
15154
14091
  }
15155
14092
  },
15156
- "order": [
15157
- "value",
15158
- "overlay",
15159
- "jurisdictions",
15160
- "devices"
15161
- ]
14093
+ "order": ["value", "overlay", "jurisdictions", "devices"]
15162
14094
  }
15163
14095
  },
15164
14096
  "ActionJurisdictions": {
@@ -15169,9 +14101,7 @@
15169
14101
  }
15170
14102
  },
15171
14103
  "widget": "repeater",
15172
- "order": [
15173
- "value"
15174
- ]
14104
+ "order": ["value"]
15175
14105
  }
15176
14106
  },
15177
14107
  "GameType": {
@@ -15184,10 +14114,7 @@
15184
14114
  "widget": "singleLineText"
15185
14115
  }
15186
14116
  },
15187
- "order": [
15188
- "value",
15189
- "text"
15190
- ]
14117
+ "order": ["value", "text"]
15191
14118
  }
15192
14119
  },
15193
14120
  "Accordion": {
@@ -15215,14 +14142,7 @@
15215
14142
  "widget": "checkbox"
15216
14143
  }
15217
14144
  },
15218
- "order": [
15219
- "usedFor",
15220
- "breakpoints",
15221
- "classes",
15222
- "multi",
15223
- "panels",
15224
- "responsiveTransforms"
15225
- ]
14145
+ "order": ["usedFor", "breakpoints", "classes", "multi", "panels", "responsiveTransforms"]
15226
14146
  }
15227
14147
  },
15228
14148
  "PendingWithdrawals": {
@@ -15244,13 +14164,7 @@
15244
14164
  "widget": "dropdown"
15245
14165
  }
15246
14166
  },
15247
- "order": [
15248
- "usedFor",
15249
- "type",
15250
- "classes",
15251
- "breakpoints",
15252
- "submitColor"
15253
- ]
14167
+ "order": ["usedFor", "type", "classes", "breakpoints", "submitColor"]
15254
14168
  }
15255
14169
  },
15256
14170
  "SidebarDevices": {
@@ -15261,9 +14175,7 @@
15261
14175
  }
15262
14176
  },
15263
14177
  "widget": "repeater",
15264
- "order": [
15265
- "value"
15266
- ]
14178
+ "order": ["value"]
15267
14179
  }
15268
14180
  },
15269
14181
  "Sidebar": {
@@ -15320,9 +14232,7 @@
15320
14232
  }
15321
14233
  },
15322
14234
  "widget": "repeater",
15323
- "order": [
15324
- "value"
15325
- ]
14235
+ "order": ["value"]
15326
14236
  }
15327
14237
  },
15328
14238
  "PaymentSearch": {
@@ -15341,12 +14251,7 @@
15341
14251
  "widget": "dropdown"
15342
14252
  }
15343
14253
  },
15344
- "order": [
15345
- "usedFor",
15346
- "classes",
15347
- "breakpoints",
15348
- "submitColor"
15349
- ]
14254
+ "order": ["usedFor", "classes", "breakpoints", "submitColor"]
15350
14255
  }
15351
14256
  },
15352
14257
  "LinkTag": {
@@ -15361,10 +14266,7 @@
15361
14266
  "widget": "wysiwygText"
15362
14267
  }
15363
14268
  },
15364
- "order": [
15365
- "usedFor",
15366
- "attributes"
15367
- ]
14269
+ "order": ["usedFor", "attributes"]
15368
14270
  }
15369
14271
  },
15370
14272
  "CssClass": {
@@ -15377,10 +14279,7 @@
15377
14279
  "widget": "singleLineText"
15378
14280
  }
15379
14281
  },
15380
- "order": [
15381
- "value",
15382
- "name"
15383
- ]
14282
+ "order": ["value", "name"]
15384
14283
  }
15385
14284
  },
15386
14285
  "GameFeature": {
@@ -15393,10 +14292,7 @@
15393
14292
  "widget": "singleLineText"
15394
14293
  }
15395
14294
  },
15396
- "order": [
15397
- "value",
15398
- "text"
15399
- ]
14295
+ "order": ["value", "text"]
15400
14296
  }
15401
14297
  },
15402
14298
  "ResponsiveTransform": {
@@ -15414,11 +14310,7 @@
15414
14310
  "widget": "relationship"
15415
14311
  }
15416
14312
  },
15417
- "order": [
15418
- "usedFor",
15419
- "breakpoints",
15420
- "transforms"
15421
- ]
14313
+ "order": ["usedFor", "breakpoints", "transforms"]
15422
14314
  }
15423
14315
  },
15424
14316
  "ChangePasswordForm": {
@@ -15439,12 +14331,7 @@
15439
14331
  "widget": "dropdown"
15440
14332
  }
15441
14333
  },
15442
- "order": [
15443
- "usedFor",
15444
- "classes",
15445
- "breakpoints",
15446
- "submitColor"
15447
- ]
14334
+ "order": ["usedFor", "classes", "breakpoints", "submitColor"]
15448
14335
  }
15449
14336
  },
15450
14337
  "ExpansionPanel": {
@@ -15472,15 +14359,7 @@
15472
14359
  "widget": "wysiwygText"
15473
14360
  }
15474
14361
  },
15475
- "order": [
15476
- "usedFor",
15477
- "classes",
15478
- "breakpoints",
15479
- "responsiveTransforms",
15480
- "header",
15481
- "content",
15482
- "components"
15483
- ]
14362
+ "order": ["usedFor", "classes", "breakpoints", "responsiveTransforms", "header", "content", "components"]
15484
14363
  }
15485
14364
  },
15486
14365
  "Card": {
@@ -15617,13 +14496,7 @@
15617
14496
  "widget": "singleLineText"
15618
14497
  }
15619
14498
  },
15620
- "order": [
15621
- "usedFor",
15622
- "width",
15623
- "height",
15624
- "url",
15625
- "breakpoints"
15626
- ]
14499
+ "order": ["usedFor", "width", "height", "url", "breakpoints"]
15627
14500
  }
15628
14501
  },
15629
14502
  "VipLevel": {
@@ -15636,10 +14509,7 @@
15636
14509
  "widget": "image"
15637
14510
  }
15638
14511
  },
15639
- "order": [
15640
- "name",
15641
- "badge"
15642
- ]
14512
+ "order": ["name", "badge"]
15643
14513
  }
15644
14514
  },
15645
14515
  "AppCampaignBonusConfigs": {
@@ -15653,10 +14523,7 @@
15653
14523
  }
15654
14524
  },
15655
14525
  "widget": "repeater",
15656
- "order": [
15657
- "campaignId",
15658
- "bonusId"
15659
- ]
14526
+ "order": ["campaignId", "bonusId"]
15660
14527
  }
15661
14528
  },
15662
14529
  "App": {
@@ -15710,9 +14577,7 @@
15710
14577
  "widget": "singleLineText"
15711
14578
  }
15712
14579
  },
15713
- "order": [
15714
- "name"
15715
- ]
14580
+ "order": ["name"]
15716
14581
  }
15717
14582
  },
15718
14583
  "DocumentUploadList": {
@@ -15730,11 +14595,7 @@
15730
14595
  "widget": "relationship"
15731
14596
  }
15732
14597
  },
15733
- "order": [
15734
- "usedFor",
15735
- "classes",
15736
- "breakpoints"
15737
- ]
14598
+ "order": ["usedFor", "classes", "breakpoints"]
15738
14599
  }
15739
14600
  },
15740
14601
  "PageMetadata": {
@@ -15762,15 +14623,7 @@
15762
14623
  "widget": "relationship"
15763
14624
  }
15764
14625
  },
15765
- "order": [
15766
- "usedFor",
15767
- "url",
15768
- "title",
15769
- "metaTags",
15770
- "linkTags",
15771
- "scriptTags",
15772
- "styleTags"
15773
- ]
14626
+ "order": ["usedFor", "url", "title", "metaTags", "linkTags", "scriptTags", "styleTags"]
15774
14627
  }
15775
14628
  },
15776
14629
  "SelfExclusionForm": {
@@ -15794,13 +14647,7 @@
15794
14647
  "widget": "dropdown"
15795
14648
  }
15796
14649
  },
15797
- "order": [
15798
- "usedFor",
15799
- "breakpoints",
15800
- "classes",
15801
- "successUrl",
15802
- "submitColor"
15803
- ]
14650
+ "order": ["usedFor", "breakpoints", "classes", "successUrl", "submitColor"]
15804
14651
  }
15805
14652
  },
15806
14653
  "FontSettings": {
@@ -15871,9 +14718,7 @@
15871
14718
  }
15872
14719
  },
15873
14720
  "widget": "repeater",
15874
- "order": [
15875
- "value"
15876
- ]
14721
+ "order": ["value"]
15877
14722
  }
15878
14723
  },
15879
14724
  "Header": {
@@ -15954,9 +14799,7 @@
15954
14799
  }
15955
14800
  },
15956
14801
  "widget": "repeater",
15957
- "order": [
15958
- "value"
15959
- ]
14802
+ "order": ["value"]
15960
14803
  }
15961
14804
  },
15962
14805
  "ForgotPasswordForm": {
@@ -16021,14 +14864,7 @@
16021
14864
  "widget": "dropdown"
16022
14865
  }
16023
14866
  },
16024
- "order": [
16025
- "usedFor",
16026
- "breakpoints",
16027
- "type",
16028
- "classes",
16029
- "submitColor",
16030
- "successComponent"
16031
- ]
14867
+ "order": ["usedFor", "breakpoints", "type", "classes", "submitColor", "successComponent"]
16032
14868
  }
16033
14869
  },
16034
14870
  "Page": {
@@ -16105,13 +14941,7 @@
16105
14941
  "widget": "dropdown"
16106
14942
  }
16107
14943
  },
16108
- "order": [
16109
- "usedFor",
16110
- "breakpoints",
16111
- "classes",
16112
- "successUrl",
16113
- "submitColor"
16114
- ]
14944
+ "order": ["usedFor", "breakpoints", "classes", "successUrl", "submitColor"]
16115
14945
  }
16116
14946
  },
16117
14947
  "NewTermsForm": {
@@ -16133,13 +14963,7 @@
16133
14963
  "widget": "dropdown"
16134
14964
  }
16135
14965
  },
16136
- "order": [
16137
- "usedFor",
16138
- "classes",
16139
- "responsiveTransforms",
16140
- "termsAndConditions",
16141
- "submitColor"
16142
- ]
14966
+ "order": ["usedFor", "classes", "responsiveTransforms", "termsAndConditions", "submitColor"]
16143
14967
  }
16144
14968
  },
16145
14969
  "MetaTag": {
@@ -16154,10 +14978,7 @@
16154
14978
  "widget": "wysiwygText"
16155
14979
  }
16156
14980
  },
16157
- "order": [
16158
- "usedFor",
16159
- "attributes"
16160
- ]
14981
+ "order": ["usedFor", "attributes"]
16161
14982
  }
16162
14983
  },
16163
14984
  "AppThemeLightTheme": {
@@ -16174,11 +14995,7 @@
16174
14995
  }
16175
14996
  },
16176
14997
  "widget": "object",
16177
- "order": [
16178
- "primary",
16179
- "accent",
16180
- "backgroundForeground"
16181
- ]
14998
+ "order": ["primary", "accent", "backgroundForeground"]
16182
14999
  }
16183
15000
  },
16184
15001
  "AppTheme": {
@@ -16233,10 +15050,7 @@
16233
15050
  }
16234
15051
  },
16235
15052
  "widget": "object",
16236
- "order": [
16237
- "color",
16238
- "textTransform"
16239
- ]
15053
+ "order": ["color", "textTransform"]
16240
15054
  }
16241
15055
  },
16242
15056
  "AppThemeButtonStyle": {
@@ -16250,10 +15064,7 @@
16250
15064
  }
16251
15065
  },
16252
15066
  "widget": "object",
16253
- "order": [
16254
- "shape",
16255
- "textTransform"
16256
- ]
15067
+ "order": ["shape", "textTransform"]
16257
15068
  }
16258
15069
  },
16259
15070
  "AppThemeDarkTheme": {
@@ -16270,11 +15081,7 @@
16270
15081
  }
16271
15082
  },
16272
15083
  "widget": "object",
16273
- "order": [
16274
- "primary",
16275
- "accent",
16276
- "backgroundForeground"
16277
- ]
15084
+ "order": ["primary", "accent", "backgroundForeground"]
16278
15085
  }
16279
15086
  },
16280
15087
  "AppThemeTabStyle": {
@@ -16291,11 +15098,7 @@
16291
15098
  }
16292
15099
  },
16293
15100
  "widget": "object",
16294
- "order": [
16295
- "color",
16296
- "activeColor",
16297
- "textTransform"
16298
- ]
15101
+ "order": ["color", "activeColor", "textTransform"]
16299
15102
  }
16300
15103
  },
16301
15104
  "CasinoGameThumb": {
@@ -16436,11 +15239,7 @@
16436
15239
  "widget": "singleLineText"
16437
15240
  }
16438
15241
  },
16439
- "order": [
16440
- "text",
16441
- "color",
16442
- "backgroundColor"
16443
- ]
15242
+ "order": ["text", "color", "backgroundColor"]
16444
15243
  }
16445
15244
  },
16446
15245
  "Banner": {
@@ -16591,14 +15390,7 @@
16591
15390
  "widget": "wysiwygText"
16592
15391
  }
16593
15392
  },
16594
- "order": [
16595
- "usedFor",
16596
- "breakpoints",
16597
- "classes",
16598
- "defaultDescription",
16599
- "responsiveTransforms",
16600
- "slug"
16601
- ]
15393
+ "order": ["usedFor", "breakpoints", "classes", "defaultDescription", "responsiveTransforms", "slug"]
16602
15394
  }
16603
15395
  },
16604
15396
  "Overlay": {
@@ -16703,10 +15495,7 @@
16703
15495
  "widget": "singleLineText"
16704
15496
  }
16705
15497
  },
16706
- "order": [
16707
- "value",
16708
- "name"
16709
- ]
15498
+ "order": ["value", "name"]
16710
15499
  }
16711
15500
  },
16712
15501
  "GameProvider": {
@@ -16716,9 +15505,7 @@
16716
15505
  "widget": "singleLineText"
16717
15506
  }
16718
15507
  },
16719
- "order": [
16720
- "value"
16721
- ]
15508
+ "order": ["value"]
16722
15509
  }
16723
15510
  },
16724
15511
  "TextAlignment": {
@@ -16728,9 +15515,7 @@
16728
15515
  "widget": "singleLineText"
16729
15516
  }
16730
15517
  },
16731
- "order": [
16732
- "value"
16733
- ]
15518
+ "order": ["value"]
16734
15519
  }
16735
15520
  },
16736
15521
  "Image": {
@@ -16805,9 +15590,7 @@
16805
15590
  }
16806
15591
  },
16807
15592
  "widget": "repeater",
16808
- "order": [
16809
- "value"
16810
- ]
15593
+ "order": ["value"]
16811
15594
  }
16812
15595
  },
16813
15596
  "Game": {
@@ -16954,9 +15737,7 @@
16954
15737
  }
16955
15738
  },
16956
15739
  "widget": "repeater",
16957
- "order": [
16958
- "value"
16959
- ]
15740
+ "order": ["value"]
16960
15741
  }
16961
15742
  },
16962
15743
  "PayAndPlay": {
@@ -16981,14 +15762,7 @@
16981
15762
  "widget": "dropdown"
16982
15763
  }
16983
15764
  },
16984
- "order": [
16985
- "usedFor",
16986
- "breakpoints",
16987
- "classes",
16988
- "submitColor",
16989
- "continueColor",
16990
- "providerLogo"
16991
- ]
15765
+ "order": ["usedFor", "breakpoints", "classes", "submitColor", "continueColor", "providerLogo"]
16992
15766
  }
16993
15767
  },
16994
15768
  "GameSessionSearch": {
@@ -17009,12 +15783,7 @@
17009
15783
  "widget": "dropdown"
17010
15784
  }
17011
15785
  },
17012
- "order": [
17013
- "usedFor",
17014
- "classes",
17015
- "breakpoints",
17016
- "submitColor"
17017
- ]
15786
+ "order": ["usedFor", "classes", "breakpoints", "submitColor"]
17018
15787
  }
17019
15788
  },
17020
15789
  "TransactionSearch": {
@@ -17033,12 +15802,7 @@
17033
15802
  "widget": "dropdown"
17034
15803
  }
17035
15804
  },
17036
- "order": [
17037
- "usedFor",
17038
- "breakpoints",
17039
- "classes",
17040
- "submitColor"
17041
- ]
15805
+ "order": ["usedFor", "breakpoints", "classes", "submitColor"]
17042
15806
  }
17043
15807
  },
17044
15808
  "FooterDevices": {
@@ -17049,9 +15813,7 @@
17049
15813
  }
17050
15814
  },
17051
15815
  "widget": "repeater",
17052
- "order": [
17053
- "value"
17054
- ]
15816
+ "order": ["value"]
17055
15817
  }
17056
15818
  },
17057
15819
  "Footer": {
@@ -17104,9 +15866,7 @@
17104
15866
  }
17105
15867
  },
17106
15868
  "widget": "repeater",
17107
- "order": [
17108
- "value"
17109
- ]
15869
+ "order": ["value"]
17110
15870
  }
17111
15871
  },
17112
15872
  "CommunicationDetailsForm": {
@@ -17128,13 +15888,7 @@
17128
15888
  "widget": "dropdown"
17129
15889
  }
17130
15890
  },
17131
- "order": [
17132
- "usedFor",
17133
- "breakpoints",
17134
- "classes",
17135
- "showAcceptTerms",
17136
- "submitColor"
17137
- ]
15891
+ "order": ["usedFor", "breakpoints", "classes", "showAcceptTerms", "submitColor"]
17138
15892
  }
17139
15893
  },
17140
15894
  "BackgroundForegroundBackground": {
@@ -17215,11 +15969,7 @@
17215
15969
  "widget": "shapeObject"
17216
15970
  }
17217
15971
  },
17218
- "order": [
17219
- "usedFor",
17220
- "background",
17221
- "foreground"
17222
- ]
15972
+ "order": ["usedFor", "background", "foreground"]
17223
15973
  }
17224
15974
  },
17225
15975
  "BackgroundForegroundForeground": {
@@ -17328,14 +16078,7 @@
17328
16078
  "widget": "wysiwygText"
17329
16079
  }
17330
16080
  },
17331
- "order": [
17332
- "usedFor",
17333
- "classes",
17334
- "breakpoints",
17335
- "userBonusStatus",
17336
- "termsAndConditions",
17337
- "defaultImage"
17338
- ]
16081
+ "order": ["usedFor", "classes", "breakpoints", "userBonusStatus", "termsAndConditions", "defaultImage"]
17339
16082
  }
17340
16083
  },
17341
16084
  "Carousel": {
@@ -17357,12 +16100,7 @@
17357
16100
  "widget": "relationship"
17358
16101
  }
17359
16102
  },
17360
- "order": [
17361
- "usedFor",
17362
- "breakpoints",
17363
- "classes",
17364
- "components"
17365
- ]
16103
+ "order": ["usedFor", "breakpoints", "classes", "components"]
17366
16104
  }
17367
16105
  },
17368
16106
  "ScriptTag": {
@@ -17384,13 +16122,8 @@
17384
16122
  "widget": "wysiwygText"
17385
16123
  }
17386
16124
  },
17387
- "order": [
17388
- "usedFor",
17389
- "attributes",
17390
- "contents",
17391
- "highPriority"
17392
- ]
16125
+ "order": ["usedFor", "attributes", "contents", "highPriority"]
17393
16126
  }
17394
16127
  }
17395
16128
  }
17396
- }
16129
+ }