diff --git a/openapi.json b/openapi.json index 0f043ce..315bc02 100644 --- a/openapi.json +++ b/openapi.json @@ -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" ] } @@ -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." @@ -7640,6 +7649,7 @@ } }, "required": [ + "executeId", "finished", "duration", "endTime", diff --git a/openapi.yaml b/openapi.yaml index 5723708..0537492 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -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. @@ -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. @@ -4649,6 +4656,7 @@ components: progress: description: Progress measurements supplied by the underlying command. required: + - executeId - finished - duration - endTime diff --git a/types.d.ts b/types.d.ts index 0db5cdc..75d5cc0 100644 --- a/types.d.ts +++ b/types.d.ts @@ -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; }; @@ -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. */