@takeshape/schema 11.45.5 → 11.47.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (465) hide show
  1. package/dist/cjs/src/agents.js +6 -6
  2. package/dist/cjs/src/api-version.js +1 -1
  3. package/dist/cjs/src/content-schema-transform.js +12 -12
  4. package/dist/cjs/src/create-input-schema.js +1 -1
  5. package/dist/cjs/src/enum.js +1 -1
  6. package/dist/cjs/src/flatten-templates.js +4 -4
  7. package/dist/cjs/src/get-is-leaf.js +1 -1
  8. package/dist/cjs/src/interfaces.js +11 -9
  9. package/dist/cjs/src/layers/layers.js +11 -5
  10. package/dist/cjs/src/layers/refs.js +3 -3
  11. package/dist/cjs/src/layers/type-utils.js +1 -1
  12. package/dist/cjs/src/migration/index.js +3 -1
  13. package/dist/cjs/src/migration/to/v3.0.0.js +20 -8
  14. package/dist/cjs/src/migration/to/v3.1.0.js +6 -4
  15. package/dist/cjs/src/migration/to/v3.10.0.js +1 -1
  16. package/dist/cjs/src/migration/to/v3.13.0.js +1 -1
  17. package/dist/cjs/src/migration/to/v3.17.0.js +1 -1
  18. package/dist/cjs/src/migration/to/v3.18.0.js +4 -4
  19. package/dist/cjs/src/migration/to/v3.18.1.js +1 -1
  20. package/dist/cjs/src/migration/to/v3.18.2.js +1 -1
  21. package/dist/cjs/src/migration/to/v3.20.0.js +5 -2
  22. package/dist/cjs/src/migration/to/v3.22.0.js +1 -1
  23. package/dist/cjs/src/migration/to/v3.31.0.js +2 -2
  24. package/dist/cjs/src/migration/to/v3.32.0.js +3 -1
  25. package/dist/cjs/src/migration/to/v3.34.0.js +6 -9
  26. package/dist/cjs/src/migration/to/v3.36.0.js +1 -1
  27. package/dist/cjs/src/migration/to/v3.39.0.js +8 -8
  28. package/dist/cjs/src/migration/to/v3.40.0.js +1 -1
  29. package/dist/cjs/src/migration/to/v3.46.0.js +1 -1
  30. package/dist/cjs/src/migration/to/v3.51.0.js +12 -0
  31. package/dist/cjs/src/migration/to/v3.9.0.js +3 -3
  32. package/dist/cjs/src/models/project-schema.js +4 -4
  33. package/dist/cjs/src/models/shape.js +2 -2
  34. package/dist/cjs/src/project-schema/index.js +4 -2
  35. package/dist/cjs/src/project-schema/migrate.js +3 -1
  36. package/dist/cjs/src/project-schema/v3.51.0.js +8 -0
  37. package/dist/cjs/src/refs.js +28 -18
  38. package/dist/cjs/src/relationships.js +25 -20
  39. package/dist/cjs/src/runtime-schema.js +16 -9
  40. package/dist/cjs/src/schema-transform.js +3 -3
  41. package/dist/cjs/src/schema-util.js +38 -30
  42. package/dist/cjs/src/schemas/auth-schemas.json +18 -78
  43. package/dist/cjs/src/schemas/index.js +7 -5
  44. package/dist/cjs/src/schemas/project-schema/experimental.json +7 -20
  45. package/dist/cjs/src/schemas/project-schema/latest.json +166 -566
  46. package/dist/cjs/src/schemas/project-schema/meta-schema-v1.0.0.json +3 -17
  47. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.0.0.json +4 -4
  48. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.1.0.json +4 -4
  49. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.2.0.json +5 -5
  50. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.3.0.json +5 -5
  51. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.4.0.json +11 -43
  52. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.5.0.json +7 -7
  53. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.5.1.json +8 -11
  54. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.6.0.json +8 -11
  55. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.7.0.json +11 -9
  56. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.8.0.json +11 -9
  57. package/dist/cjs/src/schemas/project-schema/meta-schema-v3.9.0.json +24 -22
  58. package/dist/cjs/src/schemas/project-schema/v1.0.0.json +3 -3
  59. package/dist/cjs/src/schemas/project-schema/v3.0.0.json +1 -1
  60. package/dist/cjs/src/schemas/project-schema/v3.1.0.json +2 -2
  61. package/dist/cjs/src/schemas/project-schema/v3.10.0.json +32 -30
  62. package/dist/cjs/src/schemas/project-schema/v3.11.0.json +32 -30
  63. package/dist/cjs/src/schemas/project-schema/v3.12.0.json +33 -36
  64. package/dist/cjs/src/schemas/project-schema/v3.12.1.json +33 -36
  65. package/dist/cjs/src/schemas/project-schema/v3.12.2.json +2122 -2125
  66. package/dist/cjs/src/schemas/project-schema/v3.12.3.json +2175 -2178
  67. package/dist/cjs/src/schemas/project-schema/v3.13.0.json +32 -30
  68. package/dist/cjs/src/schemas/project-schema/v3.14.0.json +32 -30
  69. package/dist/cjs/src/schemas/project-schema/v3.15.0.json +40 -38
  70. package/dist/cjs/src/schemas/project-schema/v3.16.0.json +40 -38
  71. package/dist/cjs/src/schemas/project-schema/v3.17.0.json +47 -39
  72. package/dist/cjs/src/schemas/project-schema/v3.17.1.json +2204 -2196
  73. package/dist/cjs/src/schemas/project-schema/v3.18.0.json +40 -38
  74. package/dist/cjs/src/schemas/project-schema/v3.18.1.json +40 -38
  75. package/dist/cjs/src/schemas/project-schema/v3.18.2.json +40 -38
  76. package/dist/cjs/src/schemas/project-schema/v3.19.0.json +40 -38
  77. package/dist/cjs/src/schemas/project-schema/v3.2.0.json +1 -1
  78. package/dist/cjs/src/schemas/project-schema/v3.20.0.json +40 -38
  79. package/dist/cjs/src/schemas/project-schema/v3.21.0.json +41 -39
  80. package/dist/cjs/src/schemas/project-schema/v3.22.0.json +41 -39
  81. package/dist/cjs/src/schemas/project-schema/v3.23.0.json +43 -43
  82. package/dist/cjs/src/schemas/project-schema/v3.24.0.json +105 -458
  83. package/dist/cjs/src/schemas/project-schema/v3.25.0.json +105 -458
  84. package/dist/cjs/src/schemas/project-schema/v3.26.0.json +107 -466
  85. package/dist/cjs/src/schemas/project-schema/v3.27.0.json +107 -466
  86. package/dist/cjs/src/schemas/project-schema/v3.28.0.json +112 -471
  87. package/dist/cjs/src/schemas/project-schema/v3.29.0.json +112 -471
  88. package/dist/cjs/src/schemas/project-schema/v3.3.0.json +1 -1
  89. package/dist/cjs/src/schemas/project-schema/v3.30.0.json +112 -472
  90. package/dist/cjs/src/schemas/project-schema/v3.31.0.json +112 -486
  91. package/dist/cjs/src/schemas/project-schema/v3.32.0.json +113 -488
  92. package/dist/cjs/src/schemas/project-schema/v3.33.0.json +113 -488
  93. package/dist/cjs/src/schemas/project-schema/v3.34.0.json +113 -488
  94. package/dist/cjs/src/schemas/project-schema/v3.35.0.json +114 -491
  95. package/dist/cjs/src/schemas/project-schema/v3.36.0.json +114 -491
  96. package/dist/cjs/src/schemas/project-schema/v3.37.0.json +118 -511
  97. package/dist/cjs/src/schemas/project-schema/v3.38.0.json +118 -511
  98. package/dist/cjs/src/schemas/project-schema/v3.39.0.json +118 -511
  99. package/dist/cjs/src/schemas/project-schema/v3.4.0.json +1 -1
  100. package/dist/cjs/src/schemas/project-schema/v3.40.0.json +118 -512
  101. package/dist/cjs/src/schemas/project-schema/v3.41.0.json +118 -512
  102. package/dist/cjs/src/schemas/project-schema/v3.42.0.json +118 -512
  103. package/dist/cjs/src/schemas/project-schema/v3.43.0.json +118 -512
  104. package/dist/cjs/src/schemas/project-schema/v3.44.0.json +125 -540
  105. package/dist/cjs/src/schemas/project-schema/v3.45.0.json +128 -554
  106. package/dist/cjs/src/schemas/project-schema/v3.46.0.json +129 -560
  107. package/dist/cjs/src/schemas/project-schema/v3.47.0.json +131 -568
  108. package/dist/cjs/src/schemas/project-schema/v3.48.0.json +132 -572
  109. package/dist/cjs/src/schemas/project-schema/v3.49.0.json +132 -558
  110. package/dist/cjs/src/schemas/project-schema/v3.5.0.json +1 -1
  111. package/dist/cjs/src/schemas/project-schema/v3.5.1.json +1 -1
  112. package/dist/cjs/src/schemas/project-schema/v3.50.0.json +165 -565
  113. package/dist/cjs/src/schemas/project-schema/v3.51.0.json +3320 -0
  114. package/dist/cjs/src/schemas/project-schema/v3.6.0.json +1 -1
  115. package/dist/cjs/src/schemas/project-schema/v3.7.0.json +1 -1
  116. package/dist/cjs/src/schemas/project-schema/v3.8.0.json +1 -1
  117. package/dist/cjs/src/schemas/project-schema/v3.9.0.json +1 -1
  118. package/dist/cjs/src/schemas/project-schema/v4.0.0.json +31 -29
  119. package/dist/cjs/src/schemas/project-schema.json +3 -0
  120. package/dist/cjs/src/schemas/user-schema.json +2 -9
  121. package/dist/cjs/src/service-dependencies.js +15 -9
  122. package/dist/cjs/src/services/services.js +12 -11
  123. package/dist/cjs/src/services/util.js +4 -4
  124. package/dist/cjs/src/template-shapes/templates.js +18 -12
  125. package/dist/cjs/src/template-shapes/where.js +23 -14
  126. package/dist/cjs/src/types/utils.js +3 -3
  127. package/dist/cjs/src/unions.js +6 -8
  128. package/dist/cjs/src/util/api-indexing.js +4 -4
  129. package/dist/cjs/src/util/detect-cycles.js +2 -2
  130. package/dist/cjs/src/util/find-shape-at-path.js +1 -1
  131. package/dist/cjs/src/util/form-config.js +0 -1
  132. package/dist/cjs/src/util/get-conflicting-properties.js +1 -1
  133. package/dist/cjs/src/util/merge.js +22 -13
  134. package/dist/cjs/src/util/patch-schema.js +2 -2
  135. package/dist/cjs/src/util/shapes.js +2 -2
  136. package/dist/cjs/src/validate.js +64 -47
  137. package/dist/cjs/src/workflows.js +4 -4
  138. package/dist/esm/src/agents.js +6 -6
  139. package/dist/esm/src/api-version.js +1 -1
  140. package/dist/esm/src/content-schema-transform.js +12 -12
  141. package/dist/esm/src/create-input-schema.js +1 -1
  142. package/dist/esm/src/enum.js +1 -1
  143. package/dist/esm/src/flatten-templates.js +4 -4
  144. package/dist/esm/src/get-is-leaf.js +1 -1
  145. package/dist/esm/src/interfaces.js +12 -10
  146. package/dist/esm/src/layers/layers.js +12 -6
  147. package/dist/esm/src/layers/refs.js +3 -3
  148. package/dist/esm/src/layers/type-utils.js +1 -1
  149. package/dist/esm/src/migration/index.js +3 -1
  150. package/dist/esm/src/migration/to/v3.0.0.js +20 -8
  151. package/dist/esm/src/migration/to/v3.1.0.js +6 -4
  152. package/dist/esm/src/migration/to/v3.10.0.js +1 -1
  153. package/dist/esm/src/migration/to/v3.13.0.js +1 -1
  154. package/dist/esm/src/migration/to/v3.17.0.js +1 -1
  155. package/dist/esm/src/migration/to/v3.18.0.js +4 -4
  156. package/dist/esm/src/migration/to/v3.18.1.js +1 -1
  157. package/dist/esm/src/migration/to/v3.18.2.js +1 -1
  158. package/dist/esm/src/migration/to/v3.20.0.js +5 -2
  159. package/dist/esm/src/migration/to/v3.22.0.js +1 -1
  160. package/dist/esm/src/migration/to/v3.31.0.js +2 -2
  161. package/dist/esm/src/migration/to/v3.32.0.js +3 -1
  162. package/dist/esm/src/migration/to/v3.34.0.js +6 -9
  163. package/dist/esm/src/migration/to/v3.36.0.js +1 -1
  164. package/dist/esm/src/migration/to/v3.39.0.js +8 -8
  165. package/dist/esm/src/migration/to/v3.40.0.js +1 -1
  166. package/dist/esm/src/migration/to/v3.46.0.js +1 -1
  167. package/dist/esm/src/migration/to/v3.51.0.js +10 -0
  168. package/dist/esm/src/migration/to/v3.9.0.js +3 -3
  169. package/dist/esm/src/mocks.js +1 -1
  170. package/dist/esm/src/models/project-schema.js +4 -4
  171. package/dist/esm/src/models/shape.js +2 -2
  172. package/dist/esm/src/project-schema/index.js +3 -1
  173. package/dist/esm/src/project-schema/migrate.js +4 -2
  174. package/dist/esm/src/project-schema/v3.51.0.js +7 -0
  175. package/dist/esm/src/refs.js +29 -19
  176. package/dist/esm/src/relationships.js +26 -21
  177. package/dist/esm/src/runtime-schema.js +16 -9
  178. package/dist/esm/src/schema-transform.js +3 -3
  179. package/dist/esm/src/schema-util.js +40 -32
  180. package/dist/esm/src/schemas/auth-schemas.json +18 -78
  181. package/dist/esm/src/schemas/index.js +4 -2
  182. package/dist/esm/src/schemas/project-schema/experimental.json +7 -20
  183. package/dist/esm/src/schemas/project-schema/latest.json +166 -566
  184. package/dist/esm/src/schemas/project-schema/meta-schema-v1.0.0.json +3 -17
  185. package/dist/esm/src/schemas/project-schema/meta-schema-v3.0.0.json +4 -4
  186. package/dist/esm/src/schemas/project-schema/meta-schema-v3.1.0.json +4 -4
  187. package/dist/esm/src/schemas/project-schema/meta-schema-v3.2.0.json +5 -5
  188. package/dist/esm/src/schemas/project-schema/meta-schema-v3.3.0.json +5 -5
  189. package/dist/esm/src/schemas/project-schema/meta-schema-v3.4.0.json +11 -43
  190. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.0.json +7 -7
  191. package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.1.json +8 -11
  192. package/dist/esm/src/schemas/project-schema/meta-schema-v3.6.0.json +8 -11
  193. package/dist/esm/src/schemas/project-schema/meta-schema-v3.7.0.json +11 -9
  194. package/dist/esm/src/schemas/project-schema/meta-schema-v3.8.0.json +11 -9
  195. package/dist/esm/src/schemas/project-schema/meta-schema-v3.9.0.json +24 -22
  196. package/dist/esm/src/schemas/project-schema/v1.0.0.json +3 -3
  197. package/dist/esm/src/schemas/project-schema/v3.0.0.json +1 -1
  198. package/dist/esm/src/schemas/project-schema/v3.1.0.json +2 -2
  199. package/dist/esm/src/schemas/project-schema/v3.10.0.json +32 -30
  200. package/dist/esm/src/schemas/project-schema/v3.11.0.json +32 -30
  201. package/dist/esm/src/schemas/project-schema/v3.12.0.json +33 -36
  202. package/dist/esm/src/schemas/project-schema/v3.12.1.json +33 -36
  203. package/dist/esm/src/schemas/project-schema/v3.12.2.json +2122 -2125
  204. package/dist/esm/src/schemas/project-schema/v3.12.3.json +2175 -2178
  205. package/dist/esm/src/schemas/project-schema/v3.13.0.json +32 -30
  206. package/dist/esm/src/schemas/project-schema/v3.14.0.json +32 -30
  207. package/dist/esm/src/schemas/project-schema/v3.15.0.json +40 -38
  208. package/dist/esm/src/schemas/project-schema/v3.16.0.json +40 -38
  209. package/dist/esm/src/schemas/project-schema/v3.17.0.json +47 -39
  210. package/dist/esm/src/schemas/project-schema/v3.17.1.json +2204 -2196
  211. package/dist/esm/src/schemas/project-schema/v3.18.0.json +40 -38
  212. package/dist/esm/src/schemas/project-schema/v3.18.1.json +40 -38
  213. package/dist/esm/src/schemas/project-schema/v3.18.2.json +40 -38
  214. package/dist/esm/src/schemas/project-schema/v3.19.0.json +40 -38
  215. package/dist/esm/src/schemas/project-schema/v3.2.0.json +1 -1
  216. package/dist/esm/src/schemas/project-schema/v3.20.0.json +40 -38
  217. package/dist/esm/src/schemas/project-schema/v3.21.0.json +41 -39
  218. package/dist/esm/src/schemas/project-schema/v3.22.0.json +41 -39
  219. package/dist/esm/src/schemas/project-schema/v3.23.0.json +43 -43
  220. package/dist/esm/src/schemas/project-schema/v3.24.0.json +105 -458
  221. package/dist/esm/src/schemas/project-schema/v3.25.0.json +105 -458
  222. package/dist/esm/src/schemas/project-schema/v3.26.0.json +107 -466
  223. package/dist/esm/src/schemas/project-schema/v3.27.0.json +107 -466
  224. package/dist/esm/src/schemas/project-schema/v3.28.0.json +112 -471
  225. package/dist/esm/src/schemas/project-schema/v3.29.0.json +112 -471
  226. package/dist/esm/src/schemas/project-schema/v3.3.0.json +1 -1
  227. package/dist/esm/src/schemas/project-schema/v3.30.0.json +112 -472
  228. package/dist/esm/src/schemas/project-schema/v3.31.0.json +112 -486
  229. package/dist/esm/src/schemas/project-schema/v3.32.0.json +113 -488
  230. package/dist/esm/src/schemas/project-schema/v3.33.0.json +113 -488
  231. package/dist/esm/src/schemas/project-schema/v3.34.0.json +113 -488
  232. package/dist/esm/src/schemas/project-schema/v3.35.0.json +114 -491
  233. package/dist/esm/src/schemas/project-schema/v3.36.0.json +114 -491
  234. package/dist/esm/src/schemas/project-schema/v3.37.0.json +118 -511
  235. package/dist/esm/src/schemas/project-schema/v3.38.0.json +118 -511
  236. package/dist/esm/src/schemas/project-schema/v3.39.0.json +118 -511
  237. package/dist/esm/src/schemas/project-schema/v3.4.0.json +1 -1
  238. package/dist/esm/src/schemas/project-schema/v3.40.0.json +118 -512
  239. package/dist/esm/src/schemas/project-schema/v3.41.0.json +118 -512
  240. package/dist/esm/src/schemas/project-schema/v3.42.0.json +118 -512
  241. package/dist/esm/src/schemas/project-schema/v3.43.0.json +118 -512
  242. package/dist/esm/src/schemas/project-schema/v3.44.0.json +125 -540
  243. package/dist/esm/src/schemas/project-schema/v3.45.0.json +128 -554
  244. package/dist/esm/src/schemas/project-schema/v3.46.0.json +129 -560
  245. package/dist/esm/src/schemas/project-schema/v3.47.0.json +131 -568
  246. package/dist/esm/src/schemas/project-schema/v3.48.0.json +132 -572
  247. package/dist/esm/src/schemas/project-schema/v3.49.0.json +132 -558
  248. package/dist/esm/src/schemas/project-schema/v3.5.0.json +1 -1
  249. package/dist/esm/src/schemas/project-schema/v3.5.1.json +1 -1
  250. package/dist/esm/src/schemas/project-schema/v3.50.0.json +165 -565
  251. package/dist/esm/src/schemas/project-schema/v3.51.0.json +3320 -0
  252. package/dist/esm/src/schemas/project-schema/v3.6.0.json +1 -1
  253. package/dist/esm/src/schemas/project-schema/v3.7.0.json +1 -1
  254. package/dist/esm/src/schemas/project-schema/v3.8.0.json +1 -1
  255. package/dist/esm/src/schemas/project-schema/v3.9.0.json +1 -1
  256. package/dist/esm/src/schemas/project-schema/v4.0.0.json +31 -29
  257. package/dist/esm/src/schemas/project-schema.json +3 -0
  258. package/dist/esm/src/schemas/user-schema.json +2 -9
  259. package/dist/esm/src/service-dependencies.js +17 -11
  260. package/dist/esm/src/services/services.js +12 -11
  261. package/dist/esm/src/services/util.js +4 -4
  262. package/dist/esm/src/template-shapes/templates.js +18 -12
  263. package/dist/esm/src/template-shapes/where.js +24 -15
  264. package/dist/esm/src/types/utils.js +3 -3
  265. package/dist/esm/src/unions.js +6 -8
  266. package/dist/esm/src/util/api-indexing.js +4 -4
  267. package/dist/esm/src/util/detect-cycles.js +2 -2
  268. package/dist/esm/src/util/find-shape-at-path.js +1 -1
  269. package/dist/esm/src/util/form-config.js +0 -1
  270. package/dist/esm/src/util/get-conflicting-properties.js +1 -1
  271. package/dist/esm/src/util/merge.js +23 -14
  272. package/dist/esm/src/util/patch-schema.js +2 -2
  273. package/dist/esm/src/util/shapes.js +2 -2
  274. package/dist/esm/src/validate.js +64 -47
  275. package/dist/esm/src/workflows.js +4 -4
  276. package/dist/types/src/agents.d.ts +1 -1
  277. package/dist/types/src/builtin-schema.d.ts +2 -2
  278. package/dist/types/src/content-schema-transform.d.ts +1 -1
  279. package/dist/types/src/create-input-schema.d.ts +1 -1
  280. package/dist/types/src/enum.d.ts +1 -1
  281. package/dist/types/src/flatten-templates.d.ts +1 -1
  282. package/dist/types/src/layers/layers.d.ts +1 -1
  283. package/dist/types/src/layers/refs.d.ts +1 -1
  284. package/dist/types/src/layers/type-utils.d.ts +1 -1
  285. package/dist/types/src/layers/visitor.d.ts +2 -2
  286. package/dist/types/src/migration/index.d.ts +1 -0
  287. package/dist/types/src/migration/to/v3.17.1.d.ts +1 -1
  288. package/dist/types/src/migration/to/v3.19.0.d.ts +1 -1
  289. package/dist/types/src/migration/to/v3.21.0.d.ts +1 -1
  290. package/dist/types/src/migration/to/v3.22.0.d.ts +1 -1
  291. package/dist/types/src/migration/to/v3.23.0.d.ts +1 -1
  292. package/dist/types/src/migration/to/v3.24.0.d.ts +1 -1
  293. package/dist/types/src/migration/to/v3.25.0.d.ts +1 -1
  294. package/dist/types/src/migration/to/v3.26.0.d.ts +1 -1
  295. package/dist/types/src/migration/to/v3.27.0.d.ts +1 -1
  296. package/dist/types/src/migration/to/v3.28.0.d.ts +1 -1
  297. package/dist/types/src/migration/to/v3.29.0.d.ts +1 -1
  298. package/dist/types/src/migration/to/v3.30.0.d.ts +1 -1
  299. package/dist/types/src/migration/to/v3.31.0.d.ts +1 -1
  300. package/dist/types/src/migration/to/v3.32.0.d.ts +1 -1
  301. package/dist/types/src/migration/to/v3.33.0.d.ts +1 -1
  302. package/dist/types/src/migration/to/v3.34.0.d.ts +1 -1
  303. package/dist/types/src/migration/to/v3.35.0.d.ts +1 -1
  304. package/dist/types/src/migration/to/v3.36.0.d.ts +1 -1
  305. package/dist/types/src/migration/to/v3.37.0.d.ts +1 -1
  306. package/dist/types/src/migration/to/v3.38.0.d.ts +1 -1
  307. package/dist/types/src/migration/to/v3.39.0.d.ts +1 -1
  308. package/dist/types/src/migration/to/v3.40.0.d.ts +1 -1
  309. package/dist/types/src/migration/to/v3.41.0.d.ts +1 -1
  310. package/dist/types/src/migration/to/v3.42.0.d.ts +1 -1
  311. package/dist/types/src/migration/to/v3.43.0.d.ts +1 -1
  312. package/dist/types/src/migration/to/v3.44.0.d.ts +1 -1
  313. package/dist/types/src/migration/to/v3.45.0.d.ts +1 -1
  314. package/dist/types/src/migration/to/v3.46.0.d.ts +1 -1
  315. package/dist/types/src/migration/to/v3.47.0.d.ts +1 -1
  316. package/dist/types/src/migration/to/v3.48.0.d.ts +1 -1
  317. package/dist/types/src/migration/to/v3.49.0.d.ts +1 -1
  318. package/dist/types/src/migration/to/v3.50.0.d.ts +1 -1
  319. package/dist/types/src/migration/to/v3.51.0.d.ts +4 -0
  320. package/dist/types/src/migration/types.d.ts +1 -1
  321. package/dist/types/src/mocks.d.ts +1 -1
  322. package/dist/types/src/models/project-schema.d.ts +3 -3
  323. package/dist/types/src/models/query.d.ts +2 -2
  324. package/dist/types/src/models/service.d.ts +2 -2
  325. package/dist/types/src/models/shape.d.ts +2 -2
  326. package/dist/types/src/project-schema/index.d.ts +4 -1
  327. package/dist/types/src/project-schema/latest.d.ts +28 -10
  328. package/dist/types/src/project-schema/v3.50.0.d.ts +27 -9
  329. package/dist/types/src/project-schema/v3.51.0.d.ts +2189 -0
  330. package/dist/types/src/refs.d.ts +1 -1
  331. package/dist/types/src/relationships.d.ts +2 -2
  332. package/dist/types/src/runtime-schema.d.ts +1 -1
  333. package/dist/types/src/schema-transform.d.ts +1 -1
  334. package/dist/types/src/schema-util.d.ts +2 -2
  335. package/dist/types/src/schemas/index.d.ts +2 -2
  336. package/dist/types/src/service-dependencies.d.ts +2 -2
  337. package/dist/types/src/services/services.d.ts +3 -3
  338. package/dist/types/src/services/util.d.ts +2 -2
  339. package/dist/types/src/template-shapes/index.d.ts +2 -2
  340. package/dist/types/src/template-shapes/names.d.ts +1 -1
  341. package/dist/types/src/template-shapes/types.d.ts +2 -2
  342. package/dist/types/src/template-shapes/where.d.ts +1 -1
  343. package/dist/types/src/types/transforms.d.ts +1 -1
  344. package/dist/types/src/types/types.d.ts +4 -4
  345. package/dist/types/src/types/utils.d.ts +2 -2
  346. package/dist/types/src/unions.d.ts +2 -2
  347. package/dist/types/src/util/ai-tools.d.ts +1 -1
  348. package/dist/types/src/util/api-indexing.d.ts +1 -1
  349. package/dist/types/src/util/detect-cycles.d.ts +1 -1
  350. package/dist/types/src/util/find-shape-at-path.d.ts +1 -1
  351. package/dist/types/src/util/form-config.d.ts +1 -1
  352. package/dist/types/src/util/get-conflicting-properties.d.ts +1 -1
  353. package/dist/types/src/util/get-return-shape.d.ts +1 -1
  354. package/dist/types/src/util/has-arg.d.ts +2 -2
  355. package/dist/types/src/util/merge.d.ts +1 -1
  356. package/dist/types/src/util/patch-schema.d.ts +2 -2
  357. package/dist/types/src/util/shapes.d.ts +1 -1
  358. package/dist/types/src/validate.d.ts +4 -4
  359. package/dist/types/src/workflows.d.ts +1 -1
  360. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  361. package/examples/latest/agent-schema.json +5 -13
  362. package/examples/latest/all-fields-shapes-inline.json +19 -53
  363. package/examples/latest/all-fields-shapes.json +27 -77
  364. package/examples/latest/betzino.json +903 -3140
  365. package/examples/latest/blog-schema.json +9 -29
  366. package/examples/latest/brewery-schema.json +8 -26
  367. package/examples/latest/clear-cache-schema.json +4 -8
  368. package/examples/latest/complex-project-schema.json +99 -360
  369. package/examples/latest/complex-schema.json +487 -1754
  370. package/examples/latest/edit-schema.json +5 -12
  371. package/examples/latest/fabric-ecommerce.json +188 -839
  372. package/examples/latest/frank-and-fred-schema.json +489 -1756
  373. package/examples/latest/klirr-schema.json +683 -2412
  374. package/examples/latest/layers/rick-and-morty-layer.json +12 -33
  375. package/examples/latest/layers/shopify-layer-2023-01.json +2207 -8638
  376. package/examples/latest/layers/shopify-storefront-2023-04.json +403 -1713
  377. package/examples/latest/layers/wordpress-2024-01.json +689 -2744
  378. package/examples/latest/massive-schema.json +132 -585
  379. package/examples/latest/mill-components-schema.json +30 -126
  380. package/examples/latest/nested-shape-arrays.json +8 -20
  381. package/examples/latest/one-earth.json +237 -1114
  382. package/examples/latest/pet-oneof-array.json +8 -23
  383. package/examples/latest/post-schema.json +7 -21
  384. package/examples/latest/pruned-shopify-product-schema.json +186 -831
  385. package/examples/latest/rag-example.json +6 -16
  386. package/examples/latest/real-world-schema.json +15 -57
  387. package/examples/latest/recursive-repeater-schema.json +5 -12
  388. package/examples/latest/recursive-schema.json +5 -12
  389. package/examples/latest/rick-and-morty-ast.json +46 -175
  390. package/examples/latest/rick-and-morty-graphql.json +26 -101
  391. package/examples/latest/rick-and-morty-rest.json +4 -8
  392. package/examples/latest/rick-and-morty-with-indexing.json +6 -14
  393. package/examples/latest/schema-where-filter.json +12 -41
  394. package/examples/latest/schema-with-repeater-draftjs.json +4 -9
  395. package/examples/latest/schema-with-rick-and-morty.json +3 -5
  396. package/examples/latest/shape-books-v3_2_0.json +18 -72
  397. package/examples/latest/shape-books.json +18 -72
  398. package/examples/latest/shape-editor-schema-edited.json +24 -70
  399. package/examples/latest/shape-editor-schema-initial.json +11 -29
  400. package/examples/latest/shapedb-crud-every-prop-type.json +9 -23
  401. package/examples/latest/shopify-lookbook.json +6 -20
  402. package/examples/latest/shopify-product-2022-07.json +727 -3218
  403. package/examples/latest/shopify-product-2023-04.json +1013 -4497
  404. package/examples/latest/shopify-store-with-widget.json +214 -943
  405. package/examples/latest/stripe-product-runtime-schema.json +82 -278
  406. package/examples/latest/stripe-starter-resolved.json +477 -1954
  407. package/examples/latest/user-schema-no-required.json +4 -14
  408. package/examples/latest/user-schema-with-defaults.json +6 -28
  409. package/examples/latest/valvoline-ai-demo.json +18 -70
  410. package/examples/latest/vector-search-schema.json +9 -25
  411. package/examples/source/agent-schema.json +29 -16
  412. package/examples/source/all-fields-shapes-inline.json +21 -30
  413. package/examples/source/all-fields-shapes.json +26 -76
  414. package/examples/source/betzino.json +1501 -4960
  415. package/examples/source/blog-schema.json +1 -1
  416. package/examples/source/brewery-schema.json +1 -1
  417. package/examples/source/clear-cache-schema.json +4 -4
  418. package/examples/source/complex-project-schema.json +196 -688
  419. package/examples/source/edit-schema.json +3 -3
  420. package/examples/source/fabric-ecommerce.json +186 -837
  421. package/examples/source/frank-and-fred-schema.json +1136 -3929
  422. package/examples/source/layers/rick-and-morty-layer.json +10 -31
  423. package/examples/source/layers/shopify-layer-2023-01.json +2205 -8636
  424. package/examples/source/layers/shopify-storefront-2023-04.json +401 -1711
  425. package/examples/source/layers/wordpress-2024-01.json +689 -2743
  426. package/examples/source/massive-schema.json +386 -1455
  427. package/examples/source/nested-shape-arrays.json +12 -12
  428. package/examples/source/pet-oneof-array.json +31 -29
  429. package/examples/source/post-schema.json +1 -1
  430. package/examples/source/pruned-shopify-product-schema.json +184 -829
  431. package/examples/source/rag-example.json +5 -15
  432. package/examples/source/real-world-schema.json +32 -119
  433. package/examples/source/recursive-repeater-schema.json +3 -8
  434. package/examples/source/recursive-schema.json +1 -1
  435. package/examples/source/rick-and-morty-ast.json +66 -251
  436. package/examples/source/rick-and-morty-graphql.json +41 -162
  437. package/examples/source/rick-and-morty-rest.json +24 -6
  438. package/examples/source/rick-and-morty-with-indexing.json +25 -25
  439. package/examples/source/schema-where-filter.json +29 -50
  440. package/examples/source/schema-with-repeater-draftjs.json +9 -31
  441. package/examples/source/schema-with-rick-and-morty.json +4 -4
  442. package/examples/source/shape-books.json +49 -181
  443. package/examples/source/shape-editor-schema-edited.json +22 -68
  444. package/examples/source/shape-editor-schema-initial.json +9 -27
  445. package/examples/source/shapedb-crud-every-prop-type.json +20 -29
  446. package/examples/source/shopify-product-2022-07.json +736 -3261
  447. package/examples/source/shopify-product-2023-04.json +1022 -4540
  448. package/examples/source/shopify-store-with-widget.json +212 -941
  449. package/examples/source/stripe-product-runtime-schema.json +91 -321
  450. package/examples/source/stripe-starter-resolved.json +475 -1952
  451. package/examples/source/user-schema-with-defaults.json +1 -9
  452. package/examples/source/valvoline-ai-demo.json +175 -219
  453. package/examples/source/vector-search-schema.json +37 -38
  454. package/examples/v4_0_0/rick-and-morty-notes/flattened-schema.json +15 -49
  455. package/examples/v4_0_0/rick-and-morty-notes/layers/character-notes.json +8 -8
  456. package/examples/v4_0_0/rick-and-morty-notes/layers/takeshape-builtins.json +1 -3
  457. package/examples/v4_0_0/rick-and-morty-notes/layers/takeshape-static-sites.json +19 -79
  458. package/examples/v4_0_0/rick-and-morty-notes/schema.json +8 -5
  459. package/examples/v4_0_0/shopify-lookbook/flattened-schema.json +190 -851
  460. package/examples/v4_0_0/shopify-lookbook/layers/andrews-store.json +1103 -4431
  461. package/examples/v4_0_0/shopify-lookbook/layers/lookbook.json +64 -56
  462. package/examples/v4_0_0/shopify-lookbook/layers/takeshape-assets.json +1 -4
  463. package/examples/v4_0_0/shopify-lookbook/layers/takeshape-builtins.json +1 -3
  464. package/examples/v4_0_0/shopify-lookbook/schema.json +3 -10
  465. package/package.json +12 -9
