@takeshape/schema 8.256.0 → 8.257.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.
Files changed (81) hide show
  1. package/dist/flatten-templates.d.ts +1 -1
  2. package/dist/flatten-templates.d.ts.map +1 -1
  3. package/dist/migration/index.d.ts +1 -0
  4. package/dist/migration/index.d.ts.map +1 -1
  5. package/dist/migration/index.js +4 -1
  6. package/dist/migration/to/v3.24.0.d.ts +5 -0
  7. package/dist/migration/to/v3.24.0.d.ts.map +1 -0
  8. package/dist/migration/to/v3.24.0.js +24 -0
  9. package/dist/project-schema/index.d.ts +4 -1
  10. package/dist/project-schema/index.d.ts.map +1 -1
  11. package/dist/project-schema/index.js +20 -3
  12. package/dist/project-schema/latest.d.ts +1 -13
  13. package/dist/project-schema/latest.d.ts.map +1 -1
  14. package/dist/project-schema/migrate.d.ts.map +1 -1
  15. package/dist/project-schema/migrate.js +4 -0
  16. package/dist/project-schema/v3.24.0.d.ts +1365 -0
  17. package/dist/project-schema/v3.24.0.d.ts.map +1 -0
  18. package/dist/project-schema/v3.24.0.js +5 -0
  19. package/dist/schema-util.d.ts +1 -1
  20. package/dist/schema-util.d.ts.map +1 -1
  21. package/dist/schema-util.js +0 -4
  22. package/dist/schemas/index.d.ts +2 -2
  23. package/dist/schemas/index.d.ts.map +1 -1
  24. package/dist/schemas/index.js +6 -4
  25. package/dist/schemas/index.ts +4 -2
  26. package/dist/schemas/project-schema/latest.json +617 -162
  27. package/dist/schemas/project-schema/v3.24.0.json +2907 -0
  28. package/dist/schemas/project-schema.json +3 -0
  29. package/dist/types/types.d.ts +4 -3
  30. package/dist/types/types.d.ts.map +1 -1
  31. package/dist/types/types.js +1 -1
  32. package/dist/util/patch-schema.d.ts +1 -1
  33. package/dist/util/patch-schema.d.ts.map +1 -1
  34. package/dist/util/patch-schema.js +3 -5
  35. package/dist/workflows.d.ts.map +1 -1
  36. package/dist/workflows.js +6 -1
  37. package/es/migration/index.js +3 -1
  38. package/es/migration/to/v3.24.0.js +16 -0
  39. package/es/project-schema/index.js +3 -1
  40. package/es/project-schema/migrate.js +5 -1
  41. package/es/project-schema/v3.24.0.js +1 -0
  42. package/es/schema-util.js +0 -4
  43. package/es/schemas/index.js +4 -3
  44. package/es/schemas/index.ts +4 -2
  45. package/es/schemas/project-schema/latest.json +617 -162
  46. package/es/schemas/project-schema/v3.24.0.json +2907 -0
  47. package/es/schemas/project-schema.json +3 -0
  48. package/es/types/types.js +1 -1
  49. package/es/util/patch-schema.js +3 -5
  50. package/es/workflows.js +6 -1
  51. package/examples/latest/betzino.json +1 -4
  52. package/examples/latest/blog-schema.json +1 -4
  53. package/examples/latest/brewery-schema.json +1 -4
  54. package/examples/latest/complex-project-schema.json +1 -4
  55. package/examples/latest/complex-schema.json +1 -4
  56. package/examples/latest/fabric-ecommerce.json +1 -4
  57. package/examples/latest/frank-and-fred-schema.json +1 -4
  58. package/examples/latest/klirr-schema.json +1 -4
  59. package/examples/latest/massive-schema.json +1 -4
  60. package/examples/latest/mill-components-schema.json +1 -4
  61. package/examples/latest/one-earth.json +1 -4
  62. package/examples/latest/pet-oneof-array.json +1 -4
  63. package/examples/latest/post-schema.json +1 -4
  64. package/examples/latest/pruned-shopify-product-schema.json +1 -4
  65. package/examples/latest/real-world-schema.json +1 -4
  66. package/examples/latest/recursive-repeater-schema.json +1 -4
  67. package/examples/latest/recursive-schema.json +1 -4
  68. package/examples/latest/rick-and-morty-ast.json +1 -4
  69. package/examples/latest/rick-and-morty-graphql.json +1 -4
  70. package/examples/latest/rick-and-morty-rest.json +1 -4
  71. package/examples/latest/schema-with-repeater-draftjs.json +1 -4
  72. package/examples/latest/shape-books-v3_2_0.json +1 -4
  73. package/examples/latest/shape-books.json +1 -4
  74. package/examples/latest/shopify-lookbook.json +1 -4
  75. package/examples/latest/shopify-product-2022-07.json +1 -4
  76. package/examples/latest/shopify-store-with-widget.json +1 -4
  77. package/examples/latest/stripe-product-runtime-schema.json +1 -4
  78. package/examples/latest/stripe-starter-resolved.json +1 -4
  79. package/examples/latest/user-schema-no-required.json +1 -4
  80. package/examples/latest/user-schema-with-defaults.json +1 -4
  81. package/package.json +4 -4
