@snokam/mcp-api 0.52.0 → 0.53.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.
- package/package.json +1 -1
- package/specs/test/employees.json +2865 -0
- package/specs/test/events.json +474 -1
- package/specs/test/recruitment.json +3178 -0
- package/specs/test/sales.json +4540 -0
- package/specs/test/sanity.json +53177 -0
- package/specs/test/sync.json +181 -0
package/specs/test/events.json
CHANGED
|
@@ -1342,6 +1342,32 @@
|
|
|
1342
1342
|
}
|
|
1343
1343
|
}
|
|
1344
1344
|
},
|
|
1345
|
+
"azureBlobStorageCredentials": {
|
|
1346
|
+
"type": "object",
|
|
1347
|
+
"properties": {
|
|
1348
|
+
"blobUrl": {
|
|
1349
|
+
"type": "string"
|
|
1350
|
+
},
|
|
1351
|
+
"sasToken": {
|
|
1352
|
+
"type": "string"
|
|
1353
|
+
},
|
|
1354
|
+
"additionalProperties": {
|
|
1355
|
+
"type": "object",
|
|
1356
|
+
"additionalProperties": {
|
|
1357
|
+
"type": "object"
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
"badRequestResult": {
|
|
1363
|
+
"type": "object",
|
|
1364
|
+
"properties": {
|
|
1365
|
+
"statusCode": {
|
|
1366
|
+
"type": "integer",
|
|
1367
|
+
"format": "int32"
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1345
1371
|
"componentMedia": {
|
|
1346
1372
|
"type": "object",
|
|
1347
1373
|
"properties": {
|
|
@@ -1553,6 +1579,160 @@
|
|
|
1553
1579
|
}
|
|
1554
1580
|
}
|
|
1555
1581
|
},
|
|
1582
|
+
"event": {
|
|
1583
|
+
"required": [
|
|
1584
|
+
"sanityId",
|
|
1585
|
+
"sanityType",
|
|
1586
|
+
"sanityRev",
|
|
1587
|
+
"sanityCreatedAt",
|
|
1588
|
+
"sanityUpdatedAt",
|
|
1589
|
+
"creator",
|
|
1590
|
+
"title",
|
|
1591
|
+
"slug",
|
|
1592
|
+
"description",
|
|
1593
|
+
"eventTypes",
|
|
1594
|
+
"time"
|
|
1595
|
+
],
|
|
1596
|
+
"type": "object",
|
|
1597
|
+
"properties": {
|
|
1598
|
+
"sanityId": {
|
|
1599
|
+
"minLength": 1,
|
|
1600
|
+
"type": "string"
|
|
1601
|
+
},
|
|
1602
|
+
"sanityType": {
|
|
1603
|
+
"minLength": 1,
|
|
1604
|
+
"type": "string"
|
|
1605
|
+
},
|
|
1606
|
+
"sanityRev": {
|
|
1607
|
+
"minLength": 1,
|
|
1608
|
+
"type": "string"
|
|
1609
|
+
},
|
|
1610
|
+
"sanityCreatedAt": {
|
|
1611
|
+
"minLength": 1,
|
|
1612
|
+
"type": "string"
|
|
1613
|
+
},
|
|
1614
|
+
"sanityUpdatedAt": {
|
|
1615
|
+
"minLength": 1,
|
|
1616
|
+
"type": "string"
|
|
1617
|
+
},
|
|
1618
|
+
"creator": {
|
|
1619
|
+
"$ref": "#/components/schemas/sanityOrderEmployee"
|
|
1620
|
+
},
|
|
1621
|
+
"participants": {
|
|
1622
|
+
"type": "array",
|
|
1623
|
+
"items": {
|
|
1624
|
+
"$ref": "#/components/schemas/participant"
|
|
1625
|
+
}
|
|
1626
|
+
},
|
|
1627
|
+
"memories": {
|
|
1628
|
+
"type": "array",
|
|
1629
|
+
"items": {
|
|
1630
|
+
"$ref": "#/components/schemas/sanityEventMemoriesInner"
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
"media": {
|
|
1634
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
|
|
1635
|
+
},
|
|
1636
|
+
"unapprovedMediaCount": {
|
|
1637
|
+
"type": "integer",
|
|
1638
|
+
"format": "int32"
|
|
1639
|
+
},
|
|
1640
|
+
"recurringId": {
|
|
1641
|
+
"type": "string"
|
|
1642
|
+
},
|
|
1643
|
+
"public": {
|
|
1644
|
+
"type": "boolean"
|
|
1645
|
+
},
|
|
1646
|
+
"linkOnly": {
|
|
1647
|
+
"type": "boolean"
|
|
1648
|
+
},
|
|
1649
|
+
"status": {
|
|
1650
|
+
"type": "string"
|
|
1651
|
+
},
|
|
1652
|
+
"askForFeedback": {
|
|
1653
|
+
"type": "boolean"
|
|
1654
|
+
},
|
|
1655
|
+
"title": {
|
|
1656
|
+
"minLength": 1,
|
|
1657
|
+
"type": "string"
|
|
1658
|
+
},
|
|
1659
|
+
"slug": {
|
|
1660
|
+
"$ref": "#/components/schemas/slug"
|
|
1661
|
+
},
|
|
1662
|
+
"description": {
|
|
1663
|
+
"minLength": 1,
|
|
1664
|
+
"type": "string"
|
|
1665
|
+
},
|
|
1666
|
+
"isServingFood": {
|
|
1667
|
+
"type": "boolean",
|
|
1668
|
+
"nullable": true
|
|
1669
|
+
},
|
|
1670
|
+
"eventTypes": {
|
|
1671
|
+
"type": "array",
|
|
1672
|
+
"items": {
|
|
1673
|
+
"$ref": "#/components/schemas/eventType"
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
"endTime": {
|
|
1677
|
+
"type": "string"
|
|
1678
|
+
},
|
|
1679
|
+
"place": {
|
|
1680
|
+
"type": "string"
|
|
1681
|
+
},
|
|
1682
|
+
"maxParticipants": {
|
|
1683
|
+
"type": "number",
|
|
1684
|
+
"format": "double",
|
|
1685
|
+
"nullable": true
|
|
1686
|
+
},
|
|
1687
|
+
"time": {
|
|
1688
|
+
"minLength": 1,
|
|
1689
|
+
"type": "string"
|
|
1690
|
+
},
|
|
1691
|
+
"participationStart": {
|
|
1692
|
+
"type": "string"
|
|
1693
|
+
},
|
|
1694
|
+
"manualMemoriesApproval": {
|
|
1695
|
+
"type": "boolean"
|
|
1696
|
+
},
|
|
1697
|
+
"feedback": {
|
|
1698
|
+
"type": "array",
|
|
1699
|
+
"items": {
|
|
1700
|
+
"$ref": "#/components/schemas/sanityEventFeedbackInner"
|
|
1701
|
+
}
|
|
1702
|
+
},
|
|
1703
|
+
"invitationSent": {
|
|
1704
|
+
"type": "boolean",
|
|
1705
|
+
"nullable": true
|
|
1706
|
+
},
|
|
1707
|
+
"allowDigitalParticipation": {
|
|
1708
|
+
"type": "boolean",
|
|
1709
|
+
"nullable": true
|
|
1710
|
+
},
|
|
1711
|
+
"teamsLink": {
|
|
1712
|
+
"type": "string"
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
},
|
|
1716
|
+
"eventType": {
|
|
1717
|
+
"type": "object",
|
|
1718
|
+
"properties": {
|
|
1719
|
+
"sanityId": {
|
|
1720
|
+
"type": "string"
|
|
1721
|
+
},
|
|
1722
|
+
"sanityType": {
|
|
1723
|
+
"type": "string"
|
|
1724
|
+
},
|
|
1725
|
+
"name": {
|
|
1726
|
+
"type": "string"
|
|
1727
|
+
},
|
|
1728
|
+
"slug": {
|
|
1729
|
+
"$ref": "#/components/schemas/slug"
|
|
1730
|
+
},
|
|
1731
|
+
"canSubscribe": {
|
|
1732
|
+
"type": "boolean"
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1556
1736
|
"image": {
|
|
1557
1737
|
"type": "object",
|
|
1558
1738
|
"properties": {
|
|
@@ -1567,6 +1747,78 @@
|
|
|
1567
1747
|
}
|
|
1568
1748
|
}
|
|
1569
1749
|
},
|
|
1750
|
+
"instagramFeedResponse": {
|
|
1751
|
+
"type": "object",
|
|
1752
|
+
"properties": {
|
|
1753
|
+
"username": {
|
|
1754
|
+
"type": "string"
|
|
1755
|
+
},
|
|
1756
|
+
"name": {
|
|
1757
|
+
"type": "string"
|
|
1758
|
+
},
|
|
1759
|
+
"profileUrl": {
|
|
1760
|
+
"type": "string"
|
|
1761
|
+
},
|
|
1762
|
+
"profilePictureUrl": {
|
|
1763
|
+
"type": "string"
|
|
1764
|
+
},
|
|
1765
|
+
"mediaCount": {
|
|
1766
|
+
"type": "integer",
|
|
1767
|
+
"format": "int32"
|
|
1768
|
+
},
|
|
1769
|
+
"followersCount": {
|
|
1770
|
+
"type": "integer",
|
|
1771
|
+
"format": "int32"
|
|
1772
|
+
},
|
|
1773
|
+
"followsCount": {
|
|
1774
|
+
"type": "integer",
|
|
1775
|
+
"format": "int32"
|
|
1776
|
+
},
|
|
1777
|
+
"media": {
|
|
1778
|
+
"type": "array",
|
|
1779
|
+
"items": {
|
|
1780
|
+
"$ref": "#/components/schemas/instagramMedia"
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
},
|
|
1785
|
+
"instagramMedia": {
|
|
1786
|
+
"type": "object",
|
|
1787
|
+
"properties": {
|
|
1788
|
+
"id": {
|
|
1789
|
+
"type": "string"
|
|
1790
|
+
},
|
|
1791
|
+
"caption": {
|
|
1792
|
+
"type": "string"
|
|
1793
|
+
},
|
|
1794
|
+
"mediaType": {
|
|
1795
|
+
"type": "string"
|
|
1796
|
+
},
|
|
1797
|
+
"mediaUrl": {
|
|
1798
|
+
"type": "string"
|
|
1799
|
+
},
|
|
1800
|
+
"thumbnailUrl": {
|
|
1801
|
+
"type": "string"
|
|
1802
|
+
},
|
|
1803
|
+
"permalink": {
|
|
1804
|
+
"type": "string"
|
|
1805
|
+
},
|
|
1806
|
+
"timestamp": {
|
|
1807
|
+
"type": "string"
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"invitationPreviewResponse": {
|
|
1812
|
+
"type": "object",
|
|
1813
|
+
"properties": {
|
|
1814
|
+
"emails": {
|
|
1815
|
+
"type": "array",
|
|
1816
|
+
"items": {
|
|
1817
|
+
"type": "string"
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1570
1822
|
"muxVideo": {
|
|
1571
1823
|
"type": "object",
|
|
1572
1824
|
"properties": {
|
|
@@ -1600,6 +1852,51 @@
|
|
|
1600
1852
|
}
|
|
1601
1853
|
}
|
|
1602
1854
|
},
|
|
1855
|
+
"participant": {
|
|
1856
|
+
"required": [
|
|
1857
|
+
"sanityKey",
|
|
1858
|
+
"sanityType",
|
|
1859
|
+
"name",
|
|
1860
|
+
"email",
|
|
1861
|
+
"token",
|
|
1862
|
+
"feedbackSubmitted"
|
|
1863
|
+
],
|
|
1864
|
+
"type": "object",
|
|
1865
|
+
"properties": {
|
|
1866
|
+
"sanityKey": {
|
|
1867
|
+
"minLength": 1,
|
|
1868
|
+
"type": "string"
|
|
1869
|
+
},
|
|
1870
|
+
"sanityType": {
|
|
1871
|
+
"minLength": 1,
|
|
1872
|
+
"type": "string"
|
|
1873
|
+
},
|
|
1874
|
+
"image": {
|
|
1875
|
+
"type": "string"
|
|
1876
|
+
},
|
|
1877
|
+
"name": {
|
|
1878
|
+
"minLength": 1,
|
|
1879
|
+
"type": "string"
|
|
1880
|
+
},
|
|
1881
|
+
"email": {
|
|
1882
|
+
"minLength": 1,
|
|
1883
|
+
"type": "string"
|
|
1884
|
+
},
|
|
1885
|
+
"registered": {
|
|
1886
|
+
"type": "string"
|
|
1887
|
+
},
|
|
1888
|
+
"details": {
|
|
1889
|
+
"type": "string"
|
|
1890
|
+
},
|
|
1891
|
+
"token": {
|
|
1892
|
+
"minLength": 1,
|
|
1893
|
+
"type": "string"
|
|
1894
|
+
},
|
|
1895
|
+
"feedbackSubmitted": {
|
|
1896
|
+
"type": "boolean"
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1603
1900
|
"participate": {
|
|
1604
1901
|
"required": [
|
|
1605
1902
|
"name",
|
|
@@ -1777,7 +2074,25 @@
|
|
|
1777
2074
|
}
|
|
1778
2075
|
},
|
|
1779
2076
|
"postToInstagram": {
|
|
1780
|
-
"
|
|
2077
|
+
"required": [
|
|
2078
|
+
"eventId"
|
|
2079
|
+
],
|
|
2080
|
+
"type": "object",
|
|
2081
|
+
"properties": {
|
|
2082
|
+
"eventId": {
|
|
2083
|
+
"minLength": 1,
|
|
2084
|
+
"type": "string"
|
|
2085
|
+
},
|
|
2086
|
+
"description": {
|
|
2087
|
+
"type": "string"
|
|
2088
|
+
},
|
|
2089
|
+
"images": {
|
|
2090
|
+
"type": "array",
|
|
2091
|
+
"items": {
|
|
2092
|
+
"$ref": "#/components/schemas/image"
|
|
2093
|
+
}
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
1781
2096
|
},
|
|
1782
2097
|
"removeParticipation": {
|
|
1783
2098
|
"required": [
|
|
@@ -1899,6 +2214,54 @@
|
|
|
1899
2214
|
}
|
|
1900
2215
|
}
|
|
1901
2216
|
},
|
|
2217
|
+
"sanityEventFeedbackInner": {
|
|
2218
|
+
"type": "object",
|
|
2219
|
+
"properties": {
|
|
2220
|
+
"sanityType": {
|
|
2221
|
+
"enum": [
|
|
2222
|
+
"response"
|
|
2223
|
+
],
|
|
2224
|
+
"type": "string",
|
|
2225
|
+
"default": "response"
|
|
2226
|
+
},
|
|
2227
|
+
"comment": {
|
|
2228
|
+
"type": "string"
|
|
2229
|
+
},
|
|
2230
|
+
"foodAndDrinkRating": {
|
|
2231
|
+
"type": "number",
|
|
2232
|
+
"format": "double"
|
|
2233
|
+
},
|
|
2234
|
+
"locationRating": {
|
|
2235
|
+
"type": "number",
|
|
2236
|
+
"format": "double"
|
|
2237
|
+
},
|
|
2238
|
+
"organizationRating": {
|
|
2239
|
+
"type": "number",
|
|
2240
|
+
"format": "double"
|
|
2241
|
+
},
|
|
2242
|
+
"overallRating": {
|
|
2243
|
+
"type": "number",
|
|
2244
|
+
"format": "double"
|
|
2245
|
+
},
|
|
2246
|
+
"sanityKey": {
|
|
2247
|
+
"type": "string"
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2251
|
+
"sanityEventMemoriesInner": {
|
|
2252
|
+
"type": "object",
|
|
2253
|
+
"properties": {
|
|
2254
|
+
"actualInstance": {
|
|
2255
|
+
"type": "object"
|
|
2256
|
+
},
|
|
2257
|
+
"isNullable": {
|
|
2258
|
+
"type": "boolean"
|
|
2259
|
+
},
|
|
2260
|
+
"schemaType": {
|
|
2261
|
+
"type": "string"
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
1902
2265
|
"sanityImageAssetReference": {
|
|
1903
2266
|
"type": "object",
|
|
1904
2267
|
"properties": {
|
|
@@ -1973,6 +2336,116 @@
|
|
|
1973
2336
|
}
|
|
1974
2337
|
}
|
|
1975
2338
|
},
|
|
2339
|
+
"sanityOrderEmployee": {
|
|
2340
|
+
"type": "object",
|
|
2341
|
+
"properties": {
|
|
2342
|
+
"sanityType": {
|
|
2343
|
+
"enum": [
|
|
2344
|
+
"employee"
|
|
2345
|
+
],
|
|
2346
|
+
"type": "string",
|
|
2347
|
+
"default": "employee"
|
|
2348
|
+
},
|
|
2349
|
+
"email": {
|
|
2350
|
+
"type": "string"
|
|
2351
|
+
},
|
|
2352
|
+
"image": {
|
|
2353
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
|
|
2354
|
+
},
|
|
2355
|
+
"name": {
|
|
2356
|
+
"type": "string"
|
|
2357
|
+
},
|
|
2358
|
+
"sanityId": {
|
|
2359
|
+
"type": "string"
|
|
2360
|
+
},
|
|
2361
|
+
"slug": {
|
|
2362
|
+
"$ref": "#/components/schemas/slug"
|
|
2363
|
+
},
|
|
2364
|
+
"tags": {
|
|
2365
|
+
"type": "array",
|
|
2366
|
+
"items": {
|
|
2367
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"telephone": {
|
|
2371
|
+
"type": "string"
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2374
|
+
},
|
|
2375
|
+
"sanityTechnologyWithRelationsArticlesInnerMedia": {
|
|
2376
|
+
"type": "object",
|
|
2377
|
+
"properties": {
|
|
2378
|
+
"actualInstance": {
|
|
2379
|
+
"type": "object"
|
|
2380
|
+
},
|
|
2381
|
+
"isNullable": {
|
|
2382
|
+
"type": "boolean"
|
|
2383
|
+
},
|
|
2384
|
+
"schemaType": {
|
|
2385
|
+
"type": "string"
|
|
2386
|
+
}
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
|
|
2390
|
+
"type": "object",
|
|
2391
|
+
"properties": {
|
|
2392
|
+
"sanityType": {
|
|
2393
|
+
"enum": [
|
|
2394
|
+
"tag"
|
|
2395
|
+
],
|
|
2396
|
+
"type": "string",
|
|
2397
|
+
"default": "tag"
|
|
2398
|
+
},
|
|
2399
|
+
"name": {
|
|
2400
|
+
"type": "string"
|
|
2401
|
+
},
|
|
2402
|
+
"sanityId": {
|
|
2403
|
+
"type": "string"
|
|
2404
|
+
},
|
|
2405
|
+
"slug": {
|
|
2406
|
+
"$ref": "#/components/schemas/slug"
|
|
2407
|
+
}
|
|
2408
|
+
}
|
|
2409
|
+
},
|
|
2410
|
+
"sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
|
|
2411
|
+
"type": "object",
|
|
2412
|
+
"properties": {
|
|
2413
|
+
"sanityType": {
|
|
2414
|
+
"enum": [
|
|
2415
|
+
"image"
|
|
2416
|
+
],
|
|
2417
|
+
"type": "string",
|
|
2418
|
+
"default": "image"
|
|
2419
|
+
},
|
|
2420
|
+
"asset": {
|
|
2421
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2424
|
+
},
|
|
2425
|
+
"sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
|
|
2426
|
+
"type": "object",
|
|
2427
|
+
"properties": {
|
|
2428
|
+
"sanityType": {
|
|
2429
|
+
"enum": [
|
|
2430
|
+
"sanity.imageAsset"
|
|
2431
|
+
],
|
|
2432
|
+
"type": "string",
|
|
2433
|
+
"default": "sanity.imageAsset"
|
|
2434
|
+
},
|
|
2435
|
+
"mimeType": {
|
|
2436
|
+
"type": "string"
|
|
2437
|
+
},
|
|
2438
|
+
"originalFilename": {
|
|
2439
|
+
"type": "string"
|
|
2440
|
+
},
|
|
2441
|
+
"sanityId": {
|
|
2442
|
+
"type": "string"
|
|
2443
|
+
},
|
|
2444
|
+
"url": {
|
|
2445
|
+
"type": "string"
|
|
2446
|
+
}
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
1976
2449
|
"slug": {
|
|
1977
2450
|
"type": "object",
|
|
1978
2451
|
"properties": {
|