@takeshape/schema 9.36.4 → 9.37.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 (84) hide show
  1. package/dist/builtin-schema.js +20 -20
  2. package/dist/migration/index.d.ts +1 -0
  3. package/dist/migration/index.d.ts.map +1 -1
  4. package/dist/migration/index.js +4 -1
  5. package/dist/migration/to/v3.31.0.d.ts +5 -0
  6. package/dist/migration/to/v3.31.0.d.ts.map +1 -0
  7. package/dist/migration/to/v3.31.0.js +53 -0
  8. package/dist/project-schema/index.d.ts +4 -1
  9. package/dist/project-schema/index.d.ts.map +1 -1
  10. package/dist/project-schema/index.js +20 -3
  11. package/dist/project-schema/latest.d.ts +43 -18
  12. package/dist/project-schema/latest.d.ts.map +1 -1
  13. package/dist/project-schema/migrate.d.ts.map +1 -1
  14. package/dist/project-schema/migrate.js +4 -0
  15. package/dist/project-schema/v3.31.0.d.ts +1449 -0
  16. package/dist/project-schema/v3.31.0.d.ts.map +1 -0
  17. package/dist/project-schema/v3.31.0.js +5 -0
  18. package/dist/relationships.js +2 -2
  19. package/dist/schema-util.d.ts +2 -2
  20. package/dist/schema-util.d.ts.map +1 -1
  21. package/dist/schema-util.js +12 -12
  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 +89 -32
  27. package/dist/schemas/project-schema/v3.31.0.json +3089 -0
  28. package/dist/schemas/project-schema.json +7 -1
  29. package/dist/types/types.d.ts +4 -4
  30. package/dist/types/types.d.ts.map +1 -1
  31. package/dist/types/utils.d.ts +4 -3
  32. package/dist/types/utils.d.ts.map +1 -1
  33. package/dist/types/utils.js +9 -3
  34. package/dist/validate.d.ts.map +1 -1
  35. package/dist/validate.js +13 -3
  36. package/es/builtin-schema.js +20 -20
  37. package/es/migration/index.js +3 -1
  38. package/es/migration/to/v3.31.0.js +38 -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.31.0.js +1 -0
  42. package/es/relationships.js +2 -2
  43. package/es/schema-util.js +12 -12
  44. package/es/schemas/index.js +4 -3
  45. package/es/schemas/index.ts +4 -2
  46. package/es/schemas/project-schema/latest.json +89 -32
  47. package/es/schemas/project-schema/v3.31.0.json +3089 -0
  48. package/es/schemas/project-schema.json +7 -1
  49. package/es/types/utils.js +7 -3
  50. package/es/validate.js +13 -3
  51. package/examples/dependencies/stripe-starter-resolved.json +210 -210
  52. package/examples/latest/betzino.json +4383 -4383
  53. package/examples/latest/blog-schema.json +49 -49
  54. package/examples/latest/brewery-schema.json +39 -39
  55. package/examples/latest/complex-project-schema.json +412 -412
  56. package/examples/latest/complex-schema.json +1166 -1166
  57. package/examples/latest/fabric-ecommerce.json +17 -17
  58. package/examples/latest/frank-and-fred-schema.json +2242 -2242
  59. package/examples/latest/klirr-schema.json +3254 -3254
  60. package/examples/latest/massive-schema.json +785 -785
  61. package/examples/latest/mill-components-schema.json +215 -215
  62. package/examples/latest/one-earth.json +1394 -1394
  63. package/examples/latest/pet-oneof-array.json +33 -33
  64. package/examples/latest/post-schema.json +32 -32
  65. package/examples/latest/pruned-shopify-product-schema.json +1 -1
  66. package/examples/latest/real-world-schema.json +94 -94
  67. package/examples/latest/recursive-repeater-schema.json +17 -17
  68. package/examples/latest/recursive-schema.json +17 -17
  69. package/examples/latest/rick-and-morty-ast.json +180 -180
  70. package/examples/latest/rick-and-morty-graphql.json +133 -133
  71. package/examples/latest/rick-and-morty-rest.json +1 -1
  72. package/examples/latest/schema-with-repeater-draftjs.json +48 -48
  73. package/examples/latest/shape-books-v3_2_0.json +137 -137
  74. package/examples/latest/shape-books.json +137 -137
  75. package/examples/latest/shopify-lookbook.json +41 -41
  76. package/examples/latest/shopify-product-2022-07.json +124 -124
  77. package/examples/latest/shopify-product-2023-04.json +125 -125
  78. package/examples/latest/shopify-store-with-widget.json +94 -94
  79. package/examples/latest/stripe-product-runtime-schema.json +127 -130
  80. package/examples/latest/stripe-starter-resolved.json +300 -509
  81. package/examples/latest/user-schema-no-required.json +22 -22
  82. package/examples/latest/user-schema-with-defaults.json +23 -23
  83. package/package.json +5 -5
  84. package/examples/latest/shopify-namespace-schema.json +0 -364
