@takeshape/schema 11.52.0 → 11.55.0

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 (1024) hide show
  1. package/dist/__tests__/_examples.test.js +77 -0
  2. package/dist/__tests__/agents.test.js +163 -0
  3. package/dist/__tests__/api-version.test.js +24 -0
  4. package/dist/__tests__/builtin-schema.test.js +18 -0
  5. package/dist/__tests__/content-schema-transform.test.d.ts +1 -0
  6. package/dist/__tests__/content-schema-transform.test.js +522 -0
  7. package/dist/__tests__/create-input-schema.test.d.ts +1 -0
  8. package/dist/__tests__/create-input-schema.test.js +184 -0
  9. package/dist/__tests__/enum.test.d.ts +1 -0
  10. package/dist/__tests__/enum.test.js +36 -0
  11. package/dist/__tests__/flatten-templates.test.d.ts +1 -0
  12. package/dist/__tests__/flatten-templates.test.js +40 -0
  13. package/dist/__tests__/get-is-leaf.test.d.ts +1 -0
  14. package/dist/__tests__/get-is-leaf.test.js +50 -0
  15. package/dist/__tests__/interfaces.test.d.ts +1 -0
  16. package/dist/__tests__/interfaces.test.js +219 -0
  17. package/dist/__tests__/migration.test.d.ts +1 -0
  18. package/dist/__tests__/migration.test.js +34 -0
  19. package/dist/__tests__/mocks.test.d.ts +1 -0
  20. package/dist/__tests__/mocks.test.js +24 -0
  21. package/dist/__tests__/refs.test.d.ts +1 -0
  22. package/dist/__tests__/refs.test.js +752 -0
  23. package/dist/__tests__/relationships.test.d.ts +1 -0
  24. package/dist/__tests__/relationships.test.js +638 -0
  25. package/dist/__tests__/schema-transform.test.d.ts +1 -0
  26. package/dist/__tests__/schema-transform.test.js +205 -0
  27. package/dist/__tests__/schema-util.test.d.ts +1 -0
  28. package/dist/__tests__/schema-util.test.js +1731 -0
  29. package/dist/__tests__/service-dependencies.test.d.ts +1 -0
  30. package/dist/__tests__/service-dependencies.test.js +360 -0
  31. package/dist/__tests__/unions.test.d.ts +1 -0
  32. package/dist/__tests__/unions.test.js +44 -0
  33. package/dist/__tests__/validate.test.d.ts +1 -0
  34. package/dist/__tests__/validate.test.js +1926 -0
  35. package/dist/__tests__/workflows.test.d.ts +3 -0
  36. package/dist/__tests__/workflows.test.js +149 -0
  37. package/dist/agents.d.ts +14 -0
  38. package/dist/auth-schemas.d.ts +125 -0
  39. package/dist/builtin-schema.d.ts +8 -0
  40. package/dist/content-schema-transform.d.ts +35 -0
  41. package/dist/content-schema-transform.js +162 -0
  42. package/dist/create-input-schema.d.ts +9 -0
  43. package/dist/enum.d.ts +2 -0
  44. package/dist/flatten-templates.d.ts +2 -0
  45. package/dist/flatten-templates.js +20 -0
  46. package/dist/get-is-leaf.d.ts +3 -0
  47. package/dist/get-is-leaf.js +56 -0
  48. package/dist/index.d.ts +48 -0
  49. package/dist/index.js +46 -0
  50. package/dist/interfaces.d.ts +12 -0
  51. package/dist/interfaces.js +85 -0
  52. package/dist/layers/__tests__/layers.test.d.ts +1 -0
  53. package/dist/layers/__tests__/layers.test.js +38 -0
  54. package/dist/layers/layers.d.ts +26 -0
  55. package/dist/layers/layers.js +301 -0
  56. package/dist/layers/refs.d.ts +102 -0
  57. package/dist/layers/refs.js +220 -0
  58. package/dist/layers/type-utils.d.ts +59 -0
  59. package/dist/layers/type-utils.js +118 -0
  60. package/dist/layers/visitor.d.ts +5 -0
  61. package/dist/layers/visitor.js +38 -0
  62. package/dist/migration/index.d.ts +64 -0
  63. package/dist/migration/index.js +122 -0
  64. package/dist/migration/to/__tests__/v3.10.0.test.d.ts +1 -0
  65. package/dist/migration/to/__tests__/v3.10.0.test.js +90 -0
  66. package/dist/migration/to/__tests__/v3.12.3.test.d.ts +1 -0
  67. package/dist/migration/to/__tests__/v3.12.3.test.js +103 -0
  68. package/dist/migration/to/__tests__/v3.17.test.d.ts +1 -0
  69. package/dist/migration/to/__tests__/v3.17.test.js +71 -0
  70. package/dist/migration/to/__tests__/v3.34.0.test.d.ts +1 -0
  71. package/dist/migration/to/__tests__/v3.34.0.test.js +240 -0
  72. package/dist/migration/to/__tests__/v3.39.0.test.d.ts +1 -0
  73. package/dist/migration/to/__tests__/v3.39.0.test.js +116 -0
  74. package/dist/migration/to/__tests__/v3.46.0.test.d.ts +1 -0
  75. package/dist/migration/to/__tests__/v3.46.0.test.js +59 -0
  76. package/dist/migration/to/v3.0.0.d.ts +4 -0
  77. package/dist/migration/to/v3.0.0.js +212 -0
  78. package/dist/migration/to/v3.1.0.d.ts +4 -0
  79. package/dist/migration/to/v3.1.0.js +194 -0
  80. package/dist/migration/to/v3.10.0.d.ts +4 -0
  81. package/dist/migration/to/v3.11.0.d.ts +4 -0
  82. package/dist/migration/to/v3.12.0.d.ts +4 -0
  83. package/dist/migration/to/v3.12.1.d.ts +4 -0
  84. package/dist/migration/to/v3.12.2.d.ts +4 -0
  85. package/dist/migration/to/v3.12.3.d.ts +4 -0
  86. package/dist/migration/to/v3.13.0.d.ts +4 -0
  87. package/dist/migration/to/v3.14.0.d.ts +4 -0
  88. package/dist/migration/to/v3.15.0.d.ts +4 -0
  89. package/dist/migration/to/v3.16.0.d.ts +4 -0
  90. package/dist/migration/to/v3.17.0.d.ts +4 -0
  91. package/dist/migration/to/v3.17.1.d.ts +4 -0
  92. package/dist/migration/to/v3.18.0.d.ts +4 -0
  93. package/dist/migration/to/v3.18.1.d.ts +4 -0
  94. package/dist/migration/to/v3.18.2.d.ts +4 -0
  95. package/dist/migration/to/v3.19.0.d.ts +4 -0
  96. package/dist/migration/to/v3.2.0.d.ts +4 -0
  97. package/dist/migration/to/v3.20.0.d.ts +4 -0
  98. package/dist/migration/to/v3.21.0.d.ts +4 -0
  99. package/dist/migration/to/v3.22.0.d.ts +4 -0
  100. package/dist/migration/to/v3.23.0.d.ts +4 -0
  101. package/dist/migration/to/v3.24.0.d.ts +4 -0
  102. package/dist/migration/to/v3.25.0.d.ts +4 -0
  103. package/dist/migration/to/v3.26.0.d.ts +4 -0
  104. package/dist/migration/to/v3.27.0.d.ts +4 -0
  105. package/dist/migration/to/v3.28.0.d.ts +4 -0
  106. package/dist/migration/to/v3.29.0.d.ts +4 -0
  107. package/dist/migration/to/v3.3.0.d.ts +4 -0
  108. package/dist/migration/to/v3.30.0.d.ts +4 -0
  109. package/dist/migration/to/v3.31.0.d.ts +4 -0
  110. package/dist/migration/to/v3.32.0.d.ts +4 -0
  111. package/dist/migration/to/v3.32.0.js +59 -0
  112. package/dist/migration/to/v3.33.0.d.ts +4 -0
  113. package/dist/migration/to/v3.34.0.d.ts +6 -0
  114. package/dist/migration/to/v3.34.0.js +116 -0
  115. package/dist/migration/to/v3.35.0.d.ts +4 -0
  116. package/dist/migration/to/v3.36.0.d.ts +4 -0
  117. package/dist/migration/to/v3.37.0.d.ts +4 -0
  118. package/dist/migration/to/v3.38.0.d.ts +4 -0
  119. package/dist/migration/to/v3.39.0.d.ts +4 -0
  120. package/dist/migration/to/v3.39.0.js +45 -0
  121. package/dist/migration/to/v3.4.0.d.ts +4 -0
  122. package/dist/migration/to/v3.40.0.d.ts +4 -0
  123. package/dist/migration/to/v3.41.0.d.ts +4 -0
  124. package/dist/migration/to/v3.42.0.d.ts +4 -0
  125. package/dist/migration/to/v3.43.0.d.ts +4 -0
  126. package/dist/migration/to/v3.44.0.d.ts +4 -0
  127. package/dist/migration/to/v3.45.0.d.ts +4 -0
  128. package/dist/migration/to/v3.46.0.d.ts +4 -0
  129. package/dist/migration/to/v3.47.0.d.ts +4 -0
  130. package/dist/migration/to/v3.48.0.d.ts +4 -0
  131. package/dist/migration/to/v3.49.0.d.ts +4 -0
  132. package/dist/migration/to/v3.5.0.d.ts +4 -0
  133. package/dist/migration/to/v3.5.1.d.ts +4 -0
  134. package/dist/migration/to/v3.50.0.d.ts +4 -0
  135. package/dist/migration/to/v3.51.0.d.ts +4 -0
  136. package/dist/migration/to/v3.6.0.d.ts +4 -0
  137. package/dist/migration/to/v3.7.0.d.ts +4 -0
  138. package/dist/migration/to/v3.8.0.d.ts +4 -0
  139. package/dist/migration/to/v3.9.0.d.ts +4 -0
  140. package/dist/migration/types.d.ts +19 -0
  141. package/dist/migration/types.js +1 -0
  142. package/dist/mocks.d.ts +13 -0
  143. package/dist/mocks.js +58 -0
  144. package/dist/models/__tests__/project-schema.test.d.ts +1 -0
  145. package/dist/models/__tests__/project-schema.test.js +67 -0
  146. package/dist/models/__tests__/query.test.d.ts +1 -0
  147. package/dist/models/__tests__/query.test.js +27 -0
  148. package/dist/models/__tests__/service.test.d.ts +1 -0
  149. package/dist/models/__tests__/service.test.js +17 -0
  150. package/dist/models/__tests__/shape.test.d.ts +1 -0
  151. package/dist/models/__tests__/shape.test.js +61 -0
  152. package/dist/models/project-schema.d.ts +35 -0
  153. package/dist/models/project-schema.js +92 -0
  154. package/dist/models/query.d.ts +17 -0
  155. package/dist/models/service.d.ts +12 -0
  156. package/dist/models/shape.d.ts +41 -0
  157. package/dist/models/shape.js +85 -0
  158. package/dist/patterns.js +1 -0
  159. package/dist/project-schema/index.d.ts +187 -0
  160. package/dist/project-schema/index.js +75 -0
  161. package/dist/project-schema/migrate.d.ts +4 -0
  162. package/dist/project-schema/migrate.js +194 -0
  163. package/dist/refs.d.ts +226 -0
  164. package/dist/refs.js +608 -0
  165. package/dist/relationships.d.ts +40 -0
  166. package/dist/relationships.js +311 -0
  167. package/dist/runtime-schema.d.ts +5 -0
  168. package/dist/runtime-schema.js +80 -0
  169. package/dist/schema-transform.d.ts +19 -0
  170. package/dist/schema-transform.js +74 -0
  171. package/dist/schema-util.d.ts +210 -0
  172. package/dist/schema-util.js +1077 -0
  173. package/dist/schemas/auth-schemas.json +365 -0
  174. package/dist/schemas/index.js +154 -0
  175. package/dist/service-dependencies.d.ts +13 -0
  176. package/dist/service-dependencies.js +165 -0
  177. package/dist/services/__tests__/services.test.d.ts +1 -0
  178. package/dist/services/__tests__/services.test.js +113 -0
  179. package/dist/services/services.d.ts +31 -0
  180. package/dist/services/services.js +145 -0
  181. package/dist/services/types.js +1 -0
  182. package/dist/services/util.d.ts +16 -0
  183. package/dist/taxonomies.d.ts +15 -0
  184. package/dist/taxonomies.js +24 -0
  185. package/dist/template-shapes/__tests__/index.test.d.ts +1 -0
  186. package/dist/template-shapes/__tests__/index.test.js +40 -0
  187. package/dist/template-shapes/__tests__/names.test.d.ts +1 -0
  188. package/dist/template-shapes/__tests__/names.test.js +19 -0
  189. package/dist/template-shapes/__tests__/templates.test.d.ts +1 -0
  190. package/dist/template-shapes/__tests__/templates.test.js +80 -0
  191. package/dist/template-shapes/__tests__/where.test.d.ts +1 -0
  192. package/dist/template-shapes/__tests__/where.test.js +218 -0
  193. package/dist/template-shapes/index.d.ts +7 -0
  194. package/dist/template-shapes/names.d.ts +10 -0
  195. package/dist/template-shapes/templates.d.ts +32 -0
  196. package/dist/template-shapes/templates.js +319 -0
  197. package/dist/template-shapes/types.d.ts +15 -0
  198. package/dist/template-shapes/where.d.ts +37 -0
  199. package/dist/template-shapes/where.js +402 -0
  200. package/dist/types/__tests__/utils.test.d.ts +1 -0
  201. package/dist/types/__tests__/utils.test.js +159 -0
  202. package/dist/types/index.d.ts +3 -0
  203. package/dist/types/index.js +2 -0
  204. package/dist/types/transforms.d.ts +13 -0
  205. package/dist/types/transforms.js +1 -0
  206. package/dist/types/types.d.ts +211 -0
  207. package/dist/types/utils.d.ts +117 -0
  208. package/dist/types/utils.js +279 -0
  209. package/dist/unions.d.ts +14 -0
  210. package/dist/unions.js +77 -0
  211. package/dist/util/__tests__/api-indexing.test.d.ts +1 -0
  212. package/dist/util/__tests__/api-indexing.test.js +129 -0
  213. package/dist/util/__tests__/detect-cycles.test.d.ts +1 -0
  214. package/dist/util/__tests__/detect-cycles.test.js +193 -0
  215. package/dist/util/__tests__/find-shape-at-path.test.d.ts +1 -0
  216. package/dist/util/__tests__/find-shape-at-path.test.js +41 -0
  217. package/dist/util/__tests__/form-config.test.d.ts +1 -0
  218. package/dist/util/__tests__/form-config.test.js +196 -0
  219. package/dist/util/__tests__/get-return-shape.test.d.ts +1 -0
  220. package/dist/util/__tests__/get-return-shape.test.js +27 -0
  221. package/dist/util/__tests__/has-args.test.d.ts +1 -0
  222. package/dist/util/__tests__/has-args.test.js +46 -0
  223. package/dist/util/__tests__/merge.test.d.ts +1 -0
  224. package/dist/util/__tests__/merge.test.js +1074 -0
  225. package/dist/util/__tests__/patch-schema.test.d.ts +1 -0
  226. package/dist/util/__tests__/patch-schema.test.js +82 -0
  227. package/dist/util/__tests__/shapes.test.d.ts +1 -0
  228. package/dist/util/__tests__/shapes.test.js +30 -0
  229. package/dist/util/ai-tools.d.ts +3 -0
  230. package/dist/util/api-indexing.d.ts +9 -0
  231. package/dist/util/api-indexing.js +57 -0
  232. package/dist/util/detect-cycles.d.ts +7 -0
  233. package/dist/util/detect-cycles.js +45 -0
  234. package/dist/util/find-shape-at-path.d.ts +21 -0
  235. package/dist/util/form-config.d.ts +11 -0
  236. package/dist/util/form-config.js +62 -0
  237. package/dist/util/get-conflicting-properties.d.ts +6 -0
  238. package/dist/util/get-conflicting-properties.js +55 -0
  239. package/dist/util/get-return-shape.d.ts +4 -0
  240. package/dist/util/get-return-shape.js +30 -0
  241. package/dist/util/has-arg.d.ts +4 -0
  242. package/dist/util/has-arg.js +13 -0
  243. package/dist/util/merge.d.ts +15 -0
  244. package/dist/util/merge.js +256 -0
  245. package/dist/util/patch-schema.d.ts +8 -0
  246. package/dist/util/shapes.d.ts +5 -0
  247. package/dist/validate/errors.d.ts +3 -0
  248. package/dist/validate/errors.js +20 -0
  249. package/dist/validate/validate.d.ts +73 -0
  250. package/dist/validate/validate.js +1107 -0
  251. package/dist/versions.d.ts +4 -0
  252. package/dist/versions.js +4 -0
  253. package/dist/workflows.d.ts +14 -0
  254. package/dist/workflows.js +66 -0
  255. package/examples/latest/agent-schema.json +12 -4
  256. package/examples/latest/all-fields-shapes-inline.json +52 -18
  257. package/examples/latest/all-fields-shapes.json +76 -26
  258. package/examples/latest/betzino.json +3139 -902
  259. package/examples/latest/blog-schema.json +28 -8
  260. package/examples/latest/brewery-schema.json +25 -7
  261. package/examples/latest/clear-cache-schema.json +7 -3
  262. package/examples/latest/complex-project-schema.json +359 -98
  263. package/examples/latest/complex-schema.json +1754 -487
  264. package/examples/latest/edit-schema.json +11 -4
  265. package/examples/latest/fabric-ecommerce.json +838 -187
  266. package/examples/latest/frank-and-fred-schema.json +1753 -486
  267. package/examples/latest/klirr-schema.json +2411 -682
  268. package/examples/latest/layers/rick-and-morty-layer.json +32 -11
  269. package/examples/latest/layers/shopify-layer-2023-01.json +8637 -2206
  270. package/examples/latest/layers/shopify-storefront-2023-04.json +1714 -404
  271. package/examples/latest/layers/wordpress-2024-01.json +2746 -691
  272. package/examples/latest/massive-schema.json +584 -131
  273. package/examples/latest/mill-components-schema.json +125 -29
  274. package/examples/latest/nested-shape-arrays.json +19 -7
  275. package/examples/latest/one-earth.json +1113 -236
  276. package/examples/latest/pet-oneof-array.json +22 -7
  277. package/examples/latest/post-schema.json +20 -6
  278. package/examples/latest/pruned-shopify-product-schema.json +830 -185
  279. package/examples/latest/rag-example.json +15 -5
  280. package/examples/latest/real-world-schema.json +56 -14
  281. package/examples/latest/recursive-repeater-schema.json +11 -4
  282. package/examples/latest/recursive-schema.json +11 -4
  283. package/examples/latest/rick-and-morty-ast.json +174 -45
  284. package/examples/latest/rick-and-morty-graphql.json +100 -25
  285. package/examples/latest/rick-and-morty-rest.json +7 -3
  286. package/examples/latest/rick-and-morty-with-indexing.json +13 -5
  287. package/examples/latest/schema-where-filter.json +40 -11
  288. package/examples/latest/schema-with-repeater-draftjs.json +8 -3
  289. package/examples/latest/schema-with-rick-and-morty.json +4 -2
  290. package/examples/latest/shape-books-v3_2_0.json +71 -17
  291. package/examples/latest/shape-books.json +71 -17
  292. package/examples/latest/shape-editor-schema-edited.json +69 -23
  293. package/examples/latest/shape-editor-schema-initial.json +28 -10
  294. package/examples/latest/shapedb-crud-every-prop-type.json +22 -8
  295. package/examples/latest/shopify-lookbook.json +19 -5
  296. package/examples/latest/shopify-product-2022-07.json +3217 -726
  297. package/examples/latest/shopify-product-2023-04.json +4496 -1012
  298. package/examples/latest/shopify-store-with-widget.json +942 -213
  299. package/examples/latest/stripe-product-runtime-schema.json +277 -81
  300. package/examples/latest/stripe-starter-resolved.json +1953 -476
  301. package/examples/latest/user-schema-no-required.json +13 -3
  302. package/examples/latest/user-schema-with-defaults.json +27 -5
  303. package/examples/latest/valvoline-ai-demo.json +69 -17
  304. package/examples/latest/vector-search-schema.json +24 -8
  305. package/package.json +23 -24
  306. package/dist/cjs/package.json +0 -1
  307. package/dist/cjs/src/agents.js +0 -147
  308. package/dist/cjs/src/api-version.js +0 -24
  309. package/dist/cjs/src/auth-schemas.js +0 -8
  310. package/dist/cjs/src/builtin-schema.js +0 -616
  311. package/dist/cjs/src/constants.js +0 -4
  312. package/dist/cjs/src/content-schema-transform.js +0 -175
  313. package/dist/cjs/src/create-input-schema.js +0 -66
  314. package/dist/cjs/src/enum.js +0 -12
  315. package/dist/cjs/src/flatten-templates.js +0 -26
  316. package/dist/cjs/src/get-is-leaf.js +0 -59
  317. package/dist/cjs/src/index.js +0 -62
  318. package/dist/cjs/src/interfaces.js +0 -98
  319. package/dist/cjs/src/layers/layers.js +0 -313
  320. package/dist/cjs/src/layers/refs.js +0 -243
  321. package/dist/cjs/src/layers/type-utils.js +0 -145
  322. package/dist/cjs/src/layers/visitor.js +0 -42
  323. package/dist/cjs/src/migration/index.js +0 -142
  324. package/dist/cjs/src/migration/to/v3.0.0.js +0 -217
  325. package/dist/cjs/src/migration/to/v3.1.0.js +0 -199
  326. package/dist/cjs/src/migration/to/v3.10.0.js +0 -72
  327. package/dist/cjs/src/migration/to/v3.11.0.js +0 -90
  328. package/dist/cjs/src/migration/to/v3.12.0.js +0 -12
  329. package/dist/cjs/src/migration/to/v3.12.1.js +0 -12
  330. package/dist/cjs/src/migration/to/v3.12.2.js +0 -12
  331. package/dist/cjs/src/migration/to/v3.12.3.js +0 -92
  332. package/dist/cjs/src/migration/to/v3.13.0.js +0 -22
  333. package/dist/cjs/src/migration/to/v3.14.0.js +0 -12
  334. package/dist/cjs/src/migration/to/v3.15.0.js +0 -12
  335. package/dist/cjs/src/migration/to/v3.16.0.js +0 -12
  336. package/dist/cjs/src/migration/to/v3.17.0.js +0 -27
  337. package/dist/cjs/src/migration/to/v3.17.1.js +0 -12
  338. package/dist/cjs/src/migration/to/v3.18.0.js +0 -69
  339. package/dist/cjs/src/migration/to/v3.18.1.js +0 -20
  340. package/dist/cjs/src/migration/to/v3.18.2.js +0 -24
  341. package/dist/cjs/src/migration/to/v3.19.0.js +0 -12
  342. package/dist/cjs/src/migration/to/v3.2.0.js +0 -12
  343. package/dist/cjs/src/migration/to/v3.20.0.js +0 -29
  344. package/dist/cjs/src/migration/to/v3.21.0.js +0 -12
  345. package/dist/cjs/src/migration/to/v3.22.0.js +0 -30
  346. package/dist/cjs/src/migration/to/v3.23.0.js +0 -12
  347. package/dist/cjs/src/migration/to/v3.24.0.js +0 -13
  348. package/dist/cjs/src/migration/to/v3.25.0.js +0 -13
  349. package/dist/cjs/src/migration/to/v3.26.0.js +0 -12
  350. package/dist/cjs/src/migration/to/v3.27.0.js +0 -12
  351. package/dist/cjs/src/migration/to/v3.28.0.js +0 -12
  352. package/dist/cjs/src/migration/to/v3.29.0.js +0 -12
  353. package/dist/cjs/src/migration/to/v3.3.0.js +0 -15
  354. package/dist/cjs/src/migration/to/v3.30.0.js +0 -12
  355. package/dist/cjs/src/migration/to/v3.31.0.js +0 -43
  356. package/dist/cjs/src/migration/to/v3.32.0.js +0 -61
  357. package/dist/cjs/src/migration/to/v3.33.0.js +0 -12
  358. package/dist/cjs/src/migration/to/v3.34.0.js +0 -123
  359. package/dist/cjs/src/migration/to/v3.35.0.js +0 -12
  360. package/dist/cjs/src/migration/to/v3.36.0.js +0 -27
  361. package/dist/cjs/src/migration/to/v3.37.0.js +0 -12
  362. package/dist/cjs/src/migration/to/v3.38.0.js +0 -12
  363. package/dist/cjs/src/migration/to/v3.39.0.js +0 -47
  364. package/dist/cjs/src/migration/to/v3.4.0.js +0 -12
  365. package/dist/cjs/src/migration/to/v3.40.0.js +0 -31
  366. package/dist/cjs/src/migration/to/v3.41.0.js +0 -12
  367. package/dist/cjs/src/migration/to/v3.42.0.js +0 -12
  368. package/dist/cjs/src/migration/to/v3.43.0.js +0 -12
  369. package/dist/cjs/src/migration/to/v3.44.0.js +0 -12
  370. package/dist/cjs/src/migration/to/v3.45.0.js +0 -12
  371. package/dist/cjs/src/migration/to/v3.46.0.js +0 -37
  372. package/dist/cjs/src/migration/to/v3.47.0.js +0 -12
  373. package/dist/cjs/src/migration/to/v3.48.0.js +0 -12
  374. package/dist/cjs/src/migration/to/v3.49.0.js +0 -12
  375. package/dist/cjs/src/migration/to/v3.5.0.js +0 -12
  376. package/dist/cjs/src/migration/to/v3.5.1.js +0 -12
  377. package/dist/cjs/src/migration/to/v3.50.0.js +0 -12
  378. package/dist/cjs/src/migration/to/v3.51.0.js +0 -12
  379. package/dist/cjs/src/migration/to/v3.6.0.js +0 -12
  380. package/dist/cjs/src/migration/to/v3.7.0.js +0 -12
  381. package/dist/cjs/src/migration/to/v3.8.0.js +0 -12
  382. package/dist/cjs/src/migration/to/v3.9.0.js +0 -84
  383. package/dist/cjs/src/migration/types.js +0 -2
  384. package/dist/cjs/src/migration/utils.js +0 -10
  385. package/dist/cjs/src/mocks.js +0 -65
  386. package/dist/cjs/src/models/project-schema.js +0 -99
  387. package/dist/cjs/src/models/query.js +0 -35
  388. package/dist/cjs/src/models/service.js +0 -24
  389. package/dist/cjs/src/models/shape.js +0 -89
  390. package/dist/cjs/src/patterns.js +0 -2
  391. package/dist/cjs/src/project-schema/index.js +0 -156
  392. package/dist/cjs/src/project-schema/latest.js +0 -8
  393. package/dist/cjs/src/project-schema/migrate.js +0 -198
  394. package/dist/cjs/src/project-schema/v1.0.0.js +0 -8
  395. package/dist/cjs/src/project-schema/v3.0.0.js +0 -8
  396. package/dist/cjs/src/project-schema/v3.1.0.js +0 -8
  397. package/dist/cjs/src/project-schema/v3.10.0.js +0 -8
  398. package/dist/cjs/src/project-schema/v3.11.0.js +0 -8
  399. package/dist/cjs/src/project-schema/v3.12.0.js +0 -8
  400. package/dist/cjs/src/project-schema/v3.12.1.js +0 -8
  401. package/dist/cjs/src/project-schema/v3.12.2.js +0 -8
  402. package/dist/cjs/src/project-schema/v3.12.3.js +0 -8
  403. package/dist/cjs/src/project-schema/v3.13.0.js +0 -8
  404. package/dist/cjs/src/project-schema/v3.13.1.js +0 -8
  405. package/dist/cjs/src/project-schema/v3.14.0.js +0 -8
  406. package/dist/cjs/src/project-schema/v3.15.0.js +0 -8
  407. package/dist/cjs/src/project-schema/v3.16.0.js +0 -8
  408. package/dist/cjs/src/project-schema/v3.17.0.js +0 -8
  409. package/dist/cjs/src/project-schema/v3.17.1.js +0 -8
  410. package/dist/cjs/src/project-schema/v3.18.0.js +0 -8
  411. package/dist/cjs/src/project-schema/v3.18.1.js +0 -8
  412. package/dist/cjs/src/project-schema/v3.18.2.js +0 -8
  413. package/dist/cjs/src/project-schema/v3.19.0.js +0 -8
  414. package/dist/cjs/src/project-schema/v3.2.0.js +0 -8
  415. package/dist/cjs/src/project-schema/v3.20.0.js +0 -8
  416. package/dist/cjs/src/project-schema/v3.21.0.js +0 -8
  417. package/dist/cjs/src/project-schema/v3.22.0.js +0 -8
  418. package/dist/cjs/src/project-schema/v3.23.0.js +0 -8
  419. package/dist/cjs/src/project-schema/v3.24.0.js +0 -8
  420. package/dist/cjs/src/project-schema/v3.25.0.js +0 -8
  421. package/dist/cjs/src/project-schema/v3.26.0.js +0 -8
  422. package/dist/cjs/src/project-schema/v3.27.0.js +0 -8
  423. package/dist/cjs/src/project-schema/v3.28.0.js +0 -8
  424. package/dist/cjs/src/project-schema/v3.29.0.js +0 -8
  425. package/dist/cjs/src/project-schema/v3.3.0.js +0 -8
  426. package/dist/cjs/src/project-schema/v3.30.0.js +0 -8
  427. package/dist/cjs/src/project-schema/v3.31.0.js +0 -8
  428. package/dist/cjs/src/project-schema/v3.32.0.js +0 -8
  429. package/dist/cjs/src/project-schema/v3.33.0.js +0 -8
  430. package/dist/cjs/src/project-schema/v3.34.0.js +0 -8
  431. package/dist/cjs/src/project-schema/v3.35.0.js +0 -8
  432. package/dist/cjs/src/project-schema/v3.36.0.js +0 -8
  433. package/dist/cjs/src/project-schema/v3.37.0.js +0 -8
  434. package/dist/cjs/src/project-schema/v3.38.0.js +0 -8
  435. package/dist/cjs/src/project-schema/v3.39.0.js +0 -8
  436. package/dist/cjs/src/project-schema/v3.4.0.js +0 -8
  437. package/dist/cjs/src/project-schema/v3.40.0.js +0 -8
  438. package/dist/cjs/src/project-schema/v3.41.0.js +0 -8
  439. package/dist/cjs/src/project-schema/v3.42.0.js +0 -8
  440. package/dist/cjs/src/project-schema/v3.43.0.js +0 -8
  441. package/dist/cjs/src/project-schema/v3.44.0.js +0 -8
  442. package/dist/cjs/src/project-schema/v3.45.0.js +0 -8
  443. package/dist/cjs/src/project-schema/v3.46.0.js +0 -8
  444. package/dist/cjs/src/project-schema/v3.47.0.js +0 -8
  445. package/dist/cjs/src/project-schema/v3.48.0.js +0 -8
  446. package/dist/cjs/src/project-schema/v3.49.0.js +0 -8
  447. package/dist/cjs/src/project-schema/v3.5.0.js +0 -8
  448. package/dist/cjs/src/project-schema/v3.5.1.js +0 -8
  449. package/dist/cjs/src/project-schema/v3.50.0.js +0 -8
  450. package/dist/cjs/src/project-schema/v3.51.0.js +0 -8
  451. package/dist/cjs/src/project-schema/v3.6.0.js +0 -8
  452. package/dist/cjs/src/project-schema/v3.7.0.js +0 -8
  453. package/dist/cjs/src/project-schema/v3.8.0.js +0 -8
  454. package/dist/cjs/src/project-schema/v3.9.0.js +0 -8
  455. package/dist/cjs/src/project-schema/v4.0.0.js +0 -8
  456. package/dist/cjs/src/refs.js +0 -671
  457. package/dist/cjs/src/relationships.js +0 -326
  458. package/dist/cjs/src/runtime-schema.js +0 -88
  459. package/dist/cjs/src/scalars.js +0 -8
  460. package/dist/cjs/src/schema-transform.js +0 -83
  461. package/dist/cjs/src/schema-util.js +0 -1140
  462. package/dist/cjs/src/schemas/auth-schemas.json +0 -313
  463. package/dist/cjs/src/schemas/index.js +0 -162
  464. package/dist/cjs/src/schemas/user-schema.json +0 -51
  465. package/dist/cjs/src/service-dependencies.js +0 -172
  466. package/dist/cjs/src/services/services.js +0 -156
  467. package/dist/cjs/src/services/types.js +0 -2
  468. package/dist/cjs/src/services/util.js +0 -45
  469. package/dist/cjs/src/taxonomies.js +0 -28
  470. package/dist/cjs/src/template-shapes/index.js +0 -37
  471. package/dist/cjs/src/template-shapes/names.js +0 -26
  472. package/dist/cjs/src/template-shapes/templates.js +0 -331
  473. package/dist/cjs/src/template-shapes/types.js +0 -10
  474. package/dist/cjs/src/template-shapes/where.js +0 -414
  475. package/dist/cjs/src/types/index.js +0 -19
  476. package/dist/cjs/src/types/transforms.js +0 -2
  477. package/dist/cjs/src/types/types.js +0 -21
  478. package/dist/cjs/src/types/utils.js +0 -344
  479. package/dist/cjs/src/unions.js +0 -88
  480. package/dist/cjs/src/user-schema.js +0 -8
  481. package/dist/cjs/src/util/ai-tools.js +0 -10
  482. package/dist/cjs/src/util/api-indexing.js +0 -62
  483. package/dist/cjs/src/util/detect-cycles.js +0 -48
  484. package/dist/cjs/src/util/find-shape-at-path.js +0 -57
  485. package/dist/cjs/src/util/form-config.js +0 -66
  486. package/dist/cjs/src/util/get-conflicting-properties.js +0 -58
  487. package/dist/cjs/src/util/get-return-shape.js +0 -34
  488. package/dist/cjs/src/util/has-arg.js +0 -17
  489. package/dist/cjs/src/util/merge.js +0 -269
  490. package/dist/cjs/src/util/patch-schema.js +0 -55
  491. package/dist/cjs/src/util/shapes.js +0 -31
  492. package/dist/cjs/src/validate.js +0 -1140
  493. package/dist/cjs/src/versions.js +0 -8
  494. package/dist/cjs/src/workflows.js +0 -76
  495. package/dist/cjs/tsconfig.cjs.tsbuildinfo +0 -1
  496. package/dist/esm/package.json +0 -1
  497. package/dist/esm/src/content-schema-transform.js +0 -162
  498. package/dist/esm/src/flatten-templates.js +0 -20
  499. package/dist/esm/src/get-is-leaf.js +0 -56
  500. package/dist/esm/src/index.js +0 -46
  501. package/dist/esm/src/interfaces.js +0 -85
  502. package/dist/esm/src/layers/layers.js +0 -301
  503. package/dist/esm/src/layers/refs.js +0 -220
  504. package/dist/esm/src/layers/type-utils.js +0 -118
  505. package/dist/esm/src/layers/visitor.js +0 -38
  506. package/dist/esm/src/migration/index.js +0 -122
  507. package/dist/esm/src/migration/to/v3.0.0.js +0 -212
  508. package/dist/esm/src/migration/to/v3.1.0.js +0 -194
  509. package/dist/esm/src/migration/to/v3.32.0.js +0 -59
  510. package/dist/esm/src/migration/to/v3.34.0.js +0 -116
  511. package/dist/esm/src/migration/to/v3.39.0.js +0 -45
  512. package/dist/esm/src/mocks.js +0 -58
  513. package/dist/esm/src/models/project-schema.js +0 -92
  514. package/dist/esm/src/models/shape.js +0 -85
  515. package/dist/esm/src/project-schema/index.js +0 -138
  516. package/dist/esm/src/project-schema/migrate.js +0 -194
  517. package/dist/esm/src/refs.js +0 -608
  518. package/dist/esm/src/relationships.js +0 -311
  519. package/dist/esm/src/runtime-schema.js +0 -80
  520. package/dist/esm/src/schema-transform.js +0 -74
  521. package/dist/esm/src/schema-util.js +0 -1077
  522. package/dist/esm/src/schemas/auth-schemas.json +0 -313
  523. package/dist/esm/src/schemas/index.js +0 -154
  524. package/dist/esm/src/schemas/project-schema/experimental.json +0 -1101
  525. package/dist/esm/src/schemas/project-schema/latest.json +0 -3320
  526. package/dist/esm/src/schemas/project-schema/meta-schema-v1.0.0.json +0 -193
  527. package/dist/esm/src/schemas/project-schema/meta-schema-v3.0.0.json +0 -608
  528. package/dist/esm/src/schemas/project-schema/meta-schema-v3.1.0.json +0 -608
  529. package/dist/esm/src/schemas/project-schema/meta-schema-v3.2.0.json +0 -612
  530. package/dist/esm/src/schemas/project-schema/meta-schema-v3.3.0.json +0 -612
  531. package/dist/esm/src/schemas/project-schema/meta-schema-v3.4.0.json +0 -637
  532. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.0.json +0 -626
  533. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.1.json +0 -626
  534. package/dist/esm/src/schemas/project-schema/meta-schema-v3.6.0.json +0 -629
  535. package/dist/esm/src/schemas/project-schema/meta-schema-v3.7.0.json +0 -1137
  536. package/dist/esm/src/schemas/project-schema/meta-schema-v3.8.0.json +0 -1137
  537. package/dist/esm/src/schemas/project-schema/meta-schema-v3.9.0.json +0 -1477
  538. package/dist/esm/src/schemas/project-schema/v1.0.0.json +0 -321
  539. package/dist/esm/src/schemas/project-schema/v3.0.0.json +0 -414
  540. package/dist/esm/src/schemas/project-schema/v3.1.0.json +0 -572
  541. package/dist/esm/src/schemas/project-schema/v3.10.0.json +0 -2097
  542. package/dist/esm/src/schemas/project-schema/v3.11.0.json +0 -2141
  543. package/dist/esm/src/schemas/project-schema/v3.12.0.json +0 -2144
  544. package/dist/esm/src/schemas/project-schema/v3.12.1.json +0 -2282
  545. package/dist/esm/src/schemas/project-schema/v3.12.2.json +0 -2304
  546. package/dist/esm/src/schemas/project-schema/v3.12.3.json +0 -2357
  547. package/dist/esm/src/schemas/project-schema/v3.13.0.json +0 -2377
  548. package/dist/esm/src/schemas/project-schema/v3.14.0.json +0 -2385
  549. package/dist/esm/src/schemas/project-schema/v3.15.0.json +0 -2365
  550. package/dist/esm/src/schemas/project-schema/v3.16.0.json +0 -2373
  551. package/dist/esm/src/schemas/project-schema/v3.17.0.json +0 -2378
  552. package/dist/esm/src/schemas/project-schema/v3.17.1.json +0 -2380
  553. package/dist/esm/src/schemas/project-schema/v3.18.0.json +0 -2356
  554. package/dist/esm/src/schemas/project-schema/v3.18.1.json +0 -2357
  555. package/dist/esm/src/schemas/project-schema/v3.18.2.json +0 -2357
  556. package/dist/esm/src/schemas/project-schema/v3.19.0.json +0 -2369
  557. package/dist/esm/src/schemas/project-schema/v3.2.0.json +0 -580
  558. package/dist/esm/src/schemas/project-schema/v3.20.0.json +0 -2369
  559. package/dist/esm/src/schemas/project-schema/v3.21.0.json +0 -2376
  560. package/dist/esm/src/schemas/project-schema/v3.22.0.json +0 -2381
  561. package/dist/esm/src/schemas/project-schema/v3.23.0.json +0 -2456
  562. package/dist/esm/src/schemas/project-schema/v3.24.0.json +0 -2556
  563. package/dist/esm/src/schemas/project-schema/v3.25.0.json +0 -2552
  564. package/dist/esm/src/schemas/project-schema/v3.26.0.json +0 -2599
  565. package/dist/esm/src/schemas/project-schema/v3.27.0.json +0 -2611
  566. package/dist/esm/src/schemas/project-schema/v3.28.0.json +0 -2656
  567. package/dist/esm/src/schemas/project-schema/v3.29.0.json +0 -2670
  568. package/dist/esm/src/schemas/project-schema/v3.3.0.json +0 -581
  569. package/dist/esm/src/schemas/project-schema/v3.30.0.json +0 -2656
  570. package/dist/esm/src/schemas/project-schema/v3.31.0.json +0 -2714
  571. package/dist/esm/src/schemas/project-schema/v3.32.0.json +0 -2708
  572. package/dist/esm/src/schemas/project-schema/v3.33.0.json +0 -2715
  573. package/dist/esm/src/schemas/project-schema/v3.34.0.json +0 -2715
  574. package/dist/esm/src/schemas/project-schema/v3.35.0.json +0 -2748
  575. package/dist/esm/src/schemas/project-schema/v3.36.0.json +0 -2756
  576. package/dist/esm/src/schemas/project-schema/v3.37.0.json +0 -2821
  577. package/dist/esm/src/schemas/project-schema/v3.38.0.json +0 -2819
  578. package/dist/esm/src/schemas/project-schema/v3.39.0.json +0 -2827
  579. package/dist/esm/src/schemas/project-schema/v3.4.0.json +0 -571
  580. package/dist/esm/src/schemas/project-schema/v3.40.0.json +0 -2830
  581. package/dist/esm/src/schemas/project-schema/v3.41.0.json +0 -2830
  582. package/dist/esm/src/schemas/project-schema/v3.42.0.json +0 -2835
  583. package/dist/esm/src/schemas/project-schema/v3.43.0.json +0 -2841
  584. package/dist/esm/src/schemas/project-schema/v3.44.0.json +0 -3013
  585. package/dist/esm/src/schemas/project-schema/v3.45.0.json +0 -3064
  586. package/dist/esm/src/schemas/project-schema/v3.46.0.json +0 -3136
  587. package/dist/esm/src/schemas/project-schema/v3.47.0.json +0 -3189
  588. package/dist/esm/src/schemas/project-schema/v3.48.0.json +0 -3196
  589. package/dist/esm/src/schemas/project-schema/v3.49.0.json +0 -3239
  590. package/dist/esm/src/schemas/project-schema/v3.5.0.json +0 -571
  591. package/dist/esm/src/schemas/project-schema/v3.5.1.json +0 -571
  592. package/dist/esm/src/schemas/project-schema/v3.50.0.json +0 -3320
  593. package/dist/esm/src/schemas/project-schema/v3.51.0.json +0 -3320
  594. package/dist/esm/src/schemas/project-schema/v3.6.0.json +0 -587
  595. package/dist/esm/src/schemas/project-schema/v3.7.0.json +0 -587
  596. package/dist/esm/src/schemas/project-schema/v3.8.0.json +0 -604
  597. package/dist/esm/src/schemas/project-schema/v3.9.0.json +0 -604
  598. package/dist/esm/src/schemas/project-schema/v4.0.0.json +0 -2316
  599. package/dist/esm/src/schemas/project-schema.json +0 -190
  600. package/dist/esm/src/schemas/user-schema.json +0 -51
  601. package/dist/esm/src/service-dependencies.js +0 -165
  602. package/dist/esm/src/services/services.js +0 -145
  603. package/dist/esm/src/taxonomies.js +0 -24
  604. package/dist/esm/src/template-shapes/templates.js +0 -319
  605. package/dist/esm/src/template-shapes/where.js +0 -402
  606. package/dist/esm/src/types/index.js +0 -3
  607. package/dist/esm/src/types/utils.js +0 -279
  608. package/dist/esm/src/unions.js +0 -77
  609. package/dist/esm/src/user-schema.js +0 -7
  610. package/dist/esm/src/util/api-indexing.js +0 -57
  611. package/dist/esm/src/util/detect-cycles.js +0 -45
  612. package/dist/esm/src/util/form-config.js +0 -62
  613. package/dist/esm/src/util/get-conflicting-properties.js +0 -55
  614. package/dist/esm/src/util/get-return-shape.js +0 -30
  615. package/dist/esm/src/util/has-arg.js +0 -13
  616. package/dist/esm/src/util/merge.js +0 -256
  617. package/dist/esm/src/validate.js +0 -1126
  618. package/dist/esm/src/versions.js +0 -4
  619. package/dist/esm/src/workflows.js +0 -66
  620. package/dist/esm/tsconfig.esm.tsbuildinfo +0 -1
  621. package/dist/types/src/agents.d.ts +0 -14
  622. package/dist/types/src/auth-schemas.d.ts +0 -104
  623. package/dist/types/src/builtin-schema.d.ts +0 -8
  624. package/dist/types/src/content-schema-transform.d.ts +0 -35
  625. package/dist/types/src/create-input-schema.d.ts +0 -9
  626. package/dist/types/src/enum.d.ts +0 -2
  627. package/dist/types/src/flatten-templates.d.ts +0 -2
  628. package/dist/types/src/get-is-leaf.d.ts +0 -3
  629. package/dist/types/src/index.d.ts +0 -48
  630. package/dist/types/src/interfaces.d.ts +0 -12
  631. package/dist/types/src/layers/layers.d.ts +0 -26
  632. package/dist/types/src/layers/refs.d.ts +0 -102
  633. package/dist/types/src/layers/type-utils.d.ts +0 -59
  634. package/dist/types/src/layers/visitor.d.ts +0 -5
  635. package/dist/types/src/migration/index.d.ts +0 -64
  636. package/dist/types/src/migration/to/v3.0.0.d.ts +0 -4
  637. package/dist/types/src/migration/to/v3.1.0.d.ts +0 -4
  638. package/dist/types/src/migration/to/v3.10.0.d.ts +0 -4
  639. package/dist/types/src/migration/to/v3.11.0.d.ts +0 -4
  640. package/dist/types/src/migration/to/v3.12.0.d.ts +0 -4
  641. package/dist/types/src/migration/to/v3.12.1.d.ts +0 -4
  642. package/dist/types/src/migration/to/v3.12.2.d.ts +0 -4
  643. package/dist/types/src/migration/to/v3.12.3.d.ts +0 -4
  644. package/dist/types/src/migration/to/v3.13.0.d.ts +0 -4
  645. package/dist/types/src/migration/to/v3.14.0.d.ts +0 -4
  646. package/dist/types/src/migration/to/v3.15.0.d.ts +0 -4
  647. package/dist/types/src/migration/to/v3.16.0.d.ts +0 -4
  648. package/dist/types/src/migration/to/v3.17.0.d.ts +0 -4
  649. package/dist/types/src/migration/to/v3.17.1.d.ts +0 -4
  650. package/dist/types/src/migration/to/v3.18.0.d.ts +0 -4
  651. package/dist/types/src/migration/to/v3.18.1.d.ts +0 -4
  652. package/dist/types/src/migration/to/v3.18.2.d.ts +0 -4
  653. package/dist/types/src/migration/to/v3.19.0.d.ts +0 -4
  654. package/dist/types/src/migration/to/v3.2.0.d.ts +0 -4
  655. package/dist/types/src/migration/to/v3.20.0.d.ts +0 -4
  656. package/dist/types/src/migration/to/v3.21.0.d.ts +0 -4
  657. package/dist/types/src/migration/to/v3.22.0.d.ts +0 -4
  658. package/dist/types/src/migration/to/v3.23.0.d.ts +0 -4
  659. package/dist/types/src/migration/to/v3.24.0.d.ts +0 -4
  660. package/dist/types/src/migration/to/v3.25.0.d.ts +0 -4
  661. package/dist/types/src/migration/to/v3.26.0.d.ts +0 -4
  662. package/dist/types/src/migration/to/v3.27.0.d.ts +0 -4
  663. package/dist/types/src/migration/to/v3.28.0.d.ts +0 -4
  664. package/dist/types/src/migration/to/v3.29.0.d.ts +0 -4
  665. package/dist/types/src/migration/to/v3.3.0.d.ts +0 -4
  666. package/dist/types/src/migration/to/v3.30.0.d.ts +0 -4
  667. package/dist/types/src/migration/to/v3.31.0.d.ts +0 -4
  668. package/dist/types/src/migration/to/v3.32.0.d.ts +0 -4
  669. package/dist/types/src/migration/to/v3.33.0.d.ts +0 -4
  670. package/dist/types/src/migration/to/v3.34.0.d.ts +0 -6
  671. package/dist/types/src/migration/to/v3.35.0.d.ts +0 -4
  672. package/dist/types/src/migration/to/v3.36.0.d.ts +0 -4
  673. package/dist/types/src/migration/to/v3.37.0.d.ts +0 -4
  674. package/dist/types/src/migration/to/v3.38.0.d.ts +0 -4
  675. package/dist/types/src/migration/to/v3.39.0.d.ts +0 -4
  676. package/dist/types/src/migration/to/v3.4.0.d.ts +0 -4
  677. package/dist/types/src/migration/to/v3.40.0.d.ts +0 -4
  678. package/dist/types/src/migration/to/v3.41.0.d.ts +0 -4
  679. package/dist/types/src/migration/to/v3.42.0.d.ts +0 -4
  680. package/dist/types/src/migration/to/v3.43.0.d.ts +0 -4
  681. package/dist/types/src/migration/to/v3.44.0.d.ts +0 -4
  682. package/dist/types/src/migration/to/v3.45.0.d.ts +0 -4
  683. package/dist/types/src/migration/to/v3.46.0.d.ts +0 -4
  684. package/dist/types/src/migration/to/v3.47.0.d.ts +0 -4
  685. package/dist/types/src/migration/to/v3.48.0.d.ts +0 -4
  686. package/dist/types/src/migration/to/v3.49.0.d.ts +0 -4
  687. package/dist/types/src/migration/to/v3.5.0.d.ts +0 -4
  688. package/dist/types/src/migration/to/v3.5.1.d.ts +0 -4
  689. package/dist/types/src/migration/to/v3.50.0.d.ts +0 -4
  690. package/dist/types/src/migration/to/v3.51.0.d.ts +0 -4
  691. package/dist/types/src/migration/to/v3.6.0.d.ts +0 -4
  692. package/dist/types/src/migration/to/v3.7.0.d.ts +0 -4
  693. package/dist/types/src/migration/to/v3.8.0.d.ts +0 -4
  694. package/dist/types/src/migration/to/v3.9.0.d.ts +0 -4
  695. package/dist/types/src/migration/types.d.ts +0 -19
  696. package/dist/types/src/mocks.d.ts +0 -13
  697. package/dist/types/src/models/project-schema.d.ts +0 -35
  698. package/dist/types/src/models/query.d.ts +0 -17
  699. package/dist/types/src/models/service.d.ts +0 -12
  700. package/dist/types/src/models/shape.d.ts +0 -41
  701. package/dist/types/src/project-schema/index.d.ts +0 -187
  702. package/dist/types/src/project-schema/migrate.d.ts +0 -4
  703. package/dist/types/src/refs.d.ts +0 -226
  704. package/dist/types/src/relationships.d.ts +0 -40
  705. package/dist/types/src/runtime-schema.d.ts +0 -5
  706. package/dist/types/src/schema-transform.d.ts +0 -19
  707. package/dist/types/src/schema-util.d.ts +0 -210
  708. package/dist/types/src/service-dependencies.d.ts +0 -13
  709. package/dist/types/src/services/services.d.ts +0 -31
  710. package/dist/types/src/services/util.d.ts +0 -16
  711. package/dist/types/src/taxonomies.d.ts +0 -15
  712. package/dist/types/src/template-shapes/index.d.ts +0 -7
  713. package/dist/types/src/template-shapes/names.d.ts +0 -10
  714. package/dist/types/src/template-shapes/templates.d.ts +0 -32
  715. package/dist/types/src/template-shapes/types.d.ts +0 -15
  716. package/dist/types/src/template-shapes/where.d.ts +0 -37
  717. package/dist/types/src/types/index.d.ts +0 -3
  718. package/dist/types/src/types/transforms.d.ts +0 -13
  719. package/dist/types/src/types/types.d.ts +0 -211
  720. package/dist/types/src/types/utils.d.ts +0 -117
  721. package/dist/types/src/unions.d.ts +0 -14
  722. package/dist/types/src/user-schema.d.ts +0 -38
  723. package/dist/types/src/util/ai-tools.d.ts +0 -3
  724. package/dist/types/src/util/api-indexing.d.ts +0 -9
  725. package/dist/types/src/util/detect-cycles.d.ts +0 -7
  726. package/dist/types/src/util/find-shape-at-path.d.ts +0 -21
  727. package/dist/types/src/util/form-config.d.ts +0 -11
  728. package/dist/types/src/util/get-conflicting-properties.d.ts +0 -6
  729. package/dist/types/src/util/get-return-shape.d.ts +0 -4
  730. package/dist/types/src/util/has-arg.d.ts +0 -4
  731. package/dist/types/src/util/merge.d.ts +0 -15
  732. package/dist/types/src/util/patch-schema.d.ts +0 -8
  733. package/dist/types/src/util/shapes.d.ts +0 -5
  734. package/dist/types/src/validate.d.ts +0 -75
  735. package/dist/types/src/versions.d.ts +0 -4
  736. package/dist/types/src/workflows.d.ts +0 -14
  737. package/dist/types/tsconfig.types.tsbuildinfo +0 -1
  738. /package/dist/{esm/src/migration/types.js → __tests__/_examples.test.d.ts} +0 -0
  739. /package/dist/{esm/src/patterns.js → __tests__/agents.test.d.ts} +0 -0
  740. /package/dist/{esm/src/services/types.js → __tests__/api-version.test.d.ts} +0 -0
  741. /package/dist/{esm/src/types/transforms.js → __tests__/builtin-schema.test.d.ts} +0 -0
  742. /package/dist/{esm/src/agents.js → agents.js} +0 -0
  743. /package/dist/{types/src/api-version.d.ts → api-version.d.ts} +0 -0
  744. /package/dist/{esm/src/api-version.js → api-version.js} +0 -0
  745. /package/dist/{esm/src/auth-schemas.js → auth-schemas.js} +0 -0
  746. /package/dist/{esm/src/builtin-schema.js → builtin-schema.js} +0 -0
  747. /package/dist/{types/src/constants.d.ts → constants.d.ts} +0 -0
  748. /package/dist/{esm/src/constants.js → constants.js} +0 -0
  749. /package/dist/{esm/src/create-input-schema.js → create-input-schema.js} +0 -0
  750. /package/dist/{esm/src/enum.js → enum.js} +0 -0
  751. /package/dist/{esm/src/migration → migration}/to/v3.10.0.js +0 -0
  752. /package/dist/{esm/src/migration → migration}/to/v3.11.0.js +0 -0
  753. /package/dist/{esm/src/migration → migration}/to/v3.12.0.js +0 -0
  754. /package/dist/{esm/src/migration → migration}/to/v3.12.1.js +0 -0
  755. /package/dist/{esm/src/migration → migration}/to/v3.12.2.js +0 -0
  756. /package/dist/{esm/src/migration → migration}/to/v3.12.3.js +0 -0
  757. /package/dist/{esm/src/migration → migration}/to/v3.13.0.js +0 -0
  758. /package/dist/{esm/src/migration → migration}/to/v3.14.0.js +0 -0
  759. /package/dist/{esm/src/migration → migration}/to/v3.15.0.js +0 -0
  760. /package/dist/{esm/src/migration → migration}/to/v3.16.0.js +0 -0
  761. /package/dist/{esm/src/migration → migration}/to/v3.17.0.js +0 -0
  762. /package/dist/{esm/src/migration → migration}/to/v3.17.1.js +0 -0
  763. /package/dist/{esm/src/migration → migration}/to/v3.18.0.js +0 -0
  764. /package/dist/{esm/src/migration → migration}/to/v3.18.1.js +0 -0
  765. /package/dist/{esm/src/migration → migration}/to/v3.18.2.js +0 -0
  766. /package/dist/{esm/src/migration → migration}/to/v3.19.0.js +0 -0
  767. /package/dist/{esm/src/migration → migration}/to/v3.2.0.js +0 -0
  768. /package/dist/{esm/src/migration → migration}/to/v3.20.0.js +0 -0
  769. /package/dist/{esm/src/migration → migration}/to/v3.21.0.js +0 -0
  770. /package/dist/{esm/src/migration → migration}/to/v3.22.0.js +0 -0
  771. /package/dist/{esm/src/migration → migration}/to/v3.23.0.js +0 -0
  772. /package/dist/{esm/src/migration → migration}/to/v3.24.0.js +0 -0
  773. /package/dist/{esm/src/migration → migration}/to/v3.25.0.js +0 -0
  774. /package/dist/{esm/src/migration → migration}/to/v3.26.0.js +0 -0
  775. /package/dist/{esm/src/migration → migration}/to/v3.27.0.js +0 -0
  776. /package/dist/{esm/src/migration → migration}/to/v3.28.0.js +0 -0
  777. /package/dist/{esm/src/migration → migration}/to/v3.29.0.js +0 -0
  778. /package/dist/{esm/src/migration → migration}/to/v3.3.0.js +0 -0
  779. /package/dist/{esm/src/migration → migration}/to/v3.30.0.js +0 -0
  780. /package/dist/{esm/src/migration → migration}/to/v3.31.0.js +0 -0
  781. /package/dist/{esm/src/migration → migration}/to/v3.33.0.js +0 -0
  782. /package/dist/{esm/src/migration → migration}/to/v3.35.0.js +0 -0
  783. /package/dist/{esm/src/migration → migration}/to/v3.36.0.js +0 -0
  784. /package/dist/{esm/src/migration → migration}/to/v3.37.0.js +0 -0
  785. /package/dist/{esm/src/migration → migration}/to/v3.38.0.js +0 -0
  786. /package/dist/{esm/src/migration → migration}/to/v3.4.0.js +0 -0
  787. /package/dist/{esm/src/migration → migration}/to/v3.40.0.js +0 -0
  788. /package/dist/{esm/src/migration → migration}/to/v3.41.0.js +0 -0
  789. /package/dist/{esm/src/migration → migration}/to/v3.42.0.js +0 -0
  790. /package/dist/{esm/src/migration → migration}/to/v3.43.0.js +0 -0
  791. /package/dist/{esm/src/migration → migration}/to/v3.44.0.js +0 -0
  792. /package/dist/{esm/src/migration → migration}/to/v3.45.0.js +0 -0
  793. /package/dist/{esm/src/migration → migration}/to/v3.46.0.js +0 -0
  794. /package/dist/{esm/src/migration → migration}/to/v3.47.0.js +0 -0
  795. /package/dist/{esm/src/migration → migration}/to/v3.48.0.js +0 -0
  796. /package/dist/{esm/src/migration → migration}/to/v3.49.0.js +0 -0
  797. /package/dist/{esm/src/migration → migration}/to/v3.5.0.js +0 -0
  798. /package/dist/{esm/src/migration → migration}/to/v3.5.1.js +0 -0
  799. /package/dist/{esm/src/migration → migration}/to/v3.50.0.js +0 -0
  800. /package/dist/{esm/src/migration → migration}/to/v3.51.0.js +0 -0
  801. /package/dist/{esm/src/migration → migration}/to/v3.6.0.js +0 -0
  802. /package/dist/{esm/src/migration → migration}/to/v3.7.0.js +0 -0
  803. /package/dist/{esm/src/migration → migration}/to/v3.8.0.js +0 -0
  804. /package/dist/{esm/src/migration → migration}/to/v3.9.0.js +0 -0
  805. /package/dist/{types/src/migration → migration}/utils.d.ts +0 -0
  806. /package/dist/{esm/src/migration → migration}/utils.js +0 -0
  807. /package/dist/{esm/src/models → models}/query.js +0 -0
  808. /package/dist/{esm/src/models → models}/service.js +0 -0
  809. /package/dist/{types/src/patterns.d.ts → patterns.d.ts} +0 -0
  810. /package/dist/{types/src/project-schema → project-schema}/latest.d.ts +0 -0
  811. /package/dist/{esm/src/project-schema → project-schema}/latest.js +0 -0
  812. /package/dist/{types/src/project-schema → project-schema}/v1.0.0.d.ts +0 -0
  813. /package/dist/{esm/src/project-schema → project-schema}/v1.0.0.js +0 -0
  814. /package/dist/{types/src/project-schema → project-schema}/v3.0.0.d.ts +0 -0
  815. /package/dist/{esm/src/project-schema → project-schema}/v3.0.0.js +0 -0
  816. /package/dist/{types/src/project-schema → project-schema}/v3.1.0.d.ts +0 -0
  817. /package/dist/{esm/src/project-schema → project-schema}/v3.1.0.js +0 -0
  818. /package/dist/{types/src/project-schema → project-schema}/v3.10.0.d.ts +0 -0
  819. /package/dist/{esm/src/project-schema → project-schema}/v3.10.0.js +0 -0
  820. /package/dist/{types/src/project-schema → project-schema}/v3.11.0.d.ts +0 -0
  821. /package/dist/{esm/src/project-schema → project-schema}/v3.11.0.js +0 -0
  822. /package/dist/{types/src/project-schema → project-schema}/v3.12.0.d.ts +0 -0
  823. /package/dist/{esm/src/project-schema → project-schema}/v3.12.0.js +0 -0
  824. /package/dist/{types/src/project-schema → project-schema}/v3.12.1.d.ts +0 -0
  825. /package/dist/{esm/src/project-schema → project-schema}/v3.12.1.js +0 -0
  826. /package/dist/{types/src/project-schema → project-schema}/v3.12.2.d.ts +0 -0
  827. /package/dist/{esm/src/project-schema → project-schema}/v3.12.2.js +0 -0
  828. /package/dist/{types/src/project-schema → project-schema}/v3.12.3.d.ts +0 -0
  829. /package/dist/{esm/src/project-schema → project-schema}/v3.12.3.js +0 -0
  830. /package/dist/{types/src/project-schema → project-schema}/v3.13.0.d.ts +0 -0
  831. /package/dist/{esm/src/project-schema → project-schema}/v3.13.0.js +0 -0
  832. /package/dist/{types/src/project-schema → project-schema}/v3.13.1.d.ts +0 -0
  833. /package/dist/{esm/src/project-schema → project-schema}/v3.13.1.js +0 -0
  834. /package/dist/{types/src/project-schema → project-schema}/v3.14.0.d.ts +0 -0
  835. /package/dist/{esm/src/project-schema → project-schema}/v3.14.0.js +0 -0
  836. /package/dist/{types/src/project-schema → project-schema}/v3.15.0.d.ts +0 -0
  837. /package/dist/{esm/src/project-schema → project-schema}/v3.15.0.js +0 -0
  838. /package/dist/{types/src/project-schema → project-schema}/v3.16.0.d.ts +0 -0
  839. /package/dist/{esm/src/project-schema → project-schema}/v3.16.0.js +0 -0
  840. /package/dist/{types/src/project-schema → project-schema}/v3.17.0.d.ts +0 -0
  841. /package/dist/{esm/src/project-schema → project-schema}/v3.17.0.js +0 -0
  842. /package/dist/{types/src/project-schema → project-schema}/v3.17.1.d.ts +0 -0
  843. /package/dist/{esm/src/project-schema → project-schema}/v3.17.1.js +0 -0
  844. /package/dist/{types/src/project-schema → project-schema}/v3.18.0.d.ts +0 -0
  845. /package/dist/{esm/src/project-schema → project-schema}/v3.18.0.js +0 -0
  846. /package/dist/{types/src/project-schema → project-schema}/v3.18.1.d.ts +0 -0
  847. /package/dist/{esm/src/project-schema → project-schema}/v3.18.1.js +0 -0
  848. /package/dist/{types/src/project-schema → project-schema}/v3.18.2.d.ts +0 -0
  849. /package/dist/{esm/src/project-schema → project-schema}/v3.18.2.js +0 -0
  850. /package/dist/{types/src/project-schema → project-schema}/v3.19.0.d.ts +0 -0
  851. /package/dist/{esm/src/project-schema → project-schema}/v3.19.0.js +0 -0
  852. /package/dist/{types/src/project-schema → project-schema}/v3.2.0.d.ts +0 -0
  853. /package/dist/{esm/src/project-schema → project-schema}/v3.2.0.js +0 -0
  854. /package/dist/{types/src/project-schema → project-schema}/v3.20.0.d.ts +0 -0
  855. /package/dist/{esm/src/project-schema → project-schema}/v3.20.0.js +0 -0
  856. /package/dist/{types/src/project-schema → project-schema}/v3.21.0.d.ts +0 -0
  857. /package/dist/{esm/src/project-schema → project-schema}/v3.21.0.js +0 -0
  858. /package/dist/{types/src/project-schema → project-schema}/v3.22.0.d.ts +0 -0
  859. /package/dist/{esm/src/project-schema → project-schema}/v3.22.0.js +0 -0
  860. /package/dist/{types/src/project-schema → project-schema}/v3.23.0.d.ts +0 -0
  861. /package/dist/{esm/src/project-schema → project-schema}/v3.23.0.js +0 -0
  862. /package/dist/{types/src/project-schema → project-schema}/v3.24.0.d.ts +0 -0
  863. /package/dist/{esm/src/project-schema → project-schema}/v3.24.0.js +0 -0
  864. /package/dist/{types/src/project-schema → project-schema}/v3.25.0.d.ts +0 -0
  865. /package/dist/{esm/src/project-schema → project-schema}/v3.25.0.js +0 -0
  866. /package/dist/{types/src/project-schema → project-schema}/v3.26.0.d.ts +0 -0
  867. /package/dist/{esm/src/project-schema → project-schema}/v3.26.0.js +0 -0
  868. /package/dist/{types/src/project-schema → project-schema}/v3.27.0.d.ts +0 -0
  869. /package/dist/{esm/src/project-schema → project-schema}/v3.27.0.js +0 -0
  870. /package/dist/{types/src/project-schema → project-schema}/v3.28.0.d.ts +0 -0
  871. /package/dist/{esm/src/project-schema → project-schema}/v3.28.0.js +0 -0
  872. /package/dist/{types/src/project-schema → project-schema}/v3.29.0.d.ts +0 -0
  873. /package/dist/{esm/src/project-schema → project-schema}/v3.29.0.js +0 -0
  874. /package/dist/{types/src/project-schema → project-schema}/v3.3.0.d.ts +0 -0
  875. /package/dist/{esm/src/project-schema → project-schema}/v3.3.0.js +0 -0
  876. /package/dist/{types/src/project-schema → project-schema}/v3.30.0.d.ts +0 -0
  877. /package/dist/{esm/src/project-schema → project-schema}/v3.30.0.js +0 -0
  878. /package/dist/{types/src/project-schema → project-schema}/v3.31.0.d.ts +0 -0
  879. /package/dist/{esm/src/project-schema → project-schema}/v3.31.0.js +0 -0
  880. /package/dist/{types/src/project-schema → project-schema}/v3.32.0.d.ts +0 -0
  881. /package/dist/{esm/src/project-schema → project-schema}/v3.32.0.js +0 -0
  882. /package/dist/{types/src/project-schema → project-schema}/v3.33.0.d.ts +0 -0
  883. /package/dist/{esm/src/project-schema → project-schema}/v3.33.0.js +0 -0
  884. /package/dist/{types/src/project-schema → project-schema}/v3.34.0.d.ts +0 -0
  885. /package/dist/{esm/src/project-schema → project-schema}/v3.34.0.js +0 -0
  886. /package/dist/{types/src/project-schema → project-schema}/v3.35.0.d.ts +0 -0
  887. /package/dist/{esm/src/project-schema → project-schema}/v3.35.0.js +0 -0
  888. /package/dist/{types/src/project-schema → project-schema}/v3.36.0.d.ts +0 -0
  889. /package/dist/{esm/src/project-schema → project-schema}/v3.36.0.js +0 -0
  890. /package/dist/{types/src/project-schema → project-schema}/v3.37.0.d.ts +0 -0
  891. /package/dist/{esm/src/project-schema → project-schema}/v3.37.0.js +0 -0
  892. /package/dist/{types/src/project-schema → project-schema}/v3.38.0.d.ts +0 -0
  893. /package/dist/{esm/src/project-schema → project-schema}/v3.38.0.js +0 -0
  894. /package/dist/{types/src/project-schema → project-schema}/v3.39.0.d.ts +0 -0
  895. /package/dist/{esm/src/project-schema → project-schema}/v3.39.0.js +0 -0
  896. /package/dist/{types/src/project-schema → project-schema}/v3.4.0.d.ts +0 -0
  897. /package/dist/{esm/src/project-schema → project-schema}/v3.4.0.js +0 -0
  898. /package/dist/{types/src/project-schema → project-schema}/v3.40.0.d.ts +0 -0
  899. /package/dist/{esm/src/project-schema → project-schema}/v3.40.0.js +0 -0
  900. /package/dist/{types/src/project-schema → project-schema}/v3.41.0.d.ts +0 -0
  901. /package/dist/{esm/src/project-schema → project-schema}/v3.41.0.js +0 -0
  902. /package/dist/{types/src/project-schema → project-schema}/v3.42.0.d.ts +0 -0
  903. /package/dist/{esm/src/project-schema → project-schema}/v3.42.0.js +0 -0
  904. /package/dist/{types/src/project-schema → project-schema}/v3.43.0.d.ts +0 -0
  905. /package/dist/{esm/src/project-schema → project-schema}/v3.43.0.js +0 -0
  906. /package/dist/{types/src/project-schema → project-schema}/v3.44.0.d.ts +0 -0
  907. /package/dist/{esm/src/project-schema → project-schema}/v3.44.0.js +0 -0
  908. /package/dist/{types/src/project-schema → project-schema}/v3.45.0.d.ts +0 -0
  909. /package/dist/{esm/src/project-schema → project-schema}/v3.45.0.js +0 -0
  910. /package/dist/{types/src/project-schema → project-schema}/v3.46.0.d.ts +0 -0
  911. /package/dist/{esm/src/project-schema → project-schema}/v3.46.0.js +0 -0
  912. /package/dist/{types/src/project-schema → project-schema}/v3.47.0.d.ts +0 -0
  913. /package/dist/{esm/src/project-schema → project-schema}/v3.47.0.js +0 -0
  914. /package/dist/{types/src/project-schema → project-schema}/v3.48.0.d.ts +0 -0
  915. /package/dist/{esm/src/project-schema → project-schema}/v3.48.0.js +0 -0
  916. /package/dist/{types/src/project-schema → project-schema}/v3.49.0.d.ts +0 -0
  917. /package/dist/{esm/src/project-schema → project-schema}/v3.49.0.js +0 -0
  918. /package/dist/{types/src/project-schema → project-schema}/v3.5.0.d.ts +0 -0
  919. /package/dist/{esm/src/project-schema → project-schema}/v3.5.0.js +0 -0
  920. /package/dist/{types/src/project-schema → project-schema}/v3.5.1.d.ts +0 -0
  921. /package/dist/{esm/src/project-schema → project-schema}/v3.5.1.js +0 -0
  922. /package/dist/{types/src/project-schema → project-schema}/v3.50.0.d.ts +0 -0
  923. /package/dist/{esm/src/project-schema → project-schema}/v3.50.0.js +0 -0
  924. /package/dist/{types/src/project-schema → project-schema}/v3.51.0.d.ts +0 -0
  925. /package/dist/{esm/src/project-schema → project-schema}/v3.51.0.js +0 -0
  926. /package/dist/{types/src/project-schema → project-schema}/v3.6.0.d.ts +0 -0
  927. /package/dist/{esm/src/project-schema → project-schema}/v3.6.0.js +0 -0
  928. /package/dist/{types/src/project-schema → project-schema}/v3.7.0.d.ts +0 -0
  929. /package/dist/{esm/src/project-schema → project-schema}/v3.7.0.js +0 -0
  930. /package/dist/{types/src/project-schema → project-schema}/v3.8.0.d.ts +0 -0
  931. /package/dist/{esm/src/project-schema → project-schema}/v3.8.0.js +0 -0
  932. /package/dist/{types/src/project-schema → project-schema}/v3.9.0.d.ts +0 -0
  933. /package/dist/{esm/src/project-schema → project-schema}/v3.9.0.js +0 -0
  934. /package/dist/{types/src/project-schema → project-schema}/v4.0.0.d.ts +0 -0
  935. /package/dist/{esm/src/project-schema → project-schema}/v4.0.0.js +0 -0
  936. /package/dist/{types/src/scalars.d.ts → scalars.d.ts} +0 -0
  937. /package/dist/{esm/src/scalars.js → scalars.js} +0 -0
  938. /package/dist/{types/src/schemas → schemas}/index.d.ts +0 -0
  939. /package/dist/{cjs/src/schemas → schemas}/project-schema/experimental.json +0 -0
  940. /package/dist/{cjs/src/schemas → schemas}/project-schema/latest.json +0 -0
  941. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v1.0.0.json +0 -0
  942. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.0.0.json +0 -0
  943. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.1.0.json +0 -0
  944. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.2.0.json +0 -0
  945. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.3.0.json +0 -0
  946. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.4.0.json +0 -0
  947. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.5.0.json +0 -0
  948. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.5.1.json +0 -0
  949. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.6.0.json +0 -0
  950. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.7.0.json +0 -0
  951. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.8.0.json +0 -0
  952. /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.9.0.json +0 -0
  953. /package/dist/{cjs/src/schemas → schemas}/project-schema/v1.0.0.json +0 -0
  954. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.0.0.json +0 -0
  955. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.1.0.json +0 -0
  956. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.10.0.json +0 -0
  957. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.11.0.json +0 -0
  958. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.0.json +0 -0
  959. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.1.json +0 -0
  960. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.2.json +0 -0
  961. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.3.json +0 -0
  962. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.13.0.json +0 -0
  963. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.14.0.json +0 -0
  964. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.15.0.json +0 -0
  965. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.16.0.json +0 -0
  966. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.17.0.json +0 -0
  967. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.17.1.json +0 -0
  968. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.0.json +0 -0
  969. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.1.json +0 -0
  970. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.2.json +0 -0
  971. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.19.0.json +0 -0
  972. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.2.0.json +0 -0
  973. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.20.0.json +0 -0
  974. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.21.0.json +0 -0
  975. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.22.0.json +0 -0
  976. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.23.0.json +0 -0
  977. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.24.0.json +0 -0
  978. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.25.0.json +0 -0
  979. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.26.0.json +0 -0
  980. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.27.0.json +0 -0
  981. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.28.0.json +0 -0
  982. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.29.0.json +0 -0
  983. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.3.0.json +0 -0
  984. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.30.0.json +0 -0
  985. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.31.0.json +0 -0
  986. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.32.0.json +0 -0
  987. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.33.0.json +0 -0
  988. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.34.0.json +0 -0
  989. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.35.0.json +0 -0
  990. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.36.0.json +0 -0
  991. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.37.0.json +0 -0
  992. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.38.0.json +0 -0
  993. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.39.0.json +0 -0
  994. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.4.0.json +0 -0
  995. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.40.0.json +0 -0
  996. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.41.0.json +0 -0
  997. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.42.0.json +0 -0
  998. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.43.0.json +0 -0
  999. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.44.0.json +0 -0
  1000. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.45.0.json +0 -0
  1001. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.46.0.json +0 -0
  1002. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.47.0.json +0 -0
  1003. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.48.0.json +0 -0
  1004. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.49.0.json +0 -0
  1005. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.5.0.json +0 -0
  1006. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.5.1.json +0 -0
  1007. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.50.0.json +0 -0
  1008. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.51.0.json +0 -0
  1009. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.6.0.json +0 -0
  1010. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.7.0.json +0 -0
  1011. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.8.0.json +0 -0
  1012. /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.9.0.json +0 -0
  1013. /package/dist/{cjs/src/schemas → schemas}/project-schema/v4.0.0.json +0 -0
  1014. /package/dist/{cjs/src/schemas → schemas}/project-schema.json +0 -0
  1015. /package/dist/{types/src/services → services}/types.d.ts +0 -0
  1016. /package/dist/{esm/src/services → services}/util.js +0 -0
  1017. /package/dist/{esm/src/template-shapes → template-shapes}/index.js +0 -0
  1018. /package/dist/{esm/src/template-shapes → template-shapes}/names.js +0 -0
  1019. /package/dist/{esm/src/template-shapes → template-shapes}/types.js +0 -0
  1020. /package/dist/{esm/src/types → types}/types.js +0 -0
  1021. /package/dist/{esm/src/util → util}/ai-tools.js +0 -0
  1022. /package/dist/{esm/src/util → util}/find-shape-at-path.js +0 -0
  1023. /package/dist/{esm/src/util → util}/patch-schema.js +0 -0
  1024. /package/dist/{esm/src/util → util}/shapes.js +0 -0
