@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
@@ -29,15 +29,7 @@
29
29
  },
30
30
  "simpleTypes": {
31
31
  "title": "Simple Types",
32
- "enum": [
33
- "array",
34
- "boolean",
35
- "integer",
36
- "null",
37
- "number",
38
- "object",
39
- "string"
40
- ]
32
+ "enum": ["array", "boolean", "integer", "null", "number", "object", "string"]
41
33
  },
42
34
  "stringArray": {
43
35
  "title": "String Array",
@@ -62,9 +54,7 @@
62
54
  }
63
55
  },
64
56
  "additionalProperties": false,
65
- "required": [
66
- "enabled"
67
- ]
57
+ "required": ["enabled"]
68
58
  },
69
59
  "mappingString": {
70
60
  "title": "Mapping String",
@@ -93,9 +83,7 @@
93
83
  "$ref": "#/definitions/ref"
94
84
  }
95
85
  },
96
- "required": [
97
- "@ref"
98
- ]
86
+ "required": ["@ref"]
99
87
  },
100
88
  "refSchemaLegacy": {
101
89
  "title": "Ref Schema Legacy",
@@ -105,9 +93,7 @@
105
93
  "$ref": "#/definitions/ref"
106
94
  }
107
95
  },
108
- "required": [
109
- "$ref"
110
- ]
96
+ "required": ["$ref"]
111
97
  },
112
98
  "shapeSchemaEnum": {
113
99
  "title": "Shape Schema Enum",
@@ -120,9 +106,7 @@
120
106
  }
121
107
  },
122
108
  "additionalProperties": false,
123
- "required": [
124
- "enum"
125
- ]
109
+ "required": ["enum"]
126
110
  },
127
111
  "objectSchema": {
128
112
  "title": "Object Schema",
@@ -144,10 +128,7 @@
144
128
  }
145
129
  }
146
130
  },
147
- "required": [
148
- "type",
149
- "properties"
150
- ]
131
+ "required": ["type", "properties"]
151
132
  }
152
133
  ]
153
134
  },
@@ -173,26 +154,15 @@
173
154
  "type": "object",
174
155
  "properties": {
175
156
  "type": {
176
- "enum": [
177
- "boolean",
178
- "integer",
179
- "number",
180
- "string",
181
- "object"
182
- ]
157
+ "enum": ["boolean", "integer", "number", "string", "object"]
183
158
  }
184
159
  },
185
- "required": [
186
- "type"
187
- ]
160
+ "required": ["type"]
188
161
  }
189
162
  ]
190
163
  }
191
164
  },
192
- "required": [
193
- "type",
194
- "items"
195
- ]
165
+ "required": ["type", "items"]
196
166
  }
197
167
  ]
198
168
  },
@@ -222,9 +192,7 @@
222
192
  "$ref": "#/definitions/objectOrRefArray"
223
193
  }
224
194
  },
225
- "required": [
226
- "allOf"
227
- ],
195
+ "required": ["allOf"],
228
196
  "additionalProperties": false
229
197
  },
230
198
  "allOfSchema": {
@@ -240,9 +208,7 @@
240
208
  "$ref": "#/definitions/objectOrRefArray"
241
209
  }
242
210
  },
243
- "required": [
244
- "allOf"
245
- ]
211
+ "required": ["allOf"]
246
212
  }
247
213
  ]
248
214
  },
@@ -254,9 +220,7 @@
254
220
  "$ref": "#/definitions/objectOrRefArray"
255
221
  }
256
222
  },
257
- "required": [
258
- "extends"
259
- ],
223
+ "required": ["extends"],
260
224
  "additionalProperties": false
261
225
  },
262
226
  "extendsSchema": {
@@ -272,9 +236,7 @@
272
236
  "$ref": "#/definitions/objectOrRefArray"
273
237
  }
274
238
  },
275
- "required": [
276
- "extends"
277
- ]
239
+ "required": ["extends"]
278
240
  }
279
241
  ]
280
242
  },
@@ -286,9 +248,7 @@
286
248
  "$ref": "#/definitions/objectOrRefArray"
287
249
  }
288
250
  },
289
- "required": [
290
- "oneOf"
291
- ],
251
+ "required": ["oneOf"],
292
252
  "additionalProperties": false
293
253
  },
294
254
  "oneOfSchema": {
@@ -304,9 +264,7 @@
304
264
  "$ref": "#/definitions/objectOrRefArray"
305
265
  }
306
266
  },
307
- "required": [
308
- "oneOf"
309
- ],
267
+ "required": ["oneOf"],
310
268
  "additionalProperties": false
311
269
  }
312
270
  ]
@@ -397,16 +355,7 @@
397
355
  "properties": {
398
356
  "style": {
399
357
  "type": "string",
400
- "enum": [
401
- "simple",
402
- "label",
403
- "matrix",
404
- "form",
405
- "spaceDelimited",
406
- "pipeDelimited",
407
- "deepObject",
408
- "none"
409
- ]
358
+ "enum": ["simple", "label", "matrix", "form", "spaceDelimited", "pipeDelimited", "deepObject", "none"]
410
359
  },
411
360
  "explode": {
412
361
  "type": "boolean"
@@ -422,9 +371,7 @@
422
371
  "type": "boolean"
423
372
  }
424
373
  },
425
- "required": [
426
- "style"
427
- ],
374
+ "required": ["style"],
428
375
  "additionalProperties": false
429
376
  },
430
377
  "parameterSerializeStyleOptionsForPathParams": {
@@ -434,12 +381,7 @@
434
381
  "properties": {
435
382
  "style": {
436
383
  "type": "string",
437
- "enum": [
438
- "simple",
439
- "label",
440
- "matrix",
441
- "none"
442
- ]
384
+ "enum": ["simple", "label", "matrix", "none"]
443
385
  },
444
386
  "explode": {
445
387
  "type": "boolean"
@@ -455,9 +397,7 @@
455
397
  "type": "boolean"
456
398
  }
457
399
  },
458
- "required": [
459
- "style"
460
- ],
400
+ "required": ["style"],
461
401
  "additionalProperties": false
462
402
  },
