@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": "a895a9e2-4627-424d-8f0c-145fd84ed1de",
4
4
  "defaultLocale": "en-us",
5
- "locales": ["en-us"],
5
+ "locales": [
6
+ "en-us"
7
+ ],
6
8
  "workflows": {},
7
9
  "forms": {},
8
10
  "services": {
@@ -468,7 +470,9 @@
468
470
  "description": "The ID of the collection to check."
469
471
  }
470
472
  },
471
- "required": ["id"]
473
+ "required": [
474
+ "id"
475
+ ]
472
476
  },
473
477
  "description": "Whether the product is in a given collection."
474
478
  },
@@ -538,7 +542,10 @@
538
542
  "description": "The key for the metafield."
539
543
  }
540
544
  },
541
- "required": ["namespace", "key"]
545
+ "required": [
546
+ "namespace",
547
+ "key"
548
+ ]
542
549
  },
543
550
  "description": "Returns a metafield by namespace and key that belongs to the resource."
544
551
  },
@@ -630,7 +637,10 @@
630
637
  "description": "The key for the private metafield."
631
638
  }
632
639
  },
633
- "required": ["namespace", "key"]
640
+ "required": [
641
+ "namespace",
642
+ "key"
643
+ ]
634
644
  },
635
645
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
636
646
  },
@@ -776,7 +786,9 @@
776
786
  "description": "The ID of the channel to check."
777
787
  }
778
788
  },
779
- "required": ["channelId"]
789
+ "required": [
790
+ "channelId"
791
+ ]
780
792
  },
781
793
  "description": "Check to see whether the resource is published to a given channel."
782
794
  },
@@ -803,7 +815,9 @@
803
815
  "description": "The ID of the publication to check."
804
816
  }
805
817
  },
806
- "required": ["publicationId"]
818
+ "required": [
819
+ "publicationId"
820
+ ]
807
821
  },
808
822
  "description": "Check to see whether the resource is published to a given publication."
809
823
  },
@@ -951,7 +965,9 @@
951
965
  "description": "Filters translations locale."
952
966
  }
953
967
  },
954
- "required": ["locale"]
968
+ "required": [
969
+ "locale"
970
+ ]
955
971
  },
956
972
  "description": "The translations associated with the resource."
957
973
  },
@@ -1232,7 +1248,11 @@
1232
1248
  "description": "The value and value type of the metafield, wrapped in a ValueInput object."
1233
1249
  }
1234
1250
  },
1235
- "required": ["namespace", "key", "valueInput"]
1251
+ "required": [
1252
+ "namespace",
1253
+ "key",
1254
+ "valueInput"
1255
+ ]
1236
1256
  }
1237
1257
  },
1238
1258
  "Shopify_ProductPublicationInput": {
@@ -1429,7 +1449,11 @@
1429
1449
  "id": "Shopify_ProductStatus",
1430
1450
  "description": "The possible product statuses.",
1431
1451
  "schema": {
1432
- "enum": ["ACTIVE", "ARCHIVED", "DRAFT"]
1452
+ "enum": [
1453
+ "ACTIVE",
1454
+ "ARCHIVED",
1455
+ "DRAFT"
1456
+ ]
1433
1457
  }
1434
1458
  },
1435
1459
  "Shopify_CollectionSortKeys": {
@@ -1438,7 +1462,12 @@
1438
1462
  "id": "Shopify_CollectionSortKeys",
1439
1463
  "description": "The set of valid sort keys for the Collection query.",
1440
1464
  "schema": {
1441
- "enum": ["TITLE", "UPDATED_AT", "ID", "RELEVANCE"]
1465
+ "enum": [
1466
+ "TITLE",
1467
+ "UPDATED_AT",
1468
+ "ID",
1469
+ "RELEVANCE"
1470
+ ]
1442
1471
  }
1443
1472
  },
1444
1473
  "Shopify_CollectionConnection": {
@@ -1463,7 +1492,10 @@
1463
1492
  "description": "Information to aid in pagination."
1464
1493
  }
1465
1494
  },
1466
- "required": ["edges", "pageInfo"]
1495
+ "required": [
1496
+ "edges",
1497
+ "pageInfo"
1498
+ ]
1467
1499
  }
1468
1500
  },
1469
1501
  "Shopify_Image": {
@@ -1505,7 +1537,10 @@
1505
1537
  "description": "The key for the metafield."
1506
1538
  }
1507
1539
  },
1508
- "required": ["namespace", "key"]
1540
+ "required": [
1541
+ "namespace",
1542
+ "key"
1543
+ ]
1509
1544
  },
1510
1545
  "description": "Returns a metafield by namespace and key that belongs to the resource."
1511
1546
  },
@@ -1565,7 +1600,10 @@
1565
1600
  "description": "The key for the private metafield."
1566
1601
  }
1567
1602
  },
1568
- "required": ["namespace", "key"]
1603
+ "required": [
1604
+ "namespace",
1605
+ "key"
1606
+ ]
1569
1607
  },
1570
1608
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
1571
1609
  },
@@ -1648,7 +1686,13 @@
1648
1686
  "description": "The original width of the image in pixels. Returns `null` if the image is not hosted by Shopify."
1649
1687
  }
1650
1688
  },
1651
- "required": ["metafields", "originalSrc", "privateMetafields", "src", "transformedSrc"]
1689
+ "required": [
1690
+ "metafields",
1691
+ "originalSrc",
1692
+ "privateMetafields",
1693
+ "src",
1694
+ "transformedSrc"
1695
+ ]
1652
1696
  }
1653
1697
  },
1654
1698
  "Shopify_Media": {
@@ -1688,7 +1732,11 @@
1688
1732
  "description": "Current status of the media."
1689
1733
  }
1690
1734
  },
1691
- "required": ["mediaContentType", "mediaErrors", "status"]
1735
+ "required": [
1736
+ "mediaContentType",
1737
+ "mediaErrors",
1738
+ "status"
1739
+ ]
1692
1740
  }
1693
1741
  },
1694
1742
  "Shopify_ResourceFeedback": {
@@ -1722,7 +1770,11 @@
1722
1770
  "description": "Summary of resource feedback pertaining to the resource."
1723
1771
  }
1724
1772
  },
1725
- "required": ["appFeedback", "details", "summary"]
1773
+ "required": [
1774
+ "appFeedback",
1775
+ "details",
1776
+ "summary"
1777
+ ]
1726
1778
  }
1727
1779
  },
1728
1780
  "Shopify_ProductImageSortKeys": {
@@ -1731,7 +1783,12 @@
1731
1783
  "id": "Shopify_ProductImageSortKeys",
1732
1784
  "description": "The set of valid sort keys for the ProductImage query.",
1733
1785
  "schema": {
1734
- "enum": ["CREATED_AT", "POSITION", "ID", "RELEVANCE"]
1786
+ "enum": [
1787
+ "CREATED_AT",
1788
+ "POSITION",
1789
+ "ID",
1790
+ "RELEVANCE"
1791
+ ]
1735
1792
  }
1736
1793
  },
1737
1794
  "Shopify_CropRegion": {
@@ -1740,7 +1797,13 @@
1740
1797
  "id": "Shopify_CropRegion",
1741
1798
  "description": "The part of the image that should remain after cropping.",
1742
1799
  "schema": {
1743
- "enum": ["CENTER", "TOP", "BOTTOM", "LEFT", "RIGHT"]
1800
+ "enum": [
1801
+ "CENTER",
1802
+ "TOP",
1803
+ "BOTTOM",
1804
+ "LEFT",
1805
+ "RIGHT"
1806
+ ]
1744
1807
  }
1745
1808
  },
1746
1809
  "Shopify_ImageConnection": {
@@ -1765,7 +1828,10 @@
1765
1828
  "description": "Information to aid in pagination."
1766
1829
  }
1767
1830
  },
1768
- "required": ["edges", "pageInfo"]
1831
+ "required": [
1832
+ "edges",
1833
+ "pageInfo"
1834
+ ]
1769
1835
  }
1770
1836
  },
1771
1837
  "Shopify_ProductMediaSortKeys": {
@@ -1774,7 +1840,11 @@
1774
1840
  "id": "Shopify_ProductMediaSortKeys",
1775
1841
  "description": "The set of valid sort keys for the ProductMedia query.",
1776
1842
  "schema": {
1777
- "enum": ["POSITION", "ID", "RELEVANCE"]
1843
+ "enum": [
1844
+ "POSITION",
1845
+ "ID",
1846
+ "RELEVANCE"
1847
+ ]
1778
1848
  }
1779
1849
  },
1780
1850
  "Shopify_MediaConnection": {
@@ -1799,7 +1869,10 @@
1799
1869
  "description": "Information to aid in pagination."
1800
1870
  }
1801
1871
  },
1802
- "required": ["edges", "pageInfo"]
1872
+ "required": [
1873
+ "edges",
1874
+ "pageInfo"
1875
+ ]
1803
1876
  }
1804
1877
  },
1805
1878
  "Shopify_Metafield": {
@@ -1898,7 +1971,10 @@
1898
1971
  "description": "Information to aid in pagination."
1899
1972
  }
1900
1973
  },
1901
- "required": ["edges", "pageInfo"]
1974
+ "required": [
1975
+ "edges",
1976
+ "pageInfo"
1977
+ ]
1902
1978
  }
1903
1979
  },
1904
1980
  "Shopify_ProductOption": {
@@ -1939,7 +2015,9 @@
1939
2015
  "description": "Filters translations locale."
1940
2016
  }
1941
2017
  },
1942
- "required": ["locale"]
2018
+ "required": [
2019
+ "locale"
2020
+ ]
1943
2021
  },
1944
2022
  "description": "The translations associated with the resource."
1945
2023
  },
@@ -1952,7 +2030,13 @@
1952
2030
  "description": "The corresponding value to the product option name."
1953
2031
  }
1954
2032
  },
1955
- "required": ["id", "name", "position", "translations", "values"]
2033
+ "required": [
2034
+ "id",
2035
+ "name",
2036
+ "position",
2037
+ "translations",
2038
+ "values"
2039
+ ]
1956
2040
  }
1957
2041
  },
1958
2042
  "Shopify_ProductPriceRange": {
@@ -1974,7 +2058,10 @@
1974
2058
  "description": "The lowest variant's price."
1975
2059
  }
