Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Dec 19, 2024
1 parent c435396 commit 7e90c9a
Show file tree
Hide file tree
Showing 15 changed files with 2,657 additions and 3,337 deletions.
4,954 changes: 2,276 additions & 2,678 deletions doc/index.html

Large diffs are not rendered by default.

87 changes: 32 additions & 55 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1197,10 +1197,10 @@
]
}
},
"/api/v1/processors/status": {
"/api/v1/processors/{owner}/{slug}/status": {
"get": {
"summary": "Get processor status",
"operationId": "GetProcessorStatus",
"operationId": "GetProcessorStatusV2",
"responses": {
"200": {
"description": "A successful response.",
Expand All @@ -1211,39 +1211,33 @@
},
"parameters": [
{
"name": "projectId",
"in": "query",
"required": false,
"name": "owner",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "id",
"in": "query",
"required": false,
"type": "string"
}
]
}
},
"/api/v1/processors/{projectId}/versions": {
"get": {
"summary": "Get Versions",
"operationId": "GetProjectVersions",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/processor_service.GetProjectVersionsResponse"
}
}
},
"parameters": [
{
"name": "projectId",
"name": "slug",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "version",
"description": " - ACTIVE: Only active version\n - PENDING: Only pending versions\n - ALL: All version",
"in": "query",
"required": false,
"type": "string",
"enum": [
"ACTIVE",
"PENDING",
"ALL"
],
"default": "ACTIVE"
}
],
"tags": [
"Processor"
]
}
},
Expand Down Expand Up @@ -5802,6 +5796,16 @@
}
}
},
"processor_service.GetProcessorStatusRequestV2.VersionSelector": {
"type": "string",
"enum": [
"ACTIVE",
"PENDING",
"ALL"
],
"default": "ACTIVE",
"title": "- ACTIVE: Only active version\n - PENDING: Only pending versions\n - ALL: All version"
},
"processor_service.GetProcessorStatusResponse": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5935,33 +5939,6 @@
}
}
},
"processor_service.GetProjectVersionsResponse": {
"type": "object",
"properties": {
"versions": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/processor_service.GetProjectVersionsResponse.Version"
}
}
}
},
"processor_service.GetProjectVersionsResponse.Version": {
"type": "object",
"properties": {
"version": {
"type": "integer",
"format": "int32"
},
"state": {
"$ref": "#/definitions/processor_service.ProcessorVersionState"
},
"processorId": {
"type": "string"
}
}
},
"processor_service.NetworkOverride": {
"type": "object",
"properties": {
Expand Down
118 changes: 0 additions & 118 deletions src/DefaultApi.md

This file was deleted.

68 changes: 68 additions & 0 deletions src/ProcessorApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7e90c9a

Please sign in to comment.