@@ -99,6 +99,9 @@
99
99
  {
100
100
  "$ref": "https://schema.takeshape.io/project-schema/v3.23.0#"
101
101
  },
102
+ {
103
+ "$ref": "https://schema.takeshape.io/project-schema/v3.24.0#"
104
+ },
102
105
  {
103
106
  "$ref": "https://schema.takeshape.io/project-schema/v4.0.0#"
104
107
  }
package/es/types/types.js CHANGED
@@ -3,7 +3,7 @@
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', 'created', 'updated', 'dataKey', 'version', 'locales', 'defaultLocale', 'author'];
6
+ export const projectSchemaImportOptionalProps = ['projectId', 'dataKey', 'locales', 'defaultLocale', 'author'];
7
7
 
8
8
  /**
9
9
  * Types of refs
@@ -24,12 +24,10 @@ export function shallowMerge(original, update) {
24
24
  * Resulting schema is not assumed to be valid and should be validated if appropriate.
25
25
  */
26
26
 
27
- export function patchSchema(projectSchema, update, incrementVersion = true) {
28
- const version = update.version ?? projectSchema.version; // Patch old schema with update
29
-
27
+ export function patchSchema(projectSchema, update) {
28
+ // Patch old schema with update
30
29
  const updatedSchema = { ...projectSchema,
31
- ...omit(update, schemaUpdateMergedKeys),
32
- version: incrementVersion ? version + 1 : version
30
+ ...omit(update, schemaUpdateMergedKeys)
33
31
  };
34
32
 
35
33
  for (const key of schemaUpdateMergedKeys) {
package/es/workflows.js CHANGED
@@ -20,7 +20,12 @@ export function getWorkflow(projectSchema, shapeId) {
20
20
  var _getShapeById;
21
21
 
22
22
  const workflow = (_getShapeById = getShapeById(projectSchema, shapeId)) === null || _getShapeById === void 0 ? void 0 : _getShapeById.workflow;
23
- return projectSchema.workflows[workflow ?? 'default'];
23
+
24
+ if (workflow) {
25
+ return projectSchema.workflows[workflow] ?? defaultWorkflow;
26
+ }
27
+
28
+ return defaultWorkflow;
24
29
  }
25
30
  export function statusFallback(workflow, enabled) {
26
31
  return workflow.steps.find(workflow => workflow.live === enabled) ?? workflow.steps[0];
@@ -7,9 +7,6 @@
7
7
  ],
8
8
  "workflows": {},
9
9
  "projectId": "7c8c0ccf-7e4f-4dc8-89c1-8604d028f7ba",
10
- "version": 80,
11
- "created": "2019-06-20T12:58:43.119Z",
12
- "updated": "2021-12-21T18:07:43.962Z",
13
10
  "forms": {
14
11
  "ProfileForm": {
15
12
  "default": {
@@ -52529,6 +52526,6 @@
52529
52526
  }
52530
52527
  }
52531
52528
  },
52532
- "schemaVersion": "3.23.0",
52529
+ "schemaVersion": "3.24.0",
52533
52530
  "services": {}
52534
52531
  }
@@ -6,12 +6,9 @@
6
6
  "en",
7
7
  "es"
8
8
  ],
9
- "version": 1,
10
9
  "apiVersion": "2",
11
10
  "author": "<userId>",
12
11
  "workflows": {},
13
- "created": "2016-06-21T15:16:19.051Z",
14
- "updated": "2016-06-21T15:16:19.051Z",
15
12
  "forms": {
16
13
  "Homepage": {
17
14
  "default": {
@@ -403,6 +400,6 @@
403
400
  }
404
401
  }
405
402
  },
406
- "schemaVersion": "3.23.0",
403
+ "schemaVersion": "3.24.0",
407
404
  "services": {}
408
405
  }
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "http://takeshape.io/schemas/project-schema#",
3
- "version": 1,
4
3
  "author": "<userId>",