@@ -2,7 +2,9 @@
2
2
  "apiVersion": "2",
3
3
  "projectId": "0b205d13-df7b-4d38-8a21-7d0d96b341fc",
4
4
  "defaultLocale": "en-us",
5
- "locales": ["en-us"],
5
+ "locales": [
6
+ "en-us"
7
+ ],
6
8
  "workflows": {
7
9
  "default": {
8
10
  "name": "default",
@@ -82,7 +84,10 @@
82
84
  "TSStaticSiteEnvironmentVariables": {
83
85
  "default": {
84
86
  "widget": "repeater",
85
- "order": ["name", "value"],
87
+ "order": [
88
+ "name",
89
+ "value"
90
+ ],
86
91
  "disabled": true,
87
92
  "properties": {
88
93
  "name": {
@@ -98,7 +103,14 @@
98
103
  },
99
104
  "TSStaticSite": {
100
105
  "default": {
101
- "order": ["title", "provider", "destination", "idKey", "secretKey", "environmentVariables"],
106
+ "order": [
107
+ "title",
108
+ "provider",
109
+ "destination",
110
+ "idKey",
111
+ "secretKey",
112
+ "environmentVariables"
113
+ ],
102
114
  "properties": {
103
115
  "title": {
104
116
  "widget": "singleLineText",
@@ -240,7 +252,11 @@
240
252
  "service": "gregs-takeshape-store"
241
253
  }
242
254
  },
243
- "order": ["title", "gregsTakeshapeStoreId", "gregsTakeshapeStore"]
255
+ "order": [
256
+ "title",
257
+ "gregsTakeshapeStoreId",
258
+ "gregsTakeshapeStore"
259
+ ]
244
260
  }
245
261
  },
246
262
  "Collection": {
@@ -306,7 +322,11 @@
306
322
  "service": "gregs-takeshape-store"
307
323
  }
308
324
  },
309
- "order": ["title", "gregsTakeshapeStoreId", "gregsTakeshapeStore"]
325
+ "order": [
326
+ "title",
327
+ "gregsTakeshapeStoreId",
328
+ "gregsTakeshapeStore"
329
+ ]
310
330
  }
311
331
  },
312
332
  "ProductVariant": {
@@ -402,7 +422,11 @@
402
422
  "service": "gregs-takeshape-store"
403
423
  }
404
424
  },
405
- "order": ["title", "gregsTakeshapeStoreId", "gregsTakeshapeStore"]
425
+ "order": [
426
+ "title",
427
+ "gregsTakeshapeStoreId",
428
+ "gregsTakeshapeStore"
429
+ ]
406
430
  }