463
403
  "parameterSerializeStyleOptionsForSearchParams": {
@@ -467,13 +407,7 @@
467
407
  "properties": {
468
408
  "style": {
469
409
  "type": "string",
470
- "enum": [
471
- "form",
472
- "spaceDelimited",
473
- "pipeDelimited",
474
- "deepObject",
475
- "none"
476
- ]
410
+ "enum": ["form", "spaceDelimited", "pipeDelimited", "deepObject", "none"]
477
411
  },
478
412
  "explode": {
479
413
  "type": "boolean"
@@ -489,9 +423,7 @@
489
423
  "type": "boolean"
490
424
  }
491
425
  },
492
- "required": [
493
- "style"
494
- ],
426
+ "required": ["style"],
495
427
  "additionalProperties": false
496
428
  },
497
429
  "parameterSerializeStyleOptionsForHeaders": {
@@ -501,18 +433,13 @@
501
433
  "properties": {
502
434
  "style": {
503
435
  "type": "string",
504
- "enum": [
505
- "simple",
506
- "none"
507
- ]
436
+ "enum": ["simple", "none"]
508
437
  },
509
438
  "explode": {
510
439
  "type": "boolean"
511
440
  }
512
441
  },
513
- "required": [
514
- "style"
515
- ],
442
+ "required": ["style"],
516
443
  "additionalProperties": false
517
444
  },
518
445
  "parameterSerializeContentOptions": {
@@ -535,9 +462,7 @@
535
462
  "type": "object"
536
463
  }
537
464
  },
538
- "required": [
539
- "contentType"
540
- ],
465
+ "required": ["contentType"],
541
466
  "additionalProperties": false
542
467
  },
543
468
  "parameterSerializeOptions": {
@@ -621,9 +546,7 @@
621
546
  }
622
547
  }
623
548
  },
624
- "required": [
625
- "template"
626
- ],
549
+ "required": ["template"],
627
550
  "additionalProperties": false
628
551
  },
629
552
  "parameterSerializeConfigForSearchParams": {
@@ -706,22 +629,14 @@
706
629
  "op": {
707
630
  "description": "A mode for this parameter's operation.",
708
631
  "type": "string",
709
- "enum": [
710
- "set",
711
- "concat",
712
- "extend",
713
- "remove"
714
- ]
632
+ "enum": ["set", "concat", "extend", "remove"]
715
633
  },
716
634
  "ops": {
717
635
  "description": "A nested op list.",
718
636
  "$ref": "#/definitions/parameterOpList"
719
637
  }
720
638
  },
721
- "required": [
722
- "path",
723
- "ops"
724
- ],
639
+ "required": ["path", "ops"],
725
640
  "additionalProperties": false
726
641
  },
727
642
  "parameterOpValue": {
@@ -738,29 +653,14 @@
738
653
  "op": {
739
654
  "description": "A mode for this parameter's operation.",
740
655
  "type": "string",
741
- "enum": [
742
- "set",
743
- "concat",
744
- "extend",
745
- "remove"
746
- ]
656
+ "enum": ["set", "concat", "extend", "remove"]
747
657
  },
748
658
  "value": {
749
659
  "description": "A value to set directly at this path.",
750
- "type": [
751
- "number",
752
- "string",
753
- "boolean",
754
- "object",
755
- "array",
756
- "null"
757
- ]
660
+ "type": ["number", "string", "boolean", "object", "array", "null"]
758
661
  }
759
662
  },
760
- "required": [
761
- "path",
762
- "value"
763
- ],
663
+ "required": ["path", "value"],
764
664
  "additionalProperties": false
765
665
  },
766
666
  "parameterOpMapping": {
@@ -777,12 +677,7 @@
777
677
  "op": {
778
678
  "description": "A mode for this parameter's operation.",
779
679
  "type": "string",
780
- "enum": [
781
- "set",
782
- "concat",
783
- "extend",
784
- "remove"
785
- ]
680
+ "enum": ["set", "concat", "extend", "remove"]
786
681
  },
787
682
  "mapping": {
788
683
  "description": "Either a valid JSONPath or a directive pipeline to evaluate against the query context.",
@@ -797,10 +692,7 @@
797
692
  ]
798
693
  }
799
694
  },
800
- "required": [
801
- "path",
802
- "mapping"
803
- ],
695
+ "required": ["path", "mapping"],
804
696
  "additionalProperties": false
805
697
  },
806
698
  "parameterOpOp": {
@@ -817,18 +709,10 @@
817
709
  "op": {
818
710
  "description": "A mode for this parameter's operation.",
819
711
  "type": "string",
820
- "enum": [
821
- "set",
822
- "concat",
823
- "extend",
824
- "remove"
825
- ]
712
+ "enum": ["set", "concat", "extend", "remove"]
826
713
  }
827
714
  },
828
- "required": [
829
- "path",
830
- "op"
831
- ],
715
+ "required": ["path", "op"],
832
716
  "additionalProperties": false
833
717
  },
834
718
  "parameterOp": {
@@ -869,9 +753,7 @@
869
753
  "$ref": "#/definitions/parameterSerializeConfig"
870
754
  }
871
755
  },
872
- "required": [
873
- "ops"
874
- ],
756
+ "required": ["ops"],
875
757
  "additionalProperties": false
876
758
  },
877
759
  "parameterConfigForBody": {
@@ -885,9 +767,7 @@
885
767
  "$ref": "#/definitions/parameterSerializeConfigForBody"
886
768
  }
887
769
  },
888
- "required": [
889
- "ops"
890
- ],
770
+ "required": ["ops"],
891
771
  "additionalProperties": false
892
772
  },
893
773
  "parameterConfigForPathParams": {
@@ -901,10 +781,7 @@
901
781
  "$ref": "#/definitions/parameterSerializeConfigForPathParams"
902
782
  }
