@takeshape/schema 9.46.0 → 9.47.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/migration/index.d.ts +1 -0
- package/dist/migration/index.d.ts.map +1 -1
- package/dist/migration/index.js +4 -1
- package/dist/migration/to/v3.34.0.d.ts +7 -0
- package/dist/migration/to/v3.34.0.d.ts.map +1 -0
- package/dist/migration/to/v3.34.0.js +161 -0
- package/dist/project-schema/index.d.ts +4 -1
- package/dist/project-schema/index.d.ts.map +1 -1
- package/dist/project-schema/index.js +20 -3
- package/dist/project-schema/latest.d.ts +1 -1
- package/dist/project-schema/migrate.d.ts.map +1 -1
- package/dist/project-schema/migrate.js +4 -0
- package/dist/project-schema/v3.34.0.d.ts +1446 -0
- package/dist/project-schema/v3.34.0.d.ts.map +1 -0
- package/dist/project-schema/v3.34.0.js +5 -0
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +6 -4
- package/dist/schemas/index.ts +4 -2
- package/dist/schemas/project-schema/latest.json +3 -3
- package/dist/schemas/project-schema/v3.34.0.json +3088 -0
- package/dist/schemas/project-schema.json +3 -0
- package/dist/types/types.d.ts +2 -2
- package/dist/types/types.d.ts.map +1 -1
- package/es/migration/index.js +3 -1
- package/es/migration/to/v3.34.0.js +140 -0
- package/es/project-schema/index.js +3 -1
- package/es/project-schema/migrate.js +5 -1
- package/es/project-schema/v3.34.0.js +1 -0
- package/es/schemas/index.js +4 -3
- package/es/schemas/index.ts +4 -2
- package/es/schemas/project-schema/latest.json +3 -3
- package/es/schemas/project-schema/v3.34.0.json +3088 -0
- package/es/schemas/project-schema.json +3 -0
- package/examples/latest/betzino.json +2012 -1756
- package/examples/latest/blog-schema.json +1 -1
- package/examples/latest/brewery-schema.json +31 -26
- package/examples/latest/complex-project-schema.json +645 -480
- package/examples/latest/complex-schema.json +866 -671
- package/examples/latest/fabric-ecommerce.json +7 -38
- package/examples/latest/frank-and-fred-schema.json +866 -671
- package/examples/latest/klirr-schema.json +1641 -1264
- package/examples/latest/massive-schema.json +897 -681
- package/examples/latest/mill-components-schema.json +1 -1
- package/examples/latest/one-earth.json +3012 -2462
- package/examples/latest/pet-oneof-array.json +1 -1
- package/examples/latest/post-schema.json +1 -1
- package/examples/latest/pruned-shopify-product-schema.json +1 -1
- package/examples/latest/real-world-schema.json +19 -14
- package/examples/latest/recursive-repeater-schema.json +1 -1
- package/examples/latest/recursive-schema.json +1 -1
- package/examples/latest/rick-and-morty-ast.json +39 -226
- package/examples/latest/rick-and-morty-graphql.json +35 -222
- package/examples/latest/rick-and-morty-rest.json +1 -1
- package/examples/latest/schema-with-repeater-draftjs.json +1 -1
- package/examples/latest/shape-books-v3_2_0.json +19 -14
- package/examples/latest/shape-books.json +19 -14
- package/examples/latest/shape-editor-schema-edited.json +2 -2
- package/examples/latest/shape-editor-schema-initial.json +2 -2
- package/examples/latest/shopify-lookbook.json +9 -39
- package/examples/latest/shopify-product-2022-07.json +21 -213
- package/examples/latest/shopify-product-2023-04.json +21 -213
- package/examples/latest/shopify-store-with-widget.json +97 -360
- package/examples/latest/stripe-product-runtime-schema.json +21 -213
- package/examples/latest/stripe-starter-resolved.json +21 -213
- package/examples/latest/user-schema-no-required.json +1 -1
- package/examples/latest/user-schema-with-defaults.json +1 -1
- package/package.json +5 -5
|
@@ -9,6 +9,35 @@
|
|
|
9
9
|
],
|
|
10
10
|
"workflows": {},
|
|
11
11
|
"forms": {
|
|
12
|
+
"BreweryAddresses": {
|
|
13
|
+
"default": {
|
|
14
|
+
"properties": {
|
|
15
|
+
"image": {
|
|
16
|
+
"widget": "image"
|
|
17
|
+
},
|
|
18
|
+
"zipCode": {
|
|
19
|
+
"widget": "singleLineText"
|
|
20
|
+
},
|
|
21
|
+
"state": {
|
|
22
|
+
"widget": "singleLineText"
|
|
23
|
+
},
|
|
24
|
+
"city": {
|
|
25
|
+
"widget": "singleLineText"
|
|
26
|
+
},
|
|
27
|
+
"street": {
|
|
28
|
+
"widget": "singleLineText"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"widget": "repeater",
|
|
32
|
+
"order": [
|
|
33
|
+
"image",
|
|
34
|
+
"street",
|
|
35
|
+
"city",
|
|
36
|
+
"state",
|
|
37
|
+
"zipCode"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
},
|
|
12
41
|
"Brewery": {
|
|
13
42
|
"default": {
|
|
14
43
|
"properties": {
|
|
@@ -16,31 +45,7 @@
|
|
|
16
45
|
"widget": "singleLineText"
|
|
17
46
|
},
|
|
18
47
|
"addresses": {
|
|
19
|
-
"
|
|
20
|
-
"image": {
|
|
21
|
-
"widget": "image"
|
|
22
|
-
},
|
|
23
|
-
"zipCode": {
|
|
24
|
-
"widget": "singleLineText"
|
|
25
|
-
},
|
|
26
|
-
"state": {
|
|
27
|
-
"widget": "singleLineText"
|
|
28
|
-
},
|
|
29
|
-
"city": {
|
|
30
|
-
"widget": "singleLineText"
|
|
31
|
-
},
|
|
32
|
-
"street": {
|
|
33
|
-
"widget": "singleLineText"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"widget": "repeater",
|
|
37
|
-
"order": [
|
|
38
|
-
"image",
|
|
39
|
-
"street",
|
|
40
|
-
"city",
|
|
41
|
-
"state",
|
|
42
|
-
"zipCode"
|
|
43
|
-
]
|
|
48
|
+
"widget": "shapeArray"
|
|
44
49
|
}
|
|
45
50
|
},
|
|
46
51
|
"order": [
|
|
@@ -382,6 +387,6 @@
|
|
|
382
387
|
}
|
|
383
388
|
}
|
|
384
389
|
},
|
|
385
|
-
"schemaVersion": "3.
|
|
390
|
+
"schemaVersion": "3.34.0",
|
|
386
391
|
"services": {}
|
|
387
392
|
}
|