407
431
  },
408
432
  "CollectionInObjectObject": {
@@ -466,7 +490,10 @@
466
490
  "service": "gregs-takeshape-store"
467
491
  }
468
492
  },
469
- "order": ["collectionId", "collection"]
493
+ "order": [
494
+ "collectionId",
495
+ "collection"
496
+ ]
470
497
  }
471
498
  },
472
499
  "CollectionInObject": {
@@ -476,7 +503,9 @@
476
503
  "widget": "shapeObject"
477
504
  }
478
505
  },
479
- "order": ["object"]
506
+ "order": [
507
+ "object"
508
+ ]
480
509
  }
481
510
  }
482
511
  },
@@ -1377,7 +1406,9 @@
1377
1406
  "type": "string"
1378
1407
  }
1379
1408
  },
1380
- "required": ["id"]
1409
+ "required": [
1410
+ "id"
1411
+ ]
1381
1412
  }
1382
1413
  },
1383
1414
  "TSColorHsl": {
@@ -1600,18 +1631,27 @@
1600
1631
  "title": "Status",
1601
1632
  "oneOf": [
1602
1633
  {
1603
- "enum": ["r1uCfi4ZL", "disabled"],
1634
+ "enum": [
1635
+ "r1uCfi4ZL",
1636
+ "disabled"
1637
+ ],
1604
1638
  "title": "Disabled"
1605
1639
  },
1606
1640
  {
1607
- "enum": ["rkhRGs4WL", "enabled"],
1641
+ "enum": [
1642
+ "rkhRGs4WL",
1643
+ "enabled"
1644
+ ],
1608
1645
  "title": "Enabled"
1609
1646
  }
1610
1647
  ],
1611
1648
  "@workflow": "default"
1612
1649
  }