903
783
  },
904
- "required": [
905
- "ops",
906
- "serialize"
907
- ],
784
+ "required": ["ops", "serialize"],
908
785
  "additionalProperties": false
909
786
  },
910
787
  "parameterConfigForAwsLambda": {
@@ -918,10 +795,7 @@
918
795
  "$ref": "#/definitions/parameterSerializeConfigForPathParams"
919
796
  }
920
797
  },
921
- "required": [
922
- "ops",
923
- "serialize"
924
- ],
798
+ "required": ["ops", "serialize"],
925
799
  "additionalProperties": false
926
800
  },
927
801
  "parameterConfigForSearchParams": {
@@ -935,9 +809,7 @@
935
809
  "$ref": "#/definitions/parameterSerializeConfigForSearchParams"
936
810
  }
937
811
  },
938
- "required": [
939
- "ops"
940
- ],
812
+ "required": ["ops"],
941
813
  "additionalProperties": false
942
814
  },
943
815
  "parameterConfigForHeaders": {
@@ -951,9 +823,7 @@
951
823
  "$ref": "#/definitions/parameterSerializeConfigForHeaders"
952
824
  }
953
825
  },
954
- "required": [
955
- "ops"
956
- ],
826
+ "required": ["ops"],
957
827
  "additionalProperties": false
958
828
  },
959
829
  "parameterConfigForJson": {
@@ -964,9 +834,7 @@
964
834
  "$ref": "#/definitions/parameterOpList"
965
835
  }
966
836
  },
967
- "required": [
968
- "ops"
969
- ],
837
+ "required": ["ops"],
970
838
  "additionalProperties": false
971
839
  },
972
840
  "directiveConfig": {
@@ -1122,10 +990,7 @@
1122
990
  "title": "UtilResolverName",
1123
991
  "type": "string",
1124
992
  "description": "Name of the resolver function.",
1125
- "enum": [
1126
- "util:noop",
1127
- "util:wrap"
1128
- ]
993
+ "enum": ["util:noop", "util:wrap"]
1129
994
  },
1130
995
  "options": {
1131
996
  "title": "UtilResolverOptions",
@@ -1147,9 +1012,7 @@
1147
1012
  "$ref": "#/definitions/resultsMapping"
1148
1013
  }
1149
1014
  },
1150
- "required": [
1151
- "name"
1152
- ],
1015
+ "required": ["name"],
1153
1016
  "additionalProperties": false
1154
1017
  },
1155
1018
  "delegateResolver": {
@@ -1167,9 +1030,7 @@
1167
1030
  "title": "Delegate Resolver Name",
1168
1031
  "type": "string",
1169
1032
  "description": "Name of the resolver function.",
1170
- "enum": [
1171
- "delegate"
1172
- ]
1033
+ "enum": ["delegate"]
1173
1034
  },
1174
1035
  "options": {
1175
1036
  "title": "DelegateResolverOptions",
@@ -1196,10 +1057,7 @@
1196
1057
  "$ref": "#/definitions/parameterConfigForJson"
1197
1058
  }
1198
1059
  },
1199
- "required": [
1200
- "name",
1201
- "to"
1202
- ],
1060
+ "required": ["name", "to"],
1203
1061
  "additionalProperties": false
1204
1062
  },
1205
1063
  "salsifyResolver": {
@@ -1217,9 +1075,7 @@
1217
1075
  "title": "Salsify Resolver Name",
1218
1076
  "type": "string",
1219
1077
  "description": "Name of the resolver function.",
1220
- "enum": [
1221
- "salsify:listChannelProducts"
1222
- ]
1078
+ "enum": ["salsify:listChannelProducts"]
1223
1079
  },
1224
1080
  "service": {
1225
1081
  "type": "string",
@@ -1245,10 +1101,7 @@
1245
1101
  "$ref": "#/definitions/resultsMapping"
1246
1102
  }
1247
1103
  },
1248
- "required": [
1249
- "name",
1250
- "service"
1251
- ],
1104
+ "required": ["name", "service"],
1252
1105
  "additionalProperties": false
1253
1106
  },
1254
1107
  "shapedbResolver": {
@@ -1278,9 +1131,7 @@
1278
1131
  "service": {
1279
1132
  "type": "string",
1280
1133
  "description": "Internal service identifier.",
1281
- "enum": [
1282
- "shapedb"
1283
- ]
1134
+ "enum": ["shapedb"]
1284
1135
  },
1285
1136
  "options": {
1286
1137
  "title": "ShapedbResolverOptions",
@@ -1307,11 +1158,7 @@
1307
1158
  "$ref": "#/definitions/parameterConfigForJson"
1308
1159
  }
1309
1160
  },
1310
- "required": [
1311
- "name",
1312
- "service",
1313
- "shapeName"
1314
- ],
1161
+ "required": ["name", "service", "shapeName"],
1315
1162
  "additionalProperties": false
1316
1163
  },
1317
1164
  "shapedbResolverShapeNameNotRequired": {
@@ -1329,18 +1176,12 @@
1329
1176
  "title": "ShapedbResolverShapeNameNotRequiredName",
1330
1177
  "type": "string",
1331
1178
  "description": "Name of the resolver function.",
1332
- "enum": [
1333
- "shapedb:list",
1334
- "shapedb:taxonomySuggest",
1335
- "shapedb:getRelated"
1336
- ]
1179
+ "enum": ["shapedb:list", "shapedb:taxonomySuggest", "shapedb:getRelated"]
1337
1180
  },
1338
1181
  "service": {
1339
1182
  "type": "string",
1340
1183
  "description": "Internal service identifier.",
1341
- "enum": [
1342
- "shapedb"
1343
- ]
1184
+ "enum": ["shapedb"]
1344
1185
  },
1345
1186
  "options": {
1346
1187
  "title": "ShapedbResolverShapeNameNotRequiredOptions",
@@ -1367,10 +1208,7 @@
1367
1208
  "$ref": "#/definitions/resultsMapping"
1368
1209
  }
