@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
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"defaultLocale": "en",
|
|
26
|
-
"locales": [
|
|
26
|
+
"locales": [
|
|
27
|
+
"en"
|
|
28
|
+
],
|
|
27
29
|
"projectId": "2c8c44e7-9cbc-4a35-9dea-f0cb2ced03a4",
|
|
28
30
|
"version": 1,
|
|
29
31
|
"schemaVersion": "3.8.0",
|
|
@@ -52,29 +54,29 @@
|
|
|
52
54
|
"description": "Returns a list Asset in natural order.",
|
|
53
55
|
"args": "TSListArgs<Asset>"
|
|
54
56
|
},
|
|
55
|
-
"
|
|
56
|
-
"shape": "
|
|
57
|
+
"getTSStaticSite": {
|
|
58
|
+
"shape": "TSStaticSite",
|
|
57
59
|
"resolver": {
|
|
58
60
|
"name": "takeshape:get",
|
|
59
61
|
"service": "takeshape:local",
|
|
60
62
|
"options": {
|
|
61
|
-
"model": "
|
|
63
|
+
"model": "TSStaticSite"
|
|
62
64
|
}
|
|
63
65
|
},
|
|
64
|
-
"description": "Get a
|
|
65
|
-
"args": "TSGetArgs<
|
|
66
|
+
"description": "Get a TSStaticSite by ID",
|
|
67
|
+
"args": "TSGetArgs<TSStaticSite>"
|
|
66
68
|
},
|
|
67
|
-
"
|
|
68
|
-
"shape": "PaginatedList<
|
|
69
|
+
"getTSStaticSiteList": {
|
|
70
|
+
"shape": "PaginatedList<TSStaticSite>",
|
|
69
71
|
"resolver": {
|
|
70
72
|
"name": "takeshape:list",
|
|
71
73
|
"service": "takeshape:local",
|
|
72
74
|
"options": {
|
|
73
|
-
"model": "
|
|
75
|
+
"model": "TSStaticSite"
|
|
74
76
|
}
|
|
75
77
|
},
|
|
76
|
-
"description": "Returns a list
|
|
77
|
-
"args": "TSListArgs<
|
|
78
|
+
"description": "Returns a list TSStaticSite in natural order.",
|
|
79
|
+
"args": "TSListArgs<TSStaticSite>"
|
|
78
80
|
},
|
|
79
81
|
"getGenre": {
|
|
80
82
|
"shape": "Genre",
|
|
@@ -236,7 +238,9 @@
|
|
|
236
238
|
"@tag": "id"
|
|
237
239
|
}
|
|
238
240
|
},
|
|
239
|
-
"required": [
|
|
241
|
+
"required": [
|
|
242
|
+
"id"
|
|
243
|
+
]
|
|
240
244
|
},
|
|
241
245
|
"shape": "Rick_Character"
|
|
242
246
|
},
|
|
@@ -311,53 +315,53 @@
|
|
|
311
315
|
"description": "Delete Asset",
|
|
312
316
|
"args": "DeleteArgs<Asset>"
|
|
313
317
|
},
|
|
314
|
-
"
|
|
315
|
-
"shape": "UpdateResult<
|
|
318
|
+
"updateTSStaticSite": {
|
|
319
|
+
"shape": "UpdateResult<TSStaticSite>",
|
|
316
320
|
"resolver": {
|
|
317
321
|
"name": "takeshape:update",
|
|
318
322
|
"service": "takeshape:local",
|
|
319
323
|
"options": {
|
|
320
|
-
"model": "
|
|
324
|
+
"model": "TSStaticSite"
|
|
321
325
|
}
|
|
322
326
|
},
|
|
323
|
-
"description": "Update
|
|
324
|
-
"args": "UpdateArgs<
|
|
327
|
+
"description": "Update TSStaticSite",
|
|
328
|
+
"args": "UpdateArgs<TSStaticSite>"
|
|
325
329
|
},
|
|
326
|
-
"
|
|
327
|
-
"shape": "CreateResult<
|
|
330
|
+
"createTSStaticSite": {
|
|
331
|
+
"shape": "CreateResult<TSStaticSite>",
|
|
328
332
|
"resolver": {
|
|
329
333
|
"name": "takeshape:create",
|
|
330
334
|
"service": "takeshape:local",
|
|
331
335
|
"options": {
|
|
332
|
-
"model": "
|
|
336
|
+
"model": "TSStaticSite"
|
|
333
337
|
}
|
|
334
338
|
},
|
|
335
|
-
"description": "Create
|
|
336
|
-
"args": "CreateArgs<
|
|
339
|
+
"description": "Create TSStaticSite",
|
|
340
|
+
"args": "CreateArgs<TSStaticSite>"
|
|
337
341
|
},
|
|
338
|
-
"
|
|
339
|
-
"shape": "DuplicateResult<
|
|
342
|
+
"duplicateTSStaticSite": {
|
|
343
|
+
"shape": "DuplicateResult<TSStaticSite>",
|
|
340
344
|
"resolver": {
|
|
341
345
|
"name": "takeshape:duplicate",
|
|
342
346
|
"service": "takeshape:local",
|
|
343
347
|
"options": {
|
|
344
|
-
"model": "
|
|
348
|
+
"model": "TSStaticSite"
|
|
345
349
|
}
|
|
346
350
|
},
|
|
347
|
-
"description": "Duplicate
|
|
348
|
-
"args": "DuplicateArgs<
|
|
351
|
+
"description": "Duplicate TSStaticSite",
|
|
352
|
+
"args": "DuplicateArgs<TSStaticSite>"
|
|
349
353
|
},
|
|
350
|
-
"
|
|
351
|
-
"shape": "DeleteResult<
|
|
354
|
+
"deleteTSStaticSite": {
|
|
355
|
+
"shape": "DeleteResult<TSStaticSite>",
|
|
352
356
|
"resolver": {
|
|
353
357
|
"name": "takeshape:delete",
|
|
354
358
|
"service": "takeshape:local",
|
|
355
359
|
"options": {
|
|
356
|
-
"model": "
|
|
360
|
+
"model": "TSStaticSite"
|
|
357
361
|
}
|
|
358
362
|
},
|
|
359
|
-
"description": "Delete
|
|
360
|
-
"args": "DeleteArgs<
|
|
363
|
+
"description": "Delete TSStaticSite",
|
|
364
|
+
"args": "DeleteArgs<TSStaticSite>"
|
|
361
365
|
},
|
|
362
366
|
"updateGenre": {
|
|
363
367
|
"shape": "UpdateResult<Genre>",
|
|
@@ -645,7 +649,9 @@
|
|
|
645
649
|
"type": "string"
|
|
646
650
|
}
|
|
647
651
|
},
|
|
648
|
-
"required": [
|
|
652
|
+
"required": [
|
|
653
|
+
"id"
|
|
654
|
+
]
|
|
649
655
|
}
|
|
650
656
|
},
|
|
651
657
|
"TSColorHsl": {
|
|
@@ -793,7 +799,9 @@
|
|
|
793
799
|
"@mapping": "takeshape:local:Asset.SyQiZrgdX",
|
|
794
800
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
795
801
|
"@relationship": {
|
|
796
|
-
"shapeIds": [
|
|
802
|
+
"shapeIds": [
|
|
803
|
+
"SJDIicDUZ"
|
|
804
|
+
],
|
|
797
805
|
"type": "single"
|
|
798
806
|
}
|
|
799
807
|
},
|
|
@@ -865,23 +873,32 @@
|
|
|
865
873
|
"title": "Status",
|
|
866
874
|
"oneOf": [
|
|
867
875
|
{
|
|
868
|
-
"enum": [
|
|
876
|
+
"enum": [
|
|
877
|
+
"r1uCfi4ZL",
|
|
878
|
+
"disabled"
|
|
879
|
+
],
|
|
869
880
|
"title": "Disabled"
|
|
870
881
|
},
|
|
871
882
|
{
|
|
872
|
-
"enum": [
|
|
883
|
+
"enum": [
|
|
884
|
+
"rkhRGs4WL",
|
|
885
|
+
"enabled"
|
|
886
|
+
],
|
|
873
887
|
"title": "Enabled"
|
|
874
888
|
}
|
|
875
889
|
],
|
|
876
890
|
"@workflow": "default"
|
|
877
891
|
}
|
|
878
892
|
},
|
|
879
|
-
"required": [
|
|
893
|
+
"required": [
|
|
894
|
+
"filename",
|
|
895
|
+
"path"
|
|
896
|
+
]
|
|
880
897
|
}
|
|
881
898
|
},
|
|
882
|
-
"
|
|
899
|
+
"TSStaticSite": {
|
|
883
900
|
"id": "SITE",
|
|
884
|
-
"name": "
|
|
901
|
+
"name": "TSStaticSite",
|
|
885
902
|
"title": "Static Site",
|
|
886
903
|
"model": {
|
|
887
904
|
"type": "multiple"
|
|
@@ -894,14 +911,14 @@
|
|
|
894
911
|
"title": "Title",
|
|
895
912
|
"@l10n": false,
|
|
896
913
|
"minLength": 1,
|
|
897
|
-
"@mapping": "takeshape:local:
|
|
914
|
+
"@mapping": "takeshape:local:TSStaticSite.Ski9jLuXg"
|
|
898
915
|
},
|
|
899
916
|
"baseUrl": {
|
|
900
917
|
"type": "string",
|
|
901
918
|
"title": "Base URL",
|
|
902
919
|
"@l10n": false,
|
|
903
920
|
"minLength": 1,
|
|
904
|
-
"@mapping": "takeshape:local:
|
|
921
|
+
"@mapping": "takeshape:local:TSStaticSite.Bk3tNmrfE"
|
|
905
922
|
},
|
|
906
923
|
"provider": {
|
|
907
924
|
"type": "string",
|
|
@@ -910,38 +927,50 @@
|
|
|
910
927
|
"@l10n": false,
|
|
911
928
|
"oneOf": [
|
|
912
929
|
{
|
|
913
|
-
"enum": [
|
|
930
|
+
"enum": [
|
|
931
|
+
"s3"
|
|
932
|
+
],
|
|
914
933
|
"title": "S3"
|
|
915
934
|
},
|
|
916
935
|
{
|
|
917
|
-
"enum": [
|
|
936
|
+
"enum": [
|
|
937
|
+
"gcs"
|
|
938
|
+
],
|
|
918
939
|
"title": "Google Cloud Storage"
|
|
919
940
|
},
|
|
920
941
|
{
|
|
921
|
-
"enum": [
|
|
942
|
+
"enum": [
|
|
943
|
+
"ftp"
|
|
944
|
+
],
|
|
922
945
|
"title": "FTP Client"
|
|
923
946
|
},
|
|
924
947
|
{
|
|
925
|
-
"enum": [
|
|
948
|
+
"enum": [
|
|
949
|
+
"azure"
|
|
950
|
+
],
|
|
926
951
|
"title": "Azure Storage Account"
|
|
927
952
|
},
|
|
928
953
|
{
|
|
929
|
-
"enum": [
|
|
954
|
+
"enum": [
|
|
955
|
+
"netlify"
|
|
956
|
+
],
|
|
930
957
|
"title": "Netlify"
|
|
931
958
|
},
|
|
932
959
|
{
|
|
933
|
-
"enum": [
|
|
960
|
+
"enum": [
|
|
961
|
+
"vercel"
|
|
962
|
+
],
|
|
934
963
|
"title": "Vercel"
|
|
935
964
|
}
|
|
936
965
|
],
|
|
937
|
-
"@mapping": "takeshape:local:
|
|
966
|
+
"@mapping": "takeshape:local:TSStaticSite.SkwbT2hqe"
|
|
938
967
|
},
|
|
939
968
|
"idKey": {
|
|
940
969
|
"type": "string",
|
|
941
970
|
"title": "Id Key",
|
|
942
971
|
"@l10n": false,
|
|
943
972
|
"minLength": 1,
|
|
944
|
-
"@mapping": "takeshape:local:
|
|
973
|
+
"@mapping": "takeshape:local:TSStaticSite.SyRhi8_me"
|
|
945
974
|
},
|
|
946
975
|
"secretKey": {
|
|
947
976
|
"type": "string",
|
|
@@ -949,43 +978,43 @@
|
|
|
949
978
|
"@l10n": false,
|
|
950
979
|
"@sensitive": true,
|
|
951
980
|
"minLength": 1,
|
|
952
|
-
"@mapping": "takeshape:local:
|
|
981
|
+
"@mapping": "takeshape:local:TSStaticSite.BkIajLdXl"
|
|
953
982
|
},
|
|
954
983
|
"destination": {
|
|
955
984
|
"type": "string",
|
|
956
985
|
"title": "Destination",
|
|
957
986
|
"@l10n": false,
|
|
958
987
|
"minLength": 1,
|
|
959
|
-
"@mapping": "takeshape:local:
|
|
988
|
+
"@mapping": "takeshape:local:TSStaticSite.Hk6TsIdXl"
|
|
960
989
|
},
|
|
961
990
|
"privateAcl": {
|
|
962
991
|
"type": "boolean",
|
|
963
992
|
"title": "Private ACL",
|
|
964
993
|
"@l10n": false,
|
|
965
|
-
"@mapping": "takeshape:local:
|
|
994
|
+
"@mapping": "takeshape:local:TSStaticSite.ByFe48wWU"
|
|
966
995
|
},
|
|
967
996
|
"environmentVariables": {
|
|
968
997
|
"type": "array",
|
|
969
998
|
"title": "Environment Variables",
|
|
970
999
|
"@l10n": false,
|
|
971
1000
|
"items": {
|
|
972
|
-
"$ref": "#/shapes/
|
|
1001
|
+
"$ref": "#/shapes/TSStaticSiteEnvironmentVariables/schema"
|
|
973
1002
|
},
|
|
974
|
-
"@mapping": "takeshape:local:
|
|
1003
|
+
"@mapping": "takeshape:local:TSStaticSite.9fj4UiNxY"
|
|
975
1004
|
},
|
|
976
1005
|
"triggers": {
|
|
977
1006
|
"type": "array",
|
|
978
1007
|
"title": "Publish Triggers",
|
|
979
1008
|
"@l10n": false,
|
|
980
1009
|
"items": {
|
|
981
|
-
"$ref": "#/shapes/
|
|
1010
|
+
"$ref": "#/shapes/TSStaticSiteTriggers/schema"
|
|
982
1011
|
}
|
|
983
1012
|
},
|
|
984
1013
|
"templateHash": {
|
|
985
1014
|
"type": "string",
|
|
986
1015
|
"title": "Template Hash",
|
|
987
1016
|
"@l10n": false,
|
|
988
|
-
"@mapping": "takeshape:local:
|
|
1017
|
+
"@mapping": "takeshape:local:TSStaticSite.S1QA3GYI8"
|
|
989
1018
|
},
|
|
990
1019
|
"_id": {
|
|
991
1020
|
"title": "Id",
|
|
@@ -1043,23 +1072,33 @@
|
|
|
1043
1072
|
"title": "Status",
|
|
1044
1073
|
"oneOf": [
|
|
1045
1074
|
{
|
|
1046
|
-
"enum": [
|
|
1075
|
+
"enum": [
|
|
1076
|
+
"r1uCfi4ZL",
|
|
1077
|
+
"disabled"
|
|
1078
|
+
],
|
|
1047
1079
|
"title": "Disabled"
|
|
1048
1080
|
},
|
|
1049
1081
|
{
|
|
1050
|
-
"enum": [
|
|
1082
|
+
"enum": [
|
|
1083
|
+
"rkhRGs4WL",
|
|
1084
|
+
"enabled"
|
|
1085
|
+
],
|
|
1051
1086
|
"title": "Enabled"
|
|
1052
1087
|
}
|
|
1053
1088
|
],
|
|
1054
1089
|
"@workflow": "default"
|
|
1055
1090
|
}
|
|
1056
1091
|
},
|
|
1057
|
-
"required": [
|
|
1092
|
+
"required": [
|
|
1093
|
+
"title",
|
|
1094
|
+
"provider",
|
|
1095
|
+
"destination"
|
|
1096
|
+
]
|
|
1058
1097
|
}
|
|
1059
1098
|
},
|
|
1060
|
-
"
|
|
1099
|
+
"TSStaticSiteEnvironmentVariables": {
|
|
1061
1100
|
"id": "9fj4UiNxY",
|
|
1062
|
-
"name": "
|
|
1101
|
+
"name": "TSStaticSiteEnvironmentVariables",
|
|
1063
1102
|
"title": "Static Site EnvironmentVariables",
|
|
1064
1103
|
"schema": {
|
|
1065
1104
|
"type": "object",
|
|
@@ -1067,19 +1106,19 @@
|
|
|
1067
1106
|
"name": {
|
|
1068
1107
|
"type": "string",
|
|
1069
1108
|
"title": "Name",
|
|
1070
|
-
"@mapping": "takeshape:local:
|
|
1109
|
+
"@mapping": "takeshape:local:TSStaticSite.J8sbHgfdI"
|
|
1071
1110
|
},
|
|
1072
1111
|
"value": {
|
|
1073
1112
|
"type": "string",
|
|
1074
1113
|
"title": "Value",
|
|
1075
|
-
"@mapping": "takeshape:local:
|
|
1114
|
+
"@mapping": "takeshape:local:TSStaticSite.ndhh88DvG"
|
|
1076
1115
|
}
|
|
1077
1116
|
}
|
|
1078
1117
|
}
|
|
1079
1118
|
},
|
|
1080
|
-
"
|
|
1081
|
-
"id": "
|
|
1082
|
-
"name": "
|
|
1119
|
+
"TSStaticSiteTriggers": {
|
|
1120
|
+
"id": "TSStaticSiteTriggers",
|
|
1121
|
+
"name": "TSStaticSiteTriggers",
|
|
1083
1122
|
"title": "Static Site Triggers",
|
|
1084
1123
|
"schema": {
|
|
1085
1124
|
"type": "object",
|
|
@@ -1167,11 +1206,17 @@
|
|
|
1167
1206
|
"title": "Status",
|
|
1168
1207
|
"oneOf": [
|
|
1169
1208
|
{
|
|
1170
|
-
"enum": [
|
|
1209
|
+
"enum": [
|
|
1210
|
+
"r1uCfi4ZL",
|
|
1211
|
+
"disabled"
|
|
1212
|
+
],
|
|
1171
1213
|
"title": "Disabled"
|
|
1172
1214
|
},
|
|
1173
1215
|
{
|
|
1174
|
-
"enum": [
|
|
1216
|
+
"enum": [
|
|
1217
|
+
"rkhRGs4WL",
|
|
1218
|
+
"enabled"
|
|
1219
|
+
],
|
|
1175
1220
|
"title": "Enabled"
|
|
1176
1221
|
}
|
|
1177
1222
|
],
|
|
@@ -1252,18 +1297,26 @@
|
|
|
1252
1297
|
"title": "Status",
|
|
1253
1298
|
"oneOf": [
|
|
1254
1299
|
{
|
|
1255
|
-
"enum": [
|
|
1300
|
+
"enum": [
|
|
1301
|
+
"r1uCfi4ZL",
|
|
1302
|
+
"disabled"
|
|
1303
|
+
],
|
|
1256
1304
|
"title": "Disabled"
|
|
1257
1305
|
},
|
|
1258
1306
|
{
|
|
1259
|
-
"enum": [
|
|
1307
|
+
"enum": [
|
|
1308
|
+
"rkhRGs4WL",
|
|
1309
|
+
"enabled"
|
|
1310
|
+
],
|
|
1260
1311
|
"title": "Enabled"
|
|
1261
1312
|
}
|
|
1262
1313
|
],
|
|
1263
1314
|
"@workflow": "default"
|
|
1264
1315
|
}
|
|
1265
1316
|
},
|
|
1266
|
-
"required": [
|
|
1317
|
+
"required": [
|
|
1318
|
+
"name"
|
|
1319
|
+
]
|
|
1267
1320
|
}
|
|
1268
1321
|
},
|
|
1269
1322
|
"Post": {
|
|
@@ -1287,7 +1340,9 @@
|
|
|
1287
1340
|
"@mapping": "takeshape:local:Post.BybUznPIW",
|
|
1288
1341
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1289
1342
|
"@relationship": {
|
|
1290
|
-
"shapeIds": [
|
|
1343
|
+
"shapeIds": [
|
|
1344
|
+
"ASSET"
|
|
1345
|
+
],
|
|
1291
1346
|
"type": "single"
|
|
1292
1347
|
}
|
|
1293
1348
|
},
|
|
@@ -1302,7 +1357,9 @@
|
|
|
1302
1357
|
"@mapping": "takeshape:local:Post.rJgad7TLZ",
|
|
1303
1358
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1304
1359
|
"@relationship": {
|
|
1305
|
-
"shapeIds": [
|
|
1360
|
+
"shapeIds": [
|
|
1361
|
+
"SJDIicDUZ"
|
|
1362
|
+
],
|
|
1306
1363
|
"type": "single"
|
|
1307
1364
|
}
|
|
1308
1365
|
},
|
|
@@ -1320,7 +1377,9 @@
|
|
|
1320
1377
|
"$ref": "#/shapes/TSRelationship/schema"
|
|
1321
1378
|
},
|
|
1322
1379
|
"@relationship": {
|
|
1323
|
-
"shapeIds": [
|
|
1380
|
+
"shapeIds": [
|
|
1381
|
+
"rJBYXVyuQ"
|
|
1382
|
+
],
|
|
1324
1383
|
"type": "multiple"
|
|
1325
1384
|
}
|
|
1326
1385
|
},
|
|
@@ -1380,18 +1439,27 @@
|
|
|
1380
1439
|
"title": "Status",
|
|
1381
1440
|
"oneOf": [
|
|
1382
1441
|
{
|
|
1383
|
-
"enum": [
|
|
1442
|
+
"enum": [
|
|
1443
|
+
"r1uCfi4ZL",
|
|
1444
|
+
"disabled"
|
|
1445
|
+
],
|
|
1384
1446
|
"title": "Disabled"
|
|
1385
1447
|
},
|
|
1386
1448
|
{
|
|
1387
|
-
"enum": [
|
|
1449
|
+
"enum": [
|
|
1450
|
+
"rkhRGs4WL",
|
|
1451
|
+
"enabled"
|
|
1452
|
+
],
|
|
1388
1453
|
"title": "Enabled"
|
|
1389
1454
|
}
|
|
1390
1455
|
],
|
|
1391
1456
|
"@workflow": "default"
|
|
1392
1457
|
}
|
|
1393
1458
|
},
|
|
1394
|
-
"required": [
|
|
1459
|
+
"required": [
|
|
1460
|
+
"title",
|
|
1461
|
+
"featureImage"
|
|
1462
|
+
]
|
|
1395
1463
|
}
|
|
1396
1464
|
},
|
|
1397
1465
|
"Author": {
|
|
@@ -1415,7 +1483,9 @@
|
|
|
1415
1483
|
"@mapping": "takeshape:local:Author.BkyFrpUcb",
|
|
1416
1484
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1417
1485
|
"@relationship": {
|
|
1418
|
-
"shapeIds": [
|
|
1486
|
+
"shapeIds": [
|
|
1487
|
+
"ASSET"
|
|
1488
|
+
],
|
|
1419
1489
|
"type": "single"
|
|
1420
1490
|
}
|
|
1421
1491
|
},
|
|
@@ -1481,18 +1551,28 @@
|
|
|
1481
1551
|
"title": "Status",
|
|
1482
1552
|
"oneOf": [
|
|
1483
1553
|
{
|
|
1484
|
-
"enum": [
|
|
1554
|
+
"enum": [
|
|
1555
|
+
"r1uCfi4ZL",
|
|
1556
|
+
"disabled"
|
|
1557
|
+
],
|
|
1485
1558
|
"title": "Disabled"
|
|
1486
1559
|
},
|
|
1487
1560
|
{
|
|
1488
|
-
"enum": [
|
|
1561
|
+
"enum": [
|
|
1562
|
+
"rkhRGs4WL",
|
|
1563
|
+
"enabled"
|
|
1564
|
+
],
|
|
1489
1565
|
"title": "Enabled"
|
|
1490
1566
|
}
|
|
1491
1567
|
],
|
|
1492
1568
|
"@workflow": "default"
|
|
1493
1569
|
}
|
|
1494
1570
|
},
|
|
1495
|
-
"required": [
|
|
1571
|
+
"required": [
|
|
1572
|
+
"name",
|
|
1573
|
+
"photo",
|
|
1574
|
+
"biography"
|
|
1575
|
+
]
|
|
1496
1576
|
}
|
|
1497
1577
|
},
|
|
1498
1578
|
"Homepage": {
|
|
@@ -1516,7 +1596,9 @@
|
|
|
1516
1596
|
"@mapping": "takeshape:local:Homepage.r1xPx1OUW",
|
|
1517
1597
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1518
1598
|
"@relationship": {
|
|
1519
|
-
"shapeIds": [
|
|
1599
|
+
"shapeIds": [
|
|
1600
|
+
"r166qcP8Z"
|
|
1601
|
+
],
|
|
1520
1602
|
"type": "single"
|
|
1521
1603
|
}
|
|
1522
1604
|
},
|
|
@@ -1581,11 +1663,17 @@
|
|
|
1581
1663
|
"title": "Status",
|
|
1582
1664
|
"oneOf": [
|
|
1583
1665
|
{
|
|
1584
|
-
"enum": [
|
|
1666
|
+
"enum": [
|
|
1667
|
+
"r1uCfi4ZL",
|
|
1668
|
+
"disabled"
|
|
1669
|
+
],
|
|
1585
1670
|
"title": "Disabled"
|
|
1586
1671
|
},
|
|
1587
1672
|
{
|
|
1588
|
-
"enum": [
|
|
1673
|
+
"enum": [
|
|
1674
|
+
"rkhRGs4WL",
|
|
1675
|
+
"enabled"
|
|
1676
|
+
],
|
|
1589
1677
|
"title": "Enabled"
|
|
1590
1678
|
}
|
|
1591
1679
|
],
|
|
@@ -1606,7 +1694,9 @@
|
|
|
1606
1694
|
"@mapping": "takeshape:local:HomepageHero.H1vBnAv8-",
|
|
1607
1695
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1608
1696
|
"@relationship": {
|
|
1609
|
-
"shapeIds": [
|
|
1697
|
+
"shapeIds": [
|
|
1698
|
+
"ASSET"
|
|
1699
|
+
],
|
|
1610
1700
|
"type": "single"
|
|
1611
1701
|
}
|
|
1612
1702
|
},
|
|
@@ -1615,7 +1705,9 @@
|
|
|
1615
1705
|
"@mapping": "takeshape:local:HomepageHero.SJ1Xo0v8b",
|
|
1616
1706
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1617
1707
|
"@relationship": {
|
|
1618
|
-
"shapeIds": [
|
|
1708
|
+
"shapeIds": [
|
|
1709
|
+
"rJoobhv8W"
|
|
1710
|
+
],
|
|
1619
1711
|
"type": "single",
|
|
1620
1712
|
"relatedName": "heroFeaturedPost"
|
|
1621
1713
|
}
|
|
@@ -1695,11 +1787,17 @@
|
|
|
1695
1787
|
"title": "Status",
|
|
1696
1788
|
"oneOf": [
|
|
1697
1789
|
{
|
|
1698
|
-
"enum": [
|
|
1790
|
+
"enum": [
|
|
1791
|
+
"r1uCfi4ZL",
|
|
1792
|
+
"disabled"
|
|
1793
|
+
],
|
|
1699
1794
|
"title": "Disabled"
|
|
1700
1795
|
},
|
|
1701
1796
|
{
|
|
1702
|
-
"enum": [
|
|
1797
|
+
"enum": [
|
|
1798
|
+
"rkhRGs4WL",
|
|
1799
|
+
"enabled"
|
|
1800
|
+
],
|
|
1703
1801
|
"title": "Enabled"
|
|
1704
1802
|
}
|
|
1705
1803
|
],
|
|
@@ -1748,7 +1846,9 @@
|
|
|
1748
1846
|
"genre": {
|
|
1749
1847
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1750
1848
|
"@relationship": {
|
|
1751
|
-
"shapeIds": [
|
|
1849
|
+
"shapeIds": [
|
|
1850
|
+
"rJ9bZzk-m"
|
|
1851
|
+
],
|
|
1752
1852
|
"type": "single",
|
|
1753
1853
|
"relatedName": "books"
|
|
1754
1854
|
},
|
|
@@ -1764,7 +1864,9 @@
|
|
|
1764
1864
|
"coverImage": {
|
|
1765
1865
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1766
1866
|
"@relationship": {
|
|
1767
|
-
"shapeIds": [
|
|
1867
|
+
"shapeIds": [
|
|
1868
|
+
"ASSET"
|
|
1869
|
+
],
|
|
1768
1870
|
"type": "single"
|
|
1769
1871
|
},
|
|
1770
1872
|
"title": "Cover Image",
|
|
@@ -1773,7 +1875,9 @@
|
|
|
1773
1875
|
"author": {
|
|
1774
1876
|
"$ref": "#/shapes/TSRelationship/schema",
|
|
1775
1877
|
"@relationship": {
|
|
1776
|
-
"shapeIds": [
|
|
1878
|
+
"shapeIds": [
|
|
1879
|
+
"SJDIicDUZ"
|
|
1880
|
+
],
|
|
1777
1881
|
"type": "single",
|
|
1778
1882
|
"relatedName": "authored"
|
|
1779
1883
|
},
|
|
@@ -1791,11 +1895,15 @@
|
|
|
1791
1895
|
"oneOf": [
|
|
1792
1896
|
{
|
|
1793
1897
|
"title": "Hardcover",
|
|
1794
|
-
"enum": [
|
|
1898
|
+
"enum": [
|
|
1899
|
+
"hardcover"
|
|
1900
|
+
]
|
|
1795
1901
|
},
|
|
1796
1902
|
{
|
|
1797
1903
|
"title": "Paperback",
|
|
1798
|
-
"enum": [
|
|
1904
|
+
"enum": [
|
|
1905
|
+
"paperback"
|
|
1906
|
+
]
|
|
1799
1907
|
}
|
|
1800
1908
|
],
|
|
1801
1909
|
"title": "Type",
|
|
@@ -1863,18 +1971,27 @@
|
|
|
1863
1971
|
"title": "Status",
|
|
1864
1972
|
"oneOf": [
|
|
1865
1973
|
{
|
|
1866
|
-
"enum": [
|
|
1974
|
+
"enum": [
|
|
1975
|
+
"r1uCfi4ZL",
|
|
1976
|
+
"disabled"
|
|
1977
|
+
],
|
|
1867
1978
|
"title": "Disabled"
|
|
1868
1979
|
},
|
|
1869
1980
|
{
|
|
1870
|
-
"enum": [
|
|
1981
|
+
"enum": [
|
|
1982
|
+
"rkhRGs4WL",
|
|
1983
|
+
"enabled"
|
|
1984
|
+
],
|
|
1871
1985
|
"title": "Enabled"
|
|
1872
1986
|
}
|
|
1873
1987
|
],
|
|
1874
1988
|
"@workflow": "default"
|
|
1875
1989
|
}
|
|
1876
1990
|
},
|
|
1877
|
-
"required": [
|
|
1991
|
+
"required": [
|
|
1992
|
+
"title",
|
|
1993
|
+
"author"
|
|
1994
|
+
]
|
|
1878
1995
|
},
|
|
1879
1996
|
"workflow": "default"
|
|
1880
1997
|
},
|
|
@@ -2172,9 +2289,16 @@
|
|
|
2172
2289
|
]
|
|
2173
2290
|
}
|
|
2174
2291
|
},
|
|
2175
|
-
"
|
|
2292
|
+
"TSStaticSite": {
|
|
2176
2293
|
"default": {
|
|
2177
|
-
"order": [
|
|
2294
|
+
"order": [
|
|
2295
|
+
"title",
|
|
2296
|
+
"provider",
|
|
2297
|
+
"destination",
|
|
2298
|
+
"idKey",
|
|
2299
|
+
"secretKey",
|
|
2300
|
+
"environmentVariables"
|
|
2301
|
+
],
|
|
2178
2302
|
"properties": {
|
|
2179
2303
|
"title": {
|
|
2180
2304
|
"widget": "singleLineText",
|
|
@@ -2202,7 +2326,10 @@
|
|
|
2202
2326
|
},
|
|
2203
2327
|
"environmentVariables": {
|
|
2204
2328
|
"widget": "repeater",
|
|
2205
|
-
"order": [
|
|
2329
|
+
"order": [
|
|
2330
|
+
"name",
|
|
2331
|
+
"value"
|
|
2332
|
+
],
|
|
2206
2333
|
"disabled": true,
|
|
2207
2334
|
"properties": {
|
|
2208
2335
|
"name": {
|
|
@@ -2218,7 +2345,11 @@
|
|
|
2218
2345
|
}
|
|
2219
2346
|
},
|
|
2220
2347
|
"generalHeader": {
|
|
2221
|
-
"order": [
|
|
2348
|
+
"order": [
|
|
2349
|
+
"title",
|
|
2350
|
+
"provider",
|
|
2351
|
+
"baseUrl"
|
|
2352
|
+
],
|
|
2222
2353
|
"properties": {
|
|
2223
2354
|
"title": {
|
|
2224
2355
|
"widget": "singleLineText",
|
|
@@ -2235,11 +2366,17 @@
|
|
|
2235
2366
|
}
|
|
2236
2367
|
},
|
|
2237
2368
|
"generalFooter": {
|
|
2238
|
-
"order": [
|
|
2369
|
+
"order": [
|
|
2370
|
+
"environmentVariables",
|
|
2371
|
+
"triggers"
|
|
2372
|
+
],
|
|
2239
2373
|
"properties": {
|
|
2240
2374
|
"environmentVariables": {
|
|
2241
2375
|
"widget": "repeater",
|
|
2242
|
-
"order": [
|
|
2376
|
+
"order": [
|
|
2377
|
+
"name",
|
|
2378
|
+
"value"
|
|
2379
|
+
],
|
|
2243
2380
|
"disabled": true,
|
|
2244
2381
|
"properties": {
|
|
2245
2382
|
"name": {
|
|
@@ -2254,7 +2391,10 @@
|
|
|
2254
2391
|
},
|
|
2255
2392
|
"triggers": {
|
|
2256
2393
|
"widget": "repeater",
|
|
2257
|
-
"order": [
|
|
2394
|
+
"order": [
|
|
2395
|
+
"contentTypeId",
|
|
2396
|
+
"status"
|
|
2397
|
+
],
|
|
2258
2398
|
"disabled": true,
|
|
2259
2399
|
"preview": "siteTriggerPreview",
|
|
2260
2400
|
"properties": {
|
|
@@ -2271,7 +2411,12 @@
|
|
|
2271
2411
|
}
|
|
2272
2412
|
},
|
|
2273
2413
|
"s3": {
|
|
2274
|
-
"order": [
|
|
2414
|
+
"order": [
|
|
2415
|
+
"destination",
|
|
2416
|
+
"idKey",
|
|
2417
|
+
"secretKey",
|
|
2418
|
+
"privateAcl"
|
|
2419
|
+
],
|
|
2275
2420
|
"properties": {
|
|
2276
2421
|
"destination": {
|
|
2277
2422
|
"widget": "singleLineText",
|
|
@@ -2297,7 +2442,12 @@
|
|
|
2297
2442
|
}
|
|
2298
2443
|
},
|
|
2299
2444
|
"gcs": {
|
|
2300
|
-
"order": [
|
|
2445
|
+
"order": [
|
|
2446
|
+
"destination",
|
|
2447
|
+
"idKey",
|
|
2448
|
+
"secretKey",
|
|
2449
|
+
"privateAcl"
|
|
2450
|
+
],
|
|
2301
2451
|
"properties": {
|
|
2302
2452
|
"destination": {
|
|
2303
2453
|
"widget": "singleLineText",
|
|
@@ -2323,7 +2473,11 @@
|
|
|
2323
2473
|
}
|
|
2324
2474
|
},
|
|
2325
2475
|
"ftp": {
|
|
2326
|
-
"order": [
|
|
2476
|
+
"order": [
|
|
2477
|
+
"destination",
|
|
2478
|
+
"idKey",
|
|
2479
|
+
"secretKey"
|
|
2480
|
+
],
|
|
2327
2481
|
"properties": {
|
|
2328
2482
|
"destination": {
|
|
2329
2483
|
"widget": "singleLineText",
|
|
@@ -2344,7 +2498,10 @@
|
|
|
2344
2498
|
}
|
|
2345
2499
|
},
|
|
2346
2500
|
"azure": {
|
|
2347
|
-
"order": [
|
|
2501
|
+
"order": [
|
|
2502
|
+
"destination",
|
|
2503
|
+
"secretKey"
|
|
2504
|
+
],
|
|
2348
2505
|
"properties": {
|
|
2349
2506
|
"destination": {
|
|
2350
2507
|
"widget": "singleLineText",
|
|
@@ -2360,7 +2517,9 @@
|
|
|
2360
2517
|
}
|
|
2361
2518
|
},
|
|
2362
2519
|
"netlify": {
|
|
2363
|
-
"order": [
|
|
2520
|
+
"order": [
|
|
2521
|
+
"destination"
|
|
2522
|
+
],
|
|
2364
2523
|
"properties": {
|
|
2365
2524
|
"destination": {
|
|
2366
2525
|
"widget": "publishTargets",
|
|
@@ -2371,7 +2530,9 @@
|
|
|
2371
2530
|
}
|
|
2372
2531
|
},
|
|
2373
2532
|
"vercel": {
|
|
2374
|
-
"order": [
|
|
2533
|
+
"order": [
|
|
2534
|
+
"destination"
|
|
2535
|
+
],
|
|
2375
2536
|
"properties": {
|
|
2376
2537
|
"destination": {
|
|
2377
2538
|
"widget": "publishTargets",
|
|
@@ -2389,7 +2550,9 @@
|
|
|
2389
2550
|
"widget": "singleLineText"
|
|
2390
2551
|
}
|
|
2391
2552
|
},
|
|
2392
|
-
"order": [
|
|
2553
|
+
"order": [
|
|
2554
|
+
"title"
|
|
2555
|
+
]
|
|
2393
2556
|
}
|
|
2394
2557
|
},
|
|
2395
2558
|
"Tag": {
|
|
@@ -2399,7 +2562,9 @@
|
|
|
2399
2562
|
"widget": "singleLineText"
|
|
2400
2563
|
}
|
|
2401
2564
|
},
|
|
2402
|
-
"order": [
|
|
2565
|
+
"order": [
|
|
2566
|
+
"name"
|
|
2567
|
+
]
|
|
2403
2568
|
}
|
|
2404
2569
|
},
|
|
2405
2570
|
"Post": {
|
|
@@ -2424,7 +2589,14 @@
|
|
|
2424
2589
|
"widget": "relationship"
|
|
2425
2590
|
}
|
|
2426
2591
|
},
|
|
2427
|
-
"order": [
|
|
2592
|
+
"order": [
|
|
2593
|
+
"title",
|
|
2594
|
+
"deck",
|
|
2595
|
+
"tags",
|
|
2596
|
+
"author",
|
|
2597
|
+
"featureImage",
|
|
2598
|
+
"body"
|
|
2599
|
+
]
|
|
2428
2600
|
}
|
|
2429
2601
|
},
|
|
2430
2602
|
"Author": {
|
|
@@ -2440,7 +2612,11 @@
|
|
|
2440
2612
|
"widget": "wysiwygText"
|
|
2441
2613
|
}
|
|
2442
2614
|
},
|
|
2443
|
-
"order": [
|
|
2615
|
+
"order": [
|
|
2616
|
+
"name",
|
|
2617
|
+
"photo",
|
|
2618
|
+
"biography"
|
|
2619
|
+
]
|
|
2444
2620
|
}
|
|
2445
2621
|
},
|
|
2446
2622
|
"Homepage": {
|
|
@@ -2462,10 +2638,17 @@
|
|
|
2462
2638
|
}
|
|
2463
2639
|
},
|
|
2464
2640
|
"widget": "object",
|
|
2465
|
-
"order": [
|
|
2641
|
+
"order": [
|
|
2642
|
+
"image",
|
|
2643
|
+
"featuredPost"
|
|
2644
|
+
]
|
|
2466
2645
|
}
|
|
2467
2646
|
},
|
|
2468
|
-
"order": [
|
|
2647
|
+
"order": [
|
|
2648
|
+
"title",
|
|
2649
|
+
"hero",
|
|
2650
|
+
"featuredBook"
|
|
2651
|
+
]
|
|
2469
2652
|
}
|
|
2470
2653
|
},
|
|
2471
2654
|
"SiteSettings": {
|
|
@@ -2475,7 +2658,9 @@
|
|
|
2475
2658
|
"widget": "singleLineText"
|
|
2476
2659
|
}
|
|
2477
2660
|
},
|
|
2478
|
-
"order": [
|
|
2661
|
+
"order": [
|
|
2662
|
+
"siteTitle"
|
|
2663
|
+
]
|
|
2479
2664
|
}
|
|
2480
2665
|
},
|
|
2481
2666
|
"Book": {
|
|
@@ -2537,4 +2722,4 @@
|
|
|
2537
2722
|
}
|
|
2538
2723
|
},
|
|
2539
2724
|
"dataKey": "secret"
|
|
2540
|
-
}
|
|
2725
|
+
}
|