@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
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "defaultLocale": "en",
3
- "locales": [
4
- "en"
5
- ],
3
+ "locales": ["en"],
6
4
  "projectId": "427aa129-8807-4e88-ac87-447419838d1b",
7
5
  "$schema": "http://takeshape.io/schemas/project-schema#",
8
6
  "author": "<userId>",
@@ -11,10 +9,7 @@
11
9
  "forms": {
12
10
  "Purpose": {
13
11
  "default": {
14
- "order": [
15
- "name",
16
- "description"
17
- ],
12
+ "order": ["name", "description"],
18
13
  "properties": {
19
14
  "description": {
20
15
  "widget": "paragraphText"
@@ -27,10 +22,7 @@
27
22
  },
28
23
  "MatterType": {
29
24
  "default": {
30
- "order": [
31
- "name",
32
- "description"
33
- ],
25
+ "order": ["name", "description"],
34
26
  "properties": {
35
27
  "description": {
36
28
  "widget": "paragraphText"
@@ -43,11 +35,7 @@
43
35
  },
44
36
  "SolutionRevision2": {
45
37
  "default": {
46
- "order": [
47
- "revisionId",
48
- "tagLine",
49
- "vendor"
50
- ],
38
+ "order": ["revisionId", "tagLine", "vendor"],
51
39
  "properties": {
52
40
  "revisionId": {
53
41
  "instructions": "The format is <productname>-ddmmyyyy-number",
@@ -64,10 +52,7 @@
64
52
  },
65
53
  "SolutionRevision1Collaterals": {
66
54
  "default": {
67
- "order": [
68
- "collateral",
69
- "collateralType"
70
- ],
55
+ "order": ["collateral", "collateralType"],
71
56
  "properties": {
72
57
  "collateral": {
73
58
  "widget": "relationship"
@@ -186,10 +171,7 @@
186
171
  },
187
172
  "SolutionRevision1Customers": {
188
173
  "default": {
189
- "order": [
190
- "name",
191
- "url"
192
- ],
174
+ "order": ["name", "url"],
193
175
  "properties": {
194
176
  "name": {
195
177
  "widget": "singleLineText"
@@ -203,10 +185,7 @@
203
185
  },
204
186
  "SolutionRevision1Features": {
205
187
  "default": {
206
- "order": [
207
- "name",
208
- "description"
209
- ],
188
+ "order": ["name", "description"],
210
189
  "properties": {
211
190
  "description": {
212
191
  "widget": "paragraphText"
@@ -220,10 +199,7 @@
220
199
  },
221
200
  "SolutionRevision1Images": {
222
201
  "default": {
223
- "order": [
224
- "image",
225
- "imageType"
226
- ],
202
+ "order": ["image", "imageType"],
227
203
  "properties": {
228
204
  "image": {
229
205
  "widget": "image"
@@ -237,10 +213,7 @@
237
213
  },
238
214
  "SolutionRevision1InfrastructureRequirements": {
239
215
  "default": {
240
- "order": [
241
- "nodes",
242
- "typicalUsageScenario"
243
- ],
216
+ "order": ["nodes", "typicalUsageScenario"],
244
217
  "properties": {
245
218
  "nodes": {
246
219
  "widget": "shapeArray"
@@ -254,13 +227,7 @@
254
227
  },
255
228
  "SolutionRevision1InfrastructureRequirementsNodes": {
256
229
  "default": {
257
- "order": [
258
- "vcpUs",
259
- "ram",
260
- "storageSpace",
261
- "gpuRequired",
262
- "gpuModel"
263
- ],
230
+ "order": ["vcpUs", "ram", "storageSpace", "gpuRequired", "gpuModel"],
264
231
  "properties": {
265
232
  "gpuModel": {
266
233
  "widget": "singleLineText"
@@ -283,10 +250,7 @@
283
250
  },
284
251
  "SolutionRevision1SaaSBusiness": {
285
252
  "default": {
286
- "order": [
287
- "saaS",
288
- "hosting"
289
- ],
253
+ "order": ["saaS", "hosting"],
290
254
  "properties": {
291
255
  "hosting": {
292
256
  "widget": "checkboxes"
@@ -300,10 +264,7 @@
300
264
  },
301
265
  "SolutionRevision1Tenancy": {
302
266
  "default": {
303
- "order": [
304
- "tenancyType",
305
- "tenancyDescription"
306
- ],
267
+ "order": ["tenancyType", "tenancyDescription"],
307
268
  "properties": {
308
269
  "tenancyDescription": {
309
270
  "widget": "paragraphText"
@@ -317,10 +278,7 @@
317
278
  },
318
279
  "SolutionRevision1Videos": {
319
280
  "default": {
320
- "order": [
321
- "video",
322
- "videoType"
323
- ],
281
+ "order": ["video", "videoType"],
324
282
  "properties": {
325
283
  "video": {
326
284
  "widget": "image"
@@ -334,12 +292,7 @@
334
292
  },
335
293
  "SolutionRevision1WorksWith": {
336
294
  "default": {
337
- "order": [
338
- "worksWithRcApps",
339
- "worksWithExternalApps",
340
- "containerization",
341
- "cspTemplates"
342
- ],
295
+ "order": ["worksWithRcApps", "worksWithExternalApps", "containerization", "cspTemplates"],
343
296
  "properties": {
344
297
  "containerization": {
345
298
  "widget": "shapeObject"
@@ -359,10 +312,7 @@
359
312
  },
360
313
  "SolutionRevision1WorksWithContainerization": {
361
314
  "default": {
362
- "order": [
363
- "containerized",
364
- "containerizationType"
365
- ],
315
+ "order": ["containerized", "containerizationType"],
366
316
  "properties": {
367
317
  "containerizationType": {
368
318
  "widget": "dropdown"
@@ -376,10 +326,7 @@
376
326
  },
377
327
  "SolutionRevision1WorksWithCspTemplates": {
378
328
  "default": {
379
- "order": [
380
- "templatized",
381
- "templateTypes"
382
- ],
329
+ "order": ["templatized", "templateTypes"],
383
330
  "properties": {
384
331
  "templateTypes": {
385
332
  "widget": "checkboxes"
@@ -393,10 +340,7 @@
393
340
  },
394
341
  "SolutionRevision1WorksWithWorksWithExternalApps": {
395
342
  "default": {
396
- "order": [
397
- "externalApp",
398
- "integrationDescription"
399
- ],
343
+ "order": ["externalApp", "integrationDescription"],
400
344
  "properties": {
401
345
  "externalApp": {
402
346
  "widget": "relationship"
@@ -410,10 +354,7 @@
410
354
  },
411
355
  "SolutionRevision1WorksWithWorksWithRcApps": {
412
356
  "default": {
413
- "order": [
414
- "rcApp",
415
- "integrationDescription"
416
- ],
357
+ "order": ["rcApp", "integrationDescription"],
417
358
  "properties": {
418
359
  "integrationDescription": {
419
360
  "widget": "paragraphText"
@@ -427,12 +368,7 @@
427
368
  },
428
369
  "ExternalProduct": {
429
370
  "default": {
430
- "order": [
431
- "name",
432
- "description",
433
- "logo",
434
- "appCategory"
435
- ],
371
+ "order": ["name", "description", "logo", "appCategory"],
436
372
  "properties": {
437
373
  "appCategory": {
438
374
  "widget": "relationship"
@@ -451,10 +387,7 @@
451
387
  },
452
388
  "VideoType": {
453
389
  "default": {
454
- "order": [
455
- "name",
456
- "description"
457
- ],
390
+ "order": ["name", "description"],
458
391
  "properties": {
459
392
  "description": {
460
393
  "widget": "paragraphText"
@@ -467,10 +400,7 @@
467
400
  },
468
401
  "Category": {
469
402
  "default": {
470
- "order": [
471
- "name",
472
- "description"
473
- ],
403
+ "order": ["name", "description"],
474
404
  "properties": {
475
405
  "description": {
476
406
  "widget": "paragraphText"
@@ -483,10 +413,7 @@
483
413
  },
484
414
  "CollateralType": {
485
415
  "default": {
486
- "order": [
487
- "name",
488
- "description"
489
- ],
416
+ "order": ["name", "description"],
490
417
  "properties": {
491
418
  "description": {
492
419
  "widget": "paragraphText"
@@ -499,9 +426,7 @@
499
426
  },
500
427
  "ExternalAppCategory": {
501
428
  "default": {
502
- "order": [
503
- "name"
504
- ],
429
+ "order": ["name"],
505
430
  "properties": {
506
431
  "name": {
507
432
  "widget": "singleLineText"
@@ -511,9 +436,7 @@
511
436
  },
512
437
  "VendorContacts": {
513
438
  "default": {
514
- "order": [
515
- "contactObject"
516
- ],
439
+ "order": ["contactObject"],
517
440
  "properties": {
518
441
  "contactObject": {
519
442
  "widget": "shapeObject"
@@ -564,12 +487,7 @@
564
487
  },
565
488
  "VendorContactsContactObject": {
566
489
  "default": {
567
- "order": [
568
- "name",
569
- "email",
570
- "phone",
571
- "contactType"
572
- ],
490
+ "order": ["name", "email", "phone", "contactType"],
573
491
  "properties": {
574
492
  "contactType": {
575
493
  "widget": "dropdown"
@@ -589,10 +507,7 @@
589
507
  },
590
508
  "VendorGeneralSalesAndEnquiries": {
591
509
  "default": {
592
- "order": [
593
- "phone",
594
- "email"
595
- ],
510
+ "order": ["phone", "email"],
596
511
  "properties": {
597
512
  "email": {
598
513
  "widget": "singleLineText"
@@ -606,15 +521,7 @@
606
521
  },
607
522
  "VendorHq": {
608
523
  "default": {
609
- "order": [
610
- "address1",
611
- "address2",
612
- "state",
613
- "city",
614
- "country",
615
- "zip",
616
- "phone"
617
- ],
524
+ "order": ["address1", "address2", "state", "city", "country", "zip", "phone"],
618
525
  "properties": {
619
526
  "address1": {
620
527
  "widget": "singleLineText"
@@ -643,10 +550,7 @@
643
550
  },
644
551
  "SolutionRevisionCollaterals": {
645
552
  "default": {
646
- "order": [
647
- "collateral",
648
- "collateralType"
649
- ],
553
+ "order": ["collateral", "collateralType"],
650
554
  "properties": {
651
555
  "collateral": {
652
556
  "widget": "image"
@@ -773,10 +677,7 @@
773
677
  },
774
678
  "SolutionRevisionContainerisation": {
775
679
  "default": {
776
- "order": [
777
- "containerised",
778
- "containerisationType"
779
- ],
680
+ "order": ["containerised", "containerisationType"],
780
681
  "properties": {
781
682
  "containerisationType": {
782
683
  "widget": "dropdown"
@@ -790,10 +691,7 @@
790
691
  },
791
692
  "SolutionRevisionCspTemplates": {
792
693
  "default": {
793
- "order": [
794
- "templatized",
795
- "templateTypes"
796
- ],
694
+ "order": ["templatized", "templateTypes"],
797
695
  "properties": {
798
696
  "templateTypes": {
799
697
  "widget": "checkboxes"
@@ -807,10 +705,7 @@
807
705
  },
808
706
  "SolutionRevisionCustomers": {
809
707
  "default": {
810
- "order": [
811
- "name",
812
- "url"
813
- ],
708
+ "order": ["name", "url"],
814
709
  "properties": {
815
710
  "name": {
816
711
  "widget": "singleLineText"
@@ -824,10 +719,7 @@
824
719
  },
825
720
  "SolutionRevisionFeatures": {
826
721
  "default": {
827
- "order": [
828
- "name",
829
- "description"
830
- ],
722
+ "order": ["name", "description"],
831
723
  "properties": {
832
724
  "description": {
833
725
  "widget": "paragraphText"
@@ -841,10 +733,7 @@
841
733
  },
842
734
  "SolutionRevisionImages": {
843
735
  "default": {
844
- "order": [
845
- "image",
846
- "imageType"
847
- ],
736
+ "order": ["image", "imageType"],
848
737
  "properties": {
849
738
  "image": {
850
739
  "widget": "image"
@@ -858,10 +747,7 @@
858
747
  },
859
748
  "SolutionRevisionInfrastructureRequirements": {
860
749
  "default": {
861
- "order": [
862
- "nodes",
863
- "typicalUsageScenario"
864
- ],
750
+ "order": ["nodes", "typicalUsageScenario"],
865
751
  "properties": {
866
752
  "nodes": {
867
753
  "widget": "shapeArray"
@@ -875,13 +761,7 @@
875
761
  },
876
762
  "SolutionRevisionInfrastructureRequirementsNodes": {
877
763
  "default": {
878
- "order": [
879
- "vcpUs",
880
- "ram",
881
- "storageSpace",
882
- "gpuRequired",
883
- "gpuModel"
884
- ],
764
+ "order": ["vcpUs", "ram", "storageSpace", "gpuRequired", "gpuModel"],
885
765
  "properties": {
886
766
  "gpuModel": {
887
767
  "widget": "singleLineText"
@@ -906,10 +786,7 @@
906
786
  },
907
787
  "SolutionRevisionSaaSBusiness": {
908
788
  "default": {
909
- "order": [
910
- "SaaS",
911
- "hosting"
912
- ],
789
+ "order": ["SaaS", "hosting"],
913
790
  "properties": {
914
791
  "hosting": {
915
792
  "widget": "checkboxes"
@@ -923,10 +800,7 @@
923
800
  },
924
801
  "SolutionRevisionTenancy": {
925
802
  "default": {
926
- "order": [
927
- "tenancyType",
928
- "tenancyDescription"
929
- ],
803
+ "order": ["tenancyType", "tenancyDescription"],
930
804
  "properties": {
931
805
  "tenancyDescription": {
932
806
  "widget": "paragraphText"
@@ -940,10 +814,7 @@
940
814
  },
941
815
  "SolutionRevisionVideos": {
942
816
  "default": {
943
- "order": [
944
- "video",
945
- "videoType"
946
- ],
817
+ "order": ["video", "videoType"],
947
818
  "properties": {
948
819
  "video": {
949
820
  "widget": "image"
@@ -957,10 +828,7 @@
957
828
  },
958
829
  "SolutionRevisionWorksWith": {
959
830
  "default": {
960
- "order": [
961
- "worksWithRCApps",
962
- "worksWithExternalApps"
963
- ],
831
+ "order": ["worksWithRCApps", "worksWithExternalApps"],
964
832
  "properties": {
965
833
  "worksWithExternalApps": {
966
834
  "widget": "shapeArray"
@@ -974,10 +842,7 @@
974
842
  },
975
843
  "SolutionRevisionWorksWithWorksWithExternalApps": {
976
844
  "default": {
977
- "order": [
978
- "externalApp",
979
- "integrationDescription"
980
- ],
845
+ "order": ["externalApp", "integrationDescription"],
981
846
  "properties": {
982
847
  "externalApp": {
983
848
  "widget": "relationship"
@@ -991,10 +856,7 @@
991
856
  },
992
857
  "SolutionRevisionWorksWithWorksWithRcApps": {
993
858
  "default": {
994
- "order": [
995
- "rcApp",
996
- "integrationDescription"
997
- ],
859
+ "order": ["rcApp", "integrationDescription"],
998
860
  "properties": {
999
861
  "integrationDescription": {
1000
862
  "widget": "paragraphText"
@@ -1008,10 +870,7 @@
1008
870
  },
1009
871
  "PracticeArea": {
1010
872
  "default": {
1011
- "order": [
1012
- "name",
1013
- "description"
1014
- ],
873
+ "order": ["name", "description"],
1015
874
  "properties": {
1016
875
  "description": {
1017
876
  "widget": "paragraphText"
@@ -1024,10 +883,7 @@
1024
883
  },
1025
884
  "ImageType": {
1026
885
  "default": {
1027
- "order": [
1028
- "name",
1029
- "description"
1030
- ],
886
+ "order": ["name", "description"],
1031
887
  "properties": {
1032
888
  "description": {
1033
889
  "widget": "paragraphText"
@@ -1040,10 +896,7 @@
1040
896
  },
1041
897
  "Technology": {
1042
898
  "default": {
1043
- "order": [
1044
- "name",
1045
- "description"
1046
- ],
899
+ "order": ["name", "description"],
1047
900
  "properties": {
1048
901
  "description": {
1049
902
  "widget": "paragraphText"
@@ -1056,10 +909,7 @@
1056
909
  },
1057
910
  "SolutionRevisions": {
1058
911
  "default": {
1059
- "order": [
1060
- "revision",
1061
- "status"
1062
- ],
912
+ "order": ["revision", "status"],
1063
913
  "properties": {
1064
914
  "revision": {
1065
915
  "widget": "relationship"
@@ -1073,11 +923,7 @@
1073
923
  },
1074
924
  "Solution": {
1075
925
  "default": {
1076
- "order": [
1077
- "name",
1078
- "revisions",
1079
- "status"
1080
- ],
926
+ "order": ["name", "revisions", "status"],
1081
927
  "properties": {
1082
928
  "name": {
1083
929
  "widget": "singleLineText"
@@ -2020,9 +1866,7 @@
2020
1866
  "@mapping": "shapedb:Purpose.HyvVZBenE"
2021
1867
  }
2022
1868
  },
2023
- "required": [
2024
- "name"
2025
- ]
1869
+ "required": ["name"]
2026
1870
  }
2027
1871
  },
2028
1872
  "MatterType": {
@@ -2048,9 +1892,7 @@
2048
1892
  "@mapping": "shapedb:MatterType.SJvyZSlhV"
2049
1893
  }
2050
1894
  },
2051
- "required": [
2052
- "name"
2053
- ]
1895
+ "required": ["name"]
2054
1896
  }
2055
1897
  },
2056
1898
  "SolutionRevision2": {
@@ -2095,9 +1937,7 @@
2095
1937
  }
2096
1938
  }
2097
1939
  },
2098
- "required": [
2099
- "revisionId"
2100
- ]
1940
+ "required": ["revisionId"]
2101
1941
  }
2102
1942
  },
2103
1943
  "SolutionRevision1": {
@@ -2373,9 +2213,7 @@
2373
2213
  "$ref": "#/shapes/SolutionRevision1WorksWith/schema"
2374
2214
  }
2375
2215
  },
2376
- "required": [
2377
- "revisionId"
2378
- ]
2216
+ "required": ["revisionId"]
2379
2217
  }
2380
2218
  },
2381
2219
  "SolutionRevision1Collaterals": {
@@ -2602,27 +2440,19 @@
2602
2440
  "type": "string",
2603
2441
  "oneOf": [
2604
2442
  {
2605
- "enum": [
2606
- "AWS"
2607
- ],
2443
+ "enum": ["AWS"],
2608
2444
  "title": "AWS"
2609
2445
  },
2610
2446
  {
2611
- "enum": [
2612
- "Azure"
2613
- ],
2447
+ "enum": ["Azure"],
2614
2448
  "title": "Azure"
2615
2449
  },
2616
2450
  {
2617
- "enum": [
2618
- "GCP"
2619
- ],
2451
+ "enum": ["GCP"],
2620
2452
  "title": "GCP"
2621
2453
  },
2622
2454
  {
2623
- "enum": [
2624
- "Own Infrastructure"
2625
- ],
2455
+ "enum": ["Own Infrastructure"],
2626
2456
  "title": "Own Infrastructure"
2627
2457
  }
2628
2458
  ]
@@ -2657,15 +2487,11 @@
2657
2487
  "title": "Tenancy Type",
2658
2488
  "oneOf": [
2659
2489
  {
2660
- "enum": [
2661
- "singleTenant"
2662
- ],
2490
+ "enum": ["singleTenant"],
2663
2491
  "title": "Single Tenant"
2664
2492
  },
2665
2493
  {
2666
- "enum": [
2667
- "multiTenant"
2668
- ],
2494
+ "enum": ["multiTenant"],
2669
2495
  "title": "Multi Tenant"
2670
2496
  }
2671
2497
  ],
@@ -2734,27 +2560,19 @@
2734
2560
  "title": "Containerization Type",
2735
2561
  "oneOf": [
2736
2562
  {
2737
- "enum": [
2738
- "anywhere"
2739
- ],
2563
+ "enum": ["anywhere"],
2740
2564
  "title": "Anywhere"
2741
2565
  },
2742
2566
  {
2743
- "enum": [
2744
- "awsOnly"
2745
- ],
2567
+ "enum": ["awsOnly"],
2746
2568
  "title": "AWS only"
2747
2569
  },
2748
2570
  {
2749
- "enum": [
2750
- "azureOnly"
2751
- ],
2571
+ "enum": ["azureOnly"],
2752
2572
  "title": "Azure Only"
2753
2573
  },
2754
2574
  {
2755
- "enum": [
2756
- "gcpOnly"
2757
- ],
2575
+ "enum": ["gcpOnly"],
2758
2576
  "title": "GCP Only"
2759
2577
  }
2760
2578
  ],
@@ -2784,27 +2602,19 @@
2784
2602
  "type": "string",
2785
2603
  "oneOf": [
2786
2604
  {
2787
- "enum": [
2788
- "AWS"
2789
- ],
2605
+ "enum": ["AWS"],
2790
2606
  "title": "AWS"
2791
2607
  },
2792
2608
  {
2793
- "enum": [
2794
- "Azure"
2795
- ],
2609
+ "enum": ["Azure"],
2796
2610
  "title": "Azure"
2797
2611
  },
2798
2612
  {
2799
- "enum": [
2800
- "GCP"
2801
- ],
2613
+ "enum": ["GCP"],
2802
2614
  "title": "GCP"
2803
2615
  },
2804
2616
  {
2805
- "enum": [
2806
- "Others"
2807
- ],
2617
+ "enum": ["Others"],
2808
2618
  "title": "Others"
2809
2619
  }
2810
2620
  ]
@@ -2995,11 +2805,7 @@
2995
2805
  "@mapping": "shapedb:ExternalProduct.SJX4WLg3V"
2996
2806
  }
2997
2807
  },
2998
- "required": [
2999
- "name",
3000
- "description",
3001
- "appCategory"
3002
- ]
2808
+ "required": ["name", "description", "appCategory"]
3003
2809
  }
3004
2810
  },
3005
2811
  "VideoType": {
@@ -3025,9 +2831,7 @@
3025
2831
  "@mapping": "shapedb:VideoType.SJUbtSxhV"
3026
2832
  }
3027
2833
  },
3028
- "required": [
3029
- "name"
3030
- ]
2834
+ "required": ["name"]
3031
2835
  }
3032
2836
  },
3033
2837
  "Category": {
@@ -3053,9 +2857,7 @@
3053
2857
  "@mapping": "shapedb:Category.HyzieSx2V"
3054
2858
  }
3055
2859
  },
3056
- "required": [
3057
- "name"
3058
- ]
2860
+ "required": ["name"]
3059
2861
  }
3060
2862
  },
3061
2863
  "CollateralType": {
@@ -3081,9 +2883,7 @@
3081
2883
  "@mapping": "shapedb:CollateralType.S1s7KSen4"
3082
2884
  }
3083
2885
  },
3084
- "required": [
3085
- "name"
3086
- ]
2886
+ "required": ["name"]
3087
2887
  }
3088
2888
  },
3089
2889
  "ExternalAppCategory": {
@@ -3180,11 +2980,7 @@
3180
2980
  "@mapping": "shapedb:Vendor.rkBZqJGnN"
3181
2981
  }
3182
2982
  },
3183
- "required": [
3184
- "name",
3185
- "description",
3186
- "yearFounded"
3187
- ]
2983
+ "required": ["name", "description", "yearFounded"]
3188
2984
  }
3189
2985
  },
3190
2986
  "VendorContactsContactObject": {
@@ -3199,15 +2995,11 @@
3199
2995
  "title": "Contact Type",
3200
2996
  "oneOf": [
3201
2997
  {
3202
- "enum": [
3203
- "technical"
3204
- ],
2998
+ "enum": ["technical"],
3205
2999
  "title": "Technical"
3206
3000
  },
3207
3001
  {
3208
- "enum": [
3209
- "business"
3210
- ],
3002
+ "enum": ["business"],
3211
3003
  "title": "Business"
3212
3004
  }
3213
3005
  ],
@@ -3606,9 +3398,7 @@
3606
3398
  "$ref": "#/shapes/SolutionRevisionWorksWith/schema"
3607
3399
  }
3608
3400
  },
3609
- "required": [
3610
- "revisionId"
3611
- ]
3401
+ "required": ["revisionId"]
3612
3402
  }
3613
3403
  },
3614
3404
  "SolutionRevisionCollaterals": {
@@ -3671,27 +3461,19 @@
3671
3461
  "title": "Containerisation Type",
3672
3462
  "oneOf": [
3673
3463
  {
3674
- "enum": [
3675
- "anywhere"
3676
- ],
3464
+ "enum": ["anywhere"],
3677
3465
  "title": "Anywhere"
3678
3466
  },
3679
3467
  {
3680
- "enum": [
3681
- "awsOnly"
3682
- ],
3468
+ "enum": ["awsOnly"],
3683
3469
  "title": "AWS Only"
3684
3470
  },
3685
3471
  {
3686
- "enum": [
3687
- "azureOnly"
3688
- ],
3472
+ "enum": ["azureOnly"],
3689
3473
  "title": "Azure Only"
3690
3474
  },
3691
3475
  {
3692
- "enum": [
3693
- "gcpOnly"
3694
- ],
3476
+ "enum": ["gcpOnly"],
3695
3477
  "title": "GCP Only"
3696
3478
  }
3697
3479
  ],
@@ -3721,27 +3503,19 @@
3721
3503
  "type": "string",
3722
3504
  "oneOf": [
3723
3505
  {
3724
- "enum": [
3725
- "AWS"
3726
- ],
3506
+ "enum": ["AWS"],
3727
3507
  "title": "AWS"
3728
3508
  },
3729
3509
  {
3730
- "enum": [
3731
- "GCP"
3732
- ],
3510
+ "enum": ["GCP"],
3733
3511
  "title": "GCP"
3734
3512
  },
3735
3513
  {
3736
- "enum": [
3737
- "Azure"
3738
- ],
3514
+ "enum": ["Azure"],
3739
3515
  "title": "Azure"
3740
3516
  },
3741
3517
  {
3742
- "enum": [
3743
- "Others"
3744
- ],
3518
+ "enum": ["Others"],
3745
3519
  "title": "Others"
3746
3520
  }
3747
3521
  ]
@@ -3932,27 +3706,19 @@
3932
3706
  "type": "string",
3933
3707
  "oneOf": [
3934
3708
  {
3935
- "enum": [
3936
- "AWS"
3937
- ],
3709
+ "enum": ["AWS"],
3938
3710
  "title": "AWS"
3939
3711
  },
3940
3712
  {
3941
- "enum": [
3942
- "GCP"
3943
- ],
3713
+ "enum": ["GCP"],
3944
3714
  "title": "GCP"
3945
3715
  },
3946
3716
  {
3947
- "enum": [
3948
- "Azure"
3949
- ],
3717
+ "enum": ["Azure"],
3950
3718
  "title": "Azure"
3951
3719
  },
3952
3720
  {
3953
- "enum": [
3954
- "Own Infrastructure"
3955
- ],
3721
+ "enum": ["Own Infrastructure"],
3956
3722
  "title": "Own Infrastructure"
3957
3723
  }
3958
3724
  ]
@@ -3987,15 +3753,11 @@
3987
3753
  "title": "Tenancy Type",
3988
3754
  "oneOf": [
3989
3755
  {
3990
- "enum": [
3991
- "singleTenant"
3992
- ],
3756
+ "enum": ["singleTenant"],
3993
3757
  "title": "Single Tenant"
3994
3758
  },
3995
3759
  {
3996
- "enum": [
3997
- "multiTenant"
3998
- ],
3760
+ "enum": ["multiTenant"],
3999
3761
  "title": "Multi Tenant"
4000
3762
  }
4001
3763
  ],
@@ -4171,9 +3933,7 @@
4171
3933
  "@mapping": "shapedb:PracticeArea.ryPbbrehE"
4172
3934
  }
4173
3935
  },
4174
- "required": [
4175
- "name"
4176
- ]
3936
+ "required": ["name"]
4177
3937
  }
4178
3938
  },
4179
3939
  "ImageType": {
@@ -4199,9 +3959,7 @@
4199
3959
  "@mapping": "shapedb:ImageType.B1EkFrxhV"
4200
3960
  }
4201
3961
  },
4202
- "required": [
4203
- "name"
4204
- ]
3962
+ "required": ["name"]
4205
3963
  }
4206
3964
  },
4207
3965
  "Technology": {
@@ -4227,9 +3985,7 @@
4227
3985
  "@mapping": "shapedb:Technology.H1bvbHen4"
4228
3986
  }
4229
3987
  },
4230
- "required": [
4231
- "name"
4232
- ]
3988
+ "required": ["name"]
4233
3989
  }
4234
3990
  },
4235
3991
  "Solution": {
@@ -4261,21 +4017,15 @@
4261
4017
  "title": "Status",
4262
4018
  "oneOf": [
4263
4019
  {
4264
- "enum": [
4265
- "stage1"
4266
- ],
4020
+ "enum": ["stage1"],
4267
4021
  "title": "Stage1"
4268
4022
  },
4269
4023
  {
4270
- "enum": [
4271
- "stage2"
4272
- ],
4024
+ "enum": ["stage2"],
4273
4025
  "title": "Stage2"
4274
4026
  },
4275
4027
  {
4276
- "enum": [
4277
- "stage3"
4278
- ],
4028
+ "enum": ["stage3"],
4279
4029
  "title": "Stage3"
4280
4030
  }
4281
4031
  ],
@@ -4283,10 +4033,7 @@
4283
4033
  "@mapping": "shapedb:Solution.ryTO6Ueh4"
4284
4034
  }
4285
4035
  },
4286
- "required": [
4287
- "name",
4288
- "status"
4289
- ]
4036
+ "required": ["name", "status"]
4290
4037
  }
4291
4038
  },
4292
4039
  "SolutionRevisions": {
@@ -4320,27 +4067,19 @@
4320
4067
  "title": "Status",
4321
4068
  "oneOf": [
4322
4069
  {
4323
- "enum": [
4324
- "draft"
4325
- ],
4070
+ "enum": ["draft"],
4326
4071
  "title": "Draft"
4327
4072
  },
4328
4073
  {
4329
- "enum": [
4330
- "underReview"
4331
- ],
4074
+ "enum": ["underReview"],
4332
4075
  "title": "Under Review"
4333
4076
  },
4334
4077
  {
4335
- "enum": [
4336
- "approved"
4337
- ],
4078
+ "enum": ["approved"],
4338
4079
  "title": "Approved"
4339
4080
  },
4340
4081
  {
4341
- "enum": [
4342
- "published"
4343
- ],
4082
+ "enum": ["published"],
4344
4083
  "title": "Published"
4345
4084
  }
4346
4085
  ],
@@ -4350,6 +4089,6 @@
4350
4089
  }
4351
4090
  }
4352
4091
  },
4353
- "schemaVersion": "3.50.0",
4092
+ "schemaVersion": "3.51.0",
4354
4093
  "services": {}
4355
- }
4094
+ }