@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
@@ -23,9 +23,7 @@
23
23
  }
24
24
  },
25
25
  "defaultLocale": "en",
26
- "locales": [
27
- "en"
28
- ],
26
+ "locales": ["en"],
29
27
  "projectId": "2c8c44e7-9cbc-4a35-9dea-f0cb2ced03a4",
30
28
  "version": 1,
31
29
  "schemaVersion": "3.8.0",
@@ -238,9 +236,7 @@
238
236
  "@tag": "id"
239
237
  }
240
238
  },
241
- "required": [
242
- "id"
243
- ]
239
+ "required": ["id"]
244
240
  },
245
241
  "shape": "Rick_Character"
246
242
  },
@@ -649,9 +645,7 @@
649
645
  "type": "string"
650
646
  }
651
647
  },
652
- "required": [
653
- "id"
654
- ]
648
+ "required": ["id"]
655
649
  }
656
650
  },
657
651
  "TSColorHsl": {
@@ -799,9 +793,7 @@
799
793
  "@mapping": "takeshape:local:Asset.SyQiZrgdX",
800
794
  "$ref": "#/shapes/TSRelationship/schema",
801
795
  "@relationship": {
802
- "shapeIds": [
803
- "SJDIicDUZ"
804
- ],
796
+ "shapeIds": ["SJDIicDUZ"],
805
797
  "type": "single"
806
798
  }
807
799
  },
@@ -873,27 +865,18 @@
873
865
  "title": "Status",
874
866
  "oneOf": [
875
867
  {
876
- "enum": [
877
- "r1uCfi4ZL",
878
- "disabled"
879
- ],
868
+ "enum": ["r1uCfi4ZL", "disabled"],
880
869
  "title": "Disabled"
881
870
  },
882
871
  {
883
- "enum": [
884
- "rkhRGs4WL",
885
- "enabled"
886
- ],
872
+ "enum": ["rkhRGs4WL", "enabled"],
887
873
  "title": "Enabled"
888
874
  }
889
875
  ],
890
876
  "@workflow": "default"
891
877
  }
892
878
  },
893
- "required": [
894
- "filename",
895
- "path"
896
- ]
879
+ "required": ["filename", "path"]
897
880
  }
898
881
  },
899
882
  "TSStaticSite": {
@@ -927,39 +910,27 @@
927
910
  "@l10n": false,
928
911
  "oneOf": [
929
912
  {
930
- "enum": [
931
- "s3"
932
- ],
913
+ "enum": ["s3"],
933
914
  "title": "S3"
934
915
  },
935
916
  {
936
- "enum": [
937
- "gcs"
938
- ],
917
+ "enum": ["gcs"],
939
918
  "title": "Google Cloud Storage"
940
919
  },
941
920
  {
942
- "enum": [
943
- "ftp"
944
- ],
921
+ "enum": ["ftp"],
945
922
  "title": "FTP Client"
946
923
  },
947
924
  {
948
- "enum": [
949
- "azure"
950
- ],
925
+ "enum": ["azure"],
951
926
  "title": "Azure Storage Account"
952
927
  },
953
928
  {
954
- "enum": [
955
- "netlify"
956
- ],
929
+ "enum": ["netlify"],
957
930
  "title": "Netlify"
958
931
  },
959
932
  {
960
- "enum": [
961
- "vercel"
962
- ],
933
+ "enum": ["vercel"],
963
934
  "title": "Vercel"
964
935
  }
965
936
  ],
@@ -1072,28 +1043,18 @@
1072
1043
  "title": "Status",
1073
1044
  "oneOf": [
1074
1045
  {
1075
- "enum": [
1076
- "r1uCfi4ZL",
1077
- "disabled"
1078
- ],
1046
+ "enum": ["r1uCfi4ZL", "disabled"],
1079
1047
  "title": "Disabled"
1080
1048
  },
1081
1049
  {
1082
- "enum": [
1083
- "rkhRGs4WL",
1084
- "enabled"
1085
- ],
1050
+ "enum": ["rkhRGs4WL", "enabled"],
1086
1051
  "title": "Enabled"
1087
1052
  }
1088
1053
  ],
1089
1054
  "@workflow": "default"
1090
1055
  }
1091
1056
  },
1092
- "required": [
1093
- "title",
1094
- "provider",
1095
- "destination"
1096
- ]
1057
+ "required": ["title", "provider", "destination"]
1097
1058
  }
1098
1059
  },
