rclone-openapi 1.0.6 → 1.0.7

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
@@ -6615,7 +6615,11 @@
6615
6615
  "description": "Serve configuration parameters supplied at startup."
6616
6616
  }
6617
6617
  },
6618
- "additionalProperties": false
6618
+ "additionalProperties": false,
6619
+ "required": [
6620
+ "id",
6621
+ "addr"
6622
+ ]
6619
6623
  }
6620
6624
  }
6621
6625
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "keywords": [
5
5
  "rclone",
6
6
  "openapi",
package/types.d.ts CHANGED
@@ -4955,9 +4955,9 @@ export interface components {
4955
4955
  "application/json": {
4956
4956
  list: {
4957
4957
  /** @description Identifier returned by `serve/start`. */
4958
- id?: string;
4958
+ id: string;
4959
4959
  /** @description Address and port the server is listening on. */
4960
- addr?: string;
4960
+ addr: string;
4961
4961
  /** @description Serve configuration parameters supplied at startup. */
4962
4962
  params?: {
4963
4963
  fs: string;