@takeshape/schema 8.263.4 → 8.264.2
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.25.0.d.ts +5 -0
- package/dist/migration/to/v3.25.0.d.ts.map +1 -0
- package/dist/migration/to/v3.25.0.js +22 -0
- package/dist/mocks.d.ts +2 -2
- package/dist/mocks.js +4 -4
- 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 -2
- package/dist/project-schema/latest.d.ts.map +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.25.0.d.ts +1364 -0
- package/dist/project-schema/v3.25.0.d.ts.map +1 -0
- package/dist/project-schema/v3.25.0.js +5 -0
- package/dist/schema-util.d.ts +1 -1
- package/dist/schema-util.d.ts.map +1 -1
- package/dist/schema-util.js +2 -3
- 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 -7
- package/dist/schemas/project-schema/v3.25.0.json +2903 -0
- package/dist/schemas/project-schema.json +3 -0
- package/dist/types/types.d.ts +4 -5
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/types.js +2 -2
- package/dist/types/utils.d.ts.map +1 -1
- package/dist/types/utils.js +3 -1
- package/dist/util/merge.d.ts.map +1 -1
- package/dist/util/merge.js +1 -1
- package/es/migration/index.js +3 -1
- package/es/migration/to/v3.25.0.js +14 -0
- package/es/mocks.js +4 -4
- package/es/project-schema/index.js +3 -1
- package/es/project-schema/migrate.js +5 -1
- package/es/project-schema/v3.25.0.js +1 -0
- package/es/schema-util.js +2 -3
- package/es/schemas/index.js +4 -3
- package/es/schemas/index.ts +4 -2
- package/es/schemas/project-schema/latest.json +3 -7
- package/es/schemas/project-schema/v3.25.0.json +2903 -0
- package/es/schemas/project-schema.json +3 -0
- package/es/types/types.js +2 -2
- package/es/types/utils.js +2 -1
- package/es/util/merge.js +1 -1
- package/examples/latest/betzino.json +1 -2
- package/examples/latest/blog-schema.json +1 -2
- package/examples/latest/brewery-schema.json +1 -2
- package/examples/latest/complex-project-schema.json +1 -2
- package/examples/latest/complex-schema.json +1 -2
- package/examples/latest/fabric-ecommerce.json +1 -2
- package/examples/latest/frank-and-fred-schema.json +1 -2
- package/examples/latest/klirr-schema.json +1 -2
- package/examples/latest/massive-schema.json +1 -2
- package/examples/latest/mill-components-schema.json +1 -2
- package/examples/latest/one-earth.json +1 -2
- package/examples/latest/pet-oneof-array.json +1 -2
- package/examples/latest/post-schema.json +1 -2
- package/examples/latest/pruned-shopify-product-schema.json +1 -2
- package/examples/latest/real-world-schema.json +1 -2
- package/examples/latest/recursive-repeater-schema.json +1 -2
- package/examples/latest/recursive-schema.json +1 -2
- package/examples/latest/rick-and-morty-ast.json +1 -2
- package/examples/latest/rick-and-morty-graphql.json +1 -2
- package/examples/latest/rick-and-morty-rest.json +1 -2
- package/examples/latest/schema-with-repeater-draftjs.json +1 -2
- package/examples/latest/shape-books-v3_2_0.json +1 -2
- package/examples/latest/shape-books.json +1 -2
- package/examples/latest/shopify-lookbook.json +1 -2
- package/examples/latest/shopify-product-2022-07.json +1 -2
- package/examples/latest/shopify-store-with-widget.json +1 -2
- package/examples/latest/stripe-product-runtime-schema.json +1 -2
- package/examples/latest/stripe-starter-resolved.json +1 -2
- package/examples/latest/user-schema-no-required.json +1 -2
- package/examples/latest/user-schema-with-defaults.json +1 -2
- package/package.json +4 -4
package/es/types/types.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* only type used in most runtime code. Updating this to a new version should
|
|
4
4
|
* trigger type errors that clue you in to code that needs review.
|
|
5
5
|
*/
|
|
6
|
-
export const projectSchemaImportOptionalProps = ['projectId', '
|
|
7
|
-
export const legacyProjectSchemaImportOptionalProps = ['created', 'updated', 'version'];
|
|
6
|
+
export const projectSchemaImportOptionalProps = ['projectId', 'locales', 'defaultLocale', 'author'];
|
|
7
|
+
export const legacyProjectSchemaImportOptionalProps = ['created', 'updated', 'version', 'dataKey'];
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Types of refs
|
package/es/types/utils.js
CHANGED
|
@@ -7,6 +7,7 @@ import isArray from 'lodash/isArray';
|
|
|
7
7
|
import has from 'lodash/has';
|
|
8
8
|
import { latestSchemaJson } from '../schemas';
|
|
9
9
|
import satisfies from 'semver/functions/satisfies';
|
|
10
|
+
import isUndefined from 'lodash/isUndefined';
|
|
10
11
|
/** Resolver Type Utils **/
|
|
11
12
|
|
|
12
13
|
/**
|
|
@@ -55,7 +56,7 @@ export function isV3XSchema(maybeSchema) {
|
|
|
55
56
|
return version ? satisfies(version, '^3.0.0') : false;
|
|
56
57
|
}
|
|
57
58
|
export function isProjectSchemaWithServices(schema) {
|
|
58
|
-
return
|
|
59
|
+
return !isUndefined(schema.services);
|
|
59
60
|
}
|
|
60
61
|
/** Directive Mapping Utils **/
|
|
61
62
|
|
package/es/util/merge.js
CHANGED
|
@@ -255,7 +255,7 @@ export function mergeProjectSchemas(to, base, from) {
|
|
|
255
255
|
|
|
256
256
|
if (potentialConflict.op === 'add' && change.op === 'add' || potentialConflict.op === 'update' && change.op === 'update') {
|
|
257
257
|
if (change.section === 'shapes') {
|
|
258
|
-
const mergedValue = attemptToMerge(to, base, from, change);
|
|
258
|
+
const mergedValue = attemptToMerge(to, base, from, change); // eslint-disable-next-line max-depth
|
|
259
259
|
|
|
260
260
|
if (!mergedValue) {
|
|
261
261
|
return {
|
|
@@ -7656,7 +7656,6 @@
|
|
|
7656
7656
|
}
|
|
7657
7657
|
}
|
|
7658
7658
|
},
|
|
7659
|
-
"dataKey": "AQIDAHi9nATJb1LYgj5u7ShOGp43y2H6TuckRKGDlwTU4b6ryQFysYUZOpJcN6AnANucX2maAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMBdpIggrzI4+4aejRAgEQgDsXWrhpoQO9bOWJzxEyrTJ2xEMzsjgGqos1oAqve5QfoTtAHH100AKiueEBwPHODz6egpxm1Nv+SEPYfQ==",
|
|
7660
7659
|
"queries": {
|
|
7661
7660
|
"getProfileForm": {
|
|
7662
7661
|
"args": "TSGetArgs<ProfileForm>",
|
|
@@ -52526,6 +52525,6 @@
|
|
|
52526
52525
|
}
|
|
52527
52526
|
}
|
|
52528
52527
|
},
|
|
52529
|
-
"schemaVersion": "3.
|
|
52528
|
+
"schemaVersion": "3.25.0",
|
|
52530
52529
|
"services": {}
|
|
52531
52530
|
}
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
-
"dataKey": "supersecret",
|
|
41
40
|
"queries": {
|
|
42
41
|
"getHomepage": {
|
|
43
42
|
"args": "TSGetSingletonArgs<Homepage>",
|
|
@@ -400,6 +399,6 @@
|
|
|
400
399
|
}
|
|
401
400
|
}
|
|
402
401
|
},
|
|
403
|
-
"schemaVersion": "3.
|
|
402
|
+
"schemaVersion": "3.25.0",
|
|
404
403
|
"services": {}
|
|
405
404
|
}
|
|
@@ -57,7 +57,6 @@
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"dataKey": "supersecret",
|
|
61
60
|
"queries": {
|
|
62
61
|
"getBrewery": {
|
|
63
62
|
"args": "TSGetArgs<Brewery>",
|
|
@@ -383,6 +382,6 @@
|
|
|
383
382
|
}
|
|
384
383
|
}
|
|
385
384
|
},
|
|
386
|
-
"schemaVersion": "3.
|
|
385
|
+
"schemaVersion": "3.25.0",
|
|
387
386
|
"services": {}
|
|
388
387
|
}
|
|
@@ -927,7 +927,6 @@
|
|
|
927
927
|
}
|
|
928
928
|
}
|
|
929
929
|
},
|
|
930
|
-
"dataKey": "supersecret",
|
|
931
930
|
"queries": {
|
|
932
931
|
"getPurpose": {
|
|
933
932
|
"args": "TSGetArgs<Purpose>",
|
|
@@ -4186,6 +4185,6 @@
|
|
|
4186
4185
|
}
|
|
4187
4186
|
}
|
|
4188
4187
|
},
|
|
4189
|
-
"schemaVersion": "3.
|
|
4188
|
+
"schemaVersion": "3.25.0",
|
|
4190
4189
|
"services": {}
|
|
4191
4190
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"dataKey": "supersecret",
|
|
3
2
|
"workflows": {},
|
|
4
3
|
"projectId": "f1679577-e89a-449b-9313-e2edac0a5bf0",
|
|
5
4
|
"defaultLocale": "en",
|
|
@@ -16,7 +15,7 @@
|
|
|
16
15
|
"apiVersion": "1",
|
|
17
16
|
"queries": {},
|
|
18
17
|
"mutations": {},
|
|
19
|
-
"schemaVersion": "3.
|
|
18
|
+
"schemaVersion": "3.25.0",
|
|
20
19
|
"shapes": {
|
|
21
20
|
"DocumentUploadForm": {
|
|
22
21
|
"id": "HJPFlRKkr",
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectId": "4c54da75-a240-4e50-8343-bd1e8eafcdbb",
|
|
3
|
-
"dataKey": "secret",
|
|
4
3
|
"defaultLocale": "en-us",
|
|
5
4
|
"locales": [
|
|
6
5
|
"en-us"
|
|
@@ -10506,5 +10505,5 @@
|
|
|
10506
10505
|
}
|
|
10507
10506
|
}
|
|
10508
10507
|
},
|
|
10509
|
-
"schemaVersion": "3.
|
|
10508
|
+
"schemaVersion": "3.25.0"
|
|
10510
10509
|
}
|
|
@@ -3859,7 +3859,6 @@
|
|
|
3859
3859
|
}
|
|
3860
3860
|
}
|
|
3861
3861
|
},
|
|
3862
|
-
"dataKey": "supersecret",
|
|
3863
3862
|
"queries": {
|
|
3864
3863
|
"getDocumentUploadForm": {
|
|
3865
3864
|
"args": "TSGetArgs<DocumentUploadForm>",
|
|
@@ -23252,6 +23251,6 @@
|
|
|
23252
23251
|
}
|
|
23253
23252
|
}
|
|
23254
23253
|
},
|
|
23255
|
-
"schemaVersion": "3.
|
|
23254
|
+
"schemaVersion": "3.25.0",
|
|
23256
23255
|
"services": {}
|
|
23257
23256
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"dataKey": "supersecret",
|
|
3
2
|
"workflows": {},
|
|
4
3
|
"projectId": "190a2592-08ff-466f-bb4a-78eb9bcb69c6",
|
|
5
4
|
"defaultLocale": "en",
|
|
@@ -34787,6 +34786,6 @@
|
|
|
34787
34786
|
}
|
|
34788
34787
|
}
|
|
34789
34788
|
},
|
|
34790
|
-
"schemaVersion": "3.
|
|
34789
|
+
"schemaVersion": "3.25.0",
|
|
34791
34790
|
"services": {}
|
|
34792
34791
|
}
|
|
@@ -1822,7 +1822,6 @@
|
|
|
1822
1822
|
}
|
|
1823
1823
|
}
|
|
1824
1824
|
},
|
|
1825
|
-
"dataKey": "supersecret",
|
|
1826
1825
|
"queries": {
|
|
1827
1826
|
"getResourceNavigation": {
|
|
1828
1827
|
"args": "TSGetSingletonArgs<ResourceNavigation>",
|
|
@@ -7838,6 +7837,6 @@
|
|
|
7838
7837
|
}
|
|
7839
7838
|
}
|
|
7840
7839
|
},
|
|
7841
|
-
"schemaVersion": "3.
|
|
7840
|
+
"schemaVersion": "3.25.0",
|
|
7842
7841
|
"services": {}
|
|
7843
7842
|
}
|
|
@@ -345,7 +345,6 @@
|
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
347
|
},
|
|
348
|
-
"dataKey": "secret",
|
|
349
348
|
"queries": {
|
|
350
349
|
"getNotification": {
|
|
351
350
|
"args": "TSGetArgs<Notification>",
|
|
@@ -1885,6 +1884,6 @@
|
|
|
1885
1884
|
}
|
|
1886
1885
|
}
|
|
1887
1886
|
},
|
|
1888
|
-
"schemaVersion": "3.
|
|
1887
|
+
"schemaVersion": "3.25.0",
|
|
1889
1888
|
"services": {}
|
|
1890
1889
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"dataKey": "supersecret",
|
|
3
2
|
"workflows": {},
|
|
4
3
|
"projectId": "86ce9525-f5f2-4e97-81ba-54e8ce933da7",
|
|
5
4
|
"defaultLocale": "en",
|
|
@@ -14217,6 +14216,6 @@
|
|
|
14217
14216
|
}
|
|
14218
14217
|
}
|
|
14219
14218
|
},
|
|
14220
|
-
"schemaVersion": "3.
|
|
14219
|
+
"schemaVersion": "3.25.0",
|
|
14221
14220
|
"services": {}
|
|
14222
14221
|
}
|
|
@@ -170,7 +170,6 @@
|
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
},
|
|
173
|
-
"dataKey": "supersecret",
|
|
174
173
|
"queries": {
|
|
175
174
|
"getBeer": {
|
|
176
175
|
"args": "TSGetArgs<Beer>",
|
|
@@ -1042,6 +1041,6 @@
|
|
|
1042
1041
|
}
|
|
1043
1042
|
}
|
|
1044
1043
|
},
|
|
1045
|
-
"schemaVersion": "3.
|
|
1044
|
+
"schemaVersion": "3.25.0",
|
|
1046
1045
|
"services": {}
|
|
1047
1046
|
}
|
|
@@ -455,7 +455,6 @@
|
|
|
455
455
|
}
|
|
456
456
|
}
|
|
457
457
|
},
|
|
458
|
-
"dataKey": "AQIDAHi9nATJb1LYgj5u7ShOGp43y2H6TuckRKGDlwTU4b6ryQGI0q/SRpsDawxZIqwDcVlDAAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQM854moczqo/0NmMLbAgEQgDvf6d048wXTUyv/KlbkBLU/v/D1itvLB9wgP3M9vX4bKU6WgalSGCL/QtC18KiQ+mBk5BPQTiY6+rPsWQ==",
|
|
459
458
|
"services": {
|
|
460
459
|
"rick-n-morty": {
|
|
461
460
|
"id": "rick-n-morty",
|
|
@@ -2293,5 +2292,5 @@
|
|
|
2293
2292
|
}
|
|
2294
2293
|
}
|
|
2295
2294
|
},
|
|
2296
|
-
"schemaVersion": "3.
|
|
2295
|
+
"schemaVersion": "3.25.0"
|
|
2297
2296
|
}
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
|
-
"dataKey": "AQIDAHhcZWXOdlBglkxBhI23ElO/clC/kuw5ynjXDSqJgfTz8gGs0V9U9qOKlqicZ9d2p+45AAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMzl46lhOMi4RGP3AkAgEQgDu0SsBk84UIM55pydDDKcz5L8EL02u/rhULFBliykTWhkSIv+EuqiaLVaqA7qVGJP84HpuPd+ZFORY/lw==",
|
|
27
26
|
"queries": {
|
|
28
27
|
"getCharacter": {
|
|
29
28
|
"args": "Rnm_GetCharacterArgs",
|
|
@@ -92,5 +91,5 @@
|
|
|
92
91
|
}
|
|
93
92
|
}
|
|
94
93
|
},
|
|
95
|
-
"schemaVersion": "3.
|
|
94
|
+
"schemaVersion": "3.25.0"
|
|
96
95
|
}
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"default": {}
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
"dataKey": "supersecret",
|
|
17
16
|
"queries": {
|
|
18
17
|
"getPost": {
|
|
19
18
|
"args": "TSGetArgs<Post>",
|
|
@@ -398,6 +397,6 @@
|
|
|
398
397
|
}
|
|
399
398
|
}
|
|
400
399
|
},
|
|
401
|
-
"schemaVersion": "3.
|
|
400
|
+
"schemaVersion": "3.25.0",
|
|
402
401
|
"services": {}
|
|
403
402
|
}
|
|
@@ -220,7 +220,6 @@
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
},
|
|
223
|
-
"dataKey": "supersecret",
|
|
224
223
|
"queries": {
|
|
225
224
|
"getGenre": {
|
|
226
225
|
"args": "TSGetArgs<Genre>",
|
|
@@ -1125,6 +1124,6 @@
|
|
|
1125
1124
|
}
|
|
1126
1125
|
}
|
|
1127
1126
|
},
|
|
1128
|
-
"schemaVersion": "3.
|
|
1127
|
+
"schemaVersion": "3.25.0",
|
|
1129
1128
|
"services": {}
|
|
1130
1129
|
}
|
|
@@ -220,7 +220,6 @@
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
},
|
|
223
|
-
"dataKey": "supersecret",
|
|
224
223
|
"queries": {
|
|
225
224
|
"getGenre": {
|
|
226
225
|
"args": "TSGetArgs<Genre>",
|
|
@@ -1125,6 +1124,6 @@
|
|
|
1125
1124
|
}
|
|
1126
1125
|
}
|
|
1127
1126
|
},
|
|
1128
|
-
"schemaVersion": "3.
|
|
1127
|
+
"schemaVersion": "3.25.0",
|
|
1129
1128
|
"services": {}
|
|
1130
1129
|
}
|
|
@@ -151,7 +151,6 @@
|
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
-
"dataKey": "AQIDAHhcZWXOdlBglkxBhI23ElO/clC/kuw5ynjXDSqJgfTz8gF9PtUhhmj99Nwuy3NTUSw0AAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMyc4d40JF8HULr2wWAgEQgDs9q/z7QObGJa+nOpS1GDYB9HYK9EcHEiZjhiGhQyAhxZLvqEwQj7+1Zn1LHykh3NJE1BQLQqF8AlQkkQ==",
|
|
155
154
|
"queries": {
|
|
156
155
|
"getProduct": {
|
|
157
156
|
"args": "TSGetArgs<Product>",
|
|
@@ -1178,5 +1177,5 @@
|
|
|
1178
1177
|
}
|
|
1179
1178
|
}
|
|
1180
1179
|
},
|
|
1181
|
-
"schemaVersion": "3.
|
|
1180
|
+
"schemaVersion": "3.25.0"
|
|
1182
1181
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectId": "88af4177-f5f0-4311-8496-eb7f66ba53ac",
|
|
3
|
-
"dataKey": "secret",
|
|
4
3
|
"defaultLocale": "en-us",
|
|
5
4
|
"locales": [
|
|
6
5
|
"en-us"
|
|
7
6
|
],
|
|
8
7
|
"apiVersion": "2",
|
|
9
|
-
"schemaVersion": "3.
|
|
8
|
+
"schemaVersion": "3.25.0",
|
|
10
9
|
"queries": {
|
|
11
10
|
"getAsset": {
|
|
12
11
|
"shape": "Asset",
|
|
@@ -716,7 +716,6 @@
|
|
|
716
716
|
}
|
|
717
717
|
}
|
|
718
718
|
},
|
|
719
|
-
"dataKey": "AQIDAHhcZWXOdlBglkxBhI23ElO/clC/kuw5ynjXDSqJgfTz8gF9PtUhhmj99Nwuy3NTUSw0AAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMyc4d40JF8HULr2wWAgEQgDs9q/z7QObGJa+nOpS1GDYB9HYK9EcHEiZjhiGhQyAhxZLvqEwQj7+1Zn1LHykh3NJE1BQLQqF8AlQkkQ==",
|
|
720
719
|
"queries": {
|
|
721
720
|
"getAsset": {
|
|
722
721
|
"args": "TSGetArgs<Asset>",
|
|
@@ -12561,5 +12560,5 @@
|
|
|
12561
12560
|
}
|
|
12562
12561
|
}
|
|
12563
12562
|
},
|
|
12564
|
-
"schemaVersion": "3.
|
|
12563
|
+
"schemaVersion": "3.25.0"
|
|
12565
12564
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectId": "9f513e93-01d6-4fa9-b158-5af4008cb575",
|
|
3
|
-
"dataKey": "secret",
|
|
4
3
|
"defaultLocale": "en-us",
|
|
5
4
|
"locales": [
|
|
6
5
|
"en-us"
|
|
7
6
|
],
|
|
8
7
|
"apiVersion": "2",
|
|
9
|
-
"schemaVersion": "3.
|
|
8
|
+
"schemaVersion": "3.25.0",
|
|
10
9
|
"queries": {
|
|
11
10
|
"getAsset": {
|
|
12
11
|
"shape": "Asset",
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectId": "520be3e2-877f-465b-8698-983500713948",
|
|
3
|
-
"dataKey": "data-key",
|
|
4
3
|
"apiVersion": "2",
|
|
5
4
|
"defaultLocale": "en-us",
|
|
6
5
|
"locales": [
|
|
@@ -29317,5 +29316,5 @@
|
|
|
29317
29316
|
}
|
|
29318
29317
|
}
|
|
29319
29318
|
},
|
|
29320
|
-
"schemaVersion": "3.
|
|
29319
|
+
"schemaVersion": "3.25.0"
|
|
29321
29320
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/schema",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.264.2",
|
|
4
4
|
"description": "TakeShape Schema",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"p-reduce": "^2.1.0",
|
|
31
31
|
"semver": "^7.3.2",
|
|
32
32
|
"tiny-invariant": "^1.2.0",
|
|
33
|
-
"@takeshape/
|
|
34
|
-
"@takeshape/
|
|
35
|
-
"@takeshape/
|
|
33
|
+
"@takeshape/json-schema": "8.264.2",
|
|
34
|
+
"@takeshape/util": "8.264.2",
|
|
35
|
+
"@takeshape/errors": "8.264.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@takeshape/json-schema-to-typescript": "^11.0.0",
|