@@ -24,11 +24,7 @@
24
24
  "description": "Whether the version is actively supported by Shopify. Supported API versions are guaranteed to be stable. Unsupported API versions include unstable, release candidate, and end-of-life versions that are marked as unsupported. For more information, refer to [Versioning](https://shopify.dev/api/usage/versioning)."
25
25
  }
26
26
  },
27
- "required": [
28
- "displayName",
29
- "handle",
30
- "supported"
31
- ]
27
+ "required": ["displayName", "handle", "supported"]
32
28
  }
33
29
  },
34
30
  "ShopifyStorefront_ApplePayWalletContentInput": {
@@ -70,13 +66,7 @@
70
66
  "description": "The version for the Apple Pay wallet."
71
67
  }
72
68
  },
73
- "required": [
74
- "billingAddress",
75
- "data",
76
- "header",
77
- "signature",
78
- "version"
79
- ]
69
+ "required": ["billingAddress", "data", "header", "signature", "version"]
80
70
  }
81
71
  },
82
72
  "ShopifyStorefront_ApplePayWalletHeaderInput": {
@@ -108,11 +98,7 @@
108
98
  "description": "The transaction ID for the Apple Pay wallet."
109
99
  }
110
100
  },
111
- "required": [
112
- "ephemeralPublicKey",
113
- "publicKeyHash",
114
- "transactionId"
115
- ]
101
+ "required": ["ephemeralPublicKey", "publicKeyHash", "transactionId"]
116
102
  }
117
103
  },
118
104
  "ShopifyStorefront_AppliedGiftCard": {
@@ -172,9 +158,7 @@
172
158
  "presentmentAmountUsed"
173
159
  ]
174
160
  },
175
- "interfaces": [
176
- "ShopifyStorefront_Node"
177
- ]
161
+ "interfaces": ["ShopifyStorefront_Node"]
178
162
  },
179
163
  "ShopifyStorefront_Article": {
180
164
  "name": "ShopifyStorefront_Article",
@@ -300,10 +284,7 @@
300
284
  "description": "The identifier for the metafield."
301
285
  }
302
286
  },
303
- "required": [
304
- "namespace",
305
- "key"
306
- ]
287
+ "required": ["namespace", "key"]
307
288
  },
308
289
  "description": "Returns a metafield found by namespace and key."
309
290
  },
@@ -324,9 +305,7 @@
324
305
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
325
306
  }
326
307
  },
327
- "required": [
328
- "identifiers"
329
- ]
308
+ "required": ["identifiers"]
330
309
  },
331
310
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
332
311
  },
@@ -413,12 +392,7 @@
413
392
  "description": "The author's full name."
414
393
  }
415
394
  },
416
- "required": [
417
- "email",
418
- "firstName",
419
- "lastName",
420
- "name"
421
- ]
395
+ "required": ["email", "firstName", "lastName", "name"]
422
396
  }
423
397
  },
424
398
  "ShopifyStorefront_ArticleConnection": {
@@ -451,11 +425,7 @@
451
425
  "description": "Information to aid in pagination."
452
426
  }
453
427
  },
454
- "required": [
455
- "edges",
456
- "nodes",
457
- "pageInfo"
458
- ]
428
+ "required": ["edges", "nodes", "pageInfo"]
459
429
  }
460
430
  },
461
431
  "ShopifyStorefront_ArticleEdge": {
@@ -477,10 +447,7 @@
477
447
  "description": "The item at the end of ArticleEdge."
478
448
  }
479
449
  },
480
- "required": [
481
- "cursor",
482
- "node"
483
- ]
450
+ "required": ["cursor", "node"]
484
451
  }
485
452
  },
486
453
  "ShopifyStorefront_ArticleSortKeys": {
@@ -489,15 +456,7 @@
489
456
  "id": "ShopifyStorefront_ArticleSortKeys",
490
457
  "description": "The set of valid sort keys for the Article query.",
491
458
  "schema": {
492
- "enum": [
493
- "TITLE",
494
- "BLOG_TITLE",
495
- "AUTHOR",
496
- "UPDATED_AT",
497
- "PUBLISHED_AT",
498
- "ID",
499
- "RELEVANCE"
500
- ]
459
+ "enum": ["TITLE", "BLOG_TITLE", "AUTHOR", "UPDATED_AT", "PUBLISHED_AT", "ID", "RELEVANCE"]
501
460
  }
502
461
  },
503
462
  "ShopifyStorefront_Attribute": {
@@ -519,9 +478,7 @@
519
478
  "description": "Value of the attribute."
520
479
  }
521
480
  },
522
- "required": [
523
- "key"
524
- ]
481
+ "required": ["key"]
525
482
  }
526
483
  },
527
484
  "ShopifyStorefront_AttributeInput": {
@@ -543,10 +500,7 @@
543
500
  "description": "Value of the attribute."
544
501
  }
545
502
  },
546
- "required": [
547
- "key",
548
- "value"
549
- ]
503
+ "required": ["key", "value"]
550
504
  }
551
505
  },
552
506
  "ShopifyStorefront_AutomaticDiscountApplication": {
@@ -583,17 +537,9 @@
583
537
  "description": "The value of the discount application."
584
538
  }
585
539
  },
586
- "required": [
587
- "allocationMethod",
588
- "targetSelection",
589
- "targetType",
590
- "title",
591
- "value"
592
- ]
540
+ "required": ["allocationMethod", "targetSelection", "targetType", "title", "value"]
593
541
  },
594
- "interfaces": [
595
- "ShopifyStorefront_DiscountApplication"
596
- ]
542
+ "interfaces": ["ShopifyStorefront_DiscountApplication"]
597
543
  },
598
544
  "ShopifyStorefront_AvailableShippingRates": {
599
545
  "name": "ShopifyStorefront_AvailableShippingRates",
@@ -617,9 +563,7 @@
617
563
  "description": "The fetched shipping rates. `null` until the `ready` field is `true`."
618
564
  }
619
565
  },
620
- "required": [
621
- "ready"
622
- ]
566
+ "required": ["ready"]
623
567
  }
624
568
  },
625
569
  "ShopifyStorefront_BaseCartLine": {
@@ -641,9 +585,7 @@
641
585
  "description": "The key of the attribute."
642
586
  }
643
587
  },
644
- "required": [
645
- "key"
646
- ]
588
+ "required": ["key"]
647
589
  },
648
590
  "description": "An attribute associated with the cart line."
649
591
  },
@@ -696,20 +638,10 @@
696
638
  "description": "The selling plan associated with the cart line and the effect that each selling plan has on variants when they're purchased."
697
639
  }
698
640
  },
699
- "required": [
700
- "attributes",
701
- "cost",
702
- "discountAllocations",
703
- "estimatedCost",
704
- "id",
705
- "merchandise",
706
- "quantity"
707
- ]
641
+ "required": ["attributes", "cost", "discountAllocations", "estimatedCost", "id", "merchandise", "quantity"]
708
642
  },
709
643
  "type": "interface",
710
- "interfaces": [
711
- "ShopifyStorefront_Node"
712
- ]
644
+ "interfaces": ["ShopifyStorefront_Node"]
713
645
  },
714
646
  "ShopifyStorefront_BaseCartLineConnection": {
715
647
  "name": "ShopifyStorefront_BaseCartLineConnection",
@@ -741,11 +673,7 @@
741
673
  "description": "Information to aid in pagination."
742
674
  }
743
675
  },
744
- "required": [
745
- "edges",
746
- "nodes",
747
- "pageInfo"
748
- ]
676
+ "required": ["edges", "nodes", "pageInfo"]
749
677
  }
750
678
  },
751
679
  "ShopifyStorefront_BaseCartLineEdge": {
@@ -767,10 +695,7 @@
767
695
  "description": "The item at the end of BaseCartLineEdge."
768
696
  }
769
697
  },
770
- "required": [
771
- "cursor",
772
- "node"
773
- ]
698
+ "required": ["cursor", "node"]
774
699
  }
775
700
  },
776
701
  "ShopifyStorefront_Blog": {
@@ -792,9 +717,7 @@
792
717
  "description": "The handle of the article."
793
718
  }
794
719
  },
795
- "required": [
796
- "handle"
797
- ]
720
+ "required": ["handle"]
798
721
  },
799
722
  "description": "Find an article by its handle."
800
723
  },
@@ -872,10 +795,7 @@
872
795
  "description": "The identifier for the metafield."
873
796
  }
874
797
  },
875
- "required": [
876
- "namespace",
877
- "key"
878
- ]
798
+ "required": ["namespace", "key"]
879
799
  },
880
800
  "description": "Returns a metafield found by namespace and key."
881
801
  },
@@ -896,9 +816,7 @@
896
816
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
897
817
  }
898
818
  },
899
- "required": [
900
- "identifiers"
901
- ]
819
+ "required": ["identifiers"]
902
820
  },
903
821
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
904
822
  },
@@ -918,14 +836,7 @@
918
836
  "description": "The blogs’s title."
919
837
  }
920
838
  },
921
- "required": [
922
- "articles",
923
- "authors",
924
- "handle",
925
- "id",
926
- "metafields",
927
- "title"
928
- ]
839
+ "required": ["articles", "authors", "handle", "id", "metafields", "title"]
929
840
  },
930
841
  "interfaces": [
931
842
  "ShopifyStorefront_HasMetafields",
@@ -963,11 +874,7 @@
963
874
  "description": "Information to aid in pagination."
964
875
  }
965
876
  },
966
- "required": [
967
- "edges",
968
- "nodes",
969
- "pageInfo"
970
- ]
877
+ "required": ["edges", "nodes", "pageInfo"]
971
878
  }
972
879
  },
973
880
  "ShopifyStorefront_BlogEdge": {
@@ -989,10 +896,7 @@
989
896
  "description": "The item at the end of BlogEdge."
990
897
  }
991
898
  },
992
- "required": [
993
- "cursor",
994
- "node"
995
- ]
899
+ "required": ["cursor", "node"]
996
900
  }
997
901
  },
998
902
  "ShopifyStorefront_BlogSortKeys": {
@@ -1001,12 +905,7 @@
1001
905
  "id": "ShopifyStorefront_BlogSortKeys",
1002
906
  "description": "The set of valid sort keys for the Blog query.",
1003
907
  "schema": {
1004
- "enum": [
1005
- "HANDLE",
1006
- "TITLE",
1007
- "ID",
1008
- "RELEVANCE"
1009
- ]
908
+ "enum": ["HANDLE", "TITLE", "ID", "RELEVANCE"]
1010
909
  }
1011
910
  },
1012
911
  "ShopifyStorefront_Brand": {
@@ -1048,9 +947,7 @@
1048
947
  "description": "The store's preferred logo for square UI elements."
1049
948
  }
1050
949
  },
1051
- "required": [
1052
- "colors"
1053
- ]
950
+ "required": ["colors"]
1054
951
  }
1055
952
  },
1056
953
  "ShopifyStorefront_BrandColorGroup": {
@@ -1099,10 +996,7 @@
1099
996
  "description": "The shop's secondary brand colors."
1100
997
  }
1101
998
  },
1102
- "required": [
1103
- "primary",
1104
- "secondary"
1105
- ]
999
+ "required": ["primary", "secondary"]
1106
1000
  }
1107
1001
  },
1108
1002
  "ShopifyStorefront_CardBrand": {
@@ -1111,14 +1005,7 @@
1111
1005
  "id": "ShopifyStorefront_CardBrand",
1112
1006
  "description": "Card brand, such as Visa or Mastercard, which can be used for payments.",
1113
1007
  "schema": {
1114
- "enum": [
1115
- "VISA",
1116
- "MASTERCARD",
1117
- "DISCOVER",
1118
- "AMERICAN_EXPRESS",
1119
- "DINERS_CLUB",
1120
- "JCB"
1121
- ]
1008
+ "enum": ["VISA", "MASTERCARD", "DISCOVER", "AMERICAN_EXPRESS", "DINERS_CLUB", "JCB"]
1122
1009
  }
1123
1010
  },
1124
1011
  "ShopifyStorefront_Cart": {
@@ -1140,9 +1027,7 @@
1140
1027
  "description": "The key of the attribute."
1141
1028
  }
1142
1029
  },
1143
- "required": [
1144
- "key"
1145
- ]
1030
+ "required": ["key"]
1146
1031
  },
1147
1032
  "description": "An attribute associated with the cart."
1148
1033
  },
@@ -1279,10 +1164,7 @@
1279
1164
  "description": "The identifier for the metafield."
1280
1165
  }
1281
1166
  },
1282
- "required": [
1283
- "namespace",
1284
- "key"
1285
- ]
1167
+ "required": ["namespace", "key"]
1286
1168
  },
1287
1169
  "description": "Returns a metafield found by namespace and key."
1288
1170
  },
@@ -1303,9 +1185,7 @@
1303
1185
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
1304
1186
  }
1305
1187
  },
1306
- "required": [
1307
- "identifiers"
1308
- ]
1188
+ "required": ["identifiers"]
1309
1189
  },
1310
1190
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
1311
1191
  },
@@ -1342,10 +1222,7 @@
1342
1222
  "updatedAt"
1343
1223
  ]
1344
1224
  },
1345
- "interfaces": [
1346
- "ShopifyStorefront_HasMetafields",
1347
- "ShopifyStorefront_Node"
1348
- ]
1225
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
1349
1226
  },
1350
1227
  "ShopifyStorefront_CartAttributesUpdatePayload": {
1351
1228
  "name": "ShopifyStorefront_CartAttributesUpdatePayload",
@@ -1369,9 +1246,7 @@
1369
1246
  "description": "The list of errors that occurred from executing the mutation."
1370
1247
  }
1371
1248
  },
1372
- "required": [
1373
- "userErrors"
1374
- ]
1249
+ "required": ["userErrors"]
1375
1250
  }
1376
1251
  },
1377
1252
  "ShopifyStorefront_CartAutomaticDiscountAllocation": {
@@ -1393,14 +1268,9 @@
1393
1268
  "description": "The title of the allocated discount."
1394
1269
  }
1395
1270
  },
1396
- "required": [
1397
- "discountedAmount",
1398
- "title"
1399
- ]
1271
+ "required": ["discountedAmount", "title"]
1400
1272
  },
1401
- "interfaces": [
1402
- "ShopifyStorefront_CartDiscountAllocation"
1403
- ]
1273
+ "interfaces": ["ShopifyStorefront_CartDiscountAllocation"]
1404
1274
  },
1405
1275
  "ShopifyStorefront_CartBuyerIdentity": {
1406
1276
  "name": "ShopifyStorefront_CartBuyerIdentity",
@@ -1447,10 +1317,7 @@
1447
1317
  "description": "A set of wallet preferences tied to the buyer that is interacting with the cart.\nPreferences can be used to populate relevant payment fields in the checkout flow."
1448
1318
  }
1449
1319
  },
1450
- "required": [
1451
- "deliveryAddressPreferences",
1452
- "walletPreferences"
1453
- ]
1320
+ "required": ["deliveryAddressPreferences", "walletPreferences"]
1454
1321
  }
1455
1322
  },
1456
1323
  "ShopifyStorefront_CartBuyerIdentityInput": {
@@ -1522,9 +1389,7 @@
1522
1389
  "description": "The list of errors that occurred from executing the mutation."
1523
1390
  }
1524
1391
  },
1525
- "required": [
1526
- "userErrors"
1527
- ]
1392
+ "required": ["userErrors"]
1528
1393
  }
1529
1394
  },
1530
1395
  "ShopifyStorefront_CartCardSource": {
@@ -1533,9 +1398,7 @@
1533
1398
  "id": "ShopifyStorefront_CartCardSource",
1534
1399
  "description": "Represents how credit card details are provided for a direct payment.\n",
1535
1400
  "schema": {
1536
- "enum": [
1537
- "SAVED_CREDIT_CARD"
1538
- ]
1401
+ "enum": ["SAVED_CREDIT_CARD"]
1539
1402
  }
1540
1403
  },
