@takeshape/schema 9.40.2 → 9.41.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builtin-schema.d.ts.map +1 -1
- package/dist/builtin-schema.js +48 -89
- package/dist/schema-util.js +1 -1
- package/dist/template-shapes/templates.d.ts +1 -1
- package/dist/template-shapes/templates.d.ts.map +1 -1
- package/dist/template-shapes/templates.js +16 -8
- package/dist/template-shapes/where.js +2 -2
- package/es/builtin-schema.js +48 -89
- package/es/schema-util.js +1 -1
- package/es/template-shapes/templates.js +15 -7
- package/es/template-shapes/where.js +3 -3
- package/examples/latest/betzino.json +51 -51
- package/examples/latest/real-world-schema.json +0 -240
- package/examples/latest/rick-and-morty-ast.json +51 -51
- package/examples/latest/rick-and-morty-graphql.json +51 -51
- package/examples/latest/shopify-product-2022-07.json +201 -201
- package/examples/latest/shopify-product-2023-04.json +201 -201
- package/examples/latest/shopify-store-with-widget.json +51 -51
- package/examples/latest/stripe-product-runtime-schema.json +201 -201
- package/examples/latest/stripe-starter-resolved.json +51 -51
- package/examples/source/betzino.json +52 -52
- package/examples/source/real-world-schema.json +4 -172
- package/examples/source/rick-and-morty-ast.json +302 -117
- package/examples/source/rick-and-morty-graphql.json +213 -92
- package/examples/source/shopify-product-2022-07.json +202 -202
- package/examples/source/shopify-product-2023-04.json +202 -202
- package/examples/source/shopify-store-with-widget.json +485 -135
- package/examples/source/stripe-product-runtime-schema.json +202 -202
- package/examples/source/stripe-starter-resolved.json +52 -52
- package/package.json +5 -5
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
|
-
"
|
|
84
|
+
"TSStaticSite": {
|
|
85
85
|
"default": {
|
|
86
86
|
"order": [
|
|
87
87
|
"title",
|
|
@@ -419,25 +419,25 @@
|
|
|
419
419
|
"shape": "PaginatedList<Asset>",
|
|
420
420
|
"description": "Returns a list Asset in natural order."
|
|
421
421
|
},
|
|
422
|
-
"
|
|
423
|
-
"args": "TSGetArgs<
|
|
422
|
+
"getTSStaticSite": {
|
|
423
|
+
"args": "TSGetArgs<TSStaticSite>",
|
|
424
424
|
"resolver": {
|
|
425
425
|
"name": "shapedb:get",
|
|
426
426
|
"service": "shapedb",
|
|
427
|
-
"shapeName": "
|
|
427
|
+
"shapeName": "TSStaticSite"
|
|
428
428
|
},
|
|
429
|
-
"shape": "
|
|
430
|
-
"description": "Get a
|
|
429
|
+
"shape": "TSStaticSite",
|
|
430
|
+
"description": "Get a TSStaticSite by ID"
|
|
431
431
|
},
|
|
432
|
-
"
|
|
433
|
-
"args": "TSListArgs<
|
|
432
|
+
"getTSStaticSiteList": {
|
|
433
|
+
"args": "TSListArgs<TSStaticSite>",
|
|
434
434
|
"resolver": {
|
|
435
435
|
"name": "shapedb:list",
|
|
436
436
|
"service": "shapedb",
|
|
437
|
-
"shapeName": "
|
|
437
|
+
"shapeName": "TSStaticSite"
|
|
438
438
|
},
|
|
439
|
-
"shape": "PaginatedList<
|
|
440
|
-
"description": "Returns a list
|
|
439
|
+
"shape": "PaginatedList<TSStaticSite>",
|
|
440
|
+
"description": "Returns a list TSStaticSite in natural order."
|
|
441
441
|
},
|
|
442
442
|
"getMyProfile": {
|
|
443
443
|
"resolver": {
|
|
@@ -735,45 +735,45 @@
|
|
|
735
735
|
"shape": "DeleteResult<Asset>",
|
|
736
736
|
"description": "Delete Asset"
|
|
737
737
|
},
|
|
738
|
-
"
|
|
739
|
-
"args": "UpdateArgs<
|
|
738
|
+
"updateTSStaticSite": {
|
|
739
|
+
"args": "UpdateArgs<TSStaticSite>",
|
|
740
740
|
"resolver": {
|
|
741
741
|
"name": "shapedb:update",
|
|
742
742
|
"service": "shapedb",
|
|
743
|
-
"shapeName": "
|
|
743
|
+
"shapeName": "TSStaticSite"
|
|
744
744
|
},
|
|
745
|
-
"shape": "UpdateResult<
|
|
746
|
-
"description": "Update
|
|
745
|
+
"shape": "UpdateResult<TSStaticSite>",
|
|
746
|
+
"description": "Update TSStaticSite"
|
|
747
747
|
},
|
|
748
|
-
"
|
|
749
|
-
"args": "CreateArgs<
|
|
748
|
+
"createTSStaticSite": {
|
|
749
|
+
"args": "CreateArgs<TSStaticSite>",
|
|
750
750
|
"resolver": {
|
|
751
751
|
"name": "shapedb:create",
|
|
752
752
|
"service": "shapedb",
|
|
753
|
-
"shapeName": "
|
|
753
|
+
"shapeName": "TSStaticSite"
|
|
754
754
|
},
|
|
755
|
-
"shape": "CreateResult<
|
|
756
|
-
"description": "Create
|
|
755
|
+
"shape": "CreateResult<TSStaticSite>",
|
|
756
|
+
"description": "Create TSStaticSite"
|
|
757
757
|
},
|
|
758
|
-
"
|
|
759
|
-
"args": "DuplicateArgs<
|
|
758
|
+
"duplicateTSStaticSite": {
|
|
759
|
+
"args": "DuplicateArgs<TSStaticSite>",
|
|
760
760
|
"resolver": {
|
|
761
761
|
"name": "shapedb:duplicate",
|
|
762
762
|
"service": "shapedb",
|
|
763
|
-
"shapeName": "
|
|
763
|
+
"shapeName": "TSStaticSite"
|
|
764
764
|
},
|
|
765
|
-
"shape": "DuplicateResult<
|
|
766
|
-
"description": "Duplicate
|
|
765
|
+
"shape": "DuplicateResult<TSStaticSite>",
|
|
766
|
+
"description": "Duplicate TSStaticSite"
|
|
767
767
|
},
|
|
768
|
-
"
|
|
769
|
-
"args": "DeleteArgs<
|
|
768
|
+
"deleteTSStaticSite": {
|
|
769
|
+
"args": "DeleteArgs<TSStaticSite>",
|
|
770
770
|
"resolver": {
|
|
771
771
|
"name": "shapedb:delete",
|
|
772
772
|
"service": "shapedb",
|
|
773
|
-
"shapeName": "
|
|
773
|
+
"shapeName": "TSStaticSite"
|
|
774
774
|
},
|
|
775
|
-
"shape": "DeleteResult<
|
|
776
|
-
"description": "Delete
|
|
775
|
+
"shape": "DeleteResult<TSStaticSite>",
|
|
776
|
+
"description": "Delete TSStaticSite"
|
|
777
777
|
},
|
|
778
778
|
"upsertMyProfile": {
|
|
779
779
|
"args": "UpsertMyProfileInput",
|
|
@@ -1453,9 +1453,9 @@
|
|
|
1453
1453
|
]
|
|
1454
1454
|
}
|
|
1455
1455
|
},
|
|
1456
|
-
"
|
|
1456
|
+
"TSStaticSite": {
|
|
1457
1457
|
"id": "SITE",
|
|
1458
|
-
"name": "
|
|
1458
|
+
"name": "TSStaticSite",
|
|
1459
1459
|
"title": "Static Site",
|
|
1460
1460
|
"model": {
|
|
1461
1461
|
"type": "multiple"
|
|
@@ -1468,14 +1468,14 @@
|
|
|
1468
1468
|
"title": "Title",
|
|
1469
1469
|
"@l10n": false,
|
|
1470
1470
|
"minLength": 1,
|
|
1471
|
-
"@mapping": "shapedb:
|
|
1471
|
+
"@mapping": "shapedb:TSStaticSite.Ski9jLuXg"
|
|
1472
1472
|
},
|
|
1473
1473
|
"baseUrl": {
|
|
1474
1474
|
"type": "string",
|
|
1475
1475
|
"title": "Base URL",
|
|
1476
1476
|
"@l10n": false,
|
|
1477
1477
|
"minLength": 1,
|
|
1478
|
-
"@mapping": "shapedb:
|
|
1478
|
+
"@mapping": "shapedb:TSStaticSite.Bk3tNmrfE"
|
|
1479
1479
|
},
|
|
1480
1480
|
"provider": {
|
|
1481
1481
|
"type": "string",
|
|
@@ -1520,14 +1520,14 @@
|
|
|
1520
1520
|
"title": "Vercel"
|
|
1521
1521
|
}
|
|
1522
1522
|
],
|
|
1523
|
-
"@mapping": "shapedb:
|
|
1523
|
+
"@mapping": "shapedb:TSStaticSite.SkwbT2hqe"
|
|
1524
1524
|
},
|
|
1525
1525
|
"idKey": {
|
|
1526
1526
|
"type": "string",
|
|
1527
1527
|
"title": "Id Key",
|
|
1528
1528
|
"@l10n": false,
|
|
1529
1529
|
"minLength": 1,
|
|
1530
|
-
"@mapping": "shapedb:
|
|
1530
|
+
"@mapping": "shapedb:TSStaticSite.SyRhi8_me"
|
|
1531
1531
|
},
|
|
1532
1532
|
"secretKey": {
|
|
1533
1533
|
"type": "string",
|
|
@@ -1535,43 +1535,43 @@
|
|
|
1535
1535
|
"@l10n": false,
|
|
1536
1536
|
"@sensitive": true,
|
|
1537
1537
|
"minLength": 1,
|
|
1538
|
-
"@mapping": "shapedb:
|
|
1538
|
+
"@mapping": "shapedb:TSStaticSite.BkIajLdXl"
|
|
1539
1539
|
},
|
|
1540
1540
|
"destination": {
|
|
1541
1541
|
"type": "string",
|
|
1542
1542
|
"title": "Destination",
|
|
1543
1543
|
"@l10n": false,
|
|
1544
1544
|
"minLength": 1,
|
|
1545
|
-
"@mapping": "shapedb:
|
|
1545
|
+
"@mapping": "shapedb:TSStaticSite.Hk6TsIdXl"
|
|
1546
1546
|
},
|
|
1547
1547
|
"privateAcl": {
|
|
1548
1548
|
"type": "boolean",
|
|
1549
1549
|
"title": "Private ACL",
|
|
1550
1550
|
"@l10n": false,
|
|
1551
|
-
"@mapping": "shapedb:
|
|
1551
|
+
"@mapping": "shapedb:TSStaticSite.ByFe48wWU"
|
|
1552
1552
|
},
|
|
1553
1553
|
"environmentVariables": {
|
|
1554
1554
|
"type": "array",
|
|
1555
1555
|
"title": "Environment Variables",
|
|
1556
1556
|
"@l10n": false,
|
|
1557
1557
|
"items": {
|
|
1558
|
-
"$ref": "#/shapes/
|
|
1558
|
+
"$ref": "#/shapes/TSStaticSiteEnvironmentVariables/schema"
|
|
1559
1559
|
},
|
|
1560
|
-
"@mapping": "shapedb:
|
|
1560
|
+
"@mapping": "shapedb:TSStaticSite.9fj4UiNxY"
|
|
1561
1561
|
},
|
|
1562
1562
|
"triggers": {
|
|
1563
1563
|
"type": "array",
|
|
1564
1564
|
"title": "Publish Triggers",
|
|
1565
1565
|
"@l10n": false,
|
|
1566
1566
|
"items": {
|
|
1567
|
-
"$ref": "#/shapes/
|
|
1567
|
+
"$ref": "#/shapes/TSStaticSiteTriggers/schema"
|
|
1568
1568
|
}
|
|
1569
1569
|
},
|
|
1570
1570
|
"templateHash": {
|
|
1571
1571
|
"type": "string",
|
|
1572
1572
|
"title": "Template Hash",
|
|
1573
1573
|
"@l10n": false,
|
|
1574
|
-
"@mapping": "shapedb:
|
|
1574
|
+
"@mapping": "shapedb:TSStaticSite.S1QA3GYI8"
|
|
1575
1575
|
},
|
|
1576
1576
|
"_id": {
|
|
1577
1577
|
"title": "Id",
|
|
@@ -1649,9 +1649,9 @@
|
|
|
1649
1649
|
]
|
|
1650
1650
|
}
|
|
1651
1651
|
},
|
|
1652
|
-
"
|
|
1652
|
+
"TSStaticSiteEnvironmentVariables": {
|
|
1653
1653
|
"id": "9fj4UiNxY",
|
|
1654
|
-
"name": "
|
|
1654
|
+
"name": "TSStaticSiteEnvironmentVariables",
|
|
1655
1655
|
"title": "Static Site EnvironmentVariables",
|
|
1656
1656
|
"schema": {
|
|
1657
1657
|
"type": "object",
|
|
@@ -1659,19 +1659,19 @@
|
|
|
1659
1659
|
"name": {
|
|
1660
1660
|
"type": "string",
|
|
1661
1661
|
"title": "Name",
|
|
1662
|
-
"@mapping": "shapedb:
|
|
1662
|
+
"@mapping": "shapedb:TSStaticSite.J8sbHgfdI"
|
|
1663
1663
|
},
|
|
1664
1664
|
"value": {
|
|
1665
1665
|
"type": "string",
|
|
1666
1666
|
"title": "Value",
|
|
1667
|
-
"@mapping": "shapedb:
|
|
1667
|
+
"@mapping": "shapedb:TSStaticSite.ndhh88DvG"
|
|
1668
1668
|
}
|
|
1669
1669
|
}
|
|
1670
1670
|
}
|
|
1671
1671
|
},
|
|
1672
|
-
"
|
|
1673
|
-
"id": "
|
|
1674
|
-
"name": "
|
|
1672
|
+
"TSStaticSiteTriggers": {
|
|
1673
|
+
"id": "TSStaticSiteTriggers",
|
|
1674
|
+
"name": "TSStaticSiteTriggers",
|
|
1675
1675
|
"title": "Static Site Triggers",
|
|
1676
1676
|
"schema": {
|
|
1677
1677
|
"type": "object",
|
|
@@ -7244,7 +7244,7 @@
|
|
|
7244
7244
|
]
|
|
7245
7245
|
}
|
|
7246
7246
|
},
|
|
7247
|
-
"
|
|
7247
|
+
"TSStaticSite": {
|
|
7248
7248
|
"default": {
|
|
7249
7249
|
"order": [
|
|
7250
7250
|
"title",
|
|
@@ -10321,27 +10321,27 @@
|
|
|
10321
10321
|
"description": "Returns a list DismissibleNotification in natural order.",
|
|
10322
10322
|
"args": "TSListArgs<DismissibleNotification>"
|
|
10323
10323
|
},
|
|
10324
|
-
"
|
|
10325
|
-
"shape": "
|
|
10324
|
+
"getTSStaticSite": {
|
|
10325
|
+
"shape": "TSStaticSite",
|
|
10326
10326
|
"resolver": {
|
|
10327
10327
|
"name": "takeshape:get",
|
|
10328
10328
|
"service": "takeshape:local",
|
|
10329
10329
|
"options": {},
|
|
10330
|
-
"shapeName": "
|
|
10330
|
+
"shapeName": "TSStaticSite"
|
|
10331
10331
|
},
|
|
10332
|
-
"description": "Get a
|
|
10333
|
-
"args": "TSGetArgs<
|
|
10332
|
+
"description": "Get a TSStaticSite by ID",
|
|
10333
|
+
"args": "TSGetArgs<TSStaticSite>"
|
|
10334
10334
|
},
|
|
10335
|
-
"
|
|
10336
|
-
"shape": "PaginatedList<
|
|
10335
|
+
"getTSStaticSiteList": {
|
|
10336
|
+
"shape": "PaginatedList<TSStaticSite>",
|
|
10337
10337
|
"resolver": {
|
|
10338
10338
|
"name": "takeshape:list",
|
|
10339
10339
|
"service": "takeshape:local",
|
|
10340
10340
|
"options": {},
|
|
10341
|
-
"shapeName": "
|
|
10341
|
+
"shapeName": "TSStaticSite"
|
|
10342
10342
|
},
|
|
10343
|
-
"description": "Returns a list
|
|
10344
|
-
"args": "TSListArgs<
|
|
10343
|
+
"description": "Returns a list TSStaticSite in natural order.",
|
|
10344
|
+
"args": "TSListArgs<TSStaticSite>"
|
|
10345
10345
|
},
|
|
10346
10346
|
"getQuickDeposit": {
|
|
10347
10347
|
"shape": "QuickDeposit",
|
|
@@ -15703,49 +15703,49 @@
|
|
|
15703
15703
|
"description": "Delete DismissibleNotification",
|
|
15704
15704
|
"args": "DeleteArgs<DismissibleNotification>"
|
|
15705
15705
|
},
|
|
15706
|
-
"
|
|
15707
|
-
"shape": "UpdateResult<
|
|
15706
|
+
"updateTSStaticSite": {
|
|
15707
|
+
"shape": "UpdateResult<TSStaticSite>",
|
|
15708
15708
|
"resolver": {
|
|
15709
15709
|
"name": "takeshape:update",
|
|
15710
15710
|
"service": "takeshape:local",
|
|
15711
15711
|
"options": {},
|
|
15712
|
-
"shapeName": "
|
|
15712
|
+
"shapeName": "TSStaticSite"
|
|
15713
15713
|
},
|
|
15714
|
-
"description": "Update
|
|
15715
|
-
"args": "UpdateArgs<
|
|
15714
|
+
"description": "Update TSStaticSite",
|
|
15715
|
+
"args": "UpdateArgs<TSStaticSite>"
|
|
15716
15716
|
},
|
|
15717
|
-
"
|
|
15718
|
-
"shape": "CreateResult<
|
|
15717
|
+
"createTSStaticSite": {
|
|
15718
|
+
"shape": "CreateResult<TSStaticSite>",
|
|
15719
15719
|
"resolver": {
|
|
15720
15720
|
"name": "takeshape:create",
|
|
15721
15721
|
"service": "takeshape:local",
|
|
15722
15722
|
"options": {},
|
|
15723
|
-
"shapeName": "
|
|
15723
|
+
"shapeName": "TSStaticSite"
|
|
15724
15724
|
},
|
|
15725
|
-
"description": "Create
|
|
15726
|
-
"args": "CreateArgs<
|
|
15725
|
+
"description": "Create TSStaticSite",
|
|
15726
|
+
"args": "CreateArgs<TSStaticSite>"
|
|
15727
15727
|
},
|
|
15728
|
-
"
|
|
15729
|
-
"shape": "DuplicateResult<
|
|
15728
|
+
"duplicateTSStaticSite": {
|
|
15729
|
+
"shape": "DuplicateResult<TSStaticSite>",
|
|
15730
15730
|
"resolver": {
|
|
15731
15731
|
"name": "takeshape:duplicate",
|
|
15732
15732
|
"service": "takeshape:local",
|
|
15733
15733
|
"options": {},
|
|
15734
|
-
"shapeName": "
|
|
15734
|
+
"shapeName": "TSStaticSite"
|
|
15735
15735
|
},
|
|
15736
|
-
"description": "Duplicate
|
|
15737
|
-
"args": "DuplicateArgs<
|
|
15736
|
+
"description": "Duplicate TSStaticSite",
|
|
15737
|
+
"args": "DuplicateArgs<TSStaticSite>"
|
|
15738
15738
|
},
|
|
15739
|
-
"
|
|
15740
|
-
"shape": "DeleteResult<
|
|
15739
|
+
"deleteTSStaticSite": {
|
|
15740
|
+
"shape": "DeleteResult<TSStaticSite>",
|
|
15741
15741
|
"resolver": {
|
|
15742
15742
|
"name": "takeshape:delete",
|
|
15743
15743
|
"service": "takeshape:local",
|
|
15744
15744
|
"options": {},
|
|
15745
|
-
"shapeName": "
|
|
15745
|
+
"shapeName": "TSStaticSite"
|
|
15746
15746
|
},
|
|
15747
|
-
"description": "Delete
|
|
15748
|
-
"args": "DeleteArgs<
|
|
15747
|
+
"description": "Delete TSStaticSite",
|
|
15748
|
+
"args": "DeleteArgs<TSStaticSite>"
|
|
15749
15749
|
},
|
|
15750
15750
|
"updateQuickDeposit": {
|
|
15751
15751
|
"shape": "UpdateResult<QuickDeposit>",
|
|
@@ -42537,9 +42537,9 @@
|
|
|
42537
42537
|
}
|
|
42538
42538
|
}
|
|
42539
42539
|
},
|
|
42540
|
-
"
|
|
42540
|
+
"TSStaticSite": {
|
|
42541
42541
|
"id": "SITE",
|
|
42542
|
-
"name": "
|
|
42542
|
+
"name": "TSStaticSite",
|
|
42543
42543
|
"title": "Static Site",
|
|
42544
42544
|
"model": {
|
|
42545
42545
|
"type": "multiple"
|
|
@@ -42552,14 +42552,14 @@
|
|
|
42552
42552
|
"title": "Title",
|
|
42553
42553
|
"@l10n": false,
|
|
42554
42554
|
"minLength": 1,
|
|
42555
|
-
"@mapping": "takeshape:local:
|
|
42555
|
+
"@mapping": "takeshape:local:TSStaticSite.Ski9jLuXg"
|
|
42556
42556
|
},
|
|
42557
42557
|
"baseUrl": {
|
|
42558
42558
|
"type": "string",
|
|
42559
42559
|
"title": "Base URL",
|
|
42560
42560
|
"@l10n": false,
|
|
42561
42561
|
"minLength": 1,
|
|
42562
|
-
"@mapping": "takeshape:local:
|
|
42562
|
+
"@mapping": "takeshape:local:TSStaticSite.Bk3tNmrfE"
|
|
42563
42563
|
},
|
|
42564
42564
|
"provider": {
|
|
42565
42565
|
"type": "string",
|
|
@@ -42604,14 +42604,14 @@
|
|
|
42604
42604
|
"title": "Vercel"
|
|
42605
42605
|
}
|
|
42606
42606
|
],
|
|
42607
|
-
"@mapping": "takeshape:local:
|
|
42607
|
+
"@mapping": "takeshape:local:TSStaticSite.SkwbT2hqe"
|
|
42608
42608
|
},
|
|
42609
42609
|
"idKey": {
|
|
42610
42610
|
"type": "string",
|
|
42611
42611
|
"title": "Id Key",
|
|
42612
42612
|
"@l10n": false,
|
|
42613
42613
|
"minLength": 1,
|
|
42614
|
-
"@mapping": "takeshape:local:
|
|
42614
|
+
"@mapping": "takeshape:local:TSStaticSite.SyRhi8_me"
|
|
42615
42615
|
},
|
|
42616
42616
|
"secretKey": {
|
|
42617
42617
|
"type": "string",
|
|
@@ -42619,43 +42619,43 @@
|
|
|
42619
42619
|
"@l10n": false,
|
|
42620
42620
|
"@sensitive": true,
|
|
42621
42621
|
"minLength": 1,
|
|
42622
|
-
"@mapping": "takeshape:local:
|
|
42622
|
+
"@mapping": "takeshape:local:TSStaticSite.BkIajLdXl"
|
|
42623
42623
|
},
|
|
42624
42624
|
"destination": {
|
|
42625
42625
|
"type": "string",
|
|
42626
42626
|
"title": "Destination",
|
|
42627
42627
|
"@l10n": false,
|
|
42628
42628
|
"minLength": 1,
|
|
42629
|
-
"@mapping": "takeshape:local:
|
|
42629
|
+
"@mapping": "takeshape:local:TSStaticSite.Hk6TsIdXl"
|
|
42630
42630
|
},
|
|
42631
42631
|
"privateAcl": {
|
|
42632
42632
|
"type": "boolean",
|
|
42633
42633
|
"title": "Private ACL",
|
|
42634
42634
|
"@l10n": false,
|
|
42635
|
-
"@mapping": "takeshape:local:
|
|
42635
|
+
"@mapping": "takeshape:local:TSStaticSite.ByFe48wWU"
|
|
42636
42636
|
},
|
|
42637
42637
|
"environmentVariables": {
|
|
42638
42638
|
"type": "array",
|
|
42639
42639
|
"title": "Environment Variables",
|
|
42640
42640
|
"@l10n": false,
|
|
42641
42641
|
"items": {
|
|
42642
|
-
"$ref": "#/shapes/
|
|
42642
|
+
"$ref": "#/shapes/TSStaticSiteEnvironmentVariables/schema"
|
|
42643
42643
|
},
|
|
42644
|
-
"@mapping": "takeshape:local:
|
|
42644
|
+
"@mapping": "takeshape:local:TSStaticSite.9fj4UiNxY"
|
|
42645
42645
|
},
|
|
42646
42646
|
"triggers": {
|
|
42647
42647
|
"type": "array",
|
|
42648
42648
|
"title": "Publish Triggers",
|
|
42649
42649
|
"@l10n": false,
|
|
42650
42650
|
"items": {
|
|
42651
|
-
"$ref": "#/shapes/
|
|
42651
|
+
"$ref": "#/shapes/TSStaticSiteTriggers/schema"
|
|
42652
42652
|
}
|
|
42653
42653
|
},
|
|
42654
42654
|
"templateHash": {
|
|
42655
42655
|
"type": "string",
|
|
42656
42656
|
"title": "Template Hash",
|
|
42657
42657
|
"@l10n": false,
|
|
42658
|
-
"@mapping": "takeshape:local:
|
|
42658
|
+
"@mapping": "takeshape:local:TSStaticSite.S1QA3GYI8"
|
|
42659
42659
|
},
|
|
42660
42660
|
"_id": {
|
|
42661
42661
|
"title": "Id",
|
|
@@ -42721,9 +42721,9 @@
|
|
|
42721
42721
|
]
|
|
42722
42722
|
}
|
|
42723
42723
|
},
|
|
42724
|
-
"
|
|
42724
|
+
"TSStaticSiteEnvironmentVariables": {
|
|
42725
42725
|
"id": "9fj4UiNxY",
|
|
42726
|
-
"name": "
|
|
42726
|
+
"name": "TSStaticSiteEnvironmentVariables",
|
|
42727
42727
|
"title": "Static Site EnvironmentVariables",
|
|
42728
42728
|
"schema": {
|
|
42729
42729
|
"type": "object",
|
|
@@ -42731,19 +42731,19 @@
|
|
|
42731
42731
|
"name": {
|
|
42732
42732
|
"type": "string",
|
|
42733
42733
|
"title": "Name",
|
|
42734
|
-
"@mapping": "takeshape:local:
|
|
42734
|
+
"@mapping": "takeshape:local:TSStaticSite.J8sbHgfdI"
|
|
42735
42735
|
},
|
|
42736
42736
|
"value": {
|
|
42737
42737
|
"type": "string",
|
|
42738
42738
|
"title": "Value",
|
|
42739
|
-
"@mapping": "takeshape:local:
|
|
42739
|
+
"@mapping": "takeshape:local:TSStaticSite.ndhh88DvG"
|
|
42740
42740
|
}
|
|
42741
42741
|
}
|
|
42742
42742
|
}
|
|
42743
42743
|
},
|
|
42744
|
-
"
|
|
42745
|
-
"id": "
|
|
42746
|
-
"name": "
|
|
42744
|
+
"TSStaticSiteTriggers": {
|
|
42745
|
+
"id": "TSStaticSiteTriggers",
|
|
42746
|
+
"name": "TSStaticSiteTriggers",
|
|
42747
42747
|
"title": "Static Site Triggers",
|
|
42748
42748
|
"schema": {
|
|
42749
42749
|
"type": "object",
|
|
@@ -43361,4 +43361,4 @@
|
|
|
43361
43361
|
},
|
|
43362
43362
|
"schemaVersion": "3.12.2",
|
|
43363
43363
|
"services": {}
|
|
43364
|
-
}
|
|
43364
|
+
}
|