1613
1650
  },
1614
- "required": ["filename", "path"]
1651
+ "required": [
1652
+ "filename",
1653
+ "path"
1654
+ ]
1615
1655
  }
1616
1656
  },
1617
1657
  "TSStaticSite": {
@@ -1645,27 +1685,39 @@
1645
1685
  "@l10n": false,
1646
1686
  "oneOf": [
1647
1687
  {
1648
- "enum": ["s3"],
1688
+ "enum": [
1689
+ "s3"
1690
+ ],
1649
1691
  "title": "S3"
1650
1692
  },
1651
1693
  {
1652
- "enum": ["gcs"],
1694
+ "enum": [
1695
+ "gcs"
1696
+ ],
1653
1697
  "title": "Google Cloud Storage"
1654
1698
  },
1655
1699
  {
1656
- "enum": ["ftp"],
1700
+ "enum": [
1701
+ "ftp"
1702
+ ],
1657
1703
  "title": "FTP Client"
1658
1704
  },
1659
1705
  {
1660
- "enum": ["azure"],
1706
+ "enum": [
1707
+ "azure"
1708
+ ],
1661
1709
  "title": "Azure Storage Account"
1662
1710
  },
1663
1711
  {
1664
- "enum": ["netlify"],
1712
+ "enum": [
1713
+ "netlify"
1714
+ ],
1665
1715
  "title": "Netlify"
1666
1716
  },
1667
1717
  {
1668
- "enum": ["vercel"],
1718
+ "enum": [
1719
+ "vercel"
1720
+ ],
1669
1721
  "title": "Vercel"
1670
1722
  }
1671
1723
  ],
@@ -1790,18 +1842,28 @@
1790
1842
  "title": "Status",
1791
1843
  "oneOf": [
1792
1844
  {
1793
- "enum": ["r1uCfi4ZL", "disabled"],
1845
+ "enum": [
1846
+ "r1uCfi4ZL",
1847
+ "disabled"
1848
+ ],
1794
1849
  "title": "Disabled"
1795
1850
  },
1796
1851
  {
1797
- "enum": ["rkhRGs4WL", "enabled"],
1852
+ "enum": [
1853
+ "rkhRGs4WL",
1854
+ "enabled"
1855
+ ],
1798
1856
  "title": "Enabled"
1799
1857
  }
1800
1858
  ],
1801
1859
  "@workflow": "default"
1802
1860
  }
1803
1861
  },
1804
- "required": ["title", "provider", "destination"]
1862
+ "required": [
1863
+ "title",
1864
+ "provider",
1865
+ "destination"
1866
+ ]
1805
1867
  }
1806
1868
  },