5
4
  "apiVersion": "2",
6
5
  "projectId": "project-id",
@@ -9,8 +8,6 @@
9
8
  "en-us"
10
9
  ],
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "Brewery": {
16
13
  "default": {
@@ -386,6 +383,6 @@
386
383
  }
387
384
  }
388
385
  },
389
- "schemaVersion": "3.23.0",
386
+ "schemaVersion": "3.24.0",
390
387
  "services": {}
391
388
  }
@@ -4,13 +4,10 @@
4
4
  "en"
5
5
  ],
6
6
  "projectId": "427aa129-8807-4e88-ac87-447419838d1b",
7
- "version": 57,
8
7
  "$schema": "http://takeshape.io/schemas/project-schema#",
9
8
  "author": "<userId>",
10
9
  "apiVersion": "2",
11
10
  "workflows": {},
12
- "created": "2019-05-08T11:35:24.053Z",
13
- "updated": "2019-05-09T21:54:37.425Z",
14
11
  "forms": {
15
12
  "Purpose": {
16
13
  "default": {
@@ -4189,6 +4186,6 @@
4189
4186
  }
4190
4187
  }
4191
4188
  },
4192
- "schemaVersion": "3.23.0",
4189
+ "schemaVersion": "3.24.0",
4193
4190
  "services": {}
4194
4191
  }
@@ -2,7 +2,6 @@
2
2
  "dataKey": "supersecret",
3
3
  "workflows": {},
4
4
  "projectId": "f1679577-e89a-449b-9313-e2edac0a5bf0",
5
- "version": 578,
6
5
  "defaultLocale": "en",
7
6
  "locales": [
8
7
  "en",
@@ -17,9 +16,7 @@
17
16
  "apiVersion": "1",
18
17
  "queries": {},
19
18
  "mutations": {},
20
- "schemaVersion": "3.23.0",
21
- "created": "2019-06-20T12:58:43.119Z",
22
- "updated": "2020-04-29T10:10:28.182Z",
19
+ "schemaVersion": "3.24.0",
23
20
  "shapes": {
24
21
  "DocumentUploadForm": {
25
22
  "id": "HJPFlRKkr",
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "projectId": "4c54da75-a240-4e50-8343-bd1e8eafcdbb",
3
3
  "dataKey": "secret",
4
- "version": 16,
5
- "created": "2021-09-22T21:40:56.849Z",
6
- "updated": "2021-09-24T18:42:24.966Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -10509,5 +10506,5 @@
10509
10506
  }
10510
10507
  }
10511
10508
  },
10512
- "schemaVersion": "3.23.0"
10509
+ "schemaVersion": "3.24.0"
10513
10510
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "workflows": {},
3
3
  "projectId": "f1679577-e89a-449b-9313-e2edac0a5bf0",
4
- "version": 578,
5
4
  "defaultLocale": "en",
6
5
  "locales": [
7
6
  "en",
@@ -14,8 +13,6 @@
14
13
  "pt-br"
15
14
  ],
16
15
  "apiVersion": "1",
17
- "created": "2019-06-20T12:58:43.119Z",
18
- "updated": "2020-04-29T10:10:28.182Z",
19
16
  "forms": {
20
17
  "DocumentUploadForm": {
21
18
  "default": {
@@ -23255,6 +23252,6 @@
23255
23252
  }
23256
23253
  }
23257
23254
  },
23258
- "schemaVersion": "3.23.0",
23255
+ "schemaVersion": "3.24.0",
23259
23256
  "services": {}
23260
23257
  }
@@ -2,7 +2,6 @@
2
2
  "dataKey": "supersecret",
3
3
  "workflows": {},
4
4
  "projectId": "190a2592-08ff-466f-bb4a-78eb9bcb69c6",
5
- "version": 172,
6
5
  "defaultLocale": "en",
7
6
  "locales": [
8
7
  "en",
@@ -10,8 +9,6 @@
10
9
  "fi"
11
10
  ],
12
11
  "apiVersion": "2",
13
- "created": "2019-06-20T12:58:43.119Z",
14
- "updated": "2021-01-30T20:32:32.017Z",
15
12
  "forms": {
16
13
  "ProfileForm": {
17
14
  "default": {
@@ -34790,6 +34787,6 @@
34790
34787
  }
34791
34788
  }
34792
34789
  },
