rclone-openapi 1.0.18 → 1.0.19

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.
package/openapi.json CHANGED
@@ -5392,14 +5392,19 @@
5392
5392
  "schema": {
5393
5393
  "type": "object",
5394
5394
  "properties": {
5395
- "results": {
5396
- "type": "array",
5397
- "items": {
5398
- "type": "object",
5399
- "additionalProperties": true
5400
- }
5395
+ "executeId": {
5396
+ "type": "string",
5397
+ "description": "Identifier for this rclone process."
5398
+ },
5399
+ "jobid": {
5400
+ "type": "integer",
5401
+ "description": "ID of the async job."
5401
5402
  }
5402
- }
5403
+ },
5404
+ "required": [
5405
+ "executeId",
5406
+ "jobid"
5407
+ ]
5403
5408
  }
5404
5409
  }
5405
5410
  }
package/openapi.yaml CHANGED
@@ -3123,11 +3123,15 @@ components:
3123
3123
  schema:
3124
3124
  type: object
3125
3125
  properties:
3126
- results:
3127
- type: array
3128
- items:
3129
- type: object
3130
- additionalProperties: true
3126
+ executeId:
3127
+ type: string
3128
+ description: "Identifier for this rclone process."
3129
+ jobid:
3130
+ type: integer
3131
+ description: "ID of the async job."
3132
+ required:
3133
+ - executeId
3134
+ - jobid
3131
3135
  EmptyResponse:
3132
3136
  description: "Request succeeded with no response body."
3133
3137
  EmptyObjectResponse:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "keywords": [
5
5
  "rclone",
6
6
  "openapi",
package/types.d.ts CHANGED
@@ -2066,9 +2066,10 @@ export interface components {
2066
2066
  };
2067
2067
  content: {
2068
2068
  "application/json": {
2069
- results?: {
2070
- [key: string]: unknown;
2071
- }[];
2069
+ /** @description Identifier for this rclone process. */
2070
+ executeId: string;
2071
+ /** @description ID of the async job. */
2072
+ jobid: number;
2072
2073
  };
2073
2074
  };
2074
2075
  };