IncompleteFile
Represents an in-progress, partial upload for a user. Used to track uploads that are not yet complete, or are still processing in the background.
Fields
Name | Type | Description |
---|---|---|
id | string | Unique identifier for the incomplete upload. |
createdAt | Date | When this incomplete upload was created. |
updatedAt | Date | When this incomplete upload was last updated. |
status | IncompleteFileStatus | Status of the upload (e.g. IN_PROGRESS, COMPLETE). |
chunksTotal | number | Total number of chunks expected for the upload. |
chunksComplete | number | Number of chunks that have been uploaded so far. |
userId | string | The ID of the user who owns this upload. |
metadata | IncompleteFileMetadata | Metadata about the file being uploaded. |
IncompleteFileStatus
Value | Description |
---|---|
PENDING | Upload is waiting to start or resume. |
PROCESSING | Upload is actively being processed (chunks coming in). |
COMPLETE | All chunks have been uploaded and processed. The incompletefile can be deleted now. |
FAILED | Upload has failed due to an error, check logs. |
IncompleteFileMetadata
Name | Type | Description |
---|---|---|
file | object | Information about the target file. |
└─ filename | string | The name of the file. |
└─ type | string | The MIME type of the file. |
└─ id | string | The unique ID assigned to the file. |
Folder
Represents an invite created by a user to allow others to join a Zipli...
Invite
Represents an invite created by a user to allow others to join a Zipli...
Last updated: 6/2/2025
Edit this page on GitHub