rclone-openapi 1.0.23 → 1.72.0

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
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "Rclone RC API",
5
- "version": "0.1.3",
5
+ "version": "1.72.0",
6
6
  "description": "Full OpenAPI specification for the Rclone RC API.",
7
7
  "contact": {
8
8
  "name": "GitHub Repository",
@@ -5978,9 +5978,13 @@
5978
5978
  "schema": {
5979
5979
  "type": "object",
5980
5980
  "required": [
5981
+ "name",
5981
5982
  "type"
5982
5983
  ],
5983
5984
  "properties": {
5985
+ "name": {
5986
+ "type": "string"
5987
+ },
5984
5988
  "type": {
5985
5989
  "type": "string"
5986
5990
  },
package/openapi.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  openapi: 3.1.0
2
2
  info:
3
3
  title: Rclone RC API
4
- version: 0.1.3
4
+ version: 1.72.0
5
5
  description: "Full OpenAPI specification for the Rclone RC API."
6
6
  contact:
7
7
  name: GitHub Repository
@@ -3507,8 +3507,11 @@ components:
3507
3507
  schema:
3508
3508
  type: object
3509
3509
  required:
3510
+ - name
3510
3511
  - type
3511
3512
  properties:
3513
+ name:
3514
+ type: string
3512
3515
  type:
3513
3516
  type: string
3514
3517
  provider:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.0.23",
3
+ "version": "1.72.0",
4
4
  "keywords": [
5
5
  "rclone",
6
6
  "openapi",
package/types.d.ts CHANGED
@@ -2390,6 +2390,7 @@ export interface components {
2390
2390
  };
2391
2391
  content: {
2392
2392
  "application/json": {
2393
+ name: string;
2393
2394
  type: string;
2394
2395
  provider?: string;
2395
2396
  } & {