1369
1210
  },
1370
- "required": [
1371
- "name",
1372
- "service"
1373
- ],
1211
+ "required": ["name", "service"],
1374
1212
  "additionalProperties": false
1375
1213
  },
1376
1214
  "aiToolConfig": {
@@ -1384,9 +1222,7 @@
1384
1222
  "type": "string"
1385
1223
  }
1386
1224
  },
1387
- "required": [
1388
- "ref"
1389
- ],
1225
+ "required": ["ref"],
1390
1226
  "additionalProperties": false
1391
1227
  },
1392
1228
  "aiSimilarityGuardrail": {
@@ -1394,9 +1230,7 @@
1394
1230
  "type": "object",
1395
1231
  "properties": {
1396
1232
  "name": {
1397
- "enum": [
1398
- "similarity"
1399
- ]
1233
+ "enum": ["similarity"]
1400
1234
  },
1401
1235
  "shape": {
1402
1236
  "type": "string"
@@ -1408,11 +1242,7 @@
1408
1242
  "type": "number"
1409
1243
  }
1410
1244
  },
1411
- "required": [
1412
- "name",
1413
- "shape",
1414
- "defaultResponse"
1415
- ],
1245
+ "required": ["name", "shape", "defaultResponse"],
1416
1246
  "additionalProperties": false
1417
1247
  },
1418
1248
  "aiGuardrail": {
@@ -1450,9 +1280,7 @@
1450
1280
  "title": "AI Resolver Name",
1451
1281
  "type": "string",
1452
1282
  "description": "Name of the resolver function.",
1453
- "enum": [
1454
- "ai:generateText"
1455
- ]
1283
+ "enum": ["ai:generateText"]
1456
1284
  },
1457
1285
  "service": {
1458
1286
  "type": "string",
@@ -1498,12 +1326,7 @@
1498
1326
  "$ref": "#/definitions/parameterConfigForJson"
1499
1327
  }
1500
1328
  },
1501
- "required": [
1502
- "name",
1503
- "service",
1504
- "model",
1505
- "systemPrompt"
1506
- ],
1329
+ "required": ["name", "service", "model", "systemPrompt"],
1507
1330
  "additionalProperties": false
1508
1331
  },
1509
1332
  "aiEmbeddingResolverOptions": {
@@ -1530,9 +1353,7 @@
1530
1353
  "title": "AI Resolver Name",
1531
1354
  "type": "string",
1532
1355
  "description": "Name of the resolver function.",
1533
- "enum": [
1534
- "ai:createEmbedding"
1535
- ]
1356
+ "enum": ["ai:createEmbedding"]
1536
1357
  },
1537
1358
  "service": {
1538
1359
  "type": "string",
@@ -1553,11 +1374,7 @@
1553
1374
  "$ref": "#/definitions/parameterConfigForJson"
1554
1375
  }
1555
1376
  },
1556
- "required": [
1557
- "name",
1558
- "service",
1559
- "model"
1560
- ],
1377
+ "required": ["name", "service", "model"],
1561
1378
  "additionalProperties": false
1562
1379
  },
1563
1380
  "takeshapeResolver": {
@@ -1575,19 +1392,12 @@
1575
1392
  "title": "TakeshapeResolverName",
1576
1393
  "type": "string",
1577
1394
  "description": "Name of the resolver function.",
1578
- "enum": [
1579
- "takeshape:getUser",
1580
- "takeshape:search",
1581
- "takeshape:vectorSearch",
1582
- "takeshape:queryApiIndex"
1583
- ]
1395
+ "enum": ["takeshape:getUser", "takeshape:search", "takeshape:vectorSearch", "takeshape:queryApiIndex"]
1584
1396
  },
1585
1397
  "service": {
1586
1398
  "type": "string",
1587
1399
  "description": "Internal service identifier.",
1588
- "enum": [
1589
- "takeshape"
1590
- ]
1400
+ "enum": ["takeshape"]
1591
1401
  },
1592
1402
  "options": {
1593
1403
  "title": "TakeshapeResolverOptions",
@@ -1614,10 +1424,7 @@
1614
1424
  "$ref": "#/definitions/resultsMapping"
1615
1425
  }
1616
1426
  },
1617
- "required": [
1618
- "name",
1619
- "service"
1620
- ],
1427
+ "required": ["name", "service"],
1621
1428
  "additionalProperties": false
1622
1429
  },
1623
1430
  "graphqlResolver": {
@@ -1635,11 +1442,7 @@
1635
1442
  "title": "GraphqlResolverName",
1636
1443
  "type": "string",
1637
1444
  "description": "Name of the resolver function.",
1638
- "enum": [
1639
- "graphql:query",
1640
- "graphql:mutation",
1641
- "shopify:bulkQuery"
1642
- ]
1445
+ "enum": ["graphql:query", "graphql:mutation", "shopify:bulkQuery"]
1643
1446
  },
1644
1447
  "service": {
1645
1448
  "type": "string",
@@ -1710,11 +1513,7 @@
1710
1513
  "$ref": "#/definitions/parameterConfigForJson"
1711
1514
  }
1712
1515
  },
1713
- "required": [
1714
- "name",
1715
- "service",
1716
- "fieldName"
1717
- ],
1516
+ "required": ["name", "service", "fieldName"],
1718
1517
  "additionalProperties": false
1719
1518
  },
1720
1519
  "restResolver": {
@@ -1732,14 +1531,7 @@
1732
1531
  "title": "RestResolverName",
1733
1532
  "type": "string",
1734
1533
  "description": "Name of the resolver function.",
1735
- "enum": [
1736
- "rest:get",
1737
- "rest:head",
1738
- "rest:post",
1739
- "rest:put",
1740
- "rest:patch",
1741
- "rest:delete"
1742
- ]
1534
+ "enum": ["rest:get", "rest:head", "rest:post", "rest:put", "rest:patch", "rest:delete"]
1743
1535
  },