1976
2060
  },
1977
- "required": ["maxVariantPrice", "minVariantPrice"]
2061
+ "required": [
2062
+ "maxVariantPrice",
2063
+ "minVariantPrice"
2064
+ ]
1978
2065
  }
1979
2066
  },
1980
2067
  "Shopify_ProductPriceRangeV2": {
@@ -1996,7 +2083,10 @@
1996
2083
  "description": "The lowest variant's price."
1997
2084
  }
1998
2085
  },
1999
- "required": ["maxVariantPrice", "minVariantPrice"]
2086
+ "required": [
2087
+ "maxVariantPrice",
2088
+ "minVariantPrice"
2089
+ ]
2000
2090
  }
2001
2091
  },
2002
2092
  "Shopify_PrivateMetafield": {
@@ -2044,7 +2134,15 @@
2044
2134
  "description": "Represents the private metafield value type."
2045
2135
  }
2046
2136
  },
2047
- "required": ["createdAt", "id", "key", "namespace", "updatedAt", "value", "valueType"]
2137
+ "required": [
2138
+ "createdAt",
2139
+ "id",
2140
+ "key",
2141
+ "namespace",
2142
+ "updatedAt",
2143
+ "value",
2144
+ "valueType"
2145
+ ]
2048
2146
  }
2049
2147
  },
2050
2148
  "Shopify_PrivateMetafieldConnection": {
@@ -2069,7 +2167,10 @@
2069
2167
  "description": "Information to aid in pagination."
2070
2168
  }
2071
2169
  },
2072
- "required": ["edges", "pageInfo"]
2170
+ "required": [
2171
+ "edges",
2172
+ "pageInfo"
2173
+ ]
2073
2174
  }
2074
2175
  },
2075
2176
  "Shopify_ProductPublicationConnection": {
@@ -2094,7 +2195,10 @@
2094
2195
  "description": "Information to aid in pagination."
2095
2196
  }
2096
2197
  },
2097
- "required": ["edges", "pageInfo"]
2198
+ "required": [
2199
+ "edges",
2200
+ "pageInfo"
2201
+ ]
2098
2202
  }
2099
2203
  },
2100
2204
  "Shopify_ResourcePublicationConnection": {
@@ -2119,7 +2223,10 @@
2119
2223
  "description": "Information to aid in pagination."
2120
2224
  }
2121
2225
  },
2122
- "required": ["edges", "pageInfo"]
2226
+ "required": [
2227
+ "edges",
2228
+ "pageInfo"
2229
+ ]
2123
2230
  }
2124
2231
  },
2125
2232
  "Shopify_ResourcePublicationV2Connection": {
@@ -2144,7 +2251,10 @@
2144
2251
  "description": "Information to aid in pagination."
2145
2252
  }
2146
2253
  },
2147
- "required": ["edges", "pageInfo"]
2254
+ "required": [
2255
+ "edges",
2256
+ "pageInfo"
2257
+ ]
2148
2258
  }
2149
2259
  },
2150
2260
  "Shopify_SEO": {
@@ -2192,7 +2302,10 @@
2192
2302
  "description": "The translation value."
2193
2303
  }
2194
2304
  },
2195
- "required": ["key", "locale"]
2305
+ "required": [
2306
+ "key",
2307
+ "locale"
2308
+ ]
2196
2309
  }
2197
2310
  },
2198
2311
  "Shopify_ChannelConnection": {
@@ -2217,7 +2330,10 @@
2217
2330
  "description": "Information to aid in pagination."
2218
2331
  }
2219
2332
  },
2220
- "required": ["edges", "pageInfo"]
2333
+ "required": [
2334
+ "edges",
2335
+ "pageInfo"
2336
+ ]
2221
2337
  }
2222
2338
  },
2223
2339
  "Shopify_PublicationConnection": {
@@ -2242,7 +2358,10 @@
2242
2358
  "description": "Information to aid in pagination."
2243
2359
  }
2244
2360
  },
2245
- "required": ["edges", "pageInfo"]
2361
+ "required": [
2362
+ "edges",
2363
+ "pageInfo"
2364
+ ]
2246
2365
  }
2247
2366
  },
2248
2367
  "Shopify_ProductVariantSortKeys": {
@@ -2289,7 +2408,10 @@
2289
2408
  "description": "Information to aid in pagination."
2290
2409
  }
2291
2410
  },
2292
- "required": ["edges", "pageInfo"]
2411
+ "required": [
2412
+ "edges",
2413
+ "pageInfo"
2414
+ ]
2293
2415
  }
2294
2416
  },
2295
2417
  "Shopify_PrivateMetafieldValueInput": {
@@ -2311,7 +2433,10 @@
2311
2433
  "description": "Represents the private metafield value type."
2312
2434
  }
2313
2435
  },
2314
- "required": ["value", "valueType"]
2436
+ "required": [
2437
+ "value",
2438
+ "valueType"
2439
+ ]
2315
2440
  }
2316
2441
  },
2317
2442
  "Shopify_ProductVariantInventoryManagement": {
@@ -2320,7 +2445,11 @@
2320
2445
  "id": "Shopify_ProductVariantInventoryManagement",
2321
2446
  "description": "The method of inventory tracking for a product variant.",
2322
2447
  "schema": {
2323
- "enum": ["SHOPIFY", "NOT_MANAGED", "FULFILLMENT_SERVICE"]
2448
+ "enum": [
2449
+ "SHOPIFY",
2450
+ "NOT_MANAGED",
2451
+ "FULFILLMENT_SERVICE"
2452
+ ]
2324
2453
  }
2325
2454
  },
2326
2455
  "Shopify_ProductVariantInventoryPolicy": {
@@ -2329,7 +2458,10 @@
2329
2458
  "id": "Shopify_ProductVariantInventoryPolicy",
2330
2459
  "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.",
2331
2460
  "schema": {
2332
- "enum": ["DENY", "CONTINUE"]
2461
+ "enum": [
2462
+ "DENY",
2463
+ "CONTINUE"
2464
+ ]
2333
2465
  }
2334
2466
  },
2335
2467
  "Shopify_InventoryLevelInput": {
@@ -2352,7 +2484,10 @@
2352
2484
  "description": "ID of the location."
2353
2485
  }
2354
2486
  },
2355
- "required": ["availableQuantity", "locationId"]
2487
+ "required": [
2488
+ "availableQuantity",
2489
+ "locationId"
2490
+ ]
2356
2491
  }
2357
2492
  },
2358
2493
  "Shopify_InventoryItemInput": {
@@ -2382,7 +2517,12 @@
2382
2517
  "id": "Shopify_WeightUnit",
2383
2518
  "description": "Units of measurement for weight.",
2384
2519
  "schema": {
2385
- "enum": ["KILOGRAMS", "GRAMS", "POUNDS", "OUNCES"]
2520
+ "enum": [
2521
+ "KILOGRAMS",
2522
+ "GRAMS",
2523
+ "POUNDS",
2524
+ "OUNCES"
2525
+ ]
2386
2526
  }
2387
2527
  },
2388
2528
  "Shopify_CollectionEdge": {
@@ -2404,7 +2544,10 @@
2404
2544
  "description": "The item at the end of CollectionEdge."
2405
2545
  }
2406
2546
  },
2407
- "required": ["cursor", "node"]
2547
+ "required": [
2548
+ "cursor",
2549
+ "node"
2550
+ ]
2408
2551
  }
2409
2552
  },
2410
2553
  "Shopify_PageInfo": {
@@ -2426,7 +2569,10 @@
2426
2569
  "description": "Whether there are any pages prior to the current page."
2427
2570
  }
2428
2571
  },
2429
- "required": ["hasNextPage", "hasPreviousPage"]
2572
+ "required": [
2573
+ "hasNextPage",
2574
+ "hasPreviousPage"
2575
+ ]
2430
2576
  }
2431
2577
  },
2432
2578
  "Shopify_ImageContentType": {
@@ -2435,7 +2581,11 @@
2435
2581
  "id": "Shopify_ImageContentType",
2436
2582
  "description": "List of supported image content types.",
2437
2583
  "schema": {
2438
- "enum": ["PNG", "JPG", "WEBP"]
2584
+ "enum": [
2585
+ "PNG",
2586
+ "JPG",
2587
+ "WEBP"
2588
+ ]
2439
2589
  }
2440
2590
  },
2441
2591
  "Shopify_MediaContentType": {
@@ -2444,7 +2594,12 @@
2444
2594
  "id": "Shopify_MediaContentType",
2445
2595
  "description": "The possible content types for a media object.",
2446
2596
  "schema": {
2447
- "enum": ["VIDEO", "EXTERNAL_VIDEO", "MODEL_3D", "IMAGE"]
2597
+ "enum": [
2598
+ "VIDEO",
2599
+ "EXTERNAL_VIDEO",
2600
+ "MODEL_3D",
2601
+ "IMAGE"
2602
+ ]
2448
2603
  }
2449
2604
  },
2450
2605
  "Shopify_MediaError": {
@@ -2471,7 +2626,10 @@
2471
2626
  "description": "Translated error message."
2472
2627
  }
2473
2628
  },
2474
- "required": ["code", "message"]
2629
+ "required": [
2630
+ "code",
2631
+ "message"
2632
+ ]
2475
2633
  }
2476
2634
  },
2477
2635
  "Shopify_MediaPreviewImage": {
@@ -2493,7 +2651,9 @@
2493
2651
  "description": "Current status of the preview image."
2494
2652
  }
2495
2653
  },
2496
- "required": ["status"]
2654
+ "required": [
2655
+ "status"
2656
+ ]
2497
2657
  }
2498
2658
  },
2499
2659
  "Shopify_MediaStatus": {
@@ -2502,7 +2662,12 @@
2502
2662
  "id": "Shopify_MediaStatus",
2503
2663
  "description": "The possible statuses for a media object.",
2504
2664
  "schema": {
2505
- "enum": ["UPLOADED", "PROCESSING", "READY", "FAILED"]
2665
+ "enum": [
2666
+ "UPLOADED",
2667
+ "PROCESSING",
2668
+ "READY",
2669
+ "FAILED"
2670
+ ]
2506
2671
  }
2507
2672
  },
