@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",
@@ -122,9 +108,7 @@
122
108
  }
123
109
  },
124
110
  "additionalProperties": false,
125
- "required": [
126
- "enum"
127
- ]
111
+ "required": ["enum"]
128
112
  },
129
113
  "objectSchema": {
130
114
  "title": "Object Schema",
@@ -146,10 +130,7 @@
146
130
  }
147
131
  }
148
132
  },
149
- "required": [
150
- "type",
151
- "properties"
152
- ]
133
+ "required": ["type", "properties"]
153
134
  }
154
135
  ]
155
136
  },
@@ -175,26 +156,15 @@
175
156
  "type": "object",
176
157
  "properties": {
177
158
  "type": {
178
- "enum": [
179
- "boolean",
180
- "integer",
181
- "number",
182
- "string",
183
- "object"
184
- ]
159
+ "enum": ["boolean", "integer", "number", "string", "object"]
185
160
  }
186
161
  },
187
- "required": [
188
- "type"
189
- ]
162
+ "required": ["type"]
190
163
  }
191
164
  ]
192
165
  }
193
166
  },
194
- "required": [
195
- "type",
196
- "items"
197
- ]
167
+ "required": ["type", "items"]
198
168
  }
199
169
  ]
200
170
  },
@@ -224,9 +194,7 @@
224
194
  "$ref": "#/definitions/objectOrRefArray"
225
195
  }
226
196
  },
227
- "required": [
228
- "allOf"
229
- ],
197
+ "required": ["allOf"],
230
198
  "additionalProperties": false
231
199
  },
232
200
  "allOfSchema": {
@@ -242,9 +210,7 @@
242
210
  "$ref": "#/definitions/objectOrRefArray"
243
211
  }
244
212
  },
245
- "required": [
246
- "allOf"
247
- ]
213
+ "required": ["allOf"]
248
214
  }
249
215
  ]
250
216
  },
@@ -256,9 +222,7 @@
256
222
  "$ref": "#/definitions/objectOrRefArray"
257
223
  }
258
224
  },
259
- "required": [
260
- "extends"
261
- ],
225
+ "required": ["extends"],
262
226
  "additionalProperties": false
263
227
  },
264
228
  "extendsSchema": {
@@ -274,9 +238,7 @@
274
238
  "$ref": "#/definitions/objectOrRefArray"
275
239
  }
276
240
  },
277
- "required": [
278
- "extends"
279
- ]
241
+ "required": ["extends"]
280
242
  }
281
243
  ]
282
244
  },
@@ -288,9 +250,7 @@
288
250
  "$ref": "#/definitions/objectOrRefArray"
289
251
  }
290
252
  },
291
- "required": [
292
- "oneOf"
293
- ],
253
+ "required": ["oneOf"],
294
254
  "additionalProperties": false
295
255
  },
296
256
  "oneOfSchema": {
@@ -306,9 +266,7 @@
306
266
  "$ref": "#/definitions/objectOrRefArray"
307
267
  }
308
268
  },
309
- "required": [
310
- "oneOf"
311
- ],
269
+ "required": ["oneOf"],
312
270
  "additionalProperties": false
313
271
  }
314
272
  ]
@@ -391,16 +349,7 @@
391
349
  "properties": {
392
350
  "style": {
393
351
  "type": "string",
394
- "enum": [
395
- "simple",
396
- "label",
397
- "matrix",
398
- "form",
399
- "spaceDelimited",
400
- "pipeDelimited",
401
- "deepObject",
402
- "none"
403
- ]
352
+ "enum": ["simple", "label", "matrix", "form", "spaceDelimited", "pipeDelimited", "deepObject", "none"]
404
353
  },
405
354
  "explode": {
406
355
  "type": "boolean"
@@ -416,9 +365,7 @@
416
365
  "type": "boolean"
417
366
  }
418
367
  },
419
- "required": [
420
- "style"
421
- ],
368
+ "required": ["style"],
422
369
  "additionalProperties": false
423
370
  },
424
371
  "parameterSerializeStyleOptionsForPathParams": {
@@ -428,12 +375,7 @@
428
375
  "properties": {
429
376
  "style": {
430
377
  "type": "string",
431
- "enum": [
432
- "simple",
433
- "label",
434
- "matrix",
435
- "none"
436
- ]
378
+ "enum": ["simple", "label", "matrix", "none"]
437
379
  },
438
380
  "explode": {
439
381
  "type": "boolean"
@@ -449,9 +391,7 @@
449
391
  "type": "boolean"
450
392
  }
451
393
  },
452
- "required": [
453
- "style"
454
- ],
394
+ "required": ["style"],
455
395
  "additionalProperties": false
456
396
  },
457
397
  "parameterSerializeStyleOptionsForSearchParams": {
@@ -461,13 +401,7 @@
461
401
  "properties": {
462
402
  "style": {
463
403
  "type": "string",
464
- "enum": [
465
- "form",
466
- "spaceDelimited",
467
- "pipeDelimited",
468
- "deepObject",
469
- "none"
470
- ]
404
+ "enum": ["form", "spaceDelimited", "pipeDelimited", "deepObject", "none"]
471
405
  },
472
406
  "explode": {
473
407
  "type": "boolean"
@@ -483,9 +417,7 @@
483
417
  "type": "boolean"
484
418
  }
485
419
  },
486
- "required": [
487
- "style"
488
- ],
420
+ "required": ["style"],
489
421
  "additionalProperties": false
490
422
  },