1541
1404
  "ShopifyStorefront_CartCodeDiscountAllocation": {
@@ -1557,14 +1420,9 @@
1557
1420
  "description": "The discounted amount that has been applied to the cart line."
1558
1421
  }
1559
1422
  },
1560
- "required": [
1561
- "code",
1562
- "discountedAmount"
1563
- ]
1423
+ "required": ["code", "discountedAmount"]
1564
1424
  },
1565
- "interfaces": [
1566
- "ShopifyStorefront_CartDiscountAllocation"
1567
- ]
1425
+ "interfaces": ["ShopifyStorefront_CartDiscountAllocation"]
1568
1426
  },
1569
1427
  "ShopifyStorefront_CartCompletionAction": {
1570
1428
  "name": "ShopifyStorefront_CartCompletionAction",
@@ -1598,9 +1456,7 @@
1598
1456
  "description": "The ID of the cart completion attempt."
1599
1457
  }
1600
1458
  },
1601
- "required": [
1602
- "id"
1603
- ]
1459
+ "required": ["id"]
1604
1460
  }
1605
1461
  },
1606
1462
  "ShopifyStorefront_CartCompletionAttemptResult": {
@@ -1647,10 +1503,7 @@
1647
1503
  "description": "The ID of the cart completion attempt."
1648
1504
  }
1649
1505
  },
1650
- "required": [
1651
- "errors",
1652
- "id"
1653
- ]
1506
+ "required": ["errors", "id"]
1654
1507
  }
1655
1508
  },
1656
1509
  "ShopifyStorefront_CartCompletionProcessing": {
@@ -1672,10 +1525,7 @@
1672
1525
  "description": "The number of milliseconds to wait before polling again."
1673
1526
  }
1674
1527
  },
1675
- "required": [
1676
- "id",
1677
- "pollDelay"
1678
- ]
1528
+ "required": ["id", "pollDelay"]
1679
1529
  }
1680
1530
  },
1681
1531
  "ShopifyStorefront_CartCompletionSuccess": {
@@ -1708,11 +1558,7 @@
1708
1558
  "@mapping": "shopify-storefront:CartCompletionSuccess.orderUrl"
1709
1559
  }
1710
1560
  },
1711
- "required": [
1712
- "id",
1713
- "orderId",
1714
- "orderUrl"
1715
- ]
1561
+ "required": ["id", "orderId", "orderUrl"]
1716
1562
  }
1717
1563
  },
1718
1564
  "ShopifyStorefront_CartCost": {
@@ -1802,9 +1648,7 @@
1802
1648
  "description": "The list of errors that occurred from executing the mutation."
1803
1649
  }
1804
1650
  },
1805
- "required": [
1806
- "userErrors"
1807
- ]
1651
+ "required": ["userErrors"]
1808
1652
  }
1809
1653
  },
1810
1654
  "ShopifyStorefront_CartCustomDiscountAllocation": {
@@ -1826,14 +1670,9 @@
1826
1670
  "description": "The title of the allocated discount."
1827
1671
  }
1828
1672
  },
1829
- "required": [
1830
- "discountedAmount",
1831
- "title"
1832
- ]
1673
+ "required": ["discountedAmount", "title"]
1833
1674
  },
1834
- "interfaces": [
1835
- "ShopifyStorefront_CartDiscountAllocation"
1836
- ]
1675
+ "interfaces": ["ShopifyStorefront_CartDiscountAllocation"]
1837
1676
  },
1838
1677
  "ShopifyStorefront_CartDeliveryGroup": {
1839
1678
  "name": "ShopifyStorefront_CartDeliveryGroup",
@@ -1899,12 +1738,7 @@
1899
1738
  "description": "The selected delivery option for the delivery group."
1900
1739
  }
1901
1740
  },
1902
- "required": [
1903
- "cartLines",
1904
- "deliveryAddress",
1905
- "deliveryOptions",
1906
- "id"
1907
- ]
1741
+ "required": ["cartLines", "deliveryAddress", "deliveryOptions", "id"]
1908
1742
  }
1909
1743
  },
1910
1744
  "ShopifyStorefront_CartDeliveryGroupConnection": {
@@ -1937,11 +1771,7 @@
1937
1771
  "description": "Information to aid in pagination."
1938
1772
  }
1939
1773
  },
1940
- "required": [
1941
- "edges",
1942
- "nodes",
1943
- "pageInfo"
1944
- ]
1774
+ "required": ["edges", "nodes", "pageInfo"]
1945
1775
  }
1946
1776
  },
1947
1777
  "ShopifyStorefront_CartDeliveryGroupEdge": {
@@ -1963,10 +1793,7 @@
1963
1793
  "description": "The item at the end of CartDeliveryGroupEdge."
1964
1794
  }
1965
1795
  },
1966
- "required": [
1967
- "cursor",
1968
- "node"
1969
- ]
1796
+ "required": ["cursor", "node"]
1970
1797
  }
1971
1798
  },
1972
1799
  "ShopifyStorefront_CartDeliveryOption": {
@@ -2008,11 +1835,7 @@
2008
1835
  "description": "The title of the delivery option."
2009
1836
  }
2010
1837
  },
2011
- "required": [
2012
- "deliveryMethodType",
2013
- "estimatedCost",
2014
- "handle"
2015
- ]
1838
+ "required": ["deliveryMethodType", "estimatedCost", "handle"]
2016
1839
  }
2017
1840
  },
2018
1841
  "ShopifyStorefront_CartDirectPaymentMethodInput": {
@@ -2039,10 +1862,7 @@
2039
1862
  "description": "The source of the credit card payment."
2040
1863
  }
2041
1864
  },
2042
- "required": [
2043
- "billingAddress",
2044
- "sessionId"
2045
- ]
1865
+ "required": ["billingAddress", "sessionId"]
2046
1866
  }
2047
1867
  },
2048
1868
  "ShopifyStorefront_CartDiscountAllocation": {
@@ -2059,9 +1879,7 @@
2059
1879
  "description": "The discounted amount that has been applied to the cart line."
2060
1880
  }
2061
1881
  },
2062
- "required": [
2063
- "discountedAmount"
2064
- ]
1882
+ "required": ["discountedAmount"]
2065
1883
  },
2066
1884
  "type": "interface"
2067
1885
  },
@@ -2084,10 +1902,7 @@
2084
1902
  "description": "The code for the discount."
2085
1903
  }
2086
1904
  },
2087
- "required": [
2088
- "applicable",
2089
- "code"
2090
- ]
1905
+ "required": ["applicable", "code"]
2091
1906
  }
2092
1907
  },
2093
1908
  "ShopifyStorefront_CartDiscountCodesUpdatePayload": {
@@ -2112,9 +1927,7 @@
2112
1927
  "description": "The list of errors that occurred from executing the mutation."
2113
1928
  }
2114
1929
  },
2115
- "required": [
2116
- "userErrors"
2117
- ]
1930
+ "required": ["userErrors"]
2118
1931
  }
2119
1932
  },
2120
1933
  "ShopifyStorefront_CartErrorCode": {
@@ -2172,11 +1985,7 @@
2172
1985
  "description": "The estimated tax amount for the customer to pay at checkout."
2173
1986
  }
2174
1987
  },
2175
- "required": [
2176
- "checkoutChargeAmount",
2177
- "subtotalAmount",
2178
- "totalAmount"
2179
- ]
1988
+ "required": ["checkoutChargeAmount", "subtotalAmount", "totalAmount"]
2180
1989
  }
2181
1990
  },
2182
1991
  "ShopifyStorefront_CartFreePaymentMethodInput": {
@@ -2193,9 +2002,7 @@
2193
2002
  "description": "The customer's billing address."
2194
2003
  }
2195
2004
  },
2196
- "required": [
2197
- "billingAddress"
2198
- ]
2005
+ "required": ["billingAddress"]
2199
2006
  }
2200
2007
  },
2201
2008
  "ShopifyStorefront_CartInput": {
@@ -2275,11 +2082,7 @@
2275
2082
  "description": "The type of data that the cart metafield stores.\nThe type of data must be a [supported type](https://shopify.dev/apps/metafields/types)."
2276
2083
  }
2277
2084
  },
2278
- "required": [
2279
- "key",
2280
- "value",
2281
- "type"
2282
- ]
2085
+ "required": ["key", "value", "type"]
2283
2086
  }
2284
2087
  },
2285
2088
  "ShopifyStorefront_CartLine": {
@@ -2301,9 +2104,7 @@
2301
2104
  "description": "The key of the attribute."
2302
2105
  }
2303
2106
  },
2304
- "required": [
2305
- "key"
2306
- ]
2107
+ "required": ["key"]
2307
2108
  },
2308
2109
  "description": "An attribute associated with the cart line."
2309
2110
  },
@@ -2356,20 +2157,9 @@
2356
2157
  "description": "The selling plan associated with the cart line and the effect that each selling plan has on variants when they're purchased."
2357
2158
  }
2358
2159
  },
2359
- "required": [
2360
- "attributes",
2361
- "cost",
2362
- "discountAllocations",
2363
- "estimatedCost",
2364
- "id",
2365
- "merchandise",
2366
- "quantity"
2367
- ]
2160
+ "required": ["attributes", "cost", "discountAllocations", "estimatedCost", "id", "merchandise", "quantity"]
2368
2161
  },
2369
- "interfaces": [
2370
- "ShopifyStorefront_BaseCartLine",
2371
- "ShopifyStorefront_Node"
2372
- ]
2162
+ "interfaces": ["ShopifyStorefront_BaseCartLine", "ShopifyStorefront_Node"]
2373
2163
  },
2374
2164
  "ShopifyStorefront_CartLineCost": {
2375
2165
  "name": "ShopifyStorefront_CartLineCost",
@@ -2400,11 +2190,7 @@
2400
2190
  "description": "The total cost of the merchandise line."
2401
2191
  }
2402
2192
  },
2403
- "required": [
2404
- "amountPerQuantity",
2405
- "subtotalAmount",
2406
- "totalAmount"
2407
- ]
2193
+ "required": ["amountPerQuantity", "subtotalAmount", "totalAmount"]
2408
2194
  }
2409
2195
  },
2410
2196
  "ShopifyStorefront_CartLineEstimatedCost": {
@@ -2436,11 +2222,7 @@
2436
2222
  "description": "The estimated total cost of the merchandise line."
2437
2223
  }
2438
2224
  },
2439
- "required": [
2440
- "amount",
2441
- "subtotalAmount",
2442
- "totalAmount"
2443
- ]
2225
+ "required": ["amount", "subtotalAmount", "totalAmount"]
2444
2226
  }
2445
2227
  },
2446
2228
  "ShopifyStorefront_CartLineInput": {
@@ -2478,9 +2260,7 @@
2478
2260
  "description": "The ID of the selling plan that the merchandise is being purchased with."
2479
2261
  }
2480
2262
  },
2481
- "required": [
2482
- "merchandiseId"
2483
- ]
2263
+ "required": ["merchandiseId"]
2484
2264
  }
2485
2265
  },
2486
2266
  "ShopifyStorefront_CartLineUpdateInput": {
@@ -2523,9 +2303,7 @@
2523
2303
  "description": "The ID of the selling plan that the merchandise is being purchased with."
2524
2304
  }
2525
2305
  },
2526
- "required": [
2527
- "id"
2528
- ]
2306
+ "required": ["id"]
2529
2307
  }
2530
2308
  },
2531
2309
  "ShopifyStorefront_CartLinesAddPayload": {
@@ -2550,9 +2328,7 @@
2550
2328
  "description": "The list of errors that occurred from executing the mutation."
2551
2329
  }
2552
2330
  },
2553
- "required": [
2554
- "userErrors"
2555
- ]
2331
+ "required": ["userErrors"]
2556
2332
  }
2557
2333
  },
2558
2334
  "ShopifyStorefront_CartLinesRemovePayload": {
@@ -2577,9 +2353,7 @@
2577
2353
  "description": "The list of errors that occurred from executing the mutation."
2578
2354
  }
2579
2355
  },
2580
- "required": [
2581
- "userErrors"
2582
- ]
2356
+ "required": ["userErrors"]
2583
2357
  }
2584
2358
  },
2585
2359
  "ShopifyStorefront_CartLinesUpdatePayload": {
@@ -2604,9 +2378,7 @@
2604
2378
  "description": "The list of errors that occurred from executing the mutation."
2605
2379
  }
2606
2380
  },
2607
- "required": [
2608
- "userErrors"
2609
- ]
2381
+ "required": ["userErrors"]
2610
2382
  }
2611
2383
  },
2612
2384
  "ShopifyStorefront_CartMetafieldDeleteInput": {
@@ -2629,10 +2401,7 @@
2629
2401
  "description": "The key name of the cart metafield. Can either be a composite key (`namespace.key`) or a simple key\n that relies on the default app-reserved namespace."
2630
2402
  }
2631
2403
  },
2632
- "required": [
2633
- "ownerId",
2634
- "key"
2635
- ]
2404
+ "required": ["ownerId", "key"]
2636
2405
  }
2637
2406
  },
2638
2407
  "ShopifyStorefront_CartMetafieldDeletePayload": {
@@ -2658,9 +2427,7 @@
2658
2427
  "description": "The list of errors that occurred from executing the mutation."
2659
2428
  }
2660
2429
  },
2661
- "required": [
2662
- "userErrors"
2663
- ]
2430
+ "required": ["userErrors"]
2664
2431
  }
2665
2432
  },
2666
2433
  "ShopifyStorefront_CartMetafieldsSetInput": {
@@ -2693,12 +2460,7 @@
2693
2460
  "description": "The type of data that the cart metafield stores.\nThe type of data must be a [supported type](https://shopify.dev/apps/metafields/types)."
2694
2461
  }
2695
2462
  },
2696
- "required": [
2697
- "ownerId",
2698
- "key",
2699
- "value",
2700
- "type"
2701
- ]
2463
+ "required": ["ownerId", "key", "value", "type"]
2702
2464
  }
2703
2465
  },
2704
2466
  "ShopifyStorefront_CartMetafieldsSetPayload": {
@@ -2726,9 +2488,7 @@
2726
2488
  "description": "The list of errors that occurred from executing the mutation."
2727
2489
  }
2728
2490
  },
2729
- "required": [
2730
- "userErrors"
2731
- ]
2491
+ "required": ["userErrors"]
2732
2492
  }
2733
2493
  },
2734
2494
  "ShopifyStorefront_CartNoteUpdatePayload": {
@@ -2753,9 +2513,7 @@
2753
2513
  "description": "The list of errors that occurred from executing the mutation."
2754
2514
  }
2755
2515
  },
2756
- "required": [
2757
- "userErrors"
2758
- ]
2516
+ "required": ["userErrors"]
2759
2517
  }
2760
2518
  },
2761
2519
  "ShopifyStorefront_CartPaymentInput": {
@@ -2792,9 +2550,7 @@
2792
2550
  "description": "The input fields to use when checking out a cart with a wallet payment method (like Shop Pay or Apple Pay)."
2793
2551
  }
2794
2552
  },
2795
- "required": [
2796
- "amount"
2797
- ]
2553
+ "required": ["amount"]
2798
2554
  }
2799
2555
  },
2800
2556
  "ShopifyStorefront_CartPaymentUpdatePayload": {
@@ -2819,9 +2575,7 @@
2819
2575
  "description": "The list of errors that occurred from executing the mutation."
2820
2576
  }
2821
2577
  },
2822
- "required": [
2823
- "userErrors"
2824
- ]
2578
+ "required": ["userErrors"]
2825
2579
  }
2826
2580
  },
2827
2581
  "ShopifyStorefront_CartSelectedDeliveryOptionInput": {
@@ -2844,10 +2598,7 @@
2844
2598
  "description": "The handle of the selected delivery option."
2845
2599
  }
2846
2600
  },
2847
- "required": [
2848
- "deliveryGroupId",
2849
- "deliveryOptionHandle"
2850
- ]
2601
+ "required": ["deliveryGroupId", "deliveryOptionHandle"]
2851
2602
  }
2852
2603
  },
2853
2604
  "ShopifyStorefront_CartSelectedDeliveryOptionsUpdatePayload": {
@@ -2872,9 +2623,7 @@
2872
2623
  "description": "The list of errors that occurred from executing the mutation."
2873
2624
  }
2874
2625
  },
2875
- "required": [
2876
- "userErrors"
2877
- ]
2626
+ "required": ["userErrors"]
2878
2627
  }
2879
2628
  },
2880
2629
  "ShopifyStorefront_CartSubmitForCompletionPayload": {
@@ -2899,9 +2648,7 @@
2899
2648
  "description": "The list of errors that occurred from executing the mutation."
2900
2649
  }
2901
2650
  },
2902
- "required": [
2903
- "userErrors"
2904
- ]
2651
+ "required": ["userErrors"]
2905
2652
  }
2906
2653
  },
2907
2654
  "ShopifyStorefront_CartSubmitForCompletionResult": {
@@ -2953,13 +2700,9 @@
2953
2700
  "description": "The error message."
2954
2701
  }
2955
2702
  },
2956
- "required": [
2957
- "message"
2958
- ]
2703
+ "required": ["message"]
2959
2704
  },
2960
- "interfaces": [
2961
- "ShopifyStorefront_DisplayableError"
2962
- ]
2705
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
2963
2706
  },
2964
2707
  "ShopifyStorefront_CartWalletPaymentMethodInput": {
2965
2708
  "name": "ShopifyStorefront_CartWalletPaymentMethodInput",
@@ -3249,9 +2992,7 @@
3249
2992
  "webUrl"
3250
2993
  ]
3251
2994
  },
3252
- "interfaces": [
3253
- "ShopifyStorefront_Node"
3254
- ]
2995
+ "interfaces": ["ShopifyStorefront_Node"]
3255
2996
  },
3256
2997
  "ShopifyStorefront_CheckoutAttributesUpdateV2Input": {
3257
2998
  "name": "ShopifyStorefront_CheckoutAttributesUpdateV2Input",
@@ -3314,10 +3055,7 @@
3314
3055
  "description": "The list of errors that occurred from executing the mutation."
3315
3056
  }
3316
3057
  },
3317
- "required": [
3318
- "checkoutUserErrors",
3319
- "userErrors"
3320
- ]
3058
+ "required": ["checkoutUserErrors", "userErrors"]
3321
3059
  }
3322
3060
  },
3323
3061
  "ShopifyStorefront_CheckoutBuyerIdentity": {
@@ -3350,9 +3088,7 @@
3350
3088
  "description": "The country code of one of the shop's\n[enabled countries](https://help.shopify.com/en/manual/payments/shopify-payments/multi-currency/setup).\nFor example, `CA`. Including this field creates a checkout in the specified country's currency."
3351
3089
  }
3352
3090
  },
3353
- "required": [
3354
- "countryCode"
3355
- ]
3091
+ "required": ["countryCode"]
3356
3092
  }
3357
3093
  },
3358
3094
  "ShopifyStorefront_CheckoutCompleteFreePayload": {
@@ -3386,10 +3122,7 @@
3386
3122
  "description": "The list of errors that occurred from executing the mutation."
3387
3123
  }
3388
3124
  },
3389
- "required": [
3390
- "checkoutUserErrors",
3391
- "userErrors"
3392
- ]
3125
+ "required": ["checkoutUserErrors", "userErrors"]
3393
3126
  }
3394
3127
  },
3395
3128
  "ShopifyStorefront_CheckoutCompleteWithCreditCardV2Payload": {
@@ -3428,10 +3161,7 @@
3428
3161
  "description": "The list of errors that occurred from executing the mutation."
3429
3162
  }
3430
3163
  },
3431
- "required": [
3432
- "checkoutUserErrors",
3433
- "userErrors"
3434
- ]
3164
+ "required": ["checkoutUserErrors", "userErrors"]
3435
3165
  }
3436
3166
  },
3437
3167
  "ShopifyStorefront_CheckoutCompleteWithTokenizedPaymentV3Payload": {
@@ -3470,10 +3200,7 @@
3470
3200
  "description": "The list of errors that occurred from executing the mutation."
3471
3201
  }
3472
3202
  },
3473
- "required": [
3474
- "checkoutUserErrors",
3475
- "userErrors"
3476
- ]
3203
+ "required": ["checkoutUserErrors", "userErrors"]
3477
3204
  }
3478
3205
  },
3479
3206
  "ShopifyStorefront_CheckoutCreateInput": {
@@ -3564,10 +3291,7 @@
3564
3291
  "description": "The list of errors that occurred from executing the mutation."
3565
3292
  }
3566
3293
  },
3567
- "required": [
3568
- "checkoutUserErrors",
3569
- "userErrors"
3570
- ]
3294
+ "required": ["checkoutUserErrors", "userErrors"]
3571
3295
  }
3572
3296
  },
3573
3297
  "ShopifyStorefront_CheckoutCustomerAssociateV2Payload": {
@@ -3606,10 +3330,7 @@
3606
3330
  "description": "The list of errors that occurred from executing the mutation."
3607
3331
  }
3608
3332
  },
3609
- "required": [
3610
- "checkoutUserErrors",
3611
- "userErrors"
3612
- ]
3333
+ "required": ["checkoutUserErrors", "userErrors"]
3613
3334
  }
3614
3335
  },
3615
3336
  "ShopifyStorefront_CheckoutCustomerDisassociateV2Payload": {
@@ -3643,10 +3364,7 @@
3643
3364
  "description": "The list of errors that occurred from executing the mutation."
3644
3365
  }
3645
3366
  },
3646
- "required": [
3647
- "checkoutUserErrors",
3648
- "userErrors"
3649
- ]
3367
+ "required": ["checkoutUserErrors", "userErrors"]
3650
3368
  }
3651
3369
  },
3652
3370
  "ShopifyStorefront_CheckoutDiscountCodeApplyV2Payload": {
@@ -3680,10 +3398,7 @@
3680
3398
  "description": "The list of errors that occurred from executing the mutation."
3681
3399
  }
3682
3400
  },
3683
- "required": [
3684
- "checkoutUserErrors",
3685
- "userErrors"
3686
- ]
3401
+ "required": ["checkoutUserErrors", "userErrors"]
3687
3402
  }
3688
3403
  },
3689
3404
  "ShopifyStorefront_CheckoutDiscountCodeRemovePayload": {
@@ -3717,10 +3432,7 @@
3717
3432
  "description": "The list of errors that occurred from executing the mutation."
3718
3433
  }
3719
3434
  },
3720
- "required": [
3721
- "checkoutUserErrors",
3722
- "userErrors"
3723
- ]
3435
+ "required": ["checkoutUserErrors", "userErrors"]
3724
3436
  }
3725
3437
  },
3726
3438
  "ShopifyStorefront_CheckoutEmailUpdateV2Payload": {
@@ -3754,10 +3466,7 @@
3754
3466
  "description": "The list of errors that occurred from executing the mutation."
3755
3467
  }
3756
3468
  },
3757
- "required": [
3758
- "checkoutUserErrors",
3759
- "userErrors"
3760
- ]
3469
+ "required": ["checkoutUserErrors", "userErrors"]
3761
3470
  }
3762
3471
  },
3763
3472
  "ShopifyStorefront_CheckoutErrorCode": {
@@ -3847,10 +3556,7 @@
3847
3556
  "description": "The list of errors that occurred from executing the mutation."
3848
3557
  }
3849
3558
  },
3850
- "required": [
3851
- "checkoutUserErrors",
3852
- "userErrors"
3853
- ]
3559
+ "required": ["checkoutUserErrors", "userErrors"]
3854
3560
  }
3855
3561
  },
3856
3562
  "ShopifyStorefront_CheckoutGiftCardsAppendPayload": {
@@ -3884,10 +3590,7 @@
3884
3590
  "description": "The list of errors that occurred from executing the mutation."
3885
3591
  }
3886
3592
  },
3887
- "required": [
3888
- "checkoutUserErrors",
3889
- "userErrors"
3890
- ]
3593
+ "required": ["checkoutUserErrors", "userErrors"]
3891
3594
  }
3892
3595
  },
3893
3596
  "ShopifyStorefront_CheckoutLineItem": {
@@ -3941,17 +3644,9 @@
3941
3644
  "description": "Product variant of the line item."
3942
3645
  }
3943
3646
  },
3944
- "required": [
3945
- "customAttributes",
3946
- "discountAllocations",
3947
- "id",
3948
- "quantity",
3949
- "title"
3950
- ]
3647
+ "required": ["customAttributes", "discountAllocations", "id", "quantity", "title"]
3951
3648
  },
3952
- "interfaces": [
3953
- "ShopifyStorefront_Node"
3954
- ]
3649
+ "interfaces": ["ShopifyStorefront_Node"]
3955
3650
  },
3956
3651
  "ShopifyStorefront_CheckoutLineItemConnection": {
3957
3652
  "name": "ShopifyStorefront_CheckoutLineItemConnection",
@@ -3983,11 +3678,7 @@
3983
3678
  "description": "Information to aid in pagination."
3984
3679
  }
3985
3680
  },
3986
- "required": [
3987
- "edges",
3988
- "nodes",
3989
- "pageInfo"
3990
- ]
3681
+ "required": ["edges", "nodes", "pageInfo"]
3991
3682
  }
3992
3683
  },
3993
3684
  "ShopifyStorefront_CheckoutLineItemEdge": {
@@ -4009,10 +3700,7 @@
4009
3700
  "description": "The item at the end of CheckoutLineItemEdge."
4010
3701
  }
4011
3702
  },
4012
- "required": [
4013
- "cursor",
4014
- "node"
4015
- ]
3703
+ "required": ["cursor", "node"]
4016
3704
  }
4017
3705
  },
4018
3706
  "ShopifyStorefront_CheckoutLineItemInput": {
@@ -4043,10 +3731,7 @@
4043
3731
  "description": "The ID of the product variant for the line item."
4044
3732
  }