1099
1060
  "TSStaticSiteEnvironmentVariables": {
@@ -1206,17 +1167,11 @@
1206
1167
  "title": "Status",
1207
1168
  "oneOf": [
1208
1169
  {
1209
- "enum": [
1210
- "r1uCfi4ZL",
1211
- "disabled"
1212
- ],
1170
+ "enum": ["r1uCfi4ZL", "disabled"],
1213
1171
  "title": "Disabled"
1214
1172
  },
1215
1173
  {
1216
- "enum": [
1217
- "rkhRGs4WL",
1218
- "enabled"
1219
- ],
1174
+ "enum": ["rkhRGs4WL", "enabled"],
1220
1175
  "title": "Enabled"
1221
1176
  }
1222
1177
  ],
@@ -1297,26 +1252,18 @@
1297
1252
  "title": "Status",
1298
1253
  "oneOf": [
1299
1254
  {
1300
- "enum": [
1301
- "r1uCfi4ZL",
1302
- "disabled"
1303
- ],
1255
+ "enum": ["r1uCfi4ZL", "disabled"],
1304
1256
  "title": "Disabled"
1305
1257
  },
1306
1258
  {
1307
- "enum": [
1308
- "rkhRGs4WL",
1309
- "enabled"
1310
- ],
1259
+ "enum": ["rkhRGs4WL", "enabled"],
1311
1260
  "title": "Enabled"
1312
1261
  }
1313
1262
  ],
1314
1263
  "@workflow": "default"
1315
1264
  }
1316
1265
  },
1317
- "required": [
1318
- "name"
1319
- ]
1266
+ "required": ["name"]
1320
1267
  }
1321
1268
  },
1322
1269
  "Post": {
@@ -1340,9 +1287,7 @@
1340
1287
  "@mapping": "takeshape:local:Post.BybUznPIW",
1341
1288
  "$ref": "#/shapes/TSRelationship/schema",
1342
1289
  "@relationship": {
1343
- "shapeIds": [
1344
- "ASSET"
1345
- ],
1290
+ "shapeIds": ["ASSET"],
1346
1291
  "type": "single"
1347
1292
  }
1348
1293
  },
@@ -1357,9 +1302,7 @@
1357
1302
  "@mapping": "takeshape:local:Post.rJgad7TLZ",
1358
1303
  "$ref": "#/shapes/TSRelationship/schema",
1359
1304
  "@relationship": {
1360
- "shapeIds": [
1361
- "SJDIicDUZ"
1362
- ],
1305
+ "shapeIds": ["SJDIicDUZ"],
1363
1306
  "type": "single"
1364
1307
  }
1365
1308
  },
@@ -1377,9 +1320,7 @@
1377
1320
  "$ref": "#/shapes/TSRelationship/schema"
1378
1321
  },
1379
1322
  "@relationship": {
1380
- "shapeIds": [
1381
- "rJBYXVyuQ"
1382
- ],
1323
+ "shapeIds": ["rJBYXVyuQ"],
1383
1324
  "type": "multiple"
1384
1325
  }
1385
1326
  },
@@ -1439,27 +1380,18 @@
1439
1380
  "title": "Status",
1440
1381
  "oneOf": [
1441
1382
  {
1442
- "enum": [
1443
- "r1uCfi4ZL",
1444
- "disabled"
1445
- ],
1383
+ "enum": ["r1uCfi4ZL", "disabled"],
1446
1384
  "title": "Disabled"
1447
1385
  },
1448
1386
  {
1449
- "enum": [
1450
- "rkhRGs4WL",
1451
- "enabled"
1452
- ],
1387
+ "enum": ["rkhRGs4WL", "enabled"],
1453
1388
  "title": "Enabled"
1454
1389
  }
1455
1390
  ],
1456
1391
  "@workflow": "default"
1457
1392
  }
1458
1393
  },
1459
- "required": [
1460
- "title",
1461
- "featureImage"
1462
- ]
1394
+ "required": ["title", "featureImage"]
1463
1395
  }
1464
1396
  },
1465
1397
  "Author": {
@@ -1483,9 +1415,7 @@
1483
1415
  "@mapping": "takeshape:local:Author.BkyFrpUcb",
1484
1416
  "$ref": "#/shapes/TSRelationship/schema",
1485
1417
  "@relationship": {
1486
- "shapeIds": [
1487
- "ASSET"
1488
- ],
1418
+ "shapeIds": ["ASSET"],
1489
1419
  "type": "single"
1490
1420
  }
1491
1421
  },
@@ -1551,28 +1481,18 @@
1551
1481
  "title": "Status",
