shipmail 0.4.18 → 0.4.19
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -765,8 +765,10 @@ type CreateMailboxImportParams = {
|
|
|
765
765
|
readonly options?: MailboxImportOptions | undefined;
|
|
766
766
|
};
|
|
767
767
|
type CreateImportUploadParams = {
|
|
768
|
+
readonly provider: MailboxImportFileProvider;
|
|
768
769
|
readonly file_name: string;
|
|
769
770
|
readonly size_bytes: number;
|
|
771
|
+
readonly source_fingerprint: string;
|
|
770
772
|
};
|
|
771
773
|
type ImportUploadPart = {
|
|
772
774
|
readonly part_number: number;
|
|
@@ -776,6 +778,7 @@ type ImportUpload = {
|
|
|
776
778
|
readonly object: "import_upload";
|
|
777
779
|
readonly file_id: string;
|
|
778
780
|
readonly part_size_bytes: number;
|
|
781
|
+
readonly completed_parts: readonly CompleteImportUploadPart[];
|
|
779
782
|
readonly parts: readonly ImportUploadPart[];
|
|
780
783
|
readonly expires_in_seconds: number;
|
|
781
784
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -765,8 +765,10 @@ type CreateMailboxImportParams = {
|
|
|
765
765
|
readonly options?: MailboxImportOptions | undefined;
|
|
766
766
|
};
|
|
767
767
|
type CreateImportUploadParams = {
|
|
768
|
+
readonly provider: MailboxImportFileProvider;
|
|
768
769
|
readonly file_name: string;
|
|
769
770
|
readonly size_bytes: number;
|
|
771
|
+
readonly source_fingerprint: string;
|
|
770
772
|
};
|
|
771
773
|
type ImportUploadPart = {
|
|
772
774
|
readonly part_number: number;
|
|
@@ -776,6 +778,7 @@ type ImportUpload = {
|
|
|
776
778
|
readonly object: "import_upload";
|
|
777
779
|
readonly file_id: string;
|
|
778
780
|
readonly part_size_bytes: number;
|
|
781
|
+
readonly completed_parts: readonly CompleteImportUploadPart[];
|
|
779
782
|
readonly parts: readonly ImportUploadPart[];
|
|
780
783
|
readonly expires_in_seconds: number;
|
|
781
784
|
};
|
package/dist/index.js
CHANGED