rclone-openapi 1.0.23 → 1.72.0
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 +5 -1
- package/openapi.yaml +4 -1
- package/package.json +1 -1
- package/types.d.ts +1 -0
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": "
|
|
5
|
+
"version": "1.72.0",
|
|
6
6
|
"description": "Full OpenAPI specification for the Rclone RC API.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "GitHub Repository",
|
|
@@ -5978,9 +5978,13 @@
|
|
|
5978
5978
|
"schema": {
|
|
5979
5979
|
"type": "object",
|
|
5980
5980
|
"required": [
|
|
5981
|
+
"name",
|
|
5981
5982
|
"type"
|
|
5982
5983
|
],
|
|
5983
5984
|
"properties": {
|
|
5985
|
+
"name": {
|
|
5986
|
+
"type": "string"
|
|
5987
|
+
},
|
|
5984
5988
|
"type": {
|
|
5985
5989
|
"type": "string"
|
|
5986
5990
|
},
|
package/openapi.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.1.0
|
|
2
2
|
info:
|
|
3
3
|
title: Rclone RC API
|
|
4
|
-
version:
|
|
4
|
+
version: 1.72.0
|
|
5
5
|
description: "Full OpenAPI specification for the Rclone RC API."
|
|
6
6
|
contact:
|
|
7
7
|
name: GitHub Repository
|
|
@@ -3507,8 +3507,11 @@ components:
|
|
|
3507
3507
|
schema:
|
|
3508
3508
|
type: object
|
|
3509
3509
|
required:
|
|
3510
|
+
- name
|
|
3510
3511
|
- type
|
|
3511
3512
|
properties:
|
|
3513
|
+
name:
|
|
3514
|
+
type: string
|
|
3512
3515
|
type:
|
|
3513
3516
|
type: string
|
|
3514
3517
|
provider:
|
package/package.json
CHANGED