491
423
  "parameterSerializeStyleOptionsForHeaders": {
@@ -495,18 +427,13 @@
495
427
  "properties": {
496
428
  "style": {
497
429
  "type": "string",
498
- "enum": [
499
- "simple",
500
- "none"
501
- ]
430
+ "enum": ["simple", "none"]
502
431
  },
503
432
  "explode": {
504
433
  "type": "boolean"
505
434
  }
506
435
  },
507
- "required": [
508
- "style"
509
- ],
436
+ "required": ["style"],
510
437
  "additionalProperties": false
511
438
  },
512
439
  "parameterSerializeContentOptions": {
@@ -529,9 +456,7 @@
529
456
  "type": "object"
530
457
  }
531
458
  },
532
- "required": [
533
- "contentType"
534
- ],
459
+ "required": ["contentType"],
535
460
  "additionalProperties": false
536
461
  },
537
462
  "parameterSerializeOptions": {
@@ -615,9 +540,7 @@
615
540
  }
616
541
  }
617
542
  },
618
- "required": [
619
- "template"
620
- ],
543
+ "required": ["template"],
621
544
  "additionalProperties": false
622
545
  },
623
546
  "parameterSerializeConfigForSearchParams": {
@@ -700,22 +623,14 @@
700
623
  "op": {
701
624
  "description": "A mode for this parameter's operation.",
702
625
  "type": "string",
703
- "enum": [
704
- "set",
705
- "concat",
706
- "extend",
707
- "remove"
708
- ]
626
+ "enum": ["set", "concat", "extend", "remove"]
709
627
  },
710
628
  "ops": {
711
629
  "description": "A nested op list.",
712
630
  "$ref": "#/definitions/parameterOpList"
713
631
  }
714
632
  },
715
- "required": [
716
- "path",
717
- "ops"
718
- ],
633
+ "required": ["path", "ops"],
719
634
  "additionalProperties": false
720
635
  },
721
636
  "parameterOpValue": {
@@ -732,29 +647,14 @@
732
647
  "op": {
733
648
  "description": "A mode for this parameter's operation.",
734
649
  "type": "string",
735
- "enum": [
736
- "set",
737
- "concat",
738
- "extend",
739
- "remove"
740
- ]
650
+ "enum": ["set", "concat", "extend", "remove"]
741
651
  },
742
652
  "value": {
743
653
  "description": "A value to set directly at this path.",
744
- "type": [
745
- "number",
746
- "string",
747
- "boolean",
748
- "object",
749
- "array",
750
- "null"
751
- ]
654
+ "type": ["number", "string", "boolean", "object", "array", "null"]
752
655
  }
753
656
  },
754
- "required": [
755
- "path",
756
- "value"
757
- ],
657
+ "required": ["path", "value"],
758
658
  "additionalProperties": false
759
659
  },
760
660
  "parameterOpMapping": {
@@ -771,12 +671,7 @@
771
671
  "op": {
772
672
  "description": "A mode for this parameter's operation.",
773
673
  "type": "string",
774
- "enum": [
775
- "set",
776
- "concat",
777
- "extend",
778
- "remove"
779
- ]
674
+ "enum": ["set", "concat", "extend", "remove"]
780
675
  },
781
676
  "mapping": {
782
677
  "description": "Either a valid JSONPath or a directive pipeline to evaluate against the query context.",
@@ -791,10 +686,7 @@
791
686
  ]
792
687
  }
793
688
  },
794
- "required": [
795
- "path",
796
- "mapping"
797
- ],
689
+ "required": ["path", "mapping"],
798
690
  "additionalProperties": false
799
691
  },
800
692
  "parameterOpOp": {
@@ -811,18 +703,10 @@
811
703
  "op": {
812
704
  "description": "A mode for this parameter's operation.",
813
705
  "type": "string",
814
- "enum": [
815
- "set",
816
- "concat",
817
- "extend",
818
- "remove"
819
- ]
706
+ "enum": ["set", "concat", "extend", "remove"]
820
707
  }
821
708
  },
822
- "required": [
823
- "path",
824
- "op"
825
- ],
709
+ "required": ["path", "op"],
826
710
  "additionalProperties": false
827
711
  },
828
712
  "parameterOp": {
@@ -863,9 +747,7 @@
863
747
  "$ref": "#/definitions/parameterSerializeConfig"
864
748
  }
865
749
  },
866
- "required": [
867
- "ops"
868
- ],
750
+ "required": ["ops"],
869
751
  "additionalProperties": false
870
752
  },
871
753
  "parameterConfigForBody": {
@@ -879,9 +761,7 @@
879
761
  "$ref": "#/definitions/parameterSerializeConfigForBody"
880
762
  }
881
763
  },
882
- "required": [
883
- "ops"
884
- ],
764
+ "required": ["ops"],
885
765
  "additionalProperties": false
886
766
  },