1807
1869
  "TSStaticSiteEnvironmentVariables": {
@@ -1984,11 +2046,17 @@
1984
2046
  "title": "Status",
1985
2047
  "oneOf": [
1986
2048
  {
1987
- "enum": ["r1uCfi4ZL", "disabled"],
2049
+ "enum": [
2050
+ "r1uCfi4ZL",
2051
+ "disabled"
2052
+ ],
1988
2053
  "title": "Disabled"
1989
2054
  },
1990
2055
  {
1991
- "enum": ["rkhRGs4WL", "enabled"],
2056
+ "enum": [
2057
+ "rkhRGs4WL",
2058
+ "enabled"
2059
+ ],
1992
2060
  "title": "Enabled"
1993
2061
  }
1994
2062
  ],
@@ -2112,11 +2180,17 @@
2112
2180
  "title": "Status",
2113
2181
  "oneOf": [
2114
2182
  {
2115
- "enum": ["r1uCfi4ZL", "disabled"],
2183
+ "enum": [
2184
+ "r1uCfi4ZL",
2185
+ "disabled"
2186
+ ],
2116
2187
  "title": "Disabled"
2117
2188
  },
2118
2189
  {
2119
- "enum": ["rkhRGs4WL", "enabled"],
2190
+ "enum": [
2191
+ "rkhRGs4WL",
2192
+ "enabled"
2193
+ ],
2120
2194
  "title": "Enabled"
2121
2195
  }
2122
2196
  ],
@@ -2240,11 +2314,17 @@
2240
2314
  "title": "Status",
2241
2315
  "oneOf": [
2242
2316
  {
2243
- "enum": ["r1uCfi4ZL", "disabled"],
2317
+ "enum": [
2318
+ "r1uCfi4ZL",
2319
+ "disabled"
2320
+ ],
2244
2321
  "title": "Disabled"
2245
2322
  },
2246
2323
  {
2247
- "enum": ["rkhRGs4WL", "enabled"],
2324
+ "enum": [
2325
+ "rkhRGs4WL",
2326
+ "enabled"
2327
+ ],
2248
2328
  "title": "Enabled"
2249
2329
  }
2250
2330
  ],
@@ -2749,7 +2829,9 @@
2749
2829
  "description": "The ID of the collection to check."
2750
2830
  }
2751
2831
  },
2752
- "required": ["id"]
2832
+ "required": [
2833
+ "id"
2834
+ ]
2753
2835
  },
2754
2836
  "description": "Whether the product is in a given collection."
2755
2837
  },
@@ -2819,7 +2901,10 @@
2819
2901
  "description": "The key for the metafield."
2820
2902
  }
2821
2903
  },
2822
- "required": ["namespace", "key"]
2904
+ "required": [
2905
+ "namespace",
2906
+ "key"
2907
+ ]
2823
2908
  },
2824
2909
  "description": "Returns a metafield by namespace and key that belongs to the resource."
2825
2910
  },
@@ -2911,7 +2996,10 @@
2911
2996
  "description": "The key for the private metafield."
2912
2997
  }
2913
2998
  },
2914
- "required": ["namespace", "key"]
2999
+ "required": [
3000
+ "namespace",
3001
+ "key"
3002
+ ]
2915
3003
  },
2916
3004
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
2917
3005
  },
@@ -3057,7 +3145,9 @@
3057
3145
  "description": "The ID of the channel to check."
3058
3146
  }
3059
3147
  },
3060
- "required": ["channelId"]
3148
+ "required": [
3149
+ "channelId"
3150
+ ]
3061
3151
  },
3062
3152
  "description": "Check to see whether the resource is published to a given channel."
3063
3153
  },
@@ -3084,7 +3174,9 @@
3084
3174
  "description": "The ID of the publication to check."
3085
3175
  }
3086
3176
  },
3087
- "required": ["publicationId"]
3177
+ "required": [
3178
+ "publicationId"
3179
+ ]
3088
3180
  },
3089
3181
  "description": "Check to see whether the resource is published to a given publication."
3090
3182
  },
@@ -3232,7 +3324,9 @@
3232
3324
  "description": "Filters translations locale."
3233
3325
  }
3234
3326
  },
3235
- "required": ["locale"]
3327
+ "required": [
3328
+ "locale"
3329
+ ]
3236
3330
  },
3237
3331
  "description": "The translations associated with the resource."
3238
3332
  },
@@ -3717,7 +3811,10 @@
3717
3811
  "description": "The key for the metafield."
3718
3812
  }
3719
3813
  },
3720
- "required": ["namespace", "key"]
3814
+ "required": [
3815
+ "namespace",
3816
+ "key"
3817
+ ]
3721
3818
  },
3722
3819
  "description": "Returns a metafield by namespace and key that belongs to the resource."
3723
3820
  },
@@ -3819,7 +3916,10 @@
3819
3916
  "description": "The key for the private metafield."
3820
3917
  }
3821
3918
  },
3822
- "required": ["namespace", "key"]
3919
+ "required": [
3920
+ "namespace",
3921
+ "key"
3922
+ ]
3823
3923
  },
3824
3924
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
3825
3925
  },
@@ -3921,7 +4021,9 @@
3921
4021
  "description": "Filters translations locale."
3922
4022
  }
3923
4023
  },
3924
- "required": ["locale"]
4024
+ "required": [
4025
+ "locale"
4026
+ ]
3925
4027
  },
3926
4028
  "description": "The translations associated with the resource."
3927
4029
  },
@@ -4121,7 +4223,9 @@
4121
4223
  "description": "The ID of the product to check."
4122
4224
  }
4123
4225
  },
4124
- "required": ["id"]
4226
+ "required": [
4227
+ "id"
4228
+ ]
4125
4229
  },
4126
4230
  "description": "Whether the collection includes the specified product."
4127
4231
  },
@@ -4178,7 +4282,10 @@
4178
4282
  "description": "The key for the metafield."
4179
4283
  }
4180
4284
  },
4181
- "required": ["namespace", "key"]
4285
+ "required": [
4286
+ "namespace",
4287
+ "key"
4288
+ ]
4182
4289
  },
4183
4290
  "description": "Returns a metafield by namespace and key that belongs to the resource."
4184
4291
  },
@@ -4232,7 +4339,10 @@
4232
4339
  "description": "The key for the private metafield."
4233
4340
  }
4234
4341
  },
4235
- "required": ["namespace", "key"]
4342
+ "required": [
4343
+ "namespace",
4344
+ "key"
4345
+ ]
4236
4346
  },
4237
4347
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
4238
4348
  },
@@ -4381,7 +4491,9 @@
4381
4491
  "description": "The ID of the channel to check."
4382
4492
  }
4383
4493
  },
4384
- "required": ["channelId"]
4494
+ "required": [
4495
+ "channelId"
4496
+ ]
4385
4497
  },
4386
4498
  "description": "Check to see whether the resource is published to a given channel."
4387
4499
  },
@@ -4408,7 +4520,9 @@
4408
4520
  "description": "The ID of the publication to check."
4409
4521
  }
4410
4522
  },
4411
- "required": ["publicationId"]
4523
+ "required": [
4524
+ "publicationId"
4525
+ ]
4412
4526
  },
4413
4527
  "description": "Check to see whether the resource is published to a given publication."
4414
4528
  },
@@ -4528,7 +4642,9 @@
4528
4642
  "description": "Filters translations locale."
4529
4643
  }
4530
4644
  },
4531
- "required": ["locale"]
4645
+ "required": [
4646
+ "locale"
4647
+ ]
4532
4648
  },
4533
4649
  "description": "The translations associated with the resource."
4534
4650
  },
@@ -4747,7 +4863,11 @@
4747
4863
  "description": "The value and value type of the metafield, wrapped in a ValueInput object."
4748
4864
  }
4749
4865
  },
4750
- "required": ["namespace", "key", "valueInput"]
4866
+ "required": [
4867
+ "namespace",
4868
+ "key",
4869
+ "valueInput"
4870
+ ]
4751
4871
  }
4752
4872
  },
4753
4873
  "Shopify_ProductPublicationInput": {
@@ -4789,7 +4909,11 @@
4789
4909
  "id": "Shopify_ProductStatus",
4790
4910
  "description": "The possible product statuses.",
4791
4911
  "schema": {
4792
- "enum": ["ACTIVE", "ARCHIVED", "DRAFT"]
4912
+ "enum": [
4913
+ "ACTIVE",
4914
+ "ARCHIVED",
4915
+ "DRAFT"
4916
+ ]
4793
4917
  }
4794
4918
  },
4795
4919
  "Shopify_CollectionSortKeys": {
@@ -4798,7 +4922,12 @@
4798
4922
  "id": "Shopify_CollectionSortKeys",
4799
4923
  "description": "The set of valid sort keys for the Collection query.",
4800
4924
  "schema": {
4801
- "enum": ["TITLE", "UPDATED_AT", "ID", "RELEVANCE"]
4925
+ "enum": [
4926
+ "TITLE",
4927
+ "UPDATED_AT",
4928
+ "ID",
4929
+ "RELEVANCE"
4930
+ ]
4802
4931
  }
4803
4932
  },
4804
4933
  "Shopify_CollectionConnection": {
@@ -4823,7 +4952,10 @@
4823
4952
  "description": "Information to aid in pagination."
4824
4953
  }
4825
4954
  },
4826
- "required": ["edges", "pageInfo"]
4955
+ "required": [
4956
+ "edges",
4957
+ "pageInfo"
4958
+ ]
4827
4959
  }
4828
4960
  },
4829
4961
  "Shopify_Image": {
@@ -4865,7 +4997,10 @@
4865
4997
  "description": "The key for the metafield."
4866
4998
  }
4867
4999
  },
4868
- "required": ["namespace", "key"]
5000
+ "required": [
5001
+ "namespace",
5002
+ "key"
5003
+ ]
4869
5004
  },
4870
5005
  "description": "Returns a metafield by namespace and key that belongs to the resource."
4871
5006
  },
@@ -4925,7 +5060,10 @@
4925
5060
  "description": "The key for the private metafield."
4926
5061
  }
4927
5062
  },
4928
- "required": ["namespace", "key"]
5063
+ "required": [
5064
+ "namespace",
5065
+ "key"
5066
+ ]
4929
5067
  },
4930
5068
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
4931
5069
  },
@@ -5008,7 +5146,13 @@
5008
5146
  "description": "The original width of the image in pixels. Returns `null` if the image is not hosted by Shopify."
5009
5147
  }
5010
5148
  },
5011
- "required": ["metafields", "originalSrc", "privateMetafields", "src", "transformedSrc"]
5149
+ "required": [
5150
+ "metafields",
5151
+ "originalSrc",
5152
+ "privateMetafields",
5153
+ "src",
5154
+ "transformedSrc"
5155
+ ]
5012
5156
  }
5013
5157
  },
5014
5158
  "Shopify_Media": {
@@ -5048,7 +5192,11 @@
5048
5192
  "description": "Current status of the media."
5049
5193
  }
5050
5194
  },
5051
- "required": ["mediaContentType", "mediaErrors", "status"]
5195
+ "required": [
5196
+ "mediaContentType",
5197
+ "mediaErrors",
5198
+ "status"
5199
+ ]
5052
5200
  }
5053
5201
  },
5054
5202
  "Shopify_ResourceFeedback": {
@@ -5082,7 +5230,11 @@
5082
5230
  "description": "Summary of resource feedback pertaining to the resource."
5083
5231
  }
5084
5232
  },
5085
- "required": ["appFeedback", "details", "summary"]
5233
+ "required": [
5234
+ "appFeedback",
5235
+ "details",
5236
+ "summary"
5237
+ ]
5086
5238
  }
5087
5239
  },
5088
5240
  "Shopify_ProductImageSortKeys": {
@@ -5091,7 +5243,12 @@
5091
5243
  "id": "Shopify_ProductImageSortKeys",
5092
5244
  "description": "The set of valid sort keys for the ProductImage query.",
5093
5245
  "schema": {
5094
- "enum": ["CREATED_AT", "POSITION", "ID", "RELEVANCE"]
5246
+ "enum": [
5247
+ "CREATED_AT",
5248
+ "POSITION",
5249
+ "ID",
5250
+ "RELEVANCE"
5251
+ ]
5095
5252
  }
5096
5253
  },
5097
5254
  "Shopify_CropRegion": {
@@ -5100,7 +5257,13 @@
5100
5257
  "id": "Shopify_CropRegion",
5101
5258
  "description": "The part of the image that should remain after cropping.",
5102
5259
  "schema": {
5103
- "enum": ["CENTER", "TOP", "BOTTOM", "LEFT", "RIGHT"]
5260
+ "enum": [
5261
+ "CENTER",
5262
+ "TOP",
5263
+ "BOTTOM",
5264
+ "LEFT",
5265
+ "RIGHT"
5266
+ ]
5104
5267
  }
5105
5268
  },
5106
5269
  "Shopify_ImageConnection": {
@@ -5125,7 +5288,10 @@
5125
5288
  "description": "Information to aid in pagination."
5126
5289
  }
5127
5290
  },
5128
- "required": ["edges", "pageInfo"]
5291
+ "required": [
5292
+ "edges",
5293
+ "pageInfo"
5294
+ ]
5129
5295
  }
5130
5296
  },
5131
5297
  "Shopify_ProductMediaSortKeys": {
@@ -5134,7 +5300,11 @@
5134
5300
  "id": "Shopify_ProductMediaSortKeys",
5135
5301
  "description": "The set of valid sort keys for the ProductMedia query.",
5136
5302
  "schema": {
5137
- "enum": ["POSITION", "ID", "RELEVANCE"]
5303
+ "enum": [
5304
+ "POSITION",
5305
+ "ID",
5306
+ "RELEVANCE"
5307
+ ]
5138
5308
  }
5139
5309
  },
5140
5310
  "Shopify_MediaConnection": {
@@ -5159,7 +5329,10 @@
5159
5329
  "description": "Information to aid in pagination."
5160
5330
  }
5161
5331
  },
5162
- "required": ["edges", "pageInfo"]
5332
+ "required": [
5333
+ "edges",
5334
+ "pageInfo"
5335
+ ]
5163
5336
  }
5164
5337
  },
5165
5338
  "Shopify_Metafield": {
@@ -5258,7 +5431,10 @@
5258
5431
  "description": "Information to aid in pagination."
5259
5432
  }
5260
5433
  },
5261
- "required": ["edges", "pageInfo"]
5434
+ "required": [
5435
+ "edges",
5436
+ "pageInfo"
5437
+ ]
5262
5438
  }
5263
5439
  },
5264
5440
  "Shopify_ProductOption": {
@@ -5299,7 +5475,9 @@
5299
5475
  "description": "Filters translations locale."
5300
5476
  }
5301
5477
  },
5302
- "required": ["locale"]
5478
+ "required": [
5479
+ "locale"
5480
+ ]
5303
5481
  },
5304
5482
  "description": "The translations associated with the resource."
5305
5483
  },
@@ -5312,7 +5490,13 @@
5312
5490
  "description": "The corresponding value to the product option name."
5313
5491
  }
5314
5492
  },
5315
- "required": ["id", "name", "position", "translations", "values"]
5493
+ "required": [
5494
+ "id",
5495
+ "name",
5496
+ "position",
5497
+ "translations",
5498
+ "values"
5499
+ ]
5316
5500
  }
5317
5501
  },
5318
5502
  "Shopify_ProductPriceRange": {
@@ -5334,7 +5518,10 @@
5334
5518
  "description": "The lowest variant's price."
5335
5519
  }
5336
5520
  },
5337
- "required": ["maxVariantPrice", "minVariantPrice"]
5521
+ "required": [
5522
+ "maxVariantPrice",
5523
+ "minVariantPrice"
5524
+ ]
5338
5525
  }
5339
5526
  },
5340
5527
  "Shopify_ProductPriceRangeV2": {
@@ -5356,7 +5543,10 @@
5356
5543
  "description": "The lowest variant's price."
5357
5544
  }
5358
5545
  },
5359
- "required": ["maxVariantPrice", "minVariantPrice"]
5546
+ "required": [
5547
+ "maxVariantPrice",
5548
+ "minVariantPrice"
5549
+ ]
5360
5550
  }
5361
5551
  },
5362
5552
  "Shopify_PrivateMetafield": {
@@ -5404,7 +5594,15 @@
5404
5594
  "description": "Represents the private metafield value type."
5405
5595
  }
5406
5596
  },
5407
- "required": ["createdAt", "id", "key", "namespace", "updatedAt", "value", "valueType"]
5597
+ "required": [
5598
+ "createdAt",
5599
+ "id",
5600
+ "key",
5601
+ "namespace",
5602
+ "updatedAt",
5603
+ "value",
5604
+ "valueType"
5605
+ ]
5408
5606
  }
5409
5607
  },
5410
5608
  "Shopify_PrivateMetafieldConnection": {
@@ -5429,7 +5627,10 @@
5429
5627
  "description": "Information to aid in pagination."
5430
5628
  }
5431
5629
  },
5432
- "required": ["edges", "pageInfo"]
5630
+ "required": [
5631
+ "edges",
5632
+ "pageInfo"
5633
+ ]
5433
5634
  }
5434
5635
  },
5435
5636
  "Shopify_ProductPublicationConnection": {
@@ -5454,7 +5655,10 @@
5454
5655
  "description": "Information to aid in pagination."
5455
5656
  }
5456
5657
  },
5457
- "required": ["edges", "pageInfo"]
5658
+ "required": [
5659
+ "edges",
5660
+ "pageInfo"
5661
+ ]
5458
5662
  }
5459
5663
  },
5460
5664
  "Shopify_ResourcePublicationConnection": {
@@ -5479,7 +5683,10 @@
5479
5683
  "description": "Information to aid in pagination."
5480
5684
  }
5481
5685
  },
5482
- "required": ["edges", "pageInfo"]
5686
+ "required": [
5687
+ "edges",
5688
+ "pageInfo"
5689
+ ]
5483
5690
  }
5484
5691
  },
5485
5692
  "Shopify_ResourcePublicationV2Connection": {
@@ -5504,7 +5711,10 @@
5504
5711
  "description": "Information to aid in pagination."
5505
5712
  }
5506
5713
  },
5507
- "required": ["edges", "pageInfo"]
5714
+ "required": [
5715
+ "edges",
5716
+ "pageInfo"
5717
+ ]
5508
5718
  }
5509
5719
  },
5510
5720
  "Shopify_SEO": {
@@ -5552,7 +5762,10 @@
5552
5762
  "description": "The translation value."
5553
5763
  }
5554
5764
  },
5555
- "required": ["key", "locale"]
5765
+ "required": [
5766
+ "key",
5767
+ "locale"
5768
+ ]
5556
5769
  }
5557
5770
  },
5558
5771
  "Shopify_ChannelConnection": {
@@ -5577,7 +5790,10 @@
5577
5790
  "description": "Information to aid in pagination."
5578
5791
  }
5579
5792
  },
5580
- "required": ["edges", "pageInfo"]
5793
+ "required": [
5794
+ "edges",
5795
+ "pageInfo"
5796
+ ]
5581
5797
  }
5582
5798
  },
5583
5799
  "Shopify_PublicationConnection": {
@@ -5602,7 +5818,10 @@
5602
5818
  "description": "Information to aid in pagination."
5603
5819
  }
5604
5820
  },
5605
- "required": ["edges", "pageInfo"]
5821
+ "required": [
5822
+ "edges",
5823
+ "pageInfo"
5824
+ ]
5606
5825
  }
5607
5826
  },
5608
5827
  "Shopify_ProductVariantSortKeys": {
@@ -5649,7 +5868,10 @@
5649
5868
  "description": "Information to aid in pagination."
5650
5869
  }
5651
5870
  },
5652
- "required": ["edges", "pageInfo"]
5871
+ "required": [
5872
+ "edges",
5873
+ "pageInfo"
5874
+ ]
5653
5875
  }
5654
5876
  },
5655
5877
  "Shopify_ProductVariantInventoryManagement": {
@@ -5658,7 +5880,11 @@
5658
5880
  "id": "Shopify_ProductVariantInventoryManagement",
5659
5881
  "description": "The method of inventory tracking for a product variant.",
5660
5882
  "schema": {
5661
- "enum": ["SHOPIFY", "NOT_MANAGED", "FULFILLMENT_SERVICE"]
5883
+ "enum": [
5884
+ "SHOPIFY",
5885
+ "NOT_MANAGED",
5886
+ "FULFILLMENT_SERVICE"
5887
+ ]
5662
5888
  }
5663
5889
  },
5664
5890
  "Shopify_ProductVariantInventoryPolicy": {
@@ -5667,7 +5893,10 @@
5667
5893
  "id": "Shopify_ProductVariantInventoryPolicy",
5668
5894
  "description": "The inventory policy for a product variant controls whether customers can continue to buy the variant when it\nis out of stock. When the value is <code>continue</code>, customers are able to buy the variant when it's out of stock.\nWhen the value is <code>deny</code>, customers can't buy the variant when it's out of stock.",
5669
5895
  "schema": {
5670
- "enum": ["DENY", "CONTINUE"]
5896
+ "enum": [
5897
+ "DENY",
5898
+ "CONTINUE"
5899
+ ]
5671
5900
  }
5672
5901
  },