1552
1482
  "oneOf": [
1553
1483
  {
1554
- "enum": [
1555
- "r1uCfi4ZL",
1556
- "disabled"
1557
- ],
1484
+ "enum": ["r1uCfi4ZL", "disabled"],
1558
1485
  "title": "Disabled"
1559
1486
  },
1560
1487
  {
1561
- "enum": [
1562
- "rkhRGs4WL",
1563
- "enabled"
1564
- ],
1488
+ "enum": ["rkhRGs4WL", "enabled"],
1565
1489
  "title": "Enabled"
1566
1490
  }
1567
1491
  ],
1568
1492
  "@workflow": "default"
1569
1493
  }
1570
1494
  },
1571
- "required": [
1572
- "name",
1573
- "photo",
1574
- "biography"
1575
- ]
1495
+ "required": ["name", "photo", "biography"]
1576
1496
  }
1577
1497
  },
1578
1498
  "Homepage": {
@@ -1596,9 +1516,7 @@
1596
1516
  "@mapping": "takeshape:local:Homepage.r1xPx1OUW",
1597
1517
  "$ref": "#/shapes/TSRelationship/schema",
1598
1518
  "@relationship": {
1599
- "shapeIds": [
1600
- "r166qcP8Z"
1601
- ],
1519
+ "shapeIds": ["r166qcP8Z"],
1602
1520
  "type": "single"
1603
1521
  }
1604
1522
  },
@@ -1663,17 +1581,11 @@
1663
1581
  "title": "Status",
1664
1582
  "oneOf": [
1665
1583
  {
1666
- "enum": [
1667
- "r1uCfi4ZL",
1668
- "disabled"
1669
- ],
1584
+ "enum": ["r1uCfi4ZL", "disabled"],
1670
1585
  "title": "Disabled"
1671
1586
  },
1672
1587
  {
1673
- "enum": [
1674
- "rkhRGs4WL",
1675
- "enabled"
1676
- ],
1588
+ "enum": ["rkhRGs4WL", "enabled"],
1677
1589
  "title": "Enabled"
1678
1590
  }
1679
1591
  ],
@@ -1694,9 +1606,7 @@
1694
1606
  "@mapping": "takeshape:local:HomepageHero.H1vBnAv8-",
1695
1607
  "$ref": "#/shapes/TSRelationship/schema",
1696
1608
  "@relationship": {
1697
- "shapeIds": [
1698
- "ASSET"
1699
- ],
1609
+ "shapeIds": ["ASSET"],
1700
1610
  "type": "single"
1701
1611
  }
1702
1612
  },
@@ -1705,9 +1615,7 @@
1705
1615
  "@mapping": "takeshape:local:HomepageHero.SJ1Xo0v8b",
1706
1616
  "$ref": "#/shapes/TSRelationship/schema",
1707
1617
  "@relationship": {
1708
- "shapeIds": [
1709
- "rJoobhv8W"
1710
- ],
1618
+ "shapeIds": ["rJoobhv8W"],
1711
1619
  "type": "single",
1712
1620
  "relatedName": "heroFeaturedPost"
1713
1621
  }
@@ -1787,17 +1695,11 @@
1787
1695
  "title": "Status",
1788
1696
  "oneOf": [
1789
1697
  {
1790
- "enum": [
1791
- "r1uCfi4ZL",
1792
- "disabled"
1793
- ],
1698
+ "enum": ["r1uCfi4ZL", "disabled"],
1794
1699
  "title": "Disabled"
1795
1700
  },
1796
1701
  {
1797
- "enum": [
1798
- "rkhRGs4WL",
1799
- "enabled"
1800
- ],
1702
+ "enum": ["rkhRGs4WL", "enabled"],
1801
1703
  "title": "Enabled"
1802
1704
  }
1803
1705
  ],