887
767
  "parameterConfigForPathParams": {
@@ -895,10 +775,7 @@
895
775
  "$ref": "#/definitions/parameterSerializeConfigForPathParams"
896
776
  }
897
777
  },
898
- "required": [
899
- "ops",
900
- "serialize"
901
- ],
778
+ "required": ["ops", "serialize"],
902
779
  "additionalProperties": false
903
780
  },
904
781
  "parameterConfigForAwsLambda": {
@@ -912,10 +789,7 @@
912
789
  "$ref": "#/definitions/parameterSerializeConfigForPathParams"
913
790
  }
914
791
  },
915
- "required": [
916
- "ops",
917
- "serialize"
918
- ],
792
+ "required": ["ops", "serialize"],
919
793
  "additionalProperties": false
920
794
  },
921
795
  "parameterConfigForSearchParams": {
@@ -929,9 +803,7 @@
929
803
  "$ref": "#/definitions/parameterSerializeConfigForSearchParams"
930
804
  }
931
805
  },
932
- "required": [
933
- "ops"
934
- ],
806
+ "required": ["ops"],
935
807
  "additionalProperties": false
936
808
  },
937
809
  "parameterConfigForHeaders": {
@@ -945,9 +817,7 @@
945
817
  "$ref": "#/definitions/parameterSerializeConfigForHeaders"
946
818
  }
947
819
  },
948
- "required": [
949
- "ops"
950
- ],
820
+ "required": ["ops"],
951
821
  "additionalProperties": false
952
822
  },
953
823
  "parameterConfigForJson": {
@@ -958,9 +828,7 @@
958
828
  "$ref": "#/definitions/parameterOpList"
959
829
  }
960
830
  },
961
- "required": [
962
- "ops"
963
- ],
831
+ "required": ["ops"],
964
832
  "additionalProperties": false
965
833
  },
966
834
  "directiveConfig": {
@@ -1110,10 +978,7 @@
1110
978
  "title": "UtilResolverName",
1111
979
  "type": "string",
1112
980
  "description": "Name of the resolver function.",
1113
- "enum": [
1114
- "util:noop",
1115
- "util:wrap"
1116
- ]
981
+ "enum": ["util:noop", "util:wrap"]
1117
982
  },
1118
983
  "options": {
1119
984
  "title": "UtilResolverOptions",
@@ -1135,9 +1000,7 @@
1135
1000
  "$ref": "#/definitions/resultsMapping"
1136
1001
  }
1137
1002
  },
1138
- "required": [
1139
- "name"
1140
- ],
1003
+ "required": ["name"],
1141
1004
  "additionalProperties": false
1142
1005
  },
1143
1006
  "delegateResolver": {
@@ -1155,9 +1018,7 @@
1155
1018
  "title": "Delegate Resolver Name",
1156
1019
  "type": "string",
1157
1020
  "description": "Name of the resolver function.",
1158
- "enum": [
1159
- "delegate"
1160
- ]
1021
+ "enum": ["delegate"]
1161
1022
  },
1162
1023
  "options": {
1163
1024
  "title": "DelegateResolverOptions",
@@ -1184,10 +1045,7 @@
1184
1045
  "$ref": "#/definitions/parameterConfigForJson"
1185
1046
  }
1186
1047
  },
1187
- "required": [
1188
- "name",
1189
- "to"
1190
- ],
1048
+ "required": ["name", "to"],
1191
1049
  "additionalProperties": false
1192
1050
  },
1193
1051
  "salsifyResolver": {
@@ -1205,9 +1063,7 @@
1205
1063
  "title": "Salsify Resolver Name",
1206
1064
  "type": "string",
1207
1065
  "description": "Name of the resolver function.",
1208
- "enum": [
1209
- "salsify:listChannelProducts"
1210
- ]
1066
+ "enum": ["salsify:listChannelProducts"]
1211
1067
  },
1212
1068
  "service": {
1213
1069
  "type": "string",
@@ -1233,10 +1089,7 @@
1233
1089
  "$ref": "#/definitions/resultsMapping"
1234
1090
  }
1235
1091
  },
1236
- "required": [
1237
- "name",
1238
- "service"
1239
- ],
1092
+ "required": ["name", "service"],
1240
1093
  "additionalProperties": false
1241
1094
  },
1242
1095
  "shapedbResolver": {
@@ -1266,9 +1119,7 @@
1266
1119
  "service": {
1267
1120
  "type": "string",
1268
1121
  "description": "Internal service identifier.",
1269
- "enum": [
1270
- "shapedb"
1271
- ]
1122
+ "enum": ["shapedb"]
1272
1123
  },
1273
1124
  "options": {
1274
1125
  "title": "ShapedbResolverOptions",
@@ -1295,11 +1146,7 @@
1295
1146
  "$ref": "#/definitions/parameterConfigForJson"
1296
1147
  }
1297
1148
  },
1298
- "required": [
1299
- "name",
1300
- "service",
1301
- "shapeName"
1302
- ],
1149
+ "required": ["name", "service", "shapeName"],
1303
1150
  "additionalProperties": false
1304
1151
  },