1744
1536
  "service": {
1745
1537
  "type": "string",
@@ -1823,11 +1615,7 @@
1823
1615
  "$ref": "#/definitions/parameterConfigForJson"
1824
1616
  }
1825
1617
  },
1826
- "required": [
1827
- "name",
1828
- "service",
1829
- "path"
1830
- ],
1618
+ "required": ["name", "service", "path"],
1831
1619
  "additionalProperties": false
1832
1620
  },
1833
1621
  "awsLambdaResolver": {
@@ -1845,9 +1633,7 @@
1845
1633
  "title": "AwsLambdaResolverName",
1846
1634
  "type": "string",
1847
1635
  "description": "Name of the resolver function.",
1848
- "enum": [
1849
- "awsLambda:invoke"
1850
- ]
1636
+ "enum": ["awsLambda:invoke"]
1851
1637
  },
1852
1638
  "service": {
1853
1639
  "type": "string",
@@ -1896,11 +1682,7 @@
1896
1682
  "$ref": "#/definitions/resultsMapping"
1897
1683
  }
1898
1684
  },
1899
- "required": [
1900
- "name",
1901
- "service",
1902
- "functionName"
1903
- ],
1685
+ "required": ["name", "service", "functionName"],
1904
1686
  "additionalProperties": false
1905
1687
  },
1906
1688
  "composeResolver": {
@@ -1928,9 +1710,7 @@
1928
1710
  "$ref": "#/definitions/parameterConfigForJson"
1929
1711
  }
1930
1712
  },
1931
- "required": [
1932
- "compose"
1933
- ],
1713
+ "required": ["compose"],
1934
1714
  "additionalProperties": false
1935
1715
  },
1936
1716
  "resolver": {
@@ -1993,10 +1773,7 @@
1993
1773
  "description": "Provides more detail about what the query or mutation is for. This will be displayed in the automatically-generated GraphQL API docs."
1994
1774
  }
1995
1775
  },
1996
- "required": [
1997
- "resolver",
1998
- "shape"
1999
- ],
1776
+ "required": ["resolver", "shape"],
2000
1777
  "additionalProperties": false
2001
1778
  },
2002
1779
  "propertySchema": {
@@ -2078,9 +1855,7 @@
2078
1855
  "$ref": "#/definitions/propertySchema"
2079
1856
  },
2080
1857
  {
2081
- "enum": [
2082
- false
2083
- ]
1858
+ "enum": [false]
2084
1859
  }
2085
1860
  ]
2086
1861
  },
@@ -2237,11 +2012,7 @@
2237
2012
  "type": "string"
2238
2013
  },
2239
2014
  "type": {
2240
- "enum": [
2241
- "interface",
2242
- "input",
2243
- "output"
2244
- ]
2015
+ "enum": ["interface", "input", "output"]
2245
2016
  },
2246
2017
  "interfaces": {
2247
2018
  "type": "array",
@@ -2256,16 +2027,10 @@
2256
2027
  "type": {
2257
2028
  "title": "Model Type",
2258
2029
  "type": "string",
2259
- "enum": [
2260
- "single",
2261
- "multiple",
2262
- "taxonomy"
2263
- ]
2030
+ "enum": ["single", "multiple", "taxonomy"]
2264
2031
  }
2265
2032
  },
2266
- "required": [
2267
- "type"
2268
- ],
2033
+ "required": ["type"],
2269
2034
  "additionalProperties": false
2270
2035
  },
2271
2036
  "workflow": {
@@ -2284,12 +2049,7 @@
2284
2049
  "$ref": "#/definitions/shapeSchema"
2285
2050
  }
2286
2051
  },
2287
- "required": [
2288
- "name",
2289
- "title",
2290
- "id",
2291
- "schema"
2292
- ],
2052
+ "required": ["name", "title", "id", "schema"],
2293
2053
  "additionalProperties": false
2294
2054
  },
2295
2055
  "shapeWithObjectSchema": {
@@ -2306,9 +2066,7 @@
2306
2066
  "$ref": "#/definitions/objectSchema"
2307
2067
  }
2308
2068
  },
2309
- "required": [
2310
- "schema"
2311
- ],
2069
+ "required": ["schema"],
2312
2070
  "additionalProperties": false
2313
2071
  }
2314
2072
  ]
@@ -2361,9 +2119,7 @@
2361
2119
  }
2362
2120
  },
2363
2121
  "additionalProperties": false,
2364
- "required": [
2365
- "enabled"
2366
- ]
2122
+ "required": ["enabled"]
2367
2123
  },
2368
2124
  "shapeJoin": {
2369
2125
  "title": "ShapeJoin",
@@ -2383,9 +2139,7 @@
2383
2139
  "type": "string"
2384
2140
  }
2385
2141
  },
2386
- "required": [
2387
- "resolver"
2388
- ],
2142
+ "required": ["resolver"],
2389
2143
  "additionalProperties": false
2390
2144
  },
2391
2145
  "shapeJoins": {
@@ -2419,9 +2173,7 @@
2419
2173
  }
2420
2174
  },
2421
2175
  "additionalProperties": false,
2422
- "required": [
2423
- "list"
2424
- ]
2176
+ "required": ["list"]
2425
2177
  },
2426
2178
  "cachedFragmentConfig": {
2427
2179
  "title": "Cached Fragment Config",
@@ -2461,9 +2213,7 @@
2461
2213
  }
2462
2214
  },
2463
2215
  "additionalProperties": false,
2464
- "required": [
2465
- "query"
2466
- ]
2216
+ "required": ["query"]
2467
2217
  },
2468
2218
  "storedListQueryLoaderConfig": {
2469
2219
  "title": "StoredListQueryLoaderConfig",
@@ -2492,9 +2242,7 @@
2492
2242
  }
2493
2243
  },
2494
2244
  "additionalProperties": false,
2495
- "required": [
2496
- "query"
2497
- ]
2245
+ "required": ["query"]
2498
2246
  },
