@snokam/mcp-api 2.61.0 → 2.61.1
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/package.json +1 -1
- package/specs/production/accounting.json +376 -334
- package/specs/production/blog.json +740 -711
- package/specs/production/broker.json +1 -2
- package/specs/production/chatgpt.json +184 -297
- package/specs/production/employees.json +1024 -940
- package/specs/production/events.json +424 -345
- package/specs/production/recruitment.json +253 -156
- package/specs/production/sales.json +229 -427
- package/specs/production/sanity.json +14253 -34276
- package/specs/test/accounting.json +159 -59
- package/specs/test/blog.json +636 -623
- package/specs/test/chatgpt.json +18 -18
- package/specs/test/employees.json +450 -313
- package/specs/test/events.json +396 -329
- package/specs/test/recruitment.json +198 -101
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"content": {
|
|
83
83
|
"application/json": {
|
|
84
84
|
"schema": {
|
|
85
|
-
"$ref": "#/components/schemas/
|
|
85
|
+
"$ref": "#/components/schemas/sanityCreateCandidateInput"
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
},
|
|
@@ -1151,67 +1151,6 @@
|
|
|
1151
1151
|
},
|
|
1152
1152
|
"components": {
|
|
1153
1153
|
"schemas": {
|
|
1154
|
-
"createCandidateInput": {
|
|
1155
|
-
"type": "object",
|
|
1156
|
-
"properties": {
|
|
1157
|
-
"status": {
|
|
1158
|
-
"enum": [
|
|
1159
|
-
1,
|
|
1160
|
-
2,
|
|
1161
|
-
3,
|
|
1162
|
-
4,
|
|
1163
|
-
5,
|
|
1164
|
-
6,
|
|
1165
|
-
7,
|
|
1166
|
-
8
|
|
1167
|
-
],
|
|
1168
|
-
"type": "integer",
|
|
1169
|
-
"format": "int32",
|
|
1170
|
-
"default": 1
|
|
1171
|
-
},
|
|
1172
|
-
"track": {
|
|
1173
|
-
"enum": [
|
|
1174
|
-
1,
|
|
1175
|
-
2
|
|
1176
|
-
],
|
|
1177
|
-
"type": "integer",
|
|
1178
|
-
"format": "int32",
|
|
1179
|
-
"default": 1
|
|
1180
|
-
},
|
|
1181
|
-
"candidate": {
|
|
1182
|
-
"type": "string"
|
|
1183
|
-
},
|
|
1184
|
-
"additionalProperties": {
|
|
1185
|
-
"type": "object",
|
|
1186
|
-
"additionalProperties": {
|
|
1187
|
-
"$ref": "#/components/schemas/jsonElement"
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
}
|
|
1191
|
-
},
|
|
1192
|
-
"employeeReference": {
|
|
1193
|
-
"type": "object",
|
|
1194
|
-
"properties": {
|
|
1195
|
-
"sanityType": {
|
|
1196
|
-
"enum": [
|
|
1197
|
-
1
|
|
1198
|
-
],
|
|
1199
|
-
"type": "integer",
|
|
1200
|
-
"format": "int32",
|
|
1201
|
-
"default": 1
|
|
1202
|
-
},
|
|
1203
|
-
"sanityRef": {
|
|
1204
|
-
"type": "string"
|
|
1205
|
-
},
|
|
1206
|
-
"sanityWeakOption": {
|
|
1207
|
-
"$ref": "#/components/schemas/option_nullable`1"
|
|
1208
|
-
},
|
|
1209
|
-
"sanityWeak": {
|
|
1210
|
-
"type": "boolean",
|
|
1211
|
-
"nullable": true
|
|
1212
|
-
}
|
|
1213
|
-
}
|
|
1214
|
-
},
|
|
1215
1154
|
"jsonElement": {
|
|
1216
1155
|
"type": "object",
|
|
1217
1156
|
"properties": {
|
|
@@ -1258,14 +1197,6 @@
|
|
|
1258
1197
|
}
|
|
1259
1198
|
}
|
|
1260
1199
|
},
|
|
1261
|
-
"option_employeeReference": {
|
|
1262
|
-
"type": "object",
|
|
1263
|
-
"properties": {
|
|
1264
|
-
"value": {
|
|
1265
|
-
"$ref": "#/components/schemas/employeeReference"
|
|
1266
|
-
}
|
|
1267
|
-
}
|
|
1268
|
-
},
|
|
1269
1200
|
"option_list`1": {
|
|
1270
1201
|
"type": "object",
|
|
1271
1202
|
"properties": {
|
|
@@ -1310,6 +1241,38 @@
|
|
|
1310
1241
|
}
|
|
1311
1242
|
}
|
|
1312
1243
|
},
|
|
1244
|
+
"option_sanityCandidateGrades": {
|
|
1245
|
+
"type": "object",
|
|
1246
|
+
"properties": {
|
|
1247
|
+
"value": {
|
|
1248
|
+
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"option_sanityDocFileAsset": {
|
|
1253
|
+
"type": "object",
|
|
1254
|
+
"properties": {
|
|
1255
|
+
"value": {
|
|
1256
|
+
"$ref": "#/components/schemas/sanityDocFileAsset"
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"option_sanityEmployeeManager": {
|
|
1261
|
+
"type": "object",
|
|
1262
|
+
"properties": {
|
|
1263
|
+
"value": {
|
|
1264
|
+
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
},
|
|
1268
|
+
"option_sanityEmployeeReference": {
|
|
1269
|
+
"type": "object",
|
|
1270
|
+
"properties": {
|
|
1271
|
+
"value": {
|
|
1272
|
+
"$ref": "#/components/schemas/sanityEmployeeReference"
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1313
1276
|
"option_sanityFileAssetReference": {
|
|
1314
1277
|
"type": "object",
|
|
1315
1278
|
"properties": {
|
|
@@ -1366,6 +1329,22 @@
|
|
|
1366
1329
|
}
|
|
1367
1330
|
}
|
|
1368
1331
|
},
|
|
1332
|
+
"option_sanityTvCategoryDashboardsInnerBackgroundImage": {
|
|
1333
|
+
"type": "object",
|
|
1334
|
+
"properties": {
|
|
1335
|
+
"value": {
|
|
1336
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"option_sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
|
|
1341
|
+
"type": "object",
|
|
1342
|
+
"properties": {
|
|
1343
|
+
"value": {
|
|
1344
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1347
|
+
},
|
|
1369
1348
|
"option_string": {
|
|
1370
1349
|
"type": "object",
|
|
1371
1350
|
"properties": {
|
|
@@ -1429,11 +1408,14 @@
|
|
|
1429
1408
|
"type": "string"
|
|
1430
1409
|
},
|
|
1431
1410
|
"slug": {
|
|
1432
|
-
"$ref": "#/components/schemas/
|
|
1411
|
+
"$ref": "#/components/schemas/sanitySlug"
|
|
1433
1412
|
},
|
|
1434
1413
|
"telephone": {
|
|
1435
1414
|
"type": "string"
|
|
1436
1415
|
},
|
|
1416
|
+
"tagsOption": {
|
|
1417
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
1418
|
+
},
|
|
1437
1419
|
"tags": {
|
|
1438
1420
|
"type": "array",
|
|
1439
1421
|
"items": {
|
|
@@ -1498,6 +1480,9 @@
|
|
|
1498
1480
|
"address": {
|
|
1499
1481
|
"$ref": "#/components/schemas/sanityCandidateAddress"
|
|
1500
1482
|
},
|
|
1483
|
+
"applicationLetterOption": {
|
|
1484
|
+
"$ref": "#/components/schemas/option_sanityCandidateGrades"
|
|
1485
|
+
},
|
|
1501
1486
|
"applicationLetter": {
|
|
1502
1487
|
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1503
1488
|
},
|
|
@@ -1513,9 +1498,15 @@
|
|
|
1513
1498
|
"bankAccount": {
|
|
1514
1499
|
"type": "string"
|
|
1515
1500
|
},
|
|
1501
|
+
"buddyOption": {
|
|
1502
|
+
"$ref": "#/components/schemas/option_sanityEmployeeManager"
|
|
1503
|
+
},
|
|
1516
1504
|
"buddy": {
|
|
1517
1505
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1518
1506
|
},
|
|
1507
|
+
"cvOption": {
|
|
1508
|
+
"$ref": "#/components/schemas/option_sanityCandidateGrades"
|
|
1509
|
+
},
|
|
1519
1510
|
"cv": {
|
|
1520
1511
|
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1521
1512
|
},
|
|
@@ -1525,6 +1516,9 @@
|
|
|
1525
1516
|
"email": {
|
|
1526
1517
|
"type": "string"
|
|
1527
1518
|
},
|
|
1519
|
+
"employeeOption": {
|
|
1520
|
+
"$ref": "#/components/schemas/option_sanityEmployeeManager"
|
|
1521
|
+
},
|
|
1528
1522
|
"employee": {
|
|
1529
1523
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1530
1524
|
},
|
|
@@ -1541,6 +1535,9 @@
|
|
|
1541
1535
|
"githubUsername": {
|
|
1542
1536
|
"type": "string"
|
|
1543
1537
|
},
|
|
1538
|
+
"gradesOption": {
|
|
1539
|
+
"$ref": "#/components/schemas/option_sanityCandidateGrades"
|
|
1540
|
+
},
|
|
1544
1541
|
"grades": {
|
|
1545
1542
|
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1546
1543
|
},
|
|
@@ -1582,9 +1579,15 @@
|
|
|
1582
1579
|
"preferredEmail": {
|
|
1583
1580
|
"type": "string"
|
|
1584
1581
|
},
|
|
1582
|
+
"profileImageOption": {
|
|
1583
|
+
"$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
1584
|
+
},
|
|
1585
1585
|
"profileImage": {
|
|
1586
1586
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
1587
1587
|
},
|
|
1588
|
+
"recruiterOption": {
|
|
1589
|
+
"$ref": "#/components/schemas/option_sanityEmployeeManager"
|
|
1590
|
+
},
|
|
1588
1591
|
"recruiter": {
|
|
1589
1592
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1590
1593
|
},
|
|
@@ -1603,6 +1606,9 @@
|
|
|
1603
1606
|
"shortUrl": {
|
|
1604
1607
|
"type": "string"
|
|
1605
1608
|
},
|
|
1609
|
+
"systemsActiveOption": {
|
|
1610
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
1611
|
+
},
|
|
1606
1612
|
"systemsActive": {
|
|
1607
1613
|
"type": "array",
|
|
1608
1614
|
"items": {
|
|
@@ -1657,6 +1663,9 @@
|
|
|
1657
1663
|
"format": "int32",
|
|
1658
1664
|
"default": 1
|
|
1659
1665
|
},
|
|
1666
|
+
"assetOption": {
|
|
1667
|
+
"$ref": "#/components/schemas/option_sanityDocFileAsset"
|
|
1668
|
+
},
|
|
1660
1669
|
"asset": {
|
|
1661
1670
|
"$ref": "#/components/schemas/sanityDocFileAsset"
|
|
1662
1671
|
},
|
|
@@ -1734,6 +1743,44 @@
|
|
|
1734
1743
|
}
|
|
1735
1744
|
}
|
|
1736
1745
|
},
|
|
1746
|
+
"sanityCreateCandidateInput": {
|
|
1747
|
+
"type": "object",
|
|
1748
|
+
"properties": {
|
|
1749
|
+
"status": {
|
|
1750
|
+
"enum": [
|
|
1751
|
+
1,
|
|
1752
|
+
2,
|
|
1753
|
+
3,
|
|
1754
|
+
4,
|
|
1755
|
+
5,
|
|
1756
|
+
6,
|
|
1757
|
+
7,
|
|
1758
|
+
8
|
|
1759
|
+
],
|
|
1760
|
+
"type": "integer",
|
|
1761
|
+
"format": "int32",
|
|
1762
|
+
"default": 1
|
|
1763
|
+
},
|
|
1764
|
+
"track": {
|
|
1765
|
+
"enum": [
|
|
1766
|
+
1,
|
|
1767
|
+
2
|
|
1768
|
+
],
|
|
1769
|
+
"type": "integer",
|
|
1770
|
+
"format": "int32",
|
|
1771
|
+
"default": 1
|
|
1772
|
+
},
|
|
1773
|
+
"candidate": {
|
|
1774
|
+
"type": "string"
|
|
1775
|
+
},
|
|
1776
|
+
"additionalProperties": {
|
|
1777
|
+
"type": "object",
|
|
1778
|
+
"additionalProperties": {
|
|
1779
|
+
"$ref": "#/components/schemas/jsonElement"
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1737
1784
|
"sanityCreateSystem": {
|
|
1738
1785
|
"type": "object",
|
|
1739
1786
|
"properties": {
|
|
@@ -1925,11 +1972,14 @@
|
|
|
1925
1972
|
"type": "string"
|
|
1926
1973
|
},
|
|
1927
1974
|
"slug": {
|
|
1928
|
-
"$ref": "#/components/schemas/
|
|
1975
|
+
"$ref": "#/components/schemas/sanitySlug"
|
|
1929
1976
|
},
|
|
1930
1977
|
"telephone": {
|
|
1931
1978
|
"type": "string"
|
|
1932
1979
|
},
|
|
1980
|
+
"tagsOption": {
|
|
1981
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
1982
|
+
},
|
|
1933
1983
|
"tags": {
|
|
1934
1984
|
"type": "array",
|
|
1935
1985
|
"items": {
|
|
@@ -1938,6 +1988,29 @@
|
|
|
1938
1988
|
}
|
|
1939
1989
|
}
|
|
1940
1990
|
},
|
|
1991
|
+
"sanityEmployeeReference": {
|
|
1992
|
+
"type": "object",
|
|
1993
|
+
"properties": {
|
|
1994
|
+
"sanityType": {
|
|
1995
|
+
"enum": [
|
|
1996
|
+
1
|
|
1997
|
+
],
|
|
1998
|
+
"type": "integer",
|
|
1999
|
+
"format": "int32",
|
|
2000
|
+
"default": 1
|
|
2001
|
+
},
|
|
2002
|
+
"sanityRef": {
|
|
2003
|
+
"type": "string"
|
|
2004
|
+
},
|
|
2005
|
+
"sanityWeakOption": {
|
|
2006
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
2007
|
+
},
|
|
2008
|
+
"sanityWeak": {
|
|
2009
|
+
"type": "boolean",
|
|
2010
|
+
"nullable": true
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
1941
2014
|
"sanityFileAssetReference": {
|
|
1942
2015
|
"type": "object",
|
|
1943
2016
|
"properties": {
|
|
@@ -2078,7 +2151,7 @@
|
|
|
2078
2151
|
"type": "string"
|
|
2079
2152
|
},
|
|
2080
2153
|
"slug": {
|
|
2081
|
-
"$ref": "#/components/schemas/
|
|
2154
|
+
"$ref": "#/components/schemas/sanitySlug"
|
|
2082
2155
|
},
|
|
2083
2156
|
"title": {
|
|
2084
2157
|
"type": "string"
|
|
@@ -2089,6 +2162,9 @@
|
|
|
2089
2162
|
"deadline": {
|
|
2090
2163
|
"type": "string"
|
|
2091
2164
|
},
|
|
2165
|
+
"imageOption": {
|
|
2166
|
+
"$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
2167
|
+
},
|
|
2092
2168
|
"image": {
|
|
2093
2169
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
2094
2170
|
}
|
|
@@ -2210,10 +2286,10 @@
|
|
|
2210
2286
|
"type": "string"
|
|
2211
2287
|
},
|
|
2212
2288
|
"buddyOption": {
|
|
2213
|
-
"$ref": "#/components/schemas/
|
|
2289
|
+
"$ref": "#/components/schemas/option_sanityEmployeeReference"
|
|
2214
2290
|
},
|
|
2215
2291
|
"buddy": {
|
|
2216
|
-
"$ref": "#/components/schemas/
|
|
2292
|
+
"$ref": "#/components/schemas/sanityEmployeeReference"
|
|
2217
2293
|
},
|
|
2218
2294
|
"candidateOption": {
|
|
2219
2295
|
"$ref": "#/components/schemas/option_string"
|
|
@@ -2234,10 +2310,10 @@
|
|
|
2234
2310
|
"type": "string"
|
|
2235
2311
|
},
|
|
2236
2312
|
"employeeOption": {
|
|
2237
|
-
"$ref": "#/components/schemas/
|
|
2313
|
+
"$ref": "#/components/schemas/option_sanityEmployeeReference"
|
|
2238
2314
|
},
|
|
2239
2315
|
"employee": {
|
|
2240
|
-
"$ref": "#/components/schemas/
|
|
2316
|
+
"$ref": "#/components/schemas/sanityEmployeeReference"
|
|
2241
2317
|
},
|
|
2242
2318
|
"fromApplicationOption": {
|
|
2243
2319
|
"$ref": "#/components/schemas/option_nullable`1"
|
|
@@ -2303,10 +2379,10 @@
|
|
|
2303
2379
|
"$ref": "#/components/schemas/sanityPatchPageMetaImage"
|
|
2304
2380
|
},
|
|
2305
2381
|
"recruiterOption": {
|
|
2306
|
-
"$ref": "#/components/schemas/
|
|
2382
|
+
"$ref": "#/components/schemas/option_sanityEmployeeReference"
|
|
2307
2383
|
},
|
|
2308
2384
|
"recruiter": {
|
|
2309
|
-
"$ref": "#/components/schemas/
|
|
2385
|
+
"$ref": "#/components/schemas/sanityEmployeeReference"
|
|
2310
2386
|
},
|
|
2311
2387
|
"referencesOption": {
|
|
2312
2388
|
"$ref": "#/components/schemas/option_list`1"
|
|
@@ -2551,6 +2627,28 @@
|
|
|
2551
2627
|
}
|
|
2552
2628
|
}
|
|
2553
2629
|
},
|
|
2630
|
+
"sanitySlug": {
|
|
2631
|
+
"type": "object",
|
|
2632
|
+
"properties": {
|
|
2633
|
+
"sanityType": {
|
|
2634
|
+
"enum": [
|
|
2635
|
+
1
|
|
2636
|
+
],
|
|
2637
|
+
"type": "integer",
|
|
2638
|
+
"format": "int32",
|
|
2639
|
+
"default": 1
|
|
2640
|
+
},
|
|
2641
|
+
"current": {
|
|
2642
|
+
"type": "string"
|
|
2643
|
+
},
|
|
2644
|
+
"sourceOption": {
|
|
2645
|
+
"$ref": "#/components/schemas/option_string"
|
|
2646
|
+
},
|
|
2647
|
+
"source": {
|
|
2648
|
+
"type": "string"
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2554
2652
|
"sanitySystemsInner": {
|
|
2555
2653
|
"type": "object",
|
|
2556
2654
|
"properties": {
|
|
@@ -2586,6 +2684,9 @@
|
|
|
2586
2684
|
"$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
|
|
2587
2685
|
}
|
|
2588
2686
|
},
|
|
2687
|
+
"imageOption": {
|
|
2688
|
+
"$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
2689
|
+
},
|
|
2589
2690
|
"image": {
|
|
2590
2691
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
2591
2692
|
},
|
|
@@ -2757,15 +2858,24 @@
|
|
|
2757
2858
|
"title": {
|
|
2758
2859
|
"type": "string"
|
|
2759
2860
|
},
|
|
2861
|
+
"descriptionOption": {
|
|
2862
|
+
"$ref": "#/components/schemas/option_list`1"
|
|
2863
|
+
},
|
|
2760
2864
|
"description": {
|
|
2761
2865
|
"type": "array",
|
|
2762
2866
|
"items": {
|
|
2763
2867
|
"type": "object"
|
|
2764
2868
|
}
|
|
2765
2869
|
},
|
|
2870
|
+
"reminderSlackChannelOption": {
|
|
2871
|
+
"$ref": "#/components/schemas/option_string"
|
|
2872
|
+
},
|
|
2766
2873
|
"reminderSlackChannel": {
|
|
2767
2874
|
"type": "string"
|
|
2768
2875
|
},
|
|
2876
|
+
"reminderWeeksBeforeOption": {
|
|
2877
|
+
"$ref": "#/components/schemas/option_nullable`1"
|
|
2878
|
+
},
|
|
2769
2879
|
"reminderWeeksBefore": {
|
|
2770
2880
|
"type": "number",
|
|
2771
2881
|
"format": "double",
|
|
@@ -2797,7 +2907,7 @@
|
|
|
2797
2907
|
"type": "string"
|
|
2798
2908
|
},
|
|
2799
2909
|
"slug": {
|
|
2800
|
-
"$ref": "#/components/schemas/
|
|
2910
|
+
"$ref": "#/components/schemas/sanitySlug"
|
|
2801
2911
|
}
|
|
2802
2912
|
}
|
|
2803
2913
|
},
|
|
@@ -2812,6 +2922,9 @@
|
|
|
2812
2922
|
"format": "int32",
|
|
2813
2923
|
"default": 1
|
|
2814
2924
|
},
|
|
2925
|
+
"assetOption": {
|
|
2926
|
+
"$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
2927
|
+
},
|
|
2815
2928
|
"asset": {
|
|
2816
2929
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
2817
2930
|
}
|
|
@@ -2828,6 +2941,9 @@
|
|
|
2828
2941
|
"format": "int32",
|
|
2829
2942
|
"default": 1
|
|
2830
2943
|
},
|
|
2944
|
+
"assetOption": {
|
|
2945
|
+
"$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
2946
|
+
},
|
|
2831
2947
|
"asset": {
|
|
2832
2948
|
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
2833
2949
|
}
|
|
@@ -2853,29 +2969,10 @@
|
|
|
2853
2969
|
"url": {
|
|
2854
2970
|
"type": "string"
|
|
2855
2971
|
},
|
|
2856
|
-
"
|
|
2857
|
-
"type": "string"
|
|
2858
|
-
}
|
|
2859
|
-
}
|
|
2860
|
-
},
|
|
2861
|
-
"slug": {
|
|
2862
|
-
"type": "object",
|
|
2863
|
-
"properties": {
|
|
2864
|
-
"sanityType": {
|
|
2865
|
-
"enum": [
|
|
2866
|
-
1
|
|
2867
|
-
],
|
|
2868
|
-
"type": "integer",
|
|
2869
|
-
"format": "int32",
|
|
2870
|
-
"default": 1
|
|
2871
|
-
},
|
|
2872
|
-
"current": {
|
|
2873
|
-
"type": "string"
|
|
2874
|
-
},
|
|
2875
|
-
"sourceOption": {
|
|
2972
|
+
"originalFilenameOption": {
|
|
2876
2973
|
"$ref": "#/components/schemas/option_string"
|
|
2877
2974
|
},
|
|
2878
|
-
"
|
|
2975
|
+
"originalFilename": {
|
|
2879
2976
|
"type": "string"
|
|
2880
2977
|
}
|
|
2881
2978
|
}
|