@snokam/mcp-api 0.178.0 → 0.179.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/sales.json +142 -0
- package/specs/production/accounting.json +0 -6054
- package/specs/production/blog.json +0 -1646
- package/specs/production/broker.json +0 -137
- package/specs/production/chatgpt.json +0 -1867
- package/specs/production/events.json +0 -2792
- package/specs/production/notifications.json +0 -840
- package/specs/production/office.json +0 -1910
- package/specs/production/recruitment.json +0 -3948
- package/specs/production/sync.json +0 -277
- package/specs/production/webshop.json +0 -651
package/package.json
CHANGED
package/specs/test/sales.json
CHANGED
|
@@ -1715,6 +1715,148 @@
|
|
|
1715
1715
|
]
|
|
1716
1716
|
}
|
|
1717
1717
|
},
|
|
1718
|
+
"/v1.0/cv-variants/consultant/{email}": {
|
|
1719
|
+
"get": {
|
|
1720
|
+
"tags": [
|
|
1721
|
+
"CvVariants"
|
|
1722
|
+
],
|
|
1723
|
+
"summary": "Get a specific consultant's persistent AI CV variant, if one exists.",
|
|
1724
|
+
"operationId": "GetConsultantCvVariant",
|
|
1725
|
+
"parameters": [
|
|
1726
|
+
{
|
|
1727
|
+
"name": "email",
|
|
1728
|
+
"in": "path",
|
|
1729
|
+
"required": true,
|
|
1730
|
+
"schema": {
|
|
1731
|
+
"type": "string"
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
],
|
|
1735
|
+
"responses": {
|
|
1736
|
+
"200": {
|
|
1737
|
+
"description": "Payload of ConsultantCvVariantView",
|
|
1738
|
+
"content": {
|
|
1739
|
+
"application/json": {
|
|
1740
|
+
"schema": {
|
|
1741
|
+
"$ref": "#/components/schemas/consultantCvVariantView"
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"404": {
|
|
1747
|
+
"description": "No description"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"security": [
|
|
1751
|
+
{
|
|
1752
|
+
"Implicit": [
|
|
1753
|
+
"api://b2c47b20-df4a-49b5-a7ee-87f3647ab227/.default"
|
|
1754
|
+
]
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"ApiKey": []
|
|
1758
|
+
}
|
|
1759
|
+
]
|
|
1760
|
+
},
|
|
1761
|
+
"post": {
|
|
1762
|
+
"tags": [
|
|
1763
|
+
"CvVariants"
|
|
1764
|
+
],
|
|
1765
|
+
"summary": "Get or create a specific consultant's persistent AI CV variant (Flowcase proposal + tailored CV copy of the main CV).",
|
|
1766
|
+
"operationId": "EnsureConsultantCvVariant",
|
|
1767
|
+
"parameters": [
|
|
1768
|
+
{
|
|
1769
|
+
"name": "email",
|
|
1770
|
+
"in": "path",
|
|
1771
|
+
"required": true,
|
|
1772
|
+
"schema": {
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
],
|
|
1777
|
+
"requestBody": {
|
|
1778
|
+
"content": {
|
|
1779
|
+
"application/json": {
|
|
1780
|
+
"schema": {
|
|
1781
|
+
"$ref": "#/components/schemas/ensureCvVariantRequest"
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
"responses": {
|
|
1787
|
+
"200": {
|
|
1788
|
+
"description": "Payload of ConsultantCvVariantView",
|
|
1789
|
+
"content": {
|
|
1790
|
+
"application/json": {
|
|
1791
|
+
"schema": {
|
|
1792
|
+
"$ref": "#/components/schemas/consultantCvVariantView"
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
"502": {
|
|
1798
|
+
"description": "No description"
|
|
1799
|
+
}
|
|
1800
|
+
},
|
|
1801
|
+
"security": [
|
|
1802
|
+
{
|
|
1803
|
+
"Implicit": [
|
|
1804
|
+
"api://b2c47b20-df4a-49b5-a7ee-87f3647ab227/.default"
|
|
1805
|
+
]
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"ApiKey": []
|
|
1809
|
+
}
|
|
1810
|
+
]
|
|
1811
|
+
}
|
|
1812
|
+
},
|
|
1813
|
+
"/v1.0/cv-variants/consultant/{email}/promote": {
|
|
1814
|
+
"post": {
|
|
1815
|
+
"tags": [
|
|
1816
|
+
"CvVariants"
|
|
1817
|
+
],
|
|
1818
|
+
"summary": "Merge a specific consultant's AI CV variant into their main CV.",
|
|
1819
|
+
"operationId": "PromoteConsultantCvVariant",
|
|
1820
|
+
"parameters": [
|
|
1821
|
+
{
|
|
1822
|
+
"name": "email",
|
|
1823
|
+
"in": "path",
|
|
1824
|
+
"required": true,
|
|
1825
|
+
"schema": {
|
|
1826
|
+
"type": "string"
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
],
|
|
1830
|
+
"responses": {
|
|
1831
|
+
"200": {
|
|
1832
|
+
"description": "Payload of ConsultantCvVariantView",
|
|
1833
|
+
"content": {
|
|
1834
|
+
"application/json": {
|
|
1835
|
+
"schema": {
|
|
1836
|
+
"$ref": "#/components/schemas/consultantCvVariantView"
|
|
1837
|
+
}
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
"404": {
|
|
1842
|
+
"description": "No description"
|
|
1843
|
+
},
|
|
1844
|
+
"501": {
|
|
1845
|
+
"description": "No description"
|
|
1846
|
+
}
|
|
1847
|
+
},
|
|
1848
|
+
"security": [
|
|
1849
|
+
{
|
|
1850
|
+
"Implicit": [
|
|
1851
|
+
"api://b2c47b20-df4a-49b5-a7ee-87f3647ab227/.default"
|
|
1852
|
+
]
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"ApiKey": []
|
|
1856
|
+
}
|
|
1857
|
+
]
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1718
1860
|
"/v1.0/consultants": {
|
|
1719
1861
|
"get": {
|
|
1720
1862
|
"tags": [
|