5673
5902
  "Shopify_InventoryLevelInput": {
@@ -5690,7 +5919,10 @@
5690
5919
  "description": "ID of the location."
5691
5920
  }
5692
5921
  },
5693
- "required": ["availableQuantity", "locationId"]
5922
+ "required": [
5923
+ "availableQuantity",
5924
+ "locationId"
5925
+ ]
5694
5926
  }
5695
5927
  },
5696
5928
  "Shopify_InventoryItemInput": {
@@ -5720,7 +5952,12 @@
5720
5952
  "id": "Shopify_WeightUnit",
5721
5953
  "description": "Units of measurement for weight.",
5722
5954
  "schema": {
5723
- "enum": ["KILOGRAMS", "GRAMS", "POUNDS", "OUNCES"]
5955
+ "enum": [
5956
+ "KILOGRAMS",
5957
+ "GRAMS",
5958
+ "POUNDS",
5959
+ "OUNCES"
5960
+ ]
5724
5961
  }
5725
5962
  },
5726
5963
  "Shopify_DeliveryProfile": {
@@ -5979,7 +6216,9 @@
5979
6216
  "@mapping": "gregs-takeshape-store:EditableProperty.reason"
5980
6217
  }
5981
6218
  },
5982
- "required": ["locked"]
6219
+ "required": [
6220
+ "locked"
6221
+ ]
5983
6222
  }
5984
6223
  },
5985
6224
  "Shopify_InventoryItem": {
@@ -6064,7 +6303,9 @@
6064
6303
  "description": "ID of the location for which the inventory level is requested."
6065
6304
  }
6066
6305
  },
6067
- "required": ["locationId"]
6306
+ "required": [
6307
+ "locationId"
6308
+ ]
6068
6309
  },
6069
6310
  "description": "Get the inventory level at a specific location."
6070
6311
  },
@@ -6360,7 +6601,10 @@
6360
6601
  "description": "Information to aid in pagination."
6361
6602
  }
6362
6603
  },
6363
- "required": ["edges", "pageInfo"]
6604
+ "required": [
6605
+ "edges",
6606
+ "pageInfo"
6607
+ ]
6364
6608
  }
6365
6609
  },
6366
6610
  "Shopify_SelectedOption": {
@@ -6382,7 +6626,10 @@
6382
6626
  "description": "The product option’s value."
6383
6627
  }
6384
6628
  },
6385
- "required": ["name", "value"]
6629
+ "required": [
6630
+ "name",
6631
+ "value"
6632
+ ]
6386
6633
  }
6387
6634
  },
6388
6635
  "Shopify_CollectionPublicationInput": {
@@ -6435,7 +6682,9 @@
6435
6682
  "description": "The rules used to assign products to the collection."
6436
6683
  }
6437
6684
  },
6438
- "required": ["appliedDisjunctively"]
6685
+ "required": [
6686
+ "appliedDisjunctively"
6687
+ ]
6439
6688
  }
6440
6689
  },
6441
6690
  "Shopify_CollectionSortOrder": {
@@ -6462,7 +6711,16 @@
6462
6711
  "id": "Shopify_ProductCollectionSortKeys",
6463
6712
  "description": "The set of valid sort keys for the ProductCollection query.",
6464
6713
  "schema": {
6465
- "enum": ["TITLE", "PRICE", "BEST_SELLING", "CREATED", "ID", "MANUAL", "COLLECTION_DEFAULT", "RELEVANCE"]
6714
+ "enum": [
6715
+ "TITLE",
6716
+ "PRICE",
6717
+ "BEST_SELLING",
6718
+ "CREATED",
6719
+ "ID",
6720
+ "MANUAL",
6721
+ "COLLECTION_DEFAULT",
6722
+ "RELEVANCE"
6723
+ ]
6466
6724
  }
6467
6725
  },
6468
6726
  "Shopify_ProductConnection": {
@@ -6487,7 +6745,10 @@
6487
6745
  "description": "Information to aid in pagination."
6488
6746
  }
6489
6747
  },
6490
- "required": ["edges", "pageInfo"]
6748
+ "required": [
6749
+ "edges",
6750
+ "pageInfo"
6751
+ ]
6491
6752
  }
6492
6753
  },
6493
6754
  "Shopify_CollectionPublicationConnection": {
@@ -6512,7 +6773,10 @@
6512
6773
  "description": "Information to aid in pagination."
6513
6774
  }
6514
6775
  },
6515
- "required": ["edges", "pageInfo"]
6776
+ "required": [
6777
+ "edges",
6778
+ "pageInfo"
6779
+ ]
6516
6780
  }
6517
6781
  },
6518
6782
  "Shopify_CollectionRuleSet": {
@@ -6537,7 +6801,10 @@
6537
6801
  "description": "The rules used to assign products to the collection."
6538
6802
  }
6539
6803
  },
6540
- "required": ["appliedDisjunctively", "rules"]
6804
+ "required": [
6805
+ "appliedDisjunctively",
6806
+ "rules"
6807
+ ]
6541
6808
  }
6542
6809
  },
6543
6810
  "Shopify_PrivateMetafieldValueInput": {
@@ -6559,7 +6826,10 @@
6559
6826
  "description": "Represents the private metafield value type."
6560
6827
  }
6561
6828
  },
6562
- "required": ["value", "valueType"]
6829
+ "required": [
6830
+ "value",
6831
+ "valueType"
6832
+ ]
6563
6833
  }
6564
6834
  },
6565
6835
  "Shopify_CollectionEdge": {
@@ -6581,7 +6851,10 @@
6581
6851
  "description": "The item at the end of CollectionEdge."
6582
6852
  }
6583
6853
  },
6584
- "required": ["cursor", "node"]
6854
+ "required": [
6855
+ "cursor",
6856
+ "node"
6857
+ ]
6585
6858
  }
6586
6859
  },
6587
6860
  "Shopify_PageInfo": {
@@ -6603,7 +6876,10 @@
6603
6876
  "description": "Whether there are any pages prior to the current page."
6604
6877
  }
6605
6878
  },
6606
- "required": ["hasNextPage", "hasPreviousPage"]
6879
+ "required": [
6880
+ "hasNextPage",
6881
+ "hasPreviousPage"
6882
+ ]
6607
6883
  }
6608
6884
  },
6609
6885
  "Shopify_ImageContentType": {
@@ -6612,7 +6888,11 @@
6612
6888
  "id": "Shopify_ImageContentType",
6613
6889
  "description": "List of supported image content types.",
6614
6890
  "schema": {
6615
- "enum": ["PNG", "JPG", "WEBP"]
6891
+ "enum": [
6892
+ "PNG",
6893
+ "JPG",
6894
+ "WEBP"
6895
+ ]
6616
6896
  }
6617
6897
  },
6618
6898
  "Shopify_MediaContentType": {
@@ -6621,7 +6901,12 @@
6621
6901
  "id": "Shopify_MediaContentType",
6622
6902
  "description": "The possible content types for a media object.",
6623
6903
  "schema": {
6624
- "enum": ["VIDEO", "EXTERNAL_VIDEO", "MODEL_3D", "IMAGE"]
6904
+ "enum": [
6905
+ "VIDEO",
6906
+ "EXTERNAL_VIDEO",
6907
+ "MODEL_3D",
6908
+ "IMAGE"
6909
+ ]
6625
6910
  }
6626
6911
  },
6627
6912
  "Shopify_MediaError": {
@@ -6648,7 +6933,10 @@
6648
6933
  "description": "Translated error message."
6649
6934
  }
6650
6935
  },
6651
- "required": ["code", "message"]
6936
+ "required": [
6937
+ "code",
6938
+ "message"
6939
+ ]
6652
6940
  }
6653
6941
  },
6654
6942
  "Shopify_MediaPreviewImage": {
@@ -6670,7 +6958,9 @@
6670
6958
  "description": "Current status of the preview image."
6671
6959
  }
6672
6960
  },
6673
- "required": ["status"]
6961
+ "required": [
6962
+ "status"
6963
+ ]
6674
6964
  }
6675
6965
  },
6676
6966
  "Shopify_MediaStatus": {
@@ -6679,7 +6969,12 @@
6679
6969
  "id": "Shopify_MediaStatus",
6680
6970
  "description": "The possible statuses for a media object.",
6681
6971
  "schema": {
6682
- "enum": ["UPLOADED", "PROCESSING", "READY", "FAILED"]
6972
+ "enum": [
6973
+ "UPLOADED",
6974
+ "PROCESSING",
6975
+ "READY",
6976
+ "FAILED"
6977
+ ]
6683
6978
  }
6684
6979
  },
6685
6980
  "Shopify_AppFeedback": {
@@ -6709,7 +7004,10 @@
6709
7004
  "description": "The feedback message presented to the merchant."
6710
7005
  }
6711
7006
  },
6712
- "required": ["app", "messages"]
7007
+ "required": [
7008
+ "app",
7009
+ "messages"
7010
+ ]
6713
7011
  }
6714
7012
  },
6715
7013
  "Shopify_ImageEdge": {
@@ -6731,7 +7029,10 @@
6731
7029
  "description": "The item at the end of ImageEdge."
6732
7030
  }
6733
7031
  },
6734
- "required": ["cursor", "node"]
7032
+ "required": [
7033
+ "cursor",
7034
+ "node"
7035
+ ]
6735
7036
  }
6736
7037
  },
6737
7038
  "Shopify_MediaEdge": {
@@ -6753,7 +7054,10 @@
6753
7054
  "description": "The item at the end of MediaEdge."
6754
7055
  }
6755
7056
  },
6756
- "required": ["cursor", "node"]
7057
+ "required": [
7058
+ "cursor",
7059
+ "node"
7060
+ ]
6757
7061
  }
6758
7062
  },
6759
7063
  "Shopify_MetafieldOwnerType": {
@@ -6783,7 +7087,12 @@
6783
7087
  "id": "Shopify_MetafieldValueType",
6784
7088
  "description": "Metafield value types.",
6785
7089
  "schema": {
6786
- "enum": ["STRING", "INTEGER", "JSON_STRING", "BOOLEAN"]
7090
+ "enum": [
7091
+ "STRING",
7092
+ "INTEGER",
7093
+ "JSON_STRING",
7094
+ "BOOLEAN"
7095
+ ]
6787
7096
  }
6788
7097
  },
6789
7098
  "Shopify_MetafieldEdge": {
@@ -6805,7 +7114,10 @@
6805
7114
  "description": "The item at the end of MetafieldEdge."
6806
7115
  }
6807
7116
  },
6808
- "required": ["cursor", "node"]
7117
+ "required": [
7118
+ "cursor",
7119
+ "node"
7120
+ ]
6809
7121
  }
6810
7122
  },
6811
7123
  "Shopify_MoneyV2": {
@@ -6827,7 +7139,10 @@
6827
7139
  "description": "Currency of the money."
6828
7140
  }
6829
7141
  },
6830
- "required": ["amount", "currencyCode"]
7142
+ "required": [
7143
+ "amount",
7144
+ "currencyCode"
7145
+ ]
6831
7146
  }
6832
7147
  },
6833
7148
  "Shopify_PrivateMetafieldValueType": {
@@ -6836,7 +7151,11 @@
6836
7151
  "id": "Shopify_PrivateMetafieldValueType",
6837
7152
  "description": "Private Metafield value types.",
6838
7153
  "schema": {
6839
- "enum": ["STRING", "INTEGER", "JSON_STRING"]
7154
+ "enum": [
7155
+ "STRING",
7156
+ "INTEGER",
7157
+ "JSON_STRING"
7158
+ ]
6840
7159
  }
6841
7160
  },
6842
7161
  "Shopify_PrivateMetafieldEdge": {
@@ -6858,7 +7177,10 @@
6858
7177
  "description": "The item at the end of PrivateMetafieldEdge."
6859
7178
  }
6860
7179
  },
6861
- "required": ["cursor", "node"]
7180
+ "required": [
7181
+ "cursor",
7182
+ "node"
7183
+ ]
6862
7184
  }
6863
7185
  },
6864
7186
  "Shopify_ProductPublicationEdge": {
@@ -6880,7 +7202,10 @@
6880
7202
  "description": "The item at the end of ProductPublicationEdge."
6881
7203
  }
6882
7204
  },
6883
- "required": ["cursor", "node"]
7205
+ "required": [
7206
+ "cursor",
7207
+ "node"
7208
+ ]
6884
7209
  }
6885
7210
  },
6886
7211
  "Shopify_ResourcePublicationEdge": {
@@ -6902,7 +7227,10 @@
6902
7227
  "description": "The item at the end of ResourcePublicationEdge."
6903
7228
  }
6904
7229
  },
6905
- "required": ["cursor", "node"]
7230
+ "required": [
7231
+ "cursor",
7232
+ "node"
7233
+ ]
6906
7234
  }
6907
7235
  },
6908
7236
  "Shopify_ResourcePublicationV2Edge": {
@@ -6924,7 +7252,10 @@
6924
7252
  "description": "The item at the end of ResourcePublicationV2Edge."
6925
7253
  }
6926
7254
  },
6927
- "required": ["cursor", "node"]
7255
+ "required": [
7256
+ "cursor",
7257
+ "node"
7258
+ ]
6928
7259
  }
6929
7260
  },
6930
7261
  "Shopify_ChannelEdge": {
@@ -6946,7 +7277,10 @@
6946
7277
  "description": "The item at the end of ChannelEdge."
6947
7278
  }
6948
7279
  },
6949
- "required": ["cursor", "node"]
7280
+ "required": [
7281
+ "cursor",
7282
+ "node"
7283
+ ]
6950
7284
  }
6951
7285
  },
6952
7286
  "Shopify_PublicationEdge": {
@@ -6968,7 +7302,10 @@
6968
7302
  "description": "The item at the end of PublicationEdge."
6969
7303
  }
6970
7304
  },
6971
- "required": ["cursor", "node"]
7305
+ "required": [
7306
+ "cursor",
7307
+ "node"
7308
+ ]
6972
7309
  }
6973
7310
  },
6974
7311
  "Shopify_ProductVariantEdge": {
@@ -6990,7 +7327,10 @@
6990
7327
  "description": "The item at the end of ProductVariantEdge."
6991
7328
  }
6992
7329
  },
6993
- "required": ["cursor", "node"]
7330
+ "required": [
7331
+ "cursor",
7332
+ "node"
7333
+ ]
6994
7334
  }
6995
7335
  },
6996
7336
  "Shopify_DeliveryProductVariantsCount": {
@@ -7012,7 +7352,10 @@
7012
7352
  "description": "The product variant count."
7013
7353
  }
7014
7354
  },
7015
- "required": ["capped", "count"]
7355
+ "required": [
7356
+ "capped",
7357
+ "count"
7358
+ ]
7016
7359
  }
7017
7360
  },
7018
7361
  "Shopify_ProfileItemSortKeys": {
@@ -7056,7 +7399,10 @@
7056
7399
  "description": "Information to aid in pagination."
7057
7400
  }
7058
7401
  },
7059
- "required": ["edges", "pageInfo"]
7402
+ "required": [
7403
+ "edges",
7404
+ "pageInfo"
7405
+ ]
7060
7406
  }
7061
7407
  },
7062
7408
  "Shopify_DeliveryProfileLocationGroup": {
@@ -7112,7 +7458,11 @@
7112
7458
  "description": "The applicable zones associated to a location group and delivery profile."
7113
7459
  }
7114
7460
  },
7115
- "required": ["countriesInAnyZone", "locationGroup", "locationGroupZones"]
7461
+ "required": [
7462
+ "countriesInAnyZone",
7463
+ "locationGroup",
7464
+ "locationGroupZones"
7465
+ ]
7116
7466
  }
7117
7467
  },
7118
7468
  "Shopify_SellingPlanGroupConnection": {
@@ -7137,7 +7487,10 @@
7137
7487
  "description": "Information to aid in pagination."
7138
7488
  }
7139
7489
  },
7140
- "required": ["edges", "pageInfo"]
7490
+ "required": [
7491
+ "edges",
7492
+ "pageInfo"
7493
+ ]
7141
7494
  }
7142
7495
  },
7143
7496
  "Shopify_Location": {
@@ -7216,7 +7569,9 @@
7216
7569
  "description": "Specifies the inventory item ID for the inventory level to be returned."
7217
7570
  }
7218
7571
  },
7219
- "required": ["inventoryItemId"]
7572
+ "required": [
7573
+ "inventoryItemId"
7574
+ ]
7220
7575
  },
7221
7576
  "description": "A single inventory level for the given inventory item."
7222
7577
  },
@@ -7329,7 +7684,10 @@
7329
7684
  "description": "A description of the rate, which customers will see at checkout.\nFor example: `Includes tracking and insurance`."
7330
7685
  }
7331
7686
  },
7332
- "required": ["code", "label"]
7687
+ "required": [
7688
+ "code",
7689
+ "label"
7690
+ ]
7333
7691
  }
7334
7692
  },
7335
7693
  "Shopify_FulfillmentServiceType": {
@@ -7338,7 +7696,11 @@
7338
7696
  "id": "Shopify_FulfillmentServiceType",
7339
7697
  "description": "The type of a fulfillment service.",
7340
7698
  "schema": {
7341
- "enum": ["GIFT_CARD", "MANUAL", "THIRD_PARTY"]
7699
+ "enum": [
7700
+ "GIFT_CARD",
7701
+ "MANUAL",
7702
+ "THIRD_PARTY"
7703
+ ]
7342
7704
  }
7343
7705
  },
7344
7706
  "Shopify_CountryCode": {
@@ -7617,7 +7979,10 @@
7617
7979
  "description": "Information to aid in pagination."
7618
7980
  }
7619
7981
  },
7620
- "required": ["edges", "pageInfo"]
7982
+ "required": [
7983
+ "edges",
7984
+ "pageInfo"
7985
+ ]
7621
7986
  }
7622
7987
  },
7623
7988
  "Shopify_InventoryLevel": {
@@ -7680,7 +8045,16 @@
7680
8045
  "@mapping": "gregs-takeshape-store:InventoryLevel.updatedAt"
7681
8046
  }
7682
8047
  },
7683
- "required": ["available", "canDeactivate", "createdAt", "id", "incoming", "item", "location", "updatedAt"]
8048
+ "required": [
8049
+ "available",
8050
+ "canDeactivate",
8051
+ "createdAt",
8052
+ "id",
8053
+ "incoming",
8054
+ "item",
8055
+ "location",
8056
+ "updatedAt"
8057
+ ]
7684
8058
  }
7685
8059
  },
7686
8060
  "Shopify_InventoryLevelConnection": {
@@ -7705,7 +8079,10 @@
7705
8079
  "description": "Information to aid in pagination."
7706
8080
  }
7707
8081
  },
7708
- "required": ["edges", "pageInfo"]
8082
+ "required": [
8083
+ "edges",
8084
+ "pageInfo"
8085
+ ]
7709
8086
  }
7710
8087
  },
7711
8088
  "Shopify_ProductVariantPricePairEdge": {
@@ -7727,7 +8104,10 @@
7727
8104
  "description": "The item at the end of ProductVariantPricePairEdge."
7728
8105
  }
7729
8106
  },
7730
- "required": ["cursor", "node"]
8107
+ "required": [
8108
+ "cursor",
8109
+ "node"
8110
+ ]
7731
8111
  }
7732
8112
  },
7733
8113
  "Shopify_CollectionRuleInput": {
@@ -7754,7 +8134,11 @@
7754
8134
  "description": "The value that the operator is applied to (for example, `Hats`)."
7755
8135
  }
7756
8136
  },
7757
- "required": ["column", "relation", "condition"]
8137
+ "required": [
8138
+ "column",
8139
+ "relation",
8140
+ "condition"
8141
+ ]
7758
8142
  }
7759
8143
  },
7760
8144
  "Shopify_ProductEdge": {
@@ -7776,7 +8160,10 @@
7776
8160
  "description": "The item at the end of ProductEdge."
7777
8161
  }
7778
8162
  },
7779
- "required": ["cursor", "node"]
8163
+ "required": [
8164
+ "cursor",
8165
+ "node"
8166
+ ]
7780
8167
  }
7781
8168
  },
7782
8169
  "Shopify_CollectionPublicationEdge": {
@@ -7798,7 +8185,10 @@
7798
8185
  "description": "The item at the end of CollectionPublicationEdge."
7799
8186
  }
7800
8187
  },
7801
- "required": ["cursor", "node"]
8188
+ "required": [
8189
+ "cursor",
8190
+ "node"
8191
+ ]
7802
8192
  }
7803
8193
  },
7804
8194
  "Shopify_CollectionRule": {
@@ -7825,7 +8215,11 @@
7825
8215
  "description": "The type of operator that the rule is based on (for example, `equals`, `contains`, or `not_equals`)."
7826
8216
  }
7827
8217
  },
7828
- "required": ["column", "condition", "relation"]
8218
+ "required": [
8219
+ "column",
8220
+ "condition",
8221
+ "relation"
8222
+ ]
7829
8223
  }
7830
8224
  },
