rclone-openapi 1.0.22 → 1.0.23
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 +74 -65
- package/openapi.yaml +57 -51
- package/package.json +1 -1
- package/types.d.ts +34 -32
package/openapi.json
CHANGED
|
@@ -6553,76 +6553,85 @@
|
|
|
6553
6553
|
"schema": {
|
|
6554
6554
|
"type": "object",
|
|
6555
6555
|
"properties": {
|
|
6556
|
-
"
|
|
6557
|
-
"type": "string",
|
|
6558
|
-
"description": "Path relative to the remote root."
|
|
6559
|
-
},
|
|
6560
|
-
"Name": {
|
|
6561
|
-
"type": "string",
|
|
6562
|
-
"description": "Base name of the entry."
|
|
6563
|
-
},
|
|
6564
|
-
"Size": {
|
|
6565
|
-
"type": "number",
|
|
6566
|
-
"description": "Object size in bytes."
|
|
6567
|
-
},
|
|
6568
|
-
"MimeType": {
|
|
6569
|
-
"type": "string",
|
|
6570
|
-
"description": "MIME type where available."
|
|
6571
|
-
},
|
|
6572
|
-
"ModTime": {
|
|
6573
|
-
"type": "string",
|
|
6574
|
-
"description": "Modification timestamp in RFC3339 format."
|
|
6575
|
-
},
|
|
6576
|
-
"IsDir": {
|
|
6577
|
-
"type": "boolean",
|
|
6578
|
-
"description": "True if the entry is a directory."
|
|
6579
|
-
},
|
|
6580
|
-
"Hashes": {
|
|
6556
|
+
"item": {
|
|
6581
6557
|
"type": "object",
|
|
6582
|
-
"
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6558
|
+
"nullable": true,
|
|
6559
|
+
"properties": {
|
|
6560
|
+
"Path": {
|
|
6561
|
+
"type": "string",
|
|
6562
|
+
"description": "Path relative to the remote root."
|
|
6563
|
+
},
|
|
6564
|
+
"Name": {
|
|
6565
|
+
"type": "string",
|
|
6566
|
+
"description": "Base name of the entry."
|
|
6567
|
+
},
|
|
6568
|
+
"Size": {
|
|
6569
|
+
"type": "number",
|
|
6570
|
+
"description": "Object size in bytes."
|
|
6571
|
+
},
|
|
6572
|
+
"MimeType": {
|
|
6573
|
+
"type": "string",
|
|
6574
|
+
"description": "MIME type where available."
|
|
6575
|
+
},
|
|
6576
|
+
"ModTime": {
|
|
6577
|
+
"type": "string",
|
|
6578
|
+
"description": "Modification timestamp in RFC3339 format."
|
|
6579
|
+
},
|
|
6580
|
+
"IsDir": {
|
|
6581
|
+
"type": "boolean",
|
|
6582
|
+
"description": "True if the entry is a directory."
|
|
6583
|
+
},
|
|
6584
|
+
"Hashes": {
|
|
6585
|
+
"type": "object",
|
|
6586
|
+
"additionalProperties": {
|
|
6587
|
+
"type": "string"
|
|
6588
|
+
},
|
|
6589
|
+
"description": "Hash digests keyed by algorithm when requested."
|
|
6590
|
+
},
|
|
6591
|
+
"ID": {
|
|
6592
|
+
"type": "string",
|
|
6593
|
+
"description": "Backend-specific identifier when provided."
|
|
6594
|
+
},
|
|
6595
|
+
"OrigID": {
|
|
6596
|
+
"type": "string",
|
|
6597
|
+
"description": "Original backend identifier when recorded."
|
|
6598
|
+
},
|
|
6599
|
+
"IsBucket": {
|
|
6600
|
+
"type": "boolean",
|
|
6601
|
+
"description": "True for bucket/root entries on bucket-based remotes."
|
|
6602
|
+
},
|
|
6603
|
+
"Tier": {
|
|
6604
|
+
"type": "string",
|
|
6605
|
+
"description": "Storage class or tier, if supplied by the backend."
|
|
6606
|
+
},
|
|
6607
|
+
"Encrypted": {
|
|
6608
|
+
"type": "string",
|
|
6609
|
+
"description": "Encrypted entry name when using crypt remotes."
|
|
6610
|
+
},
|
|
6611
|
+
"EncryptedPath": {
|
|
6612
|
+
"type": "string",
|
|
6613
|
+
"description": "Encrypted path when using crypt remotes."
|
|
6614
|
+
},
|
|
6615
|
+
"Metadata": {
|
|
6616
|
+
"type": "object",
|
|
6617
|
+
"additionalProperties": {
|
|
6618
|
+
"nullable": true
|
|
6619
|
+
},
|
|
6620
|
+
"description": "Backend-provided metadata map."
|
|
6621
|
+
}
|
|
6615
6622
|
},
|
|
6616
|
-
"
|
|
6623
|
+
"required": [
|
|
6624
|
+
"Path",
|
|
6625
|
+
"Name",
|
|
6626
|
+
"Size",
|
|
6627
|
+
"MimeType",
|
|
6628
|
+
"ModTime",
|
|
6629
|
+
"IsDir"
|
|
6630
|
+
]
|
|
6617
6631
|
}
|
|
6618
6632
|
},
|
|
6619
6633
|
"required": [
|
|
6620
|
-
"
|
|
6621
|
-
"Name",
|
|
6622
|
-
"Size",
|
|
6623
|
-
"MimeType",
|
|
6624
|
-
"ModTime",
|
|
6625
|
-
"IsDir"
|
|
6634
|
+
"item"
|
|
6626
6635
|
]
|
|
6627
6636
|
}
|
|
6628
6637
|
}
|
package/openapi.yaml
CHANGED
|
@@ -3911,59 +3911,65 @@ components:
|
|
|
3911
3911
|
schema:
|
|
3912
3912
|
type: object
|
|
3913
3913
|
properties:
|
|
3914
|
-
|
|
3915
|
-
type: string
|
|
3916
|
-
description: "Path relative to the remote root."
|
|
3917
|
-
Name:
|
|
3918
|
-
type: string
|
|
3919
|
-
description: "Base name of the entry."
|
|
3920
|
-
Size:
|
|
3921
|
-
type: number
|
|
3922
|
-
description: "Object size in bytes."
|
|
3923
|
-
MimeType:
|
|
3924
|
-
type: string
|
|
3925
|
-
description: "MIME type where available."
|
|
3926
|
-
ModTime:
|
|
3927
|
-
type: string
|
|
3928
|
-
description: "Modification timestamp in RFC3339 format."
|
|
3929
|
-
IsDir:
|
|
3930
|
-
type: boolean
|
|
3931
|
-
description: "True if the entry is a directory."
|
|
3932
|
-
Hashes:
|
|
3914
|
+
item:
|
|
3933
3915
|
type: object
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3916
|
+
nullable: true
|
|
3917
|
+
properties:
|
|
3918
|
+
Path:
|
|
3919
|
+
type: string
|
|
3920
|
+
description: "Path relative to the remote root."
|
|
3921
|
+
Name:
|
|
3922
|
+
type: string
|
|
3923
|
+
description: "Base name of the entry."
|
|
3924
|
+
Size:
|
|
3925
|
+
type: number
|
|
3926
|
+
description: "Object size in bytes."
|
|
3927
|
+
MimeType:
|
|
3928
|
+
type: string
|
|
3929
|
+
description: "MIME type where available."
|
|
3930
|
+
ModTime:
|
|
3931
|
+
type: string
|
|
3932
|
+
description: "Modification timestamp in RFC3339 format."
|
|
3933
|
+
IsDir:
|
|
3934
|
+
type: boolean
|
|
3935
|
+
description: "True if the entry is a directory."
|
|
3936
|
+
Hashes:
|
|
3937
|
+
type: object
|
|
3938
|
+
additionalProperties:
|
|
3939
|
+
type: string
|
|
3940
|
+
description: "Hash digests keyed by algorithm when requested."
|
|
3941
|
+
ID:
|
|
3942
|
+
type: string
|
|
3943
|
+
description: "Backend-specific identifier when provided."
|
|
3944
|
+
OrigID:
|
|
3945
|
+
type: string
|
|
3946
|
+
description: "Original backend identifier when recorded."
|
|
3947
|
+
IsBucket:
|
|
3948
|
+
type: boolean
|
|
3949
|
+
description: "True for bucket/root entries on bucket-based remotes."
|
|
3950
|
+
Tier:
|
|
3951
|
+
type: string
|
|
3952
|
+
description: "Storage class or tier, if supplied by the backend."
|
|
3953
|
+
Encrypted:
|
|
3954
|
+
type: string
|
|
3955
|
+
description: "Encrypted entry name when using crypt remotes."
|
|
3956
|
+
EncryptedPath:
|
|
3957
|
+
type: string
|
|
3958
|
+
description: "Encrypted path when using crypt remotes."
|
|
3959
|
+
Metadata:
|
|
3960
|
+
type: object
|
|
3961
|
+
additionalProperties:
|
|
3962
|
+
nullable: true
|
|
3963
|
+
description: "Backend-provided metadata map."
|
|
3964
|
+
required:
|
|
3965
|
+
- Path
|
|
3966
|
+
- Name
|
|
3967
|
+
- Size
|
|
3968
|
+
- MimeType
|
|
3969
|
+
- ModTime
|
|
3970
|
+
- IsDir
|
|
3960
3971
|
required:
|
|
3961
|
-
-
|
|
3962
|
-
- Name
|
|
3963
|
-
- Size
|
|
3964
|
-
- MimeType
|
|
3965
|
-
- ModTime
|
|
3966
|
-
- IsDir
|
|
3972
|
+
- item
|
|
3967
3973
|
OptionsBlocksResponse:
|
|
3968
3974
|
description: "Names of option blocks that can be queried with `options/get` or `options/info`."
|
|
3969
3975
|
content:
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2646,38 +2646,40 @@ export interface components {
|
|
|
2646
2646
|
};
|
|
2647
2647
|
content: {
|
|
2648
2648
|
"application/json": {
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2649
|
+
item: {
|
|
2650
|
+
/** @description Path relative to the remote root. */
|
|
2651
|
+
Path: string;
|
|
2652
|
+
/** @description Base name of the entry. */
|
|
2653
|
+
Name: string;
|
|
2654
|
+
/** @description Object size in bytes. */
|
|
2655
|
+
Size: number;
|
|
2656
|
+
/** @description MIME type where available. */
|
|
2657
|
+
MimeType: string;
|
|
2658
|
+
/** @description Modification timestamp in RFC3339 format. */
|
|
2659
|
+
ModTime: string;
|
|
2660
|
+
/** @description True if the entry is a directory. */
|
|
2661
|
+
IsDir: boolean;
|
|
2662
|
+
/** @description Hash digests keyed by algorithm when requested. */
|
|
2663
|
+
Hashes?: {
|
|
2664
|
+
[key: string]: string;
|
|
2665
|
+
};
|
|
2666
|
+
/** @description Backend-specific identifier when provided. */
|
|
2667
|
+
ID?: string;
|
|
2668
|
+
/** @description Original backend identifier when recorded. */
|
|
2669
|
+
OrigID?: string;
|
|
2670
|
+
/** @description True for bucket/root entries on bucket-based remotes. */
|
|
2671
|
+
IsBucket?: boolean;
|
|
2672
|
+
/** @description Storage class or tier, if supplied by the backend. */
|
|
2673
|
+
Tier?: string;
|
|
2674
|
+
/** @description Encrypted entry name when using crypt remotes. */
|
|
2675
|
+
Encrypted?: string;
|
|
2676
|
+
/** @description Encrypted path when using crypt remotes. */
|
|
2677
|
+
EncryptedPath?: string;
|
|
2678
|
+
/** @description Backend-provided metadata map. */
|
|
2679
|
+
Metadata?: {
|
|
2680
|
+
[key: string]: unknown;
|
|
2681
|
+
};
|
|
2682
|
+
} | null;
|
|
2681
2683
|
};
|
|
2682
2684
|
};
|
|
2683
2685
|
};
|