@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
@@ -349,8 +349,8 @@
349
349
  "getNotification": {
350
350
  "args": "TSGetArgs<Notification>",
351
351
  "resolver": {
352
- "name": "takeshape:get",
353
- "service": "takeshape:local",
352
+ "name": "shapedb:get",
353
+ "service": "shapedb",
354
354
  "shapeName": "Notification"
355
355
  },
356
356
  "shape": "Notification",
@@ -359,8 +359,8 @@
359
359
  "getNotificationList": {
360
360
  "args": "TSListArgs<Notification>",
361
361
  "resolver": {
362
- "name": "takeshape:list",
363
- "service": "takeshape:local",
362
+ "name": "shapedb:list",
363
+ "service": "shapedb",
364
364
  "shapeName": "Notification"
365
365
  },
366
366
  "shape": "PaginatedList<Notification>",
@@ -369,8 +369,8 @@
369
369
  "getAccordion": {
370
370
  "args": "TSGetArgs<Accordion>",
371
371
  "resolver": {
372
- "name": "takeshape:get",
373
- "service": "takeshape:local",
372
+ "name": "shapedb:get",
373
+ "service": "shapedb",
374
374
  "shapeName": "Accordion"
375
375
  },
376
376
  "shape": "Accordion",
@@ -379,8 +379,8 @@
379
379
  "getAccordionList": {
380
380
  "args": "TSListArgs<Accordion>",
381
381
  "resolver": {
382
- "name": "takeshape:list",
383
- "service": "takeshape:local",
382
+ "name": "shapedb:list",
383
+ "service": "shapedb",
384
384
  "shapeName": "Accordion"
385
385
  },
386
386
  "shape": "PaginatedList<Accordion>",
@@ -389,8 +389,8 @@
389
389
  "getExpansionPanel": {
390
390
  "args": "TSGetArgs<ExpansionPanel>",
391
391
  "resolver": {
392
- "name": "takeshape:get",
393
- "service": "takeshape:local",
392
+ "name": "shapedb:get",
393
+ "service": "shapedb",
394
394
  "shapeName": "ExpansionPanel"
395
395
  },
396
396
  "shape": "ExpansionPanel",
@@ -399,8 +399,8 @@
399
399
  "getExpansionPanelList": {
400
400
  "args": "TSListArgs<ExpansionPanel>",
401
401
  "resolver": {
402
- "name": "takeshape:list",
403
- "service": "takeshape:local",
402
+ "name": "shapedb:list",
403
+ "service": "shapedb",
404
404
  "shapeName": "ExpansionPanel"
405
405
  },
406
406
  "shape": "PaginatedList<ExpansionPanel>",
@@ -409,8 +409,8 @@
409
409
  "getTabGroup": {
410
410
  "args": "TSGetArgs<TabGroup>",
411
411
  "resolver": {
412
- "name": "takeshape:get",
413
- "service": "takeshape:local",
412
+ "name": "shapedb:get",
413
+ "service": "shapedb",
414
414
  "shapeName": "TabGroup"
415
415
  },
416
416
  "shape": "TabGroup",
@@ -419,8 +419,8 @@
419
419
  "getTabGroupList": {
420
420
  "args": "TSListArgs<TabGroup>",
421
421
  "resolver": {
422
- "name": "takeshape:list",
423
- "service": "takeshape:local",
422
+ "name": "shapedb:list",
423
+ "service": "shapedb",
424
424
  "shapeName": "TabGroup"
425
425
  },
426
426
  "shape": "PaginatedList<TabGroup>",
@@ -429,8 +429,8 @@
429
429
  "getCopy": {
430
430
  "args": "TSGetArgs<Copy>",
431
431
  "resolver": {
432
- "name": "takeshape:get",
433
- "service": "takeshape:local",
432
+ "name": "shapedb:get",
433
+ "service": "shapedb",
434
434
  "shapeName": "Copy"
435
435
  },
436
436
  "shape": "Copy",
@@ -439,8 +439,8 @@
439
439
  "getCopyList": {
440
440
  "args": "TSListArgs<Copy>",
441
441
  "resolver": {
442
- "name": "takeshape:list",
443
- "service": "takeshape:local",
442
+ "name": "shapedb:list",
443
+ "service": "shapedb",
444
444
  "shapeName": "Copy"
445
445
  },
446
446
  "shape": "PaginatedList<Copy>",
@@ -449,8 +449,8 @@
449
449
  "getAlert": {
450
450
  "args": "TSGetArgs<Alert>",
451
451
  "resolver": {
452
- "name": "takeshape:get",
453
- "service": "takeshape:local",
452
+ "name": "shapedb:get",
453
+ "service": "shapedb",
454
454
  "shapeName": "Alert"
455
455
  },
456
456
  "shape": "Alert",
@@ -459,8 +459,8 @@
459
459
  "getAlertList": {
460
460
  "args": "TSListArgs<Alert>",
461
461
  "resolver": {
462
- "name": "takeshape:list",
463
- "service": "takeshape:local",
462
+ "name": "shapedb:list",
463
+ "service": "shapedb",
464
464
  "shapeName": "Alert"
465
465
  },
466
466
  "shape": "PaginatedList<Alert>",
@@ -469,8 +469,8 @@
469
469
  "getIcon": {
470
470
  "args": "TSGetArgs<Icon>",
471
471
  "resolver": {
472
- "name": "takeshape:get",
473
- "service": "takeshape:local",
472
+ "name": "shapedb:get",
473
+ "service": "shapedb",
474
474
  "shapeName": "Icon"
475
475
  },
476
476
  "shape": "Icon",
@@ -479,8 +479,8 @@
479
479
  "getIconList": {
480
480
  "args": "TSListArgs<Icon>",
481
481
  "resolver": {
482
- "name": "takeshape:list",
483
- "service": "takeshape:local",
482
+ "name": "shapedb:list",
483
+ "service": "shapedb",
484
484
  "shapeName": "Icon"
485
485
  },
486
486
  "shape": "PaginatedList<Icon>",
@@ -489,8 +489,8 @@
489
489
  "getAsset": {
490
490
  "args": "TSGetArgs<Asset>",
491
491
  "resolver": {
492
- "name": "takeshape:get",
493
- "service": "takeshape:local",
492
+ "name": "shapedb:get",
493
+ "service": "shapedb",
494
494
  "shapeName": "Asset"
495
495
  },
496
496
  "shape": "Asset",
@@ -499,8 +499,8 @@
499
499
  "getAssetList": {
500
500
  "args": "TSListArgs<Asset>",
501
501
  "resolver": {
502
- "name": "takeshape:list",
503
- "service": "takeshape:local",
502
+ "name": "shapedb:list",
503
+ "service": "shapedb",
504
504
  "shapeName": "Asset"
505
505
  },
506
506
  "shape": "PaginatedList<Asset>",
@@ -509,8 +509,8 @@
509
509
  "getCssClass": {
510
510
  "args": "TSGetArgs<CssClass>",
511
511
  "resolver": {
512
- "name": "takeshape:get",
513
- "service": "takeshape:local",
512
+ "name": "shapedb:get",
513
+ "service": "shapedb",
514
514
  "shapeName": "CssClass"
515
515
  },
516
516
  "shape": "CssClass",
@@ -519,8 +519,8 @@
519
519
  "getCssClassList": {
520
520
  "args": "TSListArgs<CssClass>",
521
521
  "resolver": {
522
- "name": "takeshape:list",
523
- "service": "takeshape:local",
522
+ "name": "shapedb:list",
523
+ "service": "shapedb",
524
524
  "shapeName": "CssClass"
525
525
  },
526
526
  "shape": "PaginatedList<CssClass>",
@@ -529,8 +529,8 @@
529
529
  "getTab": {
530
530
  "args": "TSGetArgs<Tab>",
531
531
  "resolver": {
532
- "name": "takeshape:get",
533
- "service": "takeshape:local",
532
+ "name": "shapedb:get",
533
+ "service": "shapedb",
534
534
  "shapeName": "Tab"
535
535
  },
536
536
  "shape": "Tab",
@@ -539,8 +539,8 @@
539
539
  "getTabList": {
540
540
  "args": "TSListArgs<Tab>",
541
541
  "resolver": {
542
- "name": "takeshape:list",
543
- "service": "takeshape:local",
542
+ "name": "shapedb:list",
543
+ "service": "shapedb",
544
544
  "shapeName": "Tab"
545
545
  },
546
546
  "shape": "PaginatedList<Tab>",
@@ -549,8 +549,8 @@
549
549
  "getDialog": {
550
550
  "args": "TSGetArgs<Dialog>",
551
551
  "resolver": {
552
- "name": "takeshape:get",
553
- "service": "takeshape:local",
552
+ "name": "shapedb:get",
553
+ "service": "shapedb",
554
554
  "shapeName": "Dialog"
555
555
  },
556
556
  "shape": "Dialog",
@@ -559,8 +559,8 @@
559
559
  "getDialogList": {
560
560
  "args": "TSListArgs<Dialog>",
561
561
  "resolver": {
562
- "name": "takeshape:list",
563
- "service": "takeshape:local",
562
+ "name": "shapedb:list",
563
+ "service": "shapedb",
564
564
  "shapeName": "Dialog"
565
565
  },
566
566
  "shape": "PaginatedList<Dialog>",
@@ -571,8 +571,8 @@
571
571
  "updateNotification": {
572
572
  "args": "UpdateArgs<Notification>",
573
573
  "resolver": {
574
- "name": "takeshape:update",
575
- "service": "takeshape:local",
574
+ "name": "shapedb:update",
575
+ "service": "shapedb",
576
576
  "shapeName": "Notification"
577
577
  },
578
578
  "shape": "UpdateResult<Notification>",
@@ -581,8 +581,8 @@
581
581
  "createNotification": {
582
582
  "args": "CreateArgs<Notification>",
583
583
  "resolver": {
584
- "name": "takeshape:create",
585
- "service": "takeshape:local",
584
+ "name": "shapedb:create",
585
+ "service": "shapedb",
586
586
  "shapeName": "Notification"
587
587
  },
588
588
  "shape": "CreateResult<Notification>",
@@ -591,8 +591,8 @@
591
591
  "duplicateNotification": {
592
592
  "args": "DuplicateArgs<Notification>",
593
593
  "resolver": {
594
- "name": "takeshape:duplicate",
595
- "service": "takeshape:local",
594
+ "name": "shapedb:duplicate",
595
+ "service": "shapedb",
596
596
  "shapeName": "Notification"
597
597
  },
598
598
  "shape": "DuplicateResult<Notification>",
@@ -601,8 +601,8 @@
601
601
  "deleteNotification": {
602
602
  "args": "DeleteArgs<Notification>",
603
603
  "resolver": {
604
- "name": "takeshape:delete",
605
- "service": "takeshape:local",
604
+ "name": "shapedb:delete",
605
+ "service": "shapedb",
606
606
  "shapeName": "Notification"
607
607
  },
608
608
  "shape": "DeleteResult<Notification>",
@@ -611,8 +611,8 @@
611
611
  "updateAccordion": {
612
612
  "args": "UpdateArgs<Accordion>",
613
613
  "resolver": {
614
- "name": "takeshape:update",
615
- "service": "takeshape:local",
614
+ "name": "shapedb:update",
615
+ "service": "shapedb",
616
616
  "shapeName": "Accordion"
617
617
  },
618
618
  "shape": "UpdateResult<Accordion>",
@@ -621,8 +621,8 @@
621
621
  "createAccordion": {
622
622
  "args": "CreateArgs<Accordion>",
623
623
  "resolver": {
624
- "name": "takeshape:create",
625
- "service": "takeshape:local",
624
+ "name": "shapedb:create",
625
+ "service": "shapedb",
626
626
  "shapeName": "Accordion"
627
627
  },
628
628
  "shape": "CreateResult<Accordion>",
@@ -631,8 +631,8 @@
631
631
  "duplicateAccordion": {
632
632
  "args": "DuplicateArgs<Accordion>",
633
633
  "resolver": {
634
- "name": "takeshape:duplicate",
635
- "service": "takeshape:local",
634
+ "name": "shapedb:duplicate",
635
+ "service": "shapedb",
636
636
  "shapeName": "Accordion"
637
637
  },
638
638
  "shape": "DuplicateResult<Accordion>",
@@ -641,8 +641,8 @@
641
641
  "deleteAccordion": {
642
642
  "args": "DeleteArgs<Accordion>",
643
643
  "resolver": {
644
- "name": "takeshape:delete",
645
- "service": "takeshape:local",
644
+ "name": "shapedb:delete",
645
+ "service": "shapedb",
646
646
  "shapeName": "Accordion"
647
647
  },
648
648
  "shape": "DeleteResult<Accordion>",
@@ -651,8 +651,8 @@
651
651
  "updateExpansionPanel": {
652
652
  "args": "UpdateArgs<ExpansionPanel>",
653
653
  "resolver": {
654
- "name": "takeshape:update",
655
- "service": "takeshape:local",
654
+ "name": "shapedb:update",
655
+ "service": "shapedb",
656
656
  "shapeName": "ExpansionPanel"
657
657
  },
658
658
  "shape": "UpdateResult<ExpansionPanel>",
@@ -661,8 +661,8 @@
661
661
  "createExpansionPanel": {
662
662
  "args": "CreateArgs<ExpansionPanel>",
663
663
  "resolver": {
664
- "name": "takeshape:create",
665
- "service": "takeshape:local",
664
+ "name": "shapedb:create",
665
+ "service": "shapedb",
666
666
  "shapeName": "ExpansionPanel"
667
667
  },
668
668
  "shape": "CreateResult<ExpansionPanel>",
@@ -671,8 +671,8 @@
671
671
  "duplicateExpansionPanel": {
672
672
  "args": "DuplicateArgs<ExpansionPanel>",
673
673
  "resolver": {
674
- "name": "takeshape:duplicate",
675
- "service": "takeshape:local",
674
+ "name": "shapedb:duplicate",
675
+ "service": "shapedb",
676
676
  "shapeName": "ExpansionPanel"
677
677
  },
678
678
  "shape": "DuplicateResult<ExpansionPanel>",
@@ -681,8 +681,8 @@
681
681
  "deleteExpansionPanel": {
682
682
  "args": "DeleteArgs<ExpansionPanel>",
683
683
  "resolver": {
684
- "name": "takeshape:delete",
685
- "service": "takeshape:local",
684
+ "name": "shapedb:delete",
685
+ "service": "shapedb",
686
686
  "shapeName": "ExpansionPanel"
687
687
  },
688
688
  "shape": "DeleteResult<ExpansionPanel>",
@@ -691,8 +691,8 @@
691
691
  "updateTabGroup": {
692
692
  "args": "UpdateArgs<TabGroup>",
693
693
  "resolver": {
694
- "name": "takeshape:update",
695
- "service": "takeshape:local",
694
+ "name": "shapedb:update",
695
+ "service": "shapedb",
696
696
  "shapeName": "TabGroup"
697
697
  },
698
698
  "shape": "UpdateResult<TabGroup>",
@@ -701,8 +701,8 @@
701
701
  "createTabGroup": {
702
702
  "args": "CreateArgs<TabGroup>",
703
703
  "resolver": {
704
- "name": "takeshape:create",
705
- "service": "takeshape:local",
704
+ "name": "shapedb:create",
705
+ "service": "shapedb",
706
706
  "shapeName": "TabGroup"
707
707
  },
708
708
  "shape": "CreateResult<TabGroup>",
@@ -711,8 +711,8 @@
711
711
  "duplicateTabGroup": {
712
712
  "args": "DuplicateArgs<TabGroup>",
713
713
  "resolver": {
714
- "name": "takeshape:duplicate",
715
- "service": "takeshape:local",
714
+ "name": "shapedb:duplicate",
715
+ "service": "shapedb",
716
716
  "shapeName": "TabGroup"
717
717
  },
718
718
  "shape": "DuplicateResult<TabGroup>",
@@ -721,8 +721,8 @@
721
721
  "deleteTabGroup": {
722
722
  "args": "DeleteArgs<TabGroup>",
723
723
  "resolver": {
724
- "name": "takeshape:delete",
725
- "service": "takeshape:local",
724
+ "name": "shapedb:delete",
725
+ "service": "shapedb",
726
726
  "shapeName": "TabGroup"
727
727
  },
728
728
  "shape": "DeleteResult<TabGroup>",
@@ -731,8 +731,8 @@
731
731
  "updateCopy": {
732
732
  "args": "UpdateArgs<Copy>",
733
733
  "resolver": {
734
- "name": "takeshape:update",
735
- "service": "takeshape:local",
734
+ "name": "shapedb:update",
735
+ "service": "shapedb",
736
736
  "shapeName": "Copy"
737
737
  },
738
738
  "shape": "UpdateResult<Copy>",
@@ -741,8 +741,8 @@
741
741
  "createCopy": {
742
742
  "args": "CreateArgs<Copy>",
743
743
  "resolver": {
744
- "name": "takeshape:create",
745
- "service": "takeshape:local",
744
+ "name": "shapedb:create",
745
+ "service": "shapedb",
746
746
  "shapeName": "Copy"
747
747
  },
748
748
  "shape": "CreateResult<Copy>",
@@ -751,8 +751,8 @@
751
751
  "duplicateCopy": {
752
752
  "args": "DuplicateArgs<Copy>",
753
753
  "resolver": {
754
- "name": "takeshape:duplicate",
755
- "service": "takeshape:local",
754
+ "name": "shapedb:duplicate",
755
+ "service": "shapedb",
756
756
  "shapeName": "Copy"
757
757
  },
758
758
  "shape": "DuplicateResult<Copy>",
@@ -761,8 +761,8 @@
761
761
  "deleteCopy": {
762
762
  "args": "DeleteArgs<Copy>",
763
763
  "resolver": {
764
- "name": "takeshape:delete",
765
- "service": "takeshape:local",
764
+ "name": "shapedb:delete",
765
+ "service": "shapedb",
766
766
  "shapeName": "Copy"
767
767
  },
768
768
  "shape": "DeleteResult<Copy>",
@@ -771,8 +771,8 @@
771
771
  "updateAlert": {
772
772
  "args": "UpdateArgs<Alert>",
773
773
  "resolver": {
774
- "name": "takeshape:update",
775
- "service": "takeshape:local",
774
+ "name": "shapedb:update",
775
+ "service": "shapedb",
776
776
  "shapeName": "Alert"
777
777
  },
778
778
  "shape": "UpdateResult<Alert>",
@@ -781,8 +781,8 @@
781
781
  "createAlert": {
782
782
  "args": "CreateArgs<Alert>",
783
783
  "resolver": {
784
- "name": "takeshape:create",
785
- "service": "takeshape:local",
784
+ "name": "shapedb:create",
785
+ "service": "shapedb",
786
786
  "shapeName": "Alert"
787
787
  },
788
788
  "shape": "CreateResult<Alert>",
@@ -791,8 +791,8 @@
791
791
  "duplicateAlert": {
792
792
  "args": "DuplicateArgs<Alert>",
793
793
  "resolver": {
794
- "name": "takeshape:duplicate",
795
- "service": "takeshape:local",
794
+ "name": "shapedb:duplicate",
795
+ "service": "shapedb",
796
796
  "shapeName": "Alert"
797
797
  },
798
798
  "shape": "DuplicateResult<Alert>",
@@ -801,8 +801,8 @@
801
801
  "deleteAlert": {
802
802
  "args": "DeleteArgs<Alert>",
803
803
  "resolver": {
804
- "name": "takeshape:delete",
805
- "service": "takeshape:local",
804
+ "name": "shapedb:delete",
805
+ "service": "shapedb",
806
806
  "shapeName": "Alert"
807
807
  },
808
808
  "shape": "DeleteResult<Alert>",
@@ -811,8 +811,8 @@
811
811
  "updateIcon": {
812
812
  "args": "UpdateArgs<Icon>",
813
813
  "resolver": {
814
- "name": "takeshape:update",
815
- "service": "takeshape:local",
814
+ "name": "shapedb:update",
815
+ "service": "shapedb",
816
816
  "shapeName": "Icon"
817
817
  },
818
818
  "shape": "UpdateResult<Icon>",
@@ -821,8 +821,8 @@
821
821
  "createIcon": {
822
822
  "args": "CreateArgs<Icon>",
823
823
  "resolver": {
824
- "name": "takeshape:create",
825
- "service": "takeshape:local",
824
+ "name": "shapedb:create",
825
+ "service": "shapedb",
826
826
  "shapeName": "Icon"
827
827
  },
828
828
  "shape": "CreateResult<Icon>",
@@ -831,8 +831,8 @@
831
831
  "duplicateIcon": {
832
832
  "args": "DuplicateArgs<Icon>",
833
833
  "resolver": {
834
- "name": "takeshape:duplicate",
835
- "service": "takeshape:local",
834
+ "name": "shapedb:duplicate",
835
+ "service": "shapedb",
836
836
  "shapeName": "Icon"
837
837
  },
838
838
  "shape": "DuplicateResult<Icon>",
@@ -841,8 +841,8 @@
841
841
  "deleteIcon": {
842
842
  "args": "DeleteArgs<Icon>",
843
843
  "resolver": {
844
- "name": "takeshape:delete",
845
- "service": "takeshape:local",
844
+ "name": "shapedb:delete",
845
+ "service": "shapedb",
846
846
  "shapeName": "Icon"
847
847
  },
848
848
  "shape": "DeleteResult<Icon>",
@@ -851,8 +851,8 @@
851
851
  "updateAsset": {
852
852
  "args": "UpdateArgs<Asset>",
853
853
  "resolver": {
854
- "name": "takeshape:update",
855
- "service": "takeshape:local",
854
+ "name": "shapedb:update",
855
+ "service": "shapedb",
856
856
  "shapeName": "Asset"
857
857
  },
858
858
  "shape": "UpdateResult<Asset>",
@@ -861,8 +861,8 @@
861
861
  "createAsset": {
862
862
  "args": "CreateArgs<Asset>",
863
863
  "resolver": {
864
- "name": "takeshape:create",
865
- "service": "takeshape:local",
864
+ "name": "shapedb:create",
865
+ "service": "shapedb",
866
866
  "shapeName": "Asset"
867
867
  },
868
868
  "shape": "CreateResult<Asset>",
@@ -871,8 +871,8 @@
871
871
  "duplicateAsset": {
872
872
  "args": "DuplicateArgs<Asset>",
873
873
  "resolver": {
874
- "name": "takeshape:duplicate",
875
- "service": "takeshape:local",
874
+ "name": "shapedb:duplicate",
875
+ "service": "shapedb",
876
876
  "shapeName": "Asset"
877
877
  },
878
878
  "shape": "DuplicateResult<Asset>",
@@ -881,8 +881,8 @@
881
881
  "deleteAsset": {
882
882
  "args": "DeleteArgs<Asset>",
883
883
  "resolver": {
884
- "name": "takeshape:delete",
885
- "service": "takeshape:local",
884
+ "name": "shapedb:delete",
885
+ "service": "shapedb",
886
886
  "shapeName": "Asset"
887
887
  },
888
888
  "shape": "DeleteResult<Asset>",
@@ -891,8 +891,8 @@
891
891
  "updateCssClass": {
892
892
  "args": "UpdateArgs<CssClass>",
893
893
  "resolver": {
894
- "name": "takeshape:update",
895
- "service": "takeshape:local",
894
+ "name": "shapedb:update",
895
+ "service": "shapedb",
896
896
  "shapeName": "CssClass"
897
897
  },
898
898
  "shape": "UpdateResult<CssClass>",
@@ -901,8 +901,8 @@
901
901
  "createCssClass": {
902
902
  "args": "CreateArgs<CssClass>",
903
903
  "resolver": {
904
- "name": "takeshape:create",
905
- "service": "takeshape:local",
904
+ "name": "shapedb:create",
905
+ "service": "shapedb",
906
906
  "shapeName": "CssClass"
907
907
  },
908
908
  "shape": "CreateResult<CssClass>",
@@ -911,8 +911,8 @@
911
911
  "duplicateCssClass": {
912
912
  "args": "DuplicateArgs<CssClass>",
913
913
  "resolver": {
914
- "name": "takeshape:duplicate",
915
- "service": "takeshape:local",
914
+ "name": "shapedb:duplicate",
915
+ "service": "shapedb",
916
916
  "shapeName": "CssClass"
917
917
  },
918
918
  "shape": "DuplicateResult<CssClass>",
@@ -921,8 +921,8 @@
921
921
  "deleteCssClass": {
922
922
  "args": "DeleteArgs<CssClass>",
923
923
  "resolver": {
924
- "name": "takeshape:delete",
925
- "service": "takeshape:local",
924
+ "name": "shapedb:delete",
925
+ "service": "shapedb",
926
926
  "shapeName": "CssClass"
927
927
  },
928
928
  "shape": "DeleteResult<CssClass>",
@@ -931,8 +931,8 @@
931
931
  "updateTab": {
932
932
  "args": "UpdateArgs<Tab>",
933
933
  "resolver": {
934
- "name": "takeshape:update",
935
- "service": "takeshape:local",
934
+ "name": "shapedb:update",
935
+ "service": "shapedb",
936
936
  "shapeName": "Tab"
937
937
  },
938
938
  "shape": "UpdateResult<Tab>",
@@ -941,8 +941,8 @@
941
941
  "createTab": {
942
942
  "args": "CreateArgs<Tab>",
943
943
  "resolver": {
944
- "name": "takeshape:create",
945
- "service": "takeshape:local",
944
+ "name": "shapedb:create",
945
+ "service": "shapedb",
946
946
  "shapeName": "Tab"
947
947
  },
948
948
  "shape": "CreateResult<Tab>",
@@ -951,8 +951,8 @@
951
951
  "duplicateTab": {
952
952
  "args": "DuplicateArgs<Tab>",
953
953
  "resolver": {
954
- "name": "takeshape:duplicate",
955
- "service": "takeshape:local",
954
+ "name": "shapedb:duplicate",
955
+ "service": "shapedb",
956
956
  "shapeName": "Tab"
957
957
  },
958
958
  "shape": "DuplicateResult<Tab>",
@@ -961,8 +961,8 @@
961
961
  "deleteTab": {
962
962
  "args": "DeleteArgs<Tab>",
963
963
  "resolver": {
964
- "name": "takeshape:delete",
965
- "service": "takeshape:local",
964
+ "name": "shapedb:delete",
965
+ "service": "shapedb",
966
966
  "shapeName": "Tab"
967
967
  },
968
968
  "shape": "DeleteResult<Tab>",
@@ -971,8 +971,8 @@
971
971
  "updateDialog": {
972
972
  "args": "UpdateArgs<Dialog>",
973
973
  "resolver": {
974
- "name": "takeshape:update",
975
- "service": "takeshape:local",
974
+ "name": "shapedb:update",
975
+ "service": "shapedb",
976
976
  "shapeName": "Dialog"
977
977
  },
978
978
  "shape": "UpdateResult<Dialog>",
@@ -981,8 +981,8 @@
981
981
  "createDialog": {
982
982
  "args": "CreateArgs<Dialog>",
983
983
  "resolver": {
984
- "name": "takeshape:create",
985
- "service": "takeshape:local",
984
+ "name": "shapedb:create",
985
+ "service": "shapedb",
986
986
  "shapeName": "Dialog"
987
987
  },
988
988
  "shape": "CreateResult<Dialog>",
@@ -991,8 +991,8 @@
991
991
  "duplicateDialog": {
992
992
  "args": "DuplicateArgs<Dialog>",
993
993
  "resolver": {
994
- "name": "takeshape:duplicate",
995
- "service": "takeshape:local",
994
+ "name": "shapedb:duplicate",
995
+ "service": "shapedb",
996
996
  "shapeName": "Dialog"
997
997
  },
998
998
  "shape": "DuplicateResult<Dialog>",
@@ -1001,8 +1001,8 @@
1001
1001
  "deleteDialog": {
1002
1002
  "args": "DeleteArgs<Dialog>",
1003
1003
  "resolver": {
1004
- "name": "takeshape:delete",
1005
- "service": "takeshape:local",
1004
+ "name": "shapedb:delete",
1005
+ "service": "shapedb",
1006
1006
  "shapeName": "Dialog"
1007
1007
  },
1008
1008
  "shape": "DeleteResult<Dialog>",
@@ -1025,7 +1025,7 @@
1025
1025
  "title": "Code",
1026
1026
  "minLength": 1,
1027
1027
  "type": "string",
1028
- "@mapping": "takeshape:local:Notification._Sb4oQi0q"
1028
+ "@mapping": "shapedb:Notification._Sb4oQi0q"
1029
1029
  },
1030
1030
  "title": {
1031
1031
  "type": "string",
@@ -1033,7 +1033,7 @@
1033
1033
  "title": "Title",
1034
1034
  "description": "",
1035
1035
  "@l10n": true,
1036
- "@mapping": "takeshape:local:Notification.INOxdBc_A"
1036
+ "@mapping": "shapedb:Notification.INOxdBc_A"
1037
1037
  },
1038
1038
  "content": {
1039
1039
  "@l10n": true,
@@ -1041,7 +1041,7 @@
1041
1041
  "type": "object",
1042
1042
  "@tag": "draftjs",
1043
1043
  "@syncLocaleStructure": true,
1044
- "@mapping": "takeshape:local:Notification.FJ6dPnXom"
1044
+ "@mapping": "shapedb:Notification.FJ6dPnXom"
1045
1045
  }
1046
1046
  },
1047
1047
  "required": [
@@ -1063,12 +1063,12 @@
1063
1063
  "type": "string",
1064
1064
  "title": "Used For",
1065
1065
  "minLength": 0,
1066
- "@mapping": "takeshape:local:Accordion.gD3zU3Zgv"
1066
+ "@mapping": "shapedb:Accordion.gD3zU3Zgv"
1067
1067
  },
1068
1068
  "components": {
1069
1069
  "title": "Components",
1070
1070
  "minItems": 1,
1071
- "@mapping": "takeshape:local:Accordion.XHwBnbh56",
1071
+ "@mapping": "shapedb:Accordion.XHwBnbh56",
1072
1072
  "items": {
1073
1073
  "@ref": "local:ExpansionPanel"
1074
1074
  },
@@ -1084,8 +1084,8 @@
1084
1084
  },
1085
1085
  "@args": "TSRelationshipArgs",
1086
1086
  "@resolver": {
1087
- "name": "takeshape:getRelated",
1088
- "service": "takeshape:local",
1087
+ "name": "shapedb:getRelated",
1088
+ "service": "shapedb",
1089
1089
  "options": {
1090
1090
  "nullable": true
1091
1091
  }
@@ -1093,7 +1093,7 @@
1093
1093
  },
1094
1094
  "classes": {
1095
1095
  "title": "Classes",
1096
- "@mapping": "takeshape:local:Accordion.I5h3Hz4vr",
1096
+ "@mapping": "shapedb:Accordion.I5h3Hz4vr",
1097
1097
  "items": {
1098
1098
  "@ref": "local:CssClass"
1099
1099
  },
@@ -1109,8 +1109,8 @@
1109
1109
  },
1110
1110
  "@args": "TSRelationshipArgs",
1111
1111
  "@resolver": {
1112
- "name": "takeshape:getRelated",
1113
- "service": "takeshape:local",
1112
+ "name": "shapedb:getRelated",
1113
+ "service": "shapedb",
1114
1114
  "options": {
1115
1115
  "nullable": true
1116
1116
  }
@@ -1121,7 +1121,7 @@
1121
1121
  "default": false,
1122
1122
  "title": "Multi",
1123
1123
  "@l10n": false,
1124
- "@mapping": "takeshape:local:Accordion.tOPQ89Jvn"
1124
+ "@mapping": "shapedb:Accordion.tOPQ89Jvn"
1125
1125
  }
1126
1126
  },
1127
1127
  "required": [
@@ -1143,11 +1143,11 @@
1143
1143
  "type": "string",
1144
1144
  "title": "Used For",
1145
1145
  "minLength": 0,
1146
- "@mapping": "takeshape:local:ExpansionPanel.U_jQpe0-B"
1146
+ "@mapping": "shapedb:ExpansionPanel.U_jQpe0-B"
1147
1147
  },
1148
1148
  "icon": {
1149
1149
  "title": "Icon",
1150
- "@mapping": "takeshape:local:ExpansionPanel.awzVCT3mf",
1150
+ "@mapping": "shapedb:ExpansionPanel.awzVCT3mf",
1151
1151
  "@backreference": {
1152
1152
  "enabled": true
1153
1153
  },
@@ -1157,8 +1157,8 @@
1157
1157
  },
1158
1158
  "@args": "TSRelationshipArgs",
1159
1159
  "@resolver": {
1160
- "name": "takeshape:getRelated",
1161
- "service": "takeshape:local",
1160
+ "name": "shapedb:getRelated",
1161
+ "service": "shapedb",
1162
1162
  "options": {
1163
1163
  "nullable": true
1164
1164
  }
@@ -1168,17 +1168,17 @@
1168
1168
  "type": "string",
1169
1169
  "title": "Header",
1170
1170
  "minLength": 1,
1171
- "@mapping": "takeshape:local:ExpansionPanel.26Fum4IhZ"
1171
+ "@mapping": "shapedb:ExpansionPanel.26Fum4IhZ"
1172
1172
  },
1173
1173
  "content": {
1174
1174
  "type": "object",
1175
1175
  "title": "Content",
1176
- "@mapping": "takeshape:local:ExpansionPanel.S1hTcA0hD",
1176
+ "@mapping": "shapedb:ExpansionPanel.S1hTcA0hD",
1177
1177
  "@tag": "draftjs"
1178
1178
  },
1179
1179
  "classes": {
1180
1180
  "title": "Classes",
1181
- "@mapping": "takeshape:local:ExpansionPanel.7-bEVubls",
1181
+ "@mapping": "shapedb:ExpansionPanel.7-bEVubls",
1182
1182
  "items": {
1183
1183
  "@ref": "local:CssClass"
1184
1184
  },
@@ -1194,8 +1194,8 @@
1194
1194
  },
1195
1195
  "@args": "TSRelationshipArgs",
1196
1196
  "@resolver": {
1197
- "name": "takeshape:getRelated",
1198
- "service": "takeshape:local",
1197
+ "name": "shapedb:getRelated",
1198
+ "service": "shapedb",
1199
1199
  "options": {
1200
1200
  "nullable": true
1201
1201
  }
@@ -1222,11 +1222,11 @@
1222
1222
  "type": "string",
1223
1223
  "title": "Used For",
1224
1224
  "minLength": 0,
1225
- "@mapping": "takeshape:local:TabGroup.xZHEaGNVm"
1225
+ "@mapping": "shapedb:TabGroup.xZHEaGNVm"
1226
1226
  },
1227
1227
  "components": {
1228
1228
  "title": "Components",
1229
- "@mapping": "takeshape:local:TabGroup.4NS8ZoZzR",
1229
+ "@mapping": "shapedb:TabGroup.4NS8ZoZzR",
1230
1230
  "items": {
1231
1231
  "@ref": "local:Tab"
1232
1232
  },
@@ -1242,8 +1242,8 @@
1242
1242
  },
1243
1243
  "@args": "TSRelationshipArgs",
1244
1244
  "@resolver": {
1245
- "name": "takeshape:getRelated",
1246
- "service": "takeshape:local",
1245
+ "name": "shapedb:getRelated",
1246
+ "service": "shapedb",
1247
1247
  "options": {
1248
1248
  "nullable": true
1249
1249
  }
@@ -1253,11 +1253,11 @@
1253
1253
  "type": "string",
1254
1254
  "title": "Slug",
1255
1255
  "minLength": 1,
1256
- "@mapping": "takeshape:local:TabGroup.HCzwxXNco"
1256
+ "@mapping": "shapedb:TabGroup.HCzwxXNco"
1257
1257
  },
1258
1258
  "classes": {
1259
1259
  "title": "Classes",
1260
- "@mapping": "takeshape:local:TabGroup.qEgZ-lR2X",
1260
+ "@mapping": "shapedb:TabGroup.qEgZ-lR2X",
1261
1261
  "items": {
1262
1262
  "@ref": "local:CssClass"
1263
1263
  },
@@ -1273,8 +1273,8 @@
1273
1273
  },
1274
1274
  "@args": "TSRelationshipArgs",
1275
1275
  "@resolver": {
1276
- "name": "takeshape:getRelated",
1277
- "service": "takeshape:local",
1276
+ "name": "shapedb:getRelated",
1277
+ "service": "shapedb",
1278
1278
  "options": {
1279
1279
  "nullable": true
1280
1280
  }
@@ -1300,23 +1300,23 @@
1300
1300
  "type": "string",
1301
1301
  "title": "Used For",
1302
1302
  "minLength": 0,
1303
- "@mapping": "takeshape:local:Copy.WyY_HY36e"
1303
+ "@mapping": "shapedb:Copy.WyY_HY36e"
1304
1304
  },
1305
1305
  "slug": {
1306
1306
  "type": "string",
1307
1307
  "title": "Slug",
1308
1308
  "minLength": 0,
1309
- "@mapping": "takeshape:local:Copy.FmxIRUQTz"
1309
+ "@mapping": "shapedb:Copy.FmxIRUQTz"
1310
1310
  },
1311
1311
  "content": {
1312
1312
  "type": "object",
1313
1313
  "title": "Content",
1314
- "@mapping": "takeshape:local:Copy.01cOtwU3C",
1314
+ "@mapping": "shapedb:Copy.01cOtwU3C",
1315
1315
  "@tag": "draftjs"
1316
1316
  },
1317
1317
  "classes": {
1318
1318
  "title": "Classes",
1319
- "@mapping": "takeshape:local:Copy.1fIzL3c-P",
1319
+ "@mapping": "shapedb:Copy.1fIzL3c-P",
1320
1320
  "items": {
1321
1321
  "@ref": "local:CssClass"
1322
1322
  },
@@ -1332,8 +1332,8 @@
1332
1332
  },
1333
1333
  "@args": "TSRelationshipArgs",
1334
1334
  "@resolver": {
1335
- "name": "takeshape:getRelated",
1336
- "service": "takeshape:local",
1335
+ "name": "shapedb:getRelated",
1336
+ "service": "shapedb",
1337
1337
  "options": {
1338
1338
  "nullable": true
1339
1339
  }
@@ -1391,25 +1391,25 @@
1391
1391
  ]
1392
1392
  }
1393
1393
  ],
1394
- "@mapping": "takeshape:local:Alert.sPWrTg0sj"
1394
+ "@mapping": "shapedb:Alert.sPWrTg0sj"
1395
1395
  },
1396
1396
  "dismissable": {
1397
1397
  "type": "boolean",
1398
1398
  "default": false,
1399
1399
  "title": "Dismissable",
1400
1400
  "@l10n": false,
1401
- "@mapping": "takeshape:local:Alert.gM27CbaLz"
1401
+ "@mapping": "shapedb:Alert.gM27CbaLz"
1402
1402
  },
1403
1403
  "slug": {
1404
1404
  "type": "string",
1405
1405
  "title": "Slug",
1406
1406
  "minLength": 1,
1407
- "@mapping": "takeshape:local:Alert.xPM_aTvwu"
1407
+ "@mapping": "shapedb:Alert.xPM_aTvwu"
1408
1408
  },
1409
1409
  "content": {
1410
1410
  "type": "object",
1411
1411
  "title": "Content",
1412
- "@mapping": "takeshape:local:Alert.-dAxGwwLJ",
1412
+ "@mapping": "shapedb:Alert.-dAxGwwLJ",
1413
1413
  "@tag": "draftjs"
1414
1414
  }
1415
1415
  },
@@ -1433,11 +1433,11 @@
1433
1433
  "type": "string",
1434
1434
  "title": "Used For",
1435
1435
  "minLength": 0,
1436
- "@mapping": "takeshape:local:Icon.x9A6V0_VY"
1436
+ "@mapping": "shapedb:Icon.x9A6V0_VY"
1437
1437
  },
1438
1438
  "asset": {
1439
1439
  "title": "Asset",
1440
- "@mapping": "takeshape:local:Icon.Rllc03lmT",
1440
+ "@mapping": "shapedb:Icon.Rllc03lmT",
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
  }
@@ -1458,7 +1458,7 @@
1458
1458
  "type": "string",
1459
1459
  "title": "Slug",
1460
1460
  "minLength": 1,
1461
- "@mapping": "takeshape:local:Icon.XbU4xLjt0"
1461
+ "@mapping": "shapedb:Icon.XbU4xLjt0"
1462
1462
  }
1463
1463
  },
1464
1464
  "required": [
@@ -1481,60 +1481,60 @@
1481
1481
  "type": "string",
1482
1482
  "title": "Source URL",
1483
1483
  "@l10n": false,
1484
- "@mapping": "takeshape:local:Asset.SJXSidnXE"
1484
+ "@mapping": "shapedb:Asset.SJXSidnXE"
1485
1485
  },
1486
1486
  "path": {
1487
1487
  "type": "string",
1488
1488
  "title": "Path",
1489
1489
  "@l10n": false,
1490
1490
  "minLength": 1,
1491
- "@mapping": "takeshape:local:Asset.Hk6FQuz5"
1491
+ "@mapping": "shapedb:Asset.Hk6FQuz5"
1492
1492
  },
1493
1493
  "backgroundColor": {
1494
1494
  "type": "object",
1495
1495
  "title": "Background Color",
1496
1496
  "$ref": "#/shapes/TSColor/schema",
1497
- "@mapping": "takeshape:local:Asset.8mSa4MUjV"
1497
+ "@mapping": "shapedb:Asset.8mSa4MUjV"
1498
1498
  },
1499
1499
  "filename": {
1500
1500
  "type": "string",
1501
1501
  "title": "Filename",
1502
1502
  "@l10n": false,
1503
1503
  "minLength": 1,
1504
- "@mapping": "takeshape:local:Asset.H1oYQOM9"
1504
+ "@mapping": "shapedb:Asset.H1oYQOM9"
1505
1505
  },
1506
1506
  "description": {
1507
1507
  "type": "string",
1508
1508
  "title": "Description",
1509
- "@mapping": "takeshape:local:Asset.B1Zsra3fx"
1509
+ "@mapping": "shapedb:Asset.B1Zsra3fx"
1510
1510
  },
1511
1511
  "caption": {
1512
1512
  "type": "object",
1513
1513
  "title": "Caption",
1514
- "@mapping": "takeshape:local:Asset.SyWVsd98x",
1514
+ "@mapping": "shapedb:Asset.SyWVsd98x",
1515
1515
  "@tag": "draftjs"
1516
1516
  },
1517
1517
  "uploadStatus": {
1518
1518
  "type": "string",
1519
1519
  "title": "Upload status",
1520
1520
  "@l10n": false,
1521
- "@mapping": "takeshape:local:Asset.ByeAYXdG9"
1521
+ "@mapping": "shapedb:Asset.ByeAYXdG9"
1522
1522
  },
1523
1523
  "mimeType": {
1524
1524
  "type": "string",
1525
1525
  "title": "MIME type",
1526
1526
  "@l10n": false,
1527
- "@mapping": "takeshape:local:Asset.SyCYX_Gq"
1527
+ "@mapping": "shapedb:Asset.SyCYX_Gq"
1528
1528
  },
1529
1529
  "title": {
1530
1530
  "type": "string",
1531
1531
  "title": "Title",
1532
- "@mapping": "takeshape:local:Asset.By5tQOMc"
1532
+ "@mapping": "shapedb:Asset.By5tQOMc"
1533
1533
  },
1534
1534
  "credit": {
1535
1535
  "type": "object",
1536
1536
  "title": "Credit",
1537
- "@mapping": "takeshape:local:Asset.Skn_i_5Ll",
1537
+ "@mapping": "shapedb:Asset.Skn_i_5Ll",
1538
1538
  "@tag": "draftjs"
1539
1539
  }
1540
1540
  },
@@ -1558,7 +1558,7 @@
1558
1558
  "type": "string",
1559
1559
  "title": "Value",
1560
1560
  "minLength": 1,
1561
- "@mapping": "takeshape:local:CssClass.7DhgvGE5j"
1561
+ "@mapping": "shapedb:CssClass.7DhgvGE5j"
1562
1562
  }
1563
1563
  },
1564
1564
  "required": [
@@ -1580,18 +1580,18 @@
1580
1580
  "type": "string",
1581
1581
  "title": "Used For",
1582
1582
  "minLength": 0,
1583
- "@mapping": "takeshape:local:Tab.BKhhRF6yX"
1583
+ "@mapping": "shapedb:Tab.BKhhRF6yX"
1584
1584
  },
1585
1585
  "header": {
1586
1586
  "type": "string",
1587
1587
  "title": "Header",
1588
1588
  "minLength": 1,
1589
- "@mapping": "takeshape:local:Tab.6B-9Krcye"
1589
+ "@mapping": "shapedb:Tab.6B-9Krcye"
1590
1590
  },
1591
1591
  "components": {
1592
1592
  "title": "Components",
1593
1593
  "minItems": 1,
1594
- "@mapping": "takeshape:local:Tab.BJfViC6N1",
1594
+ "@mapping": "shapedb:Tab.BJfViC6N1",
1595
1595
  "items": {
1596
1596
  "oneOf": [
1597
1597
  {
@@ -1620,8 +1620,8 @@
1620
1620
  },
1621
1621
  "@args": "TSRelationshipArgs",
1622
1622
  "@resolver": {
1623
- "name": "takeshape:getRelated",
1624
- "service": "takeshape:local",
1623
+ "name": "shapedb:getRelated",
1624
+ "service": "shapedb",
1625
1625
  "options": {
1626
1626
  "nullable": true
1627
1627
  }
@@ -1631,11 +1631,11 @@
1631
1631
  "type": "string",
1632
1632
  "title": "Slug",
1633
1633
  "minLength": 1,
1634
- "@mapping": "takeshape:local:Tab.tskPgBoUA"
1634
+ "@mapping": "shapedb:Tab.tskPgBoUA"
1635
1635
  },
1636
1636
  "classes": {
1637
1637
  "title": "Classes",
1638
- "@mapping": "takeshape:local:Tab.6phxHUDUl",
1638
+ "@mapping": "shapedb:Tab.6phxHUDUl",
1639
1639
  "items": {
1640
1640
  "@ref": "local:CssClass"
1641
1641
  },
@@ -1651,8 +1651,8 @@
1651
1651
  },
1652
1652
  "@args": "TSRelationshipArgs",
1653
1653
  "@resolver": {
1654
- "name": "takeshape:getRelated",
1655
- "service": "takeshape:local",
1654
+ "name": "shapedb:getRelated",
1655
+ "service": "shapedb",
1656
1656
  "options": {
1657
1657
  "nullable": true
1658
1658
  }
@@ -1682,7 +1682,7 @@
1682
1682
  "type": "string",
1683
1683
  "description": "",
1684
1684
  "title": "Used For",
1685
- "@mapping": "takeshape:local:Dialog.sDec_8qPW"
1685
+ "@mapping": "shapedb:Dialog.sDec_8qPW"
1686
1686
  },
1687
1687
  "slug": {
1688
1688
  "@derivedFrom": "usedFor",
@@ -1691,7 +1691,7 @@
1691
1691
  "type": "string",
1692
1692
  "description": "",
1693
1693
  "title": "Slug",
1694
- "@mapping": "takeshape:local:Dialog.Vwb0hg1Hf"
1694
+ "@mapping": "shapedb:Dialog.Vwb0hg1Hf"
1695
1695
  },
1696
1696
  "classes": {
1697
1697
  "description": "",
@@ -1699,7 +1699,7 @@
1699
1699
  "@ref": "local:CssClass"
1700
1700
  },
1701
1701
  "title": "Classes",
1702
- "@mapping": "takeshape:local:Dialog.sSSGKYDu8",
1702
+ "@mapping": "shapedb:Dialog.sSSGKYDu8",
1703
1703
  "@backreference": {
1704
1704
  "enabled": true
1705
1705
  },
@@ -1712,8 +1712,8 @@
1712
1712
  },
1713
1713
  "@args": "TSRelationshipArgs",
1714
1714
  "@resolver": {
1715
- "name": "takeshape:getRelated",
1716
- "service": "takeshape:local",
1715
+ "name": "shapedb:getRelated",
1716
+ "service": "shapedb",
1717
1717
  "options": {
1718
1718
  "nullable": true
1719
1719
  }
@@ -1728,7 +1728,7 @@
1728
1728
  }
1729
1729
  ],
1730
1730
  "title": "Dimensions",
1731
- "@mapping": "takeshape:local:Dialog.vqwtGrtLl"
1731
+ "@mapping": "shapedb:Dialog.vqwtGrtLl"
1732
1732
  },
1733
1733
  "collection": {
1734
1734
  "oneOf": [
@@ -1738,7 +1738,7 @@
1738
1738
  ],
1739
1739
  "description": "",
1740
1740
  "title": "Collection",
1741
- "@mapping": "takeshape:local:Dialog.6v7fev6Ze"
1741
+ "@mapping": "shapedb:Dialog.6v7fev6Ze"
1742
1742
  },
1743
1743
  "components": {
1744
1744
  "description": "",
@@ -1759,7 +1759,7 @@
1759
1759
  ]
1760
1760
  },
1761
1761
  "title": "Components",
1762
- "@mapping": "takeshape:local:Dialog.C7Y-4Furz",
1762
+ "@mapping": "shapedb:Dialog.C7Y-4Furz",
1763
1763
  "@backreference": {
1764
1764
  "enabled": true
1765
1765
  },
@@ -1772,8 +1772,8 @@
1772
1772
  },
1773
1773
  "@args": "TSRelationshipArgs",
1774
1774
  "@resolver": {
1775
- "name": "takeshape:getRelated",
1776
- "service": "takeshape:local",
1775
+ "name": "shapedb:getRelated",
1776
+ "service": "shapedb",
1777
1777
  "options": {
1778
1778
  "nullable": true
1779
1779
  }
@@ -1794,42 +1794,42 @@
1794
1794
  "minLength": 0,
1795
1795
  "description": "",
1796
1796
  "title": "Width",
1797
- "@mapping": "takeshape:local:Dimensions.iytv_aq7w"
1797
+ "@mapping": "shapedb:Dimensions.iytv_aq7w"
1798
1798
  },
1799
1799
  "minWidth": {
1800
1800
  "type": "string",
1801
1801
  "minLength": 0,
1802
1802
  "description": "",
1803
1803
  "title": "Min Width",
1804
- "@mapping": "takeshape:local:Dimensions.ZYQMhHKCg"
1804
+ "@mapping": "shapedb:Dimensions.ZYQMhHKCg"
1805
1805
  },
1806
1806
  "maxWidth": {
1807
1807
  "type": "string",
1808
1808
  "minLength": 0,
1809
1809
  "description": "",
1810
1810
  "title": "Max Width",
1811
- "@mapping": "takeshape:local:Dimensions.eZnf_Jqmn"
1811
+ "@mapping": "shapedb:Dimensions.eZnf_Jqmn"
1812
1812
  },
1813
1813
  "height": {
1814
1814
  "type": "string",
1815
1815
  "minLength": 0,
1816
1816
  "description": "",
1817
1817
  "title": "Height",
1818
- "@mapping": "takeshape:local:Dimensions.ZKWg69s3T"
1818
+ "@mapping": "shapedb:Dimensions.ZKWg69s3T"
1819
1819
  },
1820
1820
  "minHeight": {
1821
1821
  "type": "string",
1822
1822
  "minLength": 0,
1823
1823
  "description": "",
1824
1824
  "title": "Min Height",
1825
- "@mapping": "takeshape:local:Dimensions.5b6X_m-E4"
1825
+ "@mapping": "shapedb:Dimensions.5b6X_m-E4"
1826
1826
  },
1827
1827
  "maxHeight": {
1828
1828
  "type": "string",
1829
1829
  "minLength": 0,
1830
1830
  "description": "",
1831
1831
  "title": "Max Height",
1832
- "@mapping": "takeshape:local:Dimensions.SwssakQoB"
1832
+ "@mapping": "shapedb:Dimensions.SwssakQoB"
1833
1833
  }
1834
1834
  }
1835
1835
  }
@@ -1860,7 +1860,7 @@
1860
1860
  ]
1861
1861
  },
1862
1862
  "title": "Components",
1863
- "@mapping": "takeshape:local:ComponentCollection.zocG0CX3A",
1863
+ "@mapping": "shapedb:ComponentCollection.zocG0CX3A",
1864
1864
  "@backreference": {
1865
1865
  "enabled": true
1866
1866
  },
@@ -1873,8 +1873,8 @@
1873
1873
  },
1874
1874
  "@args": "TSRelationshipArgs",
1875
1875
  "@resolver": {
1876
- "name": "takeshape:getRelated",
1877
- "service": "takeshape:local",
1876
+ "name": "shapedb:getRelated",
1877
+ "service": "shapedb",
1878
1878
  "options": {
1879
1879
  "nullable": true
1880
1880
  }
@@ -1884,6 +1884,6 @@
1884
1884
  }
1885
1885
  }
1886
1886
  },
1887
- "schemaVersion": "3.30.0",
1887
+ "schemaVersion": "3.31.0",
1888
1888
  "services": {}
1889
1889
  }