Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7056,7 +7056,15 @@
},
"additionalProperties": true,
"required": [
"group"
"group",
"name",
"size",
"bytes",
"checked",
"what",
"started_at",
"completed_at",
"error"
]
}
}
Expand Down
8 changes: 8 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4259,6 +4259,14 @@ components:
additionalProperties: true
required:
- group
- name
- size
- bytes
- checked
- what
- started_at
- completed_at
- error
required:
- transferred
DebugSetGcPercentResponse:
Expand Down
16 changes: 8 additions & 8 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3385,18 +3385,18 @@ export interface components {
srcRemote?: string;
/** @description Destination path within `dstFs`, when provided. */
dstRemote?: string;
name?: string;
size?: number;
bytes?: number;
checked?: boolean;
name: string;
size: number;
bytes: number;
checked: boolean;
/** @enum {string} */
what?: "transferring" | "deleting" | "checking" | "importing" | "hashing" | "merging" | "listing" | "moving" | "renaming";
what: "transferring" | "deleting" | "checking" | "importing" | "hashing" | "merging" | "listing" | "moving" | "renaming";
/** @description ISO8601 timestamp when the transfer started. */
started_at?: string;
started_at: string;
/** @description ISO8601 timestamp when the transfer completed. */
completed_at?: string;
completed_at: string;
timestamp?: number;
error?: string;
error: string;
jobid?: number;
} & {
[key: string]: unknown;
Expand Down