@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
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
"workflows": {},
|
|
3
3
|
"projectId": "fd194db7-7b25-4b5a-8cc7-da7f31fab475",
|
|
4
4
|
"defaultLocale": "en",
|
|
5
|
-
"locales": [
|
|
5
|
+
"locales": [
|
|
6
|
+
"en"
|
|
7
|
+
],
|
|
6
8
|
"apiVersion": "1",
|
|
7
9
|
"forms": {
|
|
8
10
|
"ResourceNavigationSections": {
|
|
@@ -19,7 +21,11 @@
|
|
|
19
21
|
}
|
|
20
22
|
},
|
|
21
23
|
"widget": "repeater",
|
|
22
|
-
"order": [
|
|
24
|
+
"order": [
|
|
25
|
+
"name",
|
|
26
|
+
"resources",
|
|
27
|
+
"subsections"
|
|
28
|
+
]
|
|
23
29
|
}
|
|
24
30
|
},
|
|
25
31
|
"ResourceNavigation": {
|
|
@@ -36,7 +42,11 @@
|
|
|
36
42
|
"widget": "shapeArray"
|
|
37
43
|
}
|
|
38
44
|
},
|
|
39
|
-
"order": [
|
|
45
|
+
"order": [
|
|
46
|
+
"topLevelResource",
|
|
47
|
+
"sections",
|
|
48
|
+
"externalResources"
|
|
49
|
+
]
|
|
40
50
|
}
|
|
41
51
|
},
|
|
42
52
|
"ResourceNavigationSectionsSubsections": {
|
|
@@ -50,7 +60,10 @@
|
|
|
50
60
|
}
|
|
51
61
|
},
|
|
52
62
|
"widget": "repeater",
|
|
53
|
-
"order": [
|
|
63
|
+
"order": [
|
|
64
|
+
"name",
|
|
65
|
+
"resources"
|
|
66
|
+
]
|
|
54
67
|
}
|
|
55
68
|
},
|
|
56
69
|
"ResourceNavigationExternalResources": {
|
|
@@ -64,7 +77,10 @@
|
|
|
64
77
|
}
|
|
65
78
|
},
|
|
66
79
|
"widget": "repeater",
|
|
67
|
-
"order": [
|
|
80
|
+
"order": [
|
|
81
|
+
"name",
|
|
82
|
+
"url"
|
|
83
|
+
]
|
|
68
84
|
}
|
|
69
85
|
},
|
|
70
86
|
"ArticlePeerComments": {
|
|
@@ -81,7 +97,11 @@
|
|
|
81
97
|
}
|
|
82
98
|
},
|
|
83
99
|
"widget": "repeater",
|
|
84
|
-
"order": [
|
|
100
|
+
"order": [
|
|
101
|
+
"person",
|
|
102
|
+
"comment",
|
|
103
|
+
"responses"
|
|
104
|
+
]
|
|
85
105
|
}
|
|
86
106
|
},
|
|
87
107
|
"Article": {
|
|
@@ -203,7 +223,10 @@
|
|
|
203
223
|
}
|
|
204
224
|
},
|
|
205
225
|
"widget": "repeater",
|
|
206
|
-
"order": [
|
|
226
|
+
"order": [
|
|
227
|
+
"person",
|
|
228
|
+
"response"
|
|
229
|
+
]
|
|
207
230
|
}
|
|
208
231
|
},
|
|
209
232
|
"ArticleAppearance": {
|
|
@@ -217,7 +240,10 @@
|
|
|
217
240
|
}
|
|
218
241
|
},
|
|
219
242
|
"widget": "object",
|
|
220
|
-
"order": [
|
|
243
|
+
"order": [
|
|
244
|
+
"layout",
|
|
245
|
+
"dropcap"
|
|
246
|
+
]
|
|
221
247
|
}
|
|
222
248
|
},
|
|
223
249
|
"ArticlePermissions": {
|
|
@@ -233,7 +259,10 @@
|
|
|
233
259
|
}
|
|
234
260
|
},
|
|
235
261
|
"widget": "object",
|
|
236
|
-
"order": [
|
|
262
|
+
"order": [
|
|
263
|
+
"membersOnly",
|
|
264
|
+
"excludeFromSyndication"
|
|
265
|
+
]
|
|
237
266
|
}
|
|
238
267
|
},
|
|
239
268
|
"ReportStaff": {
|
|
@@ -247,7 +276,10 @@
|
|
|
247
276
|
}
|
|
248
277
|
},
|
|
249
278
|
"widget": "repeater",
|
|
250
|
-
"order": [
|
|
279
|
+
"order": [
|
|
280
|
+
"role",
|
|
281
|
+
"people"
|
|
282
|
+
]
|
|
251
283
|
}
|
|
252
284
|
},
|
|
253
285
|
"Report": {
|
|
@@ -337,7 +369,11 @@
|
|
|
337
369
|
}
|
|
338
370
|
},
|
|
339
371
|
"widget": "object",
|
|
340
|
-
"order": [
|
|
372
|
+
"order": [
|
|
373
|
+
"cover",
|
|
374
|
+
"price",
|
|
375
|
+
"memberfulProductId"
|
|
376
|
+
]
|
|
341
377
|
}
|
|
342
378
|
},
|
|
343
379
|
"ReportIntroduction": {
|
|
@@ -351,7 +387,10 @@
|
|
|
351
387
|
}
|
|
352
388
|
},
|
|
353
389
|
"widget": "object",
|
|
354
|
-
"order": [
|
|
390
|
+
"order": [
|
|
391
|
+
"introduction",
|
|
392
|
+
"authors"
|
|
393
|
+
]
|
|
355
394
|
}
|
|
356
395
|
},
|
|
357
396
|
"Partner": {
|
|
@@ -381,7 +420,15 @@
|
|
|
381
420
|
"widget": "singleLineText"
|
|
382
421
|
}
|
|
383
422
|
},
|
|
384
|
-
"order": [
|
|
423
|
+
"order": [
|
|
424
|
+
"name",
|
|
425
|
+
"logo",
|
|
426
|
+
"largeLogo",
|
|
427
|
+
"url",
|
|
428
|
+
"consortiumPartner",
|
|
429
|
+
"facebook",
|
|
430
|
+
"twitter"
|
|
431
|
+
]
|
|
385
432
|
}
|
|
386
433
|
},
|
|
387
434
|
"Homepage": {
|
|
@@ -403,7 +450,13 @@
|
|
|
403
450
|
"widget": "wysiwygSingleLineText"
|
|
404
451
|
}
|
|
405
452
|
},
|
|
406
|
-
"order": [
|
|
453
|
+
"order": [
|
|
454
|
+
"announcement",
|
|
455
|
+
"newsletter",
|
|
456
|
+
"articles",
|
|
457
|
+
"themes",
|
|
458
|
+
"reports"
|
|
459
|
+
]
|
|
407
460
|
}
|
|
408
461
|
},
|
|
409
462
|
"ScienceConsortiumTestimonials": {
|
|
@@ -420,7 +473,11 @@
|
|
|
420
473
|
}
|
|
421
474
|
},
|
|
422
475
|
"widget": "repeater",
|
|
423
|
-
"order": [
|
|
476
|
+
"order": [
|
|
477
|
+
"person",
|
|
478
|
+
"quote",
|
|
479
|
+
"article"
|
|
480
|
+
]
|
|
424
481
|
}
|
|
425
482
|
},
|
|
426
483
|
"ScienceConsortium": {
|
|
@@ -446,7 +503,14 @@
|
|
|
446
503
|
"widget": "image"
|
|
447
504
|
}
|
|
448
505
|
},
|
|
449
|
-
"order": [
|
|
506
|
+
"order": [
|
|
507
|
+
"tagline",
|
|
508
|
+
"description",
|
|
509
|
+
"benefits",
|
|
510
|
+
"signup",
|
|
511
|
+
"backgroundImage",
|
|
512
|
+
"testimonials"
|
|
513
|
+
]
|
|
450
514
|
}
|
|
451
515
|
},
|
|
452
516
|
"ScienceConsortiumSignup": {
|
|
@@ -460,7 +524,10 @@
|
|
|
460
524
|
}
|
|
461
525
|
},
|
|
462
526
|
"widget": "object",
|
|
463
|
-
"order": [
|
|
527
|
+
"order": [
|
|
528
|
+
"heading",
|
|
529
|
+
"subheading"
|
|
530
|
+
]
|
|
464
531
|
}
|
|
465
532
|
},
|
|
466
533
|
"DeckRules": {
|
|
@@ -480,7 +547,12 @@
|
|
|
480
547
|
}
|
|
481
548
|
},
|
|
482
549
|
"widget": "object",
|
|
483
|
-
"order": [
|
|
550
|
+
"order": [
|
|
551
|
+
"allArticles",
|
|
552
|
+
"tags",
|
|
553
|
+
"themes",
|
|
554
|
+
"limit"
|
|
555
|
+
]
|
|
484
556
|
}
|
|
485
557
|
},
|
|
486
558
|
"Deck": {
|
|
@@ -519,7 +591,17 @@
|
|
|
519
591
|
"widget": "singleLineText"
|
|
520
592
|
}
|
|
521
593
|
},
|
|
522
|
-
"order": [
|
|
594
|
+
"order": [
|
|
595
|
+
"internalName",
|
|
596
|
+
"name",
|
|
597
|
+
"description",
|
|
598
|
+
"url",
|
|
599
|
+
"rules",
|
|
600
|
+
"sort",
|
|
601
|
+
"cards",
|
|
602
|
+
"excludeCards",
|
|
603
|
+
"layout"
|
|
604
|
+
]
|
|
523
605
|
}
|
|
524
606
|
},
|
|
525
607
|
"DeckSort": {
|
|
@@ -536,7 +618,11 @@
|
|
|
536
618
|
}
|
|
537
619
|
},
|
|
538
620
|
"widget": "object",
|
|
539
|
-
"order": [
|
|
621
|
+
"order": [
|
|
622
|
+
"enable",
|
|
623
|
+
"field",
|
|
624
|
+
"reverse"
|
|
625
|
+
]
|
|
540
626
|
}
|
|
541
627
|
},
|
|
542
628
|
"AnswersSections": {
|
|
@@ -567,7 +653,15 @@
|
|
|
567
653
|
}
|
|
568
654
|
},
|
|
569
655
|
"widget": "repeater",
|
|
570
|
-
"order": [
|
|
656
|
+
"order": [
|
|
657
|
+
"question",
|
|
658
|
+
"lastUpdated",
|
|
659
|
+
"slug",
|
|
660
|
+
"answer",
|
|
661
|
+
"tldr",
|
|
662
|
+
"authors",
|
|
663
|
+
"references"
|
|
664
|
+
]
|
|
571
665
|
}
|
|
572
666
|
},
|
|
573
667
|
"Answers": {
|
|
@@ -595,7 +689,14 @@
|
|
|
595
689
|
"widget": "shapeArray"
|
|
596
690
|
}
|
|
597
691
|
},
|
|
598
|
-
"order": [
|
|
692
|
+
"order": [
|
|
693
|
+
"slug",
|
|
694
|
+
"title",
|
|
695
|
+
"description",
|
|
696
|
+
"image",
|
|
697
|
+
"formUrl",
|
|
698
|
+
"sections"
|
|
699
|
+
]
|
|
599
700
|
}
|
|
600
701
|
},
|
|
601
702
|
"AnswersSectionsReferences": {
|
|
@@ -611,7 +712,10 @@
|
|
|
611
712
|
}
|
|
612
713
|
},
|
|
613
714
|
"widget": "repeater",
|
|
614
|
-
"order": [
|
|
715
|
+
"order": [
|
|
716
|
+
"url",
|
|
717
|
+
"citation"
|
|
718
|
+
]
|
|
615
719
|
}
|
|
616
720
|
},
|
|
617
721
|
"NoteImages": {
|
|
@@ -622,7 +726,9 @@
|
|
|
622
726
|
}
|
|
623
727
|
},
|
|
624
728
|
"widget": "repeater",
|
|
625
|
-
"order": [
|
|
729
|
+
"order": [
|
|
730
|
+
"image"
|
|
731
|
+
]
|
|
626
732
|
}
|
|
627
733
|
},
|
|
628
734
|
"Note": {
|
|
@@ -654,7 +760,16 @@
|
|
|
654
760
|
"widget": "relationship"
|
|
655
761
|
}
|
|
656
762
|
},
|
|
657
|
-
"order": [
|
|
763
|
+
"order": [
|
|
764
|
+
"slug",
|
|
765
|
+
"title",
|
|
766
|
+
"summary",
|
|
767
|
+
"link",
|
|
768
|
+
"images",
|
|
769
|
+
"body",
|
|
770
|
+
"authors",
|
|
771
|
+
"tags"
|
|
772
|
+
]
|
|
658
773
|
}
|
|
659
774
|
},
|
|
660
775
|
"Supermassive": {
|
|
@@ -673,7 +788,12 @@
|
|
|
673
788
|
"widget": "wysiwygText"
|
|
674
789
|
}
|
|
675
790
|
},
|
|
676
|
-
"order": [
|
|
791
|
+
"order": [
|
|
792
|
+
"tagline",
|
|
793
|
+
"backgroundImage",
|
|
794
|
+
"description",
|
|
795
|
+
"confirmationMessage"
|
|
796
|
+
]
|
|
677
797
|
}
|
|
678
798
|
},
|
|
679
799
|
"Podcast": {
|
|
@@ -692,7 +812,12 @@
|
|
|
692
812
|
"widget": "singleLineText"
|
|
693
813
|
}
|
|
694
814
|
},
|
|
695
|
-
"order": [
|
|
815
|
+
"order": [
|
|
816
|
+
"title",
|
|
817
|
+
"description",
|
|
818
|
+
"artwork",
|
|
819
|
+
"explicit"
|
|
820
|
+
]
|
|
696
821
|
}
|
|
697
822
|
},
|
|
698
823
|
"InstitutionSocial": {
|
|
@@ -709,7 +834,11 @@
|
|
|
709
834
|
}
|
|
710
835
|
},
|
|
711
836
|
"widget": "object",
|
|
712
|
-
"order": [
|
|
837
|
+
"order": [
|
|
838
|
+
"twitter",
|
|
839
|
+
"instagram",
|
|
840
|
+
"facebook"
|
|
841
|
+
]
|
|
713
842
|
}
|
|
714
843
|
},
|
|
715
844
|
"Institution": {
|
|
@@ -722,7 +851,10 @@
|
|
|
722
851
|
"widget": "shapeObject"
|
|
723
852
|
}
|
|
724
853
|
},
|
|
725
|
-
"order": [
|
|
854
|
+
"order": [
|
|
855
|
+
"name",
|
|
856
|
+
"social"
|
|
857
|
+
]
|
|
726
858
|
}
|
|
727
859
|
},
|
|
728
860
|
"Episode": {
|
|
@@ -787,7 +919,11 @@
|
|
|
787
919
|
}
|
|
788
920
|
},
|
|
789
921
|
"widget": "object",
|
|
790
|
-
"order": [
|
|
922
|
+
"order": [
|
|
923
|
+
"title",
|
|
924
|
+
"description",
|
|
925
|
+
"image"
|
|
926
|
+
]
|
|
791
927
|
}
|
|
792
928
|
},
|
|
793
929
|
"Defaults": {
|
|
@@ -806,7 +942,12 @@
|
|
|
806
942
|
"widget": "relationship"
|
|
807
943
|
}
|
|
808
944
|
},
|
|
809
|
-
"order": [
|
|
945
|
+
"order": [
|
|
946
|
+
"metadata",
|
|
947
|
+
"newsletter",
|
|
948
|
+
"promotion",
|
|
949
|
+
"articleFooter"
|
|
950
|
+
]
|
|
810
951
|
}
|
|
811
952
|
},
|
|
812
953
|
"ReportSectionSubsections": {
|
|
@@ -833,7 +974,14 @@
|
|
|
833
974
|
}
|
|
834
975
|
},
|
|
835
976
|
"widget": "repeater",
|
|
836
|
-
"order": [
|
|
977
|
+
"order": [
|
|
978
|
+
"slug",
|
|
979
|
+
"question",
|
|
980
|
+
"answer",
|
|
981
|
+
"takeaway",
|
|
982
|
+
"authors",
|
|
983
|
+
"references"
|
|
984
|
+
]
|
|
837
985
|
}
|
|
838
986
|
},
|
|
839
987
|
"ReportSection": {
|
|
@@ -858,7 +1006,14 @@
|
|
|
858
1006
|
"widget": "singleLineText"
|
|
859
1007
|
}
|
|
860
1008
|
},
|
|
861
|
-
"order": [
|
|
1009
|
+
"order": [
|
|
1010
|
+
"report",
|
|
1011
|
+
"position",
|
|
1012
|
+
"title",
|
|
1013
|
+
"slug",
|
|
1014
|
+
"headerImage",
|
|
1015
|
+
"subsections"
|
|
1016
|
+
]
|
|
862
1017
|
}
|
|
863
1018
|
},
|
|
864
1019
|
"ReportSectionSubsectionsReferences": {
|
|
@@ -874,7 +1029,10 @@
|
|
|
874
1029
|
}
|
|
875
1030
|
},
|
|
876
1031
|
"widget": "repeater",
|
|
877
|
-
"order": [
|
|
1032
|
+
"order": [
|
|
1033
|
+
"url",
|
|
1034
|
+
"citation"
|
|
1035
|
+
]
|
|
878
1036
|
}
|
|
879
1037
|
},
|
|
880
1038
|
"TarotHero": {
|
|
@@ -894,7 +1052,12 @@
|
|
|
894
1052
|
}
|
|
895
1053
|
},
|
|
896
1054
|
"widget": "object",
|
|
897
|
-
"order": [
|
|
1055
|
+
"order": [
|
|
1056
|
+
"statusBadge",
|
|
1057
|
+
"heading",
|
|
1058
|
+
"copy",
|
|
1059
|
+
"background"
|
|
1060
|
+
]
|
|
898
1061
|
}
|
|
899
1062
|
},
|
|
900
1063
|
"Tarot": {
|
|
@@ -921,7 +1084,14 @@
|
|
|
921
1084
|
"widget": "shapeObject"
|
|
922
1085
|
}
|
|
923
1086
|
},
|
|
924
|
-
"order": [
|
|
1087
|
+
"order": [
|
|
1088
|
+
"title",
|
|
1089
|
+
"description",
|
|
1090
|
+
"sharingImage",
|
|
1091
|
+
"hero",
|
|
1092
|
+
"body",
|
|
1093
|
+
"downloads"
|
|
1094
|
+
]
|
|
925
1095
|
}
|
|
926
1096
|
},
|
|
927
1097
|
"TarotHeroBackground": {
|
|
@@ -935,7 +1105,10 @@
|
|
|
935
1105
|
}
|
|
936
1106
|
},
|
|
937
1107
|
"widget": "object",
|
|
938
|
-
"order": [
|
|
1108
|
+
"order": [
|
|
1109
|
+
"image",
|
|
1110
|
+
"color"
|
|
1111
|
+
]
|
|
939
1112
|
}
|
|
940
1113
|
},
|
|
941
1114
|
"TarotDownloads": {
|
|
@@ -952,7 +1125,11 @@
|
|
|
952
1125
|
}
|
|
953
1126
|
},
|
|
954
1127
|
"widget": "object",
|
|
955
|
-
"order": [
|
|
1128
|
+
"order": [
|
|
1129
|
+
"instructions",
|
|
1130
|
+
"guidebook",
|
|
1131
|
+
"teachingGuide"
|
|
1132
|
+
]
|
|
956
1133
|
}
|
|
957
1134
|
},
|
|
958
1135
|
"Format": {
|
|
@@ -962,7 +1139,9 @@
|
|
|
962
1139
|
"widget": "singleLineText"
|
|
963
1140
|
}
|
|
964
1141
|
},
|
|
965
|
-
"order": [
|
|
1142
|
+
"order": [
|
|
1143
|
+
"name"
|
|
1144
|
+
]
|
|
966
1145
|
}
|
|
967
1146
|
},
|
|
968
1147
|
"Page": {
|
|
@@ -983,7 +1162,12 @@
|
|
|
983
1162
|
"widget": "singleLineText"
|
|
984
1163
|
}
|
|
985
1164
|
},
|
|
986
|
-
"order": [
|
|
1165
|
+
"order": [
|
|
1166
|
+
"title",
|
|
1167
|
+
"slug",
|
|
1168
|
+
"description",
|
|
1169
|
+
"body"
|
|
1170
|
+
]
|
|
987
1171
|
}
|
|
988
1172
|
},
|
|
989
1173
|
"Product": {
|
|
@@ -1009,7 +1193,14 @@
|
|
|
1009
1193
|
"widget": "number"
|
|
1010
1194
|
}
|
|
1011
1195
|
},
|
|
1012
|
-
"order": [
|
|
1196
|
+
"order": [
|
|
1197
|
+
"name",
|
|
1198
|
+
"link",
|
|
1199
|
+
"description",
|
|
1200
|
+
"price",
|
|
1201
|
+
"image",
|
|
1202
|
+
"shopifyBuyButton"
|
|
1203
|
+
]
|
|
1013
1204
|
}
|
|
1014
1205
|
},
|
|
1015
1206
|
"NewsletterBackground": {
|
|
@@ -1023,7 +1214,10 @@
|
|
|
1023
1214
|
}
|
|
1024
1215
|
},
|
|
1025
1216
|
"widget": "object",
|
|
1026
|
-
"order": [
|
|
1217
|
+
"order": [
|
|
1218
|
+
"color",
|
|
1219
|
+
"image"
|
|
1220
|
+
]
|
|
1027
1221
|
}
|
|
1028
1222
|
},
|
|
1029
1223
|
"Newsletter": {
|
|
@@ -1107,7 +1301,10 @@
|
|
|
1107
1301
|
}
|
|
1108
1302
|
},
|
|
1109
1303
|
"widget": "repeater",
|
|
1110
|
-
"order": [
|
|
1304
|
+
"order": [
|
|
1305
|
+
"key",
|
|
1306
|
+
"value"
|
|
1307
|
+
]
|
|
1111
1308
|
}
|
|
1112
1309
|
},
|
|
1113
1310
|
"Asset": {
|
|
@@ -1189,7 +1386,12 @@
|
|
|
1189
1386
|
"widget": "relationship"
|
|
1190
1387
|
}
|
|
1191
1388
|
},
|
|
1192
|
-
"order": [
|
|
1389
|
+
"order": [
|
|
1390
|
+
"name",
|
|
1391
|
+
"description",
|
|
1392
|
+
"aliases",
|
|
1393
|
+
"relatedTags"
|
|
1394
|
+
]
|
|
1193
1395
|
}
|
|
1194
1396
|
},
|
|
1195
1397
|
"AdvertisingFooterBanner": {
|
|
@@ -1203,7 +1405,10 @@
|
|
|
1203
1405
|
}
|
|
1204
1406
|
},
|
|
1205
1407
|
"widget": "object",
|
|
1206
|
-
"order": [
|
|
1408
|
+
"order": [
|
|
1409
|
+
"image",
|
|
1410
|
+
"link"
|
|
1411
|
+
]
|
|
1207
1412
|
}
|
|
1208
1413
|
},
|
|
1209
1414
|
"Advertising": {
|
|
@@ -1219,7 +1424,11 @@
|
|
|
1219
1424
|
"widget": "shapeObject"
|
|
1220
1425
|
}
|
|
1221
1426
|
},
|
|
1222
|
-
"order": [
|
|
1427
|
+
"order": [
|
|
1428
|
+
"headerBanner",
|
|
1429
|
+
"articleSidebar",
|
|
1430
|
+
"footerBanner"
|
|
1431
|
+
]
|
|
1223
1432
|
}
|
|
1224
1433
|
},
|
|
1225
1434
|
"AdvertisingHeaderBanner": {
|
|
@@ -1233,7 +1442,10 @@
|
|
|
1233
1442
|
}
|
|
1234
1443
|
},
|
|
1235
1444
|
"widget": "object",
|
|
1236
|
-
"order": [
|
|
1445
|
+
"order": [
|
|
1446
|
+
"image",
|
|
1447
|
+
"link"
|
|
1448
|
+
]
|
|
1237
1449
|
}
|
|
1238
1450
|
},
|
|
1239
1451
|
"AdvertisingArticleSidebar": {
|
|
@@ -1247,7 +1459,10 @@
|
|
|
1247
1459
|
}
|
|
1248
1460
|
},
|
|
1249
1461
|
"widget": "object",
|
|
1250
|
-
"order": [
|
|
1462
|
+
"order": [
|
|
1463
|
+
"image",
|
|
1464
|
+
"link"
|
|
1465
|
+
]
|
|
1251
1466
|
}
|
|
1252
1467
|
},
|
|
1253
1468
|
"ConsortiumResource": {
|
|
@@ -1268,7 +1483,12 @@
|
|
|
1268
1483
|
"widget": "toggleSwitch"
|
|
1269
1484
|
}
|
|
1270
1485
|
},
|
|
1271
|
-
"order": [
|
|
1486
|
+
"order": [
|
|
1487
|
+
"name",
|
|
1488
|
+
"membersOnly",
|
|
1489
|
+
"externalLink",
|
|
1490
|
+
"body"
|
|
1491
|
+
]
|
|
1272
1492
|
}
|
|
1273
1493
|
},
|
|
1274
1494
|
"Field": {
|
|
@@ -1281,7 +1501,10 @@
|
|
|
1281
1501
|
"widget": "singleLineText"
|
|
1282
1502
|
}
|
|
1283
1503
|
},
|
|
1284
|
-
"order": [
|
|
1504
|
+
"order": [
|
|
1505
|
+
"name",
|
|
1506
|
+
"relatedFields"
|
|
1507
|
+
]
|
|
1285
1508
|
}
|
|
1286
1509
|
},
|
|
1287
1510
|
"VideoPeerComments": {
|
|
@@ -1298,7 +1521,11 @@
|
|
|
1298
1521
|
}
|
|
1299
1522
|
},
|
|
1300
1523
|
"widget": "repeater",
|
|
1301
|
-
"order": [
|
|
1524
|
+
"order": [
|
|
1525
|
+
"person",
|
|
1526
|
+
"comment",
|
|
1527
|
+
"responses"
|
|
1528
|
+
]
|
|
1302
1529
|
}
|
|
1303
1530
|
},
|
|
1304
1531
|
"Video": {
|
|
@@ -1370,7 +1597,10 @@
|
|
|
1370
1597
|
}
|
|
1371
1598
|
},
|
|
1372
1599
|
"widget": "repeater",
|
|
1373
|
-
"order": [
|
|
1600
|
+
"order": [
|
|
1601
|
+
"person",
|
|
1602
|
+
"response"
|
|
1603
|
+
]
|
|
1374
1604
|
}
|
|
1375
1605
|
},
|
|
1376
1606
|
"ThemeDesign": {
|
|
@@ -1395,7 +1625,13 @@
|
|
|
1395
1625
|
"widget": "color"
|
|
1396
1626
|
}
|
|
1397
1627
|
},
|
|
1398
|
-
"order": [
|
|
1628
|
+
"order": [
|
|
1629
|
+
"textColor",
|
|
1630
|
+
"backgroundColor",
|
|
1631
|
+
"text",
|
|
1632
|
+
"color",
|
|
1633
|
+
"billboardModulo"
|
|
1634
|
+
]
|
|
1399
1635
|
}
|
|
1400
1636
|
},
|
|
1401
1637
|
"Theme": {
|
|
@@ -1467,7 +1703,10 @@
|
|
|
1467
1703
|
}
|
|
1468
1704
|
},
|
|
1469
1705
|
"widget": "object",
|
|
1470
|
-
"order": [
|
|
1706
|
+
"order": [
|
|
1707
|
+
"color",
|
|
1708
|
+
"image"
|
|
1709
|
+
]
|
|
1471
1710
|
}
|
|
1472
1711
|
},
|
|
1473
1712
|
"ReportsLandingPage": {
|
|
@@ -1483,7 +1722,11 @@
|
|
|
1483
1722
|
"widget": "shapeObject"
|
|
1484
1723
|
}
|
|
1485
1724
|
},
|
|
1486
|
-
"order": [
|
|
1725
|
+
"order": [
|
|
1726
|
+
"slogan",
|
|
1727
|
+
"subscription",
|
|
1728
|
+
"background"
|
|
1729
|
+
]
|
|
1487
1730
|
}
|
|
1488
1731
|
},
|
|
1489
1732
|
"ReportsLandingPageSubscription": {
|
|
@@ -1497,7 +1740,10 @@
|
|
|
1497
1740
|
}
|
|
1498
1741
|
},
|
|
1499
1742
|
"widget": "object",
|
|
1500
|
-
"order": [
|
|
1743
|
+
"order": [
|
|
1744
|
+
"memberfulPlanId",
|
|
1745
|
+
"coupon"
|
|
1746
|
+
]
|
|
1501
1747
|
}
|
|
1502
1748
|
},
|
|
1503
1749
|
"Person": {
|
|
@@ -1586,7 +1832,11 @@
|
|
|
1586
1832
|
}
|
|
1587
1833
|
},
|
|
1588
1834
|
"widget": "repeater",
|
|
1589
|
-
"order": [
|
|
1835
|
+
"order": [
|
|
1836
|
+
"label",
|
|
1837
|
+
"description",
|
|
1838
|
+
"partners"
|
|
1839
|
+
]
|
|
1590
1840
|
}
|
|
1591
1841
|
},
|
|
1592
1842
|
"AboutPage": {
|
|
@@ -1602,7 +1852,11 @@
|
|
|
1602
1852
|
"widget": "shapeArray"
|
|
1603
1853
|
}
|
|
1604
1854
|
},
|
|
1605
|
-
"order": [
|
|
1855
|
+
"order": [
|
|
1856
|
+
"missionStatement",
|
|
1857
|
+
"staff",
|
|
1858
|
+
"partnerGroups"
|
|
1859
|
+
]
|
|
1606
1860
|
}
|
|
1607
1861
|
},
|
|
1608
1862
|
"AboutPageStaff": {
|
|
@@ -1619,7 +1873,11 @@
|
|
|
1619
1873
|
}
|
|
1620
1874
|
},
|
|
1621
1875
|
"widget": "repeater",
|
|
1622
|
-
"order": [
|
|
1876
|
+
"order": [
|
|
1877
|
+
"person",
|
|
1878
|
+
"role",
|
|
1879
|
+
"previously"
|
|
1880
|
+
]
|
|
1623
1881
|
}
|
|
1624
1882
|
},
|
|
1625
1883
|
"NavigationAbout": {
|
|
@@ -1636,7 +1894,11 @@
|
|
|
1636
1894
|
}
|
|
1637
1895
|
},
|
|
1638
1896
|
"widget": "object",
|
|
1639
|
-
"order": [
|
|
1897
|
+
"order": [
|
|
1898
|
+
"label",
|
|
1899
|
+
"link",
|
|
1900
|
+
"items"
|
|
1901
|
+
]
|
|
1640
1902
|
}
|
|
1641
1903
|
},
|
|
1642
1904
|
"Navigation": {
|
|
@@ -1655,7 +1917,12 @@
|
|
|
1655
1917
|
"widget": "shapeObject"
|
|
1656
1918
|
}
|
|
1657
1919
|
},
|
|
1658
|
-
"order": [
|
|
1920
|
+
"order": [
|
|
1921
|
+
"stories",
|
|
1922
|
+
"consortium",
|
|
1923
|
+
"store",
|
|
1924
|
+
"about"
|
|
1925
|
+
]
|
|
1659
1926
|
}
|
|
1660
1927
|
},
|
|
1661
1928
|
"NavigationAboutItems": {
|
|
@@ -1672,7 +1939,11 @@
|
|
|
1672
1939
|
}
|
|
1673
1940
|
},
|
|
1674
1941
|
"widget": "repeater",
|
|
1675
|
-
"order": [
|
|
1942
|
+
"order": [
|
|
1943
|
+
"page",
|
|
1944
|
+
"label",
|
|
1945
|
+
"link"
|
|
1946
|
+
]
|
|
1676
1947
|
}
|
|
1677
1948
|
},
|
|
1678
1949
|
"NavigationStories": {
|
|
@@ -1683,7 +1954,9 @@
|
|
|
1683
1954
|
}
|
|
1684
1955
|
},
|
|
1685
1956
|
"widget": "object",
|
|
1686
|
-
"order": [
|
|
1957
|
+
"order": [
|
|
1958
|
+
"themes"
|
|
1959
|
+
]
|
|
1687
1960
|
}
|
|
1688
1961
|
},
|
|
1689
1962
|
"NavigationStore": {
|
|
@@ -1700,7 +1973,11 @@
|
|
|
1700
1973
|
}
|
|
1701
1974
|
},
|
|
1702
1975
|
"widget": "object",
|
|
1703
|
-
"order": [
|
|
1976
|
+
"order": [
|
|
1977
|
+
"label",
|
|
1978
|
+
"link",
|
|
1979
|
+
"items"
|
|
1980
|
+
]
|
|
1704
1981
|
}
|
|
1705
1982
|
},
|
|
1706
1983
|
"NavigationStoreItems": {
|
|
@@ -1714,7 +1991,10 @@
|
|
|
1714
1991
|
}
|
|
1715
1992
|
},
|
|
1716
1993
|
"widget": "repeater",
|
|
1717
|
-
"order": [
|
|
1994
|
+
"order": [
|
|
1995
|
+
"label",
|
|
1996
|
+
"link"
|
|
1997
|
+
]
|
|
1718
1998
|
}
|
|
1719
1999
|
},
|
|
1720
2000
|
"NavigationConsortium": {
|
|
@@ -1731,7 +2011,11 @@
|
|
|
1731
2011
|
}
|
|
1732
2012
|
},
|
|
1733
2013
|
"widget": "object",
|
|
1734
|
-
"order": [
|
|
2014
|
+
"order": [
|
|
2015
|
+
"label",
|
|
2016
|
+
"link",
|
|
2017
|
+
"items"
|
|
2018
|
+
]
|
|
1735
2019
|
}
|
|
1736
2020
|
},
|
|
1737
2021
|
"NavigationConsortiumItems": {
|
|
@@ -1747,7 +2031,10 @@
|
|
|
1747
2031
|
}
|
|
1748
2032
|
},
|
|
1749
2033
|
"widget": "repeater",
|
|
1750
|
-
"order": [
|
|
2034
|
+
"order": [
|
|
2035
|
+
"label",
|
|
2036
|
+
"link"
|
|
2037
|
+
]
|
|
1751
2038
|
}
|
|
1752
2039
|
}
|
|
1753
2040
|
},
|
|
@@ -3313,7 +3600,9 @@
|
|
|
3313
3600
|
}
|
|
3314
3601
|
}
|
|
3315
3602
|
},
|
|
3316
|
-
"required": [
|
|
3603
|
+
"required": [
|
|
3604
|
+
"resources"
|
|
3605
|
+
]
|
|
3317
3606
|
}
|
|
3318
3607
|
},
|
|
3319
3608
|
"ResourceNavigationExternalResources": {
|
|
@@ -3336,7 +3625,10 @@
|
|
|
3336
3625
|
"@mapping": "shapedb:ResourceNavigationExternalResources.rk9NR7vcZ"
|
|
3337
3626
|
}
|
|
3338
3627
|
},
|
|
3339
|
-
"required": [
|
|
3628
|
+
"required": [
|
|
3629
|
+
"name",
|
|
3630
|
+
"url"
|
|
3631
|
+
]
|
|
3340
3632
|
}
|
|
3341
3633
|
},
|
|
3342
3634
|
"Article": {
|
|
@@ -3456,19 +3748,27 @@
|
|
|
3456
3748
|
"oneOf": [
|
|
3457
3749
|
{
|
|
3458
3750
|
"title": "Default",
|
|
3459
|
-
"enum": [
|
|
3751
|
+
"enum": [
|
|
3752
|
+
"default"
|
|
3753
|
+
]
|
|
3460
3754
|
},
|
|
3461
3755
|
{
|
|
3462
3756
|
"title": "Book Review",
|
|
3463
|
-
"enum": [
|
|
3757
|
+
"enum": [
|
|
3758
|
+
"bookReview"
|
|
3759
|
+
]
|
|
3464
3760
|
},
|
|
3465
3761
|
{
|
|
3466
3762
|
"title": "Op-ed",
|
|
3467
|
-
"enum": [
|
|
3763
|
+
"enum": [
|
|
3764
|
+
"opEd"
|
|
3765
|
+
]
|
|
3468
3766
|
},
|
|
3469
3767
|
{
|
|
3470
3768
|
"title": "Interview",
|
|
3471
|
-
"enum": [
|
|
3769
|
+
"enum": [
|
|
3770
|
+
"interview"
|
|
3771
|
+
]
|
|
3472
3772
|
}
|
|
3473
3773
|
],
|
|
3474
3774
|
"@mapping": "shapedb:Article.BydpuXXkN"
|
|
@@ -3666,15 +3966,21 @@
|
|
|
3666
3966
|
"oneOf": [
|
|
3667
3967
|
{
|
|
3668
3968
|
"title": "Co-production",
|
|
3669
|
-
"enum": [
|
|
3969
|
+
"enum": [
|
|
3970
|
+
"coProduction"
|
|
3971
|
+
]
|
|
3670
3972
|
},
|
|
3671
3973
|
{
|
|
3672
3974
|
"title": "Syndication",
|
|
3673
|
-
"enum": [
|
|
3975
|
+
"enum": [
|
|
3976
|
+
"syndication"
|
|
3977
|
+
]
|
|
3674
3978
|
},
|
|
3675
3979
|
{
|
|
3676
3980
|
"title": "Sponsored Content",
|
|
3677
|
-
"enum": [
|
|
3981
|
+
"enum": [
|
|
3982
|
+
"sponsoredContent"
|
|
3983
|
+
]
|
|
3678
3984
|
}
|
|
3679
3985
|
],
|
|
3680
3986
|
"@mapping": "shapedb:Article.BkhFpVgxN"
|
|
@@ -3714,7 +4020,10 @@
|
|
|
3714
4020
|
}
|
|
3715
4021
|
}
|
|
3716
4022
|
},
|
|
3717
|
-
"required": [
|
|
4023
|
+
"required": [
|
|
4024
|
+
"title",
|
|
4025
|
+
"slug"
|
|
4026
|
+
]
|
|
3718
4027
|
}
|
|
3719
4028
|
},
|
|
3720
4029
|
"ArticlePeerCommentsResponses": {
|
|
@@ -3750,7 +4059,9 @@
|
|
|
3750
4059
|
"@tag": "draftjs"
|
|
3751
4060
|
}
|
|
3752
4061
|
},
|
|
3753
|
-
"required": [
|
|
4062
|
+
"required": [
|
|
4063
|
+
"person"
|
|
4064
|
+
]
|
|
3754
4065
|
}
|
|
3755
4066
|
},
|
|
3756
4067
|
"ArticlePeerComments": {
|
|
@@ -3795,7 +4106,10 @@
|
|
|
3795
4106
|
"@tag": "draftjs"
|
|
3796
4107
|
}
|
|
3797
4108
|
},
|
|
3798
|
-
"required": [
|
|
4109
|
+
"required": [
|
|
4110
|
+
"person",
|
|
4111
|
+
"comment"
|
|
4112
|
+
]
|
|
3799
4113
|
}
|
|
3800
4114
|
},
|
|
3801
4115
|
"ArticleAppearance": {
|
|
@@ -3811,15 +4125,21 @@
|
|
|
3811
4125
|
"oneOf": [
|
|
3812
4126
|
{
|
|
3813
4127
|
"title": "Default",
|
|
3814
|
-
"enum": [
|
|
4128
|
+
"enum": [
|
|
4129
|
+
"default"
|
|
4130
|
+
]
|
|
3815
4131
|
},
|
|
3816
4132
|
{
|
|
3817
4133
|
"title": "Book Review",
|
|
3818
|
-
"enum": [
|
|
4134
|
+
"enum": [
|
|
4135
|
+
"bookReview"
|
|
4136
|
+
]
|
|
3819
4137
|
},
|
|
3820
4138
|
{
|
|
3821
4139
|
"title": "Video",
|
|
3822
|
-
"enum": [
|
|
4140
|
+
"enum": [
|
|
4141
|
+
"video"
|
|
4142
|
+
]
|
|
3823
4143
|
}
|
|
3824
4144
|
],
|
|
3825
4145
|
"minLength": 1,
|
|
@@ -4043,22 +4363,36 @@
|
|
|
4043
4363
|
"oneOf": [
|
|
4044
4364
|
{
|
|
4045
4365
|
"title": "Recruiting",
|
|
4046
|
-
"enum": [
|
|
4366
|
+
"enum": [
|
|
4367
|
+
"recruiting"
|
|
4368
|
+
]
|
|
4047
4369
|
},
|
|
4048
4370
|
{
|
|
4049
4371
|
"title": "In Progress",
|
|
4050
|
-
"enum": [
|
|
4372
|
+
"enum": [
|
|
4373
|
+
"inProgress"
|
|
4374
|
+
]
|
|
4051
4375
|
},
|
|
4052
4376
|
{
|
|
4053
4377
|
"title": "Published",
|
|
4054
|
-
"enum": [
|
|
4378
|
+
"enum": [
|
|
4379
|
+
"published"
|
|
4380
|
+
]
|
|
4055
4381
|
}
|
|
4056
4382
|
],
|
|
4057
4383
|
"minLength": 1,
|
|
4058
4384
|
"@mapping": "shapedb:Report.ry9kUggsz"
|
|
4059
4385
|
}
|
|
4060
4386
|
},
|
|
4061
|
-
"required": [
|
|
4387
|
+
"required": [
|
|
4388
|
+
"title",
|
|
4389
|
+
"slug",
|
|
4390
|
+
"reportNumber",
|
|
4391
|
+
"status",
|
|
4392
|
+
"coverImage",
|
|
4393
|
+
"primaryColor",
|
|
4394
|
+
"publicationDate"
|
|
4395
|
+
]
|
|
4062
4396
|
}
|
|
4063
4397
|
},
|
|
4064
4398
|
"ReportStaff": {
|
|
@@ -4265,7 +4599,11 @@
|
|
|
4265
4599
|
"@mapping": "shapedb:Partner.SkjpPR_1W"
|
|
4266
4600
|
}
|
|
4267
4601
|
},
|
|
4268
|
-
"required": [
|
|
4602
|
+
"required": [
|
|
4603
|
+
"name",
|
|
4604
|
+
"logo",
|
|
4605
|
+
"url"
|
|
4606
|
+
]
|
|
4269
4607
|
}
|
|
4270
4608
|
},
|
|
4271
4609
|
"Homepage": {
|
|
@@ -4493,7 +4831,10 @@
|
|
|
4493
4831
|
"@mapping": "shapedb:ScienceConsortiumTestimonials.B1LT3IrAe"
|
|
4494
4832
|
}
|
|
4495
4833
|
},
|
|
4496
|
-
"required": [
|
|
4834
|
+
"required": [
|
|
4835
|
+
"person",
|
|
4836
|
+
"quote"
|
|
4837
|
+
]
|
|
4497
4838
|
}
|
|
4498
4839
|
},
|
|
4499
4840
|
"ScienceConsortiumSignup": {
|
|
@@ -4534,15 +4875,21 @@
|
|
|
4534
4875
|
"oneOf": [
|
|
4535
4876
|
{
|
|
4536
4877
|
"title": "Horizontal",
|
|
4537
|
-
"enum": [
|
|
4878
|
+
"enum": [
|
|
4879
|
+
"horizontal"
|
|
4880
|
+
]
|
|
4538
4881
|
},
|
|
4539
4882
|
{
|
|
4540
4883
|
"title": "Vertical",
|
|
4541
|
-
"enum": [
|
|
4884
|
+
"enum": [
|
|
4885
|
+
"vertical"
|
|
4886
|
+
]
|
|
4542
4887
|
},
|
|
4543
4888
|
{
|
|
4544
4889
|
"title": "Newspaper",
|
|
4545
|
-
"enum": [
|
|
4890
|
+
"enum": [
|
|
4891
|
+
"newspaper"
|
|
4892
|
+
]
|
|
4546
4893
|
}
|
|
4547
4894
|
],
|
|
4548
4895
|
"minLength": 1,
|
|
@@ -4656,7 +5003,11 @@
|
|
|
4656
5003
|
"@mapping": "shapedb:Deck.BkasAo_d-"
|
|
4657
5004
|
}
|
|
4658
5005
|
},
|
|
4659
|
-
"required": [
|
|
5006
|
+
"required": [
|
|
5007
|
+
"internalName",
|
|
5008
|
+
"name",
|
|
5009
|
+
"layout"
|
|
5010
|
+
]
|
|
4660
5011
|
}
|
|
4661
5012
|
},
|
|
4662
5013
|
"DeckRules": {
|
|
@@ -4745,11 +5096,15 @@
|
|
|
4745
5096
|
"oneOf": [
|
|
4746
5097
|
{
|
|
4747
5098
|
"title": "Date",
|
|
4748
|
-
"enum": [
|
|
5099
|
+
"enum": [
|
|
5100
|
+
"date"
|
|
5101
|
+
]
|
|
4749
5102
|
},
|
|
4750
5103
|
{
|
|
4751
5104
|
"title": "Title",
|
|
4752
|
-
"enum": [
|
|
5105
|
+
"enum": [
|
|
5106
|
+
"title"
|
|
5107
|
+
]
|
|
4753
5108
|
}
|
|
4754
5109
|
],
|
|
4755
5110
|
"minLength": 1,
|
|
@@ -4835,7 +5190,9 @@
|
|
|
4835
5190
|
"@mapping": "shapedb:Answers.g4KALS03L"
|
|
4836
5191
|
}
|
|
4837
5192
|
},
|
|
4838
|
-
"required": [
|
|
5193
|
+
"required": [
|
|
5194
|
+
"slug"
|
|
5195
|
+
]
|
|
4839
5196
|
}
|
|
4840
5197
|
},
|
|
4841
5198
|
"AnswersSectionsReferences": {
|
|
@@ -4934,7 +5291,12 @@
|
|
|
4934
5291
|
}
|
|
4935
5292
|
}
|
|
4936
5293
|
},
|
|
4937
|
-
"required": [
|
|
5294
|
+
"required": [
|
|
5295
|
+
"question",
|
|
5296
|
+
"lastUpdated",
|
|
5297
|
+
"slug",
|
|
5298
|
+
"answer"
|
|
5299
|
+
]
|
|
4938
5300
|
}
|
|
4939
5301
|
},
|
|
4940
5302
|
"Note": {
|
|
@@ -5040,7 +5402,10 @@
|
|
|
5040
5402
|
}
|
|
5041
5403
|
}
|
|
5042
5404
|
},
|
|
5043
|
-
"required": [
|
|
5405
|
+
"required": [
|
|
5406
|
+
"slug",
|
|
5407
|
+
"title"
|
|
5408
|
+
]
|
|
5044
5409
|
}
|
|
5045
5410
|
},
|
|
5046
5411
|
"NoteImages": {
|
|
@@ -5172,7 +5537,9 @@
|
|
|
5172
5537
|
"@mapping": "shapedb:Podcast.HJniXYWkr"
|
|
5173
5538
|
}
|
|
5174
5539
|
},
|
|
5175
|
-
"required": [
|
|
5540
|
+
"required": [
|
|
5541
|
+
"title"
|
|
5542
|
+
]
|
|
5176
5543
|
}
|
|
5177
5544
|
},
|
|
5178
5545
|
"Institution": {
|
|
@@ -5197,7 +5564,9 @@
|
|
|
5197
5564
|
"$ref": "#/shapes/InstitutionSocial/schema"
|
|
5198
5565
|
}
|
|
5199
5566
|
},
|
|
5200
|
-
"required": [
|
|
5567
|
+
"required": [
|
|
5568
|
+
"name"
|
|
5569
|
+
]
|
|
5201
5570
|
}
|
|
5202
5571
|
},
|
|
5203
5572
|
"InstitutionSocial": {
|
|
@@ -5324,7 +5693,10 @@
|
|
|
5324
5693
|
"@mapping": "shapedb:Episode.rkSUCvHkS"
|
|
5325
5694
|
}
|
|
5326
5695
|
},
|
|
5327
|
-
"required": [
|
|
5696
|
+
"required": [
|
|
5697
|
+
"publicationDate",
|
|
5698
|
+
"title"
|
|
5699
|
+
]
|
|
5328
5700
|
}
|
|
5329
5701
|
},
|
|
5330
5702
|
"Defaults": {
|
|
@@ -5428,7 +5800,11 @@
|
|
|
5428
5800
|
}
|
|
5429
5801
|
}
|
|
5430
5802
|
},
|
|
5431
|
-
"required": [
|
|
5803
|
+
"required": [
|
|
5804
|
+
"newsletter",
|
|
5805
|
+
"promotion",
|
|
5806
|
+
"articleFooter"
|
|
5807
|
+
]
|
|
5432
5808
|
}
|
|
5433
5809
|
},
|
|
5434
5810
|
"DefaultsMetadata": {
|
|
@@ -5548,7 +5924,12 @@
|
|
|
5548
5924
|
"@mapping": "shapedb:ReportSection.rk5Hq5Q3M"
|
|
5549
5925
|
}
|
|
5550
5926
|
},
|
|
5551
|
-
"required": [
|
|
5927
|
+
"required": [
|
|
5928
|
+
"report",
|
|
5929
|
+
"position",
|
|
5930
|
+
"title",
|
|
5931
|
+
"slug"
|
|
5932
|
+
]
|
|
5552
5933
|
}
|
|
5553
5934
|
},
|
|
5554
5935
|
"ReportSectionSubsectionsReferences": {
|
|
@@ -5639,7 +6020,11 @@
|
|
|
5639
6020
|
}
|
|
5640
6021
|
}
|
|
5641
6022
|
},
|
|
5642
|
-
"required": [
|
|
6023
|
+
"required": [
|
|
6024
|
+
"slug",
|
|
6025
|
+
"question",
|
|
6026
|
+
"authors"
|
|
6027
|
+
]
|
|
5643
6028
|
}
|
|
5644
6029
|
},
|
|
5645
6030
|
"Tarot": {
|
|
@@ -5701,7 +6086,9 @@
|
|
|
5701
6086
|
"$ref": "#/shapes/TarotDownloads/schema"
|
|
5702
6087
|
}
|
|
5703
6088
|
},
|
|
5704
|
-
"required": [
|
|
6089
|
+
"required": [
|
|
6090
|
+
"title"
|
|
6091
|
+
]
|
|
5705
6092
|
}
|
|
5706
6093
|
},
|
|
5707
6094
|
"TarotHeroBackground": {
|
|
@@ -5834,7 +6221,9 @@
|
|
|
5834
6221
|
"@mapping": "shapedb:Format.SkXx2LgPN"
|
|
5835
6222
|
}
|
|
5836
6223
|
},
|
|
5837
|
-
"required": [
|
|
6224
|
+
"required": [
|
|
6225
|
+
"name"
|
|
6226
|
+
]
|
|
5838
6227
|
}
|
|
5839
6228
|
},
|
|
5840
6229
|
"Page": {
|
|
@@ -5875,7 +6264,11 @@
|
|
|
5875
6264
|
"@mapping": "shapedb:Page.H1dIwN-B-"
|
|
5876
6265
|
}
|
|
5877
6266
|
},
|
|
5878
|
-
"required": [
|
|
6267
|
+
"required": [
|
|
6268
|
+
"title",
|
|
6269
|
+
"slug",
|
|
6270
|
+
"body"
|
|
6271
|
+
]
|
|
5879
6272
|
}
|
|
5880
6273
|
},
|
|
5881
6274
|
"Product": {
|
|
@@ -5939,7 +6332,10 @@
|
|
|
5939
6332
|
"@mapping": "shapedb:Product.r1X2t5otN"
|
|
5940
6333
|
}
|
|
5941
6334
|
},
|
|
5942
|
-
"required": [
|
|
6335
|
+
"required": [
|
|
6336
|
+
"name",
|
|
6337
|
+
"link"
|
|
6338
|
+
]
|
|
5943
6339
|
}
|
|
5944
6340
|
},
|
|
5945
6341
|
"Newsletter": {
|
|
@@ -6063,7 +6459,11 @@
|
|
|
6063
6459
|
"@mapping": "shapedb:Newsletter.BJ7SLCVCb"
|
|
6064
6460
|
}
|
|
6065
6461
|
},
|
|
6066
|
-
"required": [
|
|
6462
|
+
"required": [
|
|
6463
|
+
"name",
|
|
6464
|
+
"slug",
|
|
6465
|
+
"dripFormId"
|
|
6466
|
+
]
|
|
6067
6467
|
}
|
|
6068
6468
|
},
|
|
6069
6469
|
"NewsletterBackground": {
|
|
@@ -6121,7 +6521,10 @@
|
|
|
6121
6521
|
"@mapping": "shapedb:NewsletterCustomMetadata.SJVdU0E0b"
|
|
6122
6522
|
}
|
|
6123
6523
|
},
|
|
6124
|
-
"required": [
|
|
6524
|
+
"required": [
|
|
6525
|
+
"key",
|
|
6526
|
+
"value"
|
|
6527
|
+
]
|
|
6125
6528
|
}
|
|
6126
6529
|
},
|
|
6127
6530
|
"Asset": {
|
|
@@ -6221,7 +6624,10 @@
|
|
|
6221
6624
|
}
|
|
6222
6625
|
}
|
|
6223
6626
|
},
|
|
6224
|
-
"required": [
|
|
6627
|
+
"required": [
|
|
6628
|
+
"filename",
|
|
6629
|
+
"path"
|
|
6630
|
+
]
|
|
6225
6631
|
}
|
|
6226
6632
|
},
|
|
6227
6633
|
"Tag": {
|
|
@@ -6279,7 +6685,9 @@
|
|
|
6279
6685
|
}
|
|
6280
6686
|
}
|
|
6281
6687
|
},
|
|
6282
|
-
"required": [
|
|
6688
|
+
"required": [
|
|
6689
|
+
"name"
|
|
6690
|
+
]
|
|
6283
6691
|
}
|
|
6284
6692
|
},
|
|
6285
6693
|
"Advertising": {
|
|
@@ -6452,7 +6860,9 @@
|
|
|
6452
6860
|
"@mapping": "shapedb:ConsortiumResource.rkNz_MGDM"
|
|
6453
6861
|
}
|
|
6454
6862
|
},
|
|
6455
|
-
"required": [
|
|
6863
|
+
"required": [
|
|
6864
|
+
"name"
|
|
6865
|
+
]
|
|
6456
6866
|
}
|
|
6457
6867
|
},
|
|
6458
6868
|
"Field": {
|
|
@@ -6498,7 +6908,9 @@
|
|
|
6498
6908
|
"@mapping": "shapedb:Field.Bk9In-eTx"
|
|
6499
6909
|
}
|
|
6500
6910
|
},
|
|
6501
|
-
"required": [
|
|
6911
|
+
"required": [
|
|
6912
|
+
"name"
|
|
6913
|
+
]
|
|
6502
6914
|
}
|
|
6503
6915
|
},
|
|
6504
6916
|
"Video": {
|
|
@@ -6658,7 +7070,10 @@
|
|
|
6658
7070
|
}
|
|
6659
7071
|
}
|
|
6660
7072
|
},
|
|
6661
|
-
"required": [
|
|
7073
|
+
"required": [
|
|
7074
|
+
"title",
|
|
7075
|
+
"slug"
|
|
7076
|
+
]
|
|
6662
7077
|
}
|
|
6663
7078
|
},
|
|
6664
7079
|
"VideoPeerCommentsResponses": {
|
|
@@ -6694,7 +7109,10 @@
|
|
|
6694
7109
|
"@tag": "draftjs"
|
|
6695
7110
|
}
|
|
6696
7111
|
},
|
|
6697
|
-
"required": [
|
|
7112
|
+
"required": [
|
|
7113
|
+
"person",
|
|
7114
|
+
"response"
|
|
7115
|
+
]
|
|
6698
7116
|
}
|
|
6699
7117
|
},
|
|
6700
7118
|
"VideoPeerComments": {
|
|
@@ -6738,7 +7156,10 @@
|
|
|
6738
7156
|
"@tag": "draftjs"
|
|
6739
7157
|
}
|
|
6740
7158
|
},
|
|
6741
|
-
"required": [
|
|
7159
|
+
"required": [
|
|
7160
|
+
"person",
|
|
7161
|
+
"comment"
|
|
7162
|
+
]
|
|
6742
7163
|
}
|
|
6743
7164
|
},
|
|
6744
7165
|
"Theme": {
|
|
@@ -6879,11 +7300,15 @@
|
|
|
6879
7300
|
"oneOf": [
|
|
6880
7301
|
{
|
|
6881
7302
|
"title": "Sponsored Content",
|
|
6882
|
-
"enum": [
|
|
7303
|
+
"enum": [
|
|
7304
|
+
"sponsoredContent"
|
|
7305
|
+
]
|
|
6883
7306
|
},
|
|
6884
7307
|
{
|
|
6885
7308
|
"title": "Co-production",
|
|
6886
|
-
"enum": [
|
|
7309
|
+
"enum": [
|
|
7310
|
+
"coProduction"
|
|
7311
|
+
]
|
|
6887
7312
|
}
|
|
6888
7313
|
],
|
|
6889
7314
|
"@mapping": "shapedb:Theme.B1wzfcHvV"
|
|
@@ -6915,7 +7340,10 @@
|
|
|
6915
7340
|
}
|
|
6916
7341
|
}
|
|
6917
7342
|
},
|
|
6918
|
-
"required": [
|
|
7343
|
+
"required": [
|
|
7344
|
+
"name",
|
|
7345
|
+
"slug"
|
|
7346
|
+
]
|
|
6919
7347
|
}
|
|
6920
7348
|
},
|
|
6921
7349
|
"ThemeDesign": {
|
|
@@ -6943,11 +7371,15 @@
|
|
|
6943
7371
|
"oneOf": [
|
|
6944
7372
|
{
|
|
6945
7373
|
"title": "Black",
|
|
6946
|
-
"enum": [
|
|
7374
|
+
"enum": [
|
|
7375
|
+
"#191919"
|
|
7376
|
+
]
|
|
6947
7377
|
},
|
|
6948
7378
|
{
|
|
6949
7379
|
"title": "White",
|
|
6950
|
-
"enum": [
|
|
7380
|
+
"enum": [
|
|
7381
|
+
"#FAFAFA"
|
|
7382
|
+
]
|
|
6951
7383
|
}
|
|
6952
7384
|
],
|
|
6953
7385
|
"@mapping": "shapedb:ThemeDesign.ryIOZWPyE"
|
|
@@ -6958,23 +7390,33 @@
|
|
|
6958
7390
|
"oneOf": [
|
|
6959
7391
|
{
|
|
6960
7392
|
"title": "Pink",
|
|
6961
|
-
"enum": [
|
|
7393
|
+
"enum": [
|
|
7394
|
+
"#ec7590"
|
|
7395
|
+
]
|
|
6962
7396
|
},
|
|
6963
7397
|
{
|
|
6964
7398
|
"title": "Orange",
|
|
6965
|
-
"enum": [
|
|
7399
|
+
"enum": [
|
|
7400
|
+
"#f2a06c"
|
|
7401
|
+
]
|
|
6966
7402
|
},
|
|
6967
7403
|
{
|
|
6968
7404
|
"title": "Green",
|
|
6969
|
-
"enum": [
|
|
7405
|
+
"enum": [
|
|
7406
|
+
"#77b9b9"
|
|
7407
|
+
]
|
|
6970
7408
|
},
|
|
6971
7409
|
{
|
|
6972
7410
|
"title": "Blue",
|
|
6973
|
-
"enum": [
|
|
7411
|
+
"enum": [
|
|
7412
|
+
"#5480e0"
|
|
7413
|
+
]
|
|
6974
7414
|
},
|
|
6975
7415
|
{
|
|
6976
7416
|
"title": "Purple",
|
|
6977
|
-
"enum": [
|
|
7417
|
+
"enum": [
|
|
7418
|
+
"#7e50bd"
|
|
7419
|
+
]
|
|
6978
7420
|
}
|
|
6979
7421
|
],
|
|
6980
7422
|
"@mapping": "shapedb:ThemeDesign.SyNrxbDyN"
|
|
@@ -7015,7 +7457,9 @@
|
|
|
7015
7457
|
"$ref": "#/shapes/ReportsLandingPageSubscription/schema"
|
|
7016
7458
|
}
|
|
7017
7459
|
},
|
|
7018
|
-
"required": [
|
|
7460
|
+
"required": [
|
|
7461
|
+
"slogan"
|
|
7462
|
+
]
|
|
7019
7463
|
}
|
|
7020
7464
|
},
|
|
7021
7465
|
"ReportsLandingPageBackground": {
|
|
@@ -7225,7 +7669,10 @@
|
|
|
7225
7669
|
"@mapping": "shapedb:Person.HyyrQZNjM"
|
|
7226
7670
|
}
|
|
7227
7671
|
},
|
|
7228
|
-
"required": [
|
|
7672
|
+
"required": [
|
|
7673
|
+
"fullName",
|
|
7674
|
+
"firstName"
|
|
7675
|
+
]
|
|
7229
7676
|
}
|
|
7230
7677
|
},
|
|
7231
7678
|
"AboutPage": {
|
|
@@ -7309,7 +7756,10 @@
|
|
|
7309
7756
|
"@mapping": "shapedb:AboutPagePartnerGroups.SylMB49sG"
|
|
7310
7757
|
}
|
|
7311
7758
|
},
|
|
7312
|
-
"required": [
|
|
7759
|
+
"required": [
|
|
7760
|
+
"label",
|
|
7761
|
+
"partners"
|
|
7762
|
+
]
|
|
7313
7763
|
}
|
|
7314
7764
|
},
|
|
7315
7765
|
"AboutPageStaff": {
|
|
@@ -7351,7 +7801,10 @@
|
|
|
7351
7801
|
"@mapping": "shapedb:AboutPageStaff.ryTj4Eqsz"
|
|
7352
7802
|
}
|
|
7353
7803
|
},
|
|
7354
|
-
"required": [
|
|
7804
|
+
"required": [
|
|
7805
|
+
"person",
|
|
7806
|
+
"role"
|
|
7807
|
+
]
|
|
7355
7808
|
}
|
|
7356
7809
|
},
|
|
7357
7810
|
"Navigation": {
|
|
@@ -7602,4 +8055,4 @@
|
|
|
7602
8055
|
},
|
|
7603
8056
|
"schemaVersion": "3.51.0",
|
|
7604
8057
|
"services": {}
|
|
7605
|
-
}
|
|
8058
|
+
}
|