@takeshape/schema 7.194.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/README.md +5 -0
- package/es/api-version.js +21 -0
- package/es/auth-schemas.js +0 -0
- package/es/builtin-schema.js +590 -0
- package/es/content-schema-transform.js +192 -0
- package/es/entitlements.js +0 -0
- package/es/enum.js +11 -0
- package/es/get-is-leaf.js +58 -0
- package/es/index.js +25 -0
- package/es/migration.js +413 -0
- package/es/mocks.js +47 -0
- package/es/patterns.js +0 -0
- package/es/project-schema/index.js +10 -0
- package/es/project-schema/v1.0.0.js +0 -0
- package/es/project-schema/v3.0.0.js +0 -0
- package/es/project-schema/v3.1.0.js +0 -0
- package/es/project-schema/v3.2.0.js +0 -0
- package/es/project-schema/v3.3.0.js +0 -0
- package/es/project-schema/v3.4.0.js +0 -0
- package/es/project-schema/v3.5.0.js +0 -0
- package/es/project-schema/v3.5.1.js +0 -0
- package/es/project-schema/v3.6.0.js +0 -0
- package/es/refs.js +301 -0
- package/es/resolvers.js +2 -0
- package/es/scalars.js +4 -0
- package/es/schema-util.js +1197 -0
- package/es/schemas/auth-schemas.json +313 -0
- package/es/schemas/project-schema/meta-schema-v1.0.0.json +209 -0
- package/es/schemas/project-schema/meta-schema-v3.0.0.json +609 -0
- package/es/schemas/project-schema/meta-schema-v3.1.0.json +609 -0
- package/es/schemas/project-schema/meta-schema-v3.2.0.json +613 -0
- package/es/schemas/project-schema/meta-schema-v3.3.0.json +613 -0
- package/es/schemas/project-schema/meta-schema-v3.4.0.json +613 -0
- package/es/schemas/project-schema/meta-schema-v3.5.0.json +627 -0
- package/es/schemas/project-schema/meta-schema-v3.5.1.json +630 -0
- package/es/schemas/project-schema/meta-schema-v3.6.0.json +633 -0
- package/es/schemas/project-schema/v1.0.0.json +321 -0
- package/es/schemas/project-schema/v3.0.0.json +411 -0
- package/es/schemas/project-schema/v3.1.0.json +569 -0
- package/es/schemas/project-schema/v3.2.0.json +577 -0
- package/es/schemas/project-schema/v3.3.0.json +578 -0
- package/es/schemas/project-schema/v3.4.0.json +568 -0
- package/es/schemas/project-schema/v3.5.0.json +568 -0
- package/es/schemas/project-schema/v3.5.1.json +568 -0
- package/es/schemas/project-schema/v3.6.0.json +584 -0
- package/es/schemas/project-schema.json +16 -0
- package/es/schemas/user-schema.json +58 -0
- package/es/services.js +379 -0
- package/es/taxonomies.js +55 -0
- package/es/template-shapes.js +79 -0
- package/es/types.js +202 -0
- package/es/unions.js +137 -0
- package/es/user-schema.js +0 -0
- package/es/util/detect-cycles.js +54 -0
- package/es/util/index.js +1 -0
- package/es/validate.js +764 -0
- package/es/versions.js +4 -0
- package/es/workflows.js +69 -0
- package/examples/.pnpm-debug.log +20 -0
- package/examples/v1_0_0/beer-schema.json +125 -0
- package/examples/v1_0_0/blog-schema.json +192 -0
- package/examples/v1_0_0/brewery-schema.json +232 -0
- package/examples/v1_0_0/complex-project-schema.json +3197 -0
- package/examples/v1_0_0/error-schema.json +275 -0
- package/examples/v1_0_0/frank-and-fred-schema.json +21387 -0
- package/examples/v1_0_0/massive-schema.json +6930 -0
- package/examples/v1_0_0/post-schema.json +83 -0
- package/examples/v1_0_0/real-world-schema.json +797 -0
- package/examples/v1_0_0/recursive-repeater-schema.json +69 -0
- package/examples/v1_0_0/recursive-schema.json +79 -0
- package/examples/v1_0_0/schema-with-repeater-draftjs.json +292 -0
- package/examples/v1_0_0/shape-books.json +797 -0
- package/examples/v1_0_0/user-schema-no-required.json +84 -0
- package/examples/v1_0_0/user-schema-with-defaults.json +105 -0
- package/examples/v1_0_0/user-schema-with-obj-prop.json +92 -0
- package/examples/v1_0_0/user-schema.json +87 -0
- package/examples/v3_0_0/rick-and-morty-rest.json +62 -0
- package/examples/v3_0_0/shopify-lookbook.json +1172 -0
- package/examples/v3_0_0/shopify-store-with-widget.json +11323 -0
- package/examples/v3_2_0/blog-schema.json +378 -0
- package/examples/v3_2_0/brewery-schema.json +385 -0
- package/examples/v3_2_0/complex-project-schema.json +3748 -0
- package/examples/v3_2_0/frank-and-fred-schema.json +19217 -0
- package/examples/v3_2_0/massive-schema.json +6676 -0
- package/examples/v3_2_0/pet-oneof-array.json +323 -0
- package/examples/v3_2_0/post-schema.json +265 -0
- package/examples/v3_2_0/real-world-schema.json +970 -0
- package/examples/v3_2_0/recursive-repeater-schema.json +144 -0
- package/examples/v3_2_0/recursive-schema.json +151 -0
- package/examples/v3_2_0/rick-and-morty-rest.json +65 -0
- package/examples/v3_2_0/schema-with-repeater-draftjs.json +381 -0
- package/examples/v3_2_0/shape-books.json +1044 -0
- package/examples/v3_2_0/shopify-store-with-widget.json +11016 -0
- package/examples/v3_2_0/user-schema-no-required.json +174 -0
- package/examples/v3_2_0/user-schema-with-defaults.json +187 -0
- package/examples/v3_3_0/blog-schema.json +405 -0
- package/examples/v3_3_0/brewery-schema.json +406 -0
- package/examples/v3_3_0/complex-project-schema.json +4076 -0
- package/examples/v3_3_0/frank-and-fred-schema.json +20913 -0
- package/examples/v3_3_0/massive-schema.json +7309 -0
- package/examples/v3_3_0/pet-oneof-array.json +380 -0
- package/examples/v3_3_0/post-schema.json +248 -0
- package/examples/v3_3_0/real-world-schema.json +1046 -0
- package/examples/v3_3_0/recursive-repeater-schema.json +154 -0
- package/examples/v3_3_0/recursive-schema.json +161 -0
- package/examples/v3_3_0/rick-and-morty-rest.json +101 -0
- package/examples/v3_3_0/schema-with-repeater-draftjs.json +393 -0
- package/examples/v3_3_0/shape-books.json +1121 -0
- package/examples/v3_3_0/shopify-lookbook.json +1196 -0
- package/examples/v3_3_0/shopify-store-with-widget.json +11320 -0
- package/examples/v3_3_0/user-schema-no-required.json +185 -0
- package/examples/v3_3_0/user-schema-with-defaults.json +210 -0
- package/examples/v3_4_0/blog-schema.json +405 -0
- package/examples/v3_4_0/brewery-schema.json +406 -0
- package/examples/v3_4_0/complex-project-schema.json +4076 -0
- package/examples/v3_4_0/frank-and-fred-schema.json +20913 -0
- package/examples/v3_4_0/massive-schema.json +7309 -0
- package/examples/v3_4_0/pet-oneof-array.json +420 -0
- package/examples/v3_4_0/post-schema.json +248 -0
- package/examples/v3_4_0/real-world-schema.json +1046 -0
- package/examples/v3_4_0/recursive-repeater-schema.json +154 -0
- package/examples/v3_4_0/recursive-schema.json +161 -0
- package/examples/v3_4_0/rick-and-morty-rest.json +101 -0
- package/examples/v3_4_0/schema-with-repeater-draftjs.json +393 -0
- package/examples/v3_4_0/shape-books.json +1121 -0
- package/examples/v3_4_0/shopify-lookbook.json +1196 -0
- package/examples/v3_4_0/shopify-store-with-widget.json +11323 -0
- package/examples/v3_4_0/user-schema-no-required.json +185 -0
- package/examples/v3_4_0/user-schema-with-defaults.json +210 -0
- package/examples/v3_5_0/blog-schema.json +405 -0
- package/examples/v3_5_0/brewery-schema.json +406 -0
- package/examples/v3_5_0/complex-project-schema.json +4076 -0
- package/examples/v3_5_0/frank-and-fred-schema.json +20913 -0
- package/examples/v3_5_0/massive-schema.json +7309 -0
- package/examples/v3_5_0/pet-oneof-array.json +420 -0
- package/examples/v3_5_0/post-schema.json +248 -0
- package/examples/v3_5_0/real-world-schema.json +1046 -0
- package/examples/v3_5_0/recursive-repeater-schema.json +154 -0
- package/examples/v3_5_0/recursive-schema.json +161 -0
- package/examples/v3_5_0/rick-and-morty-rest.json +101 -0
- package/examples/v3_5_0/schema-with-repeater-draftjs.json +393 -0
- package/examples/v3_5_0/shape-books.json +1121 -0
- package/examples/v3_5_0/shopify-lookbook.json +1196 -0
- package/examples/v3_5_0/shopify-store-with-widget.json +12271 -0
- package/examples/v3_5_0/user-schema-no-required.json +185 -0
- package/examples/v3_5_0/user-schema-with-defaults.json +210 -0
- package/examples/v3_5_1/blog-schema.json +405 -0
- package/examples/v3_5_1/brewery-schema.json +406 -0
- package/examples/v3_5_1/complex-project-schema.json +4076 -0
- package/examples/v3_5_1/frank-and-fred-schema.json +20913 -0
- package/examples/v3_5_1/massive-schema.json +7309 -0
- package/examples/v3_5_1/pet-oneof-array.json +420 -0
- package/examples/v3_5_1/post-schema.json +248 -0
- package/examples/v3_5_1/real-world-schema.json +1046 -0
- package/examples/v3_5_1/recursive-repeater-schema.json +154 -0
- package/examples/v3_5_1/recursive-schema.json +161 -0
- package/examples/v3_5_1/rick-and-morty-rest.json +101 -0
- package/examples/v3_5_1/schema-with-repeater-draftjs.json +393 -0
- package/examples/v3_5_1/shape-books.json +1121 -0
- package/examples/v3_5_1/shopify-lookbook.json +1196 -0
- package/examples/v3_5_1/shopify-store-with-widget.json +12271 -0
- package/examples/v3_5_1/stripe-starter-resolved.json +21419 -0
- package/examples/v3_5_1/user-schema-no-required.json +185 -0
- package/examples/v3_5_1/user-schema-with-defaults.json +210 -0
- package/examples/v3_6_0/blog-schema.json +405 -0
- package/examples/v3_6_0/brewery-schema.json +406 -0
- package/examples/v3_6_0/complex-project-schema.json +4076 -0
- package/examples/v3_6_0/frank-and-fred-schema.json +20913 -0
- package/examples/v3_6_0/massive-schema.json +7309 -0
- package/examples/v3_6_0/pet-oneof-array.json +420 -0
- package/examples/v3_6_0/post-schema.json +248 -0
- package/examples/v3_6_0/real-world-schema.json +1046 -0
- package/examples/v3_6_0/recursive-repeater-schema.json +154 -0
- package/examples/v3_6_0/recursive-schema.json +161 -0
- package/examples/v3_6_0/rick-and-morty-rest.json +101 -0
- package/examples/v3_6_0/schema-with-repeater-draftjs.json +393 -0
- package/examples/v3_6_0/shape-books.json +1121 -0
- package/examples/v3_6_0/shopify-lookbook.json +1196 -0
- package/examples/v3_6_0/shopify-store-with-widget.json +12271 -0
- package/examples/v3_6_0/stripe-starter-resolved.json +21419 -0
- package/examples/v3_6_0/user-schema-no-required.json +185 -0
- package/examples/v3_6_0/user-schema-with-defaults.json +210 -0
- package/lib/api-version.d.ts +6 -0
- package/lib/api-version.d.ts.map +1 -0
- package/lib/api-version.js +36 -0
- package/lib/auth-schemas.d.ts +105 -0
- package/lib/auth-schemas.d.ts.map +1 -0
- package/lib/auth-schemas.js +1 -0
- package/lib/builtin-schema.d.ts +8 -0
- package/lib/builtin-schema.d.ts.map +1 -0
- package/lib/builtin-schema.js +606 -0
- package/lib/content-schema-transform.d.ts +41 -0
- package/lib/content-schema-transform.d.ts.map +1 -0
- package/lib/content-schema-transform.js +217 -0
- package/lib/entitlements.d.ts +1 -0
- package/lib/entitlements.d.ts.map +1 -0
- package/lib/entitlements.js +1 -0
- package/lib/enum.d.ts +3 -0
- package/lib/enum.d.ts.map +1 -0
- package/lib/enum.js +18 -0
- package/lib/get-is-leaf.d.ts +4 -0
- package/lib/get-is-leaf.d.ts.map +1 -0
- package/lib/get-is-leaf.js +68 -0
- package/lib/index.d.ts +27 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +359 -0
- package/lib/migration.d.ts +55 -0
- package/lib/migration.d.ts.map +1 -0
- package/lib/migration.js +463 -0
- package/lib/mocks.d.ts +13 -0
- package/lib/mocks.d.ts.map +1 -0
- package/lib/mocks.js +61 -0
- package/lib/patterns.d.ts +13 -0
- package/lib/patterns.d.ts.map +1 -0
- package/lib/patterns.js +1 -0
- package/lib/project-schema/index.d.ts +21 -0
- package/lib/project-schema/index.d.ts.map +1 -0
- package/lib/project-schema/index.js +122 -0
- package/lib/project-schema/v1.0.0.d.ts +293 -0
- package/lib/project-schema/v1.0.0.d.ts.map +1 -0
- package/lib/project-schema/v1.0.0.js +1 -0
- package/lib/project-schema/v3.0.0.d.ts +480 -0
- package/lib/project-schema/v3.0.0.d.ts.map +1 -0
- package/lib/project-schema/v3.0.0.js +1 -0
- package/lib/project-schema/v3.1.0.d.ts +623 -0
- package/lib/project-schema/v3.1.0.d.ts.map +1 -0
- package/lib/project-schema/v3.1.0.js +1 -0
- package/lib/project-schema/v3.2.0.d.ts +634 -0
- package/lib/project-schema/v3.2.0.d.ts.map +1 -0
- package/lib/project-schema/v3.2.0.js +1 -0
- package/lib/project-schema/v3.3.0.d.ts +634 -0
- package/lib/project-schema/v3.3.0.d.ts.map +1 -0
- package/lib/project-schema/v3.3.0.js +1 -0
- package/lib/project-schema/v3.4.0.d.ts +626 -0
- package/lib/project-schema/v3.4.0.d.ts.map +1 -0
- package/lib/project-schema/v3.4.0.js +1 -0
- package/lib/project-schema/v3.5.0.d.ts +651 -0
- package/lib/project-schema/v3.5.0.d.ts.map +1 -0
- package/lib/project-schema/v3.5.0.js +1 -0
- package/lib/project-schema/v3.5.1.d.ts +651 -0
- package/lib/project-schema/v3.5.1.d.ts.map +1 -0
- package/lib/project-schema/v3.5.1.js +1 -0
- package/lib/project-schema/v3.6.0.d.ts +660 -0
- package/lib/project-schema/v3.6.0.d.ts.map +1 -0
- package/lib/project-schema/v3.6.0.js +1 -0
- package/lib/refs.d.ts +122 -0
- package/lib/refs.d.ts.map +1 -0
- package/lib/refs.js +359 -0
- package/lib/resolvers.d.ts +4 -0
- package/lib/resolvers.d.ts.map +1 -0
- package/lib/resolvers.js +10 -0
- package/lib/scalars.d.ts +3 -0
- package/lib/scalars.d.ts.map +1 -0
- package/lib/scalars.js +13 -0
- package/lib/schema-util.d.ts +201 -0
- package/lib/schema-util.d.ts.map +1 -0
- package/lib/schema-util.js +1353 -0
- package/lib/schemas/auth-schemas.json +313 -0
- package/lib/schemas/project-schema/meta-schema-v1.0.0.json +209 -0
- package/lib/schemas/project-schema/meta-schema-v3.0.0.json +609 -0
- package/lib/schemas/project-schema/meta-schema-v3.1.0.json +609 -0
- package/lib/schemas/project-schema/meta-schema-v3.2.0.json +613 -0
- package/lib/schemas/project-schema/meta-schema-v3.3.0.json +613 -0
- package/lib/schemas/project-schema/meta-schema-v3.4.0.json +613 -0
- package/lib/schemas/project-schema/meta-schema-v3.5.0.json +627 -0
- package/lib/schemas/project-schema/meta-schema-v3.5.1.json +630 -0
- package/lib/schemas/project-schema/meta-schema-v3.6.0.json +633 -0
- package/lib/schemas/project-schema/v1.0.0.json +321 -0
- package/lib/schemas/project-schema/v3.0.0.json +411 -0
- package/lib/schemas/project-schema/v3.1.0.json +569 -0
- package/lib/schemas/project-schema/v3.2.0.json +577 -0
- package/lib/schemas/project-schema/v3.3.0.json +578 -0
- package/lib/schemas/project-schema/v3.4.0.json +568 -0
- package/lib/schemas/project-schema/v3.5.0.json +568 -0
- package/lib/schemas/project-schema/v3.5.1.json +568 -0
- package/lib/schemas/project-schema/v3.6.0.json +584 -0
- package/lib/schemas/project-schema.json +16 -0
- package/lib/schemas/user-schema.json +58 -0
- package/lib/services.d.ts +71 -0
- package/lib/services.d.ts.map +1 -0
- package/lib/services.js +413 -0
- package/lib/taxonomies.d.ts +16 -0
- package/lib/taxonomies.d.ts.map +1 -0
- package/lib/taxonomies.js +69 -0
- package/lib/template-shapes.d.ts +32 -0
- package/lib/template-shapes.d.ts.map +1 -0
- package/lib/template-shapes.js +100 -0
- package/lib/types.d.ts +187 -0
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +289 -0
- package/lib/unions.d.ts +29 -0
- package/lib/unions.d.ts.map +1 -0
- package/lib/unions.js +167 -0
- package/lib/user-schema.d.ts +39 -0
- package/lib/user-schema.d.ts.map +1 -0
- package/lib/user-schema.js +1 -0
- package/lib/util/detect-cycles.d.ts +6 -0
- package/lib/util/detect-cycles.d.ts.map +1 -0
- package/lib/util/detect-cycles.js +61 -0
- package/lib/util/index.d.ts +2 -0
- package/lib/util/index.d.ts.map +1 -0
- package/lib/util/index.js +18 -0
- package/lib/validate.d.ts +49 -0
- package/lib/validate.d.ts.map +1 -0
- package/lib/validate.js +823 -0
- package/lib/versions.d.ts +5 -0
- package/lib/versions.d.ts.map +1 -0
- package/lib/versions.js +14 -0
- package/lib/workflows.d.ts +15 -0
- package/lib/workflows.d.ts.map +1 -0
- package/lib/workflows.js +92 -0
- package/package.json +65 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _v = require("./v3.6.0");
|
|
8
|
+
|
|
9
|
+
Object.keys(_v).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _v[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _v[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _v2 = require("./v3.5.1");
|
|
21
|
+
|
|
22
|
+
Object.keys(_v2).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _v2[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _v2[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _v3 = require("./v3.5.0");
|
|
34
|
+
|
|
35
|
+
Object.keys(_v3).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _v3[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _v3[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
var _v4 = require("./v3.4.0");
|
|
47
|
+
|
|
48
|
+
Object.keys(_v4).forEach(function (key) {
|
|
49
|
+
if (key === "default" || key === "__esModule") return;
|
|
50
|
+
if (key in exports && exports[key] === _v4[key]) return;
|
|
51
|
+
Object.defineProperty(exports, key, {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () {
|
|
54
|
+
return _v4[key];
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
var _v5 = require("./v3.3.0");
|
|
60
|
+
|
|
61
|
+
Object.keys(_v5).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (key in exports && exports[key] === _v5[key]) return;
|
|
64
|
+
Object.defineProperty(exports, key, {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function () {
|
|
67
|
+
return _v5[key];
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
var _v6 = require("./v3.2.0");
|
|
73
|
+
|
|
74
|
+
Object.keys(_v6).forEach(function (key) {
|
|
75
|
+
if (key === "default" || key === "__esModule") return;
|
|
76
|
+
if (key in exports && exports[key] === _v6[key]) return;
|
|
77
|
+
Object.defineProperty(exports, key, {
|
|
78
|
+
enumerable: true,
|
|
79
|
+
get: function () {
|
|
80
|
+
return _v6[key];
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
var _v7 = require("./v3.1.0");
|
|
86
|
+
|
|
87
|
+
Object.keys(_v7).forEach(function (key) {
|
|
88
|
+
if (key === "default" || key === "__esModule") return;
|
|
89
|
+
if (key in exports && exports[key] === _v7[key]) return;
|
|
90
|
+
Object.defineProperty(exports, key, {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function () {
|
|
93
|
+
return _v7[key];
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
var _v8 = require("./v3.0.0");
|
|
99
|
+
|
|
100
|
+
Object.keys(_v8).forEach(function (key) {
|
|
101
|
+
if (key === "default" || key === "__esModule") return;
|
|
102
|
+
if (key in exports && exports[key] === _v8[key]) return;
|
|
103
|
+
Object.defineProperty(exports, key, {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
get: function () {
|
|
106
|
+
return _v8[key];
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
var _v9 = require("./v1.0.0");
|
|
112
|
+
|
|
113
|
+
Object.keys(_v9).forEach(function (key) {
|
|
114
|
+
if (key === "default" || key === "__esModule") return;
|
|
115
|
+
if (key in exports && exports[key] === _v9[key]) return;
|
|
116
|
+
Object.defineProperty(exports, key, {
|
|
117
|
+
enumerable: true,
|
|
118
|
+
get: function () {
|
|
119
|
+
return _v9[key];
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
});
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
+
*/
|
|
6
|
+
export declare type StepsV1_0_0 = WorkflowStepV1_0_0[];
|
|
7
|
+
/**
|
|
8
|
+
* This interface was referenced by `EncryptedServiceMapV1_0_0`'s JSON-Schema definition
|
|
9
|
+
* via the `patternProperty` "[0-9A-Za-z_-]+".
|
|
10
|
+
*
|
|
11
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
12
|
+
* via the `definition` "encryptedServiceConfig".
|
|
13
|
+
*/
|
|
14
|
+
export declare type EncryptedServiceConfigV1_0_0 = EncryptedGenericServiceConfigV1_0_0 | EncryptedRESTServiceConfigV1_0_0 | EncryptedGraphQLServiceConfigV1_0_0;
|
|
15
|
+
export interface ProjectSchemaV1_0_0 {
|
|
16
|
+
$schema?: string;
|
|
17
|
+
version: number;
|
|
18
|
+
apiVersion: string;
|
|
19
|
+
schemaVersion?: '1';
|
|
20
|
+
projectId: string;
|
|
21
|
+
author?: string;
|
|
22
|
+
created?: number;
|
|
23
|
+
updated?: number;
|
|
24
|
+
deactivated?: number;
|
|
25
|
+
defaultLocale: string;
|
|
26
|
+
locales: string[];
|
|
27
|
+
contentTypes: ContentTypeMapV1_0_0;
|
|
28
|
+
workflows: WorkflowMapV1_0_0;
|
|
29
|
+
dataKey?: string;
|
|
30
|
+
services?: EncryptedServiceMapV1_0_0;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
34
|
+
* via the `definition` "contentTypeMap".
|
|
35
|
+
*/
|
|
36
|
+
export interface ContentTypeMapV1_0_0 {
|
|
37
|
+
[k: string]: ContentTypeV1_0_0;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* This interface was referenced by `ContentTypeMapV1_0_0`'s JSON-Schema definition
|
|
41
|
+
* via the `patternProperty` "[0-9A-Za-z_-]+".
|
|
42
|
+
*
|
|
43
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
44
|
+
* via the `definition` "contentType".
|
|
45
|
+
*/
|
|
46
|
+
export interface ContentTypeV1_0_0 {
|
|
47
|
+
name: string;
|
|
48
|
+
title?: string;
|
|
49
|
+
description?: string;
|
|
50
|
+
single?: boolean;
|
|
51
|
+
taxonomy?: boolean;
|
|
52
|
+
workflow?: string;
|
|
53
|
+
hidden?: boolean;
|
|
54
|
+
schema: {
|
|
55
|
+
type: 'object';
|
|
56
|
+
properties: {
|
|
57
|
+
[k: string]: ContentSchemaV1_0_0;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
61
|
+
* via the `definition` "stringArray".
|
|
62
|
+
*/
|
|
63
|
+
required?: string[];
|
|
64
|
+
};
|
|
65
|
+
forms: FormsConfigV1_0_0;
|
|
66
|
+
[k: string]: any;
|
|
67
|
+
}
|
|
68
|
+
export interface ContentSchemaV1_0_0 {
|
|
69
|
+
$id?: string;
|
|
70
|
+
$schema?: string;
|
|
71
|
+
$ref?: string;
|
|
72
|
+
$comment?: string;
|
|
73
|
+
title?: string;
|
|
74
|
+
description?: string;
|
|
75
|
+
default?: any;
|
|
76
|
+
readOnly?: boolean;
|
|
77
|
+
examples?: any[];
|
|
78
|
+
multipleOf?: number;
|
|
79
|
+
maximum?: number;
|
|
80
|
+
exclusiveMaximum?: number;
|
|
81
|
+
minimum?: number;
|
|
82
|
+
exclusiveMinimum?: number;
|
|
83
|
+
/**
|
|
84
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
85
|
+
* via the `definition` "nonNegativeInteger".
|
|
86
|
+
*/
|
|
87
|
+
maxLength?: number;
|
|
88
|
+
/**
|
|
89
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
90
|
+
* via the `definition` "nonNegativeIntegerDefault0".
|
|
91
|
+
*/
|
|
92
|
+
minLength?: number;
|
|
93
|
+
pattern?: string;
|
|
94
|
+
additionalItems?: ContentSchemaV1_0_0;
|
|
95
|
+
items?: ContentSchemaV1_0_0;
|
|
96
|
+
/**
|
|
97
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
98
|
+
* via the `definition` "nonNegativeInteger".
|
|
99
|
+
*/
|
|
100
|
+
maxItems?: number;
|
|
101
|
+
/**
|
|
102
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
103
|
+
* via the `definition` "nonNegativeIntegerDefault0".
|
|
104
|
+
*/
|
|
105
|
+
minItems?: number;
|
|
106
|
+
uniqueItems?: boolean;
|
|
107
|
+
contains?: ContentSchemaV1_0_0;
|
|
108
|
+
/**
|
|
109
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
110
|
+
* via the `definition` "nonNegativeInteger".
|
|
111
|
+
*/
|
|
112
|
+
maxProperties?: number;
|
|
113
|
+
/**
|
|
114
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
115
|
+
* via the `definition` "nonNegativeIntegerDefault0".
|
|
116
|
+
*/
|
|
117
|
+
minProperties?: number;
|
|
118
|
+
/**
|
|
119
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
120
|
+
* via the `definition` "stringArray".
|
|
121
|
+
*/
|
|
122
|
+
required?: string[];
|
|
123
|
+
additionalProperties?: ContentSchemaV1_0_0;
|
|
124
|
+
definitions?: {
|
|
125
|
+
[k: string]: ContentSchemaV1_0_0;
|
|
126
|
+
};
|
|
127
|
+
properties?: {
|
|
128
|
+
[k: string]: ContentSchemaV1_0_0;
|
|
129
|
+
};
|
|
130
|
+
patternProperties?: {
|
|
131
|
+
[k: string]: ContentSchemaV1_0_0;
|
|
132
|
+
};
|
|
133
|
+
dependencies?: {
|
|
134
|
+
[k: string]: ContentSchemaV1_0_0 | string[];
|
|
135
|
+
};
|
|
136
|
+
propertyNames?: ContentSchemaV1_0_0;
|
|
137
|
+
const?: any;
|
|
138
|
+
enum?: any[];
|
|
139
|
+
type?: ('array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string') | ('array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string')[];
|
|
140
|
+
format?: string;
|
|
141
|
+
contentMediaType?: string;
|
|
142
|
+
contentEncoding?: string;
|
|
143
|
+
if?: ContentSchemaV1_0_0;
|
|
144
|
+
then?: ContentSchemaV1_0_0;
|
|
145
|
+
else?: ContentSchemaV1_0_0;
|
|
146
|
+
/**
|
|
147
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
148
|
+
* via the `definition` "schemaArray".
|
|
149
|
+
*/
|
|
150
|
+
allOf?: ContentSchemaV1_0_0[];
|
|
151
|
+
/**
|
|
152
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
153
|
+
* via the `definition` "schemaArray".
|
|
154
|
+
*/
|
|
155
|
+
anyOf?: ContentSchemaV1_0_0[];
|
|
156
|
+
/**
|
|
157
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
158
|
+
* via the `definition` "schemaArray".
|
|
159
|
+
*/
|
|
160
|
+
oneOf?: ContentSchemaV1_0_0[];
|
|
161
|
+
not?: ContentSchemaV1_0_0;
|
|
162
|
+
relationship?: RelationshipV1_0_0;
|
|
163
|
+
mutable?: boolean;
|
|
164
|
+
syncLocaleStructure?: boolean;
|
|
165
|
+
sensitive?: boolean;
|
|
166
|
+
draftjs?: boolean;
|
|
167
|
+
indexed?: boolean;
|
|
168
|
+
l10n?: boolean;
|
|
169
|
+
key?: string;
|
|
170
|
+
'@workflow'?: string;
|
|
171
|
+
[k: string]: any;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* This interface was referenced by `ContentSchemaV1_0_0`'s JSON-Schema
|
|
175
|
+
* via the `definition` "relationship".
|
|
176
|
+
*/
|
|
177
|
+
export interface RelationshipV1_0_0 {
|
|
178
|
+
contentTypeIds: string[];
|
|
179
|
+
type?: string;
|
|
180
|
+
relatedName?: string;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
184
|
+
* via the `definition` "formsConfig".
|
|
185
|
+
*/
|
|
186
|
+
export interface FormsConfigV1_0_0 {
|
|
187
|
+
default: FormConfigV1_0_0;
|
|
188
|
+
[k: string]: FormConfigV1_0_0;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* This interface was referenced by `FormsConfigV1_0_0`'s JSON-Schema definition
|
|
192
|
+
* via the `patternProperty` "[0-9A-Za-z_-]+".
|
|
193
|
+
*
|
|
194
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
195
|
+
* via the `definition` "formConfig".
|
|
196
|
+
*/
|
|
197
|
+
export interface FormConfigV1_0_0 {
|
|
198
|
+
[k: string]: any;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
202
|
+
* via the `definition` "workflowMap".
|
|
203
|
+
*/
|
|
204
|
+
export interface WorkflowMapV1_0_0 {
|
|
205
|
+
[k: string]: WorkflowV1_0_0;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* This interface was referenced by `WorkflowMapV1_0_0`'s JSON-Schema definition
|
|
209
|
+
* via the `patternProperty` "[0-9A-Za-z_-]+".
|
|
210
|
+
*
|
|
211
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
212
|
+
* via the `definition` "workflow".
|
|
213
|
+
*/
|
|
214
|
+
export interface WorkflowV1_0_0 {
|
|
215
|
+
name: string;
|
|
216
|
+
title: string;
|
|
217
|
+
steps: StepsV1_0_0;
|
|
218
|
+
[k: string]: any;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
222
|
+
* via the `definition` "workflowStep".
|
|
223
|
+
*/
|
|
224
|
+
export interface WorkflowStepV1_0_0 {
|
|
225
|
+
name: string;
|
|
226
|
+
title: string;
|
|
227
|
+
description?: string;
|
|
228
|
+
color: string;
|
|
229
|
+
live: boolean;
|
|
230
|
+
key: string;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
234
|
+
* via the `definition` "encryptedServiceMap".
|
|
235
|
+
*/
|
|
236
|
+
export interface EncryptedServiceMapV1_0_0 {
|
|
237
|
+
[k: string]: EncryptedServiceConfigV1_0_0;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
241
|
+
* via the `definition` "encryptedGenericServiceConfig".
|
|
242
|
+
*/
|
|
243
|
+
export interface EncryptedGenericServiceConfigV1_0_0 {
|
|
244
|
+
auth?: string;
|
|
245
|
+
webhookId?: string;
|
|
246
|
+
params?: GenericServiceConfigParamsV1_0_0;
|
|
247
|
+
}
|
|
248
|
+
export interface GenericServiceConfigParamsV1_0_0 {
|
|
249
|
+
/**
|
|
250
|
+
* This interface was referenced by `GenericServiceConfigParamsV1_0_0`'s JSON-Schema definition
|
|
251
|
+
* via the `patternProperty` "[a-zA-Z][a-zA-Z0-9]*".
|
|
252
|
+
*/
|
|
253
|
+
[k: string]: string;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
257
|
+
* via the `definition` "encryptedRestServiceConfig".
|
|
258
|
+
*/
|
|
259
|
+
export interface EncryptedRESTServiceConfigV1_0_0 {
|
|
260
|
+
auth?: string;
|
|
261
|
+
webhookId?: string;
|
|
262
|
+
params: RESTServiceConfigParamsV1_0_0;
|
|
263
|
+
}
|
|
264
|
+
export interface RESTServiceConfigParamsV1_0_0 {
|
|
265
|
+
type: 'rest';
|
|
266
|
+
endpoint: string;
|
|
267
|
+
authType: string;
|
|
268
|
+
/**
|
|
269
|
+
* This interface was referenced by `RESTServiceConfigParamsV1_0_0`'s JSON-Schema definition
|
|
270
|
+
* via the `patternProperty` "[a-zA-Z][a-zA-Z0-9]*".
|
|
271
|
+
*/
|
|
272
|
+
[k: string]: string;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* This interface was referenced by `ProjectSchemaV1_0_0`'s JSON-Schema
|
|
276
|
+
* via the `definition` "encryptedGraphqlServiceConfig".
|
|
277
|
+
*/
|
|
278
|
+
export interface EncryptedGraphQLServiceConfigV1_0_0 {
|
|
279
|
+
auth?: string;
|
|
280
|
+
webhookId?: string;
|
|
281
|
+
params: GraphQLServiceConfigParamsV1_0_0;
|
|
282
|
+
}
|
|
283
|
+
export interface GraphQLServiceConfigParamsV1_0_0 {
|
|
284
|
+
type: 'graphql';
|
|
285
|
+
namespace: string;
|
|
286
|
+
endpoint: string;
|
|
287
|
+
/**
|
|
288
|
+
* This interface was referenced by `GraphQLServiceConfigParamsV1_0_0`'s JSON-Schema definition
|
|
289
|
+
* via the `patternProperty` "[a-zA-Z][a-zA-Z0-9]*".
|
|
290
|
+
*/
|
|
291
|
+
[k: string]: string;
|
|
292
|
+
}
|
|
293
|
+
//# sourceMappingURL=v1.0.0.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1.0.0.d.ts","sourceRoot":"","sources":["../../../src/project-schema/v1.0.0.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|