rclone-openapi 1.73.4-rev2 → 1.73.4-rev3

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
@@ -6553,21 +6553,16 @@
6553
6553
  "schema": {
6554
6554
  "type": "object",
6555
6555
  "required": [
6556
- "name",
6557
6556
  "type"
6558
6557
  ],
6559
6558
  "properties": {
6560
- "name": {
6561
- "type": "string"
6562
- },
6563
6559
  "type": {
6564
6560
  "type": "string"
6565
- },
6566
- "provider": {
6567
- "type": "string"
6568
6561
  }
6569
6562
  },
6570
- "additionalProperties": true
6563
+ "additionalProperties": {
6564
+ "type": "string"
6565
+ }
6571
6566
  }
6572
6567
  }
6573
6568
  }
@@ -8863,6 +8858,22 @@
8863
8858
  "speedAvg": {
8864
8859
  "type": "number",
8865
8860
  "description": "Current speed in bytes per second as an exponentially weighted moving average."
8861
+ },
8862
+ "srcFs": {
8863
+ "type": "string",
8864
+ "description": "Source remote or filesystem for this transfer."
8865
+ },
8866
+ "dstFs": {
8867
+ "type": "string",
8868
+ "description": "Destination remote or filesystem for this transfer."
8869
+ },
8870
+ "srcRemote": {
8871
+ "type": "string",
8872
+ "description": "Source path within srcFs."
8873
+ },
8874
+ "dstRemote": {
8875
+ "type": "string",
8876
+ "description": "Destination path within dstFs."
8866
8877
  }
8867
8878
  },
8868
8879
  "additionalProperties": true
package/openapi.yaml CHANGED
@@ -3985,16 +3985,12 @@ components:
3985
3985
  schema:
3986
3986
  type: object
3987
3987
  required:
3988
- - name
3989
3988
  - type
3990
3989
  properties:
3991
- name:
3992
- type: string
3993
3990
  type:
3994
3991
  type: string
3995
- provider:
3996
- type: string
3997
- additionalProperties: true
3992
+ additionalProperties:
3993
+ type: string
3998
3994
  ConfigListremotesResponse:
3999
3995
  description: Names of configured remotes.
4000
3996
  content:
@@ -5571,6 +5567,18 @@ components:
5571
5567
  speedAvg:
5572
5568
  type: number
5573
5569
  description: Current speed in bytes per second as an exponentially weighted moving average.
5570
+ srcFs:
5571
+ type: string
5572
+ description: Source remote or filesystem for this transfer.
5573
+ dstFs:
5574
+ type: string
5575
+ description: Destination remote or filesystem for this transfer.
5576
+ srcRemote:
5577
+ type: string
5578
+ description: Source path within srcFs.
5579
+ dstRemote:
5580
+ type: string
5581
+ description: Destination path within dstFs.
5574
5582
  additionalProperties: true
5575
5583
  CoreStatsChecking:
5576
5584
  type: object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.73.4rev2",
3
+ "version": "1.73.4-rev3",
4
4
  "keywords": [
5
5
  "rclone",
6
6
  "openapi",
@@ -39,8 +39,8 @@
39
39
  "pub": "npm run gen && npm publish"
40
40
  },
41
41
  "devDependencies": {
42
- "@redocly/cli": "^1.34.5",
43
- "openapi-typescript": "^7.10.1",
44
- "yaml": "^2.8.2"
42
+ "@redocly/cli": "^2.26.0",
43
+ "openapi-typescript": "^7.13.0",
44
+ "yaml": "^2.8.3"
45
45
  }
46
46
  }
package/types.d.ts CHANGED
@@ -2069,6 +2069,14 @@ export interface components {
2069
2069
  speed?: number;
2070
2070
  /** @description Current speed in bytes per second as an exponentially weighted moving average. */
2071
2071
  speedAvg?: number;
2072
+ /** @description Source remote or filesystem for this transfer. */
2073
+ srcFs?: string;
2074
+ /** @description Destination remote or filesystem for this transfer. */
2075
+ dstFs?: string;
2076
+ /** @description Source path within srcFs. */
2077
+ srcRemote?: string;
2078
+ /** @description Destination path within dstFs. */
2079
+ dstRemote?: string;
2072
2080
  } & {
2073
2081
  [key: string]: unknown;
2074
2082
  };
@@ -3452,11 +3460,9 @@ export interface components {
3452
3460
  };
3453
3461
  content: {
3454
3462
  "application/json": {
3455
- name: string;
3456
3463
  type: string;
3457
- provider?: string;
3458
3464
  } & {
3459
- [key: string]: unknown;
3465
+ [key: string]: string;
3460
3466
  };
3461
3467
  };
3462
3468
  };