2508
2673
  "Shopify_AppFeedback": {
@@ -2532,7 +2697,10 @@
2532
2697
  "description": "The feedback message presented to the merchant."
2533
2698
  }
2534
2699
  },
2535
- "required": ["app", "messages"]
2700
+ "required": [
2701
+ "app",
2702
+ "messages"
2703
+ ]
2536
2704
  }
2537
2705
  },
2538
2706
  "Shopify_ImageEdge": {
@@ -2554,7 +2722,10 @@
2554
2722
  "description": "The item at the end of ImageEdge."
2555
2723
  }
2556
2724
  },
2557
- "required": ["cursor", "node"]
2725
+ "required": [
2726
+ "cursor",
2727
+ "node"
2728
+ ]
2558
2729
  }
2559
2730
  },
2560
2731
  "Shopify_MediaEdge": {
@@ -2576,7 +2747,10 @@
2576
2747
  "description": "The item at the end of MediaEdge."
2577
2748
  }
2578
2749
  },
2579
- "required": ["cursor", "node"]
2750
+ "required": [
2751
+ "cursor",
2752
+ "node"
2753
+ ]
2580
2754
  }
2581
2755
  },
2582
2756
  "Shopify_MetafieldOwnerType": {
@@ -2606,7 +2780,12 @@
2606
2780
  "id": "Shopify_MetafieldValueType",
2607
2781
  "description": "Metafield value types.",
2608
2782
  "schema": {
2609
- "enum": ["STRING", "INTEGER", "JSON_STRING", "BOOLEAN"]
2783
+ "enum": [
2784
+ "STRING",
2785
+ "INTEGER",
2786
+ "JSON_STRING",
2787
+ "BOOLEAN"
2788
+ ]
2610
2789
  }
2611
2790
  },
2612
2791
  "Shopify_MetafieldEdge": {
@@ -2628,7 +2807,10 @@
2628
2807
  "description": "The item at the end of MetafieldEdge."
2629
2808
  }
2630
2809
  },
2631
- "required": ["cursor", "node"]
2810
+ "required": [
2811
+ "cursor",
2812
+ "node"
2813
+ ]
2632
2814
  }
2633
2815
  },
2634
2816
  "Shopify_MoneyV2": {
@@ -2650,7 +2832,10 @@
2650
2832
  "description": "Currency of the money."
2651
2833
  }
2652
2834
  },
2653
- "required": ["amount", "currencyCode"]
2835
+ "required": [
2836
+ "amount",
2837
+ "currencyCode"
2838
+ ]
2654
2839
  }
2655
2840
  },
2656
2841
  "Shopify_PrivateMetafieldValueType": {
@@ -2659,7 +2844,11 @@
2659
2844
  "id": "Shopify_PrivateMetafieldValueType",
2660
2845
  "description": "Private Metafield value types.",
2661
2846
  "schema": {
2662
- "enum": ["STRING", "INTEGER", "JSON_STRING"]
2847
+ "enum": [
2848
+ "STRING",
2849
+ "INTEGER",
2850
+ "JSON_STRING"
2851
+ ]
2663
2852
  }
2664
2853
  },
2665
2854
  "Shopify_PrivateMetafieldEdge": {
@@ -2681,7 +2870,10 @@
2681
2870
  "description": "The item at the end of PrivateMetafieldEdge."
2682
2871
  }
2683
2872
  },
2684
- "required": ["cursor", "node"]
2873
+ "required": [
2874
+ "cursor",
2875
+ "node"
2876
+ ]
2685
2877
  }
2686
2878
  },
2687
2879
  "Shopify_ProductPublicationEdge": {
@@ -2703,7 +2895,10 @@
2703
2895
  "description": "The item at the end of ProductPublicationEdge."
2704
2896
  }
2705
2897
  },
2706
- "required": ["cursor", "node"]
2898
+ "required": [
2899
+ "cursor",
2900
+ "node"
2901
+ ]
2707
2902
  }
2708
2903
  },
2709
2904
  "Shopify_ResourcePublicationEdge": {
@@ -2725,7 +2920,10 @@
2725
2920
  "description": "The item at the end of ResourcePublicationEdge."
2726
2921
  }
2727
2922
  },
2728
- "required": ["cursor", "node"]
2923
+ "required": [
2924
+ "cursor",
2925
+ "node"
2926
+ ]
2729
2927
  }
2730
2928
  },
2731
2929
  "Shopify_ResourcePublicationV2Edge": {
@@ -2747,7 +2945,10 @@
2747
2945
  "description": "The item at the end of ResourcePublicationV2Edge."
2748
2946
  }
2749
2947
  },
2750
- "required": ["cursor", "node"]
2948
+ "required": [
2949
+ "cursor",
2950
+ "node"
2951
+ ]
2751
2952
  }
2752
2953
  },
2753
2954
  "Shopify_ChannelEdge": {
@@ -2769,7 +2970,10 @@
2769
2970
  "description": "The item at the end of ChannelEdge."
2770
2971
  }
2771
2972
  },
2772
- "required": ["cursor", "node"]
2973
+ "required": [
2974
+ "cursor",
2975
+ "node"
2976
+ ]
2773
2977
  }
2774
2978
  },
2775
2979
  "Shopify_PublicationEdge": {
@@ -2791,7 +2995,10 @@
2791
2995
  "description": "The item at the end of PublicationEdge."
2792
2996
  }
2793
2997
  },
2794
- "required": ["cursor", "node"]
2998
+ "required": [
2999
+ "cursor",
3000
+ "node"
3001
+ ]
2795
3002
  }
2796
3003
  },
2797
3004
  "Shopify_ProductVariantEdge": {
@@ -2813,7 +3020,10 @@
2813
3020
  "description": "The item at the end of ProductVariantEdge."
2814
3021
  }
2815
3022
  },
2816
- "required": ["cursor", "node"]
3023
+ "required": [
3024
+ "cursor",
3025
+ "node"
3026
+ ]
2817
3027
  }
2818
3028
  },
2819
3029
  "Shopify_Collection": {
@@ -2870,7 +3080,9 @@
2870
3080
  "description": "The ID of the product to check."
2871
3081
  }
2872
3082
  },
2873
- "required": ["id"]
3083
+ "required": [
3084
+ "id"
3085
+ ]
2874
3086
  },
2875
3087
  "description": "Whether the collection includes the specified product."
2876
3088
  },
@@ -2927,7 +3139,10 @@
2927
3139
  "description": "The key for the metafield."
2928
3140
  }
2929
3141
  },
2930
- "required": ["namespace", "key"]
3142
+ "required": [
3143
+ "namespace",
3144
+ "key"
3145
+ ]
2931
3146
  },
2932
3147
  "description": "Returns a metafield by namespace and key that belongs to the resource."
2933
3148
  },
@@ -2981,7 +3196,10 @@
2981
3196
  "description": "The key for the private metafield."
2982
3197
  }
2983
3198
  },
2984
- "required": ["namespace", "key"]
3199
+ "required": [
3200
+ "namespace",
3201
+ "key"
3202
+ ]
2985
3203
  },
2986
3204
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
2987
3205
  },
@@ -3130,7 +3348,9 @@
3130
3348
  "description": "The ID of the channel to check."
3131
3349
  }
3132
3350
  },
3133
- "required": ["channelId"]
3351
+ "required": [
3352
+ "channelId"
3353
+ ]
3134
3354
  },
3135
3355
  "description": "Check to see whether the resource is published to a given channel."
3136
3356
  },
@@ -3157,7 +3377,9 @@
3157
3377
  "description": "The ID of the publication to check."
3158
3378
  }
3159
3379
  },
3160
- "required": ["publicationId"]
3380
+ "required": [
3381
+ "publicationId"
3382
+ ]
3161
3383
  },
3162
3384
  "description": "Check to see whether the resource is published to a given publication."
3163
3385
  },
@@ -3277,7 +3499,9 @@
3277
3499
  "description": "Filters translations locale."
3278
3500
  }
3279
3501
  },
3280
- "required": ["locale"]
3502
+ "required": [
3503
+ "locale"
3504
+ ]
3281
3505
  },
3282
3506
  "description": "The translations associated with the resource."
3283
3507
  },
@@ -3420,7 +3644,12 @@
3420
3644
  "id": "Shopify_MediaPreviewImageStatus",
3421
3645
  "description": "The possible statuses for a media preview image.",
3422
3646
  "schema": {
3423
- "enum": ["UPLOADED", "PROCESSING", "READY", "FAILED"]
3647
+ "enum": [
3648
+ "UPLOADED",
3649
+ "PROCESSING",
3650
+ "READY",
3651
+ "FAILED"
3652
+ ]
3424
3653
  }
3425
3654
  },
3426
3655
  "Shopify_App": {
@@ -3631,7 +3860,9 @@
3631
3860
  "description": "Filters translations locale."
3632
3861
  }
3633
3862
  },
3634
- "required": ["locale"]
3863
+ "required": [
3864
+ "locale"
3865
+ ]
3635
3866
  },
3636
3867
  "description": "The translations associated with the resource."
3637
3868
  },
@@ -3641,7 +3872,11 @@
3641
3872
  "@mapping": "shopify:takeshape-io-shop:Link.url"
3642
3873
  }
3643
3874
  },
3644
- "required": ["label", "translations", "url"]
3875
+ "required": [
3876
+ "label",
3877
+ "translations",
3878
+ "url"
3879
+ ]
3645
3880
  }
3646
3881
  },
3647
3882
  "Shopify_UserError": {
@@ -3666,7 +3901,9 @@
3666
3901
  "description": "The error message."
3667
3902
  }
3668
3903
  },
3669
- "required": ["message"]
3904
+ "required": [
3905
+ "message"
3906
+ ]
3670
3907
  }
3671
3908
  },
3672
3909
  "Shopify_CurrencyCode": {
@@ -3866,7 +4103,11 @@
3866
4103
  "@mapping": "shopify:takeshape-io-shop:ProductPublication.publishDate"
3867
4104
  }
3868
4105
  },
3869
- "required": ["channel", "isPublished", "product"]
4106
+ "required": [
4107
+ "channel",
4108
+ "isPublished",
4109
+ "product"
4110
+ ]
3870
4111
  }
3871
4112
  },