7831
8225
  "Shopify_MediaErrorCode": {
@@ -7867,7 +8261,12 @@
7867
8261
  "id": "Shopify_MediaPreviewImageStatus",
7868
8262
  "description": "The possible statuses for a media preview image.",
7869
8263
  "schema": {
7870
- "enum": ["UPLOADED", "PROCESSING", "READY", "FAILED"]
8264
+ "enum": [
8265
+ "UPLOADED",
8266
+ "PROCESSING",
8267
+ "READY",
8268
+ "FAILED"
8269
+ ]
7871
8270
  }
7872
8271
  },
7873
8272
  "Shopify_App": {
@@ -8078,7 +8477,9 @@
8078
8477
  "description": "Filters translations locale."
8079
8478
  }
8080
8479
  },
8081
- "required": ["locale"]
8480
+ "required": [
8481
+ "locale"
8482
+ ]
8082
8483
  },
8083
8484
  "description": "The translations associated with the resource."
8084
8485
  },
@@ -8088,7 +8489,11 @@
8088
8489
  "@mapping": "gregs-takeshape-store:Link.url"
8089
8490
  }
8090
8491
  },
8091
- "required": ["label", "translations", "url"]
8492
+ "required": [
8493
+ "label",
8494
+ "translations",
8495
+ "url"
8496
+ ]
8092
8497
  }
8093
8498
  },
8094
8499
  "Shopify_UserError": {
@@ -8113,7 +8518,9 @@
8113
8518
  "description": "The error message."
8114
8519
  }
8115
8520
  },
8116
- "required": ["message"]
8521
+ "required": [
8522
+ "message"
8523
+ ]
8117
8524
  }
8118
8525
  },
8119
8526
  "Shopify_ProductPublication": {
@@ -8145,7 +8552,11 @@
8145
8552
  "@mapping": "gregs-takeshape-store:ProductPublication.publishDate"
8146
8553
  }
8147
8554
  },
8148
- "required": ["channel", "isPublished", "product"]
8555
+ "required": [
8556
+ "channel",
8557
+ "isPublished",
8558
+ "product"
8559
+ ]
8149
8560
  }
8150
8561
  },
8151
8562
  "Shopify_ResourcePublication": {
@@ -8183,7 +8594,13 @@
8183
8594
  "description": "The resource published to the publication."
8184
8595
  }
8185
8596
  },
8186
- "required": ["channel", "isPublished", "publication", "publishDate", "publishable"]
8597
+ "required": [
8598
+ "channel",
8599
+ "isPublished",
8600
+ "publication",
8601
+ "publishDate",
8602
+ "publishable"
8603
+ ]
8187
8604
  }
8188
8605
  },
8189
8606
  "Shopify_ResourcePublicationV2": {
@@ -8215,7 +8632,11 @@
8215
8632
  "description": "The resource published to the publication."
8216
8633
  }
8217
8634
  },
8218
- "required": ["isPublished", "publication", "publishable"]
8635
+ "required": [
8636
+ "isPublished",
8637
+ "publication",
8638
+ "publishable"
8639
+ ]
8219
8640
  }
8220
8641
  },
8221
8642
  "Shopify_Channel": {
@@ -8311,7 +8732,9 @@
8311
8732
  "description": "Collection ID to check."
8312
8733
  }
8313
8734
  },
8314
- "required": ["id"]
8735
+ "required": [
8736
+ "id"
8737
+ ]
8315
8738
  },
8316
8739
  "description": "Whether the collection is available to the channel."
8317
8740
  },
@@ -8544,7 +8967,9 @@
8544
8967
  "description": "Collection ID to check."
8545
8968
  }
8546
8969
  },
8547
- "required": ["id"]
8970
+ "required": [
8971
+ "id"
8972
+ ]
8548
8973
  },
8549
8974
  "description": "Whether the collection is available to the publication."
8550
8975
  },
@@ -8659,7 +9084,10 @@
8659
9084
  "description": "The item at the end of DeliveryProfileItemEdge."
8660
9085
  }
8661
9086
  },
8662
- "required": ["cursor", "node"]
9087
+ "required": [
9088
+ "cursor",
9089
+ "node"
9090
+ ]
8663
9091
  }
8664
9092
  },
8665
9093
  "Shopify_DeliveryCountryAndZone": {
@@ -8681,7 +9109,10 @@
8681
9109
  "description": "The name of the delivery zone."
8682
9110
  }
8683
9111
  },
8684
- "required": ["country", "zone"]
9112
+ "required": [
9113
+ "country",
9114
+ "zone"
9115
+ ]
8685
9116
  }
8686
9117
  },
8687
9118
  "Shopify_DeliveryLocationGroup": {
@@ -8749,7 +9180,10 @@
8749
9180
  "description": "List of active locations that are part of this location group."
8750
9181
  }
8751
9182
  },
8752
- "required": ["id", "locations"]
9183
+ "required": [
9184
+ "id",
9185
+ "locations"
9186
+ ]
8753
9187
  }
8754
9188
  },
8755
9189
  "Shopify_DeliveryLocationGroupZoneConnection": {
@@ -8774,7 +9208,10 @@
8774
9208
  "description": "Information to aid in pagination."
8775
9209
  }
8776
9210
  },
8777
- "required": ["edges", "pageInfo"]
9211
+ "required": [
9212
+ "edges",
9213
+ "pageInfo"
9214
+ ]
8778
9215
  }
8779
9216
  },
8780
9217
  "Shopify_SellingPlanGroupEdge": {
@@ -8796,7 +9233,10 @@
8796
9233
  "description": "The item at the end of SellingPlanGroupEdge."
8797
9234
  }
8798
9235
  },
8799
- "required": ["cursor", "node"]
9236
+ "required": [
9237
+ "cursor",
9238
+ "node"
9239
+ ]
8800
9240
  }
8801
9241
  },
8802
9242
  "Shopify_LocationAddress": {
@@ -8871,7 +9311,9 @@
8871
9311
  "description": "The ZIP code of the location."
8872
9312
  }
8873
9313
  },
8874
- "required": ["formatted"]
9314
+ "required": [
9315
+ "formatted"
9316
+ ]
8875
9317
  }
8876
9318
  },
8877
9319
  "Shopify_LocationSuggestedAddress": {
@@ -8931,7 +9373,9 @@
8931
9373
  "description": "The ZIP code of the suggested address."
8932
9374
  }
8933
9375
  },
8934
- "required": ["formatted"]
9376
+ "required": [
9377
+ "formatted"
9378
+ ]
8935
9379
  }
8936
9380
  },
8937
9381
  "Shopify_CountryHarmonizedSystemCodeEdge": {
@@ -8953,7 +9397,10 @@
8953
9397
  "description": "The item at the end of CountryHarmonizedSystemCodeEdge."
8954
9398
  }
8955
9399
  },
8956
- "required": ["cursor", "node"]
9400
+ "required": [
9401
+ "cursor",
9402
+ "node"
9403
+ ]
8957
9404
  }
8958
9405
  },
8959
9406
  "Shopify_InventoryLevelEdge": {
@@ -8975,7 +9422,10 @@
8975
9422
  "description": "The item at the end of InventoryLevelEdge."
8976
9423
  }
8977
9424
  },
8978
- "required": ["cursor", "node"]
9425
+ "required": [
9426
+ "cursor",
9427
+ "node"
9428
+ ]
8979
9429
  }
8980
9430
  },
8981
9431
  "Shopify_ProductVariantPricePair": {
@@ -8997,7 +9447,9 @@
8997
9447
  "description": "The price of the variant with associated currency."
8998
9448
  }
8999
9449
  },
9000
- "required": ["price"]
9450
+ "required": [
9451
+ "price"
9452
+ ]
9001
9453
  }
9002
9454
  },
9003
9455
  "Shopify_CollectionRuleColumn": {
@@ -9075,7 +9527,13 @@
9075
9527
  "@mapping": "gregs-takeshape-store:CollectionPublication.publishDate"
9076
9528
  }
9077
9529
  },
9078
- "required": ["channel", "collection", "isPublished", "publication", "publishDate"]
9530
+ "required": [
9531
+ "channel",
9532
+ "collection",
9533
+ "isPublished",
9534
+ "publication",
9535
+ "publishDate"
9536
+ ]
9079
9537
  }
9080
9538
  },
9081
9539
  "Shopify_FailedRequirement": {
@@ -9097,7 +9555,9 @@
9097
9555
  "description": "A concise set of copy strings to be displayed to merchants, to guide them in resolving problems your app\nencounters when trying to make use of their Shop and its resources."
9098
9556
  }
9099
9557
  },
9100
- "required": ["message"]
9558
+ "required": [
9559
+ "message"
9560
+ ]
9101
9561
  }
9102
9562
  },
9103
9563
  "Shopify_AppInstallation": {
@@ -9311,7 +9771,11 @@
9311
9771
  "@mapping": "gregs-takeshape-store:NavigationItem.url"
9312
9772
  }
9313
9773
  },
9314
- "required": ["id", "title", "url"]
9774
+ "required": [
9775
+ "id",
9776
+ "title",
9777
+ "url"
9778
+ ]
9315
9779
  }
9316
9780
  },
9317
9781
  "Shopify_Publishable": {
@@ -9355,7 +9819,9 @@
9355
9819
  "description": "The ID of the channel to check."
9356
9820
  }
9357
9821
  },
9358
- "required": ["channelId"]
9822
+ "required": [
9823
+ "channelId"
9824
+ ]
9359
9825
  },
9360
9826
  "description": "Check to see whether the resource is published to a given channel."
9361
9827
  },
@@ -9382,7 +9848,9 @@
9382
9848
  "description": "The ID of the publication to check."
9383
9849
  }
9384
9850
  },
9385
- "required": ["publicationId"]
9851
+ "required": [
9852
+ "publicationId"
9853
+ ]
9386
9854
  },
9387
9855
  "description": "Check to see whether the resource is published to a given publication."
9388
9856
  },
@@ -9586,7 +10054,10 @@
9586
10054
  "description": "The product variants associated with this delivery profile."
9587
10055
  }
9588
10056
  },
9589
- "required": ["product", "variants"]
10057
+ "required": [
10058
+ "product",
10059
+ "variants"
10060
+ ]
9590
10061
  }
9591
10062
  },
9592
10063
  "Shopify_DeliveryCountry": {
@@ -9627,7 +10098,13 @@
9627
10098
  "description": "The name of the country, translated based on the user locale."
9628
10099
  }
9629
10100
  },
9630
- "required": ["code", "id", "name", "provinces", "translatedName"]
10101
+ "required": [
10102
+ "code",
10103
+ "id",
10104
+ "name",
10105
+ "provinces",
10106
+ "translatedName"
10107
+ ]
9631
10108
  }
9632
10109
  },
9633
10110
  "Shopify_LocationSortKeys": {
@@ -9636,7 +10113,11 @@
9636
10113
  "id": "Shopify_LocationSortKeys",
9637
10114
  "description": "The set of valid sort keys for the Location query.",
9638
10115
  "schema": {
9639
- "enum": ["NAME", "ID", "RELEVANCE"]
10116
+ "enum": [
10117
+ "NAME",
10118
+ "ID",
10119
+ "RELEVANCE"
10120
+ ]
9640
10121
  }
9641
10122
  },
9642
10123
  "Shopify_LocationConnection": {
@@ -9661,7 +10142,10 @@
9661
10142
  "description": "Information to aid in pagination."
9662
10143
  }
9663
10144
  },
9664
- "required": ["edges", "pageInfo"]
10145
+ "required": [
10146
+ "edges",
10147
+ "pageInfo"
10148
+ ]
9665
10149
  }
9666
10150
  },
9667
10151
  "Shopify_DeliveryLocationGroupZoneEdge": {
@@ -9683,7 +10167,10 @@
9683
10167
  "description": "The item at the end of DeliveryLocationGroupZoneEdge."
9684
10168
  }
9685
10169
  },
9686
- "required": ["cursor", "node"]
10170
+ "required": [
10171
+ "cursor",
10172
+ "node"
10173
+ ]
9687
10174
  }
9688
10175
  },
9689
10176
  "Shopify_SellingPlanGroup": {
@@ -9711,7 +10198,9 @@
9711
10198
  "description": "The ID of the product."
9712
10199
  }
9713
10200
  },
9714
- "required": ["productId"]
10201
+ "required": [
10202
+ "productId"
10203
+ ]
9715
10204
  },
9716
10205
  "description": "Whether the given product is directly associated to the selling plan group."
9717
10206
  },
@@ -9727,7 +10216,9 @@
9727
10216
  "description": "The ID of the product."
9728
10217
  }
9729
10218
  },
9730
- "required": ["productVariantId"]
10219
+ "required": [
10220
+ "productVariantId"
10221
+ ]
9731
10222
  },
9732
10223
  "description": "Whether the given product variant is directly associated to the selling plan group."
9733
10224
  },
@@ -9743,7 +10234,9 @@
9743
10234
  "description": "The ID of the product."
9744
10235
  }
9745
10236
  },
9746
- "required": ["productId"]
10237
+ "required": [
10238
+ "productId"
10239
+ ]
9747
10240
  },
9748
10241
  "description": "Whether any of the product variants of the given product are associated to the selling plan group."
9749
10242
  },
@@ -9946,7 +10439,10 @@
9946
10439
  "description": "Country specific harmonized system code."
9947
10440
  }
9948
10441
  },
9949
- "required": ["countryCode", "harmonizedSystemCode"]
10442
+ "required": [
10443
+ "countryCode",
10444
+ "harmonizedSystemCode"
10445
+ ]
9950
10446
  }
9951
10447
  },
9952
10448
  "Shopify_AccessScope": {
@@ -9968,7 +10464,10 @@
9968
10464
  "description": "Represents the access scope as a readable string. Typically follows the format `{action}_{resource}`: a `read` or `write` action, followed by the resource on which the action is allowed to be performed on, separated by an underscore. For example, `read_orders`; `write_products`."
9969
10465
  }
9970
10466
  },
9971
- "required": ["description", "handle"]
10467
+ "required": [
10468
+ "description",
10469
+ "handle"
10470
+ ]
9972
10471
  }
9973
10472
  },
9974
10473
  "Shopify_AppSubscription": {
@@ -10029,7 +10528,16 @@
10029
10528
  "description": "The number of days of the free trial."
10030
10529
  }
10031
10530
  },
10032
- "required": ["createdAt", "id", "lineItems", "name", "returnUrl", "status", "test", "trialDays"]
10531
+ "required": [
10532
+ "createdAt",
10533
+ "id",
10534
+ "lineItems",
10535
+ "name",
10536
+ "returnUrl",
10537
+ "status",
10538
+ "test",
10539
+ "trialDays"
10540
+ ]
10033
10541
  }
10034
10542
  },
10035
10543
  "Shopify_AppSubscriptionSortKeys": {
@@ -10038,7 +10546,11 @@
10038
10546
  "id": "Shopify_AppSubscriptionSortKeys",
10039
10547
  "description": "The set of valid sort keys for the AppSubscription query.",
10040
10548
  "schema": {
10041
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
10549
+ "enum": [
10550
+ "CREATED_AT",
10551
+ "ID",
10552
+ "RELEVANCE"
10553
+ ]
10042
10554
  }
10043
10555
  },
10044
10556
  "Shopify_AppSubscriptionConnection": {
@@ -10063,7 +10575,10 @@
10063
10575
  "description": "Information to aid in pagination."
10064
10576
  }
10065
10577
  },
10066
- "required": ["edges", "pageInfo"]
10578
+ "required": [
10579
+ "edges",
10580
+ "pageInfo"
10581
+ ]
10067
10582
  }
10068
10583
  },
10069
10584
  "Shopify_AppTransactionSortKeys": {
@@ -10072,7 +10587,11 @@
10072
10587
  "id": "Shopify_AppTransactionSortKeys",
10073
10588
  "description": "The set of valid sort keys for the AppTransaction query.",
10074
10589
  "schema": {
10075
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
10590
+ "enum": [
10591
+ "CREATED_AT",
10592
+ "ID",
10593
+ "RELEVANCE"
10594
+ ]
10076
10595
  }
10077
10596
  },
10078
10597
  "Shopify_AppCreditConnection": {
@@ -10097,7 +10616,10 @@
10097
10616
  "description": "Information to aid in pagination."
10098
10617
  }
10099
10618
  },
10100
- "required": ["edges", "pageInfo"]
10619
+ "required": [
10620
+ "edges",
10621
+ "pageInfo"
10622
+ ]
10101
10623
  }
10102
10624
  },
10103
10625
  "Shopify_AppPurchaseOneTimeConnection": {
@@ -10122,7 +10644,10 @@
10122
10644
  "description": "Information to aid in pagination."
10123
10645
  }
10124
10646
  },
10125
- "required": ["edges", "pageInfo"]
10647
+ "required": [
10648
+ "edges",
10649
+ "pageInfo"
10650
+ ]
10126
10651
  }
10127
10652
  },
10128
10653
  "Shopify_DeliveryCountryCodeOrRestOfWorld": {
@@ -10144,7 +10669,9 @@
10144
10669
  "description": "Indicates if 'Rest of World' is applied."
10145
10670
  }
10146
10671
  },
10147
- "required": ["restOfWorld"]
10672
+ "required": [
10673
+ "restOfWorld"
10674
+ ]
10148
10675
  }
10149
10676
  },
10150
10677
  "Shopify_DeliveryProvince": {
@@ -10177,7 +10704,12 @@
10177
10704
  "description": "The name of the region, translated based on the user locale."
10178
10705
  }
10179
10706
  },
10180
- "required": ["code", "id", "name", "translatedName"]
10707
+ "required": [
10708
+ "code",
10709
+ "id",
10710
+ "name",
10711
+ "translatedName"
10712
+ ]
10181
10713
  }
10182
10714
  },
10183
10715
  "Shopify_LocationEdge": {
@@ -10199,7 +10731,10 @@
10199
10731
  "description": "The item at the end of LocationEdge."
10200
10732
  }
10201
10733
  },
10202
- "required": ["cursor", "node"]
10734
+ "required": [
10735
+ "cursor",
10736
+ "node"
10737
+ ]
10203
10738
  }
10204
10739
  },
10205
10740
  "Shopify_DeliveryLocationGroupZone": {
@@ -10265,7 +10800,11 @@
10265
10800
  "description": "The zone associated to a location group in a delivery profile."
10266
10801
  }
10267
10802
  },
10268
- "required": ["methodDefinitionCounts", "methodDefinitions", "zone"]
10803
+ "required": [
10804
+ "methodDefinitionCounts",
10805
+ "methodDefinitions",
10806
+ "zone"
10807
+ ]
10269
10808
  }
10270
10809
  },
10271
10810
  "Shopify_SellingPlanConnection": {
@@ -10290,7 +10829,10 @@
10290
10829
  "description": "Information to aid in pagination."
10291
10830
  }
10292
10831
  },
10293
- "required": ["edges", "pageInfo"]
10832
+ "required": [
10833
+ "edges",
10834
+ "pageInfo"
10835
+ ]
10294
10836
  }
10295
10837
  },
10296
10838
  "Shopify_AppSubscriptionLineItem": {
@@ -10349,7 +10891,11 @@
10349
10891
  "description": "Lists the store's usage for a usage pricing plan."
10350
10892
  }
10351
10893
  },
10352
- "required": ["id", "plan", "usageRecords"]
10894
+ "required": [
10895
+ "id",
10896
+ "plan",
10897
+ "usageRecords"
10898
+ ]
10353
10899
  }
10354
10900
  },
10355
10901
  "Shopify_AppSubscriptionStatus": {
@@ -10358,7 +10904,15 @@
10358
10904
  "id": "Shopify_AppSubscriptionStatus",
10359
10905
  "description": "The status of the app subscription.",
10360
10906
  "schema": {
10361
- "enum": ["PENDING", "ACCEPTED", "ACTIVE", "DECLINED", "EXPIRED", "FROZEN", "CANCELLED"]
10907
+ "enum": [
10908
+ "PENDING",
10909
+ "ACCEPTED",
10910
+ "ACTIVE",
10911
+ "DECLINED",
10912
+ "EXPIRED",
10913
+ "FROZEN",
10914
+ "CANCELLED"
10915
+ ]
10362
10916
  }
10363
10917
  },
10364
10918
  "Shopify_AppSubscriptionEdge": {
@@ -10380,7 +10934,10 @@
10380
10934
  "description": "The item at the end of AppSubscriptionEdge."
10381
10935
  }
10382
10936
  },
10383
- "required": ["cursor", "node"]
10937
+ "required": [
10938
+ "cursor",
10939
+ "node"
10940
+ ]
10384
10941
  }
10385
10942
  },
10386
10943
  "Shopify_AppCreditEdge": {
@@ -10402,7 +10959,10 @@
10402
10959
  "description": "The item at the end of AppCreditEdge."
10403
10960
  }
10404
10961
  },
10405
- "required": ["cursor", "node"]
10962
+ "required": [
10963
+ "cursor",
10964
+ "node"
10965
+ ]
10406
10966
  }
10407
10967
  },