1305
1152
  "shapedbResolverShapeNameNotRequired": {
@@ -1317,18 +1164,12 @@
1317
1164
  "title": "ShapedbResolverShapeNameNotRequiredName",
1318
1165
  "type": "string",
1319
1166
  "description": "Name of the resolver function.",
1320
- "enum": [
1321
- "shapedb:list",
1322
- "shapedb:taxonomySuggest",
1323
- "shapedb:getRelated"
1324
- ]
1167
+ "enum": ["shapedb:list", "shapedb:taxonomySuggest", "shapedb:getRelated"]
1325
1168
  },
1326
1169
  "service": {
1327
1170
  "type": "string",
1328
1171
  "description": "Internal service identifier.",
1329
- "enum": [
1330
- "shapedb"
1331
- ]
1172
+ "enum": ["shapedb"]
1332
1173
  },
1333
1174
  "options": {
1334
1175
  "title": "ShapedbResolverShapeNameNotRequiredOptions",
@@ -1355,10 +1196,7 @@
1355
1196
  "$ref": "#/definitions/resultsMapping"
1356
1197
  }
1357
1198
  },
1358
- "required": [
1359
- "name",
1360
- "service"
1361
- ],
1199
+ "required": ["name", "service"],
1362
1200
  "additionalProperties": false
1363
1201
  },
1364
1202
  "takeshapeResolver": {
@@ -1376,18 +1214,12 @@
1376
1214
  "title": "TakeshapeResolverName",
1377
1215
  "type": "string",
1378
1216
  "description": "Name of the resolver function.",
1379
- "enum": [
1380
- "takeshape:getUser",
1381
- "takeshape:search",
1382
- "takeshape:queryApiIndex"
1383
- ]
1217
+ "enum": ["takeshape:getUser", "takeshape:search", "takeshape:queryApiIndex"]
1384
1218
  },
1385
1219
  "service": {
1386
1220
  "type": "string",
1387
1221
  "description": "Internal service identifier.",
1388
- "enum": [
1389
- "takeshape"
1390
- ]
1222
+ "enum": ["takeshape"]
1391
1223
  },
1392
1224
  "options": {
1393
1225
  "title": "TakeshapeResolverOptions",
@@ -1414,10 +1246,7 @@
1414
1246
  "$ref": "#/definitions/resultsMapping"
1415
1247
  }
1416
1248
  },
1417
- "required": [
1418
- "name",
1419
- "service"
1420
- ],
1249
+ "required": ["name", "service"],
1421
1250
  "additionalProperties": false
1422
1251
  },
1423
1252
  "graphqlResolver": {
@@ -1435,11 +1264,7 @@
1435
1264
  "title": "GraphqlResolverName",
1436
1265
  "type": "string",
1437
1266
  "description": "Name of the resolver function.",
1438
- "enum": [
1439
- "graphql:query",
1440
- "graphql:mutation",
1441
- "shopify:bulkQuery"
1442
- ]
1267
+ "enum": ["graphql:query", "graphql:mutation", "shopify:bulkQuery"]
1443
1268
  },
1444
1269
  "service": {
1445
1270
  "type": "string",
@@ -1507,11 +1332,7 @@
1507
1332
  "$ref": "#/definitions/parameterConfigForJson"
1508
1333
  }
1509
1334
  },
1510
- "required": [
1511
- "name",
1512
- "service",
1513
- "fieldName"
1514
- ],
1335
+ "required": ["name", "service", "fieldName"],
1515
1336
  "additionalProperties": false
1516
1337
  },
1517
1338
  "restResolver": {
@@ -1529,14 +1350,7 @@
1529
1350
  "title": "RestResolverName",
1530
1351
  "type": "string",
1531
1352
  "description": "Name of the resolver function.",
1532
- "enum": [
1533
- "rest:get",
1534
- "rest:head",
1535
- "rest:post",
1536
- "rest:put",
1537
- "rest:patch",
1538
- "rest:delete"
1539
- ]
1353
+ "enum": ["rest:get", "rest:head", "rest:post", "rest:put", "rest:patch", "rest:delete"]
1540
1354
  },
1541
1355
  "service": {
1542
1356
  "type": "string",
@@ -1617,11 +1431,7 @@
1617
1431
  "$ref": "#/definitions/parameterConfigForJson"
1618
1432
  }
1619
1433
  },
1620
- "required": [
1621
- "name",
1622
- "service",
1623
- "path"
1624
- ],
1434
+ "required": ["name", "service", "path"],
1625
1435
  "additionalProperties": false
1626
1436
  },
1627
1437
  "awsLambdaResolver": {
@@ -1639,9 +1449,7 @@
1639
1449
  "title": "AwsLambdaResolverName",
1640
1450
  "type": "string",
1641
1451
  "description": "Name of the resolver function.",
1642
- "enum": [
1643
- "awsLambda:invoke"
1644
- ]
1452
+ "enum": ["awsLambda:invoke"]
1645
1453
  },
1646
1454
  "service": {
1647
1455
  "type": "string",
@@ -1690,11 +1498,7 @@
1690
1498
  "$ref": "#/definitions/resultsMapping"
1691
1499
  }
1692
1500
  },