3872
4113
  "Shopify_ResourcePublication": {
@@ -3904,7 +4145,13 @@
3904
4145
  "description": "The resource published to the publication."
3905
4146
  }
3906
4147
  },
3907
- "required": ["channel", "isPublished", "publication", "publishDate", "publishable"]
4148
+ "required": [
4149
+ "channel",
4150
+ "isPublished",
4151
+ "publication",
4152
+ "publishDate",
4153
+ "publishable"
4154
+ ]
3908
4155
  }
3909
4156
  },
3910
4157
  "Shopify_ResourcePublicationV2": {
@@ -3936,7 +4183,11 @@
3936
4183
  "description": "The resource published to the publication."
3937
4184
  }
3938
4185
  },
3939
- "required": ["isPublished", "publication", "publishable"]
4186
+ "required": [
4187
+ "isPublished",
4188
+ "publication",
4189
+ "publishable"
4190
+ ]
3940
4191
  }
3941
4192
  },
3942
4193
  "Shopify_Channel": {
@@ -4032,7 +4283,9 @@
4032
4283
  "description": "Collection ID to check."
4033
4284
  }
4034
4285
  },
4035
- "required": ["id"]
4286
+ "required": [
4287
+ "id"
4288
+ ]
4036
4289
  },
4037
4290
  "description": "Whether the collection is available to the channel."
4038
4291
  },
@@ -4265,7 +4518,9 @@
4265
4518
  "description": "Collection ID to check."
4266
4519
  }
4267
4520
  },
4268
- "required": ["id"]
4521
+ "required": [
4522
+ "id"
4523
+ ]
4269
4524
  },
4270
4525
  "description": "Whether the collection is available to the publication."
4271
4526
  },
@@ -4525,7 +4780,10 @@
4525
4780
  "description": "The key for the metafield."
4526
4781
  }
4527
4782
  },
4528
- "required": ["namespace", "key"]
4783
+ "required": [
4784
+ "namespace",
4785
+ "key"
4786
+ ]
4529
4787
  },
4530
4788
  "description": "Returns a metafield by namespace and key that belongs to the resource."
4531
4789
  },
@@ -4627,7 +4885,10 @@
4627
4885
  "description": "The key for the private metafield."
4628
4886
  }
4629
4887
  },
4630
- "required": ["namespace", "key"]
4888
+ "required": [
4889
+ "namespace",
4890
+ "key"
4891
+ ]
4631
4892
  },
4632
4893
  "description": "Returns a private metafield by namespace and key that belongs to the resource."
4633
4894
  },
@@ -4729,7 +4990,9 @@
4729
4990
  "description": "Filters translations locale."
4730
4991
  }
4731
4992
  },
4732
- "required": ["locale"]
4993
+ "required": [
4994
+ "locale"
4995
+ ]
4733
4996
  },
4734
4997
  "description": "The translations associated with the resource."
4735
4998
  },
@@ -4785,7 +5048,16 @@
4785
5048
  "id": "Shopify_ProductCollectionSortKeys",
4786
5049
  "description": "The set of valid sort keys for the ProductCollection query.",
4787
5050
  "schema": {
4788
- "enum": ["TITLE", "PRICE", "BEST_SELLING", "CREATED", "ID", "MANUAL", "COLLECTION_DEFAULT", "RELEVANCE"]
5051
+ "enum": [
5052
+ "TITLE",
5053
+ "PRICE",
5054
+ "BEST_SELLING",
5055
+ "CREATED",
5056
+ "ID",
5057
+ "MANUAL",
5058
+ "COLLECTION_DEFAULT",
5059
+ "RELEVANCE"
5060
+ ]
4789
5061
  }
4790
5062
  },
4791
5063
  "Shopify_ProductConnection": {
@@ -4810,7 +5082,10 @@
4810
5082
  "description": "Information to aid in pagination."
4811
5083
  }
4812
5084
  },
4813
- "required": ["edges", "pageInfo"]
5085
+ "required": [
5086
+ "edges",
5087
+ "pageInfo"
5088
+ ]
4814
5089
  }
4815
5090
  },
4816
5091
  "Shopify_CollectionPublicationConnection": {
@@ -4835,7 +5110,10 @@
4835
5110
  "description": "Information to aid in pagination."
4836
5111
  }
4837
5112
  },
4838
- "required": ["edges", "pageInfo"]
5113
+ "required": [
5114
+ "edges",
5115
+ "pageInfo"
5116
+ ]
4839
5117
  }
4840
5118
  },
4841
5119
  "Shopify_CollectionRuleSet": {
@@ -4860,7 +5138,10 @@
4860
5138
  "description": "The rules used to assign products to the collection."
4861
5139
  }
4862
5140
  },
4863
- "required": ["appliedDisjunctively", "rules"]
5141
+ "required": [
5142
+ "appliedDisjunctively",
5143
+ "rules"
5144
+ ]
4864
5145
  }
4865
5146
  },
4866
5147
  "Shopify_CollectionSortOrder": {
@@ -4900,7 +5181,9 @@
4900
5181
  "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."
4901
5182
  }
4902
5183
  },
4903
- "required": ["message"]
5184
+ "required": [
5185
+ "message"
5186
+ ]
4904
5187
  }
4905
5188
  },
4906
5189
  "Shopify_AppInstallation": {
@@ -5114,7 +5397,11 @@
5114
5397
  "@mapping": "shopify:takeshape-io-shop:NavigationItem.url"
5115
5398
  }
5116
5399
  },
5117
- "required": ["id", "title", "url"]
5400
+ "required": [
5401
+ "id",
5402
+ "title",
5403
+ "url"
5404
+ ]
5118
5405
  }
5119
5406
  },
5120
5407
  "Shopify_Publishable": {
@@ -5158,7 +5445,9 @@
5158
5445
  "description": "The ID of the channel to check."
5159
5446
  }
5160
5447
  },
5161
- "required": ["channelId"]
5448
+ "required": [
5449
+ "channelId"
5450
+ ]
5162
5451
  },
5163
5452
  "description": "Check to see whether the resource is published to a given channel."
5164
5453
  },
@@ -5185,7 +5474,9 @@
5185
5474
  "description": "The ID of the publication to check."
5186
5475
  }
5187
5476
  },
5188
- "required": ["publicationId"]
5477
+ "required": [
5478
+ "publicationId"
5479
+ ]
5189
5480
  },
5190
5481
  "description": "Check to see whether the resource is published to a given publication."
5191
5482
  },
@@ -5595,7 +5886,9 @@
5595
5886
  "@mapping": "shopify:takeshape-io-shop:EditableProperty.reason"
5596
5887
  }
5597
5888
  },
5598
- "required": ["locked"]
5889
+ "required": [
5890
+ "locked"
5891
+ ]
5599
5892
  }
5600
5893
  },
5601
5894
  "Shopify_InventoryItem": {
@@ -5680,7 +5973,9 @@
5680
5973
  "description": "ID of the location for which the inventory level is requested."
5681
5974
  }
5682
5975
  },
5683
- "required": ["locationId"]
5976
+ "required": [
5977
+ "locationId"
5978
+ ]
5684
5979
  },
5685
5980
  "description": "Get the inventory level at a specific location."
5686
5981
  },
@@ -5808,7 +6103,10 @@
5808
6103
  "description": "Information to aid in pagination."
5809
6104
  }
5810
6105
  },
5811
- "required": ["edges", "pageInfo"]
6106
+ "required": [
6107
+ "edges",
6108
+ "pageInfo"
6109
+ ]
5812
6110
  }
5813
6111
  },
5814
6112
  "Shopify_SelectedOption": {
@@ -5830,7 +6128,10 @@
5830
6128
  "description": "The product option’s value."
5831
6129
  }
5832
6130
  },
5833
- "required": ["name", "value"]
6131
+ "required": [
6132
+ "name",
6133
+ "value"
6134
+ ]
5834
6135
  }
5835
6136
  },
5836
6137
  "Shopify_ProductEdge": {
@@ -5852,7 +6153,10 @@
5852
6153
  "description": "The item at the end of ProductEdge."
5853
6154
  }
5854
6155
  },
5855
- "required": ["cursor", "node"]
6156
+ "required": [
6157
+ "cursor",
6158
+ "node"
6159
+ ]
5856
6160
  }
5857
6161
  },
5858
6162
  "Shopify_CollectionPublicationEdge": {
@@ -5874,7 +6178,10 @@
5874
6178
  "description": "The item at the end of CollectionPublicationEdge."
5875
6179
  }
5876
6180
  },
5877
- "required": ["cursor", "node"]
6181
+ "required": [
6182
+ "cursor",
6183
+ "node"
6184
+ ]
5878
6185
  }
5879
6186
  },
5880
6187
  "Shopify_CollectionRule": {
@@ -5901,7 +6208,11 @@
5901
6208
  "description": "The type of operator that the rule is based on (for example, `equals`, `contains`, or `not_equals`)."
5902
6209
  }
5903
6210
  },
5904
- "required": ["column", "condition", "relation"]
6211
+ "required": [
6212
+ "column",
6213
+ "condition",
6214
+ "relation"
6215
+ ]
5905
6216
  }
5906
6217
  },
5907
6218
  "Shopify_AccessScope": {
@@ -5923,7 +6234,10 @@
5923
6234
  "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`."
5924
6235
  }
5925
6236
  },
5926
- "required": ["description", "handle"]
6237
+ "required": [
6238
+ "description",
6239
+ "handle"
6240
+ ]
5927
6241
  }
5928
6242
  },
5929
6243
  "Shopify_AppSubscription": {
@@ -5984,7 +6298,16 @@
5984
6298
  "description": "The number of days of the free trial."
5985
6299
  }
5986
6300
  },
5987
- "required": ["createdAt", "id", "lineItems", "name", "returnUrl", "status", "test", "trialDays"]
6301
+ "required": [
6302
+ "createdAt",
6303
+ "id",
6304
+ "lineItems",
6305
+ "name",
6306
+ "returnUrl",
6307
+ "status",
6308
+ "test",
6309
+ "trialDays"
6310
+ ]
5988
6311
  }
5989
6312
  },