4045
3733
  },
4046
- "required": [
4047
- "quantity",
4048
- "variantId"
4049
- ]
3734
+ "required": ["quantity", "variantId"]
4050
3735
  }
4051
3736
  },
4052
3737
  "ShopifyStorefront_CheckoutLineItemUpdateInput": {
@@ -4116,10 +3801,7 @@
4116
3801
  "description": "The list of errors that occurred from executing the mutation."
4117
3802
  }
4118
3803
  },
4119
- "required": [
4120
- "checkoutUserErrors",
4121
- "userErrors"
4122
- ]
3804
+ "required": ["checkoutUserErrors", "userErrors"]
4123
3805
  }
4124
3806
  },
4125
3807
  "ShopifyStorefront_CheckoutLineItemsRemovePayload": {
@@ -4153,10 +3835,7 @@
4153
3835
  "description": "The list of errors that occurred from executing the mutation."
4154
3836
  }
4155
3837
  },
4156
- "required": [
4157
- "checkoutUserErrors",
4158
- "userErrors"
4159
- ]
3838
+ "required": ["checkoutUserErrors", "userErrors"]
4160
3839
  }
4161
3840
  },
4162
3841
  "ShopifyStorefront_CheckoutLineItemsReplacePayload": {
@@ -4181,9 +3860,7 @@
4181
3860
  "description": "The list of errors that occurred from executing the mutation."
4182
3861
  }
4183
3862
  },
4184
- "required": [
4185
- "userErrors"
4186
- ]
3863
+ "required": ["userErrors"]
4187
3864
  }
4188
3865
  },
4189
3866
  "ShopifyStorefront_CheckoutLineItemsUpdatePayload": {
@@ -4217,10 +3894,7 @@
4217
3894
  "description": "The list of errors that occurred from executing the mutation."
4218
3895
  }
4219
3896
  },
4220
- "required": [
4221
- "checkoutUserErrors",
4222
- "userErrors"
4223
- ]
3897
+ "required": ["checkoutUserErrors", "userErrors"]
4224
3898
  }
4225
3899
  },
4226
3900
  "ShopifyStorefront_CheckoutShippingAddressUpdateV2Payload": {
@@ -4254,10 +3928,7 @@
4254
3928
  "description": "The list of errors that occurred from executing the mutation."
4255
3929
  }
4256
3930
  },
4257
- "required": [
4258
- "checkoutUserErrors",
4259
- "userErrors"
4260
- ]
3931
+ "required": ["checkoutUserErrors", "userErrors"]
4261
3932
  }
4262
3933
  },
4263
3934
  "ShopifyStorefront_CheckoutShippingLineUpdatePayload": {
@@ -4291,10 +3962,7 @@
4291
3962
  "description": "The list of errors that occurred from executing the mutation."
4292
3963
  }
4293
3964
  },
4294
- "required": [
4295
- "checkoutUserErrors",
4296
- "userErrors"
4297
- ]
3965
+ "required": ["checkoutUserErrors", "userErrors"]
4298
3966
  }
4299
3967
  },
4300
3968
  "ShopifyStorefront_CheckoutUserError": {
@@ -4324,13 +3992,9 @@
4324
3992
  "description": "The error message."
4325
3993
  }
4326
3994
  },
4327
- "required": [
4328
- "message"
4329
- ]
3995
+ "required": ["message"]
4330
3996
  },
4331
- "interfaces": [
4332
- "ShopifyStorefront_DisplayableError"
4333
- ]
3997
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
4334
3998
  },
4335
3999
  "ShopifyStorefront_Collection": {
4336
4000
  "name": "ShopifyStorefront_Collection",
@@ -4390,10 +4054,7 @@
4390
4054
  "description": "The identifier for the metafield."
4391
4055
  }
4392
4056
  },
4393
- "required": [
4394
- "namespace",
4395
- "key"
4396
- ]
4057
+ "required": ["namespace", "key"]
4397
4058
  },
4398
4059
  "description": "Returns a metafield found by namespace and key."
4399
4060
  },
@@ -4414,9 +4075,7 @@
4414
4075
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
4415
4076
  }
4416
4077
  },
4417
- "required": [
4418
- "identifiers"
4419
- ]
4078
+ "required": ["identifiers"]
4420
4079
  },
4421
4080
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
4422
4081
  },
@@ -4532,11 +4191,7 @@
4532
4191
  "description": "Information to aid in pagination."
4533
4192
  }
4534
4193
  },
4535
- "required": [
4536
- "edges",
4537
- "nodes",
4538
- "pageInfo"
4539
- ]
4194
+ "required": ["edges", "nodes", "pageInfo"]
4540
4195
  }
4541
4196
  },
4542
4197
  "ShopifyStorefront_CollectionEdge": {
@@ -4558,10 +4213,7 @@
4558
4213
  "description": "The item at the end of CollectionEdge."
4559
4214
  }
4560
4215
  },
4561
- "required": [
4562
- "cursor",
4563
- "node"
4564
- ]
4216
+ "required": ["cursor", "node"]
4565
4217
  }
4566
4218
  },
4567
4219
  "ShopifyStorefront_CollectionSortKeys": {
@@ -4570,12 +4222,7 @@
4570
4222
  "id": "ShopifyStorefront_CollectionSortKeys",
4571
4223
  "description": "The set of valid sort keys for the Collection query.",
4572
4224
  "schema": {
4573
- "enum": [
4574
- "TITLE",
4575
- "UPDATED_AT",
4576
- "ID",
4577
- "RELEVANCE"
4578
- ]
4225
+ "enum": ["TITLE", "UPDATED_AT", "ID", "RELEVANCE"]
4579
4226
  }
4580
4227
  },
4581
4228
  "ShopifyStorefront_Comment": {
@@ -4617,16 +4264,9 @@
4617
4264
  "description": "A globally-unique ID."
4618
4265
  }
4619
4266
  },
4620
- "required": [
4621
- "author",
4622
- "content",
4623
- "contentHtml",
4624
- "id"
4625
- ]
4267
+ "required": ["author", "content", "contentHtml", "id"]
4626
4268
  },
4627
- "interfaces": [
4628
- "ShopifyStorefront_Node"
4629
- ]
4269
+ "interfaces": ["ShopifyStorefront_Node"]
4630
4270
  },
4631
4271
  "ShopifyStorefront_CommentAuthor": {
4632
4272
  "name": "ShopifyStorefront_CommentAuthor",
@@ -4647,10 +4287,7 @@
4647
4287
  "description": "The author’s name."
4648
4288
  }
4649
4289
  },
4650
- "required": [
4651
- "email",
4652
- "name"
4653
- ]
4290
+ "required": ["email", "name"]
4654
4291
  }
4655
4292
  },
4656
4293
  "ShopifyStorefront_CommentConnection": {
@@ -4683,11 +4320,7 @@
4683
4320
  "description": "Information to aid in pagination."
4684
4321
  }
4685
4322
  },
4686
- "required": [
4687
- "edges",
4688
- "nodes",
4689
- "pageInfo"
4690
- ]
4323
+ "required": ["edges", "nodes", "pageInfo"]
4691
4324
  }
4692
4325
  },
4693
4326
  "ShopifyStorefront_CommentEdge": {
@@ -4709,10 +4342,7 @@
4709
4342
  "description": "The item at the end of CommentEdge."
4710
4343
  }
4711
4344
  },
4712
- "required": [
4713
- "cursor",
4714
- "node"
4715
- ]
4345
+ "required": ["cursor", "node"]
4716
4346
  }
4717
4347
  },
4718
4348
  "ShopifyStorefront_CompletePaymentChallenge": {
@@ -4750,9 +4380,7 @@
4750
4380
  "description": "The error message."
4751
4381
  }
4752
4382
  },
4753
- "required": [
4754
- "code"
4755
- ]
4383
+ "required": ["code"]
4756
4384
  }
4757
4385
  },
4758
4386
  "ShopifyStorefront_CompletionErrorCode": {
@@ -4820,13 +4448,7 @@
4820
4448
  "description": "The unit system used in the country."
4821
4449
  }
4822
4450
  },
4823
- "required": [
4824
- "availableLanguages",
4825
- "currency",
4826
- "isoCode",
4827
- "name",
4828
- "unitSystem"
4829
- ]
4451
+ "required": ["availableLanguages", "currency", "isoCode", "name", "unitSystem"]
4830
4452
  }
4831
4453
  },
4832
4454
  "ShopifyStorefront_CountryCode": {
@@ -5170,12 +4792,7 @@
5170
4792
  "default": false
5171
4793
  }
5172
4794
  },
5173
- "required": [
5174
- "paymentAmount",
5175
- "idempotencyKey",
5176
- "billingAddress",
5177
- "vaultId"
5178
- ]
4795
+ "required": ["paymentAmount", "idempotencyKey", "billingAddress", "vaultId"]
5179
4796
  }
5180
4797
  },
5181
4798
  "ShopifyStorefront_CropRegion": {
@@ -5184,13 +4801,7 @@
5184
4801
  "id": "ShopifyStorefront_CropRegion",
5185
4802
  "description": "The part of the image that should remain after cropping.",
5186
4803
  "schema": {
5187
- "enum": [
5188
- "CENTER",
5189
- "TOP",
5190
- "BOTTOM",
5191
- "LEFT",
5192
- "RIGHT"
5193
- ]
4804
+ "enum": ["CENTER", "TOP", "BOTTOM", "LEFT", "RIGHT"]
5194
4805
  }
5195
4806
  },
5196
4807
  "ShopifyStorefront_Currency": {
@@ -5217,11 +4828,7 @@
5217
4828
  "description": "The symbol of the currency."
5218
4829
  }
5219
4830
  },
5220
- "required": [
5221
- "isoCode",
5222
- "name",
5223
- "symbol"
5224
- ]
4831
+ "required": ["isoCode", "name", "symbol"]
5225
4832
  }
5226
4833
  },
5227
4834
  "ShopifyStorefront_CurrencyCode": {
@@ -5495,10 +5102,7 @@
5495
5102
  "description": "The identifier for the metafield."
5496
5103
  }
5497
5104
  },
5498
- "required": [
5499
- "namespace",
5500
- "key"
5501
- ]
5105
+ "required": ["namespace", "key"]
5502
5106
  },
5503
5107
  "description": "Returns a metafield found by namespace and key."
5504
5108
  },
@@ -5519,9 +5123,7 @@
5519
5123
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
5520
5124
  }
5521
5125
  },
5522
- "required": [
5523
- "identifiers"
5524
- ]
5126
+ "required": ["identifiers"]
5525
5127
  },
5526
5128
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
5527
5129
  },
@@ -5602,9 +5204,7 @@
5602
5204
  "updatedAt"
5603
5205
  ]
5604
5206
  },
5605
- "interfaces": [
5606
- "ShopifyStorefront_HasMetafields"
5607
- ]
5207
+ "interfaces": ["ShopifyStorefront_HasMetafields"]
5608
5208
  },
5609
5209
  "ShopifyStorefront_CustomerAccessToken": {
5610
5210
  "name": "ShopifyStorefront_CustomerAccessToken",
@@ -5625,10 +5225,7 @@
5625
5225
  "@mapping": "shopify-storefront:CustomerAccessToken.expiresAt"
5626
5226
  }
5627
5227
  },
5628
- "required": [
5629
- "accessToken",
5630
- "expiresAt"
5631
- ]
5228
+ "required": ["accessToken", "expiresAt"]
5632
5229
  }
5633
5230
  },
5634
5231
  "ShopifyStorefront_CustomerAccessTokenCreateInput": {
@@ -5650,10 +5247,7 @@
5650
5247
  "description": "The login password to be used by the customer."
5651
5248
  }
5652
5249
  },
5653
- "required": [
5654
- "email",
5655
- "password"
5656
- ]
5250
+ "required": ["email", "password"]
5657
5251
  }
5658
5252
  },
5659
5253
  "ShopifyStorefront_CustomerAccessTokenCreatePayload": {
@@ -5687,10 +5281,7 @@
5687
5281
  "description": "The list of errors that occurred from executing the mutation."
5688
5282
  }
5689
5283
  },
5690
- "required": [
5691
- "customerUserErrors",
5692
- "userErrors"
5693
- ]
5284
+ "required": ["customerUserErrors", "userErrors"]
5694
5285
  }
5695
5286
  },
5696
5287
  "ShopifyStorefront_CustomerAccessTokenCreateWithMultipassPayload": {
@@ -5715,9 +5306,7 @@
5715
5306
  "description": "The list of errors that occurred from executing the mutation."
5716
5307
  }
5717
5308
  },
5718
- "required": [
5719
- "customerUserErrors"
5720
- ]
5309
+ "required": ["customerUserErrors"]
5721
5310
  }
5722
5311
  },
5723
5312
  "ShopifyStorefront_CustomerAccessTokenDeletePayload": {
@@ -5747,9 +5336,7 @@
5747
5336
  "description": "The list of errors that occurred from executing the mutation."
5748
5337
  }
5749
5338
  },
5750
- "required": [
5751
- "userErrors"
5752
- ]
5339
+ "required": ["userErrors"]
5753
5340
  }
5754
5341
  },
5755
5342
  "ShopifyStorefront_CustomerAccessTokenRenewPayload": {
@@ -5774,9 +5361,7 @@
5774
5361
  "description": "The list of errors that occurred from executing the mutation."
5775
5362
  }
5776
5363
  },
5777
- "required": [
5778
- "userErrors"
5779
- ]
5364
+ "required": ["userErrors"]
5780
5365
  }
5781
5366
  },
5782
5367
  "ShopifyStorefront_CustomerActivateByUrlPayload": {
@@ -5806,9 +5391,7 @@
5806
5391
  "description": "The list of errors that occurred from executing the mutation."
5807
5392
  }
5808
5393
  },
5809
- "required": [
5810
- "customerUserErrors"
5811
- ]
5394
+ "required": ["customerUserErrors"]
5812
5395
  }
5813
5396
  },
5814
5397
  "ShopifyStorefront_CustomerActivateInput": {
@@ -5830,10 +5413,7 @@
5830
5413
  "description": "New password that will be set during activation."
5831
5414
  }
5832
5415
  },
5833
- "required": [
5834
- "activationToken",
5835
- "password"
5836
- ]
5416
+ "required": ["activationToken", "password"]
5837
5417
  }
5838
5418
  },
5839
5419
  "ShopifyStorefront_CustomerActivatePayload": {
@@ -5872,10 +5452,7 @@
5872
5452
  "description": "The list of errors that occurred from executing the mutation."
5873
5453
  }
5874
5454
  },
5875
- "required": [
5876
- "customerUserErrors",
5877
- "userErrors"
5878
- ]
5455
+ "required": ["customerUserErrors", "userErrors"]
5879
5456
  }
5880
5457
  },
5881
5458
  "ShopifyStorefront_CustomerAddressCreatePayload": {
@@ -5909,10 +5486,7 @@
5909
5486
  "description": "The list of errors that occurred from executing the mutation."
5910
5487
  }
5911
5488
  },
5912
- "required": [
5913
- "customerUserErrors",
5914
- "userErrors"
5915
- ]
5489
+ "required": ["customerUserErrors", "userErrors"]
5916
5490
  }
5917
5491
  },
5918
5492
  "ShopifyStorefront_CustomerAddressDeletePayload": {
@@ -5946,10 +5520,7 @@
5946
5520
  "description": "The list of errors that occurred from executing the mutation."
5947
5521
  }
5948
5522
  },
5949
- "required": [
5950
- "customerUserErrors",
5951
- "userErrors"
5952
- ]
5523
+ "required": ["customerUserErrors", "userErrors"]
5953
5524
  }
5954
5525
  },
5955
5526
  "ShopifyStorefront_CustomerAddressUpdatePayload": {
@@ -5983,10 +5554,7 @@
5983
5554
  "description": "The list of errors that occurred from executing the mutation."
5984
5555
  }
5985
5556
  },
5986
- "required": [
5987
- "customerUserErrors",
5988
- "userErrors"
5989
- ]
5557
+ "required": ["customerUserErrors", "userErrors"]
5990
5558
  }
5991
5559
  },
5992
5560
  "ShopifyStorefront_CustomerCreateInput": {
@@ -6028,10 +5596,7 @@
6028
5596
  "description": "Indicates whether the customer has consented to be sent marketing material via email."
6029
5597
  }
6030
5598
  },
6031
- "required": [
6032
- "email",
6033
- "password"
6034
- ]
5599
+ "required": ["email", "password"]
6035
5600
  }
6036
5601
  },
6037
5602
  "ShopifyStorefront_CustomerCreatePayload": {
@@ -6065,10 +5630,7 @@
6065
5630
  "description": "The list of errors that occurred from executing the mutation."
6066
5631
  }
6067
5632
  },
6068
- "required": [
6069
- "customerUserErrors",
6070
- "userErrors"
6071
- ]
5633
+ "required": ["customerUserErrors", "userErrors"]
6072
5634
  }
6073
5635
  },
6074
5636
  "ShopifyStorefront_CustomerDefaultAddressUpdatePayload": {
@@ -6102,10 +5664,7 @@
6102
5664
  "description": "The list of errors that occurred from executing the mutation."
6103
5665
  }
6104
5666
  },
6105
- "required": [
6106
- "customerUserErrors",
6107
- "userErrors"
6108
- ]
5667
+ "required": ["customerUserErrors", "userErrors"]
6109
5668
  }
6110
5669
  },
6111
5670
  "ShopifyStorefront_CustomerErrorCode": {
@@ -6159,10 +5718,7 @@
6159
5718
  "description": "The list of errors that occurred from executing the mutation."
6160
5719
  }
6161
5720
  },
6162
- "required": [
6163
- "customerUserErrors",
6164
- "userErrors"
6165
- ]
5721
+ "required": ["customerUserErrors", "userErrors"]
6166
5722
  }
6167
5723
  },
6168
5724
  "ShopifyStorefront_CustomerResetByUrlPayload": {
@@ -6201,10 +5757,7 @@
6201
5757
  "description": "The list of errors that occurred from executing the mutation."
6202
5758
  }
6203
5759
  },
6204
- "required": [
6205
- "customerUserErrors",
6206
- "userErrors"
6207
- ]
5760
+ "required": ["customerUserErrors", "userErrors"]
6208
5761
  }
6209
5762
  },
6210
5763
  "ShopifyStorefront_CustomerResetInput": {
@@ -6226,10 +5779,7 @@
6226
5779
  "description": "New password that will be set as part of the reset password process."
6227
5780
  }
6228
5781
  },
6229
- "required": [
6230
- "resetToken",
6231
- "password"
6232
- ]
5782
+ "required": ["resetToken", "password"]
6233
5783
  }
6234
5784
  },
6235
5785
  "ShopifyStorefront_CustomerResetPayload": {
@@ -6268,10 +5818,7 @@
6268
5818
  "description": "The list of errors that occurred from executing the mutation."
6269
5819
  }
6270
5820
  },
6271
- "required": [
6272
- "customerUserErrors",
6273
- "userErrors"
6274
- ]
5821
+ "required": ["customerUserErrors", "userErrors"]
6275
5822
  }
6276
5823
  },
6277
5824
  "ShopifyStorefront_CustomerUpdateInput": {
@@ -6351,10 +5898,7 @@
6351
5898
  "description": "The list of errors that occurred from executing the mutation."
6352
5899
  }
6353
5900
  },
6354
- "required": [
6355
- "customerUserErrors",
6356
- "userErrors"
6357
- ]
5901
+ "required": ["customerUserErrors", "userErrors"]
6358
5902
  }
6359
5903
  },
6360
5904
  "ShopifyStorefront_CustomerUserError": {
@@ -6384,13 +5928,9 @@
6384
5928
  "description": "The error message."
6385
5929
  }
6386
5930
  },
6387
- "required": [
6388
- "message"
6389
- ]
5931
+ "required": ["message"]
6390
5932
  },
6391
- "interfaces": [
6392
- "ShopifyStorefront_DisplayableError"
6393
- ]
5933
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
6394
5934
  },
6395
5935
  "ShopifyStorefront_DeliveryAddress": {
6396
5936
  "name": "ShopifyStorefront_DeliveryAddress",
@@ -6433,14 +5973,7 @@
6433
5973
  "id": "ShopifyStorefront_DeliveryMethodType",
6434
5974
  "description": "List of different delivery method types.",
6435
5975
  "schema": {
6436
- "enum": [
6437
- "SHIPPING",
6438
- "PICK_UP",
6439
- "RETAIL",
6440
- "LOCAL",
6441
- "PICKUP_POINT",
6442
- "NONE"
6443
- ]
5976
+ "enum": ["SHIPPING", "PICK_UP", "RETAIL", "LOCAL", "PICKUP_POINT", "NONE"]
6444
5977
  }
6445
5978
  },
6446
5979
  "ShopifyStorefront_DigitalWallet": {
@@ -6449,12 +5982,7 @@
6449
5982
  "id": "ShopifyStorefront_DigitalWallet",
6450
5983
  "description": "Digital wallet, such as Apple Pay, which can be used for accelerated checkouts.",
6451
5984
  "schema": {
6452
- "enum": [
6453
- "APPLE_PAY",
6454
- "ANDROID_PAY",
6455
- "GOOGLE_PAY",
6456
- "SHOPIFY_PAY"
6457
- ]
5985
+ "enum": ["APPLE_PAY", "ANDROID_PAY", "GOOGLE_PAY", "SHOPIFY_PAY"]
6458
5986
  }
6459
5987
  },
6460
5988
  "ShopifyStorefront_DiscountAllocation": {
@@ -6476,10 +6004,7 @@
6476
6004
  "description": "The discount this allocated amount originated from."
6477
6005
  }
6478
6006
  },
6479
- "required": [
6480
- "allocatedAmount",
6481
- "discountApplication"
6482
- ]
6007
+ "required": ["allocatedAmount", "discountApplication"]
6483
6008
  }
6484
6009
  },
6485
6010
  "ShopifyStorefront_DiscountApplication": {
@@ -6511,12 +6036,7 @@
6511
6036
  "description": "The value of the discount application."
6512
6037
  }
6513
6038
  },
6514
- "required": [
6515
- "allocationMethod",
6516
- "targetSelection",
6517
- "targetType",
6518
- "value"
6519
- ]
6039
+ "required": ["allocationMethod", "targetSelection", "targetType", "value"]
6520
6040
  },
6521
6041
  "type": "interface"
6522
6042
  },
@@ -6526,11 +6046,7 @@
6526
6046
  "id": "ShopifyStorefront_DiscountApplicationAllocationMethod",
6527
6047
  "description": "The method by which the discount's value is allocated onto its entitled lines.",
6528
6048
  "schema": {
6529
- "enum": [
6530
- "ACROSS",
6531
- "EACH",
6532
- "ONE"
6533
- ]
6049
+ "enum": ["ACROSS", "EACH", "ONE"]
6534
6050
  }
6535
6051
  },
6536
6052
  "ShopifyStorefront_DiscountApplicationConnection": {
@@ -6563,11 +6079,7 @@
6563
6079
  "description": "Information to aid in pagination."
6564
6080
  }
6565
6081
  },
6566
- "required": [
6567
- "edges",
6568
- "nodes",
6569
- "pageInfo"
6570
- ]
6082
+ "required": ["edges", "nodes", "pageInfo"]
6571
6083
  }
6572
6084
  },
6573
6085
  "ShopifyStorefront_DiscountApplicationEdge": {
@@ -6589,10 +6101,7 @@
6589
6101
  "description": "The item at the end of DiscountApplicationEdge."
6590
6102
  }
6591
6103
  },
6592
- "required": [
6593
- "cursor",
6594
- "node"
6595
- ]
6104
+ "required": ["cursor", "node"]
6596
6105
  }
6597
6106
  },
6598
6107
  "ShopifyStorefront_DiscountApplicationTargetSelection": {
@@ -6601,11 +6110,7 @@
6601
6110
  "id": "ShopifyStorefront_DiscountApplicationTargetSelection",
6602
6111
  "description": "The lines on the order to which the discount is applied, of the type defined by\nthe discount application's `targetType`. For example, the value `ENTITLED`, combined with a `targetType` of\n`LINE_ITEM`, applies the discount on all line items that are entitled to the discount.\nThe value `ALL`, combined with a `targetType` of `SHIPPING_LINE`, applies the discount on all shipping lines.\n",
6603
6112
  "schema": {
6604
- "enum": [
6605
- "ALL",
6606
- "ENTITLED",
6607
- "EXPLICIT"
6608
- ]
6113
+ "enum": ["ALL", "ENTITLED", "EXPLICIT"]
6609
6114
  }
6610
6115
  },
6611
6116
  "ShopifyStorefront_DiscountApplicationTargetType": {
@@ -6614,10 +6119,7 @@
6614
6119
  "id": "ShopifyStorefront_DiscountApplicationTargetType",
6615
6120
  "description": "The type of line (i.e. line item or shipping line) on an order that the discount is applicable towards.\n",
6616
6121
  "schema": {
6617
- "enum": [
6618
- "LINE_ITEM",
6619
- "SHIPPING_LINE"
6620
- ]
6122
+ "enum": ["LINE_ITEM", "SHIPPING_LINE"]
6621
6123
  }
6622
6124
  },
6623
6125
  "ShopifyStorefront_DiscountCodeApplication": {
@@ -6659,18 +6161,9 @@
6659
6161
  "description": "The value of the discount application."
6660
6162
  }
6661
6163
  },
6662
- "required": [
6663
- "allocationMethod",
6664
- "applicable",
6665
- "code",
6666
- "targetSelection",
6667
- "targetType",
6668
- "value"
6669
- ]
6164
+ "required": ["allocationMethod", "applicable", "code", "targetSelection", "targetType", "value"]
6670
6165
  },