1693
- "required": [
1694
- "name",
1695
- "service",
1696
- "functionName"
1697
- ],
1501
+ "required": ["name", "service", "functionName"],
1698
1502
  "additionalProperties": false
1699
1503
  },
1700
1504
  "composeResolver": {
@@ -1722,9 +1526,7 @@
1722
1526
  "$ref": "#/definitions/parameterConfigForJson"
1723
1527
  }
1724
1528
  },
1725
- "required": [
1726
- "compose"
1727
- ],
1529
+ "required": ["compose"],
1728
1530
  "additionalProperties": false
1729
1531
  },
1730
1532
  "resolver": {
@@ -1787,10 +1589,7 @@
1787
1589
  "description": "Provides more detail about what the query or mutation is for. This will be displayed in the automatically-generated GraphQL API docs."
1788
1590
  }
1789
1591
  },
1790
- "required": [
1791
- "resolver",
1792
- "shape"
1793
- ],
1592
+ "required": ["resolver", "shape"],
1794
1593
  "additionalProperties": false
1795
1594
  },
1796
1595
  "propertySchema": {
@@ -1872,9 +1671,7 @@
1872
1671
  "$ref": "#/definitions/propertySchema"
1873
1672
  },
1874
1673
  {
1875
- "enum": [
1876
- false
1877
- ]
1674
+ "enum": [false]
1878
1675
  }
1879
1676
  ]
1880
1677
  },
@@ -2031,11 +1828,7 @@
2031
1828
  "type": "string"
2032
1829
  },
2033
1830
  "type": {
2034
- "enum": [
2035
- "interface",
2036
- "input",
2037
- "output"
2038
- ]
1831
+ "enum": ["interface", "input", "output"]
2039
1832
  },
2040
1833
  "interfaces": {
2041
1834
  "type": "array",
@@ -2050,16 +1843,10 @@
2050
1843
  "type": {
2051
1844
  "title": "Model Type",
2052
1845
  "type": "string",
2053
- "enum": [
2054
- "single",
2055
- "multiple",
2056
- "taxonomy"
2057
- ]
1846
+ "enum": ["single", "multiple", "taxonomy"]
2058
1847
  }
2059
1848
  },
2060
- "required": [
2061
- "type"
2062
- ],
1849
+ "required": ["type"],
2063
1850
  "additionalProperties": false
2064
1851
  },
2065
1852
  "workflow": {
@@ -2075,12 +1862,7 @@
2075
1862
  "$ref": "#/definitions/shapeSchema"
2076
1863
  }
2077
1864
  },
2078
- "required": [
2079
- "name",
2080
- "title",
2081
- "id",
2082
- "schema"
2083
- ],
1865
+ "required": ["name", "title", "id", "schema"],
2084
1866
  "additionalProperties": false
2085
1867
  },
2086
1868
  "shapeWithObjectSchema": {
@@ -2097,9 +1879,7 @@
2097
1879
  "$ref": "#/definitions/objectSchema"
2098
1880
  }
2099
1881
  },
2100
- "required": [
2101
- "schema"
2102
- ],
1882
+ "required": ["schema"],
2103
1883
  "additionalProperties": false
2104
1884
  }
2105
1885
  ]
@@ -2147,9 +1927,7 @@
2147
1927
  }
2148
1928
  },
2149
1929
  "additionalProperties": false,
2150
- "required": [
2151
- "enabled"
2152
- ]
1930
+ "required": ["enabled"]
2153
1931
  },
2154
1932
  "shapeLoaders": {
2155
1933
  "title": "ShapeLoaders",
@@ -2173,9 +1951,7 @@
2173
1951
  }
2174
1952
  },
2175
1953
  "additionalProperties": false,
2176
- "required": [
2177
- "list"
2178
- ]
1954
+ "required": ["list"]
2179
1955
  },
2180
1956
  "cachedFragmentConfig": {
2181
1957
  "title": "Cached Fragment Config",
@@ -2212,9 +1988,7 @@
2212
1988
  }
2213
1989
  },
2214
1990
  "additionalProperties": false,
2215
- "required": [
2216
- "query"
2217
- ]
1991
+ "required": ["query"]
2218
1992
  },
2219
1993
  "storedListQueryLoaderConfig": {
2220
1994
  "title": "StoredListQueryLoaderConfig",
@@ -2243,9 +2017,7 @@
2243
2017
  }
2244
2018
  },
2245
2019
  "additionalProperties": false,
2246
- "required": [
2247
- "query"
2248
- ]
2020
+ "required": ["query"]
2249
2021
  },
2250
2022
  "getQueryLoaderConfig": {
2251
2023
  "title": "GetQueryLoaderConfig",
@@ -2263,9 +2035,7 @@
2263
2035
  }
2264
2036
  },
2265
2037
  "additionalProperties": false,
2266
- "required": [
2267
- "query"
2268
- ]
2038
+ "required": ["query"]
2269
2039
  },