5990
6313
  "Shopify_AppSubscriptionSortKeys": {
@@ -5993,7 +6316,11 @@
5993
6316
  "id": "Shopify_AppSubscriptionSortKeys",
5994
6317
  "description": "The set of valid sort keys for the AppSubscription query.",
5995
6318
  "schema": {
5996
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
6319
+ "enum": [
6320
+ "CREATED_AT",
6321
+ "ID",
6322
+ "RELEVANCE"
6323
+ ]
5997
6324
  }
5998
6325
  },
5999
6326
  "Shopify_AppSubscriptionConnection": {
@@ -6018,7 +6345,10 @@
6018
6345
  "description": "Information to aid in pagination."
6019
6346
  }
6020
6347
  },
6021
- "required": ["edges", "pageInfo"]
6348
+ "required": [
6349
+ "edges",
6350
+ "pageInfo"
6351
+ ]
6022
6352
  }
6023
6353
  },
6024
6354
  "Shopify_AppTransactionSortKeys": {
@@ -6027,7 +6357,11 @@
6027
6357
  "id": "Shopify_AppTransactionSortKeys",
6028
6358
  "description": "The set of valid sort keys for the AppTransaction query.",
6029
6359
  "schema": {
6030
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
6360
+ "enum": [
6361
+ "CREATED_AT",
6362
+ "ID",
6363
+ "RELEVANCE"
6364
+ ]
6031
6365
  }
6032
6366
  },
6033
6367
  "Shopify_AppCreditConnection": {
@@ -6052,7 +6386,10 @@
6052
6386
  "description": "Information to aid in pagination."
6053
6387
  }
6054
6388
  },
6055
- "required": ["edges", "pageInfo"]
6389
+ "required": [
6390
+ "edges",
6391
+ "pageInfo"
6392
+ ]
6056
6393
  }
6057
6394
  },
6058
6395
  "Shopify_AppPurchaseOneTimeConnection": {
@@ -6077,7 +6414,10 @@
6077
6414
  "description": "Information to aid in pagination."
6078
6415
  }
6079
6416
  },
6080
- "required": ["edges", "pageInfo"]
6417
+ "required": [
6418
+ "edges",
6419
+ "pageInfo"
6420
+ ]
6081
6421
  }
6082
6422
  },
6083
6423
  "Shopify_DeliveryProductVariantsCount": {
@@ -6099,7 +6439,10 @@
6099
6439
  "description": "The product variant count."
6100
6440
  }
6101
6441
  },
6102
- "required": ["capped", "count"]
6442
+ "required": [
6443
+ "capped",
6444
+ "count"
6445
+ ]
6103
6446
  }
6104
6447
  },
6105
6448
  "Shopify_ProfileItemSortKeys": {
@@ -6143,7 +6486,10 @@
6143
6486
  "description": "Information to aid in pagination."
6144
6487
  }
6145
6488
  },
6146
- "required": ["edges", "pageInfo"]
6489
+ "required": [
6490
+ "edges",
6491
+ "pageInfo"
6492
+ ]
6147
6493
  }
6148
6494
  },
6149
6495
  "Shopify_DeliveryProfileLocationGroup": {
@@ -6199,7 +6545,11 @@
6199
6545
  "description": "The applicable zones associated to a location group and delivery profile."
6200
6546
  }
6201
6547
  },
6202
- "required": ["countriesInAnyZone", "locationGroup", "locationGroupZones"]
6548
+ "required": [
6549
+ "countriesInAnyZone",
6550
+ "locationGroup",
6551
+ "locationGroupZones"
6552
+ ]
6203
6553
  }
6204
6554
  },
6205
6555
  "Shopify_SellingPlanGroupConnection": {
@@ -6224,7 +6574,10 @@
6224
6574
  "description": "Information to aid in pagination."
6225
6575
  }
6226
6576
  },
6227
- "required": ["edges", "pageInfo"]
6577
+ "required": [
6578
+ "edges",
6579
+ "pageInfo"
6580
+ ]
6228
6581
  }
6229
6582
  },
6230
6583
  "Shopify_Location": {
@@ -6303,7 +6656,9 @@
6303
6656
  "description": "Specifies the inventory item ID for the inventory level to be returned."
6304
6657
  }
6305
6658
  },
6306
- "required": ["inventoryItemId"]
6659
+ "required": [
6660
+ "inventoryItemId"
6661
+ ]
6307
6662
  },
6308
6663
  "description": "A single inventory level for the given inventory item."
6309
6664
  },
@@ -6416,7 +6771,10 @@
6416
6771
  "description": "A description of the rate, which customers will see at checkout.\nFor example: `Includes tracking and insurance`."
6417
6772
  }
6418
6773
  },
6419
- "required": ["code", "label"]
6774
+ "required": [
6775
+ "code",
6776
+ "label"
6777
+ ]
6420
6778
  }
6421
6779
  },
6422
6780
  "Shopify_FulfillmentServiceType": {
@@ -6425,7 +6783,11 @@
6425
6783
  "id": "Shopify_FulfillmentServiceType",
6426
6784
  "description": "The type of a fulfillment service.",
6427
6785
  "schema": {
6428
- "enum": ["GIFT_CARD", "MANUAL", "THIRD_PARTY"]
6786
+ "enum": [
6787
+ "GIFT_CARD",
6788
+ "MANUAL",
6789
+ "THIRD_PARTY"
6790
+ ]
6429
6791
  }
6430
6792
  },
6431
6793
  "Shopify_CountryCode": {
@@ -6704,7 +7066,10 @@
6704
7066
  "description": "Information to aid in pagination."
6705
7067
  }
6706
7068
  },
6707
- "required": ["edges", "pageInfo"]
7069
+ "required": [
7070
+ "edges",
7071
+ "pageInfo"
7072
+ ]
6708
7073
  }
6709
7074
  },
6710
7075
  "Shopify_InventoryLevel": {
@@ -6767,7 +7132,16 @@
6767
7132
  "@mapping": "shopify:takeshape-io-shop:InventoryLevel.updatedAt"
6768
7133
  }
6769
7134
  },
6770
- "required": ["available", "canDeactivate", "createdAt", "id", "incoming", "item", "location", "updatedAt"]
7135
+ "required": [
7136
+ "available",
7137
+ "canDeactivate",
7138
+ "createdAt",
7139
+ "id",
7140
+ "incoming",
7141
+ "item",
7142
+ "location",
7143
+ "updatedAt"
7144
+ ]
6771
7145
  }
6772
7146
  },
6773
7147
  "Shopify_InventoryLevelConnection": {
@@ -6792,7 +7166,10 @@
6792
7166
  "description": "Information to aid in pagination."
6793
7167
  }
6794
7168
  },
6795
- "required": ["edges", "pageInfo"]
7169
+ "required": [
7170
+ "edges",
7171
+ "pageInfo"
7172
+ ]
6796
7173
  }
6797
7174
  },
6798
7175
  "Shopify_ProductVariantPricePairEdge": {
@@ -6814,7 +7191,10 @@
6814
7191
  "description": "The item at the end of ProductVariantPricePairEdge."
6815
7192
  }
6816
7193
  },
6817
- "required": ["cursor", "node"]
7194
+ "required": [
7195
+ "cursor",
7196
+ "node"
7197
+ ]
6818
7198
  }
6819
7199
  },
6820
7200
  "Shopify_CollectionPublication": {
@@ -6852,7 +7232,13 @@
6852
7232
  "@mapping": "shopify:takeshape-io-shop:CollectionPublication.publishDate"
6853
7233
  }
6854
7234
  },
6855
- "required": ["channel", "collection", "isPublished", "publication", "publishDate"]
7235
+ "required": [
7236
+ "channel",
7237
+ "collection",
7238
+ "isPublished",
7239
+ "publication",
7240
+ "publishDate"
7241
+ ]
6856
7242
  }
6857
7243
  },
6858
7244
  "Shopify_CollectionRuleColumn": {
@@ -6951,7 +7337,11 @@
6951
7337
  "description": "Lists the store's usage for a usage pricing plan."
6952
7338
  }
6953
7339
  },
6954
- "required": ["id", "plan", "usageRecords"]
7340
+ "required": [
7341
+ "id",
7342
+ "plan",
7343
+ "usageRecords"
7344
+ ]
6955
7345
  }
6956
7346
  },
6957
7347
  "Shopify_AppSubscriptionStatus": {
@@ -6960,7 +7350,15 @@
6960
7350
  "id": "Shopify_AppSubscriptionStatus",
6961
7351
  "description": "The status of the app subscription.",
6962
7352
  "schema": {
6963
- "enum": ["PENDING", "ACCEPTED", "ACTIVE", "DECLINED", "EXPIRED", "FROZEN", "CANCELLED"]
7353
+ "enum": [
7354
+ "PENDING",
7355
+ "ACCEPTED",
7356
+ "ACTIVE",
7357
+ "DECLINED",
7358
+ "EXPIRED",
7359
+ "FROZEN",
7360
+ "CANCELLED"
7361
+ ]
6964
7362
  }
6965
7363
  },
6966
7364
  "Shopify_AppSubscriptionEdge": {
@@ -6982,7 +7380,10 @@
6982
7380
  "description": "The item at the end of AppSubscriptionEdge."
6983
7381
  }
6984
7382
  },
6985
- "required": ["cursor", "node"]
7383
+ "required": [
7384
+ "cursor",
7385
+ "node"
7386
+ ]
6986
7387
  }
6987
7388
  },
6988
7389
  "Shopify_AppCreditEdge": {
@@ -7004,7 +7405,10 @@
7004
7405
  "description": "The item at the end of AppCreditEdge."
7005
7406
  }
7006
7407
  },
7007
- "required": ["cursor", "node"]
7408
+ "required": [
7409
+ "cursor",
7410
+ "node"
7411
+ ]
7008
7412
  }
7009
7413
  },
7010
7414
  "Shopify_AppPurchaseOneTimeEdge": {
@@ -7026,7 +7430,10 @@
7026
7430
  "description": "The item at the end of AppPurchaseOneTimeEdge."
7027
7431
  }
7028
7432
  },
7029
- "required": ["cursor", "node"]
7433
+ "required": [
7434
+ "cursor",
7435
+ "node"
7436
+ ]
7030
7437
  }
7031
7438
  },
7032
7439
  "Shopify_DeliveryProfileItemEdge": {
@@ -7048,7 +7455,10 @@
7048
7455
  "description": "The item at the end of DeliveryProfileItemEdge."
7049
7456
  }