6671
- "interfaces": [
6672
- "ShopifyStorefront_DiscountApplication"
6673
- ]
6166
+ "interfaces": ["ShopifyStorefront_DiscountApplication"]
6674
6167
  },
6675
6168
  "ShopifyStorefront_DisplayableError": {
6676
6169
  "name": "ShopifyStorefront_DisplayableError",
@@ -6694,9 +6187,7 @@
6694
6187
  "description": "The error message."
6695
6188
  }
6696
6189
  },
6697
- "required": [
6698
- "message"
6699
- ]
6190
+ "required": ["message"]
6700
6191
  },
6701
6192
  "type": "interface"
6702
6193
  },
@@ -6724,11 +6215,7 @@
6724
6215
  "@mapping": "shopify-storefront:Domain.url"
6725
6216
  }
6726
6217
  },
6727
- "required": [
6728
- "host",
6729
- "sslEnabled",
6730
- "url"
6731
- ]
6218
+ "required": ["host", "sslEnabled", "url"]
6732
6219
  }
6733
6220
  },
6734
6221
  "ShopifyStorefront_ExternalVideo": {
@@ -6787,19 +6274,9 @@
6787
6274
  "description": "The preview image for the media."
6788
6275
  }
6789
6276
  },
6790
- "required": [
6791
- "embedUrl",
6792
- "embeddedUrl",
6793
- "host",
6794
- "id",
6795
- "mediaContentType",
6796
- "originUrl"
6797
- ]
6277
+ "required": ["embedUrl", "embeddedUrl", "host", "id", "mediaContentType", "originUrl"]
6798
6278
  },
6799
- "interfaces": [
6800
- "ShopifyStorefront_Media",
6801
- "ShopifyStorefront_Node"
6802
- ]
6279
+ "interfaces": ["ShopifyStorefront_Media", "ShopifyStorefront_Node"]
6803
6280
  },
6804
6281
  "ShopifyStorefront_Filter": {
6805
6282
  "name": "ShopifyStorefront_Filter",
@@ -6833,12 +6310,7 @@
6833
6310
  "description": "The list of values for this filter."
6834
6311
  }
6835
6312
  },
6836
- "required": [
6837
- "id",
6838
- "label",
6839
- "type",
6840
- "values"
6841
- ]
6313
+ "required": ["id", "label", "type", "values"]
6842
6314
  }
6843
6315
  },
6844
6316
  "ShopifyStorefront_FilterType": {
@@ -6847,11 +6319,7 @@
6847
6319
  "id": "ShopifyStorefront_FilterType",
6848
6320
  "description": "The type of data that the filter group represents.\n\nFor more information, refer to [Filter products in a collection with the Storefront API]\n(https://shopify.dev/custom-storefronts/products-collections/filter-products).\n",
6849
6321
  "schema": {
6850
- "enum": [
6851
- "LIST",
6852
- "PRICE_RANGE",
6853
- "BOOLEAN"
6854
- ]
6322
+ "enum": ["LIST", "PRICE_RANGE", "BOOLEAN"]
6855
6323
  }
6856
6324
  },
6857
6325
  "ShopifyStorefront_FilterValue": {
@@ -6883,12 +6351,7 @@
6883
6351
  "description": "A human-friendly string for this filter value."
6884
6352
  }
6885
6353
  },
6886
- "required": [
6887
- "count",
6888
- "id",
6889
- "input",
6890
- "label"
6891
- ]
6354
+ "required": ["count", "id", "input", "label"]
6892
6355
  }
6893
6356
  },
6894
6357
  "ShopifyStorefront_Fulfillment": {
@@ -6953,10 +6416,7 @@
6953
6416
  "description": "Tracking information associated with the fulfillment,\nsuch as the tracking number and tracking URL."
6954
6417
  }
6955
6418
  },
6956
- "required": [
6957
- "fulfillmentLineItems",
6958
- "trackingInfo"
6959
- ]
6419
+ "required": ["fulfillmentLineItems", "trackingInfo"]
6960
6420
  }
6961
6421
  },
6962
6422
  "ShopifyStorefront_FulfillmentLineItem": {
@@ -6978,10 +6438,7 @@
6978
6438
  "description": "The amount fulfilled in this fulfillment."
6979
6439
  }
6980
6440
  },
6981
- "required": [
6982
- "lineItem",
6983
- "quantity"
6984
- ]
6441
+ "required": ["lineItem", "quantity"]
6985
6442
  }
6986
6443
  },
6987
6444
  "ShopifyStorefront_FulfillmentLineItemConnection": {
@@ -7014,11 +6471,7 @@
7014
6471
  "description": "Information to aid in pagination."
7015
6472
  }
7016
6473
  },
7017
- "required": [
7018
- "edges",
7019
- "nodes",
7020
- "pageInfo"
7021
- ]
6474
+ "required": ["edges", "nodes", "pageInfo"]
7022
6475
  }
7023
6476
  },
7024
6477
  "ShopifyStorefront_FulfillmentLineItemEdge": {
@@ -7040,10 +6493,7 @@
7040
6493
  "description": "The item at the end of FulfillmentLineItemEdge."
7041
6494
  }
7042
6495
  },
7043
- "required": [
7044
- "cursor",
7045
- "node"
7046
- ]
6496
+ "required": ["cursor", "node"]
7047
6497
  }
7048
6498
  },
7049
6499
  "ShopifyStorefront_FulfillmentTrackingInfo": {
@@ -7107,13 +6557,9 @@
7107
6557
  "@mapping": "shopify-storefront:GenericFile.url"
7108
6558
  }
7109
6559
  },
7110
- "required": [
7111
- "id"
7112
- ]
6560
+ "required": ["id"]
7113
6561
  },
7114
- "interfaces": [
7115
- "ShopifyStorefront_Node"
7116
- ]
6562
+ "interfaces": ["ShopifyStorefront_Node"]
7117
6563
  },
7118
6564
  "ShopifyStorefront_GeoCoordinateInput": {
7119
6565
  "name": "ShopifyStorefront_GeoCoordinateInput",
@@ -7134,10 +6580,7 @@
7134
6580
  "description": "The coordinate's longitude value."
7135
6581
  }
7136
6582
  },
7137
- "required": [
7138
- "latitude",
7139
- "longitude"
7140
- ]
6583
+ "required": ["latitude", "longitude"]
7141
6584
  }
7142
6585
  },
7143
6586
  "ShopifyStorefront_HasMetafields": {
@@ -7163,10 +6606,7 @@
7163
6606
  "description": "The identifier for the metafield."
7164
6607
  }
7165
6608
  },
7166
- "required": [
7167
- "namespace",
7168
- "key"
7169
- ]
6609
+ "required": ["namespace", "key"]
7170
6610
  },
7171
6611
  "description": "Returns a metafield found by namespace and key."
7172
6612
  },
@@ -7187,16 +6627,12 @@
7187
6627
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
7188
6628
  }
7189
6629
  },
7190
- "required": [
7191
- "identifiers"
7192
- ]
6630
+ "required": ["identifiers"]
7193
6631
  },
7194
6632
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
7195
6633
  }
7196
6634
  },
7197
- "required": [
7198
- "metafields"
7199
- ]
6635
+ "required": ["metafields"]
7200
6636
  },
7201
6637
  "type": "interface"
7202
6638
  },
@@ -7219,10 +6655,7 @@
7219
6655
  "description": "The identifier for the metafield."
7220
6656
  }
7221
6657
  },
7222
- "required": [
7223
- "namespace",
7224
- "key"
7225
- ]
6658
+ "required": ["namespace", "key"]
7226
6659
  }
7227
6660
  },
7228
6661
  "ShopifyStorefront_Image": {
@@ -7313,12 +6746,7 @@
7313
6746
  "description": "The original width of the image in pixels. Returns `null` if the image isn't hosted by Shopify."
7314
6747
  }
7315
6748
  },
7316
- "required": [
7317
- "originalSrc",
7318
- "src",
7319
- "transformedSrc",
7320
- "url"
7321
- ]
6749
+ "required": ["originalSrc", "src", "transformedSrc", "url"]
7322
6750
  }
7323
6751
  },
7324
6752
  "ShopifyStorefront_ImageConnection": {
@@ -7351,11 +6779,7 @@
7351
6779
  "description": "Information to aid in pagination."
7352
6780
  }
7353
6781
  },
7354
- "required": [
7355
- "edges",
7356
- "nodes",
7357
- "pageInfo"
7358
- ]
6782
+ "required": ["edges", "nodes", "pageInfo"]
7359
6783
  }
7360
6784
  },
7361
6785
  "ShopifyStorefront_ImageContentType": {
@@ -7364,11 +6788,7 @@
7364
6788
  "id": "ShopifyStorefront_ImageContentType",
7365
6789
  "description": "List of supported image content types.",
7366
6790
  "schema": {
7367
- "enum": [
7368
- "PNG",
7369
- "JPG",
7370
- "WEBP"
7371
- ]
6791
+ "enum": ["PNG", "JPG", "WEBP"]
7372
6792
  }
7373
6793
  },
7374
6794
  "ShopifyStorefront_ImageEdge": {
@@ -7390,10 +6810,7 @@
7390
6810
  "description": "The item at the end of ImageEdge."
7391
6811
  }
7392
6812
  },
7393
- "required": [
7394
- "cursor",
7395
- "node"
7396
- ]
6813
+ "required": ["cursor", "node"]
7397
6814
  }
7398
6815
  },
7399
6816
  "ShopifyStorefront_ImageTransformInput": {
@@ -7450,10 +6867,7 @@
7450
6867
  "@mapping": "shopify-storefront:InContext.type"
7451
6868
  }
7452
6869
  },
7453
- "required": [
7454
- "description",
7455
- "type"
7456
- ]
6870
+ "required": ["description", "type"]
7457
6871
  }
7458
6872
  },
7459
6873
  "ShopifyStorefront_InContextType": {
@@ -7473,10 +6887,7 @@
7473
6887
  "@mapping": "shopify-storefront:InContextType.name"
7474
6888
  }
7475
6889
  },
7476
- "required": [
7477
- "kind",
7478
- "name"
7479
- ]
6890
+ "required": ["kind", "name"]
7480
6891
  }
7481
6892
  },
7482
6893
  "ShopifyStorefront_Language": {
@@ -7503,11 +6914,7 @@
7503
6914
  "description": "The name of the language in the current language."
7504
6915
  }
7505
6916
  },
7506
- "required": [
7507
- "endonymName",
7508
- "isoCode",
7509
- "name"
7510
- ]
6917
+ "required": ["endonymName", "isoCode", "name"]
7511
6918
  }
7512
6919
  },
7513
6920
  "ShopifyStorefront_LanguageCode": {
@@ -7704,13 +7111,7 @@
7704
7111
  "description": "The market including the country of the active localized experience. Use the `@inContext` directive to change this value."
7705
7112
  }
7706
7113
  },
7707
- "required": [
7708
- "availableCountries",
7709
- "availableLanguages",
7710
- "country",
7711
- "language",
7712
- "market"
7713
- ]
7114
+ "required": ["availableCountries", "availableLanguages", "country", "language", "market"]
7714
7115
  }
7715
7116
  },
7716
7117
  "ShopifyStorefront_Location": {
@@ -7747,10 +7148,7 @@
7747
7148
  "description": "The identifier for the metafield."
7748
7149
  }
7749
7150
  },
7750
- "required": [
7751
- "namespace",
7752
- "key"
7753
- ]
7151
+ "required": ["namespace", "key"]
7754
7152
  },
7755
7153
  "description": "Returns a metafield found by namespace and key."
7756
7154
  },
@@ -7771,9 +7169,7 @@
7771
7169
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
7772
7170
  }
7773
7171
  },
7774
- "required": [
7775
- "identifiers"
7776
- ]
7172
+ "required": ["identifiers"]
7777
7173
  },
7778
7174
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
7779
7175
  },
@@ -7783,17 +7179,9 @@
7783
7179
  "description": "The name of the location."
7784
7180
  }
7785
7181
  },
7786
- "required": [
7787
- "address",
7788
- "id",
7789
- "metafields",
7790
- "name"
7791
- ]
7182
+ "required": ["address", "id", "metafields", "name"]
7792
7183
  },
7793
- "interfaces": [
7794
- "ShopifyStorefront_HasMetafields",
7795
- "ShopifyStorefront_Node"
7796
- ]
7184
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
7797
7185
  },
7798
7186
  "ShopifyStorefront_LocationAddress": {
7799
7187
  "name": "ShopifyStorefront_LocationAddress",
@@ -7867,9 +7255,7 @@
7867
7255
  "description": "The ZIP code of the location."
7868
7256
  }
7869
7257
  },
7870
- "required": [
7871
- "formatted"
7872
- ]
7258
+ "required": ["formatted"]
7873
7259
  }
7874
7260
  },
7875
7261
  "ShopifyStorefront_LocationConnection": {
@@ -7902,11 +7288,7 @@
7902
7288
  "description": "Information to aid in pagination."
7903
7289
  }
7904
7290
  },
7905
- "required": [
7906
- "edges",
7907
- "nodes",
7908
- "pageInfo"
7909
- ]
7291
+ "required": ["edges", "nodes", "pageInfo"]
7910
7292
  }
7911
7293
  },
7912
7294
  "ShopifyStorefront_LocationEdge": {
@@ -7928,10 +7310,7 @@
7928
7310
  "description": "The item at the end of LocationEdge."
7929
7311
  }
7930
7312
  },
7931
- "required": [
7932
- "cursor",
7933
- "node"
7934
- ]
7313
+ "required": ["cursor", "node"]
7935
7314
  }
7936
7315
  },
7937
7316
  "ShopifyStorefront_LocationSortKeys": {
@@ -7940,12 +7319,7 @@
7940
7319
  "id": "ShopifyStorefront_LocationSortKeys",
7941
7320
  "description": "The set of valid sort keys for the Location query.",
7942
7321
  "schema": {
7943
- "enum": [
7944
- "ID",
7945
- "NAME",
7946
- "CITY",
7947
- "DISTANCE"
7948
- ]
7322
+ "enum": ["ID", "NAME", "CITY", "DISTANCE"]
7949
7323
  }
7950
7324
  },
7951
7325
  "ShopifyStorefront_MailingAddress": {
@@ -8072,14 +7446,9 @@
8072
7446
  "description": "The zip or postal code of the address."
8073
7447
  }
8074
7448
  },
8075
- "required": [
8076
- "formatted",
8077
- "id"
8078
- ]
7449
+ "required": ["formatted", "id"]
8079
7450
  },
8080
- "interfaces": [
8081
- "ShopifyStorefront_Node"
8082
- ]
7451
+ "interfaces": ["ShopifyStorefront_Node"]
8083
7452
  },
8084
7453
  "ShopifyStorefront_MailingAddressConnection": {
8085
7454
  "name": "ShopifyStorefront_MailingAddressConnection",
@@ -8111,11 +7480,7 @@
8111
7480
  "description": "Information to aid in pagination."
8112
7481
  }
8113
7482
  },
8114
- "required": [
8115
- "edges",
8116
- "nodes",
8117
- "pageInfo"
8118
- ]
7483
+ "required": ["edges", "nodes", "pageInfo"]
8119
7484
  }
8120
7485
  },
8121
7486
  "ShopifyStorefront_MailingAddressEdge": {
@@ -8137,10 +7502,7 @@
8137
7502
  "description": "The item at the end of MailingAddressEdge."
8138
7503
  }
8139
7504
  },
8140
- "required": [
8141
- "cursor",
8142
- "node"
8143
- ]
7505
+ "required": ["cursor", "node"]
8144
7506
  }
8145
7507
  },
8146
7508
  "ShopifyStorefront_MailingAddressInput": {
@@ -8243,17 +7605,9 @@
8243
7605
  "description": "The value of the discount application."
8244
7606
  }
8245
7607
  },
8246
- "required": [
8247
- "allocationMethod",
8248
- "targetSelection",
8249
- "targetType",
8250
- "title",
8251
- "value"
8252
- ]
7608
+ "required": ["allocationMethod", "targetSelection", "targetType", "title", "value"]
8253
7609
  },
8254
- "interfaces": [
8255
- "ShopifyStorefront_DiscountApplication"
8256
- ]
7610
+ "interfaces": ["ShopifyStorefront_DiscountApplication"]
8257
7611
  },
8258
7612
  "ShopifyStorefront_Market": {
8259
7613
  "name": "ShopifyStorefront_Market",
@@ -8289,10 +7643,7 @@
8289
7643
  "description": "The identifier for the metafield."
8290
7644
  }
8291
7645
  },
8292
- "required": [
8293
- "namespace",
8294
- "key"
8295
- ]
7646
+ "required": ["namespace", "key"]
8296
7647
  },
8297
7648
  "description": "Returns a metafield found by namespace and key."
8298
7649
  },
@@ -8313,23 +7664,14 @@
8313
7664
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
8314
7665
  }
8315
7666
  },
8316
- "required": [
8317
- "identifiers"
8318
- ]
7667
+ "required": ["identifiers"]
8319
7668
  },
8320
7669
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
8321
7670
  }
8322
7671
  },
8323
- "required": [
8324
- "handle",
8325
- "id",
8326
- "metafields"
8327
- ]
7672
+ "required": ["handle", "id", "metafields"]
8328
7673
  },
8329
- "interfaces": [
8330
- "ShopifyStorefront_HasMetafields",
8331
- "ShopifyStorefront_Node"
8332
- ]
7674
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
8333
7675
  },
8334
7676
  "ShopifyStorefront_Media": {
8335
7677
  "name": "ShopifyStorefront_Media",
@@ -8360,9 +7702,7 @@
8360
7702
  "description": "The preview image for the media."
8361
7703
  }
8362
7704
  },
8363
- "required": [
8364
- "mediaContentType"
8365
- ]
7705
+ "required": ["mediaContentType"]
8366
7706
  },
8367
7707
  "type": "interface"
8368
7708
  },
@@ -8396,11 +7736,7 @@
8396
7736
  "description": "Information to aid in pagination."
8397
7737
  }
8398
7738
  },
8399
- "required": [
8400
- "edges",
8401
- "nodes",
8402
- "pageInfo"
8403
- ]
7739
+ "required": ["edges", "nodes", "pageInfo"]
8404
7740
  }
8405
7741
  },
8406
7742
  "ShopifyStorefront_MediaContentType": {
@@ -8409,12 +7745,7 @@
8409
7745
  "id": "ShopifyStorefront_MediaContentType",
8410
7746
  "description": "The possible content types for a media object.",
8411
7747
  "schema": {
8412
- "enum": [
8413
- "EXTERNAL_VIDEO",
8414
- "IMAGE",
8415
- "MODEL_3D",
8416
- "VIDEO"
8417
- ]
7748
+ "enum": ["EXTERNAL_VIDEO", "IMAGE", "MODEL_3D", "VIDEO"]
8418
7749
  }
8419
7750
  },
8420
7751
  "ShopifyStorefront_MediaEdge": {
@@ -8436,10 +7767,7 @@
8436
7767
  "description": "The item at the end of MediaEdge."
8437
7768
  }
8438
7769
  },
8439
- "required": [
8440
- "cursor",
8441
- "node"
8442
- ]
7770
+ "required": ["cursor", "node"]
8443
7771
  }
8444
7772
  },
8445
7773
  "ShopifyStorefront_MediaHost": {
@@ -8448,10 +7776,7 @@
8448
7776
  "id": "ShopifyStorefront_MediaHost",
8449
7777
  "description": "Host for a Media Resource.",
8450
7778
  "schema": {
8451
- "enum": [
8452
- "YOUTUBE",
8453
- "VIMEO"
8454
- ]
7779
+ "enum": ["YOUTUBE", "VIMEO"]
8455
7780
  }
8456
7781
  },
8457
7782
  "ShopifyStorefront_MediaImage": {
@@ -8494,15 +7819,9 @@
8494
7819
  "description": "The preview image for the media."
8495
7820
  }
8496
7821
  },
8497
- "required": [
8498
- "id",
8499
- "mediaContentType"
8500
- ]
7822
+ "required": ["id", "mediaContentType"]
8501
7823
  },
8502
- "interfaces": [
8503
- "ShopifyStorefront_Media",
8504
- "ShopifyStorefront_Node"
8505
- ]
7824
+ "interfaces": ["ShopifyStorefront_Media", "ShopifyStorefront_Node"]
8506
7825
  },
8507
7826
  "ShopifyStorefront_MediaPresentation": {
8508
7827
  "name": "ShopifyStorefront_MediaPresentation",
@@ -8524,9 +7843,7 @@
8524
7843
  "description": "The format to transform the settings."
8525
7844
  }
8526
7845
  },
8527
- "required": [
8528
- "format"
8529
- ]
7846
+ "required": ["format"]
8530
7847
  }
8531
7848
  },
8532
7849
  "id": {
@@ -8536,13 +7853,9 @@
8536
7853
  "description": "A globally-unique ID."
8537
7854
  }
8538
7855
  },
8539
- "required": [
8540
- "id"
8541
- ]
7856
+ "required": ["id"]
8542
7857
  },
8543
- "interfaces": [
8544
- "ShopifyStorefront_Node"
8545
- ]
7858
+ "interfaces": ["ShopifyStorefront_Node"]
8546
7859
  },
8547
7860
  "ShopifyStorefront_MediaPresentationFormat": {
8548
7861
  "name": "ShopifyStorefront_MediaPresentationFormat",
@@ -8550,10 +7863,7 @@
8550
7863
  "id": "ShopifyStorefront_MediaPresentationFormat",
8551
7864
  "description": "The possible formats for a media presentation.",
8552
7865
  "schema": {
8553
- "enum": [
8554
- "MODEL_VIEWER",
8555
- "IMAGE"
8556
- ]
7866
+ "enum": ["MODEL_VIEWER", "IMAGE"]
8557
7867
  }
8558
7868
  },
8559
7869
  "ShopifyStorefront_Menu": {
@@ -8594,17 +7904,9 @@
8594
7904
  "description": "The menu's title."
8595
7905
  }
8596
7906
  },
8597
- "required": [
8598
- "handle",
8599
- "id",
8600
- "items",
8601
- "itemsCount",
8602
- "title"
8603
- ]
7907
+ "required": ["handle", "id", "items", "itemsCount", "title"]
8604
7908
  },
8605
- "interfaces": [
8606
- "ShopifyStorefront_Node"
8607
- ]
7909
+ "interfaces": ["ShopifyStorefront_Node"]
8608
7910
  },
8609
7911
  "ShopifyStorefront_MenuItem": {
8610
7912
  "name": "ShopifyStorefront_MenuItem",
@@ -8658,17 +7960,9 @@
8658
7960
  "@mapping": "shopify-storefront:MenuItem.url"
8659
7961
  }
8660
7962
  },
8661
- "required": [
8662
- "id",
8663
- "items",
8664
- "tags",
8665
- "title",
8666
- "type"
8667
- ]
7963
+ "required": ["id", "items", "tags", "title", "type"]
8668
7964
  },
8669
- "interfaces": [
8670
- "ShopifyStorefront_Node"
8671
- ]
7965
+ "interfaces": ["ShopifyStorefront_Node"]
8672
7966
  },
8673
7967
  "ShopifyStorefront_MenuItemType": {
8674
7968
  "name": "ShopifyStorefront_MenuItemType",
@@ -8790,20 +8084,9 @@
8790
8084
  "description": "The data stored in the metafield. Always stored as a string, regardless of the metafield's type."
8791
8085
  }
8792
8086
  },
8793
- "required": [
8794
- "createdAt",
8795
- "id",
8796
- "key",
8797
- "namespace",
8798
- "parentResource",
8799
- "type",
8800
- "updatedAt",
8801
- "value"
8802
- ]
8087
+ "required": ["createdAt", "id", "key", "namespace", "parentResource", "type", "updatedAt", "value"]
8803
8088
  },
8804
- "interfaces": [
8805
- "ShopifyStorefront_Node"
8806
- ]
8089
+ "interfaces": ["ShopifyStorefront_Node"]
8807
8090
  },
8808
8091
  "ShopifyStorefront_MetafieldDeleteErrorCode": {
8809
8092
  "name": "ShopifyStorefront_MetafieldDeleteErrorCode",
@@ -8811,10 +8094,7 @@
8811
8094
  "id": "ShopifyStorefront_MetafieldDeleteErrorCode",
8812
8095
  "description": "Possible error codes that can be returned by `MetafieldDeleteUserError`.",
8813
8096
  "schema": {
8814
- "enum": [
8815
- "INVALID_OWNER",
8816
- "METAFIELD_DOES_NOT_EXIST"
8817
- ]
8097
+ "enum": ["INVALID_OWNER", "METAFIELD_DOES_NOT_EXIST"]
8818
8098
  }
8819
8099
  },
8820
8100
  "ShopifyStorefront_MetafieldDeleteUserError": {
@@ -8844,13 +8124,9 @@
8844
8124
  "description": "The error message."
8845
8125
  }
8846
8126
  },
8847
- "required": [
8848
- "message"
8849
- ]
8127
+ "required": ["message"]
8850
8128
  },
8851
- "interfaces": [
8852
- "ShopifyStorefront_DisplayableError"
8853
- ]
8129
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
8854
8130
  },
8855
8131
  "ShopifyStorefront_MetafieldFilter": {
8856
8132
  "name": "ShopifyStorefront_MetafieldFilter",
@@ -8876,11 +8152,7 @@
8876
8152
  "description": "The value of the metafield."
8877
8153
  }
8878
8154
  },
8879
- "required": [
8880
- "namespace",
8881
- "key",
8882
- "value"
8883
- ]
8155
+ "required": ["namespace", "key", "value"]
8884
8156
  }