2499
2247
  "getQueryLoaderConfig": {
2500
2248
  "title": "GetQueryLoaderConfig",
@@ -2512,9 +2260,7 @@
2512
2260
  }
2513
2261
  },
2514
2262
  "additionalProperties": false,
2515
- "required": [
2516
- "query"
2517
- ]
2263
+ "required": ["query"]
2518
2264
  },
2519
2265
  "paginationConfig": {
2520
2266
  "title": "Pagination Config",
@@ -2536,9 +2282,7 @@
2536
2282
  "properties": {
2537
2283
  "type": {
2538
2284
  "type": "string",
2539
- "enum": [
2540
- "cursor"
2541
- ]
2285
+ "enum": ["cursor"]
2542
2286
  },
2543
2287
  "cursorArg": {
2544
2288
  "type": "string"
@@ -2560,14 +2304,7 @@
2560
2304
  }
2561
2305
  },
2562
2306
  "additionalProperties": false,
2563
- "required": [
2564
- "type",
2565
- "cursorArg",
2566
- "cursorPath",
2567
- "pageSizeArg",
2568
- "hasMorePath",
2569
- "itemsPath"
2570
- ]
2307
+ "required": ["type", "cursorArg", "cursorPath", "pageSizeArg", "hasMorePath", "itemsPath"]
2571
2308
  },
2572
2309
  "paginationPageConfig": {
2573
2310
  "title": "Pagination Page Config",
@@ -2575,9 +2312,7 @@
2575
2312
  "properties": {
2576
2313
  "type": {
2577
2314
  "type": "string",
2578
- "enum": [
2579
- "page"
2580
- ]
2315
+ "enum": ["page"]
2581
2316
  },
2582
2317
  "pageArg": {
2583
2318
  "type": "string"
@@ -2596,12 +2331,7 @@
2596
2331
  }
2597
2332
  },
2598
2333
  "additionalProperties": false,
2599
- "required": [
2600
- "type",
2601
- "pageArg",
2602
- "itemsPath",
2603
- "pageTotalPath"
2604
- ]
2334
+ "required": ["type", "pageArg", "itemsPath", "pageTotalPath"]
2605
2335
  },
2606
2336
  "paginationOffsetConfig": {
2607
2337
  "title": "Pagination Offset Config",
@@ -2609,9 +2339,7 @@
2609
2339
  "properties": {
2610
2340
  "type": {
2611
2341
  "type": "string",
2612
- "enum": [
2613
- "offset"
2614
- ]
2342
+ "enum": ["offset"]
2615
2343
  },
2616
2344
  "offsetArg": {
2617
2345
  "type": "string"
@@ -2630,12 +2358,7 @@
2630
2358
  }
2631
2359
  },
2632
2360
  "additionalProperties": false,
2633
- "required": [
2634
- "type",
2635
- "offsetArg",
2636
- "itemsPath",
2637
- "itemTotalPath"
2638
- ]
2361
+ "required": ["type", "offsetArg", "itemsPath", "itemTotalPath"]
2639
2362
  },
2640
2363
  "cacheTriggerConfig": {
2641
2364
  "title": "CacheTriggerConfig",
@@ -2654,26 +2377,17 @@
2654
2377
  "properties": {
2655
2378
  "type": {
2656
2379
  "type": "string",
2657
- "enum": [
2658
- "schedule"
2659
- ]
2380
+ "enum": ["schedule"]
2660
2381
  },
2661
2382
  "loader": {
2662
- "enum": [
2663
- "get",
2664
- "list"
2665
- ]
2383
+ "enum": ["get", "list"]
2666
2384
  },
2667
2385
  "interval": {
2668
2386
  "type": "number"
2669
2387
  }
2670
2388
  },
2671
2389
  "additionalProperties": false,
2672
- "required": [
2673
- "type",
2674
- "loader",
2675
- "interval"
2676
- ]
2390
+ "required": ["type", "loader", "interval"]
2677
2391
  },
2678
2392
  "cacheWebhookTriggerConfig": {
2679
2393
  "title": "CacheWebhookTriggerConfig",
@@ -2681,15 +2395,10 @@
2681
2395
  "properties": {
2682
2396
  "type": {
2683
2397
  "type": "string",
2684
- "enum": [
2685
- "webhook"
2686
- ]
2398
+ "enum": ["webhook"]
2687
2399
  },
2688
2400
  "loader": {
2689
- "enum": [
2690
- "get",
2691
- "list"
2692
- ]
2401
+ "enum": ["get", "list"]
2693
2402
  },
2694
2403
  "service": {
2695
2404
  "type": "string"
@@ -2702,12 +2411,7 @@
2702
2411
  }
2703
2412
  },
2704
2413
  "additionalProperties": false,
2705
- "required": [
2706
- "type",
2707
- "loader",
2708
- "service",
2709
- "events"
2710
- ]
2414
+ "required": ["type", "loader", "service", "events"]
2711
2415
  },
2712
2416
  "formScalarConfig": {
2713
2417
  "title": "Form Scalar Config",
@@ -2718,9 +2422,7 @@
2718
2422
  }
2719
2423
  },
2720
2424
  "additionalProperties": false,
2721
- "required": [
2722
- "widget"
2723
- ]
2425
+ "required": ["widget"]
2724
2426
  },
2725
2427
  "formObjectConfig": {
2726
2428
  "title": "Form Object Config",
@@ -2757,10 +2459,7 @@
2757
2459
  }
2758
2460
  },
2759
2461
  "additionalProperties": false,
2760
- "required": [
2761
- "widget",
2762
- "items"
2763
- ]
2462
+ "required": ["widget", "items"]
2764
2463
  },
2765
2464
  "customAuthentication": {
2766
2465
  "title": "Custom Authentication",
@@ -2769,15 +2468,11 @@
2769
2468
  "properties": {
2770
2469
  "type": {
2771
2470
  "type": "string",
2772
- "enum": [
2773
- "custom"
2774
- ]
2471
+ "enum": ["custom"]
2775
2472
  }
2776
2473
  },
2777
2474
  "additionalProperties": true,
2778
- "required": [
2779
- "type"
2780
- ]
2475
+ "required": ["type"]
2781
2476
  },