34793
- "schemaVersion": "3.23.0",
34790
+ "schemaVersion": "3.24.0",
34794
34791
  "services": {}
34795
34792
  }
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "workflows": {},
3
3
  "projectId": "fd194db7-7b25-4b5a-8cc7-da7f31fab475",
4
- "version": 463,
5
4
  "defaultLocale": "en",
6
5
  "locales": [
7
6
  "en"
8
7
  ],
9
8
  "apiVersion": "1",
10
- "created": "2017-02-23T01:14:12.093Z",
11
- "updated": "2020-03-17T14:30:03.886Z",
12
9
  "forms": {
13
10
  "ResourceNavigation": {
14
11
  "default": {
@@ -7841,6 +7838,6 @@
7841
7838
  }
7842
7839
  }
7843
7840
  },
7844
- "schemaVersion": "3.23.0",
7841
+ "schemaVersion": "3.24.0",
7845
7842
  "services": {}
7846
7843
  }
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "workflows": {},
3
3
  "projectId": "0ffaf7c3-289e-4df3-a6aa-4c513d356c76",
4
- "version": 39,
5
4
  "defaultLocale": "en",
6
5
  "locales": [
7
6
  "en"
8
7
  ],
9
8
  "apiVersion": "2",
10
- "created": "2019-10-10T21:52:02.940Z",
11
- "updated": "2021-10-03T13:50:40.571Z",
12
9
  "forms": {
13
10
  "Notification": {
14
11
  "default": {
@@ -1888,6 +1885,6 @@
1888
1885
  }
1889
1886
  }
1890
1887
  },
1891
- "schemaVersion": "3.23.0",
1888
+ "schemaVersion": "3.24.0",
1892
1889
  "services": {}
1893
1890
  }
@@ -2,14 +2,11 @@
2
2
  "dataKey": "supersecret",
3
3
  "workflows": {},
4
4
  "projectId": "86ce9525-f5f2-4e97-81ba-54e8ce933da7",
5
- "version": 530,
6
5
  "defaultLocale": "en",
7
6
  "locales": [
8
7
  "en"
9
8
  ],
10
9
  "apiVersion": "1",
11
- "created": "2018-11-01T21:30:46.180Z",
12
- "updated": "2020-10-14T19:24:11.935Z",
13
10
  "forms": {
14
11
  "Science": {
15
12
  "default": {
@@ -14220,6 +14217,6 @@
14220
14217
  }
14221
14218
  }
14222
14219
  },
14223
- "schemaVersion": "3.23.0",
14220
+ "schemaVersion": "3.24.0",
14224
14221
  "services": {}
14225
14222
  }
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "apiVersion": "2",
3
3
  "projectId": "ac06e342-afe2-40f8-864b-1345d3fed493",
4
- "version": 31,
5
- "created": "2021-07-01T18:24:33.290Z",
6
- "updated": "2021-07-12T22:07:46.153Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -392,6 +389,6 @@
392
389
  }
393
390
  }
394
391
  },
395
- "schemaVersion": "3.23.0",
392
+ "schemaVersion": "3.24.0",
396
393
  "services": {}
397
394
  }
@@ -5,12 +5,9 @@
5
5
  "en",
6
6
  "es"
7
7
  ],
8
- "version": 1,
9
8
  "apiVersion": "2",
10
9
  "author": "<userId>",
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "Post": {
16
13
  "default": {
@@ -230,6 +227,6 @@
230
227
  }
231
228
  }
232
229
  },
233
- "schemaVersion": "3.23.0",
230
+ "schemaVersion": "3.24.0",
234
231
  "services": {}
235
232
  }
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "apiVersion": "2",
3
3
  "projectId": "a895a9e2-4627-424d-8f0c-145fd84ed1de",
4
- "version": 8,
5
- "created": "2021-02-04T15:45:32.300Z",
6
- "updated": "2021-09-23T18:41:15.899Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -9760,5 +9757,5 @@
9760
9757
  }
9761
9758
  }
9762
9759
  },
9763
- "schemaVersion": "3.23.0"
9760
+ "schemaVersion": "3.24.0"
9764
9761
  }
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "http://takeshape.io/schemas/project-schema#",
3
- "version": 1,
4
3
  "author": "<userId>",
5
4
  "apiVersion": "2",
6
5
  "projectId": "project-id",
@@ -9,8 +8,6 @@
9
8
  "en-us"
10
9
  ],
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "Beer": {
16
13
  "default": {
@@ -1045,6 +1042,6 @@
1045
1042
  }
1046
1043
  }
1047
1044
  },