8885
8157
  },
8886
8158
  "ShopifyStorefront_MetafieldParentResource": {
@@ -8993,11 +8265,7 @@
8993
8265
  "description": "Information to aid in pagination."
8994
8266
  }
8995
8267
  },
8996
- "required": [
8997
- "edges",
8998
- "nodes",
8999
- "pageInfo"
9000
- ]
8268
+ "required": ["edges", "nodes", "pageInfo"]
9001
8269
  }
9002
8270
  },
9003
8271
  "ShopifyStorefront_MetafieldReferenceEdge": {
@@ -9019,10 +8287,7 @@
9019
8287
  "description": "The item at the end of MetafieldReferenceEdge."
9020
8288
  }
9021
8289
  },
9022
- "required": [
9023
- "cursor",
9024
- "node"
9025
- ]
8290
+ "required": ["cursor", "node"]
9026
8291
  }
9027
8292
  },
9028
8293
  "ShopifyStorefront_MetafieldsSetUserError": {
@@ -9057,13 +8322,9 @@
9057
8322
  "description": "The error message."
9058
8323
  }
9059
8324
  },
9060
- "required": [
9061
- "message"
9062
- ]
8325
+ "required": ["message"]
9063
8326
  },
9064
- "interfaces": [
9065
- "ShopifyStorefront_DisplayableError"
9066
- ]
8327
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
9067
8328
  },
9068
8329
  "ShopifyStorefront_MetafieldsSetUserErrorCode": {
9069
8330
  "name": "ShopifyStorefront_MetafieldsSetUserErrorCode",
@@ -9103,9 +8364,7 @@
9103
8364
  "description": "The key of the field."
9104
8365
  }
9105
8366
  },
9106
- "required": [
9107
- "key"
9108
- ]
8367
+ "required": ["key"]
9109
8368
  },
9110
8369
  "description": "Accesses a field of the object by key."
9111
8370
  },
@@ -9139,17 +8398,9 @@
9139
8398
  "@mapping": "shopify-storefront:Metaobject.updatedAt"
9140
8399
  }
9141
8400
  },
9142
- "required": [
9143
- "fields",
9144
- "handle",
9145
- "id",
9146
- "type",
9147
- "updatedAt"
9148
- ]
8401
+ "required": ["fields", "handle", "id", "type", "updatedAt"]
9149
8402
  },
9150
- "interfaces": [
9151
- "ShopifyStorefront_Node"
9152
- ]
8403
+ "interfaces": ["ShopifyStorefront_Node"]
9153
8404
  },
9154
8405
  "ShopifyStorefront_MetaobjectConnection": {
9155
8406
  "name": "ShopifyStorefront_MetaobjectConnection",
@@ -9181,11 +8432,7 @@
9181
8432
  "description": "Information to aid in pagination."
9182
8433
  }
9183
8434
  },
9184
- "required": [
9185
- "edges",
9186
- "nodes",
9187
- "pageInfo"
9188
- ]
8435
+ "required": ["edges", "nodes", "pageInfo"]
9189
8436
  }
9190
8437
  },
9191
8438
  "ShopifyStorefront_MetaobjectEdge": {
@@ -9207,10 +8454,7 @@
9207
8454
  "description": "The item at the end of MetaobjectEdge."
9208
8455
  }
9209
8456
  },
9210
- "required": [
9211
- "cursor",
9212
- "node"
9213
- ]
8457
+ "required": ["cursor", "node"]
9214
8458
  }
9215
8459
  },
9216
8460
  "ShopifyStorefront_MetaobjectField": {
@@ -9268,10 +8512,7 @@
9268
8512
  "description": "The field value."
9269
8513
  }
9270
8514
  },
9271
- "required": [
9272
- "key",
9273
- "type"
9274
- ]
8515
+ "required": ["key", "type"]
9275
8516
  }
9276
8517
  },
9277
8518
  "ShopifyStorefront_MetaobjectHandleInput": {
@@ -9293,10 +8534,7 @@
9293
8534
  "description": "The type of the metaobject."
9294
8535
  }
9295
8536
  },
9296
- "required": [
9297
- "handle",
9298
- "type"
9299
- ]
8537
+ "required": ["handle", "type"]
9300
8538
  }
9301
8539
  },
9302
8540
  "ShopifyStorefront_Model3d": {
@@ -9342,16 +8580,9 @@
9342
8580
  "description": "The sources for a 3d model."
9343
8581
  }
9344
8582
  },
9345
- "required": [
9346
- "id",
9347
- "mediaContentType",
9348
- "sources"
9349
- ]
8583
+ "required": ["id", "mediaContentType", "sources"]
9350
8584
  },
9351
- "interfaces": [
9352
- "ShopifyStorefront_Media",
9353
- "ShopifyStorefront_Node"
9354
- ]
8585
+ "interfaces": ["ShopifyStorefront_Media", "ShopifyStorefront_Node"]
9355
8586
  },
9356
8587
  "ShopifyStorefront_Model3dSource": {
9357
8588
  "name": "ShopifyStorefront_Model3dSource",
@@ -9382,12 +8613,7 @@
9382
8613
  "description": "The URL of the 3d model."
9383
8614
  }
9384
8615
  },
9385
- "required": [
9386
- "filesize",
9387
- "format",
9388
- "mimeType",
9389
- "url"
9390
- ]
8616
+ "required": ["filesize", "format", "mimeType", "url"]
9391
8617
  }
9392
8618
  },
9393
8619
  "ShopifyStorefront_MoneyInput": {
@@ -9409,10 +8635,7 @@
9409
8635
  "description": "Currency of the money."
9410
8636
  }
9411
8637
  },
9412
- "required": [
9413
- "amount",
9414
- "currencyCode"
9415
- ]
8638
+ "required": ["amount", "currencyCode"]
9416
8639
  }
9417
8640
  },
9418
8641
  "ShopifyStorefront_MoneyV2": {
@@ -9434,10 +8657,7 @@
9434
8657
  "description": "Currency of the money."
9435
8658
  }
9436
8659
  },
9437
- "required": [
9438
- "amount",
9439
- "currencyCode"
9440
- ]
8660
+ "required": ["amount", "currencyCode"]
9441
8661
  }
9442
8662
  },
9443
8663
  "ShopifyStorefront_Node": {
@@ -9455,9 +8675,7 @@
9455
8675
  "description": "A globally-unique ID."
9456
8676
  }
9457
8677
  },
9458
- "required": [
9459
- "id"
9460
- ]
8678
+ "required": ["id"]
9461
8679
  },
9462
8680
  "type": "interface"
9463
8681
  },
@@ -9647,10 +8865,7 @@
9647
8865
  "description": "The identifier for the metafield."
9648
8866
  }
9649
8867
  },
9650
- "required": [
9651
- "namespace",
9652
- "key"
9653
- ]
8868
+ "required": ["namespace", "key"]
9654
8869
  },
9655
8870
  "description": "Returns a metafield found by namespace and key."
9656
8871
  },
@@ -9671,9 +8886,7 @@
9671
8886
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
9672
8887
  }
9673
8888
  },
9674
- "required": [
9675
- "identifiers"
9676
- ]
8889
+ "required": ["identifiers"]
9677
8890
  },
9678
8891
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
9679
8892
  },
@@ -9824,10 +9037,7 @@
9824
9037
  "totalShippingPriceV2"
9825
9038
  ]
9826
9039
  },
9827
- "interfaces": [
9828
- "ShopifyStorefront_HasMetafields",
9829
- "ShopifyStorefront_Node"
9830
- ]
9040
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
9831
9041
  },
9832
9042
  "ShopifyStorefront_OrderCancelReason": {
9833
9043
  "name": "ShopifyStorefront_OrderCancelReason",
@@ -9835,13 +9045,7 @@
9835
9045
  "id": "ShopifyStorefront_OrderCancelReason",
9836
9046
  "description": "Represents the reason for the order's cancellation.",
9837
9047
  "schema": {
9838
- "enum": [
9839
- "CUSTOMER",
9840
- "DECLINED",
9841
- "FRAUD",
9842
- "INVENTORY",
9843
- "OTHER"
9844
- ]
9048
+ "enum": ["CUSTOMER", "DECLINED", "FRAUD", "INVENTORY", "OTHER"]
9845
9049
  }
9846
9050
  },
9847
9051
  "ShopifyStorefront_OrderConnection": {
@@ -9879,12 +9083,7 @@
9879
9083
  "@mapping": "shopify-storefront:OrderConnection.totalCount"
9880
9084
  }
9881
9085
  },
9882
- "required": [
9883
- "edges",
9884
- "nodes",
9885
- "pageInfo",
9886
- "totalCount"
9887
- ]
9086
+ "required": ["edges", "nodes", "pageInfo", "totalCount"]
9888
9087
  }
9889
9088
  },
9890
9089
  "ShopifyStorefront_OrderEdge": {
@@ -9906,10 +9105,7 @@
9906
9105
  "description": "The item at the end of OrderEdge."
9907
9106
  }
9908
9107
  },
9909
- "required": [
9910
- "cursor",
9911
- "node"
9912
- ]
9108
+ "required": ["cursor", "node"]
9913
9109
  }
9914
9110
  },
9915
9111
  "ShopifyStorefront_OrderFinancialStatus": {
@@ -9918,15 +9114,7 @@
9918
9114
  "id": "ShopifyStorefront_OrderFinancialStatus",
9919
9115
  "description": "Represents the order's current financial status.",
9920
9116
  "schema": {
9921
- "enum": [
9922
- "PENDING",
9923
- "AUTHORIZED",
9924
- "PARTIALLY_PAID",
9925
- "PARTIALLY_REFUNDED",
9926
- "VOIDED",
9927
- "PAID",
9928
- "REFUNDED"
9929
- ]
9117
+ "enum": ["PENDING", "AUTHORIZED", "PARTIALLY_PAID", "PARTIALLY_REFUNDED", "VOIDED", "PAID", "REFUNDED"]
9930
9118
  }
9931
9119
  },
9932
9120
  "ShopifyStorefront_OrderFulfillmentStatus": {
@@ -10044,11 +9232,7 @@
10044
9232
  "description": "Information to aid in pagination."
10045
9233
  }
10046
9234
  },
10047
- "required": [
10048
- "edges",
10049
- "nodes",
10050
- "pageInfo"
10051
- ]
9235
+ "required": ["edges", "nodes", "pageInfo"]
10052
9236
  }
10053
9237
  },
10054
9238
  "ShopifyStorefront_OrderLineItemEdge": {
@@ -10070,10 +9254,7 @@
10070
9254
  "description": "The item at the end of OrderLineItemEdge."
10071
9255
  }
10072
9256
  },
10073
- "required": [
10074
- "cursor",
10075
- "node"
10076
- ]
9257
+ "required": ["cursor", "node"]
10077
9258
  }
10078
9259
  },
10079
9260
  "ShopifyStorefront_OrderSortKeys": {
@@ -10082,12 +9263,7 @@
10082
9263
  "id": "ShopifyStorefront_OrderSortKeys",
10083
9264
  "description": "The set of valid sort keys for the Order query.",
10084
9265
  "schema": {
10085
- "enum": [
10086
- "PROCESSED_AT",
10087
- "TOTAL_PRICE",
10088
- "ID",
10089
- "RELEVANCE"
10090
- ]
9266
+ "enum": ["PROCESSED_AT", "TOTAL_PRICE", "ID", "RELEVANCE"]
10091
9267
  }
10092
9268
  },
10093
9269
  "ShopifyStorefront_Page": {
@@ -10139,10 +9315,7 @@
10139
9315
  "description": "The identifier for the metafield."
10140
9316
  }
10141
9317
  },
10142
- "required": [
10143
- "namespace",
10144
- "key"
10145
- ]
9318
+ "required": ["namespace", "key"]
10146
9319
  },
10147
9320
  "description": "Returns a metafield found by namespace and key."
10148
9321
  },
@@ -10163,9 +9336,7 @@
10163
9336
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
10164
9337
  }
10165
9338
  },
10166
- "required": [
10167
- "identifiers"
10168
- ]
9339
+ "required": ["identifiers"]
10169
9340
  },
10170
9341
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
10171
9342
  },
@@ -10190,16 +9361,7 @@
10190
9361
  "@mapping": "shopify-storefront:Page.updatedAt"
10191
9362
  }
10192
9363
  },
10193
- "required": [
10194
- "body",
10195
- "bodySummary",
10196
- "createdAt",
10197
- "handle",
10198
- "id",
10199
- "metafields",
10200
- "title",
10201
- "updatedAt"
10202
- ]
9364
+ "required": ["body", "bodySummary", "createdAt", "handle", "id", "metafields", "title", "updatedAt"]
10203
9365
  },
10204
9366
  "interfaces": [
10205
9367
  "ShopifyStorefront_HasMetafields",
@@ -10237,11 +9399,7 @@
10237
9399
  "description": "Information to aid in pagination."
10238
9400
  }
10239
9401
  },
10240
- "required": [
10241
- "edges",
10242
- "nodes",
10243
- "pageInfo"
10244
- ]
9402
+ "required": ["edges", "nodes", "pageInfo"]
10245
9403
  }
10246
9404
  },
10247
9405
  "ShopifyStorefront_PageEdge": {
@@ -10263,10 +9421,7 @@
10263
9421
  "description": "The item at the end of PageEdge."
10264
9422
  }
10265
9423
  },
10266
- "required": [
10267
- "cursor",
10268
- "node"
10269
- ]
9424
+ "required": ["cursor", "node"]
10270
9425
  }
10271
9426
  },
10272
9427
  "ShopifyStorefront_PageInfo": {
@@ -10298,10 +9453,7 @@
10298
9453
  "description": "The cursor corresponding to the first node in edges."
10299
9454
  }
10300
9455
  },
10301
- "required": [
10302
- "hasNextPage",
10303
- "hasPreviousPage"
10304
- ]
9456
+ "required": ["hasNextPage", "hasPreviousPage"]
10305
9457
  }
10306
9458
  },
10307
9459
  "ShopifyStorefront_PageSortKeys": {
@@ -10310,12 +9462,7 @@
10310
9462
  "id": "ShopifyStorefront_PageSortKeys",
10311
9463
  "description": "The set of valid sort keys for the Page query.",
10312
9464
  "schema": {
10313
- "enum": [
10314
- "TITLE",
10315
- "UPDATED_AT",
10316
- "ID",
10317
- "RELEVANCE"
10318
- ]
9465
+ "enum": ["TITLE", "UPDATED_AT", "ID", "RELEVANCE"]
10319
9466
  }
10320
9467
  },
10321
9468
  "ShopifyStorefront_Payment": {
@@ -10389,18 +9536,9 @@
10389
9536
  "description": "The actual transaction recorded by Shopify after having processed the payment with the gateway."
10390
9537
  }
10391
9538
  },
10392
- "required": [
10393
- "amount",
10394
- "amountV2",
10395
- "checkout",
10396
- "id",
10397
- "ready",
10398
- "test"
10399
- ]
9539
+ "required": ["amount", "amountV2", "checkout", "id", "ready", "test"]
10400
9540
  },
10401
- "interfaces": [
10402
- "ShopifyStorefront_Node"
10403
- ]
9541
+ "interfaces": ["ShopifyStorefront_Node"]
10404
9542
  },
10405
9543
  "ShopifyStorefront_PaymentSettings": {
10406
9544
  "name": "ShopifyStorefront_PaymentSettings",
@@ -10471,13 +9609,7 @@
10471
9609
  "id": "ShopifyStorefront_PaymentTokenType",
10472
9610
  "description": "The valid values for the types of payment token.",
10473
9611
  "schema": {
10474
- "enum": [
10475
- "APPLE_PAY",
10476
- "VAULT",
10477
- "SHOPIFY_PAY",
10478
- "GOOGLE_PAY",
10479
- "STRIPE_VAULT_TOKEN"
10480
- ]
9612
+ "enum": ["APPLE_PAY", "VAULT", "SHOPIFY_PAY", "GOOGLE_PAY", "STRIPE_VAULT_TOKEN"]
10481
9613
  }
10482
9614
  },
10483
9615
  "ShopifyStorefront_PriceRangeFilter": {
@@ -10516,9 +9648,7 @@
10516
9648
  "description": "The percentage value of the object."
10517
9649
  }
10518
9650
  },
10519
- "required": [
10520
- "percentage"
10521
- ]
9651
+ "required": ["percentage"]
10522
9652
  }
10523
9653
  },
10524
9654
  "ShopifyStorefront_PricingValue": {
@@ -10718,10 +9848,7 @@
10718
9848
  "description": "The identifier for the metafield."
10719
9849
  }
10720
9850
  },
10721
- "required": [
10722
- "namespace",
10723
- "key"
10724
- ]
9851
+ "required": ["namespace", "key"]
10725
9852
  },
10726
9853
  "description": "Returns a metafield found by namespace and key."
10727
9854
  },
@@ -10742,9 +9869,7 @@
10742
9869
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
10743
9870
  }
10744
9871
  },
10745
- "required": [
10746
- "identifiers"
10747
- ]
9872
+ "required": ["identifiers"]
10748
9873
  },
10749
9874
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
10750
9875
  },
@@ -10863,9 +9988,7 @@
10863
9988
  "description": "The input fields used for a selected option.\n\nThe input must not contain more than `250` values."
10864
9989
  }
10865
9990
  },
10866
- "required": [
10867
- "selectedOptions"
10868
- ]
9991
+ "required": ["selectedOptions"]
10869
9992
  },
10870
9993
  "description": "Find a product’s variant based on its selected options.\nThis is useful for converting a user’s selection of product options into a single matching variant.\nIf there is not a variant for the selected options, `null` will be returned."
10871
9994
  },
@@ -10950,16 +10073,7 @@
10950
10073
  "id": "ShopifyStorefront_ProductCollectionSortKeys",
10951
10074
  "description": "The set of valid sort keys for the ProductCollection query.",
10952
10075
  "schema": {
10953
- "enum": [
10954
- "TITLE",
10955
- "PRICE",
10956
- "BEST_SELLING",
10957
- "CREATED",
10958
- "ID",
10959
- "MANUAL",
10960
- "COLLECTION_DEFAULT",
10961
- "RELEVANCE"
10962
- ]
10076
+ "enum": ["TITLE", "PRICE", "BEST_SELLING", "CREATED", "ID", "MANUAL", "COLLECTION_DEFAULT", "RELEVANCE"]
10963
10077
  }
10964
10078
  },
10965
10079
  "ShopifyStorefront_ProductConnection": {
@@ -11000,12 +10114,7 @@
11000
10114
  "description": "Information to aid in pagination."
11001
10115
  }
11002
10116
  },
11003
- "required": [
11004
- "edges",
11005
- "filters",
11006
- "nodes",
11007
- "pageInfo"
11008
- ]
10117
+ "required": ["edges", "filters", "nodes", "pageInfo"]
11009
10118
  }
11010
10119
  },
11011
10120
  "ShopifyStorefront_ProductEdge": {
@@ -11027,10 +10136,7 @@
11027
10136
  "description": "The item at the end of ProductEdge."
11028
10137
  }
11029
10138
  },
11030
- "required": [
11031
- "cursor",
11032
- "node"
11033
- ]
10139
+ "required": ["cursor", "node"]
11034
10140
  }
11035
10141
  },
11036
10142
  "ShopifyStorefront_ProductFilter": {
@@ -11090,12 +10196,7 @@
11090
10196
  "id": "ShopifyStorefront_ProductImageSortKeys",
11091
10197
  "description": "The set of valid sort keys for the ProductImage query.",
11092
10198
  "schema": {
11093
- "enum": [
11094
- "CREATED_AT",
11095
- "POSITION",
11096
- "ID",
11097
- "RELEVANCE"
11098
- ]
10199
+ "enum": ["CREATED_AT", "POSITION", "ID", "RELEVANCE"]
11099
10200
  }
11100
10201
  },
11101
10202
  "ShopifyStorefront_ProductMediaSortKeys": {
@@ -11104,11 +10205,7 @@
11104
10205
  "id": "ShopifyStorefront_ProductMediaSortKeys",
11105
10206
  "description": "The set of valid sort keys for the ProductMedia query.",
11106
10207
  "schema": {
11107
- "enum": [
11108
- "POSITION",
11109
- "ID",
11110
- "RELEVANCE"
11111
- ]
10208
+ "enum": ["POSITION", "ID", "RELEVANCE"]
11112
10209
  }
11113
10210
  },
11114
10211
  "ShopifyStorefront_ProductOption": {
@@ -11139,15 +10236,9 @@
11139
10236
  "description": "The corresponding value to the product option name."
11140
10237
  }
11141
10238
  },
11142
- "required": [
11143
- "id",
11144
- "name",
11145
- "values"
11146
- ]
10239
+ "required": ["id", "name", "values"]
11147
10240
  },
11148
- "interfaces": [
11149
- "ShopifyStorefront_Node"
11150
- ]
10241
+ "interfaces": ["ShopifyStorefront_Node"]
11151
10242
  },
11152
10243
  "ShopifyStorefront_ProductPriceRange": {
11153
10244
  "name": "ShopifyStorefront_ProductPriceRange",
@@ -11168,10 +10259,7 @@
11168
10259
  "description": "The lowest variant's price."
11169
10260
  }
11170
10261
  },
11171
- "required": [
11172
- "maxVariantPrice",
11173
- "minVariantPrice"
11174
- ]
10262
+ "required": ["maxVariantPrice", "minVariantPrice"]
11175
10263
  }
11176
10264
  },
11177
10265
  "ShopifyStorefront_ProductRecommendationIntent": {
@@ -11180,10 +10268,7 @@
11180
10268
  "id": "ShopifyStorefront_ProductRecommendationIntent",
11181
10269
  "description": "The recommendation intent that is used to generate product recommendations.\nYou can use intent to generate product recommendations according to different strategies.\n",
11182
10270
  "schema": {
11183
- "enum": [
11184
- "RELATED",
11185
- "COMPLEMENTARY"
11186
- ]
10271
+ "enum": ["RELATED", "COMPLEMENTARY"]
11187
10272
  }
11188
10273
  },
11189
10274
  "ShopifyStorefront_ProductSortKeys": {
@@ -11265,10 +10350,7 @@
11265
10350
  "description": "The identifier for the metafield."
11266
10351
  }
11267
10352
  },
11268
- "required": [
11269
- "namespace",
11270
- "key"
11271
- ]
10353
+ "required": ["namespace", "key"]
11272
10354
  },
11273
10355
  "description": "Returns a metafield found by namespace and key."
11274
10356
  },
@@ -11289,9 +10371,7 @@
11289
10371
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
11290
10372
  }
11291
10373
  },
11292
- "required": [
11293
- "identifiers"
11294
- ]
10374
+ "required": ["identifiers"]
11295
10375
  },
11296
10376
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
11297
10377
  },
@@ -11442,10 +10522,7 @@
11442
10522
  "weightUnit"
11443
10523
  ]
11444
10524
  },
11445
- "interfaces": [
11446
- "ShopifyStorefront_HasMetafields",
11447
- "ShopifyStorefront_Node"
11448
- ]
10525
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
11449
10526
  },
11450
10527
  "ShopifyStorefront_ProductVariantConnection": {
11451
10528
  "name": "ShopifyStorefront_ProductVariantConnection",
@@ -11477,11 +10554,7 @@
11477
10554
  "description": "Information to aid in pagination."
11478
10555
  }
11479
10556
  },
11480
- "required": [
11481
- "edges",
11482
- "nodes",
11483
- "pageInfo"
11484
- ]
10557
+ "required": ["edges", "nodes", "pageInfo"]
11485
10558
  }
11486
10559
  },
11487
10560
  "ShopifyStorefront_ProductVariantEdge": {
@@ -11503,10 +10576,7 @@
11503
10576
  "description": "The item at the end of ProductVariantEdge."
11504
10577
  }
11505
10578
  },
11506
- "required": [
11507
- "cursor",
11508
- "node"
11509
- ]
10579
+ "required": ["cursor", "node"]
11510
10580
  }
11511
10581
  },
11512
10582
  "ShopifyStorefront_ProductVariantSortKeys": {
@@ -11515,13 +10585,7 @@
11515
10585
  "id": "ShopifyStorefront_ProductVariantSortKeys",
11516
10586
  "description": "The set of valid sort keys for the ProductVariant query.",
11517
10587
  "schema": {
11518
- "enum": [
11519
- "TITLE",
11520
- "SKU",
11521
- "POSITION",
11522
- "ID",
11523
- "RELEVANCE"
11524
- ]
10588
+ "enum": ["TITLE", "SKU", "POSITION", "ID", "RELEVANCE"]
11525
10589
  }
11526
10590
  },
11527
10591
  "ShopifyStorefront_SEO": {
@@ -11579,17 +10643,9 @@
11579
10643
  "description": "The value of the discount application."
11580
10644
  }
11581
10645
  },
11582
- "required": [
11583
- "allocationMethod",
11584
- "targetSelection",
11585
- "targetType",
11586
- "title",
11587
- "value"
11588
- ]
10646
+ "required": ["allocationMethod", "targetSelection", "targetType", "title", "value"]
11589
10647
  },
11590
- "interfaces": [
11591
- "ShopifyStorefront_DiscountApplication"
11592
- ]
10648
+ "interfaces": ["ShopifyStorefront_DiscountApplication"]
11593
10649
  },
11594
10650
  "ShopifyStorefront_SelectedOption": {
11595
10651
  "name": "ShopifyStorefront_SelectedOption",
@@ -11610,10 +10666,7 @@
11610
10666
  "description": "The product option’s value."
11611
10667
  }
11612
10668
  },
