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 +12 -7
- package/openapi.yaml +9 -5
- package/package.json +1 -1
- package/types.d.ts +4 -3
package/openapi.json
CHANGED
|
@@ -5392,14 +5392,19 @@
|
|
|
5392
5392
|
"schema": {
|
|
5393
5393
|
"type": "object",
|
|
5394
5394
|
"properties": {
|
|
5395
|
-
"
|
|
5396
|
-
"type": "
|
|
5397
|
-
"
|
|
5398
|
-
|
|
5399
|
-
|
|
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
|
-
|
|
3127
|
-
type:
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
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
package/types.d.ts
CHANGED
|
@@ -2066,9 +2066,10 @@ export interface components {
|
|
|
2066
2066
|
};
|
|
2067
2067
|
content: {
|
|
2068
2068
|
"application/json": {
|
|
2069
|
-
|
|
2070
|
-
|
|
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
|
};
|