rclone-openapi 1.73.0 → 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/README.md +1 -0
- package/openapi.json +3096 -559
- package/openapi.yaml +2765 -871
- package/package.json +6 -5
- package/types.d.ts +1695 -293
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rclone-openapi",
|
|
3
|
-
"version": "1.73.
|
|
3
|
+
"version": "1.73.4-rev3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"rclone",
|
|
6
6
|
"openapi",
|
|
@@ -33,13 +33,14 @@
|
|
|
33
33
|
"scripts": {
|
|
34
34
|
"gen:json": "npx @redocly/cli bundle openapi.yaml -o openapi.json --ext json",
|
|
35
35
|
"gen:types": "openapi-typescript openapi.yaml -o types.d.ts",
|
|
36
|
-
"gen": "
|
|
36
|
+
"gen:bodies": "node scripts/add-request-bodies.mjs",
|
|
37
|
+
"gen": "npm run gen:bodies && npm run gen:json && npm run gen:types",
|
|
37
38
|
"bump": "npm version patch --no-git-tag-version",
|
|
38
39
|
"pub": "npm run gen && npm publish"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@redocly/cli": "^
|
|
42
|
-
"openapi-typescript": "^7.
|
|
43
|
-
"yaml": "^2.8.
|
|
42
|
+
"@redocly/cli": "^2.26.0",
|
|
43
|
+
"openapi-typescript": "^7.13.0",
|
|
44
|
+
"yaml": "^2.8.3"
|
|
44
45
|
}
|
|
45
46
|
}
|