11613
- "required": [
11614
- "name",
11615
- "value"
11616
- ]
10669
+ "required": ["name", "value"]
11617
10670
  }
11618
10671
  },
11619
10672
  "ShopifyStorefront_SelectedOptionInput": {
@@ -11635,10 +10688,7 @@
11635
10688
  "description": "The product option’s value."
11636
10689
  }
11637
10690
  },
11638
- "required": [
11639
- "name",
11640
- "value"
11641
- ]
10691
+ "required": ["name", "value"]
11642
10692
  }
11643
10693
  },
11644
10694
  "ShopifyStorefront_SellingPlan": {
@@ -11692,14 +10742,7 @@
11692
10742
  "description": "Whether purchasing the selling plan will result in multiple deliveries."
11693
10743
  }
11694
10744
  },
11695
- "required": [
11696
- "checkoutCharge",
11697
- "id",
11698
- "name",
11699
- "options",
11700
- "priceAdjustments",
11701
- "recurringDeliveries"
11702
- ]
10745
+ "required": ["checkoutCharge", "id", "name", "options", "priceAdjustments", "recurringDeliveries"]
11703
10746
  }
11704
10747
  },
11705
10748
  "ShopifyStorefront_SellingPlanAllocation": {
@@ -11734,12 +10777,7 @@
11734
10777
  "description": "A representation of how products and variants can be sold and purchased. For example, an individual selling plan could be '6 weeks of prepaid granola, delivered weekly'."
11735
10778
  }
11736
10779
  },
11737
- "required": [
11738
- "checkoutChargeAmount",
11739
- "priceAdjustments",
11740
- "remainingBalanceChargeAmount",
11741
- "sellingPlan"
11742
- ]
10780
+ "required": ["checkoutChargeAmount", "priceAdjustments", "remainingBalanceChargeAmount", "sellingPlan"]
11743
10781
  }
11744
10782
  },
11745
10783
  "ShopifyStorefront_SellingPlanAllocationConnection": {
@@ -11772,11 +10810,7 @@
11772
10810
  "description": "Information to aid in pagination."
11773
10811
  }
11774
10812
  },
11775
- "required": [
11776
- "edges",
11777
- "nodes",
11778
- "pageInfo"
11779
- ]
10813
+ "required": ["edges", "nodes", "pageInfo"]
11780
10814
  }
11781
10815
  },
11782
10816
  "ShopifyStorefront_SellingPlanAllocationEdge": {
@@ -11798,10 +10832,7 @@
11798
10832
  "description": "The item at the end of SellingPlanAllocationEdge."
11799
10833
  }
11800
10834
  },
11801
- "required": [
11802
- "cursor",
11803
- "node"
11804
- ]
10835
+ "required": ["cursor", "node"]
11805
10836
  }
11806
10837
  },
11807
10838
  "ShopifyStorefront_SellingPlanAllocationPriceAdjustment": {
@@ -11833,11 +10864,7 @@
11833
10864
  "description": "The resulting price per unit for the variant associated with the selling plan. If the variant isn't sold by quantity or measurement, then this field returns `null`."
11834
10865
  }
11835
10866
  },
11836
- "required": [
11837
- "compareAtPrice",
11838
- "perDeliveryPrice",
11839
- "price"
11840
- ]
10867
+ "required": ["compareAtPrice", "perDeliveryPrice", "price"]
11841
10868
  }
11842
10869
  },
11843
10870
  "ShopifyStorefront_SellingPlanCheckoutCharge": {
@@ -11859,10 +10886,7 @@
11859
10886
  "description": "The charge value for the checkout charge."
11860
10887
  }
11861
10888
  },
11862
- "required": [
11863
- "type",
11864
- "value"
11865
- ]
10889
+ "required": ["type", "value"]
11866
10890
  }
11867
10891
  },
11868
10892
  "ShopifyStorefront_SellingPlanCheckoutChargePercentageValue": {
@@ -11879,9 +10903,7 @@
11879
10903
  "description": "The percentage value of the price used for checkout charge."
11880
10904
  }
11881
10905
  },
11882
- "required": [
11883
- "percentage"
11884
- ]
10906
+ "required": ["percentage"]
11885
10907
  }
11886
10908
  },
11887
10909
  "ShopifyStorefront_SellingPlanCheckoutChargeType": {
@@ -11890,10 +10912,7 @@
11890
10912
  "id": "ShopifyStorefront_SellingPlanCheckoutChargeType",
11891
10913
  "description": "The checkout charge when the full amount isn't charged at checkout.",
11892
10914
  "schema": {
11893
- "enum": [
11894
- "PERCENTAGE",
11895
- "PRICE"
11896
- ]
10915
+ "enum": ["PERCENTAGE", "PRICE"]
11897
10916
  }
11898
10917
  },
11899
10918
  "ShopifyStorefront_SellingPlanCheckoutChargeValue": {
@@ -11942,11 +10961,7 @@
11942
10961
  "description": "Information to aid in pagination."
11943
10962
  }
11944
10963
  },
11945
- "required": [
11946
- "edges",
11947
- "nodes",
11948
- "pageInfo"
11949
- ]
10964
+ "required": ["edges", "nodes", "pageInfo"]
11950
10965
  }
11951
10966
  },
11952
10967
  "ShopifyStorefront_SellingPlanEdge": {
@@ -11968,10 +10983,7 @@
11968
10983
  "description": "The item at the end of SellingPlanEdge."
11969
10984
  }
11970
10985
  },
11971
- "required": [
11972
- "cursor",
11973
- "node"
11974
- ]
10986
+ "required": ["cursor", "node"]
11975
10987
  }
11976
10988
  },
11977
10989
  "ShopifyStorefront_SellingPlanFixedAmountPriceAdjustment": {
@@ -11988,9 +11000,7 @@
11988
11000
  "description": "The money value of the price adjustment."
11989
11001
  }
11990
11002
  },
11991
- "required": [
11992
- "adjustmentAmount"
11993
- ]
11003
+ "required": ["adjustmentAmount"]
11994
11004
  }
11995
11005
  },
11996
11006
  "ShopifyStorefront_SellingPlanFixedPriceAdjustment": {
@@ -12007,9 +11017,7 @@
12007
11017
  "description": "A new price of the variant when it's purchased with the selling plan."
12008
11018
  }
12009
11019
  },
12010
- "required": [
12011
- "price"
12012
- ]
11020
+ "required": ["price"]
12013
11021
  }
12014
11022
  },
12015
11023
  "ShopifyStorefront_SellingPlanGroup": {
@@ -12070,11 +11078,7 @@
12070
11078
  "description": "A list of selling plans in a selling plan group. A selling plan is a representation of how products and variants can be sold and purchased. For example, an individual selling plan could be '6 weeks of prepaid granola, delivered weekly'."
12071
11079
  }
12072
11080
  },
12073
- "required": [
12074
- "name",
12075
- "options",
12076
- "sellingPlans"
12077
- ]
11081
+ "required": ["name", "options", "sellingPlans"]
12078
11082
  }
12079
11083
  },
12080
11084
  "ShopifyStorefront_SellingPlanGroupConnection": {
@@ -12107,11 +11111,7 @@
12107
11111
  "description": "Information to aid in pagination."
12108
11112
  }
12109
11113
  },
12110
- "required": [
12111
- "edges",
12112
- "nodes",
12113
- "pageInfo"
12114
- ]
11114
+ "required": ["edges", "nodes", "pageInfo"]
12115
11115
  }
12116
11116
  },
12117
11117
  "ShopifyStorefront_SellingPlanGroupEdge": {
@@ -12133,10 +11133,7 @@
12133
11133
  "description": "The item at the end of SellingPlanGroupEdge."
12134
11134
  }
12135
11135
  },
12136
- "required": [
12137
- "cursor",
12138
- "node"
12139
- ]
11136
+ "required": ["cursor", "node"]
12140
11137
  }
12141
11138
  },
12142
11139
  "ShopifyStorefront_SellingPlanGroupOption": {
@@ -12161,10 +11158,7 @@
12161
11158
  "description": "The values for the options specified by the selling plans in the selling plan group. For example, '1 week', '2 weeks', '3 weeks'."
12162
11159
  }
12163
11160
  },
12164
- "required": [
12165
- "name",
12166
- "values"
12167
- ]
11161
+ "required": ["name", "values"]
12168
11162
  }
12169
11163
  },
12170
11164
  "ShopifyStorefront_SellingPlanOption": {
@@ -12202,9 +11196,7 @@
12202
11196
  "description": "The percentage value of the price adjustment."
12203
11197
  }
12204
11198
  },
12205
- "required": [
12206
- "adjustmentPercentage"
12207
- ]
11199
+ "required": ["adjustmentPercentage"]
12208
11200
  }
12209
11201
  },
12210
11202
  "ShopifyStorefront_SellingPlanPriceAdjustment": {
@@ -12226,9 +11218,7 @@
12226
11218
  "description": "The number of orders that the price adjustment applies to. If the price adjustment always applies, then this field is `null`."
12227
11219
  }
12228
11220
  },
12229
- "required": [
12230
- "adjustmentValue"
12231
- ]
11221
+ "required": ["adjustmentValue"]
12232
11222
  }
12233
11223
  },
12234
11224
  "ShopifyStorefront_SellingPlanPriceAdjustmentValue": {
@@ -12280,12 +11270,7 @@
12280
11270
  "description": "Title of this shipping rate."
12281
11271
  }
12282
11272
  },
12283
- "required": [
12284
- "handle",
12285
- "price",
12286
- "priceV2",
12287
- "title"
12288
- ]
11273
+ "required": ["handle", "price", "priceV2", "title"]
12289
11274
  }
12290
11275
  },
12291
11276
  "ShopifyStorefront_Shop": {
@@ -12327,10 +11312,7 @@
12327
11312
  "description": "The identifier for the metafield."
12328
11313
  }
12329
11314
  },
12330
- "required": [
12331
- "namespace",
12332
- "key"
12333
- ]
11315
+ "required": ["namespace", "key"]
12334
11316
  },
12335
11317
  "description": "Returns a metafield found by namespace and key."
12336
11318
  },
@@ -12351,9 +11333,7 @@
12351
11333
  "description": "The list of metafields to retrieve by namespace and key.\n\nThe input must not contain more than `250` values."
12352
11334
  }
12353
11335
  },
12354
- "required": [
12355
- "identifiers"
12356
- ]
11336
+ "required": ["identifiers"]
12357
11337
  },
12358
11338
  "description": "The metafields associated with the resource matching the supplied list of namespaces and keys."
12359
11339
  },
@@ -12411,20 +11391,9 @@
12411
11391
  "description": "The shop’s terms of service."
12412
11392
  }
12413
11393
  },
12414
- "required": [
12415
- "id",
12416
- "metafields",
12417
- "moneyFormat",
12418
- "name",
12419
- "paymentSettings",
12420
- "primaryDomain",
12421
- "shipsToCountries"
12422
- ]
11394
+ "required": ["id", "metafields", "moneyFormat", "name", "paymentSettings", "primaryDomain", "shipsToCountries"]
12423
11395
  },
12424
- "interfaces": [
12425
- "ShopifyStorefront_HasMetafields",
12426
- "ShopifyStorefront_Node"
12427
- ]
11396
+ "interfaces": ["ShopifyStorefront_HasMetafields", "ShopifyStorefront_Node"]
12428
11397
  },
12429
11398
  "ShopifyStorefront_ShopPayWalletContentInput": {
12430
11399
  "name": "ShopifyStorefront_ShopPayWalletContentInput",
@@ -12445,10 +11414,7 @@
12445
11414
  "description": "Session token for transaction."
12446
11415
  }
12447
11416
  },
12448
- "required": [
12449
- "billingAddress",
12450
- "sessionToken"
12451
- ]
11417
+ "required": ["billingAddress", "sessionToken"]
12452
11418
  }
12453
11419
  },
12454
11420
  "ShopifyStorefront_ShopPolicy": {
@@ -12486,17 +11452,9 @@
12486
11452
  "@mapping": "shopify-storefront:ShopPolicy.url"
12487
11453
  }
12488
11454
  },
12489
- "required": [
12490
- "body",
12491
- "handle",
12492
- "id",
12493
- "title",
12494
- "url"
12495
- ]
11455
+ "required": ["body", "handle", "id", "title", "url"]
12496
11456
  },
12497
- "interfaces": [
12498
- "ShopifyStorefront_Node"
12499
- ]
11457
+ "interfaces": ["ShopifyStorefront_Node"]
12500
11458
  },
12501
11459
  "ShopifyStorefront_ShopPolicyWithDefault": {
12502
11460
  "name": "ShopifyStorefront_ShopPolicyWithDefault",
@@ -12533,12 +11491,7 @@
12533
11491
  "@mapping": "shopify-storefront:ShopPolicyWithDefault.url"
12534
11492
  }
12535
11493
  },
12536
- "required": [
12537
- "body",
12538
- "handle",
12539
- "title",
12540
- "url"
12541
- ]
11494
+ "required": ["body", "handle", "title", "url"]
12542
11495
  }
12543
11496
  },
12544
11497
  "ShopifyStorefront_StoreAvailability": {
@@ -12565,11 +11518,7 @@
12565
11518
  "description": "Returns the estimated amount of time it takes for pickup to be ready (Example: Usually ready in 24 hours)."
12566
11519
  }
12567
11520
  },
12568
- "required": [
12569
- "available",
12570
- "location",
12571
- "pickUpTime"
12572
- ]
11521
+ "required": ["available", "location", "pickUpTime"]
12573
11522
  }
12574
11523
  },
12575
11524
  "ShopifyStorefront_StoreAvailabilityConnection": {
@@ -12602,11 +11551,7 @@
12602
11551
  "description": "Information to aid in pagination."
12603
11552
  }
12604
11553
  },
12605
- "required": [
12606
- "edges",
12607
- "nodes",
12608
- "pageInfo"
12609
- ]
11554
+ "required": ["edges", "nodes", "pageInfo"]
12610
11555
  }
12611
11556
  },
12612
11557
  "ShopifyStorefront_StoreAvailabilityEdge": {
@@ -12628,10 +11573,7 @@
12628
11573
  "description": "The item at the end of StoreAvailabilityEdge."
12629
11574
  }
12630
11575
  },
12631
- "required": [
12632
- "cursor",
12633
- "node"
12634
- ]
11576
+ "required": ["cursor", "node"]
12635
11577
  }
12636
11578
  },
12637
11579
  "ShopifyStorefront_StringConnection": {
@@ -12656,10 +11598,7 @@
12656
11598
  "description": "Information to aid in pagination."
12657
11599
  }
12658
11600
  },
12659
- "required": [
12660
- "edges",
12661
- "pageInfo"
12662
- ]
11601
+ "required": ["edges", "pageInfo"]
12663
11602
  }
12664
11603
  },
12665
11604
  "ShopifyStorefront_StringEdge": {
@@ -12681,10 +11620,7 @@
12681
11620
  "description": "The item at the end of StringEdge."
12682
11621
  }
12683
11622
  },
12684
- "required": [
12685
- "cursor",
12686
- "node"
12687
- ]
11623
+ "required": ["cursor", "node"]
12688
11624
  }
12689
11625
  },
12690
11626
  "ShopifyStorefront_SubmissionError": {
@@ -12706,9 +11642,7 @@
12706
11642
  "description": "The error message."
12707
11643
  }
12708
11644
  },
12709
- "required": [
12710
- "code"
12711
- ]
11645
+ "required": ["code"]
12712
11646
  }
12713
11647
  },
12714
11648
  "ShopifyStorefront_SubmissionErrorCode": {
@@ -12828,9 +11762,7 @@
12828
11762
  "description": "The ID of the cart completion attempt that will be used for polling for the result."
12829
11763
  }
12830
11764
  },
12831
- "required": [
12832
- "attemptId"
12833
- ]
11765
+ "required": ["attemptId"]
12834
11766
  }
12835
11767
  },
12836
11768
  "ShopifyStorefront_SubmitFailed": {
@@ -12855,9 +11787,7 @@
12855
11787
  "description": "The list of errors that occurred from executing the mutation."
12856
11788
  }
12857
11789
  },
12858
- "required": [
12859
- "errors"
12860
- ]
11790
+ "required": ["errors"]
12861
11791
  }
12862
11792
  },
12863
11793
  "ShopifyStorefront_SubmitSuccess": {
@@ -12874,9 +11804,7 @@
12874
11804
  "description": "The ID of the cart completion attempt that will be used for polling for the result."
12875
11805
  }
12876
11806
  },
12877
- "required": [
12878
- "attemptId"
12879
- ]
11807
+ "required": ["attemptId"]
12880
11808
  }
12881
11809
  },
12882
11810
  "ShopifyStorefront_SubmitThrottled": {
@@ -12893,9 +11821,7 @@
12893
11821
  "@mapping": "shopify-storefront:SubmitThrottled.pollAfter"
12894
11822
  }
12895
11823
  },
12896
- "required": [
12897
- "pollAfter"
12898
- ]
11824
+ "required": ["pollAfter"]
12899
11825
  }
12900
11826
  },
12901
11827
  "ShopifyStorefront_TokenizedPaymentInputV3": {
@@ -12943,13 +11869,7 @@
12943
11869
  "description": "The type of payment token."
12944
11870
  }
12945
11871
  },
12946
- "required": [
12947
- "paymentAmount",
12948
- "idempotencyKey",
12949
- "billingAddress",
12950
- "paymentData",
12951
- "type"
12952
- ]
11872
+ "required": ["paymentAmount", "idempotencyKey", "billingAddress", "paymentData", "type"]
12953
11873
  }
12954
11874
  },
12955
11875
  "ShopifyStorefront_Transaction": {
@@ -12993,13 +11913,7 @@
12993
11913
  "description": "Whether the transaction was done in test mode or not."
12994
11914
  }
12995
11915
  },
12996
- "required": [
12997
- "amount",
12998
- "amountV2",
12999
- "kind",
13000
- "status",
13001
- "test"
13002
- ]
11916
+ "required": ["amount", "amountV2", "kind", "status", "test"]
13003
11917
  }
13004
11918
  },
13005
11919
  "ShopifyStorefront_TransactionKind": {
@@ -13008,13 +11922,7 @@
13008
11922
  "id": "ShopifyStorefront_TransactionKind",
13009
11923
  "description": "The different kinds of order transactions.",
13010
11924
  "schema": {
13011
- "enum": [
13012
- "SALE",
13013
- "CAPTURE",
13014
- "AUTHORIZATION",
13015
- "EMV_AUTHORIZATION",
13016
- "CHANGE"
13017
- ]
11925
+ "enum": ["SALE", "CAPTURE", "AUTHORIZATION", "EMV_AUTHORIZATION", "CHANGE"]
13018
11926
  }
13019
11927
  },
13020
11928
  "ShopifyStorefront_TransactionStatus": {
@@ -13023,12 +11931,7 @@
13023
11931
  "id": "ShopifyStorefront_TransactionStatus",
13024
11932
  "description": "Transaction statuses describe the status of a transaction.",
13025
11933
  "schema": {
13026
- "enum": [
13027
- "PENDING",
13028
- "SUCCESS",
13029
- "FAILURE",
13030
- "ERROR"
13031
- ]
11934
+ "enum": ["PENDING", "SUCCESS", "FAILURE", "ERROR"]
13032
11935
  }
13033
11936
  },
13034
11937
  "ShopifyStorefront_UnitPriceMeasurement": {
@@ -13065,10 +11968,7 @@
13065
11968
  "description": "The reference value for the unit price measurement."
13066
11969
  }
13067
11970
  },
13068
- "required": [
13069
- "quantityValue",
13070
- "referenceValue"
13071
- ]
11971
+ "required": ["quantityValue", "referenceValue"]
13072
11972
  }
13073
11973
  },
13074
11974
  "ShopifyStorefront_UnitPriceMeasurementMeasuredType": {
@@ -13077,12 +11977,7 @@
13077
11977
  "id": "ShopifyStorefront_UnitPriceMeasurementMeasuredType",
13078
11978
  "description": "The accepted types of unit of measurement.",
13079
11979
  "schema": {
13080
- "enum": [
13081
- "VOLUME",
13082
- "WEIGHT",
13083
- "LENGTH",
13084
- "AREA"
13085
- ]
11980
+ "enum": ["VOLUME", "WEIGHT", "LENGTH", "AREA"]
13086
11981
  }
13087
11982
  },
13088
11983
  "ShopifyStorefront_UnitPriceMeasurementMeasuredUnit": {
@@ -13091,19 +11986,7 @@
13091
11986
  "id": "ShopifyStorefront_UnitPriceMeasurementMeasuredUnit",
13092
11987
  "description": "The valid units of measurement for a unit price measurement.",
13093
11988
  "schema": {
13094
- "enum": [
13095
- "ML",
13096
- "CL",
13097
- "L",
13098
- "M3",
13099
- "MG",
13100
- "G",
13101
- "KG",
13102
- "MM",
13103
- "CM",
13104
- "M",
13105
- "M2"
13106
- ]
11989
+ "enum": ["ML", "CL", "L", "M3", "MG", "G", "KG", "MM", "CM", "M", "M2"]
13107
11990
  }
13108
11991
  },
13109
11992
  "ShopifyStorefront_UnitSystem": {
@@ -13112,10 +11995,7 @@
13112
11995
  "id": "ShopifyStorefront_UnitSystem",
13113
11996
  "description": "Systems of weights and measures.",
13114
11997
  "schema": {
13115
- "enum": [
13116
- "IMPERIAL_SYSTEM",
13117
- "METRIC_SYSTEM"
13118
- ]
11998
+ "enum": ["IMPERIAL_SYSTEM", "METRIC_SYSTEM"]
13119
11999
  }
13120
12000
  },
13121
12001
  "ShopifyStorefront_UrlRedirect": {
@@ -13143,15 +12023,9 @@
13143
12023
  "description": "The target location where the user will be redirected to."
13144
12024
  }
13145
12025
  },
13146
- "required": [
13147
- "id",
13148
- "path",
13149
- "target"
13150
- ]
12026
+ "required": ["id", "path", "target"]
13151
12027
  },
13152
- "interfaces": [
13153
- "ShopifyStorefront_Node"
13154
- ]
12028
+ "interfaces": ["ShopifyStorefront_Node"]
13155
12029
  },
13156
12030
  "ShopifyStorefront_UrlRedirectConnection": {
13157
12031
  "name": "ShopifyStorefront_UrlRedirectConnection",
@@ -13183,11 +12057,7 @@
13183
12057
  "description": "Information to aid in pagination."
13184
12058
  }
13185
12059
  },
13186
- "required": [
13187
- "edges",
13188
- "nodes",
13189
- "pageInfo"
13190
- ]
12060
+ "required": ["edges", "nodes", "pageInfo"]
13191
12061
  }
13192
12062
  },
13193
12063
  "ShopifyStorefront_UrlRedirectEdge": {
@@ -13209,10 +12079,7 @@
13209
12079
  "description": "The item at the end of UrlRedirectEdge."
13210
12080
  }
13211
12081
  },
13212
- "required": [
13213
- "cursor",
13214
- "node"
13215
- ]
12082
+ "required": ["cursor", "node"]
13216
12083
  }
13217
12084
  },
13218
12085
  "ShopifyStorefront_UserError": {
@@ -13237,13 +12104,9 @@
13237
12104
  "description": "The error message."
13238
12105
  }
13239
12106
  },
13240
- "required": [
13241
- "message"
13242
- ]
12107
+ "required": ["message"]
13243
12108
  },
13244
- "interfaces": [
13245
- "ShopifyStorefront_DisplayableError"
13246
- ]
12109
+ "interfaces": ["ShopifyStorefront_DisplayableError"]
13247
12110
  },
13248
12111
  "ShopifyStorefront_VariantOptionFilter": {
13249
12112
  "name": "ShopifyStorefront_VariantOptionFilter",
@@ -13264,10 +12127,7 @@
13264
12127
  "description": "The value of the variant option to filter on."
13265
12128
  }
13266
12129
  },
13267
- "required": [
13268
- "name",
13269
- "value"
13270
- ]
12130
+ "required": ["name", "value"]
13271
12131
  }
13272
12132
  },
13273
12133
  "ShopifyStorefront_Video": {
@@ -13313,16 +12173,9 @@
13313
12173
  "description": "The sources for a video."
13314
12174
  }
13315
12175
  },
13316
- "required": [
13317
- "id",
13318
- "mediaContentType",
13319
- "sources"
13320
- ]
12176
+ "required": ["id", "mediaContentType", "sources"]
13321
12177
  },
13322
- "interfaces": [
13323
- "ShopifyStorefront_Media",
13324
- "ShopifyStorefront_Node"
13325
- ]
12178
+ "interfaces": ["ShopifyStorefront_Media", "ShopifyStorefront_Node"]
13326
12179
  },
13327
12180
  "ShopifyStorefront_VideoSource": {
13328
12181
  "name": "ShopifyStorefront_VideoSource",
@@ -13358,13 +12211,7 @@
13358
12211
  "description": "The width of the video."
13359
12212
  }
13360
12213
  },
13361
- "required": [
13362
- "format",
13363
- "height",
13364
- "mimeType",
13365
- "url",
13366
- "width"
13367
- ]
12214
+ "required": ["format", "height", "mimeType", "url", "width"]
13368
12215
  }
13369
12216
  },
13370
12217
  "ShopifyStorefront_WeightUnit": {
@@ -13373,12 +12220,7 @@
13373
12220
  "id": "ShopifyStorefront_WeightUnit",
13374
12221
  "description": "Units of measurement for weight.",
13375
12222
  "schema": {
13376
- "enum": [
13377
- "KILOGRAMS",
13378
- "GRAMS",
13379
- "POUNDS",
13380
- "OUNCES"
13381
- ]
12223
+ "enum": ["KILOGRAMS", "GRAMS", "POUNDS", "OUNCES"]
13382
12224
  }
13383
12225
  }
