rclone-openapi 1.0.16 → 1.0.17

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
@@ -7689,8 +7689,14 @@
7689
7689
  "type": "boolean"
7690
7690
  },
7691
7691
  "MetadataInfo": {
7692
- "$ref": "#/components/schemas/ConfigProviderMetadataInfo",
7693
- "nullable": true
7692
+ "anyOf": [
7693
+ {
7694
+ "$ref": "#/components/schemas/ConfigProviderMetadataInfo"
7695
+ },
7696
+ {
7697
+ "type": "null"
7698
+ }
7699
+ ]
7694
7700
  },
7695
7701
  "Name": {
7696
7702
  "type": "string"
@@ -8022,9 +8028,11 @@
8022
8028
  {
8023
8029
  "type": "object",
8024
8030
  "additionalProperties": true
8031
+ },
8032
+ {
8033
+ "type": "null"
8025
8034
  }
8026
- ],
8027
- "nullable": true
8035
+ ]
8028
8036
  },
8029
8037
  "ConfigProviderOptionType": {
8030
8038
  "type": "string",
package/openapi.yaml CHANGED
@@ -4686,8 +4686,9 @@ components:
4686
4686
  Hide:
4687
4687
  type: boolean
4688
4688
  MetadataInfo:
4689
- $ref: "#/components/schemas/ConfigProviderMetadataInfo"
4690
- nullable: true
4689
+ anyOf:
4690
+ - $ref: "#/components/schemas/ConfigProviderMetadataInfo"
4691
+ - type: "null"
4691
4692
  Name:
4692
4693
  type: string
4693
4694
  Options:
@@ -4909,7 +4910,7 @@ components:
4909
4910
  items: {}
4910
4911
  - type: object
4911
4912
  additionalProperties: true
4912
- nullable: true
4913
+ - type: "null"
4913
4914
  ConfigProviderOptionType:
4914
4915
  type: string
4915
4916
  enum:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "keywords": [
5
5
  "rclone",
6
6
  "openapi",
package/types.d.ts CHANGED
@@ -1898,7 +1898,7 @@ export interface components {
1898
1898
  CommandHelp?: components["schemas"]["ConfigProviderCommandHelp"][] | null;
1899
1899
  Description: string;
1900
1900
  Hide?: boolean;
1901
- MetadataInfo?: components["schemas"]["ConfigProviderMetadataInfo"];
1901
+ MetadataInfo?: components["schemas"]["ConfigProviderMetadataInfo"] | null;
1902
1902
  Name: string;
1903
1903
  Options: components["schemas"]["ConfigProviderOption"][];
1904
1904
  Prefix: string;
@@ -1993,9 +1993,9 @@ export interface components {
1993
1993
  [key: string]: unknown;
1994
1994
  };
1995
1995
  /** @description Arbitrary JSON value. */
1996
- ConfigProviderOptionAny: (string | number | boolean | unknown[] | {
1996
+ ConfigProviderOptionAny: string | number | boolean | unknown[] | {
1997
1997
  [key: string]: unknown;
1998
- }) | null;
1998
+ } | null;
1999
1999
  /** @enum {string} */
2000
2000
  ConfigProviderOptionType: "Bits" | "bool" | "CommaSepList" | "Duration" | "Encoding" | "int" | "mtime|atime|btime|ctime" | "SizeSuffix" | "SpaceSepList" | "string" | "stringArray" | "Time" | "Tristate";
2001
2001
  /** @description Progress metrics for an in-flight transfer. */