Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6669,12 +6669,17 @@
"schema": {
"type": "object",
"properties": {
"executeId": {
"type": "string",
"description": "Identifier for this rclone process."
},
"jobid": {
"type": "integer",
"description": "Job identifier. Pass to /job/status to track progress."
}
},
"required": [
"executeId",
"jobid"
]
}
Expand Down Expand Up @@ -7604,6 +7609,10 @@
"schema": {
"type": "object",
"properties": {
"executeId": {
"type": "string",
"description": "Identifier for this rclone process."
},
"finished": {
"type": "boolean",
"description": "True once the job has completed."
Expand Down Expand Up @@ -7640,6 +7649,7 @@
}
},
"required": [
"executeId",
"finished",
"duration",
"endTime",
Expand Down
8 changes: 8 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3998,10 +3998,14 @@ components:
schema:
type: object
properties:
executeId:
type: string
description: Identifier for this rclone process.
jobid:
type: integer
description: Job identifier. Pass to /job/status to track progress.
required:
- executeId
- jobid
ServeTypesResponse:
description: Supported rclone serve protocols.
Expand Down Expand Up @@ -4623,6 +4627,9 @@ components:
schema:
type: object
properties:
executeId:
type: string
description: Identifier for this rclone process.
finished:
type: boolean
description: True once the job has completed.
Expand All @@ -4649,6 +4656,7 @@ components:
progress:
description: Progress measurements supplied by the underlying command.
required:
- executeId
- finished
- duration
- endTime
Expand Down
4 changes: 4 additions & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3213,6 +3213,8 @@ export interface components {
};
content: {
"application/json": {
/** @description Identifier for this rclone process. */
executeId: string;
/** @description Job identifier. Pass to /job/status to track progress. */
jobid: number;
};
Expand Down Expand Up @@ -3667,6 +3669,8 @@ export interface components {
};
content: {
"application/json": {
/** @description Identifier for this rclone process. */
executeId: string;
/** @description True once the job has completed. */
finished: boolean;
/** @description Execution time in seconds. */
Expand Down