13384
12226
  },
@@ -13406,9 +12248,7 @@
13406
12248
  "description": "The ID of the `Article`."
13407
12249
  }
13408
12250
  },
13409
- "required": [
13410
- "id"
13411
- ]
12251
+ "required": ["id"]
13412
12252
  },
13413
12253
  "shape": "ShopifyStorefront_Article"
13414
12254
  },
@@ -13515,9 +12355,7 @@
13515
12355
  "description": "The handle of the blog."
13516
12356
  }
13517
12357
  },
13518
- "required": [
13519
- "handle"
13520
- ]
12358
+ "required": ["handle"]
13521
12359
  },
13522
12360
  "shape": "ShopifyStorefront_Blog"
13523
12361
  },
@@ -13595,9 +12433,7 @@
13595
12433
  "description": "The ID of the cart."
13596
12434
  }
13597
12435
  },
13598
- "required": [
13599
- "id"
13600
- ]
12436
+ "required": ["id"]
13601
12437
  },
13602
12438
  "shape": "ShopifyStorefront_Cart"
13603
12439
  },
@@ -13623,9 +12459,7 @@
13623
12459
  "description": "The ID of the attempt."
13624
12460
  }
13625
12461
  },
13626
- "required": [
13627
- "attemptId"
13628
- ]
12462
+ "required": ["attemptId"]
13629
12463
  },
13630
12464
  "shape": "ShopifyStorefront_CartCompletionAttemptResult"
13631
12465
  },
@@ -13681,9 +12515,7 @@
13681
12515
  "description": "The handle of the collection."
13682
12516
  }
13683
12517
  },
13684
- "required": [
13685
- "handle"
13686
- ]
12518
+ "required": ["handle"]
13687
12519
  },
13688
12520
  "shape": "ShopifyStorefront_Collection"
13689
12521
  },
@@ -13760,9 +12592,7 @@
13760
12592
  "description": "The customer access token."
13761
12593
  }
13762
12594
  },
13763
- "required": [
13764
- "customerAccessToken"
13765
- ]
12595
+ "required": ["customerAccessToken"]
13766
12596
  },
13767
12597
  "shape": "ShopifyStorefront_Customer"
13768
12598
  },
@@ -13855,9 +12685,7 @@
13855
12685
  "description": "The navigation menu's handle."
13856
12686
  }
13857
12687
  },
13858
- "required": [
13859
- "handle"
13860
- ]
12688
+ "required": ["handle"]
13861
12689
  },
13862
12690
  "shape": "ShopifyStorefront_Menu"
13863
12691
  },
@@ -13938,9 +12766,7 @@
13938
12766
  "default": false
13939
12767
  }
13940
12768
  },
13941
- "required": [
13942
- "type"
13943
- ]
12769
+ "required": ["type"]
13944
12770
  },
13945
12771
  "shape": "ShopifyStorefront_MetaobjectConnection"
13946
12772
  },
@@ -13967,9 +12793,7 @@
13967
12793
  "description": "The ID of the Node to return."
13968
12794
  }
13969
12795
  },
13970
- "required": [
13971
- "id"
13972
- ]
12796
+ "required": ["id"]
13973
12797
  },
13974
12798
  "shape": "ShopifyStorefront_Node"
13975
12799
  },
@@ -13999,9 +12823,7 @@
13999
12823
  "description": "The IDs of the Nodes to return.\n\nThe input must not contain more than `250` values."
14000
12824
  }
14001
12825
  },
14002
- "required": [
14003
- "ids"
14004
- ]
12826
+ "required": ["ids"]
14005
12827
  },
14006
12828
  "shape": {
14007
12829
  "type": "array",
@@ -14062,9 +12884,7 @@
14062
12884
  "description": "The handle of the page."
14063
12885
  }
14064
12886
  },
14065
- "required": [
14066
- "handle"
14067
- ]
12887
+ "required": ["handle"]
14068
12888
  },
14069
12889
  "shape": "ShopifyStorefront_Page"
14070
12890
  },
@@ -14171,9 +12991,7 @@
14171
12991
  "description": "A unique string that identifies the product. Handles are automatically\ngenerated based on the product's title, and are always lowercase. Whitespace\nand special characters are replaced with a hyphen: `-`. If there are\nmultiple consecutive whitespace or special characters, then they're replaced\nwith a single hyphen. Whitespace or special characters at the beginning are\nremoved. If a duplicate product title is used, then the handle is\nauto-incremented by one. For example, if you had two products called\n`Potion`, then their handles would be `potion` and `potion-1`. After a\nproduct has been created, changing the product title doesn't update the handle."
14172
12992
  }
14173
12993
  },
14174
- "required": [
14175
- "handle"
14176
- ]
12994
+ "required": ["handle"]
14177
12995
  },
14178
12996
  "shape": "ShopifyStorefront_Product"
14179
12997
  },
@@ -14205,9 +13023,7 @@
14205
13023
  "default": "RELATED"
14206
13024
  }
14207
13025
  },
14208
- "required": [
14209
- "productId"
14210
- ]
13026
+ "required": ["productId"]
14211
13027
  },
14212
13028
  "shape": {
14213
13029
  "type": "array",
@@ -14238,9 +13054,7 @@
14238
13054
  "description": "Returns up to the first `n` elements from the list."
14239
13055
  }
14240
13056
  },
14241
- "required": [
14242
- "first"
14243
- ]
13057
+ "required": ["first"]
14244
13058
  },
14245
13059
  "shape": "ShopifyStorefront_StringConnection"
14246
13060
  },
@@ -14266,9 +13080,7 @@
14266
13080
  "description": "Returns up to the first `n` elements from the list."
14267
13081
  }
14268
13082
  },
14269
- "required": [
14270
- "first"
14271
- ]
13083
+ "required": ["first"]
14272
13084
  },
14273
13085
  "shape": "ShopifyStorefront_StringConnection"
14274
13086
  },
@@ -14438,10 +13250,7 @@
14438
13250
  "description": "The ID of the cart."
14439
13251
  }
14440
13252
  },
14441
- "required": [
14442
- "attributes",
14443
- "cartId"
14444
- ]
13253
+ "required": ["attributes", "cartId"]
14445
13254
  },
14446
13255
  "shape": "ShopifyStorefront_CartAttributesUpdatePayload"
14447
13256
  },
@@ -14472,10 +13281,7 @@
14472
13281
  "description": "The customer associated with the cart. Used to determine\n[international pricing](https://shopify.dev/custom-storefronts/internationalization/international-pricing).\nBuyer identity should match the customer's shipping address."
14473
13282
  }
14474
13283
  },
14475
- "required": [
14476
- "cartId",
14477
- "buyerIdentity"
14478
- ]
13284
+ "required": ["cartId", "buyerIdentity"]
14479
13285
  },
14480
13286
  "shape": "ShopifyStorefront_CartBuyerIdentityUpdatePayload"
14481
13287
  },
@@ -14534,9 +13340,7 @@
14534
13340
  "description": "The case-insensitive discount codes that the customer added at checkout.\n\nThe input must not contain more than `250` values."
14535
13341
  }
14536
13342
  },
14537
- "required": [
14538
- "cartId"
14539
- ]
13343
+ "required": ["cartId"]
14540
13344
  },
14541
13345
  "shape": "ShopifyStorefront_CartDiscountCodesUpdatePayload"
14542
13346
  },
@@ -14570,10 +13374,7 @@
14570
13374
  "description": "The ID of the cart."
14571
13375
  }
14572
13376
  },
14573
- "required": [
14574
- "lines",
14575
- "cartId"
14576
- ]
13377
+ "required": ["lines", "cartId"]
14577
13378
  },
14578
13379
  "shape": "ShopifyStorefront_CartLinesAddPayload"
14579
13380
  },
@@ -14608,10 +13409,7 @@
14608
13409
  "description": "The merchandise line IDs to remove.\n\nThe input must not contain more than `250` values."
14609
13410
  }
14610
13411
  },
14611
- "required": [
14612
- "cartId",
14613
- "lineIds"
14614
- ]
13412
+ "required": ["cartId", "lineIds"]
14615
13413
  },
14616
13414
  "shape": "ShopifyStorefront_CartLinesRemovePayload"
14617
13415
  },
@@ -14645,10 +13443,7 @@
14645
13443
  "description": "The merchandise lines to update.\n\nThe input must not contain more than `250` values."
14646
13444
  }
14647
13445
  },
14648
- "required": [
14649
- "cartId",
14650
- "lines"
14651
- ]
13446
+ "required": ["cartId", "lines"]
14652
13447
  },
14653
13448
  "shape": "ShopifyStorefront_CartLinesUpdatePayload"
14654
13449
  },
@@ -14674,9 +13469,7 @@
14674
13469
  "description": "The input fields used to delete a cart metafield."
14675
13470
  }
14676
13471
  },
14677
- "required": [
14678
- "input"
14679
- ]
13472
+ "required": ["input"]
14680
13473
  },
14681
13474
  "shape": "ShopifyStorefront_CartMetafieldDeletePayload"
14682
13475
  },
@@ -14705,9 +13498,7 @@
14705
13498
  "description": "The list of Cart metafield values to set. Maximum of 25.\n\nThe input must not contain more than `250` values."
14706
13499
  }
14707
13500
  },
14708
- "required": [
14709
- "metafields"
14710
- ]
13501
+ "required": ["metafields"]
14711
13502
  },
14712
13503
  "shape": "ShopifyStorefront_CartMetafieldsSetPayload"
14713
13504
  },
@@ -14738,9 +13529,7 @@
14738
13529
  "description": "The note on the cart."
14739
13530
  }
14740
13531
  },
14741
- "required": [
14742
- "cartId"
14743
- ]
13532
+ "required": ["cartId"]
14744
13533
  },
14745
13534
  "shape": "ShopifyStorefront_CartNoteUpdatePayload"
14746
13535
  },
@@ -14771,10 +13560,7 @@
14771
13560
  "description": "The payment information for the cart that will be used at checkout."
14772
13561
  }
14773
13562
  },
14774
- "required": [
14775
- "cartId",
14776
- "payment"
14777
- ]
13563
+ "required": ["cartId", "payment"]
14778
13564
  },
14779
13565
  "shape": "ShopifyStorefront_CartPaymentUpdatePayload"
14780
13566
  },
@@ -14808,10 +13594,7 @@
14808
13594
  "description": "The selected delivery options.\n\nThe input must not contain more than `250` values."
14809
13595
  }
14810
13596
  },
14811
- "required": [
14812
- "cartId",
14813
- "selectedDeliveryOptions"
14814
- ]
13597
+ "required": ["cartId", "selectedDeliveryOptions"]
14815
13598
  },
14816
13599
  "shape": "ShopifyStorefront_CartSelectedDeliveryOptionsUpdatePayload"
14817
13600
  },
@@ -14842,10 +13625,7 @@
14842
13625
  "description": "The attemptToken is used to guarantee an idempotent result.\nIf more than one call uses the same attemptToken within a short period of time, only one will be accepted."
14843
13626
  }
14844
13627
  },
14845
- "required": [
14846
- "cartId",
14847
- "attemptToken"
14848
- ]
13628
+ "required": ["cartId", "attemptToken"]
14849
13629
  },
14850
13630
  "shape": "ShopifyStorefront_CartSubmitForCompletionPayload"
14851
13631
  },
@@ -14876,10 +13656,7 @@
14876
13656
  "description": "The checkout attributes to update."
14877
13657
  }
14878
13658
  },
14879
- "required": [
14880
- "checkoutId",
14881
- "input"
14882
- ]
13659
+ "required": ["checkoutId", "input"]
14883
13660
  },
14884
13661
  "shape": "ShopifyStorefront_CheckoutAttributesUpdateV2Payload"
14885
13662
  },
@@ -14906,9 +13683,7 @@
14906
13683
  "description": "The ID of the checkout."
14907
13684
  }
14908
13685
  },
14909
- "required": [
14910
- "checkoutId"
14911
- ]
13686
+ "required": ["checkoutId"]
14912
13687
  },
14913
13688
  "shape": "ShopifyStorefront_CheckoutCompleteFreePayload"
14914
13689
  },
@@ -14939,10 +13714,7 @@
14939
13714
  "description": "The credit card info to apply as a payment."
14940
13715
  }
14941
13716
  },
14942
- "required": [
14943
- "checkoutId",
14944
- "payment"
14945
- ]
13717
+ "required": ["checkoutId", "payment"]
14946
13718
  },
14947
13719
  "shape": "ShopifyStorefront_CheckoutCompleteWithCreditCardV2Payload"
14948
13720
  },
@@ -14973,10 +13745,7 @@
14973
13745
  "description": "The info to apply as a tokenized payment."
14974
13746
  }
14975
13747
  },
14976
- "required": [
14977
- "checkoutId",
14978
- "payment"
14979
- ]
13748
+ "required": ["checkoutId", "payment"]
14980
13749
  },
14981
13750
  "shape": "ShopifyStorefront_CheckoutCompleteWithTokenizedPaymentV3Payload"
14982
13751
  },
@@ -15006,9 +13775,7 @@
15006
13775
  "description": "The checkout queue token. Available only to selected stores."
15007
13776
  }
15008
13777
  },
15009
- "required": [
15010
- "input"
15011
- ]
13778
+ "required": ["input"]
15012
13779
  },
15013
13780
  "shape": "ShopifyStorefront_CheckoutCreatePayload"
15014
13781
  },
@@ -15039,10 +13806,7 @@
15039
13806
  "description": "The customer access token of the customer to associate."
15040
13807
  }
15041
13808
  },
15042
- "required": [
15043
- "checkoutId",
15044
- "customerAccessToken"
15045
- ]
13809
+ "required": ["checkoutId", "customerAccessToken"]
15046
13810
  },
15047
13811
  "shape": "ShopifyStorefront_CheckoutCustomerAssociateV2Payload"
15048
13812
  },
@@ -15069,9 +13833,7 @@
15069
13833
  "description": "The ID of the checkout."
15070
13834
  }
15071
13835
  },
15072
- "required": [
15073
- "checkoutId"
15074
- ]
13836
+ "required": ["checkoutId"]
15075
13837
  },
15076
13838
  "shape": "ShopifyStorefront_CheckoutCustomerDisassociateV2Payload"
15077
13839
  },
@@ -15102,10 +13864,7 @@
15102
13864
  "description": "The ID of the checkout."
15103
13865
  }
15104
13866
  },
15105
- "required": [
15106
- "discountCode",
15107
- "checkoutId"
15108
- ]
13867
+ "required": ["discountCode", "checkoutId"]
15109
13868
  },
15110
13869
  "shape": "ShopifyStorefront_CheckoutDiscountCodeApplyV2Payload"
15111
13870
  },
@@ -15132,9 +13891,7 @@
15132
13891
  "description": "The ID of the checkout."
15133
13892
  }
15134
13893
  },
15135
- "required": [
15136
- "checkoutId"
15137
- ]
13894
+ "required": ["checkoutId"]
15138
13895
  },
15139
13896
  "shape": "ShopifyStorefront_CheckoutDiscountCodeRemovePayload"
15140
13897
  },
@@ -15165,10 +13922,7 @@
15165
13922
  "description": "The email to update the checkout with."
15166
13923
  }
15167
13924
  },
15168
- "required": [
15169
- "checkoutId",
15170
- "email"
15171
- ]
13925
+ "required": ["checkoutId", "email"]
15172
13926
  },
15173
13927
  "shape": "ShopifyStorefront_CheckoutEmailUpdateV2Payload"
15174
13928
  },
@@ -15200,10 +13954,7 @@
15200
13954
  "description": "The ID of the checkout."
15201
13955
  }
15202
13956
  },
15203
- "required": [
15204
- "appliedGiftCardId",
15205
- "checkoutId"
15206
- ]
13957
+ "required": ["appliedGiftCardId", "checkoutId"]
15207
13958
  },
15208
13959
  "shape": "ShopifyStorefront_CheckoutGiftCardRemoveV2Payload"
15209
13960
  },
@@ -15237,10 +13988,7 @@
15237
13988
  "description": "The ID of the checkout."
15238
13989
  }
15239
13990
  },
15240
- "required": [
15241
- "giftCardCodes",
15242
- "checkoutId"
15243
- ]
13991
+ "required": ["giftCardCodes", "checkoutId"]
15244
13992
  },
15245
13993
  "shape": "ShopifyStorefront_CheckoutGiftCardsAppendPayload"
15246
13994
  },
@@ -15274,10 +14022,7 @@
15274
14022
  "description": "The ID of the checkout."
15275
14023
  }
15276
14024
  },
15277
- "required": [
15278
- "lineItems",
15279
- "checkoutId"
15280
- ]
14025
+ "required": ["lineItems", "checkoutId"]
15281
14026
  },
15282
14027
  "shape": "ShopifyStorefront_CheckoutLineItemsAddPayload"
15283
14028
  },
@@ -15312,10 +14057,7 @@
15312
14057
  "description": "Line item ids to remove.\n\nThe input must not contain more than `250` values."
15313
14058
  }
15314
14059
  },
15315
- "required": [
15316
- "checkoutId",
15317
- "lineItemIds"
15318
- ]
14060
+ "required": ["checkoutId", "lineItemIds"]
15319
14061
  },
15320
14062
  "shape": "ShopifyStorefront_CheckoutLineItemsRemovePayload"
15321
14063
  },
@@ -15349,10 +14091,7 @@
15349
14091
  "description": "The ID of the checkout."
15350
14092
  }
15351
14093
  },
15352
- "required": [
15353
- "lineItems",
15354
- "checkoutId"
15355
- ]
14094
+ "required": ["lineItems", "checkoutId"]
15356
14095
  },
15357
14096
  "shape": "ShopifyStorefront_CheckoutLineItemsReplacePayload"
15358
14097
  },
@@ -15386,10 +14125,7 @@
15386
14125
  "description": "Line items to update.\n\nThe input must not contain more than `250` values."
15387
14126
  }
15388
14127
  },
15389
- "required": [
15390
- "checkoutId",
15391
- "lineItems"
15392
- ]
14128
+ "required": ["checkoutId", "lineItems"]
15393
14129
  },
15394
14130
  "shape": "ShopifyStorefront_CheckoutLineItemsUpdatePayload"
15395
14131
  },
@@ -15420,10 +14156,7 @@
15420
14156
  "description": "The ID of the checkout."
15421
14157
  }
15422
14158
  },
15423
- "required": [
15424
- "shippingAddress",
15425
- "checkoutId"
15426
- ]
14159
+ "required": ["shippingAddress", "checkoutId"]
15427
14160
  },
15428
14161
  "shape": "ShopifyStorefront_CheckoutShippingAddressUpdateV2Payload"
15429
14162
  },
@@ -15454,10 +14187,7 @@
15454
14187
  "description": "A unique identifier to a Checkout’s shipping provider, price, and title combination, enabling the customer to select the availableShippingRates."
15455
14188
  }
15456
14189
  },
15457
- "required": [
15458
- "checkoutId",
15459
- "shippingRateHandle"
15460
- ]
14190
+ "required": ["checkoutId", "shippingRateHandle"]
15461
14191
  },
15462
14192
  "shape": "ShopifyStorefront_CheckoutShippingLineUpdatePayload"
15463
14193
  },
@@ -15483,9 +14213,7 @@
15483
14213
  "description": "The fields used to create a customer access token."
15484
14214
  }
15485
14215
  },
15486
- "required": [
15487
- "input"
15488
- ]
14216
+ "required": ["input"]
15489
14217
  },
15490
14218
  "shape": "ShopifyStorefront_CustomerAccessTokenCreatePayload"
15491
14219
  },
@@ -15511,9 +14239,7 @@
15511
14239
  "description": "A valid [multipass token](https://shopify.dev/api/multipass) to be authenticated."
15512
14240
  }
15513
14241
  },
15514
- "required": [
15515
- "multipassToken"
15516
- ]
14242
+ "required": ["multipassToken"]
15517
14243
  },
15518
14244
  "shape": "ShopifyStorefront_CustomerAccessTokenCreateWithMultipassPayload"
15519
14245
  },
@@ -15539,9 +14265,7 @@
15539
14265
  "description": "The access token used to identify the customer."
15540
14266
  }
15541
14267
  },
15542
- "required": [
15543
- "customerAccessToken"
15544
- ]
14268
+ "required": ["customerAccessToken"]
15545
14269
  },
15546
14270
  "shape": "ShopifyStorefront_CustomerAccessTokenDeletePayload"
15547
14271
  },
@@ -15567,9 +14291,7 @@
15567
14291
  "description": "The access token used to identify the customer."
15568
14292
  }
15569
14293
  },
15570
- "required": [
15571
- "customerAccessToken"
15572
- ]
14294
+ "required": ["customerAccessToken"]
15573
14295
  },
15574
14296
  "shape": "ShopifyStorefront_CustomerAccessTokenRenewPayload"
15575
14297
  },
@@ -15600,10 +14322,7 @@
15600
14322
  "description": "The fields used to activate a customer."
15601
14323
  }
15602
14324
  },
15603
- "required": [
15604
- "id",
15605
- "input"
15606
- ]
14325
+ "required": ["id", "input"]
15607
14326
  },
15608
14327
  "shape": "ShopifyStorefront_CustomerActivatePayload"
15609
14328
  },
@@ -15633,10 +14352,7 @@
15633
14352
  "description": "A new password set during activation."
15634
14353
  }
15635
14354
  },
15636
- "required": [
15637
- "activationUrl",
15638
- "password"
15639
- ]
14355
+ "required": ["activationUrl", "password"]
15640
14356
  },
15641
14357
  "shape": "ShopifyStorefront_CustomerActivateByUrlPayload"
15642
14358
  },
@@ -15666,10 +14382,7 @@
15666
14382
  "description": "The customer mailing address to create."
15667
14383
  }
15668
14384
  },
15669
- "required": [
15670
- "customerAccessToken",
15671
- "address"
15672
- ]
14385
+ "required": ["customerAccessToken", "address"]
15673
14386
  },
15674
14387
  "shape": "ShopifyStorefront_CustomerAddressCreatePayload"
15675
14388
  },
@@ -15700,10 +14413,7 @@
15700
14413
  "description": "The access token used to identify the customer."
15701
14414
  }
15702
14415
  },
15703
- "required": [
15704
- "id",
15705
- "customerAccessToken"
15706
- ]
14416
+ "required": ["id", "customerAccessToken"]
15707
14417
  },
15708
14418
  "shape": "ShopifyStorefront_CustomerAddressDeletePayload"
15709
14419
  },
@@ -15738,11 +14448,7 @@
15738
14448
  "description": "The customer’s mailing address."
15739
14449
  }
15740
14450
  },
15741
- "required": [
15742
- "customerAccessToken",
15743
- "id",
15744
- "address"
15745
- ]
14451
+ "required": ["customerAccessToken", "id", "address"]
15746
14452
  },
15747
14453
  "shape": "ShopifyStorefront_CustomerAddressUpdatePayload"
15748
14454
  },
@@ -15768,9 +14474,7 @@
15768
14474
  "description": "The fields used to create a new customer."
15769
14475
  }
15770
14476
  },
15771
- "required": [
15772
- "input"
15773
- ]
14477
+ "required": ["input"]
15774
14478
  },
15775
14479
  "shape": "ShopifyStorefront_CustomerCreatePayload"
15776
14480
  },
@@ -15801,10 +14505,7 @@
15801
14505
  "description": "ID of the address to set as the new default for the customer."
15802
14506
  }
15803
14507
  },
15804
- "required": [
15805
- "customerAccessToken",
15806
- "addressId"
15807
- ]
14508
+ "required": ["customerAccessToken", "addressId"]
15808
14509
  },
15809
14510
  "shape": "ShopifyStorefront_CustomerDefaultAddressUpdatePayload"
15810
14511
  },
@@ -15830,9 +14531,7 @@
15830
14531
  "description": "The email address of the customer to recover."
15831
14532
  }
15832
14533
  },
15833
- "required": [
15834
- "email"
15835
- ]
14534
+ "required": ["email"]
15836
14535
  },
15837
14536
  "shape": "ShopifyStorefront_CustomerRecoverPayload"
15838
14537
  },
@@ -15863,10 +14562,7 @@
15863
14562
  "description": "The fields used to reset a customer’s password."
15864
14563
  }
15865
14564
  },
15866
- "required": [
15867
- "id",
15868
- "input"
15869
- ]
14565
+ "required": ["id", "input"]
15870
14566
  },
15871
14567
  "shape": "ShopifyStorefront_CustomerResetPayload"
15872
14568
  },
@@ -15896,10 +14592,7 @@
15896
14592
  "description": "New password that will be set as part of the reset password process."
15897
14593
  }
15898
14594
  },
15899
- "required": [
15900
- "resetUrl",
15901
- "password"
15902
- ]
14595
+ "required": ["resetUrl", "password"]
15903
14596
  },
15904
14597
  "shape": "ShopifyStorefront_CustomerResetByUrlPayload"
15905
14598
  },
@@ -15929,13 +14622,10 @@
15929
14622
  "description": "The customer object input."
15930
14623
  }
15931
14624
  },
15932
- "required": [
15933
- "customerAccessToken",
15934
- "customer"
15935
- ]
14625
+ "required": ["customerAccessToken", "customer"]
15936
14626
  },
15937
14627
  "shape": "ShopifyStorefront_CustomerUpdatePayload"
15938
14628
  }
15939
14629
  },
15940
- "schemaVersion": "3.50.0"
15941
- }
14630
+ "schemaVersion": "3.51.0"
14631
+ }