2782
2477
  "searchParamsAuthentication": {
2783
2478
  "title": "Search Params Authentication",
@@ -2785,9 +2480,7 @@
2785
2480
  "properties": {
2786
2481
  "type": {
2787
2482
  "type": "string",
2788
- "enum": [
2789
- "searchParams"
2790
- ]
2483
+ "enum": ["searchParams"]
2791
2484
  },
2792
2485
  "params": {
2793
2486
  "type": "array",
@@ -2800,19 +2493,13 @@
2800
2493
  "type": "string"
2801
2494
  }
2802
2495
  },
2803
- "required": [
2804
- "name",
2805
- "value"
2806
- ],
2496
+ "required": ["name", "value"],
2807
2497
  "additionalProperties": false
2808
2498
  }
2809
2499
  }
2810
2500
  },
2811
2501
  "additionalProperties": false,
2812
- "required": [
2813
- "type",
2814
- "params"
2815
- ]
2502
+ "required": ["type", "params"]
2816
2503
  },
2817
2504
  "bearerAuthentication": {
2818
2505
  "title": "Bearer Authentication",
@@ -2820,9 +2507,7 @@
2820
2507
  "properties": {
2821
2508
  "type": {
2822
2509
  "type": "string",
2823
- "enum": [
2824
- "bearer"
2825
- ]
2510
+ "enum": ["bearer"]
2826
2511
  },
2827
2512
  "token": {
2828
2513
  "type": "string"
@@ -2835,10 +2520,7 @@
2835
2520
  }
2836
2521
  },
2837
2522
  "additionalProperties": false,
2838
- "required": [
2839
- "type",
2840
- "token"
2841
- ]
2523
+ "required": ["type", "token"]
2842
2524
  },
2843
2525
  "oauth2BearerAuthentication": {
2844
2526
  "title": "OAuth 2 Bearer Authentication",
@@ -2846,9 +2528,7 @@
2846
2528
  "properties": {
2847
2529
  "type": {
2848
2530
  "type": "string",
2849
- "enum": [
2850
- "oauth2Bearer"
2851
- ]
2531
+ "enum": ["oauth2Bearer"]
2852
2532
  },
2853
2533
  "token": {
2854
2534
  "type": "string"
@@ -2867,10 +2547,7 @@
2867
2547
  }
2868
2548
  },
2869
2549
  "additionalProperties": false,
2870
- "required": [
2871
- "type",
2872
- "token"
2873
- ]
2550
+ "required": ["type", "token"]
2874
2551
  },
2875
2552
  "basicAuthentication": {
2876
2553
  "title": "Basic Authentication",
@@ -2878,9 +2555,7 @@
2878
2555
  "properties": {
2879
2556
  "type": {
2880
2557
  "type": "string",
2881
- "enum": [
2882
- "basic"
2883
- ]
2558
+ "enum": ["basic"]
2884
2559
  },
2885
2560
  "username": {
2886
2561
  "type": "string"
@@ -2893,11 +2568,7 @@
2893
2568
  }
2894
2569
  },
2895
2570
  "additionalProperties": false,
2896
- "required": [
2897
- "type",
2898
- "username",
2899
- "password"
2900
- ]
2571
+ "required": ["type", "username", "password"]
2901
2572
  },
2902
2573
  "oauth2Authentication": {
2903
2574
  "title": "OAuth 2 Authentication",
@@ -2905,16 +2576,11 @@
2905
2576
  "properties": {
2906
2577
  "type": {
2907
2578
  "type": "string",
2908
- "enum": [
2909
- "oauth2"
2910
- ]
2579
+ "enum": ["oauth2"]
2911
2580
  },
2912
2581
  "grantType": {
2913
2582
  "type": "string",
2914
- "enum": [
2915
- "authorizationCode",
2916
- "clientCredentials"
2917
- ]
2583
+ "enum": ["authorizationCode", "clientCredentials"]
2918
2584
  },
2919
2585
  "authorizationUrl": {
2920
2586
  "type": "string"
@@ -2948,11 +2614,7 @@
2948
2614
  }
2949
2615
  },
2950
2616
  "additionalProperties": false,
2951
- "required": [
2952
- "type",
2953
- "grantType",
2954
- "clientId"
2955
- ]
2617
+ "required": ["type", "grantType", "clientId"]
2956
2618
  },
2957
2619
  "awsAuthentication": {
2958
2620
  "title": "AWS Authentication",
@@ -2960,9 +2622,7 @@
2960
2622
  "properties": {
2961
2623
  "type": {
2962
2624
  "type": "string",
2963
- "enum": [
2964
- "aws"
2965
- ]
2625
+ "enum": ["aws"]
2966
2626
  },
2967
2627
  "awsAccessKeyId": {
2968
2628
  "type": "string"
@@ -2972,11 +2632,7 @@
2972
2632
  }
2973
2633
  },
2974
2634
  "additionalProperties": false,
2975
- "required": [
2976
- "type",
2977
- "awsAccessKeyId",
2978
- "awsSecretAccessKey"
2979
- ]
2635
+ "required": ["type", "awsAccessKeyId", "awsSecretAccessKey"]
2980
2636
  },
2981
2637
  "serviceAuthentication": {
2982
2638
  "title": "Service Authentication",
@@ -3013,11 +2669,7 @@
3013
2669
  "title": "Check Name",
3014
2670
  "description": "The name of a health check to run",
3015
2671
  "type": "string",
3016
- "enum": [
3017
- "graphqlIntrospection",
3018
- "ping",
3019
- "none"
3020
- ]
2672
+ "enum": ["graphqlIntrospection", "ping", "none"]
3021
2673
  },
