Skip to content

Commit

Permalink
Update OpenAPI Specification (composio.json)
Browse files Browse the repository at this point in the history
  • Loading branch information
konfig-bot[bot] authored Nov 6, 2024
1 parent 423ae30 commit a8ed1b3
Showing 1 changed file with 142 additions and 3 deletions.
145 changes: 142 additions & 3 deletions composio.json
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,11 @@
},
"appId": {
"type": "string",
"description": "Application ID"
"description": "Composio App UUID to be used for authentication. Either specify this or appName"
},
"appName": {
"type": "string",
"description": "Name of the app to be used for authentication. Either specify this or appId"
},
"forceNewIntegration": {
"type": "boolean",
Expand All @@ -906,8 +910,7 @@
},
"type": "object",
"required": [
"name",
"appId"
"name"
]
},
"PatchConnectorReqDTO": {
Expand Down Expand Up @@ -1659,6 +1662,17 @@
"parameters"
]
},
"SessionInfoDTO": {
"properties": {
"sessionId": {
"type": "string"
},
"metadata": {
"type": "object"
}
},
"type": "object"
},
"ActionExecutionReqDTO": {
"properties": {
"connectedAccountId": {
Expand All @@ -1676,6 +1690,10 @@
"input": {
"type": "object"
},
"sessionInfo": {
"$ref": "#/components/schemas/SessionInfoDTO",
"type": "object"
},
"authConfig": {
"$ref": "#/components/schemas/CustomAuthDTO"
},
Expand Down Expand Up @@ -1913,6 +1931,12 @@
},
"showAll": {
"type": "boolean"
},
"page": {
"type": "number"
},
"offset": {
"type": "number"
}
},
"type": "object"
Expand Down Expand Up @@ -1964,6 +1988,10 @@
"type": "string",
"description": "IDs of the triggers"
},
"integrationIds": {
"type": "string",
"description": "Integration ID"
},
"showEnabledOnly": {
"type": "boolean",
"description": "Show enabled only"
Expand Down Expand Up @@ -2456,6 +2484,10 @@
"triggerId": {
"type": "string",
"description": "Optional trigger ID"
},
"isNew": {
"type": "boolean",
"description": "Is new trigger. If true, the trigger was created just now or else it was already existing"
}
},
"type": "object",
Expand Down Expand Up @@ -3037,6 +3069,10 @@
"logsType": {
"type": "string",
"description": "Type of the log"
},
"sessionId": {
"type": "string",
"description": "Session ID of the log"
}
},
"type": "object"
Expand All @@ -3047,6 +3083,14 @@
"type": "string",
"description": "Connection ID of the log"
},
"sessionId": {
"type": "string",
"description": "Session ID of the log"
},
"logsType": {
"type": "string",
"description": "Type of the log"
},
"entityId": {
"type": "string",
"description": "Entity ID of the log"
Expand Down Expand Up @@ -3433,6 +3477,18 @@
"required": [
"plan"
]
},
"SDKErrorResDTO": {
"properties": {
"status": {
"type": "string",
"description": "The status of the SDK error"
}
},
"type": "object",
"required": [
"status"
]
}
},
"securitySchemes": {
Expand Down Expand Up @@ -4234,6 +4290,14 @@
"description": "IDs of the triggers"
}
},
{
"in": "query",
"name": "integrationIds",
"schema": {
"type": "string",
"description": "Integration ID"
}
},
{
"in": "query",
"name": "showEnabledOnly",
Expand Down Expand Up @@ -4636,6 +4700,33 @@
]
}
},
"/api/v1/clear-cache": {
"post": {
"operationId": "clearCache",
"parameters": [
{
"in": "header",
"name": "X-ADMIN-TOKEN",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {}
},
"description": "Successful response"
}
},
"summary": "Clear cache",
"tags": [
"Admin"
]
}
},
"/api/v1/logs/": {
"get": {
"operationId": "getLogs",
Expand Down Expand Up @@ -4731,6 +4822,14 @@
"type": "string",
"description": "Type of the log"
}
},
{
"in": "query",
"name": "sessionId",
"schema": {
"type": "string",
"description": "Session ID of the log"
}
}
],
"responses": {
Expand Down Expand Up @@ -4860,6 +4959,20 @@
"schema": {
"type": "boolean"
}
},
{
"in": "query",
"name": "page",
"schema": {
"type": "number"
}
},
{
"in": "query",
"name": "offset",
"schema": {
"type": "number"
}
}
],
"responses": {
Expand Down Expand Up @@ -5389,6 +5502,32 @@
"Payment"
]
}
},
"/api/v1/sdk/error": {
"post": {
"operationId": "reportSDKError",
"requestBody": {
"content": {
"application/json": {
"schema": {}
}
},
"description": "",
"required": false
},
"responses": {
"200": {
"content": {
"application/json": {}
},
"description": "Successful response"
}
},
"summary": "Report sdk error",
"tags": [
"SDK"
]
}
}
},
"security": [
Expand Down

0 comments on commit a8ed1b3

Please sign in to comment.