@@ -1846,9 +1748,7 @@
1846
1748
  "genre": {
1847
1749
  "$ref": "#/shapes/TSRelationship/schema",
1848
1750
  "@relationship": {
1849
- "shapeIds": [
1850
- "rJ9bZzk-m"
1851
- ],
1751
+ "shapeIds": ["rJ9bZzk-m"],
1852
1752
  "type": "single",
1853
1753
  "relatedName": "books"
1854
1754
  },
@@ -1864,9 +1764,7 @@
1864
1764
  "coverImage": {
1865
1765
  "$ref": "#/shapes/TSRelationship/schema",
1866
1766
  "@relationship": {
1867
- "shapeIds": [
1868
- "ASSET"
1869
- ],
1767
+ "shapeIds": ["ASSET"],
1870
1768
  "type": "single"
1871
1769
  },
1872
1770
  "title": "Cover Image",
@@ -1875,9 +1773,7 @@
1875
1773
  "author": {
1876
1774
  "$ref": "#/shapes/TSRelationship/schema",
1877
1775
  "@relationship": {
1878
- "shapeIds": [
1879
- "SJDIicDUZ"
1880
- ],
1776
+ "shapeIds": ["SJDIicDUZ"],
1881
1777
  "type": "single",
1882
1778
  "relatedName": "authored"
1883
1779
  },
@@ -1895,15 +1791,11 @@
1895
1791
  "oneOf": [
1896
1792
  {
1897
1793
  "title": "Hardcover",
1898
- "enum": [
1899
- "hardcover"
1900
- ]
1794
+ "enum": ["hardcover"]
1901
1795
  },
1902
1796
  {
1903
1797
  "title": "Paperback",
1904
- "enum": [
1905
- "paperback"
1906
- ]
1798
+ "enum": ["paperback"]
1907
1799
  }
1908
1800
  ],
1909
1801
  "title": "Type",
@@ -1971,27 +1863,18 @@
1971
1863
  "title": "Status",
1972
1864
  "oneOf": [
1973
1865
  {
1974
- "enum": [
1975
- "r1uCfi4ZL",
1976
- "disabled"
1977
- ],
1866
+ "enum": ["r1uCfi4ZL", "disabled"],
1978
1867
  "title": "Disabled"
1979
1868
  },
1980
1869
  {
1981
- "enum": [
1982
- "rkhRGs4WL",
1983
- "enabled"
1984
- ],
1870
+ "enum": ["rkhRGs4WL", "enabled"],
1985
1871
  "title": "Enabled"
1986
1872
  }
1987
1873
  ],
1988
1874
  "@workflow": "default"
1989
1875
  }
1990
1876
  },
1991
- "required": [
1992
- "title",
1993
- "author"
1994
- ]
1877
+ "required": ["title", "author"]
1995
1878
  },
1996
1879
  "workflow": "default"
1997
1880
  },
@@ -2291,14 +2174,7 @@
2291
2174
  },