7050
7457
  },
7051
- "required": ["cursor", "node"]
7458
+ "required": [
7459
+ "cursor",
7460
+ "node"
7461
+ ]
7052
7462
  }
7053
7463
  },
7054
7464
  "Shopify_DeliveryCountryAndZone": {
@@ -7070,7 +7480,10 @@
7070
7480
  "description": "The name of the delivery zone."
7071
7481
  }
7072
7482
  },
7073
- "required": ["country", "zone"]
7483
+ "required": [
7484
+ "country",
7485
+ "zone"
7486
+ ]
7074
7487
  }
7075
7488
  },
7076
7489
  "Shopify_DeliveryLocationGroup": {
@@ -7138,7 +7551,10 @@
7138
7551
  "description": "List of active locations that are part of this location group."
7139
7552
  }
7140
7553
  },
7141
- "required": ["id", "locations"]
7554
+ "required": [
7555
+ "id",
7556
+ "locations"
7557
+ ]
7142
7558
  }
7143
7559
  },
7144
7560
  "Shopify_DeliveryLocationGroupZoneConnection": {
@@ -7163,7 +7579,10 @@
7163
7579
  "description": "Information to aid in pagination."
7164
7580
  }
7165
7581
  },
7166
- "required": ["edges", "pageInfo"]
7582
+ "required": [
7583
+ "edges",
7584
+ "pageInfo"
7585
+ ]
7167
7586
  }
7168
7587
  },
7169
7588
  "Shopify_SellingPlanGroupEdge": {
@@ -7185,7 +7604,10 @@
7185
7604
  "description": "The item at the end of SellingPlanGroupEdge."
7186
7605
  }
7187
7606
  },
7188
- "required": ["cursor", "node"]
7607
+ "required": [
7608
+ "cursor",
7609
+ "node"
7610
+ ]
7189
7611
  }
7190
7612
  },
7191
7613
  "Shopify_LocationAddress": {
@@ -7260,7 +7682,9 @@
7260
7682
  "description": "The ZIP code of the location."
7261
7683
  }
7262
7684
  },
7263
- "required": ["formatted"]
7685
+ "required": [
7686
+ "formatted"
7687
+ ]
7264
7688
  }
7265
7689
  },
7266
7690
  "Shopify_LocationSuggestedAddress": {
@@ -7320,7 +7744,9 @@
7320
7744
  "description": "The ZIP code of the suggested address."
7321
7745
  }
7322
7746
  },
7323
- "required": ["formatted"]
7747
+ "required": [
7748
+ "formatted"
7749
+ ]
7324
7750
  }
7325
7751
  },
7326
7752
  "Shopify_CountryHarmonizedSystemCodeEdge": {
@@ -7342,7 +7768,10 @@
7342
7768
  "description": "The item at the end of CountryHarmonizedSystemCodeEdge."
7343
7769
  }
7344
7770
  },
7345
- "required": ["cursor", "node"]
7771
+ "required": [
7772
+ "cursor",
7773
+ "node"
7774
+ ]
7346
7775
  }
7347
7776
  },
7348
7777
  "Shopify_InventoryLevelEdge": {
@@ -7364,7 +7793,10 @@
7364
7793
  "description": "The item at the end of InventoryLevelEdge."
7365
7794
  }
7366
7795
  },
7367
- "required": ["cursor", "node"]
7796
+ "required": [
7797
+ "cursor",
7798
+ "node"
7799
+ ]
7368
7800
  }
7369
7801
  },
7370
7802
  "Shopify_ProductVariantPricePair": {
@@ -7386,7 +7818,9 @@
7386
7818
  "description": "The price of the variant with associated currency."
7387
7819
  }
7388
7820
  },
7389
- "required": ["price"]
7821
+ "required": [
7822
+ "price"
7823
+ ]
7390
7824
  }
7391
7825
  },
7392
7826
  "Shopify_AppPlanV2": {
@@ -7403,7 +7837,9 @@
7403
7837
  "description": "Defines the pricing model for the app subscription."
7404
7838
  }
7405
7839
  },
7406
- "required": ["pricingDetails"]
7840
+ "required": [
7841
+ "pricingDetails"
7842
+ ]
7407
7843
  }
7408
7844
  },
7409
7845
  "Shopify_AppUsageRecordSortKeys": {
@@ -7412,7 +7848,11 @@
7412
7848
  "id": "Shopify_AppUsageRecordSortKeys",
7413
7849
  "description": "The set of valid sort keys for the AppUsageRecord query.",
7414
7850
  "schema": {
7415
- "enum": ["CREATED_AT", "ID", "RELEVANCE"]
7851
+ "enum": [
7852
+ "CREATED_AT",
7853
+ "ID",
7854
+ "RELEVANCE"
7855
+ ]
7416
7856
  }
7417
7857
  },
7418
7858
  "Shopify_AppUsageRecordConnection": {
@@ -7437,7 +7877,10 @@
7437
7877
  "description": "Information to aid in pagination."
7438
7878
  }
7439
7879
  },
7440
- "required": ["edges", "pageInfo"]
7880
+ "required": [
7881
+ "edges",
7882
+ "pageInfo"
7883
+ ]
7441
7884
  }
7442
7885
  },
7443
7886
  "Shopify_AppCredit": {
@@ -7475,7 +7918,13 @@
7475
7918
  "description": "Whether the app credit is a test transaction."
7476
7919
  }
7477
7920
  },
7478
- "required": ["amount", "createdAt", "description", "id", "test"]
7921
+ "required": [
7922
+ "amount",
7923
+ "createdAt",
7924
+ "description",
7925
+ "id",
7926
+ "test"
7927
+ ]
7479
7928
  }
7480
7929
  },
7481
7930
  "Shopify_AppPurchaseOneTime": {
@@ -7518,7 +7967,14 @@
7518
7967
  "description": "Whether the app purchase is a test transaction."
7519
7968
  }
7520
7969
  },
7521
- "required": ["createdAt", "id", "name", "price", "status", "test"]
7970
+ "required": [
7971
+ "createdAt",
7972
+ "id",
7973
+ "name",
7974
+ "price",
7975
+ "status",
7976
+ "test"
7977
+ ]
7522
7978
  }
7523
7979
  },
7524
7980
  "Shopify_DeliveryProfileItem": {
@@ -7571,7 +8027,10 @@
7571
8027
  "description": "The product variants associated with this delivery profile."
7572
8028
  }
7573
8029
  },
7574
- "required": ["product", "variants"]
8030
+ "required": [
8031
+ "product",
8032
+ "variants"
8033
+ ]
7575
8034
  }
7576
8035
  },
7577
8036
  "Shopify_DeliveryCountry": {
@@ -7612,7 +8071,13 @@
7612
8071
  "description": "The name of the country, translated based on the user locale."
7613
8072
  }
7614
8073
  },
7615
- "required": ["code", "id", "name", "provinces", "translatedName"]
8074
+ "required": [
8075
+ "code",
8076
+ "id",
8077
+ "name",
8078
+ "provinces",
8079
+ "translatedName"
8080
+ ]
7616
8081
  }
7617
8082
  },
7618
8083
  "Shopify_LocationSortKeys": {
@@ -7621,7 +8086,11 @@
7621
8086
  "id": "Shopify_LocationSortKeys",
7622
8087
  "description": "The set of valid sort keys for the Location query.",
7623
8088
  "schema": {
7624
- "enum": ["NAME", "ID", "RELEVANCE"]
8089
+ "enum": [
8090
+ "NAME",
8091
+ "ID",
8092
+ "RELEVANCE"
8093
+ ]
7625
8094
  }
7626
8095
  },
7627
8096
  "Shopify_LocationConnection": {
@@ -7646,7 +8115,10 @@
7646
8115
  "description": "Information to aid in pagination."
7647
8116
  }
7648
8117
  },
7649
- "required": ["edges", "pageInfo"]
8118
+ "required": [
8119
+ "edges",
8120
+ "pageInfo"
8121
+ ]
7650
8122
  }
7651
8123
  },
7652
8124
  "Shopify_DeliveryLocationGroupZoneEdge": {
@@ -7668,7 +8140,10 @@
7668
8140
  "description": "The item at the end of DeliveryLocationGroupZoneEdge."
7669
8141
  }
7670
8142
  },
7671
- "required": ["cursor", "node"]
8143
+ "required": [
8144
+ "cursor",
8145
+ "node"
8146
+ ]
7672
8147
  }
7673
8148
  },
7674
8149
  "Shopify_SellingPlanGroup": {
@@ -7696,7 +8171,9 @@
7696
8171
  "description": "The ID of the product."
7697
8172
  }
7698
8173
  },
7699
- "required": ["productId"]
8174
+ "required": [
8175
+ "productId"
8176
+ ]
7700
8177
  },
7701
8178
  "description": "Whether the given product is directly associated to the selling plan group."
7702
8179
  },
@@ -7712,7 +8189,9 @@
7712
8189
  "description": "The ID of the product."
7713
8190
  }
7714
8191
  },
7715
- "required": ["productVariantId"]
8192
+ "required": [
8193
+ "productVariantId"
8194
+ ]
7716
8195
  },
7717
8196
  "description": "Whether the given product variant is directly associated to the selling plan group."
7718
8197
  },
@@ -7728,7 +8207,9 @@
7728
8207
  "description": "The ID of the product."
7729
8208
  }
7730
8209
  },
7731
- "required": ["productId"]
8210
+ "required": [
8211
+ "productId"
8212
+ ]
7732
8213
  },
7733
8214
  "description": "Whether any of the product variants of the given product are associated to the selling plan group."
7734
8215
  },
@@ -7931,7 +8412,10 @@
7931
8412
  "description": "Country specific harmonized system code."
7932
8413
  }
7933
8414
  },
7934
- "required": ["countryCode", "harmonizedSystemCode"]
8415
+ "required": [
8416
+ "countryCode",
8417
+ "harmonizedSystemCode"
8418
+ ]
7935
8419
  }
7936
8420
  },
7937
8421
  "Shopify_AppPricingDetails": {
@@ -7969,7 +8453,10 @@
7969
8453
  "description": "The item at the end of AppUsageRecordEdge."
7970
8454
  }
7971
8455
  },