2270
2040
  "paginationConfig": {
2271
2041
  "title": "Pagination Config",
@@ -2287,9 +2057,7 @@
2287
2057
  "properties": {
2288
2058
  "type": {
2289
2059
  "type": "string",
2290
- "enum": [
2291
- "cursor"
2292
- ]
2060
+ "enum": ["cursor"]
2293
2061
  },
2294
2062
  "cursorArg": {
2295
2063
  "type": "string"
@@ -2311,14 +2079,7 @@
2311
2079
  }
2312
2080
  },
2313
2081
  "additionalProperties": false,
2314
- "required": [
2315
- "type",
2316
- "cursorArg",
2317
- "cursorPath",
2318
- "pageSizeArg",
2319
- "hasMorePath",
2320
- "itemsPath"
2321
- ]
2082
+ "required": ["type", "cursorArg", "cursorPath", "pageSizeArg", "hasMorePath", "itemsPath"]
2322
2083
  },
2323
2084
  "paginationPageConfig": {
2324
2085
  "title": "Pagination Page Config",
@@ -2326,9 +2087,7 @@
2326
2087
  "properties": {
2327
2088
  "type": {
2328
2089
  "type": "string",
2329
- "enum": [
2330
- "page"
2331
- ]
2090
+ "enum": ["page"]
2332
2091
  },
2333
2092
  "pageArg": {
2334
2093
  "type": "string"
@@ -2347,12 +2106,7 @@
2347
2106
  }
2348
2107
  },
2349
2108
  "additionalProperties": false,
2350
- "required": [
2351
- "type",
2352
- "pageArg",
2353
- "itemsPath",
2354
- "pageTotalPath"
2355
- ]
2109
+ "required": ["type", "pageArg", "itemsPath", "pageTotalPath"]
2356
2110
  },
2357
2111
  "paginationOffsetConfig": {
2358
2112
  "title": "Pagination Offset Config",
@@ -2360,9 +2114,7 @@
2360
2114
  "properties": {
2361
2115
  "type": {
2362
2116
  "type": "string",
2363
- "enum": [
2364
- "offset"
2365
- ]
2117
+ "enum": ["offset"]
2366
2118
  },
2367
2119
  "offsetArg": {
2368
2120
  "type": "string"
@@ -2381,12 +2133,7 @@
2381
2133
  }
2382
2134
  },
2383
2135
  "additionalProperties": false,
2384
- "required": [
2385
- "type",
2386
- "offsetArg",
2387
- "itemsPath",
2388
- "itemTotalPath"
2389
- ]
2136
+ "required": ["type", "offsetArg", "itemsPath", "itemTotalPath"]
2390
2137
  },
2391
2138
  "cacheTriggerConfig": {
2392
2139
  "title": "CacheTriggerConfig",
@@ -2405,26 +2152,17 @@
2405
2152
  "properties": {
2406
2153
  "type": {
2407
2154
  "type": "string",
2408
- "enum": [
2409
- "schedule"
2410
- ]
2155
+ "enum": ["schedule"]
2411
2156
  },
2412
2157
  "loader": {
2413
- "enum": [
2414
- "get",
2415
- "list"
2416
- ]
2158
+ "enum": ["get", "list"]
2417
2159
  },
2418
2160
  "interval": {
2419
2161
  "type": "number"
2420
2162
  }
2421
2163
  },
2422
2164
  "additionalProperties": false,
2423
- "required": [
2424
- "type",
2425
- "loader",
2426
- "interval"
2427
- ]
2165
+ "required": ["type", "loader", "interval"]
2428
2166
  },
2429
2167
  "cacheWebhookTriggerConfig": {
2430
2168
  "title": "CacheWebhookTriggerConfig",
@@ -2432,15 +2170,10 @@
2432
2170
  "properties": {
2433
2171
  "type": {
2434
2172
  "type": "string",
2435
- "enum": [
2436
- "webhook"
2437
- ]
2173
+ "enum": ["webhook"]
2438
2174
  },
2439
2175
  "loader": {
2440
- "enum": [
2441
- "get",
2442
- "list"
2443
- ]
2176
+ "enum": ["get", "list"]
2444
2177
  },
2445
2178
  "service": {
2446
2179
  "type": "string"
@@ -2453,12 +2186,7 @@
2453
2186
  }
2454
2187
  },
2455
2188
  "additionalProperties": false,
2456
- "required": [
2457
- "type",
2458
- "loader",
2459
- "service",
2460
- "events"
2461
- ]
2189
+ "required": ["type", "loader", "service", "events"]
2462
2190
  },
2463
2191
  "formScalarConfig": {
2464
2192
  "title": "Form Scalar Config",
@@ -2469,9 +2197,7 @@
2469
2197
  }
2470
2198
  },
2471
2199
  "additionalProperties": false,
2472
- "required": [
2473
- "widget"
2474
- ]
2200
+ "required": ["widget"]
2475
2201
  },
2476
2202
  "formObjectConfig": {
2477
2203
  "title": "Form Object Config",
@@ -2508,10 +2234,7 @@
2508
2234
  }
2509
2235
  },
2510
2236
  "additionalProperties": false,
2511
- "required": [
2512
- "widget",
2513
- "items"
2514
- ]
2237
+ "required": ["widget", "items"]
2515
2238
  },
