rclone-openapi 1.0.1 → 1.0.2
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 +11 -2
- package/package.json +1 -1
- package/types.d.ts +5 -5
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.
|
|
5
|
+
"version": "0.1.2",
|
|
6
6
|
"description": "Full OpenAPI specification for the Rclone RC API.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "GitHub Repository",
|
|
@@ -5122,7 +5122,10 @@
|
|
|
5122
5122
|
}
|
|
5123
5123
|
}
|
|
5124
5124
|
},
|
|
5125
|
-
"additionalProperties": true
|
|
5125
|
+
"additionalProperties": true,
|
|
5126
|
+
"required": [
|
|
5127
|
+
"providers"
|
|
5128
|
+
]
|
|
5126
5129
|
}
|
|
5127
5130
|
}
|
|
5128
5131
|
}
|
|
@@ -6771,6 +6774,12 @@
|
|
|
6771
6774
|
"type": "string"
|
|
6772
6775
|
}
|
|
6773
6776
|
},
|
|
6777
|
+
"required": [
|
|
6778
|
+
"Name",
|
|
6779
|
+
"Description",
|
|
6780
|
+
"Options",
|
|
6781
|
+
"Prefix"
|
|
6782
|
+
],
|
|
6774
6783
|
"additionalProperties": true
|
|
6775
6784
|
},
|
|
6776
6785
|
"ConfigProviderCommandHelp": {
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -4015,12 +4015,12 @@ export interface components {
|
|
|
4015
4015
|
ConfigProvider: {
|
|
4016
4016
|
Aliases?: string[] | null;
|
|
4017
4017
|
CommandHelp?: components["schemas"]["ConfigProviderCommandHelp"][] | null;
|
|
4018
|
-
Description
|
|
4018
|
+
Description: string;
|
|
4019
4019
|
Hide?: boolean;
|
|
4020
4020
|
MetadataInfo?: components["schemas"]["ConfigProviderMetadataInfo"] | null;
|
|
4021
|
-
Name
|
|
4022
|
-
Options
|
|
4023
|
-
Prefix
|
|
4021
|
+
Name: string;
|
|
4022
|
+
Options: components["schemas"]["ConfigProviderOption"][];
|
|
4023
|
+
Prefix: string;
|
|
4024
4024
|
} & {
|
|
4025
4025
|
[key: string]: unknown;
|
|
4026
4026
|
};
|
|
@@ -4407,7 +4407,7 @@ export interface components {
|
|
|
4407
4407
|
};
|
|
4408
4408
|
content: {
|
|
4409
4409
|
"application/json": {
|
|
4410
|
-
providers
|
|
4410
|
+
providers: components["schemas"]["ConfigProvider"][];
|
|
4411
4411
|
} & {
|
|
4412
4412
|
[key: string]: unknown;
|
|
4413
4413
|
};
|