10408
10968
  "Shopify_AppPurchaseOneTimeEdge": {
@@ -10424,7 +10984,10 @@
10424
10984
  "description": "The item at the end of AppPurchaseOneTimeEdge."
10425
10985
  }
10426
10986
  },
10427
- "required": ["cursor", "node"]
10987
+ "required": [
10988
+ "cursor",
10989
+ "node"
10990
+ ]
10428
10991
  }
10429
10992
  },
10430
10993
  "Shopify_DeliveryMethodDefinitionCounts": {
@@ -10446,7 +11009,10 @@
10446
11009
  "description": "The number of merchant-defined method definitions in the current zone."
10447
11010
  }
10448
11011
  },
10449
- "required": ["participantDefinitionsCount", "rateDefinitionsCount"]
11012
+ "required": [
11013
+ "participantDefinitionsCount",
11014
+ "rateDefinitionsCount"
11015
+ ]
10450
11016
  }
10451
11017
  },
10452
11018
  "Shopify_DeliveryMethodDefinitionType": {
@@ -10455,7 +11021,10 @@
10455
11021
  "id": "Shopify_DeliveryMethodDefinitionType",
10456
11022
  "description": "The different types of method definitions to filter by.",
10457
11023
  "schema": {
10458
- "enum": ["MERCHANT", "PARTICIPANT"]
11024
+ "enum": [
11025
+ "MERCHANT",
11026
+ "PARTICIPANT"
11027
+ ]
10459
11028
  }
10460
11029
  },
10461
11030
  "Shopify_MethodDefinitionSortKeys": {
@@ -10464,7 +11033,11 @@
10464
11033
  "id": "Shopify_MethodDefinitionSortKeys",
10465
11034
  "description": "The set of valid sort keys for the MethodDefinition query.",
10466
11035
  "schema": {
10467
- "enum": ["RATE_PROVIDER_TYPE", "ID", "RELEVANCE"]
11036
+ "enum": [
11037
+ "RATE_PROVIDER_TYPE",
11038
+ "ID",
11039
+ "RELEVANCE"
11040
+ ]
10468
11041
  }
10469
11042
  },
10470
11043
  "Shopify_DeliveryMethodDefinitionConnection": {
@@ -10489,7 +11062,10 @@
10489
11062
  "description": "Information to aid in pagination."
10490
11063
  }
10491
11064
  },
10492
- "required": ["edges", "pageInfo"]
11065
+ "required": [
11066
+ "edges",
11067
+ "pageInfo"
11068
+ ]
10493
11069
  }
10494
11070
  },
10495
11071
  "Shopify_DeliveryZone": {
@@ -10520,7 +11096,11 @@
10520
11096
  "description": "The name of the zone."
10521
11097
  }
10522
11098
  },
10523
- "required": ["countries", "id", "name"]
11099
+ "required": [
11100
+ "countries",
11101
+ "id",
11102
+ "name"
11103
+ ]
10524
11104
  }
10525
11105
  },
10526
11106
  "Shopify_SellingPlanEdge": {
@@ -10542,7 +11122,10 @@
10542
11122
  "description": "The item at the end of SellingPlanEdge."
10543
11123
  }
10544
11124
  },
10545
- "required": ["cursor", "node"]
11125
+ "required": [
11126
+ "cursor",
11127
+ "node"
11128
+ ]
10546
11129
  }
10547
11130
  },
10548
11131
  "Shopify_AppPlanV2": {
@@ -10559,7 +11142,9 @@
10559
11142
  "description": "Defines the pricing model for the app subscription."
10560
11143
  }
10561
11144
  },
10562
- "required": ["pricingDetails"]
11145
+ "required": [
11146
+ "pricingDetails"
11147
+ ]
10563
11148
  }
10564
11149
  },
10565
11150
  "Shopify_AppUsageRecordSortKeys": {
@@ -10568,7 +11153,11 @@
10568
11153
  "id": "Shopify_AppUsageRecordSortKeys",
10569
11154
  "description": "The set of valid sort keys for the AppUsageRecord query.",
10570
11155
  "schema": {
10571
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
11156
+ "enum": [
11157
+ "CREATED_AT",
11158
+ "ID",
11159
+ "RELEVANCE"
11160
+ ]
10572
11161
  }
10573
11162
  },
10574
11163
  "Shopify_AppUsageRecordConnection": {
@@ -10593,7 +11182,10 @@
10593
11182
  "description": "Information to aid in pagination."
10594
11183
  }
10595
11184
  },
10596
- "required": ["edges", "pageInfo"]
11185
+ "required": [
11186
+ "edges",
11187
+ "pageInfo"
11188
+ ]
10597
11189
  }
10598
11190
  },
10599
11191
  "Shopify_AppCredit": {
@@ -10631,7 +11223,13 @@
10631
11223
  "description": "Whether the app credit is a test transaction."
10632
11224
  }
10633
11225
  },
10634
- "required": ["amount", "createdAt", "description", "id", "test"]
11226
+ "required": [
11227
+ "amount",
11228
+ "createdAt",
11229
+ "description",
11230
+ "id",
11231
+ "test"
11232
+ ]
10635
11233
  }
10636
11234
  },
10637
11235
  "Shopify_AppPurchaseOneTime": {
@@ -10674,7 +11272,14 @@
10674
11272
  "description": "Whether the app purchase is a test transaction."
10675
11273
  }
10676
11274
  },
10677
- "required": ["createdAt", "id", "name", "price", "status", "test"]
11275
+ "required": [
11276
+ "createdAt",
11277
+ "id",
11278
+ "name",
11279
+ "price",
11280
+ "status",
11281
+ "test"
11282
+ ]
10678
11283
  }
10679
11284
  },
10680
11285
  "Shopify_DeliveryMethodDefinitionEdge": {
@@ -10696,7 +11301,10 @@
10696
11301
  "description": "The item at the end of DeliveryMethodDefinitionEdge."
10697
11302
  }
10698
11303
  },
10699
- "required": ["cursor", "node"]
11304
+ "required": [
11305
+ "cursor",
11306
+ "node"
11307
+ ]
10700
11308
  }
10701
11309
  },
10702
11310
  "Shopify_SellingPlan": {
@@ -10760,7 +11368,15 @@
10760
11368
  "description": "Selling plan pricing details."
10761
11369
  }
10762
11370
  },
10763
- "required": ["billingPolicy", "createdAt", "deliveryPolicy", "id", "name", "options", "pricingPolicies"]
11371
+ "required": [
11372
+ "billingPolicy",
11373
+ "createdAt",
11374
+ "deliveryPolicy",
11375
+ "id",
11376
+ "name",
11377
+ "options",
11378
+ "pricingPolicies"
11379
+ ]
10764
11380
  }
10765
11381
  },
10766
11382
  "Shopify_AppPricingDetails": {
@@ -10798,7 +11414,10 @@
10798
11414
  "description": "The item at the end of AppUsageRecordEdge."
10799
11415
  }
10800
11416
  },
10801
- "required": ["cursor", "node"]
11417
+ "required": [
11418
+ "cursor",
11419
+ "node"
11420
+ ]
10802
11421
  }
10803
11422
  },
10804
11423
  "Shopify_AppPurchaseStatus": {
@@ -10807,7 +11426,13 @@
10807
11426
  "id": "Shopify_AppPurchaseStatus",
10808
11427
  "description": "The status of the purchase.",
10809
11428
  "schema": {
10810
- "enum": ["ACCEPTED", "ACTIVE", "DECLINED", "EXPIRED", "PENDING"]
11429
+ "enum": [
11430
+ "ACCEPTED",
11431
+ "ACTIVE",
11432
+ "DECLINED",
11433
+ "EXPIRED",
11434
+ "PENDING"
11435
+ ]
10811
11436
  }
10812
11437
  },
10813
11438
  "Shopify_DeliveryMethodDefinition": {
@@ -10853,7 +11478,13 @@
10853
11478
  "description": "Provided rate for this method definition, from a rate definition or participant."
10854
11479
  }
10855
11480
  },
10856
- "required": ["active", "id", "methodConditions", "name", "rateProvider"]
11481
+ "required": [
11482
+ "active",
11483
+ "id",
11484
+ "methodConditions",
11485
+ "name",
11486
+ "rateProvider"
11487
+ ]
10857
11488
  }
10858
11489
  },
10859
11490
  "Shopify_SellingPlanBillingPolicy": {
@@ -10917,7 +11548,10 @@
10917
11548
  "description": "The amount to be charged to the store every billing interval."
10918
11549
  }
10919
11550
  },
10920
- "required": ["interval", "price"]
11551
+ "required": [
11552
+ "interval",
11553
+ "price"
11554
+ ]
10921
11555
  }
10922
11556
  },
10923
11557
  "Shopify_AppUsagePricing": {
@@ -10949,7 +11583,12 @@
10949
11583
  "description": "The terms and conditions for app usage pricing."
10950
11584
  }
10951
11585
  },
10952
- "required": ["balanceUsed", "cappedAmount", "interval", "terms"]
11586
+ "required": [
11587
+ "balanceUsed",
11588
+ "cappedAmount",
11589
+ "interval",
11590
+ "terms"
11591
+ ]
10953
11592
  }
10954
11593
  },
10955
11594
  "Shopify_AppUsageRecord": {
@@ -10987,7 +11626,13 @@
10987
11626
  "description": "Defines the usage pricing plan the merchant is subscribed to."
10988
11627
  }
10989
11628
  },
10990
- "required": ["createdAt", "description", "id", "price", "subscriptionLineItem"]
11629
+ "required": [
11630
+ "createdAt",
11631
+ "description",
11632
+ "id",
11633
+ "price",
11634
+ "subscriptionLineItem"
11635
+ ]
10991
11636
  }
10992
11637
  },
10993
11638
  "Shopify_DeliveryCondition": {
@@ -11020,7 +11665,12 @@
11020
11665
  "description": "The operator to compare the field and criteria."
11021
11666
  }
11022
11667
  },
11023
- "required": ["conditionCriteria", "field", "id", "operator"]
11668
+ "required": [
11669
+ "conditionCriteria",
11670
+ "field",
11671
+ "id",
11672
+ "operator"
11673
+ ]
11024
11674
  }
11025
11675
  },
11026
11676
  "Shopify_DeliveryRateProvider": {
@@ -11081,7 +11731,12 @@
11081
11731
  "description": "Minimum number of billing iterations."
11082
11732
  }
11083
11733
  },
11084
- "required": ["anchors", "createdAt", "interval", "intervalCount"]
11734
+ "required": [
11735
+ "anchors",
11736
+ "createdAt",
11737
+ "interval",
11738
+ "intervalCount"
11739
+ ]
11085
11740
  }
11086
11741
  },
11087
11742
  "Shopify_SellingPlanRecurringDeliveryPolicy": {
@@ -11131,7 +11786,14 @@
11131
11786
  "description": "Fulfillment or delivery behavior of the first fulfillment when the order is placed before the anchor. The default value for this field is `ASAP`."
11132
11787
  }
11133
11788
  },
11134
- "required": ["anchors", "createdAt", "intent", "interval", "intervalCount", "preAnchorBehavior"]
11789
+ "required": [
11790
+ "anchors",
11791
+ "createdAt",
11792
+ "intent",
11793
+ "interval",
11794
+ "intervalCount",
11795
+ "preAnchorBehavior"
11796
+ ]
11135
11797
  }
11136
11798
  },
11137
11799
  "Shopify_SellingPlanFixedPricingPolicy": {
@@ -11158,7 +11820,11 @@
11158
11820
  "@mapping": "gregs-takeshape-store:SellingPlanFixedPricingPolicy.createdAt"
11159
11821
  }
11160
11822
  },
11161
- "required": ["adjustmentType", "adjustmentValue", "createdAt"]
11823
+ "required": [
11824
+ "adjustmentType",
11825
+ "adjustmentValue",
11826
+ "createdAt"
11827
+ ]
11162
11828
  }
11163
11829
  },
11164
11830
  "Shopify_SellingPlanRecurringPricingPolicy": {
@@ -11190,7 +11856,11 @@
11190
11856
  "@mapping": "gregs-takeshape-store:SellingPlanRecurringPricingPolicy.createdAt"
11191
11857
  }
11192
11858
  },
11193
- "required": ["adjustmentType", "adjustmentValue", "createdAt"]
11859
+ "required": [
11860
+ "adjustmentType",
11861
+ "adjustmentValue",
11862
+ "createdAt"
11863
+ ]
11194
11864
  }
11195
11865
  },
11196
11866
  "Shopify_AppPricingInterval": {
@@ -11199,7 +11869,10 @@
11199
11869
  "id": "Shopify_AppPricingInterval",
11200
11870
  "description": "The billing frequency for the app.",
11201
11871
  "schema": {
11202
- "enum": ["ANNUAL", "EVERY_30_DAYS"]
11872
+ "enum": [
11873
+ "ANNUAL",
11874
+ "EVERY_30_DAYS"
11875
+ ]
11203
11876
  }
11204
11877
  },
11205
11878
  "Shopify_DeliveryConditionCriteria": {
@@ -11224,7 +11897,10 @@
11224
11897
  "id": "Shopify_DeliveryConditionField",
11225
11898
  "description": "The field type that the condition will be applied to.",
11226
11899
  "schema": {
11227
- "enum": ["TOTAL_WEIGHT", "TOTAL_PRICE"]
11900
+ "enum": [
11901
+ "TOTAL_WEIGHT",
11902
+ "TOTAL_PRICE"
11903
+ ]
11228
11904
  }
11229
11905
  },
11230
11906
  "Shopify_DeliveryConditionOperator": {
@@ -11233,7 +11909,10 @@
11233
11909
  "id": "Shopify_DeliveryConditionOperator",
11234
11910
  "description": "The operator to use to determine if the condition passes.",
11235
11911
  "schema": {
11236
- "enum": ["GREATER_THAN_OR_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO"]
11912
+ "enum": [
11913
+ "GREATER_THAN_OR_EQUAL_TO",
11914
+ "LESS_THAN_OR_EQUAL_TO"
11915
+ ]
11237
11916
  }
11238
11917
  },
11239
11918
  "Shopify_DeliveryParticipant": {
@@ -11279,7 +11958,13 @@
11279
11958
  "description": "The merchant-set percentage-of-rate fee for this participant."
11280
11959
  }
11281
11960
  },
11282
- "required": ["adaptToNewServicesFlag", "carrierService", "id", "participantServices", "percentageOfRateFee"]
11961
+ "required": [
11962
+ "adaptToNewServicesFlag",
11963
+ "carrierService",
11964
+ "id",
11965
+ "participantServices",
11966
+ "percentageOfRateFee"
11967
+ ]
11283
11968
  }
11284
11969
  },
11285
11970
  "Shopify_DeliveryRateDefinition": {
@@ -11302,7 +11987,10 @@
11302
11987
  "description": "The price of this rate."
11303
11988
  }
11304
11989
  },
11305
- "required": ["id", "price"]
11990
+ "required": [
11991
+ "id",
11992
+ "price"
11993
+ ]
11306
11994
  }
11307
11995
  },
11308
11996
  "Shopify_SellingPlanAnchor": {
@@ -11329,7 +12017,10 @@
11329
12017
  "description": "Represents the anchor type, it can be one one of WEEKDAY, MONTHDAY, YEARDAY."
11330
12018
  }
11331
12019
  },
11332
- "required": ["day", "type"]
12020
+ "required": [
12021
+ "day",
12022
+ "type"
12023
+ ]
11333
12024
  }
11334
12025
  },
11335
12026
  "Shopify_SellingPlanInterval": {
@@ -11338,7 +12029,12 @@
11338
12029
  "id": "Shopify_SellingPlanInterval",
11339
12030
  "description": "Represents valid selling plan interval.",
11340
12031
  "schema": {
11341
- "enum": ["DAY", "WEEK", "MONTH", "YEAR"]
12032
+ "enum": [
12033
+ "DAY",
12034
+ "WEEK",
12035
+ "MONTH",
12036
+ "YEAR"
12037
+ ]
11342
12038
  }
11343
12039
  },
11344
12040
  "Shopify_SellingPlanRecurringDeliveryPolicyIntent": {
@@ -11347,7 +12043,9 @@
11347
12043
  "id": "Shopify_SellingPlanRecurringDeliveryPolicyIntent",
11348
12044
  "description": "Possible intentions of a Delivery Policy.",
11349
12045
  "schema": {
11350
- "enum": ["FULFILLMENT_BEGIN"]
12046
+ "enum": [
12047
+ "FULFILLMENT_BEGIN"
12048
+ ]
11351
12049
  }
11352
12050
  },
11353
12051
  "Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior": {
@@ -11356,7 +12054,10 @@
11356
12054
  "id": "Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior",
11357
12055
  "description": "Possible fulfillment or delivery behaviors of the first fulfillment when the orderis placed before the anchor.",
11358
12056
  "schema": {
11359
- "enum": ["ASAP", "NEXT"]
12057
+ "enum": [
12058
+ "ASAP",
12059
+ "NEXT"
12060
+ ]
11360
12061
  }
11361
12062
  },
11362
12063
  "Shopify_SellingPlanPricingPolicyAdjustmentType": {
@@ -11365,7 +12066,11 @@
11365
12066
  "id": "Shopify_SellingPlanPricingPolicyAdjustmentType",
11366
12067
  "description": "Represents a selling plan pricing policy adjustment type.",
11367
12068
  "schema": {
11368
- "enum": ["PERCENTAGE", "FIXED_AMOUNT", "PRICE"]
12069
+ "enum": [
12070
+ "PERCENTAGE",
12071
+ "FIXED_AMOUNT",
12072
+ "PRICE"
12073
+ ]
11369
12074
  }
11370
12075
  },
11371
12076
  "Shopify_SellingPlanPricingPolicyAdjustmentValue": {
@@ -11403,7 +12108,10 @@
11403
12108
  "description": "The weight using the unit system specified with `unit`."
11404
12109
  }
11405
12110
  },
11406
- "required": ["unit", "value"]
12111
+ "required": [
12112
+ "unit",
12113
+ "value"
12114
+ ]
11407
12115
  }
11408
12116
  },
11409
12117
  "Shopify_DeliveryCarrierService": {
@@ -11443,7 +12151,9 @@
11443
12151
  "description": "Use Rest of World as the destination."
11444
12152
  }
11445
12153
  },
11446
- "required": ["restOfWorld"]
12154
+ "required": [
12155
+ "restOfWorld"
12156
+ ]
11447
12157
  },
11448
12158
  "description": "Services offered for given destinations."
11449
12159
  },
@@ -11469,7 +12179,11 @@
11469
12179
  "description": "The name of the service provider."
11470
12180
  }
11471
12181
  },
11472
- "required": ["availableServicesForCountries", "icon", "id"]
12182
+ "required": [
12183
+ "availableServicesForCountries",
12184
+ "icon",
12185
+ "id"
12186
+ ]
11473
12187
  }
11474
12188
  },
11475
12189
  "Shopify_DeliveryParticipantService": {
@@ -11491,7 +12205,10 @@
11491
12205
  "description": "Name of the service."
11492
12206
  }
11493
12207
  },
11494
- "required": ["active", "name"]
12208
+ "required": [
12209
+ "active",
12210
+ "name"
12211
+ ]
11495
12212
  }
11496
12213
  },
11497
12214
  "Shopify_SellingPlanAnchorType": {
@@ -11500,7 +12217,11 @@
11500
12217
  "id": "Shopify_SellingPlanAnchorType",
11501
12218
  "description": "Represents the anchor type.",
11502
12219
  "schema": {
11503
- "enum": ["WEEKDAY", "MONTHDAY", "YEARDAY"]
12220
+ "enum": [
12221
+ "WEEKDAY",
12222
+ "MONTHDAY",
12223
+ "YEARDAY"
12224
+ ]
11504
12225
  }
11505
12226
  },
11506
12227
  "Shopify_SellingPlanPricingPolicyPercentageValue": {
@@ -11517,7 +12238,9 @@
11517
12238
  "description": "The percentage value."
11518
12239
  }
11519
12240
  },
11520
- "required": ["percentage"]
12241
+ "required": [
12242
+ "percentage"
12243
+ ]
11521
12244
  }
11522
12245
  },
11523
12246
  "Shopify_DeliveryAvailableService": {
@@ -11539,7 +12262,10 @@
11539
12262
  "description": "The name of the service."
11540
12263
  }
11541
12264
  },
11542
- "required": ["countries", "name"]
12265
+ "required": [
12266
+ "countries",
12267
+ "name"
12268
+ ]
11543
12269
  }
11544
12270
  },
11545
12271
  "Shopify_DeliveryCountryCodesOrRestOfWorld": {
@@ -11564,9 +12290,12 @@
11564
12290
  "description": "Indicates if 'Rest of World' is applied."
11565
12291
  }
11566
12292
  },
11567
- "required": ["countryCodes", "restOfWorld"]
12293
+ "required": [
12294
+ "countryCodes",
12295
+ "restOfWorld"
12296
+ ]
11568
12297
  }
11569
12298
  }
11570
12299
  },
11571
12300
  "schemaVersion": "3.51.0"
11572
- }
12301
+ }