2516
2239
  "customAuthentication": {
2517
2240
  "title": "Custom Authentication",
@@ -2520,15 +2243,11 @@
2520
2243
  "properties": {
2521
2244
  "type": {
2522
2245
  "type": "string",
2523
- "enum": [
2524
- "custom"
2525
- ]
2246
+ "enum": ["custom"]
2526
2247
  }
2527
2248
  },
2528
2249
  "additionalProperties": true,
2529
- "required": [
2530
- "type"
2531
- ]
2250
+ "required": ["type"]
2532
2251
  },
2533
2252
  "searchParamsAuthentication": {
2534
2253
  "title": "Search Params Authentication",
@@ -2536,9 +2255,7 @@
2536
2255
  "properties": {
2537
2256
  "type": {
2538
2257
  "type": "string",
2539
- "enum": [
2540
- "searchParams"
2541
- ]
2258
+ "enum": ["searchParams"]
2542
2259
  },
2543
2260
  "params": {
2544
2261
  "type": "array",
@@ -2551,19 +2268,13 @@
2551
2268
  "type": "string"
2552
2269
  }
2553
2270
  },
2554
- "required": [
2555
- "name",
2556
- "value"
2557
- ],
2271
+ "required": ["name", "value"],
2558
2272
  "additionalProperties": false
2559
2273
  }
2560
2274
  }
2561
2275
  },
2562
2276
  "additionalProperties": false,
2563
- "required": [
2564
- "type",
2565
- "params"
2566
- ]
2277
+ "required": ["type", "params"]
2567
2278
  },
2568
2279
  "bearerAuthentication": {
2569
2280
  "title": "Bearer Authentication",
@@ -2571,9 +2282,7 @@
2571
2282
  "properties": {
2572
2283
  "type": {
2573
2284
  "type": "string",
2574
- "enum": [
2575
- "bearer"
2576
- ]
2285
+ "enum": ["bearer"]
2577
2286
  },
2578
2287
  "token": {
2579
2288
  "type": "string"
@@ -2586,10 +2295,7 @@
2586
2295
  }
2587
2296
  },
2588
2297
  "additionalProperties": false,
2589
- "required": [
2590
- "type",
2591
- "token"
2592
- ]
2298
+ "required": ["type", "token"]
2593
2299
  },
2594
2300
  "oauth2BearerAuthentication": {
2595
2301
  "title": "OAuth 2 Bearer Authentication",
@@ -2597,9 +2303,7 @@
2597
2303
  "properties": {
2598
2304
  "type": {
2599
2305
  "type": "string",
2600
- "enum": [
2601
- "oauth2Bearer"
2602
- ]
2306
+ "enum": ["oauth2Bearer"]
2603
2307
  },
2604
2308
  "token": {
2605
2309
  "type": "string"
@@ -2618,10 +2322,7 @@
2618
2322
  }
2619
2323
  },
2620
2324
  "additionalProperties": false,
2621
- "required": [
2622
- "type",
2623
- "token"
2624
- ]
2325
+ "required": ["type", "token"]
2625
2326
  },
2626
2327
  "basicAuthentication": {
2627
2328
  "title": "Basic Authentication",
@@ -2629,9 +2330,7 @@
2629
2330
  "properties": {
2630
2331
  "type": {
2631
2332
  "type": "string",
2632
- "enum": [
2633
- "basic"
2634
- ]
2333
+ "enum": ["basic"]
2635
2334
  },
2636
2335
  "username": {
2637
2336
  "type": "string"
@@ -2644,11 +2343,7 @@
2644
2343
  }
2645
2344
  },
2646
2345
  "additionalProperties": false,
2647
- "required": [
2648
- "type",
2649
- "username",
2650
- "password"
2651
- ]
2346
+ "required": ["type", "username", "password"]
2652
2347
  },
2653
2348
  "oauth2Authentication": {
2654
2349
  "title": "OAuth 2 Authentication",
@@ -2656,16 +2351,11 @@
2656
2351
  "properties": {
2657
2352
  "type": {
2658
2353
  "type": "string",
2659
- "enum": [
2660
- "oauth2"
2661
- ]
2354
+ "enum": ["oauth2"]
2662
2355
  },
2663
2356
  "grantType": {
2664
2357
  "type": "string",
2665
- "enum": [
2666
- "authorizationCode",
2667
- "clientCredentials"
2668
- ]
2358
+ "enum": ["authorizationCode", "clientCredentials"]
2669
2359
  },
2670
2360
  "authorizationUrl": {
2671
2361
  "type": "string"
@@ -2699,11 +2389,7 @@
2699
2389
  }
2700
2390
  },
2701
2391
  "additionalProperties": false,
2702
- "required": [
2703
- "type",
2704
- "grantType",
2705
- "clientId"
2706
- ]
2392
+ "required": ["type", "grantType", "clientId"]
2707
2393
  },
2708
2394
  "awsAuthentication": {
2709
2395
  "title": "AWS Authentication",
@@ -2711,9 +2397,7 @@
2711
2397
  "properties": {
2712
2398
  "type": {
2713
2399
  "type": "string",
2714
- "enum": [
2715
- "aws"
2716
- ]
2400
+ "enum": ["aws"]
2717
2401
  },
2718
2402
  "awsAccessKeyId": {
2719
2403
  "type": "string"
@@ -2723,11 +2407,7 @@
2723
2407
  }
2724
2408
  },
2725
2409
  "additionalProperties": false,
2726
- "required": [
2727
- "type",
2728
- "awsAccessKeyId",
2729
- "awsSecretAccessKey"
2730
- ]
2410
+ "required": ["type", "awsAccessKeyId", "awsSecretAccessKey"]
2731
2411
  },
