@snokam/mcp-api 0.196.1 → 0.197.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
CHANGED
|
@@ -1773,6 +1773,46 @@
|
|
|
1773
1773
|
]
|
|
1774
1774
|
}
|
|
1775
1775
|
},
|
|
1776
|
+
"/v1.0/protected/systems-config": {
|
|
1777
|
+
"get": {
|
|
1778
|
+
"tags": [
|
|
1779
|
+
"EmployeeSystems"
|
|
1780
|
+
],
|
|
1781
|
+
"summary": "List the system registry with per-tenant configuration",
|
|
1782
|
+
"description": "Which Enterprise App (service principal) backs each registered system, and the optional default role. Unconfigured systems have servicePrincipalId: null.",
|
|
1783
|
+
"operationId": "GetEmployeeSystemsConfig",
|
|
1784
|
+
"responses": {
|
|
1785
|
+
"200": {
|
|
1786
|
+
"description": "Payload of Array of EmployeeSystemConfig",
|
|
1787
|
+
"content": {
|
|
1788
|
+
"application/json": {
|
|
1789
|
+
"schema": {
|
|
1790
|
+
"type": "array",
|
|
1791
|
+
"items": {
|
|
1792
|
+
"$ref": "#/components/schemas/employeeSystemConfig"
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
"x-ms-summary": "Success"
|
|
1798
|
+
},
|
|
1799
|
+
"401": {
|
|
1800
|
+
"description": "No description",
|
|
1801
|
+
"x-ms-summary": "Unauthorized"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"security": [
|
|
1805
|
+
{
|
|
1806
|
+
"Implicit": [
|
|
1807
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
1808
|
+
]
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"ApiKey": []
|
|
1812
|
+
}
|
|
1813
|
+
]
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1776
1816
|
"/v1.0/protected/systems/{upn}": {
|
|
1777
1817
|
"get": {
|
|
1778
1818
|
"tags": [
|
|
@@ -2807,6 +2847,26 @@
|
|
|
2807
2847
|
}
|
|
2808
2848
|
}
|
|
2809
2849
|
},
|
|
2850
|
+
"employeeSystemConfig": {
|
|
2851
|
+
"type": "object",
|
|
2852
|
+
"properties": {
|
|
2853
|
+
"key": {
|
|
2854
|
+
"type": "string"
|
|
2855
|
+
},
|
|
2856
|
+
"label": {
|
|
2857
|
+
"type": "string"
|
|
2858
|
+
},
|
|
2859
|
+
"kind": {
|
|
2860
|
+
"type": "string"
|
|
2861
|
+
},
|
|
2862
|
+
"servicePrincipalId": {
|
|
2863
|
+
"type": "string"
|
|
2864
|
+
},
|
|
2865
|
+
"defaultRoleId": {
|
|
2866
|
+
"type": "string"
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
},
|
|
2810
2870
|
"feedback": {
|
|
2811
2871
|
"type": "object",
|
|
2812
2872
|
"properties": {
|
|
@@ -1773,6 +1773,46 @@
|
|
|
1773
1773
|
]
|
|
1774
1774
|
}
|
|
1775
1775
|
},
|
|
1776
|
+
"/v1.0/protected/systems-config": {
|
|
1777
|
+
"get": {
|
|
1778
|
+
"tags": [
|
|
1779
|
+
"EmployeeSystems"
|
|
1780
|
+
],
|
|
1781
|
+
"summary": "List the system registry with per-tenant configuration",
|
|
1782
|
+
"description": "Which Enterprise App (service principal) backs each registered system, and the optional default role. Unconfigured systems have servicePrincipalId: null.",
|
|
1783
|
+
"operationId": "GetEmployeeSystemsConfig",
|
|
1784
|
+
"responses": {
|
|
1785
|
+
"200": {
|
|
1786
|
+
"description": "Payload of Array of EmployeeSystemConfig",
|
|
1787
|
+
"content": {
|
|
1788
|
+
"application/json": {
|
|
1789
|
+
"schema": {
|
|
1790
|
+
"type": "array",
|
|
1791
|
+
"items": {
|
|
1792
|
+
"$ref": "#/components/schemas/employeeSystemConfig"
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
"x-ms-summary": "Success"
|
|
1798
|
+
},
|
|
1799
|
+
"401": {
|
|
1800
|
+
"description": "No description",
|
|
1801
|
+
"x-ms-summary": "Unauthorized"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"security": [
|
|
1805
|
+
{
|
|
1806
|
+
"Implicit": [
|
|
1807
|
+
"api://b2c47b20-df4a-49b5-a7ee-87f3647ab227/.default"
|
|
1808
|
+
]
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"ApiKey": []
|
|
1812
|
+
}
|
|
1813
|
+
]
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1776
1816
|
"/v1.0/protected/systems/{upn}": {
|
|
1777
1817
|
"get": {
|
|
1778
1818
|
"tags": [
|
|
@@ -2807,6 +2847,26 @@
|
|
|
2807
2847
|
}
|
|
2808
2848
|
}
|
|
2809
2849
|
},
|
|
2850
|
+
"employeeSystemConfig": {
|
|
2851
|
+
"type": "object",
|
|
2852
|
+
"properties": {
|
|
2853
|
+
"key": {
|
|
2854
|
+
"type": "string"
|
|
2855
|
+
},
|
|
2856
|
+
"label": {
|
|
2857
|
+
"type": "string"
|
|
2858
|
+
},
|
|
2859
|
+
"kind": {
|
|
2860
|
+
"type": "string"
|
|
2861
|
+
},
|
|
2862
|
+
"servicePrincipalId": {
|
|
2863
|
+
"type": "string"
|
|
2864
|
+
},
|
|
2865
|
+
"defaultRoleId": {
|
|
2866
|
+
"type": "string"
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
},
|
|
2810
2870
|
"feedback": {
|
|
2811
2871
|
"type": "object",
|
|
2812
2872
|
"properties": {
|