@takeshape/schema 9.36.4 → 9.38.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
@@ -472,8 +472,8 @@
472
472
  "getAsset": {
473
473
  "args": "TSGetArgs<Asset>",
474
474
  "resolver": {
475
- "name": "takeshape:get",
476
- "service": "takeshape:local",
475
+ "name": "shapedb:get",
476
+ "service": "shapedb",
477
477
  "shapeName": "Asset"
478
478
  },
479
479
  "shape": "Asset",
@@ -482,8 +482,8 @@
482
482
  "getAssetList": {
483
483
  "args": "TSListArgs<Asset>",
484
484
  "resolver": {
485
- "name": "takeshape:list",
486
- "service": "takeshape:local",
485
+ "name": "shapedb:list",
486
+ "service": "shapedb",
487
487
  "shapeName": "Asset"
488
488
  },
489
489
  "shape": "PaginatedList<Asset>",
@@ -492,8 +492,8 @@
492
492
  "getTsStaticSite": {
493
493
  "args": "TSGetArgs<TsStaticSite>",
494
494
  "resolver": {
495
- "name": "takeshape:get",
496
- "service": "takeshape:local",
495
+ "name": "shapedb:get",
496
+ "service": "shapedb",
497
497
  "shapeName": "TsStaticSite"
498
498
  },
499
499
  "shape": "TsStaticSite",
@@ -502,8 +502,8 @@
502
502
  "getTsStaticSiteList": {
503
503
  "args": "TSListArgs<TsStaticSite>",
504
504
  "resolver": {
505
- "name": "takeshape:list",
506
- "service": "takeshape:local",
505
+ "name": "shapedb:list",
506
+ "service": "shapedb",
507
507
  "shapeName": "TsStaticSite"
508
508
  },
509
509
  "shape": "PaginatedList<TsStaticSite>",
@@ -512,8 +512,8 @@
512
512
  "getHomepage": {
513
513
  "args": "TSGetSingletonArgs<Homepage>",
514
514
  "resolver": {
515
- "name": "takeshape:get",
516
- "service": "takeshape:local",
515
+ "name": "shapedb:get",
516
+ "service": "shapedb",
517
517
  "shapeName": "Homepage"
518
518
  },
519
519
  "shape": "Homepage",
@@ -522,8 +522,8 @@
522
522
  "getSiteSettings": {
523
523
  "args": "TSGetSingletonArgs<SiteSettings>",
524
524
  "resolver": {
525
- "name": "takeshape:get",
526
- "service": "takeshape:local",
525
+ "name": "shapedb:get",
526
+ "service": "shapedb",
527
527
  "shapeName": "SiteSettings"
528
528
  },
529
529
  "shape": "SiteSettings",
@@ -532,8 +532,8 @@
532
532
  "getTags": {
533
533
  "args": "TSGetArgs<Tags>",
534
534
  "resolver": {
535
- "name": "takeshape:get",
536
- "service": "takeshape:local",
535
+ "name": "shapedb:get",
536
+ "service": "shapedb",
537
537
  "shapeName": "Tags"
538
538
  },
539
539
  "shape": "Tags",
@@ -542,8 +542,8 @@
542
542
  "getTagsList": {
543
543
  "args": "TSListArgs<Tags>",
544
544
  "resolver": {
545
- "name": "takeshape:list",
546
- "service": "takeshape:local",
545
+ "name": "shapedb:list",
546
+ "service": "shapedb",
547
547
  "shapeName": "Tags"
548
548
  },
549
549
  "shape": "PaginatedList<Tags>",
@@ -552,8 +552,8 @@
552
552
  "getPost": {
553
553
  "args": "TSGetArgs<Post>",
554
554
  "resolver": {
555
- "name": "takeshape:get",
556
- "service": "takeshape:local",
555
+ "name": "shapedb:get",
556
+ "service": "shapedb",
557
557
  "shapeName": "Post"
558
558
  },
559
559
  "shape": "Post",
@@ -562,8 +562,8 @@
562
562
  "getPostList": {
563
563
  "args": "TSListArgs<Post>",
564
564
  "resolver": {
565
- "name": "takeshape:list",
566
- "service": "takeshape:local",
565
+ "name": "shapedb:list",
566
+ "service": "shapedb",
567
567
  "shapeName": "Post"
568
568
  },
569
569
  "shape": "PaginatedList<Post>",
@@ -572,8 +572,8 @@
572
572
  "getAuthor": {
573
573
  "args": "TSGetArgs<Author>",
574
574
  "resolver": {
575
- "name": "takeshape:get",
576
- "service": "takeshape:local",
575
+ "name": "shapedb:get",
576
+ "service": "shapedb",
577
577
  "shapeName": "Author"
578
578
  },
579
579
  "shape": "Author",
@@ -582,8 +582,8 @@
582
582
  "getAuthorList": {
583
583
  "args": "TSListArgs<Author>",
584
584
  "resolver": {
585
- "name": "takeshape:list",
586
- "service": "takeshape:local",
585
+ "name": "shapedb:list",
586
+ "service": "shapedb",
587
587
  "shapeName": "Author"
588
588
  },
589
589
  "shape": "PaginatedList<Author>",
@@ -633,8 +633,8 @@
633
633
  "updateAsset": {
634
634
  "args": "UpdateArgs<Asset>",
635
635
  "resolver": {
636
- "name": "takeshape:update",
637
- "service": "takeshape:local",
636
+ "name": "shapedb:update",
637
+ "service": "shapedb",
638
638
  "shapeName": "Asset"
639
639
  },
640
640
  "shape": "UpdateResult<Asset>",
@@ -643,8 +643,8 @@
643
643
  "createAsset": {
644
644
  "args": "CreateArgs<Asset>",
645
645
  "resolver": {
646
- "name": "takeshape:create",
647
- "service": "takeshape:local",
646
+ "name": "shapedb:create",
647
+ "service": "shapedb",
648
648
  "shapeName": "Asset"
649
649
  },
650
650
  "shape": "CreateResult<Asset>",
@@ -653,8 +653,8 @@
653
653
  "duplicateAsset": {
654
654
  "args": "DuplicateArgs<Asset>",
655
655
  "resolver": {
656
- "name": "takeshape:duplicate",
657
- "service": "takeshape:local",
656
+ "name": "shapedb:duplicate",
657
+ "service": "shapedb",
658
658
  "shapeName": "Asset"
659
659
  },
660
660
  "shape": "DuplicateResult<Asset>",
@@ -663,8 +663,8 @@
663
663
  "deleteAsset": {
664
664
  "args": "DeleteArgs<Asset>",
665
665
  "resolver": {
666
- "name": "takeshape:delete",
667
- "service": "takeshape:local",
666
+ "name": "shapedb:delete",
667
+ "service": "shapedb",
668
668
  "shapeName": "Asset"
669
669
  },
670
670
  "shape": "DeleteResult<Asset>",
@@ -673,8 +673,8 @@
673
673
  "updateTsStaticSite": {
674
674
  "args": "UpdateArgs<TsStaticSite>",
675
675
  "resolver": {
676
- "name": "takeshape:update",
677
- "service": "takeshape:local",
676
+ "name": "shapedb:update",
677
+ "service": "shapedb",
678
678
  "shapeName": "TsStaticSite"
679
679
  },
680
680
  "shape": "UpdateResult<TsStaticSite>",
@@ -683,8 +683,8 @@
683
683
  "createTsStaticSite": {
684
684
  "args": "CreateArgs<TsStaticSite>",
685
685
  "resolver": {
686
- "name": "takeshape:create",
687
- "service": "takeshape:local",
686
+ "name": "shapedb:create",
687
+ "service": "shapedb",
688
688
  "shapeName": "TsStaticSite"
689
689
  },
690
690
  "shape": "CreateResult<TsStaticSite>",
@@ -693,8 +693,8 @@
693
693
  "duplicateTsStaticSite": {
694
694
  "args": "DuplicateArgs<TsStaticSite>",
695
695
  "resolver": {
696
- "name": "takeshape:duplicate",
697
- "service": "takeshape:local",
696
+ "name": "shapedb:duplicate",
697
+ "service": "shapedb",
698
698
  "shapeName": "TsStaticSite"
699
699
  },
700
700
  "shape": "DuplicateResult<TsStaticSite>",
@@ -703,8 +703,8 @@
703
703
  "deleteTsStaticSite": {
704
704
  "args": "DeleteArgs<TsStaticSite>",
705
705
  "resolver": {
706
- "name": "takeshape:delete",
707
- "service": "takeshape:local",
706
+ "name": "shapedb:delete",
707
+ "service": "shapedb",
708
708
  "shapeName": "TsStaticSite"
709
709
  },
710
710
  "shape": "DeleteResult<TsStaticSite>",
@@ -713,8 +713,8 @@
713
713
  "updateHomepage": {
714
714
  "args": "UpdateArgs<Homepage>",
715
715
  "resolver": {
716
- "name": "takeshape:update",
717
- "service": "takeshape:local",
716
+ "name": "shapedb:update",
717
+ "service": "shapedb",
718
718
  "shapeName": "Homepage"
719
719
  },
720
720
  "shape": "UpdateResult<Homepage>",
@@ -723,8 +723,8 @@
723
723
  "updateSiteSettings": {
724
724
  "args": "UpdateArgs<SiteSettings>",
725
725
  "resolver": {
726
- "name": "takeshape:update",
727
- "service": "takeshape:local",
726
+ "name": "shapedb:update",
727
+ "service": "shapedb",
728
728
  "shapeName": "SiteSettings"
729
729
  },
730
730
  "shape": "UpdateResult<SiteSettings>",
@@ -733,8 +733,8 @@
733
733
  "updateTags": {
734
734
  "args": "UpdateArgs<Tags>",
735
735
  "resolver": {
736
- "name": "takeshape:update",
737
- "service": "takeshape:local",
736
+ "name": "shapedb:update",
737
+ "service": "shapedb",
738
738
  "shapeName": "Tags"
739
739
  },
740
740
  "shape": "UpdateResult<Tags>",
@@ -743,8 +743,8 @@
743
743
  "createTags": {
744
744
  "args": "CreateArgs<Tags>",
745
745
  "resolver": {
746
- "name": "takeshape:create",
747
- "service": "takeshape:local",
746
+ "name": "shapedb:create",
747
+ "service": "shapedb",
748
748
  "shapeName": "Tags"
749
749
  },
750
750
  "shape": "CreateResult<Tags>",
@@ -753,8 +753,8 @@
753
753
  "duplicateTags": {
754
754
  "args": "DuplicateArgs<Tags>",
755
755
  "resolver": {
756
- "name": "takeshape:duplicate",
757
- "service": "takeshape:local",
756
+ "name": "shapedb:duplicate",
757
+ "service": "shapedb",
758
758
  "shapeName": "Tags"
759
759
  },
760
760
  "shape": "DuplicateResult<Tags>",
@@ -763,8 +763,8 @@
763
763
  "deleteTags": {
764
764
  "args": "DeleteArgs<Tags>",
765
765
  "resolver": {
766
- "name": "takeshape:delete",
767
- "service": "takeshape:local",
766
+ "name": "shapedb:delete",
767
+ "service": "shapedb",
768
768
  "shapeName": "Tags"
769
769
  },
770
770
  "shape": "DeleteResult<Tags>",
@@ -773,8 +773,8 @@
773
773
  "updatePost": {
774
774
  "args": "UpdateArgs<Post>",
775
775
  "resolver": {
776
- "name": "takeshape:update",
777
- "service": "takeshape:local",
776
+ "name": "shapedb:update",
777
+ "service": "shapedb",
778
778
  "shapeName": "Post"
779
779
  },
780
780
  "shape": "UpdateResult<Post>",
@@ -783,8 +783,8 @@
783
783
  "createPost": {
784
784
  "args": "CreateArgs<Post>",
785
785
  "resolver": {
786
- "name": "takeshape:create",
787
- "service": "takeshape:local",
786
+ "name": "shapedb:create",
787
+ "service": "shapedb",
788
788
  "shapeName": "Post"
789
789
  },
790
790
  "shape": "CreateResult<Post>",
@@ -793,8 +793,8 @@
793
793
  "duplicatePost": {
794
794
  "args": "DuplicateArgs<Post>",
795
795
  "resolver": {
796
- "name": "takeshape:duplicate",
797
- "service": "takeshape:local",
796
+ "name": "shapedb:duplicate",
797
+ "service": "shapedb",
798
798
  "shapeName": "Post"
799
799
  },
800
800
  "shape": "DuplicateResult<Post>",
@@ -803,8 +803,8 @@
803
803
  "deletePost": {
804
804
  "args": "DeleteArgs<Post>",
805
805
  "resolver": {
806
- "name": "takeshape:delete",
807
- "service": "takeshape:local",
806
+ "name": "shapedb:delete",
807
+ "service": "shapedb",
808
808
  "shapeName": "Post"
809
809
  },
810
810
  "shape": "DeleteResult<Post>",
@@ -813,8 +813,8 @@
813
813
  "updateAuthor": {
814
814
  "args": "UpdateArgs<Author>",
815
815
  "resolver": {
816
- "name": "takeshape:update",
817
- "service": "takeshape:local",
816
+ "name": "shapedb:update",
817
+ "service": "shapedb",
818
818
  "shapeName": "Author"
819
819
  },
820
820
  "shape": "UpdateResult<Author>",
@@ -823,8 +823,8 @@
823
823
  "createAuthor": {
824
824
  "args": "CreateArgs<Author>",
825
825
  "resolver": {
826
- "name": "takeshape:create",
827
- "service": "takeshape:local",
826
+ "name": "shapedb:create",
827
+ "service": "shapedb",
828
828
  "shapeName": "Author"
829
829
  },
830
830
  "shape": "CreateResult<Author>",
@@ -833,8 +833,8 @@
833
833
  "duplicateAuthor": {
834
834
  "args": "DuplicateArgs<Author>",
835
835
  "resolver": {
836
- "name": "takeshape:duplicate",
837
- "service": "takeshape:local",
836
+ "name": "shapedb:duplicate",
837
+ "service": "shapedb",
838
838
  "shapeName": "Author"
839
839
  },
840
840
  "shape": "DuplicateResult<Author>",
@@ -843,8 +843,8 @@
843
843
  "deleteAuthor": {
844
844
  "args": "DeleteArgs<Author>",
845
845
  "resolver": {
846
- "name": "takeshape:delete",
847
- "service": "takeshape:local",
846
+ "name": "shapedb:delete",
847
+ "service": "shapedb",
848
848
  "shapeName": "Author"
849
849
  },
850
850
  "shape": "DeleteResult<Author>",
@@ -976,30 +976,30 @@
976
976
  "title": {
977
977
  "type": "string",
978
978
  "title": "Title",
979
- "@mapping": "takeshape:local:Asset.By5tQOMc"
979
+ "@mapping": "shapedb:Asset.By5tQOMc"
980
980
  },
981
981
  "description": {
982
982
  "type": "string",
983
983
  "title": "Description",
984
- "@mapping": "takeshape:local:Asset.B1Zsra3fx"
984
+ "@mapping": "shapedb:Asset.B1Zsra3fx"
985
985
  },
986
986
  "filename": {
987
987
  "type": "string",
988
988
  "title": "Filename",
989
989
  "@l10n": false,
990
990
  "minLength": 1,
991
- "@mapping": "takeshape:local:Asset.H1oYQOM9"
991
+ "@mapping": "shapedb:Asset.H1oYQOM9"
992
992
  },
993
993
  "caption": {
994
994
  "type": "object",
995
995
  "title": "Caption",
996
- "@mapping": "takeshape:local:Asset.SyWVsd98x",
996
+ "@mapping": "shapedb:Asset.SyWVsd98x",
997
997
  "@tag": "draftjs"
998
998
  },
999
999
  "credit": {
1000
1000
  "type": "object",
1001
1001
  "title": "Credit",
1002
- "@mapping": "takeshape:local:Asset.Skn_i_5Ll",
1002
+ "@mapping": "shapedb:Asset.Skn_i_5Ll",
1003
1003
  "@tag": "draftjs"
1004
1004
  },
1005
1005
  "path": {
@@ -1007,25 +1007,25 @@
1007
1007
  "title": "Path",
1008
1008
  "@l10n": false,
1009
1009
  "minLength": 1,
1010
- "@mapping": "takeshape:local:Asset.Hk6FQuz5"
1010
+ "@mapping": "shapedb:Asset.Hk6FQuz5"
1011
1011
  },
1012
1012
  "mimeType": {
1013
1013
  "type": "string",
1014
1014
  "title": "MIME type",
1015
1015
  "@l10n": false,
1016
- "@mapping": "takeshape:local:Asset.SyCYX_Gq"
1016
+ "@mapping": "shapedb:Asset.SyCYX_Gq"
1017
1017
  },
1018
1018
  "sourceUrl": {
1019
1019
  "type": "string",
1020
1020
  "title": "Source URL",
1021
1021
  "@l10n": false,
1022
- "@mapping": "takeshape:local:Asset.SJXSidnXE"
1022
+ "@mapping": "shapedb:Asset.SJXSidnXE"
1023
1023
  },
1024
1024
  "uploadStatus": {
1025
1025
  "type": "string",
1026
1026
  "title": "Upload status",
1027
1027
  "@l10n": false,
1028
- "@mapping": "takeshape:local:Asset.ByeAYXdG9"
1028
+ "@mapping": "shapedb:Asset.ByeAYXdG9"
1029
1029
  },
1030
1030
  "_id": {
1031
1031
  "title": "Id",
@@ -1056,7 +1056,7 @@
1056
1056
  },
1057
1057
  "@resolver": {
1058
1058
  "name": "takeshape:getUser",
1059
- "service": "takeshape:local"
1059
+ "service": "takeshape"
1060
1060
  }
1061
1061
  },
1062
1062
  "_updatedAt": {
@@ -1072,7 +1072,7 @@
1072
1072
  },
1073
1073
  "@resolver": {
1074
1074
  "name": "takeshape:getUser",
1075
- "service": "takeshape:local"
1075
+ "service": "takeshape"
1076
1076
  }
1077
1077
  },
1078
1078
  "_schemaVersion": {
@@ -1117,14 +1117,14 @@
1117
1117
  "title": "Title",
1118
1118
  "@l10n": false,
1119
1119
  "minLength": 1,
1120
- "@mapping": "takeshape:local:TsStaticSite.Ski9jLuXg"
1120
+ "@mapping": "shapedb:TsStaticSite.Ski9jLuXg"
1121
1121
  },
1122
1122
  "baseUrl": {
1123
1123
  "type": "string",
1124
1124
  "title": "Base URL",
1125
1125
  "@l10n": false,
1126
1126
  "minLength": 1,
1127
- "@mapping": "takeshape:local:TsStaticSite.Bk3tNmrfE"
1127
+ "@mapping": "shapedb:TsStaticSite.Bk3tNmrfE"
1128
1128
  },
1129
1129
  "provider": {
1130
1130
  "type": "string",
@@ -1169,14 +1169,14 @@
1169
1169
  "title": "Vercel"
1170
1170
  }
1171
1171
  ],
1172
- "@mapping": "takeshape:local:TsStaticSite.SkwbT2hqe"
1172
+ "@mapping": "shapedb:TsStaticSite.SkwbT2hqe"
1173
1173
  },
1174
1174
  "idKey": {
1175
1175
  "type": "string",
1176
1176
  "title": "Id Key",
1177
1177
  "@l10n": false,
1178
1178
  "minLength": 1,
1179
- "@mapping": "takeshape:local:TsStaticSite.SyRhi8_me"
1179
+ "@mapping": "shapedb:TsStaticSite.SyRhi8_me"
1180
1180
  },
1181
1181
  "secretKey": {
1182
1182
  "type": "string",
@@ -1184,20 +1184,20 @@
1184
1184
  "@l10n": false,
1185
1185
  "@sensitive": true,
1186
1186
  "minLength": 1,
1187
- "@mapping": "takeshape:local:TsStaticSite.BkIajLdXl"
1187
+ "@mapping": "shapedb:TsStaticSite.BkIajLdXl"
1188
1188
  },
1189
1189
  "destination": {
1190
1190
  "type": "string",
1191
1191
  "title": "Destination",
1192
1192
  "@l10n": false,
1193
1193
  "minLength": 1,
1194
- "@mapping": "takeshape:local:TsStaticSite.Hk6TsIdXl"
1194
+ "@mapping": "shapedb:TsStaticSite.Hk6TsIdXl"
1195
1195
  },
1196
1196
  "privateAcl": {
1197
1197
  "type": "boolean",
1198
1198
  "title": "Private ACL",
1199
1199
  "@l10n": false,
1200
- "@mapping": "takeshape:local:TsStaticSite.ByFe48wWU"
1200
+ "@mapping": "shapedb:TsStaticSite.ByFe48wWU"
1201
1201
  },
1202
1202
  "environmentVariables": {
1203
1203
  "type": "array",
@@ -1206,7 +1206,7 @@
1206
1206
  "items": {
1207
1207
  "$ref": "#/shapes/TsStaticSiteEnvironmentVariables/schema"
1208
1208
  },
1209
- "@mapping": "takeshape:local:TsStaticSite.9fj4UiNxY"
1209
+ "@mapping": "shapedb:TsStaticSite.9fj4UiNxY"
1210
1210
  },
1211
1211
  "triggers": {
1212
1212
  "type": "array",
@@ -1220,7 +1220,7 @@
1220
1220
  "type": "string",
1221
1221
  "title": "Template Hash",
1222
1222
  "@l10n": false,
1223
- "@mapping": "takeshape:local:TsStaticSite.S1QA3GYI8"
1223
+ "@mapping": "shapedb:TsStaticSite.S1QA3GYI8"
1224
1224
  },
1225
1225
  "_id": {
1226
1226
  "title": "Id",
@@ -1251,7 +1251,7 @@
1251
1251
  },
1252
1252
  "@resolver": {
1253
1253
  "name": "takeshape:getUser",
1254
- "service": "takeshape:local"
1254
+ "service": "takeshape"
1255
1255
  }
1256
1256
  },
1257
1257
  "_updatedAt": {
@@ -1267,7 +1267,7 @@
1267
1267
  },
1268
1268
  "@resolver": {
1269
1269
  "name": "takeshape:getUser",
1270
- "service": "takeshape:local"
1270
+ "service": "takeshape"
1271
1271
  }
1272
1272
  },
1273
1273
  "_schemaVersion": {
@@ -1308,12 +1308,12 @@
1308
1308
  "name": {
1309
1309
  "type": "string",
1310
1310
  "title": "Name",
1311
- "@mapping": "takeshape:local:TsStaticSite.J8sbHgfdI"
1311
+ "@mapping": "shapedb:TsStaticSite.J8sbHgfdI"
1312
1312
  },
1313
1313
  "value": {
1314
1314
  "type": "string",
1315
1315
  "title": "Value",
1316
- "@mapping": "takeshape:local:TsStaticSite.ndhh88DvG"
1316
+ "@mapping": "shapedb:TsStaticSite.ndhh88DvG"
1317
1317
  }
1318
1318
  }
1319
1319
  }
@@ -1350,11 +1350,11 @@
1350
1350
  "type": "string",
1351
1351
  "title": "Title",
1352
1352
  "minLength": 0,
1353
- "@mapping": "takeshape:local:Homepage.BJfmu0OIZ"
1353
+ "@mapping": "shapedb:Homepage.BJfmu0OIZ"
1354
1354
  },
1355
1355
  "hero": {
1356
1356
  "title": "Hero",
1357
- "@mapping": "takeshape:local:Homepage.ry4VnCD8W",
1357
+ "@mapping": "shapedb:Homepage.ry4VnCD8W",
1358
1358
  "$ref": "#/shapes/HomepageHero/schema"
1359
1359
  },
1360
1360
  "_id": {
@@ -1386,7 +1386,7 @@
1386
1386
  },
1387
1387
  "@resolver": {
1388
1388
  "name": "takeshape:getUser",
1389
- "service": "takeshape:local"
1389
+ "service": "takeshape"
1390
1390
  }
1391
1391
  },
1392
1392
  "_updatedAt": {
@@ -1402,7 +1402,7 @@
1402
1402
  },
1403
1403
  "@resolver": {
1404
1404
  "name": "takeshape:getUser",
1405
- "service": "takeshape:local"
1405
+ "service": "takeshape"
1406
1406
  }
1407
1407
  },
1408
1408
  "_schemaVersion": {
@@ -1437,7 +1437,7 @@
1437
1437
  "properties": {
1438
1438
  "image": {
1439
1439
  "title": "Image",
1440
- "@mapping": "takeshape:local:HomepageHero.H1vBnAv8-",
1440
+ "@mapping": "shapedb:HomepageHero.H1vBnAv8-",
1441
1441
  "@backreference": {
1442
1442
  "enabled": true
1443
1443
  },
@@ -1447,8 +1447,8 @@
1447
1447
  },
1448
1448
  "@args": "TSRelationshipArgs",
1449
1449
  "@resolver": {
1450
- "name": "takeshape:getRelated",
1451
- "service": "takeshape:local",
1450
+ "name": "shapedb:getRelated",
1451
+ "service": "shapedb",
1452
1452
  "options": {
1453
1453
  "nullable": true
1454
1454
  }
@@ -1456,7 +1456,7 @@
1456
1456
  },
1457
1457
  "featuredPost": {
1458
1458
  "title": "Featured Post",
1459
- "@mapping": "takeshape:local:HomepageHero.SJ1Xo0v8b",
1459
+ "@mapping": "shapedb:HomepageHero.SJ1Xo0v8b",
1460
1460
  "@backreference": {
1461
1461
  "enabled": true,
1462
1462
  "name": "heroFeaturedPost"
@@ -1467,8 +1467,8 @@
1467
1467
  },
1468
1468
  "@args": "TSRelationshipArgs",
1469
1469
  "@resolver": {
1470
- "name": "takeshape:getRelated",
1471
- "service": "takeshape:local",
1470
+ "name": "shapedb:getRelated",
1471
+ "service": "shapedb",
1472
1472
  "options": {
1473
1473
  "nullable": true
1474
1474
  }
@@ -1491,7 +1491,7 @@
1491
1491
  "type": "string",
1492
1492
  "title": "Site Title",
1493
1493
  "minLength": 0,
1494
- "@mapping": "takeshape:local:SiteSettings.SkVAQA_8Z"
1494
+ "@mapping": "shapedb:SiteSettings.SkVAQA_8Z"
1495
1495
  },
1496
1496
  "_id": {
1497
1497
  "title": "Id",
@@ -1522,7 +1522,7 @@
1522
1522
  },
1523
1523
  "@resolver": {
1524
1524
  "name": "takeshape:getUser",
1525
- "service": "takeshape:local"
1525
+ "service": "takeshape"
1526
1526
  }
1527
1527
  },
1528
1528
  "_updatedAt": {
@@ -1538,7 +1538,7 @@
1538
1538
  },
1539
1539
  "@resolver": {
1540
1540
  "name": "takeshape:getUser",
1541
- "service": "takeshape:local"
1541
+ "service": "takeshape"
1542
1542
  }
1543
1543
  },
1544
1544
  "_schemaVersion": {
@@ -1578,7 +1578,7 @@
1578
1578
  "type": "string",
1579
1579
  "title": "Name",
1580
1580
  "minLength": 0,
1581
- "@mapping": "takeshape:local:Tags.BJ6mWE1um"
1581
+ "@mapping": "shapedb:Tags.BJ6mWE1um"
1582
1582
  },
1583
1583
  "_id": {
1584
1584
  "title": "Id",
@@ -1609,7 +1609,7 @@
1609
1609
  },
1610
1610
  "@resolver": {
1611
1611
  "name": "takeshape:getUser",
1612
- "service": "takeshape:local"
1612
+ "service": "takeshape"
1613
1613
  }
1614
1614
  },
1615
1615
  "_updatedAt": {
@@ -1625,7 +1625,7 @@
1625
1625
  },
1626
1626
  "@resolver": {
1627
1627
  "name": "takeshape:getUser",
1628
- "service": "takeshape:local"
1628
+ "service": "takeshape"
1629
1629
  }
1630
1630
  },
1631
1631
  "_schemaVersion": {
@@ -1666,21 +1666,21 @@
1666
1666
  "minLength": 1,
1667
1667
  "type": "string",
1668
1668
  "title": "Title",
1669
- "@mapping": "takeshape:local:Post.BkJDGhw8W"
1669
+ "@mapping": "shapedb:Post.BkJDGhw8W"
1670
1670
  },
1671
1671
  "slug": {
1672
1672
  "pattern": "[\\w-_]+",
1673
1673
  "minLength": 1,
1674
1674
  "type": "string",
1675
1675
  "title": "Slug",
1676
- "@mapping": "takeshape:local:Post.Qty0GHozJ"
1676
+ "@mapping": "shapedb:Post.Qty0GHozJ"
1677
1677
  },
1678
1678
  "characterId": {
1679
1679
  "type": "string",
1680
1680
  "minLength": 0,
1681
1681
  "description": "",
1682
1682
  "title": "Character Id",
1683
- "@mapping": "takeshape:local:Post.X5uy5bJh8"
1683
+ "@mapping": "shapedb:Post.X5uy5bJh8"
1684
1684
  },
1685
1685
  "character": {
1686
1686
  "@ref": "rick-n-morty:Character",
@@ -1708,7 +1708,7 @@
1708
1708
  "@ref": "local:Tags"
1709
1709
  },
1710
1710
  "title": "Tags",
1711
- "@mapping": "takeshape:local:Post.S1yO-EJdX",
1711
+ "@mapping": "shapedb:Post.S1yO-EJdX",
1712
1712
  "@backreference": {
1713
1713
  "enabled": true
1714
1714
  },
@@ -1721,8 +1721,8 @@
1721
1721
  },
1722
1722
  "@args": "TSRelationshipArgs",
1723
1723
  "@resolver": {
1724
- "name": "takeshape:getRelated",
1725
- "service": "takeshape:local",
1724
+ "name": "shapedb:getRelated",
1725
+ "service": "shapedb",
1726
1726
  "options": {
1727
1727
  "nullable": true
1728
1728
  }
@@ -1732,11 +1732,11 @@
1732
1732
  "minLength": 0,
1733
1733
  "type": "string",
1734
1734
  "title": "Deck",
1735
- "@mapping": "takeshape:local:Post.HkJzKRDUb"
1735
+ "@mapping": "shapedb:Post.HkJzKRDUb"
1736
1736
  },
1737
1737
  "author": {
1738
1738
  "title": "Author",
1739
- "@mapping": "takeshape:local:Post.rJgad7TLZ",
1739
+ "@mapping": "shapedb:Post.rJgad7TLZ",
1740
1740
  "@backreference": {
1741
1741
  "enabled": true
1742
1742
  },
@@ -1746,8 +1746,8 @@
1746
1746
  },
1747
1747
  "@args": "TSRelationshipArgs",
1748
1748
  "@resolver": {
1749
- "name": "takeshape:getRelated",
1750
- "service": "takeshape:local",
1749
+ "name": "shapedb:getRelated",
1750
+ "service": "shapedb",
1751
1751
  "options": {
1752
1752
  "nullable": true
1753
1753
  }
@@ -1755,7 +1755,7 @@
1755
1755
  },
1756
1756
  "featureImage": {
1757
1757
  "title": "Feature Image",
1758
- "@mapping": "takeshape:local:Post.BybUznPIW",
1758
+ "@mapping": "shapedb:Post.BybUznPIW",
1759
1759
  "@backreference": {
1760
1760
  "enabled": true
1761
1761
  },
@@ -1765,8 +1765,8 @@
1765
1765
  },
1766
1766
  "@args": "TSRelationshipArgs",
1767
1767
  "@resolver": {
1768
- "name": "takeshape:getRelated",
1769
- "service": "takeshape:local",
1768
+ "name": "shapedb:getRelated",
1769
+ "service": "shapedb",
1770
1770
  "options": {
1771
1771
  "nullable": true
1772
1772
  }
@@ -1776,7 +1776,7 @@
1776
1776
  "type": "object",
1777
1777
  "@tag": "draftjs",
1778
1778
  "title": "Body",
1779
- "@mapping": "takeshape:local:Post.rybsZhDU-"
1779
+ "@mapping": "shapedb:Post.rybsZhDU-"
1780
1780
  },
1781
1781
  "_id": {
1782
1782
  "title": "Id",
@@ -1807,7 +1807,7 @@
1807
1807
  },
1808
1808
  "@resolver": {
1809
1809
  "name": "takeshape:getUser",
1810
- "service": "takeshape:local"
1810
+ "service": "takeshape"
1811
1811
  }
1812
1812
  },
1813
1813
  "_updatedAt": {
@@ -1823,7 +1823,7 @@
1823
1823
  },
1824
1824
  "@resolver": {
1825
1825
  "name": "takeshape:getUser",
1826
- "service": "takeshape:local"
1826
+ "service": "takeshape"
1827
1827
  }
1828
1828
  },
1829
1829
  "_schemaVersion": {
@@ -1868,11 +1868,11 @@
1868
1868
  "type": "string",
1869
1869
  "title": "Name",
1870
1870
  "minLength": 1,
1871
- "@mapping": "takeshape:local:Author.Hk8NiqwLb"
1871
+ "@mapping": "shapedb:Author.Hk8NiqwLb"
1872
1872
  },
1873
1873
  "photo": {
1874
1874
  "title": "Photo",
1875
- "@mapping": "takeshape:local:Author.BkyFrpUcb",
1875
+ "@mapping": "shapedb:Author.BkyFrpUcb",
1876
1876
  "@backreference": {
1877
1877
  "enabled": true
1878
1878
  },
@@ -1882,8 +1882,8 @@
1882
1882
  },
1883
1883
  "@args": "TSRelationshipArgs",
1884
1884
  "@resolver": {
1885
- "name": "takeshape:getRelated",
1886
- "service": "takeshape:local",
1885
+ "name": "shapedb:getRelated",
1886
+ "service": "shapedb",
1887
1887
  "options": {
1888
1888
  "nullable": true
1889
1889
  }
@@ -1892,7 +1892,7 @@
1892
1892
  "biography": {
1893
1893
  "type": "object",
1894
1894
  "title": "Biography",
1895
- "@mapping": "takeshape:local:Author.S1tvt0Hq-",
1895
+ "@mapping": "shapedb:Author.S1tvt0Hq-",
1896
1896
  "@tag": "draftjs"
1897
1897
  },
1898
1898
  "slug": {
@@ -1900,7 +1900,7 @@
1900
1900
  "title": "Slug",
1901
1901
  "minLength": 1,
1902
1902
  "pattern": "[\\w-_]+",
1903
- "@mapping": "takeshape:local:Author.2Q6mT96k9"
1903
+ "@mapping": "shapedb:Author.2Q6mT96k9"
1904
1904
  },
1905
1905
  "_id": {
1906
1906
  "title": "Id",
@@ -1931,7 +1931,7 @@
1931
1931
  },
1932
1932
  "@resolver": {
1933
1933
  "name": "takeshape:getUser",
1934
- "service": "takeshape:local"
1934
+ "service": "takeshape"
1935
1935
  }
1936
1936
  },
1937
1937
  "_updatedAt": {
@@ -1947,7 +1947,7 @@
1947
1947
  },
1948
1948
  "@resolver": {
1949
1949
  "name": "takeshape:getUser",
1950
- "service": "takeshape:local"
1950
+ "service": "takeshape"
1951
1951
  }
1952
1952
  },
1953
1953
  "_schemaVersion": {
@@ -2292,5 +2292,5 @@
2292
2292
  }
2293
2293
  }
2294
2294
  },
2295
- "schemaVersion": "3.30.0"
2295
+ "schemaVersion": "3.31.0"
2296
2296
  }