2732
2412
  "serviceAuthentication": {
2733
2413
  "title": "Service Authentication",
@@ -2759,16 +2439,7 @@
2759
2439
  "title": "Service Type",
2760
2440
  "description": "The general type of this service, specifying how and where it will be utilized.",
2761
2441
  "type": "string",
2762
- "enum": [
2763
- "deployment",
2764
- "authentication",
2765
- "takeshape",
2766
- "rest",
2767
- "graphql",
2768
- "openapi",
2769
- "aws",
2770
- "unknown"
2771
- ]
2442
+ "enum": ["deployment", "authentication", "takeshape", "rest", "graphql", "openapi", "aws", "unknown"]
2772
2443
  },
2773
2444
  "serviceConfig": {
2774
2445
  "title": "Service Config",
@@ -2795,17 +2466,7 @@
2795
2466
  },
2796
2467
  "authenticationType": {
2797
2468
  "type": "string",
2798
- "enum": [
2799
- "oauth2",
2800
- "basic",
2801
- "bearer",
2802
- "searchParams",
2803
- "oauth2Bearer",
2804
- "custom",
2805
- "aws",
2806
- "none",
2807
- "unknown"
2808
- ]
2469
+ "enum": ["oauth2", "basic", "bearer", "searchParams", "oauth2Bearer", "custom", "aws", "none", "unknown"]
2809
2470
  },
2810
2471
  "authentication": {
2811
2472
  "$ref": "#/definitions/serviceAuthentication"
@@ -2818,13 +2479,7 @@
2818
2479
  "description": "Configuration options passed to and handled by the provider."
2819
2480
  }
2820
2481
  },
2821
- "required": [
2822
- "id",
2823
- "title",
2824
- "provider",
2825
- "serviceType",
2826
- "authenticationType"
2827
- ],
2482
+ "required": ["id", "title", "provider", "serviceType", "authenticationType"],
2828
2483
  "additionalProperties": false
2829
2484
  },
2830
2485
  "storedServiceConfig": {
@@ -2852,17 +2507,7 @@
2852
2507
  },
2853
2508
  "authenticationType": {
2854
2509
  "type": "string",
2855
- "enum": [
2856
- "oauth2",
2857
- "basic",
2858
- "bearer",
2859
- "searchParams",
2860
- "oauth2Bearer",
2861
- "custom",
2862
- "aws",
2863
- "none",
2864
- "unknown"
2865
- ]
2510
+ "enum": ["oauth2", "basic", "bearer", "searchParams", "oauth2Bearer", "custom", "aws", "none", "unknown"]
2866
2511
  },
2867
2512
  "authentication": {
2868
2513
  "type": "string"
@@ -2875,13 +2520,7 @@
2875
2520
  "description": "Configuration options passed to and handled by the provider."
2876
2521
  }
2877
2522
  },
2878
- "required": [
2879
- "id",
2880
- "title",
2881
- "provider",
2882
- "serviceType",
2883
- "authenticationType"
2884
- ],
2523
+ "required": ["id", "title", "provider", "serviceType", "authenticationType"],
2885
2524
  "additionalProperties": false
2886
2525
  },
2887
2526
  "anyServiceConfig": {
@@ -2939,13 +2578,7 @@
2939
2578
  "description": "machine-readable id"
2940
2579
  }
2941
2580
  },
2942
- "required": [
2943
- "name",
2944
- "title",
2945
- "color",
2946
- "live",
2947
- "key"
2948
- ],
2581
+ "required": ["name", "title", "color", "live", "key"],
2949
2582
  "additionalProperties": false
2950
2583
  },
2951
2584
  "workflow": {
@@ -2972,11 +2605,7 @@
2972
2605
  "minItems": 1
2973
2606
  }
2974
2607
  },
2975
- "required": [
2976
- "name",
2977
- "title",
2978
- "steps"
2979
- ]
2608
+ "required": ["name", "title", "steps"]
2980
2609
  },
2981
2610
  "workflowMap": {
2982
2611
  "title": "Workflow Map",
@@ -3004,9 +2633,7 @@
3004
2633
  "$ref": "#/definitions/formConfig"
3005
2634
  }
3006
2635
  },
3007
- "required": [
3008
- "default"
3009
- ]
2636
+ "required": ["default"]
3010
2637
  }
3011
2638
  },
3012
2639
  "properties": {
@@ -3019,9 +2646,7 @@
3019
2646
  },
3020
2647
  "schemaVersion": {
3021
2648
  "type": "string",
3022
- "enum": [
3023
- "3.33.0"
3024
- ],
2649
+ "enum": ["3.33.0"],
3025
2650
  "description": "The version of the schema format your project is using. We increase the version as we make breaking changes to the schema format."
3026
2651
  },
3027
2652
  "projectId": {