@daocloud-proto/baize 0.117.0 → 0.117.1
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.
|
@@ -59,6 +59,12 @@ export enum DataSourceOptionsModelScopeRepoType {
|
|
|
59
59
|
DATASET = "DATASET",
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
export enum DataSourceOptionsRCloneOp {
|
|
63
|
+
RCLONE_OP_UNSPECIFIED = "RCLONE_OP_UNSPECIFIED",
|
|
64
|
+
COPY = "COPY",
|
|
65
|
+
SYNC = "SYNC",
|
|
66
|
+
}
|
|
67
|
+
|
|
62
68
|
export enum DataSourceOptionsS3Provider {
|
|
63
69
|
PROVIDER_UNSPECIFIED = "PROVIDER_UNSPECIFIED",
|
|
64
70
|
AWS = "AWS",
|
|
@@ -150,10 +156,12 @@ export type DataSourceOptionsS3 = {
|
|
|
150
156
|
region?: string
|
|
151
157
|
endpoint?: string
|
|
152
158
|
provider?: DataSourceOptionsS3Provider
|
|
159
|
+
rcloneOp?: DataSourceOptionsRCloneOp
|
|
153
160
|
}
|
|
154
161
|
|
|
155
162
|
export type DataSourceOptionsHttp = {
|
|
156
163
|
headers?: {[key: string]: string}
|
|
164
|
+
rcloneOp?: DataSourceOptionsRCloneOp
|
|
157
165
|
}
|
|
158
166
|
|
|
159
167
|
export type DataSourceOptionsReference = {
|