1048
- "schemaVersion": "3.23.0",
1045
+ "schemaVersion": "3.24.0",
1049
1046
  "services": {}
1050
1047
  }
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "http://takeshape.io/schemas/project-schema#",
3
- "version": 1,
4
3
  "author": "<userId>",
5
4
  "apiVersion": "2",
6
5
  "projectId": "project-id",
@@ -9,8 +8,6 @@
9
8
  "en-us"
10
9
  ],
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "Post": {
16
13
  "default": {
@@ -146,6 +143,6 @@
146
143
  }
147
144
  }
148
145
  },
149
- "schemaVersion": "3.23.0",
146
+ "schemaVersion": "3.24.0",
150
147
  "services": {}
151
148
  }
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "http://takeshape.io/schemas/project-schema#",
3
- "version": 1,
4
3
  "author": "<userId>",
5
4
  "apiVersion": "2",
6
5
  "projectId": "project-id",
@@ -9,8 +8,6 @@
9
8
  "en-us"
10
9
  ],
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "Post": {
16
13
  "default": {
@@ -153,6 +150,6 @@
153
150
  }
154
151
  }
155
152
  },
156
- "schemaVersion": "3.23.0",
153
+ "schemaVersion": "3.24.0",
157
154
  "services": {}
158
155
  }
@@ -27,9 +27,6 @@
27
27
  "en"
28
28
  ],
29
29
  "projectId": "2c8c44e7-9cbc-4a35-9dea-f0cb2ced03a4",
30
- "version": 1,
31
- "created": "2017-07-13T19:16:10.801Z",
32
- "updated": "2021-01-22T23:29:35.102Z",
33
30
  "forms": {
34
31
  "Asset": {
35
32
  "default": {
@@ -2824,5 +2821,5 @@
2824
2821
  }
2825
2822
  }
2826
2823
  },
2827
- "schemaVersion": "3.23.0"
2824
+ "schemaVersion": "3.24.0"
2828
2825
  }
@@ -27,9 +27,6 @@
27
27
  "en"
28
28
  ],
29
29
  "projectId": "a8b9ea5b-2522-442d-9b68-be0bef4a1a74",
30
- "version": 4,
31
- "created": "2017-07-13T19:16:10.801Z",
32
- "updated": "2021-04-27T19:03:03.051Z",
33
30
  "forms": {
34
31
  "Asset": {
35
32
  "default": {
@@ -2296,5 +2293,5 @@
2296
2293
  }
2297
2294
  }
2298
2295
  },
2299
- "schemaVersion": "3.23.0"
2296
+ "schemaVersion": "3.24.0"
2300
2297
  }
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "apiVersion": "2",
3
3
  "projectId": "cf32d44d-170c-461f-bbf4-855d6f5b98ad",
4
- "version": 2,
5
- "created": "2021-01-22T20:12:08.896Z",
6
- "updated": "2021-03-03T19:12:21.663Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -95,5 +92,5 @@
95
92
  }
96
93
  }
97
94
  },
98
- "schemaVersion": "3.23.0"
95
+ "schemaVersion": "3.24.0"
99
96
  }
@@ -6,11 +6,8 @@
6
6
  "en",
7
7
  "es"
8
8
  ],
9
- "version": 1,
10
9
  "apiVersion": "2",
11
10
  "author": "<userId>",
12
- "created": "2020-08-20T14:41:46.114Z",
13
- "updated": "2020-08-20T14:41:46.114Z",
14
11
  "forms": {
15
12
  "Post": {
16
13
  "default": {}
@@ -401,6 +398,6 @@
401
398
  }
402
399
  }
403
400
  },
404
- "schemaVersion": "3.23.0",
401
+ "schemaVersion": "3.24.0",
405
402
  "services": {}
406
403
  }
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "projectId": "6f78e8ac-527a-4e09-9c5e-510876b096bf",
3
- "version": 103,
4
3
  "apiVersion": "2",
5
4
  "defaultLocale": "en-us",
6
5
  "locales": [
7
6
  "en-us"
8
7
  ],
9
8
  "workflows": {},
10
- "created": "2017-07-13T19:16:10.801Z",
11
- "updated": "2018-09-08T20:16:45.814Z",
12
9
  "forms": {
13
10
  "Genre": {
14
11
  "default": {
@@ -1128,6 +1125,6 @@
1128
1125
  }
1129
1126
  }
1130
1127
  },
1131
- "schemaVersion": "3.23.0",
1128
+ "schemaVersion": "3.24.0",
1132
1129
  "services": {}