2292
2175
  "TSStaticSite": {
2293
2176
  "default": {
2294
- "order": [
2295
- "title",
2296
- "provider",
2297
- "destination",
2298
- "idKey",
2299
- "secretKey",
2300
- "environmentVariables"
2301
- ],
2177
+ "order": ["title", "provider", "destination", "idKey", "secretKey", "environmentVariables"],
2302
2178
  "properties": {
2303
2179
  "title": {
2304
2180
  "widget": "singleLineText",
@@ -2326,10 +2202,7 @@
2326
2202
  },
2327
2203
  "environmentVariables": {
2328
2204
  "widget": "repeater",
2329
- "order": [
2330
- "name",
2331
- "value"
2332
- ],
2205
+ "order": ["name", "value"],
2333
2206
  "disabled": true,
2334
2207
  "properties": {
2335
2208
  "name": {
@@ -2345,11 +2218,7 @@
2345
2218
  }
2346
2219
  },
2347
2220
  "generalHeader": {
2348
- "order": [
2349
- "title",
2350
- "provider",
2351
- "baseUrl"
2352
- ],
2221
+ "order": ["title", "provider", "baseUrl"],
2353
2222
  "properties": {
2354
2223
  "title": {
2355
2224
  "widget": "singleLineText",
@@ -2366,17 +2235,11 @@
2366
2235
  }
2367
2236
  },
2368
2237
  "generalFooter": {
2369
- "order": [
2370
- "environmentVariables",
2371
- "triggers"
2372
- ],
2238
+ "order": ["environmentVariables", "triggers"],
2373
2239
  "properties": {
2374
2240
  "environmentVariables": {
2375
2241
  "widget": "repeater",
2376
- "order": [
2377
- "name",
2378
- "value"
2379
- ],
2242
+ "order": ["name", "value"],
2380
2243
  "disabled": true,
2381
2244
  "properties": {
2382
2245
  "name": {
@@ -2391,10 +2254,7 @@
2391
2254
  },
2392
2255
  "triggers": {
2393
2256
  "widget": "repeater",
2394
- "order": [
2395
- "contentTypeId",
2396
- "status"
2397
- ],
2257
+ "order": ["contentTypeId", "status"],
2398
2258
  "disabled": true,
2399
2259
  "preview": "siteTriggerPreview",
2400
2260
  "properties": {
@@ -2411,12 +2271,7 @@
2411
2271
  }
2412
2272
  },
2413
2273
  "s3": {
2414
- "order": [
2415
- "destination",
2416
- "idKey",
2417
- "secretKey",
2418
- "privateAcl"
2419
- ],
2274
+ "order": ["destination", "idKey", "secretKey", "privateAcl"],
2420
2275
  "properties": {
2421
2276
  "destination": {
2422
2277
  "widget": "singleLineText",
@@ -2442,12 +2297,7 @@
2442
2297
  }
2443
2298
  },
2444
2299
  "gcs": {
2445
- "order": [
2446
- "destination",
2447
- "idKey",
2448
- "secretKey",
2449
- "privateAcl"
2450
- ],
2300
+ "order": ["destination", "idKey", "secretKey", "privateAcl"],
2451
2301
  "properties": {
2452
2302
  "destination": {
2453
2303
  "widget": "singleLineText",
@@ -2473,11 +2323,7 @@
2473
2323
  }
2474
2324
  },
2475
2325
  "ftp": {
2476
- "order": [
2477
- "destination",
2478
- "idKey",
2479
- "secretKey"
2480
- ],
2326
+ "order": ["destination", "idKey", "secretKey"],
2481
2327
  "properties": {
2482
2328
  "destination": {
2483
2329
  "widget": "singleLineText",
@@ -2498,10 +2344,7 @@
2498
2344
  }
2499
2345
  },
2500
2346
  "azure": {
2501
- "order": [
2502
- "destination",
2503
- "secretKey"
2504
- ],
2347
+ "order": ["destination", "secretKey"],
2505
2348
  "properties": {
2506
2349
  "destination": {
2507
2350
  "widget": "singleLineText",
@@ -2517,9 +2360,7 @@
2517
2360
  }
2518
2361
  },
2519
2362
  "netlify": {
2520
- "order": [
2521
- "destination"
2522
- ],
2363
+ "order": ["destination"],
2523
2364
  "properties": {
2524
2365
  "destination": {
2525
2366
  "widget": "publishTargets",
@@ -2530,9 +2371,7 @@
2530
2371
  }
2531
2372
  },
2532
2373
  "vercel": {
2533
- "order": [
2534
- "destination"
2535
- ],
2374
+ "order": ["destination"],
2536
2375
  "properties": {
2537
2376
  "destination": {
2538
2377
  "widget": "publishTargets",
@@ -2550,9 +2389,7 @@
2550
2389
  "widget": "singleLineText"
2551
2390
  }
2552
2391
  },
2553
- "order": [
2554
- "title"
2555
- ]
2392
+ "order": ["title"]
2556
2393
  }
2557
2394
  },
2558
2395
  "Tag": {
@@ -2562,9 +2399,7 @@
2562
2399
  "widget": "singleLineText"
2563
2400
  }
2564
2401
  },
2565
- "order": [
2566
- "name"
2567
- ]
2402
+ "order": ["name"]
2568
2403
  }
2569
2404
  },
2570
2405
  "Post": {
@@ -2589,14 +2424,7 @@
2589
2424
  "widget": "relationship"
2590
2425
  }
2591
2426
  },
2592
- "order": [
2593
- "title",
2594
- "deck",
2595
- "tags",
2596
- "author",
2597
- "featureImage",
2598
- "body"
2599
- ]
2427
+ "order": ["title", "deck", "tags", "author", "featureImage", "body"]
2600
2428
  }
2601
2429
  },
2602
2430
  "Author": {
@@ -2612,11 +2440,7 @@
2612
2440
  "widget": "wysiwygText"
2613
2441
  }
2614
2442
  },
2615
- "order": [
2616
- "name",
2617
- "photo",
2618
- "biography"
2619
- ]
2443
+ "order": ["name", "photo", "biography"]
2620
2444
  }
2621
2445
  },
2622
2446
  "Homepage": {
@@ -2638,17 +2462,10 @@
2638
2462
  }
2639
2463
  },
2640
2464
  "widget": "object",
2641
- "order": [
2642
- "image",
2643
- "featuredPost"
2644
- ]
2465
+ "order": ["image", "featuredPost"]
2645
2466
  }
2646
2467
  },
2647
- "order": [
2648
- "title",
2649
- "hero",
2650
- "featuredBook"
2651
- ]
2468
+ "order": ["title", "hero", "featuredBook"]
2652
2469
  }
2653
2470
  },
2654
2471
  "SiteSettings": {
@@ -2658,9 +2475,7 @@
2658
2475
  "widget": "singleLineText"
2659
2476
  }
2660
2477
  },
2661
- "order": [
2662
- "siteTitle"
2663
- ]
2478
+ "order": ["siteTitle"]
2664
2479
  }
2665
2480
  },
2666
2481
  "Book": {
@@ -2722,4 +2537,4 @@
2722
2537
  }
2723
2538
  },
2724
2539
  "dataKey": "secret"
2725
- }
2540
+ }