@snokam/mcp-api 0.106.0 → 0.106.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.
@@ -22158,6 +22158,30 @@
22158
22158
  "type": "object",
22159
22159
  "nullable": true
22160
22160
  },
22161
+ "IntegrationHealthResult": {
22162
+ "properties": {
22163
+ "key": {
22164
+ "type": "string"
22165
+ },
22166
+ "status": {
22167
+ "type": "string",
22168
+ "enum": [
22169
+ "ok",
22170
+ "fail"
22171
+ ]
22172
+ },
22173
+ "message": {
22174
+ "type": "string"
22175
+ }
22176
+ },
22177
+ "required": [
22178
+ "key",
22179
+ "status",
22180
+ "message"
22181
+ ],
22182
+ "type": "object",
22183
+ "additionalProperties": true
22184
+ },
22161
22185
  "SanityGroup": {
22162
22186
  "properties": {
22163
22187
  "image": {
@@ -51691,6 +51715,43 @@
51691
51715
  ]
51692
51716
  }
51693
51717
  },
51718
+ "/v1.0/protected/health/{provider}": {
51719
+ "get": {
51720
+ "operationId": "CheckHealth",
51721
+ "responses": {
51722
+ "200": {
51723
+ "description": "Ok",
51724
+ "content": {
51725
+ "application/json": {
51726
+ "schema": {
51727
+ "$ref": "#/components/schemas/IntegrationHealthResult"
51728
+ }
51729
+ }
51730
+ }
51731
+ }
51732
+ },
51733
+ "tags": [
51734
+ "Health"
51735
+ ],
51736
+ "security": [
51737
+ {
51738
+ "Implicit": [
51739
+ "api://5dc55e32-6742-4fe9-b8b6-581cf56af144/.default"
51740
+ ]
51741
+ }
51742
+ ],
51743
+ "parameters": [
51744
+ {
51745
+ "in": "path",
51746
+ "name": "provider",
51747
+ "required": true,
51748
+ "schema": {
51749
+ "type": "string"
51750
+ }
51751
+ }
51752
+ ]
51753
+ }
51754
+ },
51694
51755
  "/v1.0/groups": {
51695
51756
  "get": {
51696
51757
  "operationId": "GetGroups",