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.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
@@ -1632,7 +1632,7 @@ var Webhooks = class extends ApiResource {
1632
1632
  };
1633
1633
 
1634
1634
  // src/version.ts
1635
- var VERSION = "0.4.18";
1635
+ var VERSION = "0.4.19";
1636
1636
 
1637
1637
  // src/client.ts
1638
1638
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";