@takeshape/schema 11.52.0 → 11.56.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/latest.d.ts +2222 -0
- package/dist/project-schema/migrate.d.ts +4 -0
- package/dist/project-schema/migrate.js +194 -0
- package/dist/project-schema/v3.48.0.d.ts +2161 -0
- package/dist/project-schema/v3.49.0.d.ts +2170 -0
- package/dist/project-schema/v3.50.0.d.ts +2222 -0
- package/dist/project-schema/v3.51.0.d.ts +2222 -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/schemas/project-schema/experimental.json +1104 -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 +24 -26
- 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/project-schema/experimental.json +0 -1101
- 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/latest.d.ts +0 -2221
- package/dist/types/src/project-schema/migrate.d.ts +0 -4
- package/dist/types/src/project-schema/v3.48.0.d.ts +0 -2160
- package/dist/types/src/project-schema/v3.49.0.d.ts +0 -2169
- package/dist/types/src/project-schema/v3.50.0.d.ts +0 -2221
- package/dist/types/src/project-schema/v3.51.0.d.ts +0 -2221
- 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/{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/{esm/src/project-schema → project-schema}/v3.48.0.js +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/{esm/src/project-schema → project-schema}/v3.50.0.js +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/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": "9f513e93-01d6-4fa9-b158-5af4008cb575",
|
|
3
3
|
"defaultLocale": "en-us",
|
|
4
|
-
"locales": [
|
|
4
|
+
"locales": [
|
|
5
|
+
"en-us"
|
|
6
|
+
],
|
|
5
7
|
"apiVersion": "2",
|
|
6
8
|
"schemaVersion": "3.51.0",
|
|
7
9
|
"queries": {
|
|
@@ -226,7 +228,9 @@
|
|
|
226
228
|
"type": "string"
|
|
227
229
|
}
|
|
228
230
|
},
|
|
229
|
-
"required": [
|
|
231
|
+
"required": [
|
|
232
|
+
"id"
|
|
233
|
+
]
|
|
230
234
|
}
|
|
231
235
|
},
|
|
232
236
|
"searchAssetIndex": {
|
|
@@ -410,7 +414,9 @@
|
|
|
410
414
|
"_shapeId": {
|
|
411
415
|
"type": "string",
|
|
412
416
|
"title": "Shape Id",
|
|
413
|
-
"enum": [
|
|
417
|
+
"enum": [
|
|
418
|
+
"ASSET"
|
|
419
|
+
]
|
|
414
420
|
},
|
|
415
421
|
"_id": {
|
|
416
422
|
"title": "Id",
|
|
@@ -489,7 +495,10 @@
|
|
|
489
495
|
"@deprecationReason": "Use path instead"
|
|
490
496
|
}
|
|
491
497
|
},
|
|
492
|
-
"required": [
|
|
498
|
+
"required": [
|
|
499
|
+
"filename",
|
|
500
|
+
"path"
|
|
501
|
+
]
|
|
493
502
|
}
|
|
494
503
|
},
|
|
495
504
|
"TSRelationship": {
|
|
@@ -513,7 +522,9 @@
|
|
|
513
522
|
"type": "string"
|
|
514
523
|
}
|
|
515
524
|
},
|
|
516
|
-
"required": [
|
|
525
|
+
"required": [
|
|
526
|
+
"id"
|
|
527
|
+
]
|
|
517
528
|
}
|
|
518
529
|
},
|
|
519
530
|
"TSStaticSite": {
|
|
@@ -547,27 +558,39 @@
|
|
|
547
558
|
"@l10n": false,
|
|
548
559
|
"oneOf": [
|
|
549
560
|
{
|
|
550
|
-
"enum": [
|
|
561
|
+
"enum": [
|
|
562
|
+
"s3"
|
|
563
|
+
],
|
|
551
564
|
"title": "S3"
|
|
552
565
|
},
|
|
553
566
|
{
|
|
554
|
-
"enum": [
|
|
567
|
+
"enum": [
|
|
568
|
+
"gcs"
|
|
569
|
+
],
|
|
555
570
|
"title": "Google Cloud Storage"
|
|
556
571
|
},
|
|
557
572
|
{
|
|
558
|
-
"enum": [
|
|
573
|
+
"enum": [
|
|
574
|
+
"ftp"
|
|
575
|
+
],
|
|
559
576
|
"title": "FTP Client"
|
|
560
577
|
},
|
|
561
578
|
{
|
|
562
|
-
"enum": [
|
|
579
|
+
"enum": [
|
|
580
|
+
"azure"
|
|
581
|
+
],
|
|
563
582
|
"title": "Azure Storage Account"
|
|
564
583
|
},
|
|
565
584
|
{
|
|
566
|
-
"enum": [
|
|
585
|
+
"enum": [
|
|
586
|
+
"netlify"
|
|
587
|
+
],
|
|
567
588
|
"title": "Netlify"
|
|
568
589
|
},
|
|
569
590
|
{
|
|
570
|
-
"enum": [
|
|
591
|
+
"enum": [
|
|
592
|
+
"vercel"
|
|
593
|
+
],
|
|
571
594
|
"title": "Vercel"
|
|
572
595
|
}
|
|
573
596
|
],
|
|
@@ -627,7 +650,9 @@
|
|
|
627
650
|
"_shapeId": {
|
|
628
651
|
"type": "string",
|
|
629
652
|
"title": "Shape Id",
|
|
630
|
-
"enum": [
|
|
653
|
+
"enum": [
|
|
654
|
+
"SITE"
|
|
655
|
+
]
|
|
631
656
|
},
|
|
632
657
|
"_id": {
|
|
633
658
|
"title": "Id",
|
|
@@ -700,7 +725,11 @@
|
|
|
700
725
|
"type": "string"
|
|
701
726
|
}
|
|
702
727
|
},
|
|
703
|
-
"required": [
|
|
728
|
+
"required": [
|
|
729
|
+
"title",
|
|
730
|
+
"provider",
|
|
731
|
+
"destination"
|
|
732
|
+
]
|
|
704
733
|
}
|
|
705
734
|
},
|
|
706
735
|
"TSStaticSiteEnvironmentVariables": {
|
|
@@ -761,7 +790,11 @@
|
|
|
761
790
|
"type": "string"
|
|
762
791
|
}
|
|
763
792
|
},
|
|
764
|
-
"required": [
|
|
793
|
+
"required": [
|
|
794
|
+
"id",
|
|
795
|
+
"email",
|
|
796
|
+
"fullName"
|
|
797
|
+
]
|
|
765
798
|
}
|
|
766
799
|
},
|
|
767
800
|
"Stripe_ListProductsResponse": {
|
|
@@ -784,7 +817,9 @@
|
|
|
784
817
|
},
|
|
785
818
|
"object": {
|
|
786
819
|
"description": "String representing the object's type. Objects of the same type share the same value. Always has the value `list`.",
|
|
787
|
-
"enum": [
|
|
820
|
+
"enum": [
|
|
821
|
+
"list"
|
|
822
|
+
]
|
|
788
823
|
},
|
|
789
824
|
"url": {
|
|
790
825
|
"description": "The URL where this list can be accessed.",
|
|
@@ -857,7 +892,9 @@
|
|
|
857
892
|
},
|
|
858
893
|
"object": {
|
|
859
894
|
"description": "String representing the object's type. Objects of the same type share the same value.",
|
|
860
|
-
"enum": [
|
|
895
|
+
"enum": [
|
|
896
|
+
"product"
|
|
897
|
+
]
|
|
861
898
|
},
|
|
862
899
|
"package_dimensions": {
|
|
863
900
|
"@ref": "stripe:PackageDimensions"
|
|
@@ -902,7 +939,9 @@
|
|
|
902
939
|
"_shapeId": {
|
|
903
940
|
"type": "string",
|
|
904
941
|
"title": "Shape Id",
|
|
905
|
-
"enum": [
|
|
942
|
+
"enum": [
|
|
943
|
+
"Stripe_Product"
|
|
944
|
+
]
|
|
906
945
|
},
|
|
907
946
|
"_id": {
|
|
908
947
|
"title": "Id",
|
|
@@ -944,7 +983,9 @@
|
|
|
944
983
|
"type": "string"
|
|
945
984
|
}
|
|
946
985
|
},
|
|
947
|
-
"required": [
|
|
986
|
+
"required": [
|
|
987
|
+
"value"
|
|
988
|
+
],
|
|
948
989
|
"additionalProperties": false
|
|
949
990
|
}
|
|
950
991
|
},
|
|
@@ -961,7 +1002,10 @@
|
|
|
961
1002
|
},
|
|
962
1003
|
"billing_scheme": {
|
|
963
1004
|
"description": "Describes how to compute the price per period. Either `per_unit` or `tiered`. `per_unit` indicates that the fixed amount (specified in `unit_amount` or `unit_amount_decimal`) will be charged per unit in `quantity` (for prices with `usage_type=licensed`), or per unit of total usage (for prices with `usage_type=metered`). `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes.",
|
|
964
|
-
"enum": [
|
|
1005
|
+
"enum": [
|
|
1006
|
+
"per_unit",
|
|
1007
|
+
"tiered"
|
|
1008
|
+
]
|
|
965
1009
|
},
|
|
966
1010
|
"created": {
|
|
967
1011
|
"description": "Time at which the object was created. Measured in seconds since the Unix epoch.",
|
|
@@ -1004,7 +1048,9 @@
|
|
|
1004
1048
|
},
|
|
1005
1049
|
"object": {
|
|
1006
1050
|
"description": "String representing the object's type. Objects of the same type share the same value.",
|
|
1007
|
-
"enum": [
|
|
1051
|
+
"enum": [
|
|
1052
|
+
"price"
|
|
1053
|
+
]
|
|
1008
1054
|
},
|
|
1009
1055
|
"product": {
|
|
1010
1056
|
"oneOf": [
|
|
@@ -1027,7 +1073,12 @@
|
|
|
1027
1073
|
},
|
|
1028
1074
|
"tax_behavior": {
|
|
1029
1075
|
"description": "Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.",
|
|
1030
|
-
"enum": [
|
|
1076
|
+
"enum": [
|
|
1077
|
+
"exclusive",
|
|
1078
|
+
"inclusive",
|
|
1079
|
+
"unspecified",
|
|
1080
|
+
null
|
|
1081
|
+
]
|
|
1031
1082
|
},
|
|
1032
1083
|
"tiers": {
|
|
1033
1084
|
"description": "Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.",
|
|
@@ -1038,14 +1089,21 @@
|
|
|
1038
1089
|
},
|
|
1039
1090
|
"tiers_mode": {
|
|
1040
1091
|
"description": "Defines if the tiering price should be `graduated` or `volume` based. In `volume`-based tiering, the maximum quantity within a period determines the per unit price. In `graduated` tiering, pricing can change as the quantity grows.",
|
|
1041
|
-
"enum": [
|
|
1092
|
+
"enum": [
|
|
1093
|
+
"graduated",
|
|
1094
|
+
"volume",
|
|
1095
|
+
null
|
|
1096
|
+
]
|
|
1042
1097
|
},
|
|
1043
1098
|
"transform_quantity": {
|
|
1044
1099
|
"@ref": "stripe:TransformQuantity"
|
|
1045
1100
|
},
|
|
1046
1101
|
"type": {
|
|
1047
1102
|
"description": "One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.",
|
|
1048
|
-
"enum": [
|
|
1103
|
+
"enum": [
|
|
1104
|
+
"one_time",
|
|
1105
|
+
"recurring"
|
|
1106
|
+
]
|
|
1049
1107
|
},
|
|
1050
1108
|
"unit_amount": {
|
|
1051
1109
|
"description": "The unit amount in %s to be charged, represented as a whole integer if possible. Only set if `billing_scheme=per_unit`.",
|
|
@@ -1109,7 +1167,9 @@
|
|
|
1109
1167
|
},
|
|
1110
1168
|
"object": {
|
|
1111
1169
|
"description": "String representing the object's type. Objects of the same type share the same value.",
|
|
1112
|
-
"enum": [
|
|
1170
|
+
"enum": [
|
|
1171
|
+
"tax_code"
|
|
1172
|
+
]
|
|
1113
1173
|
}
|
|
1114
1174
|
}
|
|
1115
1175
|
}
|
|
@@ -1154,7 +1214,9 @@
|
|
|
1154
1214
|
},
|
|
1155
1215
|
"object": {
|
|
1156
1216
|
"description": "String representing the object's type. Objects of the same type share the same value.",
|
|
1157
|
-
"enum": [
|
|
1217
|
+
"enum": [
|
|
1218
|
+
"product"
|
|
1219
|
+
]
|
|
1158
1220
|
}
|
|
1159
1221
|
}
|
|
1160
1222
|
}
|
|
@@ -1168,11 +1230,22 @@
|
|
|
1168
1230
|
"properties": {
|
|
1169
1231
|
"aggregate_usage": {
|
|
1170
1232
|
"description": "Specifies a usage aggregation strategy for prices of `usage_type=metered`. Allowed values are `sum` for summing up all usage during a period, `last_during_period` for using the last usage record reported within a period, `last_ever` for using the last usage record ever (across period bounds) or `max` which uses the usage record with the maximum reported usage during a period. Defaults to `sum`.",
|
|
1171
|
-
"enum": [
|
|
1233
|
+
"enum": [
|
|
1234
|
+
"last_during_period",
|
|
1235
|
+
"last_ever",
|
|
1236
|
+
"max",
|
|
1237
|
+
"sum",
|
|
1238
|
+
null
|
|
1239
|
+
]
|
|
1172
1240
|
},
|
|
1173
1241
|
"interval": {
|
|
1174
1242
|
"description": "The frequency at which a subscription is billed. One of `day`, `week`, `month` or `year`.",
|
|
1175
|
-
"enum": [
|
|
1243
|
+
"enum": [
|
|
1244
|
+
"day",
|
|
1245
|
+
"month",
|
|
1246
|
+
"week",
|
|
1247
|
+
"year"
|
|
1248
|
+
]
|
|
1176
1249
|
},
|
|
1177
1250
|
"interval_count": {
|
|
1178
1251
|
"description": "The number of intervals (specified in the `interval` attribute) between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months.",
|
|
@@ -1180,7 +1253,10 @@
|
|
|
1180
1253
|
},
|
|
1181
1254
|
"usage_type": {
|
|
1182
1255
|
"description": "Configures how the quantity per period should be determined. Can be either `metered` or `licensed`. `licensed` automatically bills the `quantity` set when adding it to a subscription. `metered` aggregates the total usage based on usage records. Defaults to `licensed`.",
|
|
1183
|
-
"enum": [
|
|
1256
|
+
"enum": [
|
|
1257
|
+
"licensed",
|
|
1258
|
+
"metered"
|
|
1259
|
+
]
|
|
1184
1260
|
}
|
|
1185
1261
|
}
|
|
1186
1262
|
}
|
|
@@ -1230,7 +1306,10 @@
|
|
|
1230
1306
|
},
|
|
1231
1307
|
"round": {
|
|
1232
1308
|
"description": "After division, either round the result `up` or `down`.",
|
|
1233
|
-
"enum": [
|
|
1309
|
+
"enum": [
|
|
1310
|
+
"down",
|
|
1311
|
+
"up"
|
|
1312
|
+
]
|
|
1234
1313
|
}
|
|
1235
1314
|
}
|
|
1236
1315
|
}
|
|
@@ -1262,7 +1341,9 @@
|
|
|
1262
1341
|
"default": true
|
|
1263
1342
|
}
|
|
1264
1343
|
},
|
|
1265
|
-
"required": [
|
|
1344
|
+
"required": [
|
|
1345
|
+
"_id"
|
|
1346
|
+
]
|
|
1266
1347
|
}
|
|
1267
1348
|
},
|
|
1268
1349
|
"TSWhereAssetInput": {
|
|
@@ -1570,7 +1651,10 @@
|
|
|
1570
1651
|
"description": "\"asc\" for ascending or \"desc\" for descending"
|
|
1571
1652
|
}
|
|
1572
1653
|
},
|
|
1573
|
-
"required": [
|
|
1654
|
+
"required": [
|
|
1655
|
+
"field",
|
|
1656
|
+
"order"
|
|
1657
|
+
]
|
|
1574
1658
|
}
|
|
1575
1659
|
},
|
|
1576
1660
|
"AssetTSListArgs": {
|
|
@@ -1638,7 +1722,10 @@
|
|
|
1638
1722
|
"type": "integer"
|
|
1639
1723
|
}
|
|
1640
1724
|
},
|
|
1641
|
-
"required": [
|
|
1725
|
+
"required": [
|
|
1726
|
+
"items",
|
|
1727
|
+
"total"
|
|
1728
|
+
]
|
|
1642
1729
|
}
|
|
1643
1730
|
},
|
|
1644
1731
|
"TSStaticSiteTSGetArgs": {
|
|
@@ -1659,7 +1746,9 @@
|
|
|
1659
1746
|
"default": true
|
|
1660
1747
|
}
|
|
1661
1748
|
},
|
|
1662
|
-
"required": [
|
|
1749
|
+
"required": [
|
|
1750
|
+
"_id"
|
|
1751
|
+
]
|
|
1663
1752
|
}
|
|
1664
1753
|
},
|
|
1665
1754
|
"TSWhereTSStaticSiteInput": {
|
|
@@ -1855,7 +1944,10 @@
|
|
|
1855
1944
|
"type": "integer"
|
|
1856
1945
|
}
|
|
1857
1946
|
},
|
|
1858
|
-
"required": [
|
|
1947
|
+
"required": [
|
|
1948
|
+
"items",
|
|
1949
|
+
"total"
|
|
1950
|
+
]
|
|
1859
1951
|
}
|
|
1860
1952
|
},
|
|
1861
1953
|
"AssetTSSearchArgs": {
|
|
@@ -1918,7 +2010,10 @@
|
|
|
1918
2010
|
"type": "integer"
|
|
1919
2011
|
}
|
|
1920
2012
|
},
|
|
1921
|
-
"required": [
|
|
2013
|
+
"required": [
|
|
2014
|
+
"results",
|
|
2015
|
+
"total"
|
|
2016
|
+
]
|
|
1922
2017
|
},
|
|
1923
2018
|
"description": "Asset search results"
|
|
1924
2019
|
},
|
|
@@ -1982,7 +2077,10 @@
|
|
|
1982
2077
|
"type": "integer"
|
|
1983
2078
|
}
|
|
1984
2079
|
},
|
|
1985
|
-
"required": [
|
|
2080
|
+
"required": [
|
|
2081
|
+
"results",
|
|
2082
|
+
"total"
|
|
2083
|
+
]
|
|
1986
2084
|
},
|
|
1987
2085
|
"description": "TSStaticSite search results"
|
|
1988
2086
|
},
|
|
@@ -2478,7 +2576,10 @@
|
|
|
2478
2576
|
"type": "integer"
|
|
2479
2577
|
}
|
|
2480
2578
|
},
|
|
2481
|
-
"required": [
|
|
2579
|
+
"required": [
|
|
2580
|
+
"results",
|
|
2581
|
+
"total"
|
|
2582
|
+
]
|
|
2482
2583
|
},
|
|
2483
2584
|
"description": "TSSearchable search results"
|
|
2484
2585
|
},
|
|
@@ -2554,7 +2655,9 @@
|
|
|
2554
2655
|
"_shapeId": {
|
|
2555
2656
|
"type": "string",
|
|
2556
2657
|
"title": "Shape Id",
|
|
2557
|
-
"enum": [
|
|
2658
|
+
"enum": [
|
|
2659
|
+
"ASSET"
|
|
2660
|
+
]
|
|
2558
2661
|
},
|
|
2559
2662
|
"_version": {
|
|
2560
2663
|
"title": "Version",
|
|
@@ -2629,7 +2732,9 @@
|
|
|
2629
2732
|
"@deprecationReason": "Use path instead"
|
|
2630
2733
|
}
|
|
2631
2734
|
},
|
|
2632
|
-
"required": [
|
|
2735
|
+
"required": [
|
|
2736
|
+
"_id"
|
|
2737
|
+
]
|
|
2633
2738
|
},
|
|
2634
2739
|
"description": "update Asset input"
|
|
2635
2740
|
},
|
|
@@ -2660,7 +2765,9 @@
|
|
|
2660
2765
|
"default": true
|
|
2661
2766
|
}
|
|
2662
2767
|
},
|
|
2663
|
-
"required": [
|
|
2768
|
+
"required": [
|
|
2769
|
+
"input"
|
|
2770
|
+
]
|
|
2664
2771
|
}
|
|
2665
2772
|
},
|
|
2666
2773
|
"ContentStructureInput": {
|
|
@@ -2682,7 +2789,9 @@
|
|
|
2682
2789
|
}
|
|
2683
2790
|
}
|
|
2684
2791
|
},
|
|
2685
|
-
"required": [
|
|
2792
|
+
"required": [
|
|
2793
|
+
"path"
|
|
2794
|
+
]
|
|
2686
2795
|
},
|
|
2687
2796
|
"description": "Describes a structural update to an array of data."
|
|
2688
2797
|
},
|
|
@@ -2770,7 +2879,9 @@
|
|
|
2770
2879
|
"_shapeId": {
|
|
2771
2880
|
"type": "string",
|
|
2772
2881
|
"title": "Shape Id",
|
|
2773
|
-
"enum": [
|
|
2882
|
+
"enum": [
|
|
2883
|
+
"ASSET"
|
|
2884
|
+
]
|
|
2774
2885
|
},
|
|
2775
2886
|
"_id": {
|
|
2776
2887
|
"title": "Id",
|
|
@@ -2849,7 +2960,10 @@
|
|
|
2849
2960
|
"@deprecationReason": "Use path instead"
|
|
2850
2961
|
}
|
|
2851
2962
|
},
|
|
2852
|
-
"required": [
|
|
2963
|
+
"required": [
|
|
2964
|
+
"filename",
|
|
2965
|
+
"path"
|
|
2966
|
+
]
|
|
2853
2967
|
},
|
|
2854
2968
|
"description": "create Asset input"
|
|
2855
2969
|
},
|
|
@@ -2867,7 +2981,9 @@
|
|
|
2867
2981
|
"type": "string"
|
|
2868
2982
|
}
|
|
2869
2983
|
},
|
|
2870
|
-
"required": [
|
|
2984
|
+
"required": [
|
|
2985
|
+
"input"
|
|
2986
|
+
]
|
|
2871
2987
|
}
|
|
2872
2988
|
},
|
|
2873
2989
|
"CreateAssetResult": {
|
|
@@ -2958,7 +3074,9 @@
|
|
|
2958
3074
|
"_shapeId": {
|
|
2959
3075
|
"type": "string",
|
|
2960
3076
|
"title": "Shape Id",
|
|
2961
|
-
"enum": [
|
|
3077
|
+
"enum": [
|
|
3078
|
+
"ASSET"
|
|
3079
|
+
]
|
|
2962
3080
|
},
|
|
2963
3081
|
"_version": {
|
|
2964
3082
|
"title": "Version",
|
|
@@ -3033,7 +3151,9 @@
|
|
|
3033
3151
|
"@deprecationReason": "Use path instead"
|
|
3034
3152
|
}
|
|
3035
3153
|
},
|
|
3036
|
-
"required": [
|
|
3154
|
+
"required": [
|
|
3155
|
+
"_id"
|
|
3156
|
+
]
|
|
3037
3157
|
},
|
|
3038
3158
|
"description": "duplicate Asset input"
|
|
3039
3159
|
},
|
|
@@ -3058,7 +3178,9 @@
|
|
|
3058
3178
|
"default": true
|
|
3059
3179
|
}
|
|
3060
3180
|
},
|
|
3061
|
-
"required": [
|
|
3181
|
+
"required": [
|
|
3182
|
+
"input"
|
|
3183
|
+
]
|
|
3062
3184
|
}
|
|
3063
3185
|
},
|
|
3064
3186
|
"DuplicateAssetResult": {
|
|
@@ -3088,7 +3210,9 @@
|
|
|
3088
3210
|
"type": "string"
|
|
3089
3211
|
}
|
|
3090
3212
|
},
|
|
3091
|
-
"required": [
|
|
3213
|
+
"required": [
|
|
3214
|
+
"_id"
|
|
3215
|
+
]
|
|
3092
3216
|
},
|
|
3093
3217
|
"description": "delete Asset input"
|
|
3094
3218
|
},
|
|
@@ -3106,7 +3230,9 @@
|
|
|
3106
3230
|
"type": "string"
|
|
3107
3231
|
}
|
|
3108
3232
|
},
|
|
3109
|
-
"required": [
|
|
3233
|
+
"required": [
|
|
3234
|
+
"input"
|
|
3235
|
+
]
|
|
3110
3236
|
}
|
|
3111
3237
|
},
|
|
3112
3238
|
"DeleteAssetResult": {
|
|
@@ -3156,27 +3282,39 @@
|
|
|
3156
3282
|
"@l10n": false,
|
|
3157
3283
|
"oneOf": [
|
|
3158
3284
|
{
|
|
3159
|
-
"enum": [
|
|
3285
|
+
"enum": [
|
|
3286
|
+
"s3"
|
|
3287
|
+
],
|
|
3160
3288
|
"title": "S3"
|
|
3161
3289
|
},
|
|
3162
3290
|
{
|
|
3163
|
-
"enum": [
|
|
3291
|
+
"enum": [
|
|
3292
|
+
"gcs"
|
|
3293
|
+
],
|
|
3164
3294
|
"title": "Google Cloud Storage"
|
|
3165
3295
|
},
|
|
3166
3296
|
{
|
|
3167
|
-
"enum": [
|
|
3297
|
+
"enum": [
|
|
3298
|
+
"ftp"
|
|
3299
|
+
],
|
|
3168
3300
|
"title": "FTP Client"
|
|
3169
3301
|
},
|
|
3170
3302
|
{
|
|
3171
|
-
"enum": [
|
|
3303
|
+
"enum": [
|
|
3304
|
+
"azure"
|
|
3305
|
+
],
|
|
3172
3306
|
"title": "Azure Storage Account"
|
|
3173
3307
|
},
|
|
3174
3308
|
{
|
|
3175
|
-
"enum": [
|
|
3309
|
+
"enum": [
|
|
3310
|
+
"netlify"
|
|
3311
|
+
],
|
|
3176
3312
|
"title": "Netlify"
|
|
3177
3313
|
},
|
|
3178
3314
|
{
|
|
3179
|
-
"enum": [
|
|
3315
|
+
"enum": [
|
|
3316
|
+
"vercel"
|
|
3317
|
+
],
|
|
3180
3318
|
"title": "Vercel"
|
|
3181
3319
|
}
|
|
3182
3320
|
],
|
|
@@ -3236,7 +3374,9 @@
|
|
|
3236
3374
|
"_shapeId": {
|
|
3237
3375
|
"type": "string",
|
|
3238
3376
|
"title": "Shape Id",
|
|
3239
|
-
"enum": [
|
|
3377
|
+
"enum": [
|
|
3378
|
+
"SITE"
|
|
3379
|
+
]
|
|
3240
3380
|
},
|
|
3241
3381
|
"_version": {
|
|
3242
3382
|
"title": "Version",
|
|
@@ -3305,7 +3445,9 @@
|
|
|
3305
3445
|
"type": "string"
|
|
3306
3446
|
}
|
|
3307
3447
|
},
|
|
3308
|
-
"required": [
|
|
3448
|
+
"required": [
|
|
3449
|
+
"_id"
|
|
3450
|
+
]
|
|
3309
3451
|
},
|
|
3310
3452
|
"description": "update TSStaticSite input"
|
|
3311
3453
|
},
|
|
@@ -3336,7 +3478,9 @@
|
|
|
3336
3478
|
"default": true
|
|
3337
3479
|
}
|
|
3338
3480
|
},
|
|
3339
|
-
"required": [
|
|
3481
|
+
"required": [
|
|
3482
|
+
"input"
|
|
3483
|
+
]
|
|
3340
3484
|
}
|
|
3341
3485
|
},
|
|
3342
3486
|
"TSStaticSiteEnvironmentVariablesInput": {
|
|
@@ -3421,27 +3565,39 @@
|
|
|
3421
3565
|
"@l10n": false,
|
|
3422
3566
|
"oneOf": [
|
|
3423
3567
|
{
|
|
3424
|
-
"enum": [
|
|
3568
|
+
"enum": [
|
|
3569
|
+
"s3"
|
|
3570
|
+
],
|
|
3425
3571
|
"title": "S3"
|
|
3426
3572
|
},
|
|
3427
3573
|
{
|
|
3428
|
-
"enum": [
|
|
3574
|
+
"enum": [
|
|
3575
|
+
"gcs"
|
|
3576
|
+
],
|
|
3429
3577
|
"title": "Google Cloud Storage"
|
|
3430
3578
|
},
|
|
3431
3579
|
{
|
|
3432
|
-
"enum": [
|
|
3580
|
+
"enum": [
|
|
3581
|
+
"ftp"
|
|
3582
|
+
],
|
|
3433
3583
|
"title": "FTP Client"
|
|
3434
3584
|
},
|
|
3435
3585
|
{
|
|
3436
|
-
"enum": [
|
|
3586
|
+
"enum": [
|
|
3587
|
+
"azure"
|
|
3588
|
+
],
|
|
3437
3589
|
"title": "Azure Storage Account"
|
|
3438
3590
|
},
|
|
3439
3591
|
{
|
|
3440
|
-
"enum": [
|
|
3592
|
+
"enum": [
|
|
3593
|
+
"netlify"
|
|
3594
|
+
],
|
|
3441
3595
|
"title": "Netlify"
|
|
3442
3596
|
},
|
|
3443
3597
|
{
|
|
3444
|
-
"enum": [
|
|
3598
|
+
"enum": [
|
|
3599
|
+
"vercel"
|
|
3600
|
+
],
|
|
3445
3601
|
"title": "Vercel"
|
|
3446
3602
|
}
|
|
3447
3603
|
],
|
|
@@ -3501,7 +3657,9 @@
|
|
|
3501
3657
|
"_shapeId": {
|
|
3502
3658
|
"type": "string",
|
|
3503
3659
|
"title": "Shape Id",
|
|
3504
|
-
"enum": [
|
|
3660
|
+
"enum": [
|
|
3661
|
+
"SITE"
|
|
3662
|
+
]
|
|
3505
3663
|
},
|
|
3506
3664
|
"_id": {
|
|
3507
3665
|
"title": "Id",
|
|
@@ -3574,7 +3732,11 @@
|
|
|
3574
3732
|
"type": "string"
|
|
3575
3733
|
}
|
|
3576
3734
|
},
|
|
3577
|
-
"required": [
|
|
3735
|
+
"required": [
|
|
3736
|
+
"title",
|
|
3737
|
+
"provider",
|
|
3738
|
+
"destination"
|
|
3739
|
+
]
|
|
3578
3740
|
},
|
|
3579
3741
|
"description": "create TSStaticSite input"
|
|
3580
3742
|
},
|
|
@@ -3592,7 +3754,9 @@
|
|
|
3592
3754
|
"type": "string"
|
|
3593
3755
|
}
|
|
3594
3756
|
},
|
|
3595
|
-
"required": [
|
|
3757
|
+
"required": [
|
|
3758
|
+
"input"
|
|
3759
|
+
]
|
|
3596
3760
|
}
|
|
3597
3761
|
},
|
|
3598
3762
|
"CreateTSStaticSiteResult": {
|
|
@@ -3642,27 +3806,39 @@
|
|
|
3642
3806
|
"@l10n": false,
|
|
3643
3807
|
"oneOf": [
|
|
3644
3808
|
{
|
|
3645
|
-
"enum": [
|
|
3809
|
+
"enum": [
|
|
3810
|
+
"s3"
|
|
3811
|
+
],
|
|
3646
3812
|
"title": "S3"
|
|
3647
3813
|
},
|
|
3648
3814
|
{
|
|
3649
|
-
"enum": [
|
|
3815
|
+
"enum": [
|
|
3816
|
+
"gcs"
|
|
3817
|
+
],
|
|
3650
3818
|
"title": "Google Cloud Storage"
|
|
3651
3819
|
},
|
|
3652
3820
|
{
|
|
3653
|
-
"enum": [
|
|
3821
|
+
"enum": [
|
|
3822
|
+
"ftp"
|
|
3823
|
+
],
|
|
3654
3824
|
"title": "FTP Client"
|
|
3655
3825
|
},
|
|
3656
3826
|
{
|
|
3657
|
-
"enum": [
|
|
3827
|
+
"enum": [
|
|
3828
|
+
"azure"
|
|
3829
|
+
],
|
|
3658
3830
|
"title": "Azure Storage Account"
|
|
3659
3831
|
},
|
|
3660
3832
|
{
|
|
3661
|
-
"enum": [
|
|
3833
|
+
"enum": [
|
|
3834
|
+
"netlify"
|
|
3835
|
+
],
|
|
3662
3836
|
"title": "Netlify"
|
|
3663
3837
|
},
|
|
3664
3838
|
{
|
|
3665
|
-
"enum": [
|
|
3839
|
+
"enum": [
|
|
3840
|
+
"vercel"
|
|
3841
|
+
],
|
|
3666
3842
|
"title": "Vercel"
|
|
3667
3843
|
}
|
|
3668
3844
|
],
|
|
@@ -3722,7 +3898,9 @@
|
|
|
3722
3898
|
"_shapeId": {
|
|
3723
3899
|
"type": "string",
|
|
3724
3900
|
"title": "Shape Id",
|
|
3725
|
-
"enum": [
|
|
3901
|
+
"enum": [
|
|
3902
|
+
"SITE"
|
|
3903
|
+
]
|
|
3726
3904
|
},
|
|
3727
3905
|
"_version": {
|
|
3728
3906
|
"title": "Version",
|
|
@@ -3791,7 +3969,9 @@
|
|
|
3791
3969
|
"type": "string"
|
|
3792
3970
|
}
|
|
3793
3971
|
},
|
|
3794
|
-
"required": [
|
|
3972
|
+
"required": [
|
|
3973
|
+
"_id"
|
|
3974
|
+
]
|
|
3795
3975
|
},
|
|
3796
3976
|
"description": "duplicate TSStaticSite input"
|
|
3797
3977
|
},
|
|
@@ -3816,7 +3996,9 @@
|
|
|
3816
3996
|
"default": true
|
|
3817
3997
|
}
|
|
3818
3998
|
},
|
|
3819
|
-
"required": [
|
|
3999
|
+
"required": [
|
|
4000
|
+
"input"
|
|
4001
|
+
]
|
|
3820
4002
|
}
|
|
3821
4003
|
},
|
|
3822
4004
|
"DuplicateTSStaticSiteResult": {
|
|
@@ -3846,7 +4028,9 @@
|
|
|
3846
4028
|
"type": "string"
|
|
3847
4029
|
}
|
|
3848
4030
|
},
|
|
3849
|
-
"required": [
|
|
4031
|
+
"required": [
|
|
4032
|
+
"_id"
|
|
4033
|
+
]
|
|
3850
4034
|
},
|
|
3851
4035
|
"description": "delete TSStaticSite input"
|
|
3852
4036
|
},
|
|
@@ -3864,7 +4048,9 @@
|
|
|
3864
4048
|
"type": "string"
|
|
3865
4049
|
}
|
|
3866
4050
|
},
|
|
3867
|
-
"required": [
|
|
4051
|
+
"required": [
|
|
4052
|
+
"input"
|
|
4053
|
+
]
|
|
3868
4054
|
}
|
|
3869
4055
|
},
|
|
3870
4056
|
"DeleteTSStaticSiteResult": {
|
|
@@ -3963,7 +4149,10 @@
|
|
|
3963
4149
|
"TSStaticSiteEnvironmentVariables": {
|
|
3964
4150
|
"default": {
|
|
3965
4151
|
"widget": "repeater",
|
|
3966
|
-
"order": [
|
|
4152
|
+
"order": [
|
|
4153
|
+
"name",
|
|
4154
|
+
"value"
|
|
4155
|
+
],
|
|
3967
4156
|
"disabled": true,
|
|
3968
4157
|
"properties": {
|
|
3969
4158
|
"name": {
|
|
@@ -3979,7 +4168,14 @@
|
|
|
3979
4168
|
},
|
|
3980
4169
|
"TSStaticSite": {
|
|
3981
4170
|
"default": {
|
|
3982
|
-
"order": [
|
|
4171
|
+
"order": [
|
|
4172
|
+
"title",
|
|
4173
|
+
"provider",
|
|
4174
|
+
"destination",
|
|
4175
|
+
"idKey",
|
|
4176
|
+
"secretKey",
|
|
4177
|
+
"environmentVariables"
|
|
4178
|
+
],
|
|
3983
4179
|
"properties": {
|
|
3984
4180
|
"title": {
|
|
3985
4181
|
"widget": "singleLineText",
|
|
@@ -4030,4 +4226,4 @@
|
|
|
4030
4226
|
}
|
|
4031
4227
|
}
|
|
4032
4228
|
}
|
|
4033
|
-
}
|
|
4229
|
+
}
|