3022
2674
  "endpoint": {
3023
2675
  "title": "Endpoint",
@@ -3028,13 +2680,7 @@
3028
2680
  "title": "Request Method",
3029
2681
  "description": "A custom method to use for the health check request.",
3030
2682
  "type": "string",
3031
- "enum": [
3032
- "GET",
3033
- "POST",
3034
- "PUT",
3035
- "PATCH",
3036
- "DELETE"
3037
- ]
2683
+ "enum": ["GET", "POST", "PUT", "PATCH", "DELETE"]
3038
2684
  },
3039
2685
  "requestHeaders": {
3040
2686
  "title": "Request Headers",
@@ -3061,11 +2707,7 @@
3061
2707
  "title": "Request Body Format",
3062
2708
  "description": "A custom body to send along with the ping request.",
3063
2709
  "type": "string",
3064
- "enum": [
3065
- "string",
3066
- "form",
3067
- "json"
3068
- ]
2710
+ "enum": ["string", "form", "json"]
3069
2711
  },
3070
2712
  "requestTimeout": {
3071
2713
  "title": "Request Timeout",
@@ -3082,25 +2724,14 @@
3082
2724
  "maximum": 399
3083
2725
  }
3084
2726
  },
3085
- "required": [
3086
- "checkName"
3087
- ],
2727
+ "required": ["checkName"],
3088
2728
  "additionalProperties": false
3089
2729
  },
3090
2730
  "serviceType": {
3091
2731
  "title": "Service Type",
3092
2732
  "description": "The general type of this service, specifying how and where it will be utilized.",
3093
2733
  "type": "string",
3094
- "enum": [
3095
- "deployment",
3096
- "authentication",
3097
- "takeshape",
3098
- "rest",
3099
- "graphql",
3100
- "openapi",
3101
- "aws",
3102
- "unknown"
3103
- ]
2734
+ "enum": ["deployment", "authentication", "takeshape", "rest", "graphql", "openapi", "aws", "unknown"]
3104
2735
  },
3105
2736
  "serviceConfig": {
3106
2737
  "title": "Service Config",
@@ -3127,17 +2758,7 @@
3127
2758
  },
3128
2759
  "authenticationType": {
3129
2760
  "type": "string",
3130
- "enum": [
3131
- "oauth2",
3132
- "basic",
3133
- "bearer",
3134
- "searchParams",
3135
- "oauth2Bearer",
3136
- "custom",
3137
- "aws",
3138
- "none",
3139
- "unknown"
3140
- ]
2761
+ "enum": ["oauth2", "basic", "bearer", "searchParams", "oauth2Bearer", "custom", "aws", "none", "unknown"]
3141
2762
  },
3142
2763
  "authentication": {
3143
2764
  "$ref": "#/definitions/serviceAuthentication"
@@ -3153,13 +2774,7 @@
3153
2774
  "description": "Configuration options passed to and handled by the provider."
3154
2775
  }
3155
2776
  },
3156
- "required": [
3157
- "id",
3158
- "title",
3159
- "provider",
3160
- "serviceType",
3161
- "authenticationType"
3162
- ],
2777
+ "required": ["id", "title", "provider", "serviceType", "authenticationType"],
3163
2778
  "additionalProperties": false
3164
2779
  },
3165
2780
  "storedServiceConfig": {
@@ -3187,17 +2802,7 @@
3187
2802
  },
3188
2803
  "authenticationType": {
3189
2804
  "type": "string",
3190
- "enum": [
3191
- "oauth2",
3192
- "basic",
3193
- "bearer",
3194
- "searchParams",
3195
- "oauth2Bearer",
3196
- "custom",
3197
- "aws",
3198
- "none",
3199
- "unknown"
3200
- ]
2805
+ "enum": ["oauth2", "basic", "bearer", "searchParams", "oauth2Bearer", "custom", "aws", "none", "unknown"]
3201
2806
  },
3202
2807
  "authentication": {
3203
2808
  "type": "string"
@@ -3213,13 +2818,7 @@
3213
2818
  "description": "Configuration options passed to and handled by the provider."
3214
2819
  }
3215
2820
  },
3216
- "required": [
3217
- "id",
3218
- "title",
3219
- "provider",
3220
- "serviceType",
3221
- "authenticationType"
3222
- ],
2821
+ "required": ["id", "title", "provider", "serviceType", "authenticationType"],
3223
2822
  "additionalProperties": false
3224
2823
  },
3225
2824
  "anyServiceConfig": {
@@ -3277,13 +2876,7 @@
3277
2876
  "description": "machine-readable id"
3278
2877
  }
3279
2878
  },
3280
- "required": [
3281
- "name",
3282
- "title",
3283
- "color",
3284
- "live",
3285
- "key"
3286
- ],
2879
+ "required": ["name", "title", "color", "live", "key"],
3287
2880
  "additionalProperties": false
3288
2881
  },
3289
2882
  "workflow": {
@@ -3310,11 +2903,7 @@
3310
2903
  "minItems": 1
3311
2904
  }
3312
2905
  },
3313
- "required": [
3314
- "name",
3315
- "title",
3316
- "steps"
3317
- ]
2906
+ "required": ["name", "title", "steps"]
3318
2907
  },
3319
2908
  "workflowMap": {
3320
2909
  "title": "Workflow Map",
@@ -3342,9 +2931,7 @@
3342
2931
  "$ref": "#/definitions/formConfig"
3343
2932
  }
3344
2933
  },
3345
- "required": [
3346
- "default"
3347
- ]
2934
+ "required": ["default"]
3348
2935
  }
3349
2936
  },
3350
2937
  "properties": {
@@ -3357,9 +2944,7 @@
3357
2944
  },
3358
2945
  "schemaVersion": {
3359
2946
  "type": "string",
3360
- "enum": [
3361
- "3.44.0"
3362
- ],
2947
+ "enum": ["3.44.0"],
3363
2948
  "description": "The version of the schema format your project is using. We increase the version as we make breaking changes to the schema format."
3364
2949
  },
3365
2950
  "projectId": {