1133
1130
  }
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "projectId": "6f78e8ac-527a-4e09-9c5e-510876b096bf",
3
- "version": 103,
4
3
  "apiVersion": "2",
5
4
  "defaultLocale": "en-us",
6
5
  "locales": [
7
6
  "en-us"
8
7
  ],
9
8
  "workflows": {},
10
- "created": "2017-07-13T19:16:10.801Z",
11
- "updated": "2018-09-08T20:16:45.814Z",
12
9
  "forms": {
13
10
  "Genre": {
14
11
  "default": {
@@ -1128,6 +1125,6 @@
1128
1125
  }
1129
1126
  }
1130
1127
  },
1131
- "schemaVersion": "3.23.0",
1128
+ "schemaVersion": "3.24.0",
1132
1129
  "services": {}
1133
1130
  }
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "apiVersion": "2",
3
3
  "projectId": "fc50424f-6421-4023-a52f-f95dd900a069",
4
- "version": 21,
5
- "created": "2021-02-04T15:45:32.300Z",
6
- "updated": "2021-03-05T16:11:41.972Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -1181,5 +1178,5 @@
1181
1178
  }
1182
1179
  }
1183
1180
  },
1184
- "schemaVersion": "3.23.0"
1181
+ "schemaVersion": "3.24.0"
1185
1182
  }
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "projectId": "88af4177-f5f0-4311-8496-eb7f66ba53ac",
3
3
  "dataKey": "secret",
4
- "version": 14,
5
- "created": "2022-08-30T03:18:18.171Z",
6
- "updated": "2022-09-01T21:17:33.840Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
10
7
  ],
11
8
  "apiVersion": "2",
12
- "schemaVersion": "3.23.0",
9
+ "schemaVersion": "3.24.0",
13
10
  "queries": {
14
11
  "getAsset": {
15
12
  "shape": "Asset",
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "apiVersion": "2",
3
3
  "projectId": "0b205d13-df7b-4d38-8a21-7d0d96b341fc",
4
- "version": 4,
5
- "created": "2021-01-21T18:01:39.961Z",
6
- "updated": "2021-01-21T18:03:13.214Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
@@ -12564,5 +12561,5 @@
12564
12561
  }
12565
12562
  }
12566
12563
  },
12567
- "schemaVersion": "3.23.0"
12564
+ "schemaVersion": "3.24.0"
12568
12565
  }
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "projectId": "9f513e93-01d6-4fa9-b158-5af4008cb575",
3
3
  "dataKey": "secret",
4
- "version": 3,
5
- "created": "2022-08-30T16:56:17.696Z",
6
- "updated": "2022-08-30T16:57:18.934Z",
7
4
  "defaultLocale": "en-us",
8
5
  "locales": [
9
6
  "en-us"
10
7
  ],
11
8
  "apiVersion": "2",
12
- "schemaVersion": "3.23.0",
9
+ "schemaVersion": "3.24.0",
13
10
  "queries": {
14
11
  "getAsset": {
15
12
  "shape": "Asset",
@@ -2,9 +2,6 @@
2
2
  "projectId": "520be3e2-877f-465b-8698-983500713948",
3
3
  "dataKey": "data-key",
4
4
  "apiVersion": "2",
5
- "version": 14,
6
- "created": "2021-06-08T13:12:26.923Z",
7
- "updated": "2021-09-07T21:43:42.009Z",
8
5
  "defaultLocale": "en-us",
9
6
  "locales": [
10
7
  "en-us"
@@ -29320,5 +29317,5 @@
29320
29317
  }
29321
29318
  }
29322
29319
  },
29323
- "schemaVersion": "3.23.0"
29320
+ "schemaVersion": "3.24.0"
29324
29321
  }
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "https://schema.takeshape.io/project-schema#",
3
- "version": 1,
4
3
  "apiVersion": "1",
5
4
  "author": "<userId>",
6
5
  "projectId": "project-id",
@@ -9,8 +8,6 @@
9
8
  ],
10
9
  "defaultLocale": "en-us",
11
10
  "workflows": {},
12
- "created": "2016-06-21T15:16:19.051Z",
13
- "updated": "2016-06-21T15:16:19.051Z",
14
11
  "forms": {
15
12
  "User": {
16
13
  "default": {
@@ -169,6 +166,6 @@
169
166
  }
170
167
  }
171
168
  },
172
- "schemaVersion": "3.23.0",
169
+ "schemaVersion": "3.24.0",
173
170
  "services": {}
174
171
  }