@@ -174,8 +174,8 @@
174
174
  "getBeer": {
175
175
  "args": "TSGetArgs<Beer>",
176
176
  "resolver": {
177
- "name": "takeshape:get",
178
- "service": "takeshape:local",
177
+ "name": "shapedb:get",
178
+ "service": "shapedb",
179
179
  "shapeName": "Beer"
180
180
  },
181
181
  "shape": "Beer",
@@ -184,8 +184,8 @@
184
184
  "getBeerList": {
185
185
  "args": "TSListArgs<Beer>",
186
186
  "resolver": {
187
- "name": "takeshape:list",
188
- "service": "takeshape:local",
187
+ "name": "shapedb:list",
188
+ "service": "shapedb",
189
189
  "shapeName": "Beer"
190
190
  },
191
191
  "shape": "PaginatedList<Beer>",
@@ -194,8 +194,8 @@
194
194
  "getPost": {
195
195
  "args": "TSGetArgs<Post>",
196
196
  "resolver": {
197
- "name": "takeshape:get",
198
- "service": "takeshape:local",
197
+ "name": "shapedb:get",
198
+ "service": "shapedb",
199
199
  "shapeName": "Post"
200
200
  },
201
201
  "shape": "Post",
@@ -204,8 +204,8 @@
204
204
  "getPostList": {
205
205
  "args": "TSListArgs<Post>",
206
206
  "resolver": {
207
- "name": "takeshape:list",
208
- "service": "takeshape:local",
207
+ "name": "shapedb:list",
208
+ "service": "shapedb",
209
209
  "shapeName": "Post"
210
210
  },
211
211
  "shape": "PaginatedList<Post>",
@@ -214,8 +214,8 @@
214
214
  "getHomepage": {
215
215
  "args": "TSGetSingletonArgs<Homepage>",
216
216
  "resolver": {
217
- "name": "takeshape:get",
218
- "service": "takeshape:local",
217
+ "name": "shapedb:get",
218
+ "service": "shapedb",
219
219
  "shapeName": "Homepage"
220
220
  },
221
221
  "shape": "Homepage",
@@ -224,8 +224,8 @@
224
224
  "getAsset": {
225
225
  "args": "TSGetArgs<Asset>",
226
226
  "resolver": {
227
- "name": "takeshape:get",
228
- "service": "takeshape:local",
227
+ "name": "shapedb:get",
228
+ "service": "shapedb",
229
229
  "shapeName": "Asset"
230
230
  },
231
231
  "shape": "Asset",
@@ -234,8 +234,8 @@
234
234
  "getAssetList": {
235
235
  "args": "TSListArgs<Asset>",
236
236
  "resolver": {
237
- "name": "takeshape:list",
238
- "service": "takeshape:local",
237
+ "name": "shapedb:list",
238
+ "service": "shapedb",
239
239
  "shapeName": "Asset"
240
240
  },
241
241
  "shape": "PaginatedList<Asset>",
@@ -244,8 +244,8 @@
244
244
  "getTsStaticSite": {
245
245
  "args": "TSGetArgs<TsStaticSite>",
246
246
  "resolver": {
247
- "name": "takeshape:get",
248
- "service": "takeshape:local",
247
+ "name": "shapedb:get",
248
+ "service": "shapedb",
249
249
  "shapeName": "TsStaticSite"
250
250
  },
251
251
  "shape": "TsStaticSite",
@@ -254,8 +254,8 @@
254
254
  "getTsStaticSiteList": {
255
255
  "args": "TSListArgs<TsStaticSite>",
256
256
  "resolver": {
257
- "name": "takeshape:list",
258
- "service": "takeshape:local",
257
+ "name": "shapedb:list",
258
+ "service": "shapedb",
259
259
  "shapeName": "TsStaticSite"
260
260
  },
261
261
  "shape": "PaginatedList<TsStaticSite>",
@@ -266,8 +266,8 @@
266
266
  "updateBeer": {
267
267
  "args": "UpdateArgs<Beer>",
268
268
  "resolver": {
269
- "name": "takeshape:update",
270
- "service": "takeshape:local",
269
+ "name": "shapedb:update",
270
+ "service": "shapedb",
271
271
  "shapeName": "Beer"
272
272
  },
273
273
  "shape": "UpdateResult<Beer>",
@@ -276,8 +276,8 @@
276
276
  "createBeer": {
277
277
  "args": "CreateArgs<Beer>",
278
278
  "resolver": {
279
- "name": "takeshape:create",
280
- "service": "takeshape:local",
279
+ "name": "shapedb:create",
280
+ "service": "shapedb",
281
281
  "shapeName": "Beer"
282
282
  },
283
283
  "shape": "CreateResult<Beer>",
@@ -286,8 +286,8 @@
286
286
  "duplicateBeer": {
287
287
  "args": "DuplicateArgs<Beer>",
288
288
  "resolver": {
289
- "name": "takeshape:duplicate",
290
- "service": "takeshape:local",
289
+ "name": "shapedb:duplicate",
290
+ "service": "shapedb",
291
291
  "shapeName": "Beer"
292
292
  },
293
293
  "shape": "DuplicateResult<Beer>",
@@ -296,8 +296,8 @@
296
296
  "deleteBeer": {
297
297
  "args": "DeleteArgs<Beer>",
298
298
  "resolver": {
299
- "name": "takeshape:delete",
300
- "service": "takeshape:local",
299
+ "name": "shapedb:delete",
300
+ "service": "shapedb",
301
301
  "shapeName": "Beer"
302
302
  },
303
303
  "shape": "DeleteResult<Beer>",
@@ -306,8 +306,8 @@
306
306
  "updatePost": {
307
307
  "args": "UpdateArgs<Post>",
308
308
  "resolver": {
309
- "name": "takeshape:update",
310
- "service": "takeshape:local",
309
+ "name": "shapedb:update",
310
+ "service": "shapedb",
311
311
  "shapeName": "Post"
312
312
  },
313
313
  "shape": "UpdateResult<Post>",
@@ -316,8 +316,8 @@
316
316
  "createPost": {
317
317
  "args": "CreateArgs<Post>",
318
318
  "resolver": {
319
- "name": "takeshape:create",
320
- "service": "takeshape:local",
319
+ "name": "shapedb:create",
320
+ "service": "shapedb",
321
321
  "shapeName": "Post"
322
322
  },
323
323
  "shape": "CreateResult<Post>",
@@ -326,8 +326,8 @@
326
326
  "duplicatePost": {
327
327
  "args": "DuplicateArgs<Post>",
328
328
  "resolver": {
329
- "name": "takeshape:duplicate",
330
- "service": "takeshape:local",
329
+ "name": "shapedb:duplicate",
330
+ "service": "shapedb",
331
331
  "shapeName": "Post"
332
332
  },
333
333
  "shape": "DuplicateResult<Post>",
@@ -336,8 +336,8 @@
336
336
  "deletePost": {
337
337
  "args": "DeleteArgs<Post>",
338
338
  "resolver": {
339
- "name": "takeshape:delete",
340
- "service": "takeshape:local",
339
+ "name": "shapedb:delete",
340
+ "service": "shapedb",
341
341
  "shapeName": "Post"
342
342
  },
343
343
  "shape": "DeleteResult<Post>",
@@ -346,8 +346,8 @@
346
346
  "updateHomepage": {
347
347
  "args": "UpdateArgs<Homepage>",
348
348
  "resolver": {
349
- "name": "takeshape:update",
350
- "service": "takeshape:local",
349
+ "name": "shapedb:update",
350
+ "service": "shapedb",
351
351
  "shapeName": "Homepage"
352
352
  },
353
353
  "shape": "UpdateResult<Homepage>",
@@ -356,8 +356,8 @@
356
356
  "updateAsset": {
357
357
  "args": "UpdateArgs<Asset>",
358
358
  "resolver": {
359
- "name": "takeshape:update",
360
- "service": "takeshape:local",
359
+ "name": "shapedb:update",
360
+ "service": "shapedb",
361
361
  "shapeName": "Asset"
362
362
  },
363
363
  "shape": "UpdateResult<Asset>",
@@ -366,8 +366,8 @@
366
366
  "createAsset": {
367
367
  "args": "CreateArgs<Asset>",
368
368
  "resolver": {
369
- "name": "takeshape:create",
370
- "service": "takeshape:local",
369
+ "name": "shapedb:create",
370
+ "service": "shapedb",
371
371
  "shapeName": "Asset"
372
372
  },
373
373
  "shape": "CreateResult<Asset>",
@@ -376,8 +376,8 @@
376
376
  "duplicateAsset": {
377
377
  "args": "DuplicateArgs<Asset>",
378
378
  "resolver": {
379
- "name": "takeshape:duplicate",
380
- "service": "takeshape:local",
379
+ "name": "shapedb:duplicate",
380
+ "service": "shapedb",
381
381
  "shapeName": "Asset"
382
382
  },
383
383
  "shape": "DuplicateResult<Asset>",
@@ -386,8 +386,8 @@
386
386
  "deleteAsset": {
387
387
  "args": "DeleteArgs<Asset>",
388
388
  "resolver": {
389
- "name": "takeshape:delete",
390
- "service": "takeshape:local",
389
+ "name": "shapedb:delete",
390
+ "service": "shapedb",
391
391
  "shapeName": "Asset"
392
392
  },
393
393
  "shape": "DeleteResult<Asset>",
@@ -396,8 +396,8 @@
396
396
  "updateTsStaticSite": {
397
397
  "args": "UpdateArgs<TsStaticSite>",
398
398
  "resolver": {
399
- "name": "takeshape:update",
400
- "service": "takeshape:local",
399
+ "name": "shapedb:update",
400
+ "service": "shapedb",
401
401
  "shapeName": "TsStaticSite"
402
402
  },
403
403
  "shape": "UpdateResult<TsStaticSite>",
@@ -406,8 +406,8 @@
406
406
  "createTsStaticSite": {
407
407
  "args": "CreateArgs<TsStaticSite>",
408
408
  "resolver": {
409
- "name": "takeshape:create",
410
- "service": "takeshape:local",
409
+ "name": "shapedb:create",
410
+ "service": "shapedb",
411
411
  "shapeName": "TsStaticSite"
412
412
  },
413
413
  "shape": "CreateResult<TsStaticSite>",
@@ -416,8 +416,8 @@
416
416
  "duplicateTsStaticSite": {
417
417
  "args": "DuplicateArgs<TsStaticSite>",
418
418
  "resolver": {
419
- "name": "takeshape:duplicate",
420
- "service": "takeshape:local",
419
+ "name": "shapedb:duplicate",
420
+ "service": "shapedb",
421
421
  "shapeName": "TsStaticSite"
422
422
  },
423
423
  "shape": "DuplicateResult<TsStaticSite>",
@@ -426,8 +426,8 @@
426
426
  "deleteTsStaticSite": {
427
427
  "args": "DeleteArgs<TsStaticSite>",
428
428
  "resolver": {
429
- "name": "takeshape:delete",
430
- "service": "takeshape:local",
429
+ "name": "shapedb:delete",
430
+ "service": "shapedb",
431
431
  "shapeName": "TsStaticSite"
432
432
  },
433
433
  "shape": "DeleteResult<TsStaticSite>",
@@ -454,12 +454,12 @@
454
454
  "title": "Name",
455
455
  "description": "Very impressive very important",
456
456
  "minLength": 1,
457
- "@mapping": "takeshape:local:Beer.rk-Vsa4Gl"
457
+ "@mapping": "shapedb:Beer.rk-Vsa4Gl"
458
458
  },
459
459
  "about": {
460
460
  "type": "object",
461
461
  "title": "About",
462
- "@mapping": "takeshape:local:Beer.S1p2CYznZ",
462
+ "@mapping": "shapedb:Beer.S1p2CYznZ",
463
463
  "@tag": "draftjs"
464
464
  },
465
465
  "_updatedAt": {
@@ -488,7 +488,7 @@
488
488
  ]
489
489
  }
490
490
  ],
491
- "@mapping": "takeshape:local:Beer.SylJmaIVz"
491
+ "@mapping": "shapedb:Beer.SylJmaIVz"
492
492
  },
493
493
  "_enabledAt": {
494
494
  "type": "string",
@@ -497,7 +497,7 @@
497
497
  },
498
498
  "similarBeers": {
499
499
  "title": "Similar Beers",
500
- "@mapping": "takeshape:local:Beer.ry5xpLhoZ",
500
+ "@mapping": "shapedb:Beer.ry5xpLhoZ",
501
501
  "items": {
502
502
  "@ref": "local:Beer"
503
503
  },
@@ -513,8 +513,8 @@
513
513
  },
514
514
  "@args": "TSRelationshipArgs",
515
515
  "@resolver": {
516
- "name": "takeshape:getRelated",
517
- "service": "takeshape:local",
516
+ "name": "shapedb:getRelated",
517
+ "service": "shapedb",
518
518
  "options": {
519
519
  "nullable": true
520
520
  }
@@ -531,7 +531,7 @@
531
531
  "image": {
532
532
  "title": "Image",
533
533
  "description": "An image",
534
- "@mapping": "takeshape:local:Beer.S15VspNMl",
534
+ "@mapping": "shapedb:Beer.S15VspNMl",
535
535
  "@backreference": {
536
536
  "enabled": true
537
537
  },
@@ -541,8 +541,8 @@
541
541
  },
542
542
  "@args": "TSRelationshipArgs",
543
543
  "@resolver": {
544
- "name": "takeshape:getRelated",
545
- "service": "takeshape:local",
544
+ "name": "shapedb:getRelated",
545
+ "service": "shapedb",
546
546
  "options": {
547
547
  "nullable": true
548
548
  }
@@ -557,7 +557,7 @@
557
557
  "type": "string",
558
558
  "title": "Publish Date",
559
559
  "format": "date-time",
560
- "@mapping": "takeshape:local:Beer.Hy8mZOdZf"
560
+ "@mapping": "shapedb:Beer.Hy8mZOdZf"
561
561
  },
562
562
  "_contentTypeName": {
563
563
  "type": "string",
@@ -587,7 +587,7 @@
587
587
  "items": {
588
588
  "$ref": "#/shapes/PostBody/schema"
589
589
  },
590
- "@mapping": "takeshape:local:Post.BkVCpTNzg"
590
+ "@mapping": "shapedb:Post.BkVCpTNzg"
591
591
  },
592
592
  "_enabled": {
593
593
  "type": "boolean",
@@ -625,7 +625,7 @@
625
625
  ]
626
626
  }
627
627
  ],
628
- "@mapping": "takeshape:local:Post.B1MWaFTjl"
628
+ "@mapping": "shapedb:Post.B1MWaFTjl"
629
629
  },
630
630
  "_enabledAt": {
631
631
  "type": "string",
@@ -637,12 +637,12 @@
637
637
  "title": "Title",
638
638
  "minLength": 0,
639
639
  "pattern": "^[\\S\\s]*?$",
640
- "@mapping": "takeshape:local:Post.BJ-jTTNMg"
640
+ "@mapping": "shapedb:Post.BJ-jTTNMg"
641
641
  },
642
642
  "content": {
643
643
  "type": "object",
644
644
  "title": "Content",
645
- "@mapping": "takeshape:local:Post.rkFtL3Yil",
645
+ "@mapping": "shapedb:Post.rkFtL3Yil",
646
646
  "@tag": "draftjs"
647
647
  },
648
648
  "_version": {
@@ -655,7 +655,7 @@
655
655
  },
656
656
  "relatedBeer": {
657
657
  "title": "Related Beer",
658
- "@mapping": "takeshape:local:Post.B1fAr2Yjx",
658
+ "@mapping": "shapedb:Post.B1fAr2Yjx",
659
659
  "items": {
660
660
  "@ref": "local:Beer"
661
661
  },
@@ -672,8 +672,8 @@
672
672
  },
673
673
  "@args": "TSRelationshipArgs",
674
674
  "@resolver": {
675
- "name": "takeshape:getRelated",
676
- "service": "takeshape:local",
675
+ "name": "shapedb:getRelated",
676
+ "service": "shapedb",
677
677
  "options": {
678
678
  "nullable": true
679
679
  }
@@ -701,7 +701,7 @@
701
701
  "image": {
702
702
  "title": "Image",
703
703
  "description": "An image",
704
- "@mapping": "takeshape:local:PostBody.rJg1ATEMg",
704
+ "@mapping": "shapedb:PostBody.rJg1ATEMg",
705
705
  "@backreference": {
706
706
  "enabled": true
707
707
  },
@@ -711,8 +711,8 @@
711
711
  },
712
712
  "@args": "TSRelationshipArgs",
713
713
  "@resolver": {
714
- "name": "takeshape:getRelated",
715
- "service": "takeshape:local",
714
+ "name": "shapedb:getRelated",
715
+ "service": "shapedb",
716
716
  "options": {
717
717
  "nullable": true
718
718
  }
@@ -723,7 +723,7 @@
723
723
  "title": "Text",
724
724
  "description": "A Markdown text editor.",
725
725
  "minLength": 0,
726
- "@mapping": "takeshape:local:PostBody.BJjAT6VMg"
726
+ "@mapping": "shapedb:PostBody.BJjAT6VMg"
727
727
  }
728
728
  }
729
729
  }
@@ -746,7 +746,7 @@
746
746
  "type": "string",
747
747
  "title": "Heading",
748
748
  "minLength": 0,
749
- "@mapping": "takeshape:local:Homepage.H1nl2NRFe"
749
+ "@mapping": "shapedb:Homepage.H1nl2NRFe"
750
750
  },
751
751
  "_updatedAt": {
752
752
  "type": "string",
@@ -764,7 +764,7 @@
764
764
  },
765
765
  "relationship": {
766
766
  "title": "Relationship",
767
- "@mapping": "takeshape:local:Homepage.HkiM6FO3x",
767
+ "@mapping": "shapedb:Homepage.HkiM6FO3x",
768
768
  "items": {
769
769
  "oneOf": [
770
770
  {
@@ -787,8 +787,8 @@
787
787
  },
788
788
  "@args": "TSRelationshipArgs",
789
789
  "@resolver": {
790
- "name": "takeshape:getRelated",
791
- "service": "takeshape:local",
790
+ "name": "shapedb:getRelated",
791
+ "service": "shapedb",
792
792
  "options": {
793
793
  "nullable": true
794
794
  }
@@ -831,18 +831,18 @@
831
831
  "caption": {
832
832
  "type": "object",
833
833
  "title": "Caption",
834
- "@mapping": "takeshape:local:Asset.SyWVsd98x",
834
+ "@mapping": "shapedb:Asset.SyWVsd98x",
835
835
  "@tag": "draftjs"
836
836
  },
837
837
  "filename": {
838
838
  "type": "string",
839
839
  "title": "Filename",
840
- "@mapping": "takeshape:local:Asset.H1oYQOM9"
840
+ "@mapping": "shapedb:Asset.H1oYQOM9"
841
841
  },
842
842
  "mimeType": {
843
843
  "type": "string",
844
844
  "title": "MIME type",
845
- "@mapping": "takeshape:local:Asset.SyCYX_Gq"
845
+ "@mapping": "shapedb:Asset.SyCYX_Gq"
846
846
  },
847
847
  "_updatedAt": {
848
848
  "type": "string",
@@ -856,7 +856,7 @@
856
856
  "uploadStatus": {
857
857
  "type": "string",
858
858
  "title": "Upload status",
859
- "@mapping": "takeshape:local:Asset.ByeAYXdG9"
859
+ "@mapping": "shapedb:Asset.ByeAYXdG9"
860
860
  },
861
861
  "_enabledAt": {
862
862
  "type": "string",
@@ -866,12 +866,12 @@
866
866
  "title": {
867
867
  "type": "string",
868
868
  "title": "Title",
869
- "@mapping": "takeshape:local:Asset.By5tQOMc"
869
+ "@mapping": "shapedb:Asset.By5tQOMc"
870
870
  },
871
871
  "credit": {
872
872
  "type": "object",
873
873
  "title": "Credit",
874
- "@mapping": "takeshape:local:Asset.Skn_i_5Ll",
874
+ "@mapping": "shapedb:Asset.Skn_i_5Ll",
875
875
  "@tag": "draftjs"
876
876
  },
877
877
  "_version": {
@@ -890,12 +890,12 @@
890
890
  "description": {
891
891
  "type": "string",
892
892
  "title": "Description",
893
- "@mapping": "takeshape:local:Asset.B1Zsra3fx"
893
+ "@mapping": "shapedb:Asset.B1Zsra3fx"
894
894
  },
895
895
  "path": {
896
896
  "type": "string",
897
897
  "title": "s3 key",
898
- "@mapping": "takeshape:local:Asset.Hk6FQuz5"
898
+ "@mapping": "shapedb:Asset.Hk6FQuz5"
899
899
  },
900
900
  "_contentTypeName": {
901
901
  "type": "string",
@@ -928,18 +928,18 @@
928
928
  "items": {
929
929
  "$ref": "#/shapes/TsStaticSiteEnvironmentVariables/schema"
930
930
  },
931
- "@mapping": "takeshape:local:TsStaticSite.9fj4UiNxY"
931
+ "@mapping": "shapedb:TsStaticSite.9fj4UiNxY"
932
932
  },
933
933
  "idKey": {
934
934
  "type": "string",
935
935
  "title": "Id Key",
936
936
  "minLength": 1,
937
- "@mapping": "takeshape:local:TsStaticSite.SyRhi8_me"
937
+ "@mapping": "shapedb:TsStaticSite.SyRhi8_me"
938
938
  },
939
939
  "destination": {
940
940
  "type": "string",
941
941
  "title": "Destination",
942
- "@mapping": "takeshape:local:TsStaticSite.Hk6TsIdXl"
942
+ "@mapping": "shapedb:TsStaticSite.Hk6TsIdXl"
943
943
  },
944
944
  "_updatedAt": {
945
945
  "type": "string",
@@ -951,7 +951,7 @@
951
951
  "title": "Secret Key",
952
952
  "@sensitive": true,
953
953
  "minLength": 1,
954
- "@mapping": "takeshape:local:TsStaticSite.BkIajLdXl"
954
+ "@mapping": "shapedb:TsStaticSite.BkIajLdXl"
955
955
  },
956
956
  "_contentTypeId": {
957
957
  "type": "string",
@@ -981,7 +981,7 @@
981
981
  "title": "FTP Client"
982
982
  }
983
983
  ],
984
- "@mapping": "takeshape:local:TsStaticSite.SkwbT2hqe"
984
+ "@mapping": "shapedb:TsStaticSite.SkwbT2hqe"
985
985
  },
986
986
  "_enabledAt": {
987
987
  "type": "string",
@@ -991,7 +991,7 @@
991
991
  "title": {
992
992
  "type": "string",
993
993
  "title": "Title",
994
- "@mapping": "takeshape:local:TsStaticSite.Ski9jLuXg"
994
+ "@mapping": "shapedb:TsStaticSite.Ski9jLuXg"
995
995
  },
996
996
  "_version": {
997
997
  "type": "integer",
@@ -1030,17 +1030,17 @@
1030
1030
  "name": {
1031
1031
  "type": "string",
1032
1032
  "title": "Name",
1033
- "@mapping": "takeshape:local:TsStaticSiteEnvironmentVariables.J8sbHgfdI"
1033
+ "@mapping": "shapedb:TsStaticSiteEnvironmentVariables.J8sbHgfdI"
1034
1034
  },
1035
1035
  "value": {
1036
1036
  "type": "string",
1037
1037
  "title": "Value",
1038
- "@mapping": "takeshape:local:TsStaticSiteEnvironmentVariables.ndhh88DvG"
1038
+ "@mapping": "shapedb:TsStaticSiteEnvironmentVariables.ndhh88DvG"
1039
1039
  }
1040
1040
  }
1041
1041
  }
1042
1042
  }
1043
1043
  },
1044
- "schemaVersion": "3.30.0",
1044
+ "schemaVersion": "3.31.0",
1045
1045
  "services": {}
1046
1046
  }