rclone-openapi 1.0.4 → 1.0.5
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 +24 -1
- package/package.json +1 -1
- package/types.d.ts +14 -2
package/openapi.json
CHANGED
|
@@ -4818,6 +4818,26 @@
|
|
|
4818
4818
|
"items": {
|
|
4819
4819
|
"type": "object",
|
|
4820
4820
|
"properties": {
|
|
4821
|
+
"group": {
|
|
4822
|
+
"type": "string",
|
|
4823
|
+
"description": "Stats group identifier this transfer belonged to."
|
|
4824
|
+
},
|
|
4825
|
+
"srcFs": {
|
|
4826
|
+
"type": "string",
|
|
4827
|
+
"description": "Source remote or filesystem used for the transfer."
|
|
4828
|
+
},
|
|
4829
|
+
"dstFs": {
|
|
4830
|
+
"type": "string",
|
|
4831
|
+
"description": "Destination remote or filesystem used for the transfer."
|
|
4832
|
+
},
|
|
4833
|
+
"srcRemote": {
|
|
4834
|
+
"type": "string",
|
|
4835
|
+
"description": "Source path within `srcFs`, when provided."
|
|
4836
|
+
},
|
|
4837
|
+
"dstRemote": {
|
|
4838
|
+
"type": "string",
|
|
4839
|
+
"description": "Destination path within `dstFs`, when provided."
|
|
4840
|
+
},
|
|
4821
4841
|
"name": {
|
|
4822
4842
|
"type": "string"
|
|
4823
4843
|
},
|
|
@@ -4843,7 +4863,10 @@
|
|
|
4843
4863
|
"type": "integer"
|
|
4844
4864
|
}
|
|
4845
4865
|
},
|
|
4846
|
-
"additionalProperties":
|
|
4866
|
+
"additionalProperties": true,
|
|
4867
|
+
"required": [
|
|
4868
|
+
"group"
|
|
4869
|
+
]
|
|
4847
4870
|
}
|
|
4848
4871
|
}
|
|
4849
4872
|
},
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -4265,7 +4265,17 @@ export interface components {
|
|
|
4265
4265
|
};
|
|
4266
4266
|
content: {
|
|
4267
4267
|
"application/json": {
|
|
4268
|
-
transferred: {
|
|
4268
|
+
transferred: ({
|
|
4269
|
+
/** @description Stats group identifier this transfer belonged to. */
|
|
4270
|
+
group: string;
|
|
4271
|
+
/** @description Source remote or filesystem used for the transfer. */
|
|
4272
|
+
srcFs?: string;
|
|
4273
|
+
/** @description Destination remote or filesystem used for the transfer. */
|
|
4274
|
+
dstFs?: string;
|
|
4275
|
+
/** @description Source path within `srcFs`, when provided. */
|
|
4276
|
+
srcRemote?: string;
|
|
4277
|
+
/** @description Destination path within `dstFs`, when provided. */
|
|
4278
|
+
dstRemote?: string;
|
|
4269
4279
|
name?: string;
|
|
4270
4280
|
size?: number;
|
|
4271
4281
|
bytes?: number;
|
|
@@ -4274,7 +4284,9 @@ export interface components {
|
|
|
4274
4284
|
timestamp?: number;
|
|
4275
4285
|
error?: string;
|
|
4276
4286
|
jobid?: number;
|
|
4277
|
-
}
|
|
4287
|
+
} & {
|
|
4288
|
+
[key: string]: unknown;
|
|
4289
|
+
})[];
|
|
4278
4290
|
};
|
|
4279
4291
|
};
|
|
4280
4292
|
};
|