7972
- "required": ["cursor", "node"]
8456
+ "required": [
8457
+ "cursor",
8458
+ "node"
8459
+ ]
7973
8460
  }
7974
8461
  },
7975
8462
  "Shopify_AppPurchaseStatus": {
@@ -7978,7 +8465,13 @@
7978
8465
  "id": "Shopify_AppPurchaseStatus",
7979
8466
  "description": "The status of the purchase.",
7980
8467
  "schema": {
7981
- "enum": ["ACCEPTED", "ACTIVE", "DECLINED", "EXPIRED", "PENDING"]
8468
+ "enum": [
8469
+ "ACCEPTED",
8470
+ "ACTIVE",
8471
+ "DECLINED",
8472
+ "EXPIRED",
8473
+ "PENDING"
8474
+ ]
7982
8475
  }
7983
8476
  },
7984
8477
  "Shopify_DeliveryCountryCodeOrRestOfWorld": {
@@ -8000,7 +8493,9 @@
8000
8493
  "description": "Indicates if 'Rest of World' is applied."
8001
8494
  }
8002
8495
  },
8003
- "required": ["restOfWorld"]
8496
+ "required": [
8497
+ "restOfWorld"
8498
+ ]
8004
8499
  }
8005
8500
  },
8006
8501
  "Shopify_DeliveryProvince": {
@@ -8033,7 +8528,12 @@
8033
8528
  "description": "The name of the region, translated based on the user locale."
8034
8529
  }
8035
8530
  },
8036
- "required": ["code", "id", "name", "translatedName"]
8531
+ "required": [
8532
+ "code",
8533
+ "id",
8534
+ "name",
8535
+ "translatedName"
8536
+ ]
8037
8537
  }
8038
8538
  },
8039
8539
  "Shopify_LocationEdge": {
@@ -8055,7 +8555,10 @@
8055
8555
  "description": "The item at the end of LocationEdge."
8056
8556
  }
8057
8557
  },
8058
- "required": ["cursor", "node"]
8558
+ "required": [
8559
+ "cursor",
8560
+ "node"
8561
+ ]
8059
8562
  }
8060
8563
  },
8061
8564
  "Shopify_DeliveryLocationGroupZone": {
@@ -8121,7 +8624,11 @@
8121
8624
  "description": "The zone associated to a location group in a delivery profile."
8122
8625
  }
8123
8626
  },
8124
- "required": ["methodDefinitionCounts", "methodDefinitions", "zone"]
8627
+ "required": [
8628
+ "methodDefinitionCounts",
8629
+ "methodDefinitions",
8630
+ "zone"
8631
+ ]
8125
8632
  }
8126
8633
  },
8127
8634
  "Shopify_SellingPlanConnection": {
@@ -8146,7 +8653,10 @@
8146
8653
  "description": "Information to aid in pagination."
8147
8654
  }
8148
8655
  },
8149
- "required": ["edges", "pageInfo"]
8656
+ "required": [
8657
+ "edges",
8658
+ "pageInfo"
8659
+ ]
8150
8660
  }
8151
8661
  },
8152
8662
  "Shopify_AppRecurringPricing": {
@@ -8168,7 +8678,10 @@
8168
8678
  "description": "The amount to be charged to the store every billing interval."
8169
8679
  }
8170
8680
  },
8171
- "required": ["interval", "price"]
8681
+ "required": [
8682
+ "interval",
8683
+ "price"
8684
+ ]
8172
8685
  }
8173
8686
  },
8174
8687
  "Shopify_AppUsagePricing": {
@@ -8200,7 +8713,12 @@
8200
8713
  "description": "The terms and conditions for app usage pricing."
8201
8714
  }
8202
8715
  },
8203
- "required": ["balanceUsed", "cappedAmount", "interval", "terms"]
8716
+ "required": [
8717
+ "balanceUsed",
8718
+ "cappedAmount",
8719
+ "interval",
8720
+ "terms"
8721
+ ]
8204
8722
  }
8205
8723
  },
8206
8724
  "Shopify_AppUsageRecord": {
@@ -8238,7 +8756,13 @@
8238
8756
  "description": "Defines the usage pricing plan the merchant is subscribed to."
8239
8757
  }
8240
8758
  },
8241
- "required": ["createdAt", "description", "id", "price", "subscriptionLineItem"]
8759
+ "required": [
8760
+ "createdAt",
8761
+ "description",
8762
+ "id",
8763
+ "price",
8764
+ "subscriptionLineItem"
8765
+ ]
8242
8766
  }
8243
8767
  },
8244
8768
  "Shopify_DeliveryMethodDefinitionCounts": {
@@ -8260,7 +8784,10 @@
8260
8784
  "description": "The number of merchant-defined method definitions in the current zone."
8261
8785
  }
8262
8786
  },
8263
- "required": ["participantDefinitionsCount", "rateDefinitionsCount"]
8787
+ "required": [
8788
+ "participantDefinitionsCount",
8789
+ "rateDefinitionsCount"
8790
+ ]
8264
8791
  }
8265
8792
  },
8266
8793
  "Shopify_DeliveryMethodDefinitionType": {
@@ -8269,7 +8796,10 @@
8269
8796
  "id": "Shopify_DeliveryMethodDefinitionType",
8270
8797
  "description": "The different types of method definitions to filter by.",
8271
8798
  "schema": {
8272
- "enum": ["MERCHANT", "PARTICIPANT"]
8799
+ "enum": [
8800
+ "MERCHANT",
8801
+ "PARTICIPANT"
8802
+ ]
8273
8803
  }
8274
8804
  },
8275
8805
  "Shopify_MethodDefinitionSortKeys": {
@@ -8278,7 +8808,11 @@
8278
8808
  "id": "Shopify_MethodDefinitionSortKeys",
8279
8809
  "description": "The set of valid sort keys for the MethodDefinition query.",
8280
8810
  "schema": {
8281
- "enum": ["RATE_PROVIDER_TYPE", "ID", "RELEVANCE"]
8811
+ "enum": [
8812
+ "RATE_PROVIDER_TYPE",
8813
+ "ID",
8814
+ "RELEVANCE"
8815
+ ]
8282
8816
  }
8283
8817
  },
8284
8818
  "Shopify_DeliveryMethodDefinitionConnection": {
@@ -8303,7 +8837,10 @@
8303
8837
  "description": "Information to aid in pagination."
8304
8838
  }
8305
8839
  },
8306
- "required": ["edges", "pageInfo"]
8840
+ "required": [
8841
+ "edges",
8842
+ "pageInfo"
8843
+ ]
8307
8844
  }
8308
8845
  },
8309
8846
  "Shopify_DeliveryZone": {
@@ -8334,7 +8871,11 @@
8334
8871
  "description": "The name of the zone."
8335
8872
  }
8336
8873
  },
8337
- "required": ["countries", "id", "name"]
8874
+ "required": [
8875
+ "countries",
8876
+ "id",
8877
+ "name"
8878
+ ]
8338
8879
  }
8339
8880
  },
8340
8881
  "Shopify_SellingPlanEdge": {
@@ -8356,7 +8897,10 @@
8356
8897
  "description": "The item at the end of SellingPlanEdge."
8357
8898
  }
8358
8899
  },
8359
- "required": ["cursor", "node"]
8900
+ "required": [
8901
+ "cursor",
8902
+ "node"
8903
+ ]
8360
8904
  }
8361
8905
  },
8362
8906
  "Shopify_AppPricingInterval": {
@@ -8365,7 +8909,10 @@
8365
8909
  "id": "Shopify_AppPricingInterval",
8366
8910
  "description": "The billing frequency for the app.",
8367
8911
  "schema": {
8368
- "enum": ["ANNUAL", "EVERY_30_DAYS"]
8912
+ "enum": [
8913
+ "ANNUAL",
8914
+ "EVERY_30_DAYS"
8915
+ ]
8369
8916
  }
8370
8917
  },
8371
8918
  "Shopify_DeliveryMethodDefinitionEdge": {
@@ -8387,7 +8934,10 @@
8387
8934
  "description": "The item at the end of DeliveryMethodDefinitionEdge."
8388
8935
  }
8389
8936
  },
8390
- "required": ["cursor", "node"]
8937
+ "required": [
8938
+ "cursor",
8939
+ "node"
8940
+ ]
8391
8941
  }
8392
8942
  },
8393
8943
  "Shopify_SellingPlan": {
@@ -8451,7 +9001,15 @@
8451
9001
  "description": "Selling plan pricing details."
8452
9002
  }
8453
9003
  },
8454
- "required": ["billingPolicy", "createdAt", "deliveryPolicy", "id", "name", "options", "pricingPolicies"]
9004
+ "required": [
9005
+ "billingPolicy",
9006
+ "createdAt",
9007
+ "deliveryPolicy",
9008
+ "id",
9009
+ "name",
9010
+ "options",
9011
+ "pricingPolicies"
9012
+ ]
8455
9013
  }
8456
9014
  },
8457
9015
  "Shopify_DeliveryMethodDefinition": {
@@ -8497,7 +9055,13 @@
8497
9055
  "description": "Provided rate for this method definition, from a rate definition or participant."
8498
9056
  }
8499
9057
  },
8500
- "required": ["active", "id", "methodConditions", "name", "rateProvider"]
9058
+ "required": [
9059
+ "active",
9060
+ "id",
9061
+ "methodConditions",
9062
+ "name",
9063
+ "rateProvider"
9064
+ ]
8501
9065
  }
8502
9066
  },
8503
9067
  "Shopify_SellingPlanBillingPolicy": {
@@ -8572,7 +9136,12 @@
8572
9136
  "description": "The operator to compare the field and criteria."
8573
9137
  }
8574
9138
  },
8575
- "required": ["conditionCriteria", "field", "id", "operator"]
9139
+ "required": [
9140
+ "conditionCriteria",
9141
+ "field",
9142
+ "id",
9143
+ "operator"
9144
+ ]
8576
9145
  }
8577
9146
  },
8578
9147
  "Shopify_DeliveryRateProvider": {
@@ -8633,7 +9202,12 @@
8633
9202
  "description": "Minimum number of billing iterations."
8634
9203
  }
8635
9204
  },
