rclone-openapi 1.0.15 → 1.0.16

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,14 +7689,8 @@
7689
7689
  "type": "boolean"
7690
7690
  },
7691
7691
  "MetadataInfo": {
7692
- "anyOf": [
7693
- {
7694
- "$ref": "#/components/schemas/ConfigProviderMetadataInfo"
7695
- },
7696
- {
7697
- "type": "null"
7698
- }
7699
- ]
7692
+ "$ref": "#/components/schemas/ConfigProviderMetadataInfo",
7693
+ "nullable": true
7700
7694
  },
7701
7695
  "Name": {
7702
7696
  "type": "string"
@@ -8028,11 +8022,9 @@
8028
8022
  {
8029
8023
  "type": "object",
8030
8024
  "additionalProperties": true
8031
- },
8032
- {
8033
- "type": "null"
8034
8025
  }
8035
- ]
8026
+ ],
8027
+ "nullable": true
8036
8028
  },
8037
8029
  "ConfigProviderOptionType": {
8038
8030
  "type": "string",
package/openapi.yaml CHANGED
@@ -4686,9 +4686,8 @@ components:
4686
4686
  Hide:
4687
4687
  type: boolean
4688
4688
  MetadataInfo:
4689
- anyOf:
4690
- - $ref: "#/components/schemas/ConfigProviderMetadataInfo"
4691
- - type: "null"
4689
+ $ref: "#/components/schemas/ConfigProviderMetadataInfo"
4690
+ nullable: true
4692
4691
  Name:
4693
4692
  type: string
4694
4693
  Options:
@@ -4910,7 +4909,7 @@ components:
4910
4909
  items: {}
4911
4910
  - type: object
4912
4911
  additionalProperties: true
4913
- - type: "null"
4912
+ nullable: true
4914
4913
  ConfigProviderOptionType:
4915
4914
  type: string
4916
4915
  enum:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclone-openapi",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
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"] | null;
1901
+ MetadataInfo?: components["schemas"]["ConfigProviderMetadataInfo"];
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. */