@takeshape/schema 11.52.0 → 11.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__tests__/_examples.test.js +77 -0
- package/dist/__tests__/agents.test.js +163 -0
- package/dist/__tests__/api-version.test.js +24 -0
- package/dist/__tests__/builtin-schema.test.js +18 -0
- package/dist/__tests__/content-schema-transform.test.d.ts +1 -0
- package/dist/__tests__/content-schema-transform.test.js +522 -0
- package/dist/__tests__/create-input-schema.test.d.ts +1 -0
- package/dist/__tests__/create-input-schema.test.js +184 -0
- package/dist/__tests__/enum.test.d.ts +1 -0
- package/dist/__tests__/enum.test.js +36 -0
- package/dist/__tests__/flatten-templates.test.d.ts +1 -0
- package/dist/__tests__/flatten-templates.test.js +40 -0
- package/dist/__tests__/get-is-leaf.test.d.ts +1 -0
- package/dist/__tests__/get-is-leaf.test.js +50 -0
- package/dist/__tests__/interfaces.test.d.ts +1 -0
- package/dist/__tests__/interfaces.test.js +219 -0
- package/dist/__tests__/migration.test.d.ts +1 -0
- package/dist/__tests__/migration.test.js +34 -0
- package/dist/__tests__/mocks.test.d.ts +1 -0
- package/dist/__tests__/mocks.test.js +24 -0
- package/dist/__tests__/refs.test.d.ts +1 -0
- package/dist/__tests__/refs.test.js +752 -0
- package/dist/__tests__/relationships.test.d.ts +1 -0
- package/dist/__tests__/relationships.test.js +638 -0
- package/dist/__tests__/schema-transform.test.d.ts +1 -0
- package/dist/__tests__/schema-transform.test.js +205 -0
- package/dist/__tests__/schema-util.test.d.ts +1 -0
- package/dist/__tests__/schema-util.test.js +1731 -0
- package/dist/__tests__/service-dependencies.test.d.ts +1 -0
- package/dist/__tests__/service-dependencies.test.js +360 -0
- package/dist/__tests__/unions.test.d.ts +1 -0
- package/dist/__tests__/unions.test.js +44 -0
- package/dist/__tests__/validate.test.d.ts +1 -0
- package/dist/__tests__/validate.test.js +1926 -0
- package/dist/__tests__/workflows.test.d.ts +3 -0
- package/dist/__tests__/workflows.test.js +149 -0
- package/dist/agents.d.ts +14 -0
- package/dist/auth-schemas.d.ts +125 -0
- package/dist/builtin-schema.d.ts +8 -0
- package/dist/content-schema-transform.d.ts +35 -0
- package/dist/content-schema-transform.js +162 -0
- package/dist/create-input-schema.d.ts +9 -0
- package/dist/enum.d.ts +2 -0
- package/dist/flatten-templates.d.ts +2 -0
- package/dist/flatten-templates.js +20 -0
- package/dist/get-is-leaf.d.ts +3 -0
- package/dist/get-is-leaf.js +56 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.js +46 -0
- package/dist/interfaces.d.ts +12 -0
- package/dist/interfaces.js +85 -0
- package/dist/layers/__tests__/layers.test.d.ts +1 -0
- package/dist/layers/__tests__/layers.test.js +38 -0
- package/dist/layers/layers.d.ts +26 -0
- package/dist/layers/layers.js +301 -0
- package/dist/layers/refs.d.ts +102 -0
- package/dist/layers/refs.js +220 -0
- package/dist/layers/type-utils.d.ts +59 -0
- package/dist/layers/type-utils.js +118 -0
- package/dist/layers/visitor.d.ts +5 -0
- package/dist/layers/visitor.js +38 -0
- package/dist/migration/index.d.ts +64 -0
- package/dist/migration/index.js +122 -0
- package/dist/migration/to/__tests__/v3.10.0.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.10.0.test.js +90 -0
- package/dist/migration/to/__tests__/v3.12.3.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.12.3.test.js +103 -0
- package/dist/migration/to/__tests__/v3.17.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.17.test.js +71 -0
- package/dist/migration/to/__tests__/v3.34.0.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.34.0.test.js +240 -0
- package/dist/migration/to/__tests__/v3.39.0.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.39.0.test.js +116 -0
- package/dist/migration/to/__tests__/v3.46.0.test.d.ts +1 -0
- package/dist/migration/to/__tests__/v3.46.0.test.js +59 -0
- package/dist/migration/to/v3.0.0.d.ts +4 -0
- package/dist/migration/to/v3.0.0.js +212 -0
- package/dist/migration/to/v3.1.0.d.ts +4 -0
- package/dist/migration/to/v3.1.0.js +194 -0
- package/dist/migration/to/v3.10.0.d.ts +4 -0
- package/dist/migration/to/v3.11.0.d.ts +4 -0
- package/dist/migration/to/v3.12.0.d.ts +4 -0
- package/dist/migration/to/v3.12.1.d.ts +4 -0
- package/dist/migration/to/v3.12.2.d.ts +4 -0
- package/dist/migration/to/v3.12.3.d.ts +4 -0
- package/dist/migration/to/v3.13.0.d.ts +4 -0
- package/dist/migration/to/v3.14.0.d.ts +4 -0
- package/dist/migration/to/v3.15.0.d.ts +4 -0
- package/dist/migration/to/v3.16.0.d.ts +4 -0
- package/dist/migration/to/v3.17.0.d.ts +4 -0
- package/dist/migration/to/v3.17.1.d.ts +4 -0
- package/dist/migration/to/v3.18.0.d.ts +4 -0
- package/dist/migration/to/v3.18.1.d.ts +4 -0
- package/dist/migration/to/v3.18.2.d.ts +4 -0
- package/dist/migration/to/v3.19.0.d.ts +4 -0
- package/dist/migration/to/v3.2.0.d.ts +4 -0
- package/dist/migration/to/v3.20.0.d.ts +4 -0
- package/dist/migration/to/v3.21.0.d.ts +4 -0
- package/dist/migration/to/v3.22.0.d.ts +4 -0
- package/dist/migration/to/v3.23.0.d.ts +4 -0
- package/dist/migration/to/v3.24.0.d.ts +4 -0
- package/dist/migration/to/v3.25.0.d.ts +4 -0
- package/dist/migration/to/v3.26.0.d.ts +4 -0
- package/dist/migration/to/v3.27.0.d.ts +4 -0
- package/dist/migration/to/v3.28.0.d.ts +4 -0
- package/dist/migration/to/v3.29.0.d.ts +4 -0
- package/dist/migration/to/v3.3.0.d.ts +4 -0
- package/dist/migration/to/v3.30.0.d.ts +4 -0
- package/dist/migration/to/v3.31.0.d.ts +4 -0
- package/dist/migration/to/v3.32.0.d.ts +4 -0
- package/dist/migration/to/v3.32.0.js +59 -0
- package/dist/migration/to/v3.33.0.d.ts +4 -0
- package/dist/migration/to/v3.34.0.d.ts +6 -0
- package/dist/migration/to/v3.34.0.js +116 -0
- package/dist/migration/to/v3.35.0.d.ts +4 -0
- package/dist/migration/to/v3.36.0.d.ts +4 -0
- package/dist/migration/to/v3.37.0.d.ts +4 -0
- package/dist/migration/to/v3.38.0.d.ts +4 -0
- package/dist/migration/to/v3.39.0.d.ts +4 -0
- package/dist/migration/to/v3.39.0.js +45 -0
- package/dist/migration/to/v3.4.0.d.ts +4 -0
- package/dist/migration/to/v3.40.0.d.ts +4 -0
- package/dist/migration/to/v3.41.0.d.ts +4 -0
- package/dist/migration/to/v3.42.0.d.ts +4 -0
- package/dist/migration/to/v3.43.0.d.ts +4 -0
- package/dist/migration/to/v3.44.0.d.ts +4 -0
- package/dist/migration/to/v3.45.0.d.ts +4 -0
- package/dist/migration/to/v3.46.0.d.ts +4 -0
- package/dist/migration/to/v3.47.0.d.ts +4 -0
- package/dist/migration/to/v3.48.0.d.ts +4 -0
- package/dist/migration/to/v3.49.0.d.ts +4 -0
- package/dist/migration/to/v3.5.0.d.ts +4 -0
- package/dist/migration/to/v3.5.1.d.ts +4 -0
- package/dist/migration/to/v3.50.0.d.ts +4 -0
- package/dist/migration/to/v3.51.0.d.ts +4 -0
- package/dist/migration/to/v3.6.0.d.ts +4 -0
- package/dist/migration/to/v3.7.0.d.ts +4 -0
- package/dist/migration/to/v3.8.0.d.ts +4 -0
- package/dist/migration/to/v3.9.0.d.ts +4 -0
- package/dist/migration/types.d.ts +19 -0
- package/dist/migration/types.js +1 -0
- package/dist/mocks.d.ts +13 -0
- package/dist/mocks.js +58 -0
- package/dist/models/__tests__/project-schema.test.d.ts +1 -0
- package/dist/models/__tests__/project-schema.test.js +67 -0
- package/dist/models/__tests__/query.test.d.ts +1 -0
- package/dist/models/__tests__/query.test.js +27 -0
- package/dist/models/__tests__/service.test.d.ts +1 -0
- package/dist/models/__tests__/service.test.js +17 -0
- package/dist/models/__tests__/shape.test.d.ts +1 -0
- package/dist/models/__tests__/shape.test.js +61 -0
- package/dist/models/project-schema.d.ts +35 -0
- package/dist/models/project-schema.js +92 -0
- package/dist/models/query.d.ts +17 -0
- package/dist/models/service.d.ts +12 -0
- package/dist/models/shape.d.ts +41 -0
- package/dist/models/shape.js +85 -0
- package/dist/patterns.js +1 -0
- package/dist/project-schema/index.d.ts +187 -0
- package/dist/project-schema/index.js +75 -0
- package/dist/project-schema/migrate.d.ts +4 -0
- package/dist/project-schema/migrate.js +194 -0
- package/dist/refs.d.ts +226 -0
- package/dist/refs.js +608 -0
- package/dist/relationships.d.ts +40 -0
- package/dist/relationships.js +311 -0
- package/dist/runtime-schema.d.ts +5 -0
- package/dist/runtime-schema.js +80 -0
- package/dist/schema-transform.d.ts +19 -0
- package/dist/schema-transform.js +74 -0
- package/dist/schema-util.d.ts +210 -0
- package/dist/schema-util.js +1077 -0
- package/dist/schemas/auth-schemas.json +365 -0
- package/dist/schemas/index.js +154 -0
- package/dist/service-dependencies.d.ts +13 -0
- package/dist/service-dependencies.js +165 -0
- package/dist/services/__tests__/services.test.d.ts +1 -0
- package/dist/services/__tests__/services.test.js +113 -0
- package/dist/services/services.d.ts +31 -0
- package/dist/services/services.js +145 -0
- package/dist/services/types.js +1 -0
- package/dist/services/util.d.ts +16 -0
- package/dist/taxonomies.d.ts +15 -0
- package/dist/taxonomies.js +24 -0
- package/dist/template-shapes/__tests__/index.test.d.ts +1 -0
- package/dist/template-shapes/__tests__/index.test.js +40 -0
- package/dist/template-shapes/__tests__/names.test.d.ts +1 -0
- package/dist/template-shapes/__tests__/names.test.js +19 -0
- package/dist/template-shapes/__tests__/templates.test.d.ts +1 -0
- package/dist/template-shapes/__tests__/templates.test.js +80 -0
- package/dist/template-shapes/__tests__/where.test.d.ts +1 -0
- package/dist/template-shapes/__tests__/where.test.js +218 -0
- package/dist/template-shapes/index.d.ts +7 -0
- package/dist/template-shapes/names.d.ts +10 -0
- package/dist/template-shapes/templates.d.ts +32 -0
- package/dist/template-shapes/templates.js +319 -0
- package/dist/template-shapes/types.d.ts +15 -0
- package/dist/template-shapes/where.d.ts +37 -0
- package/dist/template-shapes/where.js +402 -0
- package/dist/types/__tests__/utils.test.d.ts +1 -0
- package/dist/types/__tests__/utils.test.js +159 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +2 -0
- package/dist/types/transforms.d.ts +13 -0
- package/dist/types/transforms.js +1 -0
- package/dist/types/types.d.ts +211 -0
- package/dist/types/utils.d.ts +117 -0
- package/dist/types/utils.js +279 -0
- package/dist/unions.d.ts +14 -0
- package/dist/unions.js +77 -0
- package/dist/util/__tests__/api-indexing.test.d.ts +1 -0
- package/dist/util/__tests__/api-indexing.test.js +129 -0
- package/dist/util/__tests__/detect-cycles.test.d.ts +1 -0
- package/dist/util/__tests__/detect-cycles.test.js +193 -0
- package/dist/util/__tests__/find-shape-at-path.test.d.ts +1 -0
- package/dist/util/__tests__/find-shape-at-path.test.js +41 -0
- package/dist/util/__tests__/form-config.test.d.ts +1 -0
- package/dist/util/__tests__/form-config.test.js +196 -0
- package/dist/util/__tests__/get-return-shape.test.d.ts +1 -0
- package/dist/util/__tests__/get-return-shape.test.js +27 -0
- package/dist/util/__tests__/has-args.test.d.ts +1 -0
- package/dist/util/__tests__/has-args.test.js +46 -0
- package/dist/util/__tests__/merge.test.d.ts +1 -0
- package/dist/util/__tests__/merge.test.js +1074 -0
- package/dist/util/__tests__/patch-schema.test.d.ts +1 -0
- package/dist/util/__tests__/patch-schema.test.js +82 -0
- package/dist/util/__tests__/shapes.test.d.ts +1 -0
- package/dist/util/__tests__/shapes.test.js +30 -0
- package/dist/util/ai-tools.d.ts +3 -0
- package/dist/util/api-indexing.d.ts +9 -0
- package/dist/util/api-indexing.js +57 -0
- package/dist/util/detect-cycles.d.ts +7 -0
- package/dist/util/detect-cycles.js +45 -0
- package/dist/util/find-shape-at-path.d.ts +21 -0
- package/dist/util/form-config.d.ts +11 -0
- package/dist/util/form-config.js +62 -0
- package/dist/util/get-conflicting-properties.d.ts +6 -0
- package/dist/util/get-conflicting-properties.js +55 -0
- package/dist/util/get-return-shape.d.ts +4 -0
- package/dist/util/get-return-shape.js +30 -0
- package/dist/util/has-arg.d.ts +4 -0
- package/dist/util/has-arg.js +13 -0
- package/dist/util/merge.d.ts +15 -0
- package/dist/util/merge.js +256 -0
- package/dist/util/patch-schema.d.ts +8 -0
- package/dist/util/shapes.d.ts +5 -0
- package/dist/validate/errors.d.ts +3 -0
- package/dist/validate/errors.js +20 -0
- package/dist/validate/validate.d.ts +73 -0
- package/dist/validate/validate.js +1107 -0
- package/dist/versions.d.ts +4 -0
- package/dist/versions.js +4 -0
- package/dist/workflows.d.ts +14 -0
- package/dist/workflows.js +66 -0
- package/examples/latest/agent-schema.json +12 -4
- package/examples/latest/all-fields-shapes-inline.json +52 -18
- package/examples/latest/all-fields-shapes.json +76 -26
- package/examples/latest/betzino.json +3139 -902
- package/examples/latest/blog-schema.json +28 -8
- package/examples/latest/brewery-schema.json +25 -7
- package/examples/latest/clear-cache-schema.json +7 -3
- package/examples/latest/complex-project-schema.json +359 -98
- package/examples/latest/complex-schema.json +1754 -487
- package/examples/latest/edit-schema.json +11 -4
- package/examples/latest/fabric-ecommerce.json +838 -187
- package/examples/latest/frank-and-fred-schema.json +1753 -486
- package/examples/latest/klirr-schema.json +2411 -682
- package/examples/latest/layers/rick-and-morty-layer.json +32 -11
- package/examples/latest/layers/shopify-layer-2023-01.json +8637 -2206
- package/examples/latest/layers/shopify-storefront-2023-04.json +1714 -404
- package/examples/latest/layers/wordpress-2024-01.json +2746 -691
- package/examples/latest/massive-schema.json +584 -131
- package/examples/latest/mill-components-schema.json +125 -29
- package/examples/latest/nested-shape-arrays.json +19 -7
- package/examples/latest/one-earth.json +1113 -236
- package/examples/latest/pet-oneof-array.json +22 -7
- package/examples/latest/post-schema.json +20 -6
- package/examples/latest/pruned-shopify-product-schema.json +830 -185
- package/examples/latest/rag-example.json +15 -5
- package/examples/latest/real-world-schema.json +56 -14
- package/examples/latest/recursive-repeater-schema.json +11 -4
- package/examples/latest/recursive-schema.json +11 -4
- package/examples/latest/rick-and-morty-ast.json +174 -45
- package/examples/latest/rick-and-morty-graphql.json +100 -25
- package/examples/latest/rick-and-morty-rest.json +7 -3
- package/examples/latest/rick-and-morty-with-indexing.json +13 -5
- package/examples/latest/schema-where-filter.json +40 -11
- package/examples/latest/schema-with-repeater-draftjs.json +8 -3
- package/examples/latest/schema-with-rick-and-morty.json +4 -2
- package/examples/latest/shape-books-v3_2_0.json +71 -17
- package/examples/latest/shape-books.json +71 -17
- package/examples/latest/shape-editor-schema-edited.json +69 -23
- package/examples/latest/shape-editor-schema-initial.json +28 -10
- package/examples/latest/shapedb-crud-every-prop-type.json +22 -8
- package/examples/latest/shopify-lookbook.json +19 -5
- package/examples/latest/shopify-product-2022-07.json +3217 -726
- package/examples/latest/shopify-product-2023-04.json +4496 -1012
- package/examples/latest/shopify-store-with-widget.json +942 -213
- package/examples/latest/stripe-product-runtime-schema.json +277 -81
- package/examples/latest/stripe-starter-resolved.json +1953 -476
- package/examples/latest/user-schema-no-required.json +13 -3
- package/examples/latest/user-schema-with-defaults.json +27 -5
- package/examples/latest/valvoline-ai-demo.json +69 -17
- package/examples/latest/vector-search-schema.json +24 -8
- package/package.json +23 -24
- package/dist/cjs/package.json +0 -1
- package/dist/cjs/src/agents.js +0 -147
- package/dist/cjs/src/api-version.js +0 -24
- package/dist/cjs/src/auth-schemas.js +0 -8
- package/dist/cjs/src/builtin-schema.js +0 -616
- package/dist/cjs/src/constants.js +0 -4
- package/dist/cjs/src/content-schema-transform.js +0 -175
- package/dist/cjs/src/create-input-schema.js +0 -66
- package/dist/cjs/src/enum.js +0 -12
- package/dist/cjs/src/flatten-templates.js +0 -26
- package/dist/cjs/src/get-is-leaf.js +0 -59
- package/dist/cjs/src/index.js +0 -62
- package/dist/cjs/src/interfaces.js +0 -98
- package/dist/cjs/src/layers/layers.js +0 -313
- package/dist/cjs/src/layers/refs.js +0 -243
- package/dist/cjs/src/layers/type-utils.js +0 -145
- package/dist/cjs/src/layers/visitor.js +0 -42
- package/dist/cjs/src/migration/index.js +0 -142
- package/dist/cjs/src/migration/to/v3.0.0.js +0 -217
- package/dist/cjs/src/migration/to/v3.1.0.js +0 -199
- package/dist/cjs/src/migration/to/v3.10.0.js +0 -72
- package/dist/cjs/src/migration/to/v3.11.0.js +0 -90
- package/dist/cjs/src/migration/to/v3.12.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.12.1.js +0 -12
- package/dist/cjs/src/migration/to/v3.12.2.js +0 -12
- package/dist/cjs/src/migration/to/v3.12.3.js +0 -92
- package/dist/cjs/src/migration/to/v3.13.0.js +0 -22
- package/dist/cjs/src/migration/to/v3.14.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.15.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.16.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.17.0.js +0 -27
- package/dist/cjs/src/migration/to/v3.17.1.js +0 -12
- package/dist/cjs/src/migration/to/v3.18.0.js +0 -69
- package/dist/cjs/src/migration/to/v3.18.1.js +0 -20
- package/dist/cjs/src/migration/to/v3.18.2.js +0 -24
- package/dist/cjs/src/migration/to/v3.19.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.2.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.20.0.js +0 -29
- package/dist/cjs/src/migration/to/v3.21.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.22.0.js +0 -30
- package/dist/cjs/src/migration/to/v3.23.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.24.0.js +0 -13
- package/dist/cjs/src/migration/to/v3.25.0.js +0 -13
- package/dist/cjs/src/migration/to/v3.26.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.27.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.28.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.29.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.3.0.js +0 -15
- package/dist/cjs/src/migration/to/v3.30.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.31.0.js +0 -43
- package/dist/cjs/src/migration/to/v3.32.0.js +0 -61
- package/dist/cjs/src/migration/to/v3.33.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.34.0.js +0 -123
- package/dist/cjs/src/migration/to/v3.35.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.36.0.js +0 -27
- package/dist/cjs/src/migration/to/v3.37.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.38.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.39.0.js +0 -47
- package/dist/cjs/src/migration/to/v3.4.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.40.0.js +0 -31
- package/dist/cjs/src/migration/to/v3.41.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.42.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.43.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.44.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.45.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.46.0.js +0 -37
- package/dist/cjs/src/migration/to/v3.47.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.48.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.49.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.5.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.5.1.js +0 -12
- package/dist/cjs/src/migration/to/v3.50.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.51.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.6.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.7.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.8.0.js +0 -12
- package/dist/cjs/src/migration/to/v3.9.0.js +0 -84
- package/dist/cjs/src/migration/types.js +0 -2
- package/dist/cjs/src/migration/utils.js +0 -10
- package/dist/cjs/src/mocks.js +0 -65
- package/dist/cjs/src/models/project-schema.js +0 -99
- package/dist/cjs/src/models/query.js +0 -35
- package/dist/cjs/src/models/service.js +0 -24
- package/dist/cjs/src/models/shape.js +0 -89
- package/dist/cjs/src/patterns.js +0 -2
- package/dist/cjs/src/project-schema/index.js +0 -156
- package/dist/cjs/src/project-schema/latest.js +0 -8
- package/dist/cjs/src/project-schema/migrate.js +0 -198
- package/dist/cjs/src/project-schema/v1.0.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.0.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.1.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.10.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.11.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.12.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.12.1.js +0 -8
- package/dist/cjs/src/project-schema/v3.12.2.js +0 -8
- package/dist/cjs/src/project-schema/v3.12.3.js +0 -8
- package/dist/cjs/src/project-schema/v3.13.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.13.1.js +0 -8
- package/dist/cjs/src/project-schema/v3.14.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.15.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.16.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.17.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.17.1.js +0 -8
- package/dist/cjs/src/project-schema/v3.18.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.18.1.js +0 -8
- package/dist/cjs/src/project-schema/v3.18.2.js +0 -8
- package/dist/cjs/src/project-schema/v3.19.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.2.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.20.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.21.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.22.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.23.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.24.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.25.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.26.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.27.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.28.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.29.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.3.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.30.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.31.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.32.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.33.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.34.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.35.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.36.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.37.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.38.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.39.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.4.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.40.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.41.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.42.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.43.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.44.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.45.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.46.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.47.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.48.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.49.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.5.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.5.1.js +0 -8
- package/dist/cjs/src/project-schema/v3.50.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.51.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.6.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.7.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.8.0.js +0 -8
- package/dist/cjs/src/project-schema/v3.9.0.js +0 -8
- package/dist/cjs/src/project-schema/v4.0.0.js +0 -8
- package/dist/cjs/src/refs.js +0 -671
- package/dist/cjs/src/relationships.js +0 -326
- package/dist/cjs/src/runtime-schema.js +0 -88
- package/dist/cjs/src/scalars.js +0 -8
- package/dist/cjs/src/schema-transform.js +0 -83
- package/dist/cjs/src/schema-util.js +0 -1140
- package/dist/cjs/src/schemas/auth-schemas.json +0 -313
- package/dist/cjs/src/schemas/index.js +0 -162
- package/dist/cjs/src/schemas/user-schema.json +0 -51
- package/dist/cjs/src/service-dependencies.js +0 -172
- package/dist/cjs/src/services/services.js +0 -156
- package/dist/cjs/src/services/types.js +0 -2
- package/dist/cjs/src/services/util.js +0 -45
- package/dist/cjs/src/taxonomies.js +0 -28
- package/dist/cjs/src/template-shapes/index.js +0 -37
- package/dist/cjs/src/template-shapes/names.js +0 -26
- package/dist/cjs/src/template-shapes/templates.js +0 -331
- package/dist/cjs/src/template-shapes/types.js +0 -10
- package/dist/cjs/src/template-shapes/where.js +0 -414
- package/dist/cjs/src/types/index.js +0 -19
- package/dist/cjs/src/types/transforms.js +0 -2
- package/dist/cjs/src/types/types.js +0 -21
- package/dist/cjs/src/types/utils.js +0 -344
- package/dist/cjs/src/unions.js +0 -88
- package/dist/cjs/src/user-schema.js +0 -8
- package/dist/cjs/src/util/ai-tools.js +0 -10
- package/dist/cjs/src/util/api-indexing.js +0 -62
- package/dist/cjs/src/util/detect-cycles.js +0 -48
- package/dist/cjs/src/util/find-shape-at-path.js +0 -57
- package/dist/cjs/src/util/form-config.js +0 -66
- package/dist/cjs/src/util/get-conflicting-properties.js +0 -58
- package/dist/cjs/src/util/get-return-shape.js +0 -34
- package/dist/cjs/src/util/has-arg.js +0 -17
- package/dist/cjs/src/util/merge.js +0 -269
- package/dist/cjs/src/util/patch-schema.js +0 -55
- package/dist/cjs/src/util/shapes.js +0 -31
- package/dist/cjs/src/validate.js +0 -1140
- package/dist/cjs/src/versions.js +0 -8
- package/dist/cjs/src/workflows.js +0 -76
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +0 -1
- package/dist/esm/package.json +0 -1
- package/dist/esm/src/content-schema-transform.js +0 -162
- package/dist/esm/src/flatten-templates.js +0 -20
- package/dist/esm/src/get-is-leaf.js +0 -56
- package/dist/esm/src/index.js +0 -46
- package/dist/esm/src/interfaces.js +0 -85
- package/dist/esm/src/layers/layers.js +0 -301
- package/dist/esm/src/layers/refs.js +0 -220
- package/dist/esm/src/layers/type-utils.js +0 -118
- package/dist/esm/src/layers/visitor.js +0 -38
- package/dist/esm/src/migration/index.js +0 -122
- package/dist/esm/src/migration/to/v3.0.0.js +0 -212
- package/dist/esm/src/migration/to/v3.1.0.js +0 -194
- package/dist/esm/src/migration/to/v3.32.0.js +0 -59
- package/dist/esm/src/migration/to/v3.34.0.js +0 -116
- package/dist/esm/src/migration/to/v3.39.0.js +0 -45
- package/dist/esm/src/mocks.js +0 -58
- package/dist/esm/src/models/project-schema.js +0 -92
- package/dist/esm/src/models/shape.js +0 -85
- package/dist/esm/src/project-schema/index.js +0 -138
- package/dist/esm/src/project-schema/migrate.js +0 -194
- package/dist/esm/src/refs.js +0 -608
- package/dist/esm/src/relationships.js +0 -311
- package/dist/esm/src/runtime-schema.js +0 -80
- package/dist/esm/src/schema-transform.js +0 -74
- package/dist/esm/src/schema-util.js +0 -1077
- package/dist/esm/src/schemas/auth-schemas.json +0 -313
- package/dist/esm/src/schemas/index.js +0 -154
- package/dist/esm/src/schemas/project-schema/experimental.json +0 -1101
- package/dist/esm/src/schemas/project-schema/latest.json +0 -3320
- package/dist/esm/src/schemas/project-schema/meta-schema-v1.0.0.json +0 -193
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.0.0.json +0 -608
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.1.0.json +0 -608
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.2.0.json +0 -612
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.3.0.json +0 -612
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.4.0.json +0 -637
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.0.json +0 -626
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.5.1.json +0 -626
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.6.0.json +0 -629
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.7.0.json +0 -1137
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.8.0.json +0 -1137
- package/dist/esm/src/schemas/project-schema/meta-schema-v3.9.0.json +0 -1477
- package/dist/esm/src/schemas/project-schema/v1.0.0.json +0 -321
- package/dist/esm/src/schemas/project-schema/v3.0.0.json +0 -414
- package/dist/esm/src/schemas/project-schema/v3.1.0.json +0 -572
- package/dist/esm/src/schemas/project-schema/v3.10.0.json +0 -2097
- package/dist/esm/src/schemas/project-schema/v3.11.0.json +0 -2141
- package/dist/esm/src/schemas/project-schema/v3.12.0.json +0 -2144
- package/dist/esm/src/schemas/project-schema/v3.12.1.json +0 -2282
- package/dist/esm/src/schemas/project-schema/v3.12.2.json +0 -2304
- package/dist/esm/src/schemas/project-schema/v3.12.3.json +0 -2357
- package/dist/esm/src/schemas/project-schema/v3.13.0.json +0 -2377
- package/dist/esm/src/schemas/project-schema/v3.14.0.json +0 -2385
- package/dist/esm/src/schemas/project-schema/v3.15.0.json +0 -2365
- package/dist/esm/src/schemas/project-schema/v3.16.0.json +0 -2373
- package/dist/esm/src/schemas/project-schema/v3.17.0.json +0 -2378
- package/dist/esm/src/schemas/project-schema/v3.17.1.json +0 -2380
- package/dist/esm/src/schemas/project-schema/v3.18.0.json +0 -2356
- package/dist/esm/src/schemas/project-schema/v3.18.1.json +0 -2357
- package/dist/esm/src/schemas/project-schema/v3.18.2.json +0 -2357
- package/dist/esm/src/schemas/project-schema/v3.19.0.json +0 -2369
- package/dist/esm/src/schemas/project-schema/v3.2.0.json +0 -580
- package/dist/esm/src/schemas/project-schema/v3.20.0.json +0 -2369
- package/dist/esm/src/schemas/project-schema/v3.21.0.json +0 -2376
- package/dist/esm/src/schemas/project-schema/v3.22.0.json +0 -2381
- package/dist/esm/src/schemas/project-schema/v3.23.0.json +0 -2456
- package/dist/esm/src/schemas/project-schema/v3.24.0.json +0 -2556
- package/dist/esm/src/schemas/project-schema/v3.25.0.json +0 -2552
- package/dist/esm/src/schemas/project-schema/v3.26.0.json +0 -2599
- package/dist/esm/src/schemas/project-schema/v3.27.0.json +0 -2611
- package/dist/esm/src/schemas/project-schema/v3.28.0.json +0 -2656
- package/dist/esm/src/schemas/project-schema/v3.29.0.json +0 -2670
- package/dist/esm/src/schemas/project-schema/v3.3.0.json +0 -581
- package/dist/esm/src/schemas/project-schema/v3.30.0.json +0 -2656
- package/dist/esm/src/schemas/project-schema/v3.31.0.json +0 -2714
- package/dist/esm/src/schemas/project-schema/v3.32.0.json +0 -2708
- package/dist/esm/src/schemas/project-schema/v3.33.0.json +0 -2715
- package/dist/esm/src/schemas/project-schema/v3.34.0.json +0 -2715
- package/dist/esm/src/schemas/project-schema/v3.35.0.json +0 -2748
- package/dist/esm/src/schemas/project-schema/v3.36.0.json +0 -2756
- package/dist/esm/src/schemas/project-schema/v3.37.0.json +0 -2821
- package/dist/esm/src/schemas/project-schema/v3.38.0.json +0 -2819
- package/dist/esm/src/schemas/project-schema/v3.39.0.json +0 -2827
- package/dist/esm/src/schemas/project-schema/v3.4.0.json +0 -571
- package/dist/esm/src/schemas/project-schema/v3.40.0.json +0 -2830
- package/dist/esm/src/schemas/project-schema/v3.41.0.json +0 -2830
- package/dist/esm/src/schemas/project-schema/v3.42.0.json +0 -2835
- package/dist/esm/src/schemas/project-schema/v3.43.0.json +0 -2841
- package/dist/esm/src/schemas/project-schema/v3.44.0.json +0 -3013
- package/dist/esm/src/schemas/project-schema/v3.45.0.json +0 -3064
- package/dist/esm/src/schemas/project-schema/v3.46.0.json +0 -3136
- package/dist/esm/src/schemas/project-schema/v3.47.0.json +0 -3189
- package/dist/esm/src/schemas/project-schema/v3.48.0.json +0 -3196
- package/dist/esm/src/schemas/project-schema/v3.49.0.json +0 -3239
- package/dist/esm/src/schemas/project-schema/v3.5.0.json +0 -571
- package/dist/esm/src/schemas/project-schema/v3.5.1.json +0 -571
- package/dist/esm/src/schemas/project-schema/v3.50.0.json +0 -3320
- package/dist/esm/src/schemas/project-schema/v3.51.0.json +0 -3320
- package/dist/esm/src/schemas/project-schema/v3.6.0.json +0 -587
- package/dist/esm/src/schemas/project-schema/v3.7.0.json +0 -587
- package/dist/esm/src/schemas/project-schema/v3.8.0.json +0 -604
- package/dist/esm/src/schemas/project-schema/v3.9.0.json +0 -604
- package/dist/esm/src/schemas/project-schema/v4.0.0.json +0 -2316
- package/dist/esm/src/schemas/project-schema.json +0 -190
- package/dist/esm/src/schemas/user-schema.json +0 -51
- package/dist/esm/src/service-dependencies.js +0 -165
- package/dist/esm/src/services/services.js +0 -145
- package/dist/esm/src/taxonomies.js +0 -24
- package/dist/esm/src/template-shapes/templates.js +0 -319
- package/dist/esm/src/template-shapes/where.js +0 -402
- package/dist/esm/src/types/index.js +0 -3
- package/dist/esm/src/types/utils.js +0 -279
- package/dist/esm/src/unions.js +0 -77
- package/dist/esm/src/user-schema.js +0 -7
- package/dist/esm/src/util/api-indexing.js +0 -57
- package/dist/esm/src/util/detect-cycles.js +0 -45
- package/dist/esm/src/util/form-config.js +0 -62
- package/dist/esm/src/util/get-conflicting-properties.js +0 -55
- package/dist/esm/src/util/get-return-shape.js +0 -30
- package/dist/esm/src/util/has-arg.js +0 -13
- package/dist/esm/src/util/merge.js +0 -256
- package/dist/esm/src/validate.js +0 -1126
- package/dist/esm/src/versions.js +0 -4
- package/dist/esm/src/workflows.js +0 -66
- package/dist/esm/tsconfig.esm.tsbuildinfo +0 -1
- package/dist/types/src/agents.d.ts +0 -14
- package/dist/types/src/auth-schemas.d.ts +0 -104
- package/dist/types/src/builtin-schema.d.ts +0 -8
- package/dist/types/src/content-schema-transform.d.ts +0 -35
- package/dist/types/src/create-input-schema.d.ts +0 -9
- package/dist/types/src/enum.d.ts +0 -2
- package/dist/types/src/flatten-templates.d.ts +0 -2
- package/dist/types/src/get-is-leaf.d.ts +0 -3
- package/dist/types/src/index.d.ts +0 -48
- package/dist/types/src/interfaces.d.ts +0 -12
- package/dist/types/src/layers/layers.d.ts +0 -26
- package/dist/types/src/layers/refs.d.ts +0 -102
- package/dist/types/src/layers/type-utils.d.ts +0 -59
- package/dist/types/src/layers/visitor.d.ts +0 -5
- package/dist/types/src/migration/index.d.ts +0 -64
- package/dist/types/src/migration/to/v3.0.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.1.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.10.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.11.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.12.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.12.1.d.ts +0 -4
- package/dist/types/src/migration/to/v3.12.2.d.ts +0 -4
- package/dist/types/src/migration/to/v3.12.3.d.ts +0 -4
- package/dist/types/src/migration/to/v3.13.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.14.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.15.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.16.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.17.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.17.1.d.ts +0 -4
- package/dist/types/src/migration/to/v3.18.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.18.1.d.ts +0 -4
- package/dist/types/src/migration/to/v3.18.2.d.ts +0 -4
- package/dist/types/src/migration/to/v3.19.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.2.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.20.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.21.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.22.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.23.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.24.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.25.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.26.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.27.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.28.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.29.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.3.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.30.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.31.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.32.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.33.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.34.0.d.ts +0 -6
- package/dist/types/src/migration/to/v3.35.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.36.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.37.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.38.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.39.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.4.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.40.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.41.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.42.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.43.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.44.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.45.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.46.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.47.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.48.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.49.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.5.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.5.1.d.ts +0 -4
- package/dist/types/src/migration/to/v3.50.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.51.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.6.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.7.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.8.0.d.ts +0 -4
- package/dist/types/src/migration/to/v3.9.0.d.ts +0 -4
- package/dist/types/src/migration/types.d.ts +0 -19
- package/dist/types/src/mocks.d.ts +0 -13
- package/dist/types/src/models/project-schema.d.ts +0 -35
- package/dist/types/src/models/query.d.ts +0 -17
- package/dist/types/src/models/service.d.ts +0 -12
- package/dist/types/src/models/shape.d.ts +0 -41
- package/dist/types/src/project-schema/index.d.ts +0 -187
- package/dist/types/src/project-schema/migrate.d.ts +0 -4
- package/dist/types/src/refs.d.ts +0 -226
- package/dist/types/src/relationships.d.ts +0 -40
- package/dist/types/src/runtime-schema.d.ts +0 -5
- package/dist/types/src/schema-transform.d.ts +0 -19
- package/dist/types/src/schema-util.d.ts +0 -210
- package/dist/types/src/service-dependencies.d.ts +0 -13
- package/dist/types/src/services/services.d.ts +0 -31
- package/dist/types/src/services/util.d.ts +0 -16
- package/dist/types/src/taxonomies.d.ts +0 -15
- package/dist/types/src/template-shapes/index.d.ts +0 -7
- package/dist/types/src/template-shapes/names.d.ts +0 -10
- package/dist/types/src/template-shapes/templates.d.ts +0 -32
- package/dist/types/src/template-shapes/types.d.ts +0 -15
- package/dist/types/src/template-shapes/where.d.ts +0 -37
- package/dist/types/src/types/index.d.ts +0 -3
- package/dist/types/src/types/transforms.d.ts +0 -13
- package/dist/types/src/types/types.d.ts +0 -211
- package/dist/types/src/types/utils.d.ts +0 -117
- package/dist/types/src/unions.d.ts +0 -14
- package/dist/types/src/user-schema.d.ts +0 -38
- package/dist/types/src/util/ai-tools.d.ts +0 -3
- package/dist/types/src/util/api-indexing.d.ts +0 -9
- package/dist/types/src/util/detect-cycles.d.ts +0 -7
- package/dist/types/src/util/find-shape-at-path.d.ts +0 -21
- package/dist/types/src/util/form-config.d.ts +0 -11
- package/dist/types/src/util/get-conflicting-properties.d.ts +0 -6
- package/dist/types/src/util/get-return-shape.d.ts +0 -4
- package/dist/types/src/util/has-arg.d.ts +0 -4
- package/dist/types/src/util/merge.d.ts +0 -15
- package/dist/types/src/util/patch-schema.d.ts +0 -8
- package/dist/types/src/util/shapes.d.ts +0 -5
- package/dist/types/src/validate.d.ts +0 -75
- package/dist/types/src/versions.d.ts +0 -4
- package/dist/types/src/workflows.d.ts +0 -14
- package/dist/types/tsconfig.types.tsbuildinfo +0 -1
- /package/dist/{esm/src/migration/types.js → __tests__/_examples.test.d.ts} +0 -0
- /package/dist/{esm/src/patterns.js → __tests__/agents.test.d.ts} +0 -0
- /package/dist/{esm/src/services/types.js → __tests__/api-version.test.d.ts} +0 -0
- /package/dist/{esm/src/types/transforms.js → __tests__/builtin-schema.test.d.ts} +0 -0
- /package/dist/{esm/src/agents.js → agents.js} +0 -0
- /package/dist/{types/src/api-version.d.ts → api-version.d.ts} +0 -0
- /package/dist/{esm/src/api-version.js → api-version.js} +0 -0
- /package/dist/{esm/src/auth-schemas.js → auth-schemas.js} +0 -0
- /package/dist/{esm/src/builtin-schema.js → builtin-schema.js} +0 -0
- /package/dist/{types/src/constants.d.ts → constants.d.ts} +0 -0
- /package/dist/{esm/src/constants.js → constants.js} +0 -0
- /package/dist/{esm/src/create-input-schema.js → create-input-schema.js} +0 -0
- /package/dist/{esm/src/enum.js → enum.js} +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.10.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.11.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.12.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.12.1.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.12.2.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.12.3.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.13.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.14.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.15.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.16.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.17.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.17.1.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.18.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.18.1.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.18.2.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.19.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.2.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.20.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.21.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.22.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.23.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.24.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.25.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.26.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.27.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.28.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.29.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.3.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.30.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.31.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.33.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.35.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.36.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.37.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.38.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.4.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.40.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.41.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.42.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.43.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.44.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.45.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.46.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.47.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.48.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.49.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.5.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.5.1.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.50.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.51.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.6.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.7.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.8.0.js +0 -0
- /package/dist/{esm/src/migration → migration}/to/v3.9.0.js +0 -0
- /package/dist/{types/src/migration → migration}/utils.d.ts +0 -0
- /package/dist/{esm/src/migration → migration}/utils.js +0 -0
- /package/dist/{esm/src/models → models}/query.js +0 -0
- /package/dist/{esm/src/models → models}/service.js +0 -0
- /package/dist/{types/src/patterns.d.ts → patterns.d.ts} +0 -0
- /package/dist/{types/src/project-schema → project-schema}/latest.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/latest.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v1.0.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v1.0.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.0.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.0.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.1.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.1.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.10.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.10.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.11.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.11.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.12.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.12.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.12.1.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.12.1.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.12.2.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.12.2.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.12.3.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.12.3.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.13.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.13.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.13.1.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.13.1.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.14.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.14.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.15.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.15.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.16.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.16.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.17.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.17.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.17.1.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.17.1.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.18.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.18.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.18.1.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.18.1.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.18.2.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.18.2.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.19.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.19.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.2.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.2.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.20.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.20.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.21.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.21.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.22.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.22.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.23.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.23.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.24.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.24.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.25.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.25.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.26.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.26.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.27.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.27.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.28.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.28.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.29.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.29.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.3.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.3.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.30.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.30.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.31.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.31.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.32.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.32.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.33.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.33.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.34.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.34.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.35.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.35.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.36.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.36.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.37.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.37.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.38.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.38.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.39.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.39.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.4.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.4.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.40.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.40.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.41.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.41.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.42.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.42.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.43.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.43.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.44.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.44.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.45.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.45.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.46.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.46.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.47.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.47.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.48.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.48.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.49.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.49.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.5.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.5.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.5.1.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.5.1.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.50.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.50.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.51.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.51.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.6.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.6.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.7.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.7.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.8.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.8.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v3.9.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v3.9.0.js +0 -0
- /package/dist/{types/src/project-schema → project-schema}/v4.0.0.d.ts +0 -0
- /package/dist/{esm/src/project-schema → project-schema}/v4.0.0.js +0 -0
- /package/dist/{types/src/scalars.d.ts → scalars.d.ts} +0 -0
- /package/dist/{esm/src/scalars.js → scalars.js} +0 -0
- /package/dist/{types/src/schemas → schemas}/index.d.ts +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/experimental.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/latest.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v1.0.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.0.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.1.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.2.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.3.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.4.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.5.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.5.1.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.6.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.7.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.8.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/meta-schema-v3.9.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v1.0.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.0.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.1.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.10.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.11.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.1.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.2.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.12.3.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.13.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.14.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.15.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.16.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.17.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.17.1.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.1.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.18.2.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.19.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.2.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.20.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.21.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.22.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.23.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.24.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.25.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.26.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.27.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.28.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.29.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.3.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.30.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.31.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.32.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.33.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.34.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.35.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.36.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.37.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.38.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.39.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.4.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.40.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.41.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.42.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.43.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.44.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.45.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.46.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.47.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.48.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.49.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.5.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.5.1.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.50.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.51.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.6.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.7.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.8.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v3.9.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema/v4.0.0.json +0 -0
- /package/dist/{cjs/src/schemas → schemas}/project-schema.json +0 -0
- /package/dist/{types/src/services → services}/types.d.ts +0 -0
- /package/dist/{esm/src/services → services}/util.js +0 -0
- /package/dist/{esm/src/template-shapes → template-shapes}/index.js +0 -0
- /package/dist/{esm/src/template-shapes → template-shapes}/names.js +0 -0
- /package/dist/{esm/src/template-shapes → template-shapes}/types.js +0 -0
- /package/dist/{esm/src/types → types}/types.js +0 -0
- /package/dist/{esm/src/util → util}/ai-tools.js +0 -0
- /package/dist/{esm/src/util → util}/find-shape-at-path.js +0 -0
- /package/dist/{esm/src/util → util}/patch-schema.js +0 -0
- /package/dist/{esm/src/util → util}/shapes.js +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectId": "4c54da75-a240-4e50-8343-bd1e8eafcdbb",
|
|
3
3
|
"defaultLocale": "en-us",
|
|
4
|
-
"locales": [
|
|
4
|
+
"locales": [
|
|
5
|
+
"en-us"
|
|
6
|
+
],
|
|
5
7
|
"apiVersion": "2",
|
|
6
8
|
"workflows": {},
|
|
7
9
|
"forms": {
|
|
@@ -98,7 +100,11 @@
|
|
|
98
100
|
"service": "michaels-store-takeshape"
|
|
99
101
|
}
|
|
100
102
|
},
|
|
101
|
-
"order": [
|
|
103
|
+
"order": [
|
|
104
|
+
"name",
|
|
105
|
+
"shopifyProductId",
|
|
106
|
+
"shopifyProduct"
|
|
107
|
+
]
|
|
102
108
|
}
|
|
103
109
|
}
|
|
104
110
|
},
|
|
@@ -655,7 +661,9 @@
|
|
|
655
661
|
"type": "string"
|
|
656
662
|
}
|
|
657
663
|
},
|
|
658
|
-
"required": [
|
|
664
|
+
"required": [
|
|
665
|
+
"id"
|
|
666
|
+
]
|
|
659
667
|
}
|
|
660
668
|
},
|
|
661
669
|
"Character": {
|
|
@@ -1180,7 +1188,9 @@
|
|
|
1180
1188
|
"description": "The ID of the collection to check."
|
|
1181
1189
|
}
|
|
1182
1190
|
},
|
|
1183
|
-
"required": [
|
|
1191
|
+
"required": [
|
|
1192
|
+
"id"
|
|
1193
|
+
]
|
|
1184
1194
|
},
|
|
1185
1195
|
"description": "Whether the product is in a given collection."
|
|
1186
1196
|
},
|
|
@@ -1250,7 +1260,10 @@
|
|
|
1250
1260
|
"description": "The key for the metafield."
|
|
1251
1261
|
}
|
|
1252
1262
|
},
|
|
1253
|
-
"required": [
|
|
1263
|
+
"required": [
|
|
1264
|
+
"namespace",
|
|
1265
|
+
"key"
|
|
1266
|
+
]
|
|
1254
1267
|
},
|
|
1255
1268
|
"description": "Returns a metafield by namespace and key that belongs to the resource."
|
|
1256
1269
|
},
|
|
@@ -1342,7 +1355,10 @@
|
|
|
1342
1355
|
"description": "The key for the private metafield."
|
|
1343
1356
|
}
|
|
1344
1357
|
},
|
|
1345
|
-
"required": [
|
|
1358
|
+
"required": [
|
|
1359
|
+
"namespace",
|
|
1360
|
+
"key"
|
|
1361
|
+
]
|
|
1346
1362
|
},
|
|
1347
1363
|
"description": "Returns a private metafield by namespace and key that belongs to the resource."
|
|
1348
1364
|
},
|
|
@@ -1488,7 +1504,9 @@
|
|
|
1488
1504
|
"description": "The ID of the channel to check."
|
|
1489
1505
|
}
|
|
1490
1506
|
},
|
|
1491
|
-
"required": [
|
|
1507
|
+
"required": [
|
|
1508
|
+
"channelId"
|
|
1509
|
+
]
|
|
1492
1510
|
},
|
|
1493
1511
|
"description": "Check to see whether the resource is published to a given channel."
|
|
1494
1512
|
},
|
|
@@ -1515,7 +1533,9 @@
|
|
|
1515
1533
|
"description": "The ID of the publication to check."
|
|
1516
1534
|
}
|
|
1517
1535
|
},
|
|
1518
|
-
"required": [
|
|
1536
|
+
"required": [
|
|
1537
|
+
"publicationId"
|
|
1538
|
+
]
|
|
1519
1539
|
},
|
|
1520
1540
|
"description": "Check to see whether the resource is published to a given publication."
|
|
1521
1541
|
},
|
|
@@ -1663,7 +1683,9 @@
|
|
|
1663
1683
|
"description": "Filters translations locale."
|
|
1664
1684
|
}
|
|
1665
1685
|
},
|
|
1666
|
-
"required": [
|
|
1686
|
+
"required": [
|
|
1687
|
+
"locale"
|
|
1688
|
+
]
|
|
1667
1689
|
},
|
|
1668
1690
|
"description": "The translations associated with the resource."
|
|
1669
1691
|
},
|
|
@@ -1944,7 +1966,11 @@
|
|
|
1944
1966
|
"description": "The value and value type of the metafield, wrapped in a ValueInput object."
|
|
1945
1967
|
}
|
|
1946
1968
|
},
|
|
1947
|
-
"required": [
|
|
1969
|
+
"required": [
|
|
1970
|
+
"namespace",
|
|
1971
|
+
"key",
|
|
1972
|
+
"valueInput"
|
|
1973
|
+
]
|
|
1948
1974
|
}
|
|
1949
1975
|
},
|
|
1950
1976
|
"Shopify_ProductPublicationInput": {
|
|
@@ -2141,7 +2167,11 @@
|
|
|
2141
2167
|
"id": "Shopify_ProductStatus",
|
|
2142
2168
|
"description": "The possible product statuses.",
|
|
2143
2169
|
"schema": {
|
|
2144
|
-
"enum": [
|
|
2170
|
+
"enum": [
|
|
2171
|
+
"ACTIVE",
|
|
2172
|
+
"ARCHIVED",
|
|
2173
|
+
"DRAFT"
|
|
2174
|
+
]
|
|
2145
2175
|
}
|
|
2146
2176
|
},
|
|
2147
2177
|
"Shopify_CollectionSortKeys": {
|
|
@@ -2150,7 +2180,12 @@
|
|
|
2150
2180
|
"id": "Shopify_CollectionSortKeys",
|
|
2151
2181
|
"description": "The set of valid sort keys for the Collection query.",
|
|
2152
2182
|
"schema": {
|
|
2153
|
-
"enum": [
|
|
2183
|
+
"enum": [
|
|
2184
|
+
"TITLE",
|
|
2185
|
+
"UPDATED_AT",
|
|
2186
|
+
"ID",
|
|
2187
|
+
"RELEVANCE"
|
|
2188
|
+
]
|
|
2154
2189
|
}
|
|
2155
2190
|
},
|
|
2156
2191
|
"Shopify_CollectionConnection": {
|
|
@@ -2175,7 +2210,10 @@
|
|
|
2175
2210
|
"description": "Information to aid in pagination."
|
|
2176
2211
|
}
|
|
2177
2212
|
},
|
|
2178
|
-
"required": [
|
|
2213
|
+
"required": [
|
|
2214
|
+
"edges",
|
|
2215
|
+
"pageInfo"
|
|
2216
|
+
]
|
|
2179
2217
|
}
|
|
2180
2218
|
},
|
|
2181
2219
|
"Shopify_Image": {
|
|
@@ -2217,7 +2255,10 @@
|
|
|
2217
2255
|
"description": "The key for the metafield."
|
|
2218
2256
|
}
|
|
2219
2257
|
},
|
|
2220
|
-
"required": [
|
|
2258
|
+
"required": [
|
|
2259
|
+
"namespace",
|
|
2260
|
+
"key"
|
|
2261
|
+
]
|
|
2221
2262
|
},
|
|
2222
2263
|
"description": "Returns a metafield by namespace and key that belongs to the resource."
|
|
2223
2264
|
},
|
|
@@ -2277,7 +2318,10 @@
|
|
|
2277
2318
|
"description": "The key for the private metafield."
|
|
2278
2319
|
}
|
|
2279
2320
|
},
|
|
2280
|
-
"required": [
|
|
2321
|
+
"required": [
|
|
2322
|
+
"namespace",
|
|
2323
|
+
"key"
|
|
2324
|
+
]
|
|
2281
2325
|
},
|
|
2282
2326
|
"description": "Returns a private metafield by namespace and key that belongs to the resource."
|
|
2283
2327
|
},
|
|
@@ -2360,7 +2404,13 @@
|
|
|
2360
2404
|
"description": "The original width of the image in pixels. Returns `null` if the image is not hosted by Shopify."
|
|
2361
2405
|
}
|
|
2362
2406
|
},
|
|
2363
|
-
"required": [
|
|
2407
|
+
"required": [
|
|
2408
|
+
"metafields",
|
|
2409
|
+
"originalSrc",
|
|
2410
|
+
"privateMetafields",
|
|
2411
|
+
"src",
|
|
2412
|
+
"transformedSrc"
|
|
2413
|
+
]
|
|
2364
2414
|
}
|
|
2365
2415
|
},
|
|
2366
2416
|
"Shopify_Media": {
|
|
@@ -2400,7 +2450,11 @@
|
|
|
2400
2450
|
"description": "Current status of the media."
|
|
2401
2451
|
}
|
|
2402
2452
|
},
|
|
2403
|
-
"required": [
|
|
2453
|
+
"required": [
|
|
2454
|
+
"mediaContentType",
|
|
2455
|
+
"mediaErrors",
|
|
2456
|
+
"status"
|
|
2457
|
+
]
|
|
2404
2458
|
}
|
|
2405
2459
|
},
|
|
2406
2460
|
"Shopify_ResourceFeedback": {
|
|
@@ -2434,7 +2488,11 @@
|
|
|
2434
2488
|
"description": "Summary of resource feedback pertaining to the resource."
|
|
2435
2489
|
}
|
|
2436
2490
|
},
|
|
2437
|
-
"required": [
|
|
2491
|
+
"required": [
|
|
2492
|
+
"appFeedback",
|
|
2493
|
+
"details",
|
|
2494
|
+
"summary"
|
|
2495
|
+
]
|
|
2438
2496
|
}
|
|
2439
2497
|
},
|
|
2440
2498
|
"Shopify_ProductImageSortKeys": {
|
|
@@ -2443,7 +2501,12 @@
|
|
|
2443
2501
|
"id": "Shopify_ProductImageSortKeys",
|
|
2444
2502
|
"description": "The set of valid sort keys for the ProductImage query.",
|
|
2445
2503
|
"schema": {
|
|
2446
|
-
"enum": [
|
|
2504
|
+
"enum": [
|
|
2505
|
+
"CREATED_AT",
|
|
2506
|
+
"POSITION",
|
|
2507
|
+
"ID",
|
|
2508
|
+
"RELEVANCE"
|
|
2509
|
+
]
|
|
2447
2510
|
}
|
|
2448
2511
|
},
|
|
2449
2512
|
"Shopify_CropRegion": {
|
|
@@ -2452,7 +2515,13 @@
|
|
|
2452
2515
|
"id": "Shopify_CropRegion",
|
|
2453
2516
|
"description": "The part of the image that should remain after cropping.",
|
|
2454
2517
|
"schema": {
|
|
2455
|
-
"enum": [
|
|
2518
|
+
"enum": [
|
|
2519
|
+
"CENTER",
|
|
2520
|
+
"TOP",
|
|
2521
|
+
"BOTTOM",
|
|
2522
|
+
"LEFT",
|
|
2523
|
+
"RIGHT"
|
|
2524
|
+
]
|
|
2456
2525
|
}
|
|
2457
2526
|
},
|
|
2458
2527
|
"Shopify_ImageConnection": {
|
|
@@ -2477,7 +2546,10 @@
|
|
|
2477
2546
|
"description": "Information to aid in pagination."
|
|
2478
2547
|
}
|
|
2479
2548
|
},
|
|
2480
|
-
"required": [
|
|
2549
|
+
"required": [
|
|
2550
|
+
"edges",
|
|
2551
|
+
"pageInfo"
|
|
2552
|
+
]
|
|
2481
2553
|
}
|
|
2482
2554
|
},
|
|
2483
2555
|
"Shopify_ProductMediaSortKeys": {
|
|
@@ -2486,7 +2558,11 @@
|
|
|
2486
2558
|
"id": "Shopify_ProductMediaSortKeys",
|
|
2487
2559
|
"description": "The set of valid sort keys for the ProductMedia query.",
|
|
2488
2560
|
"schema": {
|
|
2489
|
-
"enum": [
|
|
2561
|
+
"enum": [
|
|
2562
|
+
"POSITION",
|
|
2563
|
+
"ID",
|
|
2564
|
+
"RELEVANCE"
|
|
2565
|
+
]
|
|
2490
2566
|
}
|
|
2491
2567
|
},
|
|
2492
2568
|
"Shopify_MediaConnection": {
|
|
@@ -2511,7 +2587,10 @@
|
|
|
2511
2587
|
"description": "Information to aid in pagination."
|
|
2512
2588
|
}
|
|
2513
2589
|
},
|
|
2514
|
-
"required": [
|
|
2590
|
+
"required": [
|
|
2591
|
+
"edges",
|
|
2592
|
+
"pageInfo"
|
|
2593
|
+
]
|
|
2515
2594
|
}
|
|
2516
2595
|
},
|
|
2517
2596
|
"Shopify_Metafield": {
|
|
@@ -2610,7 +2689,10 @@
|
|
|
2610
2689
|
"description": "Information to aid in pagination."
|
|
2611
2690
|
}
|
|
2612
2691
|
},
|
|
2613
|
-
"required": [
|
|
2692
|
+
"required": [
|
|
2693
|
+
"edges",
|
|
2694
|
+
"pageInfo"
|
|
2695
|
+
]
|
|
2614
2696
|
}
|
|
2615
2697
|
},
|
|
2616
2698
|
"Shopify_ProductOption": {
|
|
@@ -2651,7 +2733,9 @@
|
|
|
2651
2733
|
"description": "Filters translations locale."
|
|
2652
2734
|
}
|
|
2653
2735
|
},
|
|
2654
|
-
"required": [
|
|
2736
|
+
"required": [
|
|
2737
|
+
"locale"
|
|
2738
|
+
]
|
|
2655
2739
|
},
|
|
2656
2740
|
"description": "The translations associated with the resource."
|
|
2657
2741
|
},
|
|
@@ -2664,7 +2748,13 @@
|
|
|
2664
2748
|
"description": "The corresponding value to the product option name."
|
|
2665
2749
|
}
|
|
2666
2750
|
},
|
|
2667
|
-
"required": [
|
|
2751
|
+
"required": [
|
|
2752
|
+
"id",
|
|
2753
|
+
"name",
|
|
2754
|
+
"position",
|
|
2755
|
+
"translations",
|
|
2756
|
+
"values"
|
|
2757
|
+
]
|
|
2668
2758
|
}
|
|
2669
2759
|
},
|
|
2670
2760
|
"Shopify_ProductPriceRange": {
|
|
@@ -2686,7 +2776,10 @@
|
|
|
2686
2776
|
"description": "The lowest variant's price."
|
|
2687
2777
|
}
|
|
2688
2778
|
},
|
|
2689
|
-
"required": [
|
|
2779
|
+
"required": [
|
|
2780
|
+
"maxVariantPrice",
|
|
2781
|
+
"minVariantPrice"
|
|
2782
|
+
]
|
|
2690
2783
|
}
|
|
2691
2784
|
},
|
|
2692
2785
|
"Shopify_ProductPriceRangeV2": {
|
|
@@ -2708,7 +2801,10 @@
|
|
|
2708
2801
|
"description": "The lowest variant's price."
|
|
2709
2802
|
}
|
|
2710
2803
|
},
|
|
2711
|
-
"required": [
|
|
2804
|
+
"required": [
|
|
2805
|
+
"maxVariantPrice",
|
|
2806
|
+
"minVariantPrice"
|
|
2807
|
+
]
|
|
2712
2808
|
}
|
|
2713
2809
|
},
|
|
2714
2810
|
"Shopify_PrivateMetafield": {
|
|
@@ -2756,7 +2852,15 @@
|
|
|
2756
2852
|
"description": "Represents the private metafield value type."
|
|
2757
2853
|
}
|
|
2758
2854
|
},
|
|
2759
|
-
"required": [
|
|
2855
|
+
"required": [
|
|
2856
|
+
"createdAt",
|
|
2857
|
+
"id",
|
|
2858
|
+
"key",
|
|
2859
|
+
"namespace",
|
|
2860
|
+
"updatedAt",
|
|
2861
|
+
"value",
|
|
2862
|
+
"valueType"
|
|
2863
|
+
]
|
|
2760
2864
|
}
|
|
2761
2865
|
},
|
|
2762
2866
|
"Shopify_PrivateMetafieldConnection": {
|
|
@@ -2781,7 +2885,10 @@
|
|
|
2781
2885
|
"description": "Information to aid in pagination."
|
|
2782
2886
|
}
|
|
2783
2887
|
},
|
|
2784
|
-
"required": [
|
|
2888
|
+
"required": [
|
|
2889
|
+
"edges",
|
|
2890
|
+
"pageInfo"
|
|
2891
|
+
]
|
|
2785
2892
|
}
|
|
2786
2893
|
},
|
|
2787
2894
|
"Shopify_ProductPublicationConnection": {
|
|
@@ -2806,7 +2913,10 @@
|
|
|
2806
2913
|
"description": "Information to aid in pagination."
|
|
2807
2914
|
}
|
|
2808
2915
|
},
|
|
2809
|
-
"required": [
|
|
2916
|
+
"required": [
|
|
2917
|
+
"edges",
|
|
2918
|
+
"pageInfo"
|
|
2919
|
+
]
|
|
2810
2920
|
}
|
|
2811
2921
|
},
|
|
2812
2922
|
"Shopify_ResourcePublicationConnection": {
|
|
@@ -2831,7 +2941,10 @@
|
|
|
2831
2941
|
"description": "Information to aid in pagination."
|
|
2832
2942
|
}
|
|
2833
2943
|
},
|
|
2834
|
-
"required": [
|
|
2944
|
+
"required": [
|
|
2945
|
+
"edges",
|
|
2946
|
+
"pageInfo"
|
|
2947
|
+
]
|
|
2835
2948
|
}
|
|
2836
2949
|
},
|
|
2837
2950
|
"Shopify_ResourcePublicationV2Connection": {
|
|
@@ -2856,7 +2969,10 @@
|
|
|
2856
2969
|
"description": "Information to aid in pagination."
|
|
2857
2970
|
}
|
|
2858
2971
|
},
|
|
2859
|
-
"required": [
|
|
2972
|
+
"required": [
|
|
2973
|
+
"edges",
|
|
2974
|
+
"pageInfo"
|
|
2975
|
+
]
|
|
2860
2976
|
}
|
|
2861
2977
|
},
|
|
2862
2978
|
"Shopify_SEO": {
|
|
@@ -2904,7 +3020,10 @@
|
|
|
2904
3020
|
"description": "The translation value."
|
|
2905
3021
|
}
|
|
2906
3022
|
},
|
|
2907
|
-
"required": [
|
|
3023
|
+
"required": [
|
|
3024
|
+
"key",
|
|
3025
|
+
"locale"
|
|
3026
|
+
]
|
|
2908
3027
|
}
|
|
2909
3028
|
},
|
|
2910
3029
|
"Shopify_ChannelConnection": {
|
|
@@ -2929,7 +3048,10 @@
|
|
|
2929
3048
|
"description": "Information to aid in pagination."
|
|
2930
3049
|
}
|
|
2931
3050
|
},
|
|
2932
|
-
"required": [
|
|
3051
|
+
"required": [
|
|
3052
|
+
"edges",
|
|
3053
|
+
"pageInfo"
|
|
3054
|
+
]
|
|
2933
3055
|
}
|
|
2934
3056
|
},
|
|
2935
3057
|
"Shopify_PublicationConnection": {
|
|
@@ -2954,7 +3076,10 @@
|
|
|
2954
3076
|
"description": "Information to aid in pagination."
|
|
2955
3077
|
}
|
|
2956
3078
|
},
|
|
2957
|
-
"required": [
|
|
3079
|
+
"required": [
|
|
3080
|
+
"edges",
|
|
3081
|
+
"pageInfo"
|
|
3082
|
+
]
|
|
2958
3083
|
}
|
|
2959
3084
|
},
|
|
2960
3085
|
"Shopify_ProductVariantSortKeys": {
|
|
@@ -3001,7 +3126,10 @@
|
|
|
3001
3126
|
"description": "Information to aid in pagination."
|
|
3002
3127
|
}
|
|
3003
3128
|
},
|
|
3004
|
-
"required": [
|
|
3129
|
+
"required": [
|
|
3130
|
+
"edges",
|
|
3131
|
+
"pageInfo"
|
|
3132
|
+
]
|
|
3005
3133
|
}
|
|
3006
3134
|
},
|
|
3007
3135
|
"Shopify_PrivateMetafieldValueInput": {
|
|
@@ -3023,7 +3151,10 @@
|
|
|
3023
3151
|
"description": "Represents the private metafield value type."
|
|
3024
3152
|
}
|
|
3025
3153
|
},
|
|
3026
|
-
"required": [
|
|
3154
|
+
"required": [
|
|
3155
|
+
"value",
|
|
3156
|
+
"valueType"
|
|
3157
|
+
]
|
|
3027
3158
|
}
|
|
3028
3159
|
},
|
|
3029
3160
|
"Shopify_ProductVariantInventoryManagement": {
|
|
@@ -3032,7 +3163,11 @@
|
|
|
3032
3163
|
"id": "Shopify_ProductVariantInventoryManagement",
|
|
3033
3164
|
"description": "The method of inventory tracking for a product variant.",
|
|
3034
3165
|
"schema": {
|
|
3035
|
-
"enum": [
|
|
3166
|
+
"enum": [
|
|
3167
|
+
"SHOPIFY",
|
|
3168
|
+
"NOT_MANAGED",
|
|
3169
|
+
"FULFILLMENT_SERVICE"
|
|
3170
|
+
]
|
|
3036
3171
|
}
|
|
3037
3172
|
},
|
|
3038
3173
|
"Shopify_ProductVariantInventoryPolicy": {
|
|
@@ -3041,7 +3176,10 @@
|
|
|
3041
3176
|
"id": "Shopify_ProductVariantInventoryPolicy",
|
|
3042
3177
|
"description": "The inventory policy for a product variant controls whether customers can continue to buy the variant when it\nis out of stock. When the value is <code>continue</code>, customers are able to buy the variant when it's out of stock.\nWhen the value is <code>deny</code>, customers can't buy the variant when it's out of stock.",
|
|
3043
3178
|
"schema": {
|
|
3044
|
-
"enum": [
|
|
3179
|
+
"enum": [
|
|
3180
|
+
"DENY",
|
|
3181
|
+
"CONTINUE"
|
|
3182
|
+
]
|
|
3045
3183
|
}
|
|
3046
3184
|
},
|
|
3047
3185
|
"Shopify_InventoryLevelInput": {
|
|
@@ -3064,7 +3202,10 @@
|
|
|
3064
3202
|
"description": "ID of the location."
|
|
3065
3203
|
}
|
|
3066
3204
|
},
|
|
3067
|
-
"required": [
|
|
3205
|
+
"required": [
|
|
3206
|
+
"availableQuantity",
|
|
3207
|
+
"locationId"
|
|
3208
|
+
]
|
|
3068
3209
|
}
|
|
3069
3210
|
},
|
|
3070
3211
|
"Shopify_InventoryItemInput": {
|
|
@@ -3094,7 +3235,12 @@
|
|
|
3094
3235
|
"id": "Shopify_WeightUnit",
|
|
3095
3236
|
"description": "Units of measurement for weight.",
|
|
3096
3237
|
"schema": {
|
|
3097
|
-
"enum": [
|
|
3238
|
+
"enum": [
|
|
3239
|
+
"KILOGRAMS",
|
|
3240
|
+
"GRAMS",
|
|
3241
|
+
"POUNDS",
|
|
3242
|
+
"OUNCES"
|
|
3243
|
+
]
|
|
3098
3244
|
}
|
|
3099
3245
|
},
|
|
3100
3246
|
"Shopify_CollectionEdge": {
|
|
@@ -3116,7 +3262,10 @@
|
|
|
3116
3262
|
"description": "The item at the end of CollectionEdge."
|
|
3117
3263
|
}
|
|
3118
3264
|
},
|
|
3119
|
-
"required": [
|
|
3265
|
+
"required": [
|
|
3266
|
+
"cursor",
|
|
3267
|
+
"node"
|
|
3268
|
+
]
|
|
3120
3269
|
}
|
|
3121
3270
|
},
|
|
3122
3271
|
"Shopify_PageInfo": {
|
|
@@ -3138,7 +3287,10 @@
|
|
|
3138
3287
|
"description": "Whether there are any pages prior to the current page."
|
|
3139
3288
|
}
|
|
3140
3289
|
},
|
|
3141
|
-
"required": [
|
|
3290
|
+
"required": [
|
|
3291
|
+
"hasNextPage",
|
|
3292
|
+
"hasPreviousPage"
|
|
3293
|
+
]
|
|
3142
3294
|
}
|
|
3143
3295
|
},
|
|
3144
3296
|
"Shopify_ImageContentType": {
|
|
@@ -3147,7 +3299,11 @@
|
|
|
3147
3299
|
"id": "Shopify_ImageContentType",
|
|
3148
3300
|
"description": "List of supported image content types.",
|
|
3149
3301
|
"schema": {
|
|
3150
|
-
"enum": [
|
|
3302
|
+
"enum": [
|
|
3303
|
+
"PNG",
|
|
3304
|
+
"JPG",
|
|
3305
|
+
"WEBP"
|
|
3306
|
+
]
|
|
3151
3307
|
}
|
|
3152
3308
|
},
|
|
3153
3309
|
"Shopify_MediaContentType": {
|
|
@@ -3156,7 +3312,12 @@
|
|
|
3156
3312
|
"id": "Shopify_MediaContentType",
|
|
3157
3313
|
"description": "The possible content types for a media object.",
|
|
3158
3314
|
"schema": {
|
|
3159
|
-
"enum": [
|
|
3315
|
+
"enum": [
|
|
3316
|
+
"VIDEO",
|
|
3317
|
+
"EXTERNAL_VIDEO",
|
|
3318
|
+
"MODEL_3D",
|
|
3319
|
+
"IMAGE"
|
|
3320
|
+
]
|
|
3160
3321
|
}
|
|
3161
3322
|
},
|
|
3162
3323
|
"Shopify_MediaError": {
|
|
@@ -3183,7 +3344,10 @@
|
|
|
3183
3344
|
"description": "Translated error message."
|
|
3184
3345
|
}
|
|
3185
3346
|
},
|
|
3186
|
-
"required": [
|
|
3347
|
+
"required": [
|
|
3348
|
+
"code",
|
|
3349
|
+
"message"
|
|
3350
|
+
]
|
|
3187
3351
|
}
|
|
3188
3352
|
},
|
|
3189
3353
|
"Shopify_MediaPreviewImage": {
|
|
@@ -3205,7 +3369,9 @@
|
|
|
3205
3369
|
"description": "Current status of the preview image."
|
|
3206
3370
|
}
|
|
3207
3371
|
},
|
|
3208
|
-
"required": [
|
|
3372
|
+
"required": [
|
|
3373
|
+
"status"
|
|
3374
|
+
]
|
|
3209
3375
|
}
|
|
3210
3376
|
},
|
|
3211
3377
|
"Shopify_MediaStatus": {
|
|
@@ -3214,7 +3380,12 @@
|
|
|
3214
3380
|
"id": "Shopify_MediaStatus",
|
|
3215
3381
|
"description": "The possible statuses for a media object.",
|
|
3216
3382
|
"schema": {
|
|
3217
|
-
"enum": [
|
|
3383
|
+
"enum": [
|
|
3384
|
+
"UPLOADED",
|
|
3385
|
+
"PROCESSING",
|
|
3386
|
+
"READY",
|
|
3387
|
+
"FAILED"
|
|
3388
|
+
]
|
|
3218
3389
|
}
|
|
3219
3390
|
},
|
|
3220
3391
|
"Shopify_AppFeedback": {
|
|
@@ -3244,7 +3415,10 @@
|
|
|
3244
3415
|
"description": "The feedback message presented to the merchant."
|
|
3245
3416
|
}
|
|
3246
3417
|
},
|
|
3247
|
-
"required": [
|
|
3418
|
+
"required": [
|
|
3419
|
+
"app",
|
|
3420
|
+
"messages"
|
|
3421
|
+
]
|
|
3248
3422
|
}
|
|
3249
3423
|
},
|
|
3250
3424
|
"Shopify_ImageEdge": {
|
|
@@ -3266,7 +3440,10 @@
|
|
|
3266
3440
|
"description": "The item at the end of ImageEdge."
|
|
3267
3441
|
}
|
|
3268
3442
|
},
|
|
3269
|
-
"required": [
|
|
3443
|
+
"required": [
|
|
3444
|
+
"cursor",
|
|
3445
|
+
"node"
|
|
3446
|
+
]
|
|
3270
3447
|
}
|
|
3271
3448
|
},
|
|
3272
3449
|
"Shopify_MediaEdge": {
|
|
@@ -3288,7 +3465,10 @@
|
|
|
3288
3465
|
"description": "The item at the end of MediaEdge."
|
|
3289
3466
|
}
|
|
3290
3467
|
},
|
|
3291
|
-
"required": [
|
|
3468
|
+
"required": [
|
|
3469
|
+
"cursor",
|
|
3470
|
+
"node"
|
|
3471
|
+
]
|
|
3292
3472
|
}
|
|
3293
3473
|
},
|
|
3294
3474
|
"Shopify_MetafieldOwnerType": {
|
|
@@ -3318,7 +3498,12 @@
|
|
|
3318
3498
|
"id": "Shopify_MetafieldValueType",
|
|
3319
3499
|
"description": "Metafield value types.",
|
|
3320
3500
|
"schema": {
|
|
3321
|
-
"enum": [
|
|
3501
|
+
"enum": [
|
|
3502
|
+
"STRING",
|
|
3503
|
+
"INTEGER",
|
|
3504
|
+
"JSON_STRING",
|
|
3505
|
+
"BOOLEAN"
|
|
3506
|
+
]
|
|
3322
3507
|
}
|
|
3323
3508
|
},
|
|
3324
3509
|
"Shopify_MetafieldEdge": {
|
|
@@ -3340,7 +3525,10 @@
|
|
|
3340
3525
|
"description": "The item at the end of MetafieldEdge."
|
|
3341
3526
|
}
|
|
3342
3527
|
},
|
|
3343
|
-
"required": [
|
|
3528
|
+
"required": [
|
|
3529
|
+
"cursor",
|
|
3530
|
+
"node"
|
|
3531
|
+
]
|
|
3344
3532
|
}
|
|
3345
3533
|
},
|
|
3346
3534
|
"Shopify_MoneyV2": {
|
|
@@ -3362,7 +3550,10 @@
|
|
|
3362
3550
|
"description": "Currency of the money."
|
|
3363
3551
|
}
|
|
3364
3552
|
},
|
|
3365
|
-
"required": [
|
|
3553
|
+
"required": [
|
|
3554
|
+
"amount",
|
|
3555
|
+
"currencyCode"
|
|
3556
|
+
]
|
|
3366
3557
|
}
|
|
3367
3558
|
},
|
|
3368
3559
|
"Shopify_PrivateMetafieldValueType": {
|
|
@@ -3371,7 +3562,11 @@
|
|
|
3371
3562
|
"id": "Shopify_PrivateMetafieldValueType",
|
|
3372
3563
|
"description": "Private Metafield value types.",
|
|
3373
3564
|
"schema": {
|
|
3374
|
-
"enum": [
|
|
3565
|
+
"enum": [
|
|
3566
|
+
"STRING",
|
|
3567
|
+
"INTEGER",
|
|
3568
|
+
"JSON_STRING"
|
|
3569
|
+
]
|
|
3375
3570
|
}
|
|
3376
3571
|
},
|
|
3377
3572
|
"Shopify_PrivateMetafieldEdge": {
|
|
@@ -3393,7 +3588,10 @@
|
|
|
3393
3588
|
"description": "The item at the end of PrivateMetafieldEdge."
|
|
3394
3589
|
}
|
|
3395
3590
|
},
|
|
3396
|
-
"required": [
|
|
3591
|
+
"required": [
|
|
3592
|
+
"cursor",
|
|
3593
|
+
"node"
|
|
3594
|
+
]
|
|
3397
3595
|
}
|
|
3398
3596
|
},
|
|
3399
3597
|
"Shopify_ProductPublicationEdge": {
|
|
@@ -3415,7 +3613,10 @@
|
|
|
3415
3613
|
"description": "The item at the end of ProductPublicationEdge."
|
|
3416
3614
|
}
|
|
3417
3615
|
},
|
|
3418
|
-
"required": [
|
|
3616
|
+
"required": [
|
|
3617
|
+
"cursor",
|
|
3618
|
+
"node"
|
|
3619
|
+
]
|
|
3419
3620
|
}
|
|
3420
3621
|
},
|
|
3421
3622
|
"Shopify_ResourcePublicationEdge": {
|
|
@@ -3437,7 +3638,10 @@
|
|
|
3437
3638
|
"description": "The item at the end of ResourcePublicationEdge."
|
|
3438
3639
|
}
|
|
3439
3640
|
},
|
|
3440
|
-
"required": [
|
|
3641
|
+
"required": [
|
|
3642
|
+
"cursor",
|
|
3643
|
+
"node"
|
|
3644
|
+
]
|
|
3441
3645
|
}
|
|
3442
3646
|
},
|
|
3443
3647
|
"Shopify_ResourcePublicationV2Edge": {
|
|
@@ -3459,7 +3663,10 @@
|
|
|
3459
3663
|
"description": "The item at the end of ResourcePublicationV2Edge."
|
|
3460
3664
|
}
|
|
3461
3665
|
},
|
|
3462
|
-
"required": [
|
|
3666
|
+
"required": [
|
|
3667
|
+
"cursor",
|
|
3668
|
+
"node"
|
|
3669
|
+
]
|
|
3463
3670
|
}
|
|
3464
3671
|
},
|
|
3465
3672
|
"Shopify_ChannelEdge": {
|
|
@@ -3481,7 +3688,10 @@
|
|
|
3481
3688
|
"description": "The item at the end of ChannelEdge."
|
|
3482
3689
|
}
|
|
3483
3690
|
},
|
|
3484
|
-
"required": [
|
|
3691
|
+
"required": [
|
|
3692
|
+
"cursor",
|
|
3693
|
+
"node"
|
|
3694
|
+
]
|
|
3485
3695
|
}
|
|
3486
3696
|
},
|
|
3487
3697
|
"Shopify_PublicationEdge": {
|
|
@@ -3503,7 +3713,10 @@
|
|
|
3503
3713
|
"description": "The item at the end of PublicationEdge."
|
|
3504
3714
|
}
|
|
3505
3715
|
},
|
|
3506
|
-
"required": [
|
|
3716
|
+
"required": [
|
|
3717
|
+
"cursor",
|
|
3718
|
+
"node"
|
|
3719
|
+
]
|
|
3507
3720
|
}
|
|
3508
3721
|
},
|
|
3509
3722
|
"Shopify_ProductVariantEdge": {
|
|
@@ -3525,7 +3738,10 @@
|
|
|
3525
3738
|
"description": "The item at the end of ProductVariantEdge."
|
|
3526
3739
|
}
|
|
3527
3740
|
},
|
|
3528
|
-
"required": [
|
|
3741
|
+
"required": [
|
|
3742
|
+
"cursor",
|
|
3743
|
+
"node"
|
|
3744
|
+
]
|
|
3529
3745
|
}
|
|
3530
3746
|
},
|
|
3531
3747
|
"Shopify_Collection": {
|
|
@@ -3582,7 +3798,9 @@
|
|
|
3582
3798
|
"description": "The ID of the product to check."
|
|
3583
3799
|
}
|
|
3584
3800
|
},
|
|
3585
|
-
"required": [
|
|
3801
|
+
"required": [
|
|
3802
|
+
"id"
|
|
3803
|
+
]
|
|
3586
3804
|
},
|
|
3587
3805
|
"description": "Whether the collection includes the specified product."
|
|
3588
3806
|
},
|
|
@@ -3639,7 +3857,10 @@
|
|
|
3639
3857
|
"description": "The key for the metafield."
|
|
3640
3858
|
}
|
|
3641
3859
|
},
|
|
3642
|
-
"required": [
|
|
3860
|
+
"required": [
|
|
3861
|
+
"namespace",
|
|
3862
|
+
"key"
|
|
3863
|
+
]
|
|
3643
3864
|
},
|
|
3644
3865
|
"description": "Returns a metafield by namespace and key that belongs to the resource."
|
|
3645
3866
|
},
|
|
@@ -3693,7 +3914,10 @@
|
|
|
3693
3914
|
"description": "The key for the private metafield."
|
|
3694
3915
|
}
|
|
3695
3916
|
},
|
|
3696
|
-
"required": [
|
|
3917
|
+
"required": [
|
|
3918
|
+
"namespace",
|
|
3919
|
+
"key"
|
|
3920
|
+
]
|
|
3697
3921
|
},
|
|
3698
3922
|
"description": "Returns a private metafield by namespace and key that belongs to the resource."
|
|
3699
3923
|
},
|
|
@@ -3842,7 +4066,9 @@
|
|
|
3842
4066
|
"description": "The ID of the channel to check."
|
|
3843
4067
|
}
|
|
3844
4068
|
},
|
|
3845
|
-
"required": [
|
|
4069
|
+
"required": [
|
|
4070
|
+
"channelId"
|
|
4071
|
+
]
|
|
3846
4072
|
},
|
|
3847
4073
|
"description": "Check to see whether the resource is published to a given channel."
|
|
3848
4074
|
},
|
|
@@ -3869,7 +4095,9 @@
|
|
|
3869
4095
|
"description": "The ID of the publication to check."
|
|
3870
4096
|
}
|
|
3871
4097
|
},
|
|
3872
|
-
"required": [
|
|
4098
|
+
"required": [
|
|
4099
|
+
"publicationId"
|
|
4100
|
+
]
|
|
3873
4101
|
},
|
|
3874
4102
|
"description": "Check to see whether the resource is published to a given publication."
|
|
3875
4103
|
},
|
|
@@ -3989,7 +4217,9 @@
|
|
|
3989
4217
|
"description": "Filters translations locale."
|
|
3990
4218
|
}
|
|
3991
4219
|
},
|
|
3992
|
-
"required": [
|
|
4220
|
+
"required": [
|
|
4221
|
+
"locale"
|
|
4222
|
+
]
|
|
3993
4223
|
},
|
|
3994
4224
|
"description": "The translations associated with the resource."
|
|
3995
4225
|
},
|
|
@@ -4132,7 +4362,12 @@
|
|
|
4132
4362
|
"id": "Shopify_MediaPreviewImageStatus",
|
|
4133
4363
|
"description": "The possible statuses for a media preview image.",
|
|
4134
4364
|
"schema": {
|
|
4135
|
-
"enum": [
|
|
4365
|
+
"enum": [
|
|
4366
|
+
"UPLOADED",
|
|
4367
|
+
"PROCESSING",
|
|
4368
|
+
"READY",
|
|
4369
|
+
"FAILED"
|
|
4370
|
+
]
|
|
4136
4371
|
}
|
|
4137
4372
|
},
|
|
4138
4373
|
"Shopify_App": {
|
|
@@ -4343,7 +4578,9 @@
|
|
|
4343
4578
|
"description": "Filters translations locale."
|
|
4344
4579
|
}
|
|
4345
4580
|
},
|
|
4346
|
-
"required": [
|
|
4581
|
+
"required": [
|
|
4582
|
+
"locale"
|
|
4583
|
+
]
|
|
4347
4584
|
},
|
|
4348
4585
|
"description": "The translations associated with the resource."
|
|
4349
4586
|
},
|
|
@@ -4353,7 +4590,11 @@
|
|
|
4353
4590
|
"@mapping": "michaels-store-takeshape:Link.url"
|
|
4354
4591
|
}
|
|
4355
4592
|
},
|
|
4356
|
-
"required": [
|
|
4593
|
+
"required": [
|
|
4594
|
+
"label",
|
|
4595
|
+
"translations",
|
|
4596
|
+
"url"
|
|
4597
|
+
]
|
|
4357
4598
|
}
|
|
4358
4599
|
},
|
|
4359
4600
|
"Shopify_UserError": {
|
|
@@ -4378,7 +4619,9 @@
|
|
|
4378
4619
|
"description": "The error message."
|
|
4379
4620
|
}
|
|
4380
4621
|
},
|
|
4381
|
-
"required": [
|
|
4622
|
+
"required": [
|
|
4623
|
+
"message"
|
|
4624
|
+
]
|
|
4382
4625
|
}
|
|
4383
4626
|
},
|
|
4384
4627
|
"Shopify_CurrencyCode": {
|
|
@@ -4578,7 +4821,11 @@
|
|
|
4578
4821
|
"@mapping": "michaels-store-takeshape:ProductPublication.publishDate"
|
|
4579
4822
|
}
|
|
4580
4823
|
},
|
|
4581
|
-
"required": [
|
|
4824
|
+
"required": [
|
|
4825
|
+
"channel",
|
|
4826
|
+
"isPublished",
|
|
4827
|
+
"product"
|
|
4828
|
+
]
|
|
4582
4829
|
}
|
|
4583
4830
|
},
|
|
4584
4831
|
"Shopify_ResourcePublication": {
|
|
@@ -4616,7 +4863,13 @@
|
|
|
4616
4863
|
"description": "The resource published to the publication."
|
|
4617
4864
|
}
|
|
4618
4865
|
},
|
|
4619
|
-
"required": [
|
|
4866
|
+
"required": [
|
|
4867
|
+
"channel",
|
|
4868
|
+
"isPublished",
|
|
4869
|
+
"publication",
|
|
4870
|
+
"publishDate",
|
|
4871
|
+
"publishable"
|
|
4872
|
+
]
|
|
4620
4873
|
}
|
|
4621
4874
|
},
|
|
4622
4875
|
"Shopify_ResourcePublicationV2": {
|
|
@@ -4648,7 +4901,11 @@
|
|
|
4648
4901
|
"description": "The resource published to the publication."
|
|
4649
4902
|
}
|
|
4650
4903
|
},
|
|
4651
|
-
"required": [
|
|
4904
|
+
"required": [
|
|
4905
|
+
"isPublished",
|
|
4906
|
+
"publication",
|
|
4907
|
+
"publishable"
|
|
4908
|
+
]
|
|
4652
4909
|
}
|
|
4653
4910
|
},
|
|
4654
4911
|
"Shopify_Channel": {
|
|
@@ -4744,7 +5001,9 @@
|
|
|
4744
5001
|
"description": "Collection ID to check."
|
|
4745
5002
|
}
|
|
4746
5003
|
},
|
|
4747
|
-
"required": [
|
|
5004
|
+
"required": [
|
|
5005
|
+
"id"
|
|
5006
|
+
]
|
|
4748
5007
|
},
|
|
4749
5008
|
"description": "Whether the collection is available to the channel."
|
|
4750
5009
|
},
|
|
@@ -4977,7 +5236,9 @@
|
|
|
4977
5236
|
"description": "Collection ID to check."
|
|
4978
5237
|
}
|
|
4979
5238
|
},
|
|
4980
|
-
"required": [
|
|
5239
|
+
"required": [
|
|
5240
|
+
"id"
|
|
5241
|
+
]
|
|
4981
5242
|
},
|
|
4982
5243
|
"description": "Whether the collection is available to the publication."
|
|
4983
5244
|
},
|
|
@@ -5237,7 +5498,10 @@
|
|
|
5237
5498
|
"description": "The key for the metafield."
|
|
5238
5499
|
}
|
|
5239
5500
|
},
|
|
5240
|
-
"required": [
|
|
5501
|
+
"required": [
|
|
5502
|
+
"namespace",
|
|
5503
|
+
"key"
|
|
5504
|
+
]
|
|
5241
5505
|
},
|
|
5242
5506
|
"description": "Returns a metafield by namespace and key that belongs to the resource."
|
|
5243
5507
|
},
|
|
@@ -5339,7 +5603,10 @@
|
|
|
5339
5603
|
"description": "The key for the private metafield."
|
|
5340
5604
|
}
|
|
5341
5605
|
},
|
|
5342
|
-
"required": [
|
|
5606
|
+
"required": [
|
|
5607
|
+
"namespace",
|
|
5608
|
+
"key"
|
|
5609
|
+
]
|
|
5343
5610
|
},
|
|
5344
5611
|
"description": "Returns a private metafield by namespace and key that belongs to the resource."
|
|
5345
5612
|
},
|
|
@@ -5441,7 +5708,9 @@
|
|
|
5441
5708
|
"description": "Filters translations locale."
|
|
5442
5709
|
}
|
|
5443
5710
|
},
|
|
5444
|
-
"required": [
|
|
5711
|
+
"required": [
|
|
5712
|
+
"locale"
|
|
5713
|
+
]
|
|
5445
5714
|
},
|
|
5446
5715
|
"description": "The translations associated with the resource."
|
|
5447
5716
|
},
|
|
@@ -5497,7 +5766,16 @@
|
|
|
5497
5766
|
"id": "Shopify_ProductCollectionSortKeys",
|
|
5498
5767
|
"description": "The set of valid sort keys for the ProductCollection query.",
|
|
5499
5768
|
"schema": {
|
|
5500
|
-
"enum": [
|
|
5769
|
+
"enum": [
|
|
5770
|
+
"TITLE",
|
|
5771
|
+
"PRICE",
|
|
5772
|
+
"BEST_SELLING",
|
|
5773
|
+
"CREATED",
|
|
5774
|
+
"ID",
|
|
5775
|
+
"MANUAL",
|
|
5776
|
+
"COLLECTION_DEFAULT",
|
|
5777
|
+
"RELEVANCE"
|
|
5778
|
+
]
|
|
5501
5779
|
}
|
|
5502
5780
|
},
|
|
5503
5781
|
"Shopify_ProductConnection": {
|
|
@@ -5522,7 +5800,10 @@
|
|
|
5522
5800
|
"description": "Information to aid in pagination."
|
|
5523
5801
|
}
|
|
5524
5802
|
},
|
|
5525
|
-
"required": [
|
|
5803
|
+
"required": [
|
|
5804
|
+
"edges",
|
|
5805
|
+
"pageInfo"
|
|
5806
|
+
]
|
|
5526
5807
|
}
|
|
5527
5808
|
},
|
|
5528
5809
|
"Shopify_CollectionPublicationConnection": {
|
|
@@ -5547,7 +5828,10 @@
|
|
|
5547
5828
|
"description": "Information to aid in pagination."
|
|
5548
5829
|
}
|
|
5549
5830
|
},
|
|
5550
|
-
"required": [
|
|
5831
|
+
"required": [
|
|
5832
|
+
"edges",
|
|
5833
|
+
"pageInfo"
|
|
5834
|
+
]
|
|
5551
5835
|
}
|
|
5552
5836
|
},
|
|
5553
5837
|
"Shopify_CollectionRuleSet": {
|
|
@@ -5572,7 +5856,10 @@
|
|
|
5572
5856
|
"description": "The rules used to assign products to the collection."
|
|
5573
5857
|
}
|
|
5574
5858
|
},
|
|
5575
|
-
"required": [
|
|
5859
|
+
"required": [
|
|
5860
|
+
"appliedDisjunctively",
|
|
5861
|
+
"rules"
|
|
5862
|
+
]
|
|
5576
5863
|
}
|
|
5577
5864
|
},
|
|
5578
5865
|
"Shopify_CollectionSortOrder": {
|
|
@@ -5612,7 +5899,9 @@
|
|
|
5612
5899
|
"description": "A concise set of copy strings to be displayed to merchants, to guide them in resolving problems your app\nencounters when trying to make use of their Shop and its resources."
|
|
5613
5900
|
}
|
|
5614
5901
|
},
|
|
5615
|
-
"required": [
|
|
5902
|
+
"required": [
|
|
5903
|
+
"message"
|
|
5904
|
+
]
|
|
5616
5905
|
}
|
|
5617
5906
|
},
|
|
5618
5907
|
"Shopify_AppInstallation": {
|
|
@@ -5826,7 +6115,11 @@
|
|
|
5826
6115
|
"@mapping": "michaels-store-takeshape:NavigationItem.url"
|
|
5827
6116
|
}
|
|
5828
6117
|
},
|
|
5829
|
-
"required": [
|
|
6118
|
+
"required": [
|
|
6119
|
+
"id",
|
|
6120
|
+
"title",
|
|
6121
|
+
"url"
|
|
6122
|
+
]
|
|
5830
6123
|
}
|
|
5831
6124
|
},
|
|
5832
6125
|
"Shopify_Publishable": {
|
|
@@ -5870,7 +6163,9 @@
|
|
|
5870
6163
|
"description": "The ID of the channel to check."
|
|
5871
6164
|
}
|
|
5872
6165
|
},
|
|
5873
|
-
"required": [
|
|
6166
|
+
"required": [
|
|
6167
|
+
"channelId"
|
|
6168
|
+
]
|
|
5874
6169
|
},
|
|
5875
6170
|
"description": "Check to see whether the resource is published to a given channel."
|
|
5876
6171
|
},
|
|
@@ -5897,7 +6192,9 @@
|
|
|
5897
6192
|
"description": "The ID of the publication to check."
|
|
5898
6193
|
}
|
|
5899
6194
|
},
|
|
5900
|
-
"required": [
|
|
6195
|
+
"required": [
|
|
6196
|
+
"publicationId"
|
|
6197
|
+
]
|
|
5901
6198
|
},
|
|
5902
6199
|
"description": "Check to see whether the resource is published to a given publication."
|
|
5903
6200
|
},
|
|
@@ -6307,7 +6604,9 @@
|
|
|
6307
6604
|
"@mapping": "michaels-store-takeshape:EditableProperty.reason"
|
|
6308
6605
|
}
|
|
6309
6606
|
},
|
|
6310
|
-
"required": [
|
|
6607
|
+
"required": [
|
|
6608
|
+
"locked"
|
|
6609
|
+
]
|
|
6311
6610
|
}
|
|
6312
6611
|
},
|
|
6313
6612
|
"Shopify_InventoryItem": {
|
|
@@ -6392,7 +6691,9 @@
|
|
|
6392
6691
|
"description": "ID of the location for which the inventory level is requested."
|
|
6393
6692
|
}
|
|
6394
6693
|
},
|
|
6395
|
-
"required": [
|
|
6694
|
+
"required": [
|
|
6695
|
+
"locationId"
|
|
6696
|
+
]
|
|
6396
6697
|
},
|
|
6397
6698
|
"description": "Get the inventory level at a specific location."
|
|
6398
6699
|
},
|
|
@@ -6520,7 +6821,10 @@
|
|
|
6520
6821
|
"description": "Information to aid in pagination."
|
|
6521
6822
|
}
|
|
6522
6823
|
},
|
|
6523
|
-
"required": [
|
|
6824
|
+
"required": [
|
|
6825
|
+
"edges",
|
|
6826
|
+
"pageInfo"
|
|
6827
|
+
]
|
|
6524
6828
|
}
|
|
6525
6829
|
},
|
|
6526
6830
|
"Shopify_SelectedOption": {
|
|
@@ -6542,7 +6846,10 @@
|
|
|
6542
6846
|
"description": "The product option’s value."
|
|
6543
6847
|
}
|
|
6544
6848
|
},
|
|
6545
|
-
"required": [
|
|
6849
|
+
"required": [
|
|
6850
|
+
"name",
|
|
6851
|
+
"value"
|
|
6852
|
+
]
|
|
6546
6853
|
}
|
|
6547
6854
|
},
|
|
6548
6855
|
"Shopify_ProductEdge": {
|
|
@@ -6564,7 +6871,10 @@
|
|
|
6564
6871
|
"description": "The item at the end of ProductEdge."
|
|
6565
6872
|
}
|
|
6566
6873
|
},
|
|
6567
|
-
"required": [
|
|
6874
|
+
"required": [
|
|
6875
|
+
"cursor",
|
|
6876
|
+
"node"
|
|
6877
|
+
]
|
|
6568
6878
|
}
|
|
6569
6879
|
},
|
|
6570
6880
|
"Shopify_CollectionPublicationEdge": {
|
|
@@ -6586,7 +6896,10 @@
|
|
|
6586
6896
|
"description": "The item at the end of CollectionPublicationEdge."
|
|
6587
6897
|
}
|
|
6588
6898
|
},
|
|
6589
|
-
"required": [
|
|
6899
|
+
"required": [
|
|
6900
|
+
"cursor",
|
|
6901
|
+
"node"
|
|
6902
|
+
]
|
|
6590
6903
|
}
|
|
6591
6904
|
},
|
|
6592
6905
|
"Shopify_CollectionRule": {
|
|
@@ -6613,7 +6926,11 @@
|
|
|
6613
6926
|
"description": "The type of operator that the rule is based on (for example, `equals`, `contains`, or `not_equals`)."
|
|
6614
6927
|
}
|
|
6615
6928
|
},
|
|
6616
|
-
"required": [
|
|
6929
|
+
"required": [
|
|
6930
|
+
"column",
|
|
6931
|
+
"condition",
|
|
6932
|
+
"relation"
|
|
6933
|
+
]
|
|
6617
6934
|
}
|
|
6618
6935
|
},
|
|
6619
6936
|
"Shopify_AccessScope": {
|
|
@@ -6635,7 +6952,10 @@
|
|
|
6635
6952
|
"description": "Represents the access scope as a readable string. Typically follows the format `{action}_{resource}`: a `read` or `write` action, followed by the resource on which the action is allowed to be performed on, separated by an underscore. For example, `read_orders`; `write_products`."
|
|
6636
6953
|
}
|
|
6637
6954
|
},
|
|
6638
|
-
"required": [
|
|
6955
|
+
"required": [
|
|
6956
|
+
"description",
|
|
6957
|
+
"handle"
|
|
6958
|
+
]
|
|
6639
6959
|
}
|
|
6640
6960
|
},
|
|
6641
6961
|
"Shopify_AppSubscription": {
|
|
@@ -6696,7 +7016,16 @@
|
|
|
6696
7016
|
"description": "The number of days of the free trial."
|
|
6697
7017
|
}
|
|
6698
7018
|
},
|
|
6699
|
-
"required": [
|
|
7019
|
+
"required": [
|
|
7020
|
+
"createdAt",
|
|
7021
|
+
"id",
|
|
7022
|
+
"lineItems",
|
|
7023
|
+
"name",
|
|
7024
|
+
"returnUrl",
|
|
7025
|
+
"status",
|
|
7026
|
+
"test",
|
|
7027
|
+
"trialDays"
|
|
7028
|
+
]
|
|
6700
7029
|
}
|
|
6701
7030
|
},
|
|
6702
7031
|
"Shopify_AppSubscriptionSortKeys": {
|
|
@@ -6705,7 +7034,11 @@
|
|
|
6705
7034
|
"id": "Shopify_AppSubscriptionSortKeys",
|
|
6706
7035
|
"description": "The set of valid sort keys for the AppSubscription query.",
|
|
6707
7036
|
"schema": {
|
|
6708
|
-
"enum": [
|
|
7037
|
+
"enum": [
|
|
7038
|
+
"CREATED_AT",
|
|
7039
|
+
"ID",
|
|
7040
|
+
"RELEVANCE"
|
|
7041
|
+
]
|
|
6709
7042
|
}
|
|
6710
7043
|
},
|
|
6711
7044
|
"Shopify_AppSubscriptionConnection": {
|
|
@@ -6730,7 +7063,10 @@
|
|
|
6730
7063
|
"description": "Information to aid in pagination."
|
|
6731
7064
|
}
|
|
6732
7065
|
},
|
|
6733
|
-
"required": [
|
|
7066
|
+
"required": [
|
|
7067
|
+
"edges",
|
|
7068
|
+
"pageInfo"
|
|
7069
|
+
]
|
|
6734
7070
|
}
|
|
6735
7071
|
},
|
|
6736
7072
|
"Shopify_AppTransactionSortKeys": {
|
|
@@ -6739,7 +7075,11 @@
|
|
|
6739
7075
|
"id": "Shopify_AppTransactionSortKeys",
|
|
6740
7076
|
"description": "The set of valid sort keys for the AppTransaction query.",
|
|
6741
7077
|
"schema": {
|
|
6742
|
-
"enum": [
|
|
7078
|
+
"enum": [
|
|
7079
|
+
"CREATED_AT",
|
|
7080
|
+
"ID",
|
|
7081
|
+
"RELEVANCE"
|
|
7082
|
+
]
|
|
6743
7083
|
}
|
|
6744
7084
|
},
|
|
6745
7085
|
"Shopify_AppCreditConnection": {
|
|
@@ -6764,7 +7104,10 @@
|
|
|
6764
7104
|
"description": "Information to aid in pagination."
|
|
6765
7105
|
}
|
|
6766
7106
|
},
|
|
6767
|
-
"required": [
|
|
7107
|
+
"required": [
|
|
7108
|
+
"edges",
|
|
7109
|
+
"pageInfo"
|
|
7110
|
+
]
|
|
6768
7111
|
}
|
|
6769
7112
|
},
|
|
6770
7113
|
"Shopify_AppPurchaseOneTimeConnection": {
|
|
@@ -6789,7 +7132,10 @@
|
|
|
6789
7132
|
"description": "Information to aid in pagination."
|
|
6790
7133
|
}
|
|
6791
7134
|
},
|
|
6792
|
-
"required": [
|
|
7135
|
+
"required": [
|
|
7136
|
+
"edges",
|
|
7137
|
+
"pageInfo"
|
|
7138
|
+
]
|
|
6793
7139
|
}
|
|
6794
7140
|
},
|
|
6795
7141
|
"Shopify_DeliveryProductVariantsCount": {
|
|
@@ -6811,7 +7157,10 @@
|
|
|
6811
7157
|
"description": "The product variant count."
|
|
6812
7158
|
}
|
|
6813
7159
|
},
|
|
6814
|
-
"required": [
|
|
7160
|
+
"required": [
|
|
7161
|
+
"capped",
|
|
7162
|
+
"count"
|
|
7163
|
+
]
|
|
6815
7164
|
}
|
|
6816
7165
|
},
|
|
6817
7166
|
"Shopify_ProfileItemSortKeys": {
|
|
@@ -6855,7 +7204,10 @@
|
|
|
6855
7204
|
"description": "Information to aid in pagination."
|
|
6856
7205
|
}
|
|
6857
7206
|
},
|
|
6858
|
-
"required": [
|
|
7207
|
+
"required": [
|
|
7208
|
+
"edges",
|
|
7209
|
+
"pageInfo"
|
|
7210
|
+
]
|
|
6859
7211
|
}
|
|
6860
7212
|
},
|
|
6861
7213
|
"Shopify_DeliveryProfileLocationGroup": {
|
|
@@ -6911,7 +7263,11 @@
|
|
|
6911
7263
|
"description": "The applicable zones associated to a location group and delivery profile."
|
|
6912
7264
|
}
|
|
6913
7265
|
},
|
|
6914
|
-
"required": [
|
|
7266
|
+
"required": [
|
|
7267
|
+
"countriesInAnyZone",
|
|
7268
|
+
"locationGroup",
|
|
7269
|
+
"locationGroupZones"
|
|
7270
|
+
]
|
|
6915
7271
|
}
|
|
6916
7272
|
},
|
|
6917
7273
|
"Shopify_SellingPlanGroupConnection": {
|
|
@@ -6936,7 +7292,10 @@
|
|
|
6936
7292
|
"description": "Information to aid in pagination."
|
|
6937
7293
|
}
|
|
6938
7294
|
},
|
|
6939
|
-
"required": [
|
|
7295
|
+
"required": [
|
|
7296
|
+
"edges",
|
|
7297
|
+
"pageInfo"
|
|
7298
|
+
]
|
|
6940
7299
|
}
|
|
6941
7300
|
},
|
|
6942
7301
|
"Shopify_Location": {
|
|
@@ -7015,7 +7374,9 @@
|
|
|
7015
7374
|
"description": "Specifies the inventory item ID for the inventory level to be returned."
|
|
7016
7375
|
}
|
|
7017
7376
|
},
|
|
7018
|
-
"required": [
|
|
7377
|
+
"required": [
|
|
7378
|
+
"inventoryItemId"
|
|
7379
|
+
]
|
|
7019
7380
|
},
|
|
7020
7381
|
"description": "A single inventory level for the given inventory item."
|
|
7021
7382
|
},
|
|
@@ -7128,7 +7489,10 @@
|
|
|
7128
7489
|
"description": "A description of the rate, which customers will see at checkout.\nFor example: `Includes tracking and insurance`."
|
|
7129
7490
|
}
|
|
7130
7491
|
},
|
|
7131
|
-
"required": [
|
|
7492
|
+
"required": [
|
|
7493
|
+
"code",
|
|
7494
|
+
"label"
|
|
7495
|
+
]
|
|
7132
7496
|
}
|
|
7133
7497
|
},
|
|
7134
7498
|
"Shopify_FulfillmentServiceType": {
|
|
@@ -7137,7 +7501,11 @@
|
|
|
7137
7501
|
"id": "Shopify_FulfillmentServiceType",
|
|
7138
7502
|
"description": "The type of a fulfillment service.",
|
|
7139
7503
|
"schema": {
|
|
7140
|
-
"enum": [
|
|
7504
|
+
"enum": [
|
|
7505
|
+
"GIFT_CARD",
|
|
7506
|
+
"MANUAL",
|
|
7507
|
+
"THIRD_PARTY"
|
|
7508
|
+
]
|
|
7141
7509
|
}
|
|
7142
7510
|
},
|
|
7143
7511
|
"Shopify_CountryCode": {
|
|
@@ -7416,7 +7784,10 @@
|
|
|
7416
7784
|
"description": "Information to aid in pagination."
|
|
7417
7785
|
}
|
|
7418
7786
|
},
|
|
7419
|
-
"required": [
|
|
7787
|
+
"required": [
|
|
7788
|
+
"edges",
|
|
7789
|
+
"pageInfo"
|
|
7790
|
+
]
|
|
7420
7791
|
}
|
|
7421
7792
|
},
|
|
7422
7793
|
"Shopify_InventoryLevel": {
|
|
@@ -7479,7 +7850,16 @@
|
|
|
7479
7850
|
"@mapping": "michaels-store-takeshape:InventoryLevel.updatedAt"
|
|
7480
7851
|
}
|
|
7481
7852
|
},
|
|
7482
|
-
"required": [
|
|
7853
|
+
"required": [
|
|
7854
|
+
"available",
|
|
7855
|
+
"canDeactivate",
|
|
7856
|
+
"createdAt",
|
|
7857
|
+
"id",
|
|
7858
|
+
"incoming",
|
|
7859
|
+
"item",
|
|
7860
|
+
"location",
|
|
7861
|
+
"updatedAt"
|
|
7862
|
+
]
|
|
7483
7863
|
}
|
|
7484
7864
|
},
|
|
7485
7865
|
"Shopify_InventoryLevelConnection": {
|
|
@@ -7504,7 +7884,10 @@
|
|
|
7504
7884
|
"description": "Information to aid in pagination."
|
|
7505
7885
|
}
|
|
7506
7886
|
},
|
|
7507
|
-
"required": [
|
|
7887
|
+
"required": [
|
|
7888
|
+
"edges",
|
|
7889
|
+
"pageInfo"
|
|
7890
|
+
]
|
|
7508
7891
|
}
|
|
7509
7892
|
},
|
|
7510
7893
|
"Shopify_ProductVariantPricePairEdge": {
|
|
@@ -7526,7 +7909,10 @@
|
|
|
7526
7909
|
"description": "The item at the end of ProductVariantPricePairEdge."
|
|
7527
7910
|
}
|
|
7528
7911
|
},
|
|
7529
|
-
"required": [
|
|
7912
|
+
"required": [
|
|
7913
|
+
"cursor",
|
|
7914
|
+
"node"
|
|
7915
|
+
]
|
|
7530
7916
|
}
|
|
7531
7917
|
},
|
|
7532
7918
|
"Shopify_CollectionPublication": {
|
|
@@ -7564,7 +7950,13 @@
|
|
|
7564
7950
|
"@mapping": "michaels-store-takeshape:CollectionPublication.publishDate"
|
|
7565
7951
|
}
|
|
7566
7952
|
},
|
|
7567
|
-
"required": [
|
|
7953
|
+
"required": [
|
|
7954
|
+
"channel",
|
|
7955
|
+
"collection",
|
|
7956
|
+
"isPublished",
|
|
7957
|
+
"publication",
|
|
7958
|
+
"publishDate"
|
|
7959
|
+
]
|
|
7568
7960
|
}
|
|
7569
7961
|
},
|
|
7570
7962
|
"Shopify_CollectionRuleColumn": {
|
|
@@ -7663,7 +8055,11 @@
|
|
|
7663
8055
|
"description": "Lists the store's usage for a usage pricing plan."
|
|
7664
8056
|
}
|
|
7665
8057
|
},
|
|
7666
|
-
"required": [
|
|
8058
|
+
"required": [
|
|
8059
|
+
"id",
|
|
8060
|
+
"plan",
|
|
8061
|
+
"usageRecords"
|
|
8062
|
+
]
|
|
7667
8063
|
}
|
|
7668
8064
|
},
|
|
7669
8065
|
"Shopify_AppSubscriptionStatus": {
|
|
@@ -7672,7 +8068,15 @@
|
|
|
7672
8068
|
"id": "Shopify_AppSubscriptionStatus",
|
|
7673
8069
|
"description": "The status of the app subscription.",
|
|
7674
8070
|
"schema": {
|
|
7675
|
-
"enum": [
|
|
8071
|
+
"enum": [
|
|
8072
|
+
"PENDING",
|
|
8073
|
+
"ACCEPTED",
|
|
8074
|
+
"ACTIVE",
|
|
8075
|
+
"DECLINED",
|
|
8076
|
+
"EXPIRED",
|
|
8077
|
+
"FROZEN",
|
|
8078
|
+
"CANCELLED"
|
|
8079
|
+
]
|
|
7676
8080
|
}
|
|
7677
8081
|
},
|
|
7678
8082
|
"Shopify_AppSubscriptionEdge": {
|
|
@@ -7694,7 +8098,10 @@
|
|
|
7694
8098
|
"description": "The item at the end of AppSubscriptionEdge."
|
|
7695
8099
|
}
|
|
7696
8100
|
},
|
|
7697
|
-
"required": [
|
|
8101
|
+
"required": [
|
|
8102
|
+
"cursor",
|
|
8103
|
+
"node"
|
|
8104
|
+
]
|
|
7698
8105
|
}
|
|
7699
8106
|
},
|
|
7700
8107
|
"Shopify_AppCreditEdge": {
|
|
@@ -7716,7 +8123,10 @@
|
|
|
7716
8123
|
"description": "The item at the end of AppCreditEdge."
|
|
7717
8124
|
}
|
|
7718
8125
|
},
|
|
7719
|
-
"required": [
|
|
8126
|
+
"required": [
|
|
8127
|
+
"cursor",
|
|
8128
|
+
"node"
|
|
8129
|
+
]
|
|
7720
8130
|
}
|
|
7721
8131
|
},
|
|
7722
8132
|
"Shopify_AppPurchaseOneTimeEdge": {
|
|
@@ -7738,7 +8148,10 @@
|
|
|
7738
8148
|
"description": "The item at the end of AppPurchaseOneTimeEdge."
|
|
7739
8149
|
}
|
|
7740
8150
|
},
|
|
7741
|
-
"required": [
|
|
8151
|
+
"required": [
|
|
8152
|
+
"cursor",
|
|
8153
|
+
"node"
|
|
8154
|
+
]
|
|
7742
8155
|
}
|
|
7743
8156
|
},
|
|
7744
8157
|
"Shopify_DeliveryProfileItemEdge": {
|
|
@@ -7760,7 +8173,10 @@
|
|
|
7760
8173
|
"description": "The item at the end of DeliveryProfileItemEdge."
|
|
7761
8174
|
}
|
|
7762
8175
|
},
|
|
7763
|
-
"required": [
|
|
8176
|
+
"required": [
|
|
8177
|
+
"cursor",
|
|
8178
|
+
"node"
|
|
8179
|
+
]
|
|
7764
8180
|
}
|
|
7765
8181
|
},
|
|
7766
8182
|
"Shopify_DeliveryCountryAndZone": {
|
|
@@ -7782,7 +8198,10 @@
|
|
|
7782
8198
|
"description": "The name of the delivery zone."
|
|
7783
8199
|
}
|
|
7784
8200
|
},
|
|
7785
|
-
"required": [
|
|
8201
|
+
"required": [
|
|
8202
|
+
"country",
|
|
8203
|
+
"zone"
|
|
8204
|
+
]
|
|
7786
8205
|
}
|
|
7787
8206
|
},
|
|
7788
8207
|
"Shopify_DeliveryLocationGroup": {
|
|
@@ -7850,7 +8269,10 @@
|
|
|
7850
8269
|
"description": "List of active locations that are part of this location group."
|
|
7851
8270
|
}
|
|
7852
8271
|
},
|
|
7853
|
-
"required": [
|
|
8272
|
+
"required": [
|
|
8273
|
+
"id",
|
|
8274
|
+
"locations"
|
|
8275
|
+
]
|
|
7854
8276
|
}
|
|
7855
8277
|
},
|
|
7856
8278
|
"Shopify_DeliveryLocationGroupZoneConnection": {
|
|
@@ -7875,7 +8297,10 @@
|
|
|
7875
8297
|
"description": "Information to aid in pagination."
|
|
7876
8298
|
}
|
|
7877
8299
|
},
|
|
7878
|
-
"required": [
|
|
8300
|
+
"required": [
|
|
8301
|
+
"edges",
|
|
8302
|
+
"pageInfo"
|
|
8303
|
+
]
|
|
7879
8304
|
}
|
|
7880
8305
|
},
|
|
7881
8306
|
"Shopify_SellingPlanGroupEdge": {
|
|
@@ -7897,7 +8322,10 @@
|
|
|
7897
8322
|
"description": "The item at the end of SellingPlanGroupEdge."
|
|
7898
8323
|
}
|
|
7899
8324
|
},
|
|
7900
|
-
"required": [
|
|
8325
|
+
"required": [
|
|
8326
|
+
"cursor",
|
|
8327
|
+
"node"
|
|
8328
|
+
]
|
|
7901
8329
|
}
|
|
7902
8330
|
},
|
|
7903
8331
|
"Shopify_LocationAddress": {
|
|
@@ -7972,7 +8400,9 @@
|
|
|
7972
8400
|
"description": "The ZIP code of the location."
|
|
7973
8401
|
}
|
|
7974
8402
|
},
|
|
7975
|
-
"required": [
|
|
8403
|
+
"required": [
|
|
8404
|
+
"formatted"
|
|
8405
|
+
]
|
|
7976
8406
|
}
|
|
7977
8407
|
},
|
|
7978
8408
|
"Shopify_LocationSuggestedAddress": {
|
|
@@ -8032,7 +8462,9 @@
|
|
|
8032
8462
|
"description": "The ZIP code of the suggested address."
|
|
8033
8463
|
}
|
|
8034
8464
|
},
|
|
8035
|
-
"required": [
|
|
8465
|
+
"required": [
|
|
8466
|
+
"formatted"
|
|
8467
|
+
]
|
|
8036
8468
|
}
|
|
8037
8469
|
},
|
|
8038
8470
|
"Shopify_CountryHarmonizedSystemCodeEdge": {
|
|
@@ -8054,7 +8486,10 @@
|
|
|
8054
8486
|
"description": "The item at the end of CountryHarmonizedSystemCodeEdge."
|
|
8055
8487
|
}
|
|
8056
8488
|
},
|
|
8057
|
-
"required": [
|
|
8489
|
+
"required": [
|
|
8490
|
+
"cursor",
|
|
8491
|
+
"node"
|
|
8492
|
+
]
|
|
8058
8493
|
}
|
|
8059
8494
|
},
|
|
8060
8495
|
"Shopify_InventoryLevelEdge": {
|
|
@@ -8076,7 +8511,10 @@
|
|
|
8076
8511
|
"description": "The item at the end of InventoryLevelEdge."
|
|
8077
8512
|
}
|
|
8078
8513
|
},
|
|
8079
|
-
"required": [
|
|
8514
|
+
"required": [
|
|
8515
|
+
"cursor",
|
|
8516
|
+
"node"
|
|
8517
|
+
]
|
|
8080
8518
|
}
|
|
8081
8519
|
},
|
|
8082
8520
|
"Shopify_ProductVariantPricePair": {
|
|
@@ -8098,7 +8536,9 @@
|
|
|
8098
8536
|
"description": "The price of the variant with associated currency."
|
|
8099
8537
|
}
|
|
8100
8538
|
},
|
|
8101
|
-
"required": [
|
|
8539
|
+
"required": [
|
|
8540
|
+
"price"
|
|
8541
|
+
]
|
|
8102
8542
|
}
|
|
8103
8543
|
},
|
|
8104
8544
|
"Shopify_AppPlanV2": {
|
|
@@ -8115,7 +8555,9 @@
|
|
|
8115
8555
|
"description": "Defines the pricing model for the app subscription."
|
|
8116
8556
|
}
|
|
8117
8557
|
},
|
|
8118
|
-
"required": [
|
|
8558
|
+
"required": [
|
|
8559
|
+
"pricingDetails"
|
|
8560
|
+
]
|
|
8119
8561
|
}
|
|
8120
8562
|
},
|
|
8121
8563
|
"Shopify_AppUsageRecordSortKeys": {
|
|
@@ -8124,7 +8566,11 @@
|
|
|
8124
8566
|
"id": "Shopify_AppUsageRecordSortKeys",
|
|
8125
8567
|
"description": "The set of valid sort keys for the AppUsageRecord query.",
|
|
8126
8568
|
"schema": {
|
|
8127
|
-
"enum": [
|
|
8569
|
+
"enum": [
|
|
8570
|
+
"CREATED_AT",
|
|
8571
|
+
"ID",
|
|
8572
|
+
"RELEVANCE"
|
|
8573
|
+
]
|
|
8128
8574
|
}
|
|
8129
8575
|
},
|
|
8130
8576
|
"Shopify_AppUsageRecordConnection": {
|
|
@@ -8149,7 +8595,10 @@
|
|
|
8149
8595
|
"description": "Information to aid in pagination."
|
|
8150
8596
|
}
|
|
8151
8597
|
},
|
|
8152
|
-
"required": [
|
|
8598
|
+
"required": [
|
|
8599
|
+
"edges",
|
|
8600
|
+
"pageInfo"
|
|
8601
|
+
]
|
|
8153
8602
|
}
|
|
8154
8603
|
},
|
|
8155
8604
|
"Shopify_AppCredit": {
|
|
@@ -8187,7 +8636,13 @@
|
|
|
8187
8636
|
"description": "Whether the app credit is a test transaction."
|
|
8188
8637
|
}
|
|
8189
8638
|
},
|
|
8190
|
-
"required": [
|
|
8639
|
+
"required": [
|
|
8640
|
+
"amount",
|
|
8641
|
+
"createdAt",
|
|
8642
|
+
"description",
|
|
8643
|
+
"id",
|
|
8644
|
+
"test"
|
|
8645
|
+
]
|
|
8191
8646
|
}
|
|
8192
8647
|
},
|
|
8193
8648
|
"Shopify_AppPurchaseOneTime": {
|
|
@@ -8230,7 +8685,14 @@
|
|
|
8230
8685
|
"description": "Whether the app purchase is a test transaction."
|
|
8231
8686
|
}
|
|
8232
8687
|
},
|
|
8233
|
-
"required": [
|
|
8688
|
+
"required": [
|
|
8689
|
+
"createdAt",
|
|
8690
|
+
"id",
|
|
8691
|
+
"name",
|
|
8692
|
+
"price",
|
|
8693
|
+
"status",
|
|
8694
|
+
"test"
|
|
8695
|
+
]
|
|
8234
8696
|
}
|
|
8235
8697
|
},
|
|
8236
8698
|
"Shopify_DeliveryProfileItem": {
|
|
@@ -8283,7 +8745,10 @@
|
|
|
8283
8745
|
"description": "The product variants associated with this delivery profile."
|
|
8284
8746
|
}
|
|
8285
8747
|
},
|
|
8286
|
-
"required": [
|
|
8748
|
+
"required": [
|
|
8749
|
+
"product",
|
|
8750
|
+
"variants"
|
|
8751
|
+
]
|
|
8287
8752
|
}
|
|
8288
8753
|
},
|
|
8289
8754
|
"Shopify_DeliveryCountry": {
|
|
@@ -8324,7 +8789,13 @@
|
|
|
8324
8789
|
"description": "The name of the country, translated based on the user locale."
|
|
8325
8790
|
}
|
|
8326
8791
|
},
|
|
8327
|
-
"required": [
|
|
8792
|
+
"required": [
|
|
8793
|
+
"code",
|
|
8794
|
+
"id",
|
|
8795
|
+
"name",
|
|
8796
|
+
"provinces",
|
|
8797
|
+
"translatedName"
|
|
8798
|
+
]
|
|
8328
8799
|
}
|
|
8329
8800
|
},
|
|
8330
8801
|
"Shopify_LocationSortKeys": {
|
|
@@ -8333,7 +8804,11 @@
|
|
|
8333
8804
|
"id": "Shopify_LocationSortKeys",
|
|
8334
8805
|
"description": "The set of valid sort keys for the Location query.",
|
|
8335
8806
|
"schema": {
|
|
8336
|
-
"enum": [
|
|
8807
|
+
"enum": [
|
|
8808
|
+
"NAME",
|
|
8809
|
+
"ID",
|
|
8810
|
+
"RELEVANCE"
|
|
8811
|
+
]
|
|
8337
8812
|
}
|
|
8338
8813
|
},
|
|
8339
8814
|
"Shopify_LocationConnection": {
|
|
@@ -8358,7 +8833,10 @@
|
|
|
8358
8833
|
"description": "Information to aid in pagination."
|
|
8359
8834
|
}
|
|
8360
8835
|
},
|
|
8361
|
-
"required": [
|
|
8836
|
+
"required": [
|
|
8837
|
+
"edges",
|
|
8838
|
+
"pageInfo"
|
|
8839
|
+
]
|
|
8362
8840
|
}
|
|
8363
8841
|
},
|
|
8364
8842
|
"Shopify_DeliveryLocationGroupZoneEdge": {
|
|
@@ -8380,7 +8858,10 @@
|
|
|
8380
8858
|
"description": "The item at the end of DeliveryLocationGroupZoneEdge."
|
|
8381
8859
|
}
|
|
8382
8860
|
},
|
|
8383
|
-
"required": [
|
|
8861
|
+
"required": [
|
|
8862
|
+
"cursor",
|
|
8863
|
+
"node"
|
|
8864
|
+
]
|
|
8384
8865
|
}
|
|
8385
8866
|
},
|
|
8386
8867
|
"Shopify_SellingPlanGroup": {
|
|
@@ -8408,7 +8889,9 @@
|
|
|
8408
8889
|
"description": "The ID of the product."
|
|
8409
8890
|
}
|
|
8410
8891
|
},
|
|
8411
|
-
"required": [
|
|
8892
|
+
"required": [
|
|
8893
|
+
"productId"
|
|
8894
|
+
]
|
|
8412
8895
|
},
|
|
8413
8896
|
"description": "Whether the given product is directly associated to the selling plan group."
|
|
8414
8897
|
},
|
|
@@ -8424,7 +8907,9 @@
|
|
|
8424
8907
|
"description": "The ID of the product."
|
|
8425
8908
|
}
|
|
8426
8909
|
},
|
|
8427
|
-
"required": [
|
|
8910
|
+
"required": [
|
|
8911
|
+
"productVariantId"
|
|
8912
|
+
]
|
|
8428
8913
|
},
|
|
8429
8914
|
"description": "Whether the given product variant is directly associated to the selling plan group."
|
|
8430
8915
|
},
|
|
@@ -8440,7 +8925,9 @@
|
|
|
8440
8925
|
"description": "The ID of the product."
|
|
8441
8926
|
}
|
|
8442
8927
|
},
|
|
8443
|
-
"required": [
|
|
8928
|
+
"required": [
|
|
8929
|
+
"productId"
|
|
8930
|
+
]
|
|
8444
8931
|
},
|
|
8445
8932
|
"description": "Whether any of the product variants of the given product are associated to the selling plan group."
|
|
8446
8933
|
},
|
|
@@ -8643,7 +9130,10 @@
|
|
|
8643
9130
|
"description": "Country specific harmonized system code."
|
|
8644
9131
|
}
|
|
8645
9132
|
},
|
|
8646
|
-
"required": [
|
|
9133
|
+
"required": [
|
|
9134
|
+
"countryCode",
|
|
9135
|
+
"harmonizedSystemCode"
|
|
9136
|
+
]
|
|
8647
9137
|
}
|
|
8648
9138
|
},
|
|
8649
9139
|
"Shopify_AppPricingDetails": {
|
|
@@ -8681,7 +9171,10 @@
|
|
|
8681
9171
|
"description": "The item at the end of AppUsageRecordEdge."
|
|
8682
9172
|
}
|
|
8683
9173
|
},
|
|
8684
|
-
"required": [
|
|
9174
|
+
"required": [
|
|
9175
|
+
"cursor",
|
|
9176
|
+
"node"
|
|
9177
|
+
]
|
|
8685
9178
|
}
|
|
8686
9179
|
},
|
|
8687
9180
|
"Shopify_AppPurchaseStatus": {
|
|
@@ -8690,7 +9183,13 @@
|
|
|
8690
9183
|
"id": "Shopify_AppPurchaseStatus",
|
|
8691
9184
|
"description": "The status of the purchase.",
|
|
8692
9185
|
"schema": {
|
|
8693
|
-
"enum": [
|
|
9186
|
+
"enum": [
|
|
9187
|
+
"ACCEPTED",
|
|
9188
|
+
"ACTIVE",
|
|
9189
|
+
"DECLINED",
|
|
9190
|
+
"EXPIRED",
|
|
9191
|
+
"PENDING"
|
|
9192
|
+
]
|
|
8694
9193
|
}
|
|
8695
9194
|
},
|
|
8696
9195
|
"Shopify_DeliveryCountryCodeOrRestOfWorld": {
|
|
@@ -8712,7 +9211,9 @@
|
|
|
8712
9211
|
"description": "Indicates if 'Rest of World' is applied."
|
|
8713
9212
|
}
|
|
8714
9213
|
},
|
|
8715
|
-
"required": [
|
|
9214
|
+
"required": [
|
|
9215
|
+
"restOfWorld"
|
|
9216
|
+
]
|
|
8716
9217
|
}
|
|
8717
9218
|
},
|
|
8718
9219
|
"Shopify_DeliveryProvince": {
|
|
@@ -8745,7 +9246,12 @@
|
|
|
8745
9246
|
"description": "The name of the region, translated based on the user locale."
|
|
8746
9247
|
}
|
|
8747
9248
|
},
|
|
8748
|
-
"required": [
|
|
9249
|
+
"required": [
|
|
9250
|
+
"code",
|
|
9251
|
+
"id",
|
|
9252
|
+
"name",
|
|
9253
|
+
"translatedName"
|
|
9254
|
+
]
|
|
8749
9255
|
}
|
|
8750
9256
|
},
|
|
8751
9257
|
"Shopify_LocationEdge": {
|
|
@@ -8767,7 +9273,10 @@
|
|
|
8767
9273
|
"description": "The item at the end of LocationEdge."
|
|
8768
9274
|
}
|
|
8769
9275
|
},
|
|
8770
|
-
"required": [
|
|
9276
|
+
"required": [
|
|
9277
|
+
"cursor",
|
|
9278
|
+
"node"
|
|
9279
|
+
]
|
|
8771
9280
|
}
|
|
8772
9281
|
},
|
|
8773
9282
|
"Shopify_DeliveryLocationGroupZone": {
|
|
@@ -8833,7 +9342,11 @@
|
|
|
8833
9342
|
"description": "The zone associated to a location group in a delivery profile."
|
|
8834
9343
|
}
|
|
8835
9344
|
},
|
|
8836
|
-
"required": [
|
|
9345
|
+
"required": [
|
|
9346
|
+
"methodDefinitionCounts",
|
|
9347
|
+
"methodDefinitions",
|
|
9348
|
+
"zone"
|
|
9349
|
+
]
|
|
8837
9350
|
}
|
|
8838
9351
|
},
|
|
8839
9352
|
"Shopify_SellingPlanConnection": {
|
|
@@ -8858,7 +9371,10 @@
|
|
|
8858
9371
|
"description": "Information to aid in pagination."
|
|
8859
9372
|
}
|
|
8860
9373
|
},
|
|
8861
|
-
"required": [
|
|
9374
|
+
"required": [
|
|
9375
|
+
"edges",
|
|
9376
|
+
"pageInfo"
|
|
9377
|
+
]
|
|
8862
9378
|
}
|
|
8863
9379
|
},
|
|
8864
9380
|
"Shopify_AppRecurringPricing": {
|
|
@@ -8880,7 +9396,10 @@
|
|
|
8880
9396
|
"description": "The amount to be charged to the store every billing interval."
|
|
8881
9397
|
}
|
|
8882
9398
|
},
|
|
8883
|
-
"required": [
|
|
9399
|
+
"required": [
|
|
9400
|
+
"interval",
|
|
9401
|
+
"price"
|
|
9402
|
+
]
|
|
8884
9403
|
}
|
|
8885
9404
|
},
|
|
8886
9405
|
"Shopify_AppUsagePricing": {
|
|
@@ -8912,7 +9431,12 @@
|
|
|
8912
9431
|
"description": "The terms and conditions for app usage pricing."
|
|
8913
9432
|
}
|
|
8914
9433
|
},
|
|
8915
|
-
"required": [
|
|
9434
|
+
"required": [
|
|
9435
|
+
"balanceUsed",
|
|
9436
|
+
"cappedAmount",
|
|
9437
|
+
"interval",
|
|
9438
|
+
"terms"
|
|
9439
|
+
]
|
|
8916
9440
|
}
|
|
8917
9441
|
},
|
|
8918
9442
|
"Shopify_AppUsageRecord": {
|
|
@@ -8950,7 +9474,13 @@
|
|
|
8950
9474
|
"description": "Defines the usage pricing plan the merchant is subscribed to."
|
|
8951
9475
|
}
|
|
8952
9476
|
},
|
|
8953
|
-
"required": [
|
|
9477
|
+
"required": [
|
|
9478
|
+
"createdAt",
|
|
9479
|
+
"description",
|
|
9480
|
+
"id",
|
|
9481
|
+
"price",
|
|
9482
|
+
"subscriptionLineItem"
|
|
9483
|
+
]
|
|
8954
9484
|
}
|
|
8955
9485
|
},
|
|
8956
9486
|
"Shopify_DeliveryMethodDefinitionCounts": {
|
|
@@ -8972,7 +9502,10 @@
|
|
|
8972
9502
|
"description": "The number of merchant-defined method definitions in the current zone."
|
|
8973
9503
|
}
|
|
8974
9504
|
},
|
|
8975
|
-
"required": [
|
|
9505
|
+
"required": [
|
|
9506
|
+
"participantDefinitionsCount",
|
|
9507
|
+
"rateDefinitionsCount"
|
|
9508
|
+
]
|
|
8976
9509
|
}
|
|
8977
9510
|
},
|
|
8978
9511
|
"Shopify_DeliveryMethodDefinitionType": {
|
|
@@ -8981,7 +9514,10 @@
|
|
|
8981
9514
|
"id": "Shopify_DeliveryMethodDefinitionType",
|
|
8982
9515
|
"description": "The different types of method definitions to filter by.",
|
|
8983
9516
|
"schema": {
|
|
8984
|
-
"enum": [
|
|
9517
|
+
"enum": [
|
|
9518
|
+
"MERCHANT",
|
|
9519
|
+
"PARTICIPANT"
|
|
9520
|
+
]
|
|
8985
9521
|
}
|
|
8986
9522
|
},
|
|
8987
9523
|
"Shopify_MethodDefinitionSortKeys": {
|
|
@@ -8990,7 +9526,11 @@
|
|
|
8990
9526
|
"id": "Shopify_MethodDefinitionSortKeys",
|
|
8991
9527
|
"description": "The set of valid sort keys for the MethodDefinition query.",
|
|
8992
9528
|
"schema": {
|
|
8993
|
-
"enum": [
|
|
9529
|
+
"enum": [
|
|
9530
|
+
"RATE_PROVIDER_TYPE",
|
|
9531
|
+
"ID",
|
|
9532
|
+
"RELEVANCE"
|
|
9533
|
+
]
|
|
8994
9534
|
}
|
|
8995
9535
|
},
|
|
8996
9536
|
"Shopify_DeliveryMethodDefinitionConnection": {
|
|
@@ -9015,7 +9555,10 @@
|
|
|
9015
9555
|
"description": "Information to aid in pagination."
|
|
9016
9556
|
}
|
|
9017
9557
|
},
|
|
9018
|
-
"required": [
|
|
9558
|
+
"required": [
|
|
9559
|
+
"edges",
|
|
9560
|
+
"pageInfo"
|
|
9561
|
+
]
|
|
9019
9562
|
}
|
|
9020
9563
|
},
|
|
9021
9564
|
"Shopify_DeliveryZone": {
|
|
@@ -9046,7 +9589,11 @@
|
|
|
9046
9589
|
"description": "The name of the zone."
|
|
9047
9590
|
}
|
|
9048
9591
|
},
|
|
9049
|
-
"required": [
|
|
9592
|
+
"required": [
|
|
9593
|
+
"countries",
|
|
9594
|
+
"id",
|
|
9595
|
+
"name"
|
|
9596
|
+
]
|
|
9050
9597
|
}
|
|
9051
9598
|
},
|
|
9052
9599
|
"Shopify_SellingPlanEdge": {
|
|
@@ -9068,7 +9615,10 @@
|
|
|
9068
9615
|
"description": "The item at the end of SellingPlanEdge."
|
|
9069
9616
|
}
|
|
9070
9617
|
},
|
|
9071
|
-
"required": [
|
|
9618
|
+
"required": [
|
|
9619
|
+
"cursor",
|
|
9620
|
+
"node"
|
|
9621
|
+
]
|
|
9072
9622
|
}
|
|
9073
9623
|
},
|
|
9074
9624
|
"Shopify_AppPricingInterval": {
|
|
@@ -9077,7 +9627,10 @@
|
|
|
9077
9627
|
"id": "Shopify_AppPricingInterval",
|
|
9078
9628
|
"description": "The billing frequency for the app.",
|
|
9079
9629
|
"schema": {
|
|
9080
|
-
"enum": [
|
|
9630
|
+
"enum": [
|
|
9631
|
+
"ANNUAL",
|
|
9632
|
+
"EVERY_30_DAYS"
|
|
9633
|
+
]
|
|
9081
9634
|
}
|
|
9082
9635
|
},
|
|
9083
9636
|
"Shopify_DeliveryMethodDefinitionEdge": {
|
|
@@ -9099,7 +9652,10 @@
|
|
|
9099
9652
|
"description": "The item at the end of DeliveryMethodDefinitionEdge."
|
|
9100
9653
|
}
|
|
9101
9654
|
},
|
|
9102
|
-
"required": [
|
|
9655
|
+
"required": [
|
|
9656
|
+
"cursor",
|
|
9657
|
+
"node"
|
|
9658
|
+
]
|
|
9103
9659
|
}
|
|
9104
9660
|
},
|
|
9105
9661
|
"Shopify_SellingPlan": {
|
|
@@ -9163,7 +9719,15 @@
|
|
|
9163
9719
|
"description": "Selling plan pricing details."
|
|
9164
9720
|
}
|
|
9165
9721
|
},
|
|
9166
|
-
"required": [
|
|
9722
|
+
"required": [
|
|
9723
|
+
"billingPolicy",
|
|
9724
|
+
"createdAt",
|
|
9725
|
+
"deliveryPolicy",
|
|
9726
|
+
"id",
|
|
9727
|
+
"name",
|
|
9728
|
+
"options",
|
|
9729
|
+
"pricingPolicies"
|
|
9730
|
+
]
|
|
9167
9731
|
}
|
|
9168
9732
|
},
|
|
9169
9733
|
"Shopify_DeliveryMethodDefinition": {
|
|
@@ -9209,7 +9773,13 @@
|
|
|
9209
9773
|
"description": "Provided rate for this method definition, from a rate definition or participant."
|
|
9210
9774
|
}
|
|
9211
9775
|
},
|
|
9212
|
-
"required": [
|
|
9776
|
+
"required": [
|
|
9777
|
+
"active",
|
|
9778
|
+
"id",
|
|
9779
|
+
"methodConditions",
|
|
9780
|
+
"name",
|
|
9781
|
+
"rateProvider"
|
|
9782
|
+
]
|
|
9213
9783
|
}
|
|
9214
9784
|
},
|
|
9215
9785
|
"Shopify_SellingPlanBillingPolicy": {
|
|
@@ -9284,7 +9854,12 @@
|
|
|
9284
9854
|
"description": "The operator to compare the field and criteria."
|
|
9285
9855
|
}
|
|
9286
9856
|
},
|
|
9287
|
-
"required": [
|
|
9857
|
+
"required": [
|
|
9858
|
+
"conditionCriteria",
|
|
9859
|
+
"field",
|
|
9860
|
+
"id",
|
|
9861
|
+
"operator"
|
|
9862
|
+
]
|
|
9288
9863
|
}
|
|
9289
9864
|
},
|
|
9290
9865
|
"Shopify_DeliveryRateProvider": {
|
|
@@ -9345,7 +9920,12 @@
|
|
|
9345
9920
|
"description": "Minimum number of billing iterations."
|
|
9346
9921
|
}
|
|
9347
9922
|
},
|
|
9348
|
-
"required": [
|
|
9923
|
+
"required": [
|
|
9924
|
+
"anchors",
|
|
9925
|
+
"createdAt",
|
|
9926
|
+
"interval",
|
|
9927
|
+
"intervalCount"
|
|
9928
|
+
]
|
|
9349
9929
|
}
|
|
9350
9930
|
},
|
|
9351
9931
|
"Shopify_SellingPlanRecurringDeliveryPolicy": {
|
|
@@ -9395,7 +9975,14 @@
|
|
|
9395
9975
|
"description": "Fulfillment or delivery behavior of the first fulfillment when the order is placed before the anchor. The default value for this field is `ASAP`."
|
|
9396
9976
|
}
|
|
9397
9977
|
},
|
|
9398
|
-
"required": [
|
|
9978
|
+
"required": [
|
|
9979
|
+
"anchors",
|
|
9980
|
+
"createdAt",
|
|
9981
|
+
"intent",
|
|
9982
|
+
"interval",
|
|
9983
|
+
"intervalCount",
|
|
9984
|
+
"preAnchorBehavior"
|
|
9985
|
+
]
|
|
9399
9986
|
}
|
|
9400
9987
|
},
|
|
9401
9988
|
"Shopify_SellingPlanFixedPricingPolicy": {
|
|
@@ -9422,7 +10009,11 @@
|
|
|
9422
10009
|
"@mapping": "michaels-store-takeshape:SellingPlanFixedPricingPolicy.createdAt"
|
|
9423
10010
|
}
|
|
9424
10011
|
},
|
|
9425
|
-
"required": [
|
|
10012
|
+
"required": [
|
|
10013
|
+
"adjustmentType",
|
|
10014
|
+
"adjustmentValue",
|
|
10015
|
+
"createdAt"
|
|
10016
|
+
]
|
|
9426
10017
|
}
|
|
9427
10018
|
},
|
|
9428
10019
|
"Shopify_SellingPlanRecurringPricingPolicy": {
|
|
@@ -9454,7 +10045,11 @@
|
|
|
9454
10045
|
"@mapping": "michaels-store-takeshape:SellingPlanRecurringPricingPolicy.createdAt"
|
|
9455
10046
|
}
|
|
9456
10047
|
},
|
|
9457
|
-
"required": [
|
|
10048
|
+
"required": [
|
|
10049
|
+
"adjustmentType",
|
|
10050
|
+
"adjustmentValue",
|
|
10051
|
+
"createdAt"
|
|
10052
|
+
]
|
|
9458
10053
|
}
|
|
9459
10054
|
},
|
|
9460
10055
|
"Shopify_DeliveryConditionCriteria": {
|
|
@@ -9479,7 +10074,10 @@
|
|
|
9479
10074
|
"id": "Shopify_DeliveryConditionField",
|
|
9480
10075
|
"description": "The field type that the condition will be applied to.",
|
|
9481
10076
|
"schema": {
|
|
9482
|
-
"enum": [
|
|
10077
|
+
"enum": [
|
|
10078
|
+
"TOTAL_WEIGHT",
|
|
10079
|
+
"TOTAL_PRICE"
|
|
10080
|
+
]
|
|
9483
10081
|
}
|
|
9484
10082
|
},
|
|
9485
10083
|
"Shopify_DeliveryConditionOperator": {
|
|
@@ -9488,7 +10086,10 @@
|
|
|
9488
10086
|
"id": "Shopify_DeliveryConditionOperator",
|
|
9489
10087
|
"description": "The operator to use to determine if the condition passes.",
|
|
9490
10088
|
"schema": {
|
|
9491
|
-
"enum": [
|
|
10089
|
+
"enum": [
|
|
10090
|
+
"GREATER_THAN_OR_EQUAL_TO",
|
|
10091
|
+
"LESS_THAN_OR_EQUAL_TO"
|
|
10092
|
+
]
|
|
9492
10093
|
}
|
|
9493
10094
|
},
|
|
9494
10095
|
"Shopify_DeliveryParticipant": {
|
|
@@ -9534,7 +10135,13 @@
|
|
|
9534
10135
|
"description": "The merchant-set percentage-of-rate fee for this participant."
|
|
9535
10136
|
}
|
|
9536
10137
|
},
|
|
9537
|
-
"required": [
|
|
10138
|
+
"required": [
|
|
10139
|
+
"adaptToNewServicesFlag",
|
|
10140
|
+
"carrierService",
|
|
10141
|
+
"id",
|
|
10142
|
+
"participantServices",
|
|
10143
|
+
"percentageOfRateFee"
|
|
10144
|
+
]
|
|
9538
10145
|
}
|
|
9539
10146
|
},
|
|
9540
10147
|
"Shopify_DeliveryRateDefinition": {
|
|
@@ -9557,7 +10164,10 @@
|
|
|
9557
10164
|
"description": "The price of this rate."
|
|
9558
10165
|
}
|
|
9559
10166
|
},
|
|
9560
|
-
"required": [
|
|
10167
|
+
"required": [
|
|
10168
|
+
"id",
|
|
10169
|
+
"price"
|
|
10170
|
+
]
|
|
9561
10171
|
}
|
|
9562
10172
|
},
|
|
9563
10173
|
"Shopify_SellingPlanAnchor": {
|
|
@@ -9584,7 +10194,10 @@
|
|
|
9584
10194
|
"description": "Represents the anchor type, it can be one one of WEEKDAY, MONTHDAY, YEARDAY."
|
|
9585
10195
|
}
|
|
9586
10196
|
},
|
|
9587
|
-
"required": [
|
|
10197
|
+
"required": [
|
|
10198
|
+
"day",
|
|
10199
|
+
"type"
|
|
10200
|
+
]
|
|
9588
10201
|
}
|
|
9589
10202
|
},
|
|
9590
10203
|
"Shopify_SellingPlanInterval": {
|
|
@@ -9593,7 +10206,12 @@
|
|
|
9593
10206
|
"id": "Shopify_SellingPlanInterval",
|
|
9594
10207
|
"description": "Represents valid selling plan interval.",
|
|
9595
10208
|
"schema": {
|
|
9596
|
-
"enum": [
|
|
10209
|
+
"enum": [
|
|
10210
|
+
"DAY",
|
|
10211
|
+
"WEEK",
|
|
10212
|
+
"MONTH",
|
|
10213
|
+
"YEAR"
|
|
10214
|
+
]
|
|
9597
10215
|
}
|
|
9598
10216
|
},
|
|
9599
10217
|
"Shopify_SellingPlanRecurringDeliveryPolicyIntent": {
|
|
@@ -9602,7 +10220,9 @@
|
|
|
9602
10220
|
"id": "Shopify_SellingPlanRecurringDeliveryPolicyIntent",
|
|
9603
10221
|
"description": "Possible intentions of a Delivery Policy.",
|
|
9604
10222
|
"schema": {
|
|
9605
|
-
"enum": [
|
|
10223
|
+
"enum": [
|
|
10224
|
+
"FULFILLMENT_BEGIN"
|
|
10225
|
+
]
|
|
9606
10226
|
}
|
|
9607
10227
|
},
|
|
9608
10228
|
"Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior": {
|
|
@@ -9611,7 +10231,10 @@
|
|
|
9611
10231
|
"id": "Shopify_SellingPlanRecurringDeliveryPolicyPreAnchorBehavior",
|
|
9612
10232
|
"description": "Possible fulfillment or delivery behaviors of the first fulfillment when the orderis placed before the anchor.",
|
|
9613
10233
|
"schema": {
|
|
9614
|
-
"enum": [
|
|
10234
|
+
"enum": [
|
|
10235
|
+
"ASAP",
|
|
10236
|
+
"NEXT"
|
|
10237
|
+
]
|
|
9615
10238
|
}
|
|
9616
10239
|
},
|
|
9617
10240
|
"Shopify_SellingPlanPricingPolicyAdjustmentType": {
|
|
@@ -9620,7 +10243,11 @@
|
|
|
9620
10243
|
"id": "Shopify_SellingPlanPricingPolicyAdjustmentType",
|
|
9621
10244
|
"description": "Represents a selling plan pricing policy adjustment type.",
|
|
9622
10245
|
"schema": {
|
|
9623
|
-
"enum": [
|
|
10246
|
+
"enum": [
|
|
10247
|
+
"PERCENTAGE",
|
|
10248
|
+
"FIXED_AMOUNT",
|
|
10249
|
+
"PRICE"
|
|
10250
|
+
]
|
|
9624
10251
|
}
|
|
9625
10252
|
},
|
|
9626
10253
|
"Shopify_SellingPlanPricingPolicyAdjustmentValue": {
|
|
@@ -9658,7 +10285,10 @@
|
|
|
9658
10285
|
"description": "The weight using the unit system specified with `unit`."
|
|
9659
10286
|
}
|
|
9660
10287
|
},
|
|
9661
|
-
"required": [
|
|
10288
|
+
"required": [
|
|
10289
|
+
"unit",
|
|
10290
|
+
"value"
|
|
10291
|
+
]
|
|
9662
10292
|
}
|
|
9663
10293
|
},
|
|
9664
10294
|
"Shopify_DeliveryCarrierService": {
|
|
@@ -9698,7 +10328,9 @@
|
|
|
9698
10328
|
"description": "Use Rest of World as the destination."
|
|
9699
10329
|
}
|
|
9700
10330
|
},
|
|
9701
|
-
"required": [
|
|
10331
|
+
"required": [
|
|
10332
|
+
"restOfWorld"
|
|
10333
|
+
]
|
|
9702
10334
|
},
|
|
9703
10335
|
"description": "Services offered for given destinations."
|
|
9704
10336
|
},
|
|
@@ -9724,7 +10356,11 @@
|
|
|
9724
10356
|
"description": "The name of the service provider."
|
|
9725
10357
|
}
|
|
9726
10358
|
},
|
|
9727
|
-
"required": [
|
|
10359
|
+
"required": [
|
|
10360
|
+
"availableServicesForCountries",
|
|
10361
|
+
"icon",
|
|
10362
|
+
"id"
|
|
10363
|
+
]
|
|
9728
10364
|
}
|
|
9729
10365
|
},
|
|
9730
10366
|
"Shopify_DeliveryParticipantService": {
|
|
@@ -9746,7 +10382,10 @@
|
|
|
9746
10382
|
"description": "Name of the service."
|
|
9747
10383
|
}
|
|
9748
10384
|
},
|
|
9749
|
-
"required": [
|
|
10385
|
+
"required": [
|
|
10386
|
+
"active",
|
|
10387
|
+
"name"
|
|
10388
|
+
]
|
|
9750
10389
|
}
|
|
9751
10390
|
},
|
|
9752
10391
|
"Shopify_SellingPlanAnchorType": {
|
|
@@ -9755,7 +10394,11 @@
|
|
|
9755
10394
|
"id": "Shopify_SellingPlanAnchorType",
|
|
9756
10395
|
"description": "Represents the anchor type.",
|
|
9757
10396
|
"schema": {
|
|
9758
|
-
"enum": [
|
|
10397
|
+
"enum": [
|
|
10398
|
+
"WEEKDAY",
|
|
10399
|
+
"MONTHDAY",
|
|
10400
|
+
"YEARDAY"
|
|
10401
|
+
]
|
|
9759
10402
|
}
|
|
9760
10403
|
},
|
|
9761
10404
|
"Shopify_SellingPlanPricingPolicyPercentageValue": {
|
|
@@ -9772,7 +10415,9 @@
|
|
|
9772
10415
|
"description": "The percentage value."
|
|
9773
10416
|
}
|
|
9774
10417
|
},
|
|
9775
|
-
"required": [
|
|
10418
|
+
"required": [
|
|
10419
|
+
"percentage"
|
|
10420
|
+
]
|
|
9776
10421
|
}
|
|
9777
10422
|
},
|
|
9778
10423
|
"Shopify_DeliveryAvailableService": {
|
|
@@ -9794,7 +10439,10 @@
|
|
|
9794
10439
|
"description": "The name of the service."
|
|
9795
10440
|
}
|
|
9796
10441
|
},
|
|
9797
|
-
"required": [
|
|
10442
|
+
"required": [
|
|
10443
|
+
"countries",
|
|
10444
|
+
"name"
|
|
10445
|
+
]
|
|
9798
10446
|
}
|
|
9799
10447
|
},
|
|
9800
10448
|
"Shopify_DeliveryCountryCodesOrRestOfWorld": {
|
|
@@ -9819,9 +10467,12 @@
|
|
|
9819
10467
|
"description": "Indicates if 'Rest of World' is applied."
|
|
9820
10468
|
}
|
|
9821
10469
|
},
|
|
9822
|
-
"required": [
|
|
10470
|
+
"required": [
|
|
10471
|
+
"countryCodes",
|
|
10472
|
+
"restOfWorld"
|
|
10473
|
+
]
|
|
9823
10474
|
}
|
|
9824
10475
|
}
|
|
9825
10476
|
},
|
|
9826
10477
|
"schemaVersion": "3.51.0"
|
|
9827
|
-
}
|
|
10478
|
+
}
|