8636
- "required": ["anchors", "createdAt", "interval", "intervalCount"]
9205
+ "required": [
9206
+ "anchors",
9207
+ "createdAt",
9208
+ "interval",
9209
+ "intervalCount"
9210
+ ]
8637
9211
  }
8638
9212
  },
8639
9213
  "Shopify_SellingPlanRecurringDeliveryPolicy": {
@@ -8683,7 +9257,14 @@
8683
9257
  "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`."
8684
9258
  }
8685
9259
  },
8686
- "required": ["anchors", "createdAt", "intent", "interval", "intervalCount", "preAnchorBehavior"]
9260
+ "required": [
9261
+ "anchors",
9262
+ "createdAt",
9263
+ "intent",
9264
+ "interval",
9265
+ "intervalCount",
9266
+ "preAnchorBehavior"
9267
+ ]
8687
9268
  }
8688
9269
  },
8689
9270
  "Shopify_SellingPlanFixedPricingPolicy": {
@@ -8710,7 +9291,11 @@
8710
9291
  "@mapping": "shopify:takeshape-io-shop:SellingPlanFixedPricingPolicy.createdAt"
8711
9292
  }
8712
9293
  },
8713
- "required": ["adjustmentType", "adjustmentValue", "createdAt"]
9294
+ "required": [
9295
+ "adjustmentType",
9296
+ "adjustmentValue",
9297
+ "createdAt"
9298
+ ]
8714
9299
  }
8715
9300
  },
8716
9301
  "Shopify_SellingPlanRecurringPricingPolicy": {
@@ -8742,7 +9327,11 @@
8742
9327
  "@mapping": "shopify:takeshape-io-shop:SellingPlanRecurringPricingPolicy.createdAt"
8743
9328
  }
8744
9329
  },
8745
- "required": ["adjustmentType", "adjustmentValue", "createdAt"]
9330
+ "required": [
9331
+ "adjustmentType",
9332
+ "adjustmentValue",
9333
+ "createdAt"
9334
+ ]
8746
9335
  }
8747
9336
  },
8748
9337
  "Shopify_DeliveryConditionCriteria": {
@@ -8767,7 +9356,10 @@
8767
9356
  "id": "Shopify_DeliveryConditionField",
8768
9357
  "description": "The field type that the condition will be applied to.",
8769
9358
  "schema": {
8770
- "enum": ["TOTAL_WEIGHT", "TOTAL_PRICE"]
9359
+ "enum": [
9360
+ "TOTAL_WEIGHT",
9361
+ "TOTAL_PRICE"
9362
+ ]
8771
9363
  }
8772
9364
  },
8773
9365
  "Shopify_DeliveryConditionOperator": {
@@ -8776,7 +9368,10 @@
8776
9368
  "id": "Shopify_DeliveryConditionOperator",
8777
9369
  "description": "The operator to use to determine if the condition passes.",
8778
9370
  "schema": {
8779
- "enum": ["GREATER_THAN_OR_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO"]
9371
+ "enum": [
9372
+ "GREATER_THAN_OR_EQUAL_TO",
9373
+ "LESS_THAN_OR_EQUAL_TO"
9374
+ ]
8780
9375
  }
8781
9376
  },
8782
9377
  "Shopify_DeliveryParticipant": {
@@ -8822,7 +9417,13 @@
8822
9417
  "description": "The merchant-set percentage-of-rate fee for this participant."
8823
9418
  }
8824
9419
  },
8825
- "required": ["adaptToNewServicesFlag", "carrierService", "id", "participantServices", "percentageOfRateFee"]
9420
+ "required": [
9421
+ "adaptToNewServicesFlag",
9422
+ "carrierService",
9423
+ "id",
9424
+ "participantServices",
9425
+ "percentageOfRateFee"
9426
+ ]
8826
9427
  }
8827
9428
  },
8828
9429
  "Shopify_DeliveryRateDefinition": {
@@ -8845,7 +9446,10 @@
8845
9446
  "description": "The price of this rate."
8846
9447
  }
8847
9448
  },
8848
- "required": ["id", "price"]
9449
+ "required": [
9450
+ "id",
9451
+ "price"
9452
+ ]
8849
9453
  }
8850
9454
  },
8851
9455
  "Shopify_SellingPlanAnchor": {
@@ -8872,7 +9476,10 @@
8872
9476
  "description": "Represents the anchor type, it can be one one of WEEKDAY, MONTHDAY, YEARDAY."
8873
9477
  }
8874
9478
  },
8875
- "required": ["day", "type"]
9479
+ "required": [
9480
+ "day",
9481
+ "type"
9482
+ ]
8876
9483
  }
8877
9484
  },
8878
9485
  "Shopify_SellingPlanInterval": {
@@ -8881,7 +9488,12 @@
8881
9488
  "id": "Shopify_SellingPlanInterval",
8882
9489
  "description": "Represents valid selling plan interval.",
8883
9490
  "schema": {
8884
- "enum": ["DAY", "WEEK", "MONTH", "YEAR"]
9491
+ "enum": [
9492
+ "DAY",
9493
+ "WEEK",
9494
+ "MONTH",
9495
+ "YEAR"
9496
+ ]
8885
9497
  }
8886
9498
  },
8887
9499
  "Shopify_SellingPlanRecurringDeliveryPolicyIntent": {
@@ -8890,7 +9502,9 @@
8890
9502
  "id": "Shopify_SellingPlanRecurringDeliveryPolicyIntent",
8891
9503
  "description": "Possible intentions of a Delivery Policy.",
8892
9504
  "schema": {
8893
- "enum": ["FULFILLMENT_BEGIN"]
9505
+ "enum": [
9506
+ "FULFILLMENT_BEGIN"
9507
+ ]
8894
9508
  }
8895
9509
  },
8896
9510
  "Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior": {
@@ -8899,7 +9513,10 @@
8899
9513
  "id": "Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior",
8900
9514
  "description": "Possible fulfillment or delivery behaviors of the first fulfillment when the orderis placed before the anchor.",
8901
9515
  "schema": {
8902
- "enum": ["ASAP", "NEXT"]
9516
+ "enum": [
9517
+ "ASAP",
9518
+ "NEXT"
9519
+ ]
8903
9520
  }
8904
9521
  },
8905
9522
  "Shopify_SellingPlanPricingPolicyAdjustmentType": {
@@ -8908,7 +9525,11 @@
8908
9525
  "id": "Shopify_SellingPlanPricingPolicyAdjustmentType",
8909
9526
  "description": "Represents a selling plan pricing policy adjustment type.",
8910
9527
  "schema": {
8911
- "enum": ["PERCENTAGE", "FIXED_AMOUNT", "PRICE"]
9528
+ "enum": [
9529
+ "PERCENTAGE",
9530
+ "FIXED_AMOUNT",
9531
+ "PRICE"
9532
+ ]
8912
9533
  }
8913
9534
  },
8914
9535
  "Shopify_SellingPlanPricingPolicyAdjustmentValue": {
@@ -8946,7 +9567,10 @@
8946
9567
  "description": "The weight using the unit system specified with `unit`."
8947
9568
  }
8948
9569
  },
8949
- "required": ["unit", "value"]
9570
+ "required": [
9571
+ "unit",
9572
+ "value"
9573
+ ]
8950
9574
  }
8951
9575
  },
8952
9576
  "Shopify_DeliveryCarrierService": {
@@ -8986,7 +9610,9 @@
8986
9610
  "description": "Use Rest of World as the destination."
8987
9611
  }
8988
9612
  },
8989
- "required": ["restOfWorld"]
9613
+ "required": [
9614
+ "restOfWorld"
9615
+ ]
8990
9616
  },
8991
9617
  "description": "Services offered for given destinations."
8992
9618
  },
@@ -9012,7 +9638,11 @@
9012
9638
  "description": "The name of the service provider."
9013
9639
  }
9014
9640
  },
9015
- "required": ["availableServicesForCountries", "icon", "id"]
9641
+ "required": [
9642
+ "availableServicesForCountries",
9643
+ "icon",
9644
+ "id"
9645
+ ]
9016
9646
  }
9017
9647
  },
9018
9648
  "Shopify_DeliveryParticipantService": {
@@ -9034,7 +9664,10 @@
9034
9664
  "description": "Name of the service."
9035
9665
  }
9036
9666
  },
9037
- "required": ["active", "name"]
9667
+ "required": [
9668
+ "active",
9669
+ "name"
9670
+ ]
9038
9671
  }
9039
9672
  },
9040
9673
  "Shopify_SellingPlanAnchorType": {
@@ -9043,7 +9676,11 @@
9043
9676
  "id": "Shopify_SellingPlanAnchorType",
9044
9677
  "description": "Represents the anchor type.",
9045
9678
  "schema": {
9046
- "enum": ["WEEKDAY", "MONTHDAY", "YEARDAY"]
9679
+ "enum": [
9680
+ "WEEKDAY",
9681
+ "MONTHDAY",
9682
+ "YEARDAY"
9683
+ ]
9047
9684
  }
9048
9685
  },
9049
9686
  "Shopify_SellingPlanPricingPolicyPercentageValue": {
@@ -9060,7 +9697,9 @@
9060
9697
  "description": "The percentage value."
9061
9698
  }
9062
9699
  },
9063
- "required": ["percentage"]
9700
+ "required": [
9701
+ "percentage"
9702
+ ]
9064
9703
  }
9065
9704
  },
9066
9705
  "Shopify_DeliveryAvailableService": {
@@ -9082,7 +9721,10 @@
9082
9721
  "description": "The name of the service."
9083
9722
  }
9084
9723
  },
9085
- "required": ["countries", "name"]
9724
+ "required": [
9725
+ "countries",
9726
+ "name"
9727
+ ]
9086
9728
  }
9087
9729
  },
9088
9730
  "Shopify_DeliveryCountryCodesOrRestOfWorld": {
@@ -9107,9 +9749,12 @@
9107
9749
  "description": "Indicates if 'Rest of World' is applied."
9108
9750
  }
9109
9751
  },
9110
- "required": ["countryCodes", "restOfWorld"]
9752
+ "required": [
9753
+ "countryCodes",
9754
+ "restOfWorld"
9755
+ ]
9111
9756
  }
9112
9757
  }
9113
9758
  },
9114
9759
  "schemaVersion": "3.51.0"
9115
- }
9760
+ }