diff --git a/package.json b/package.json index f266b72..8fac32c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@internxt/sdk", "author": "Internxt ", - "version": "1.17.4", + "version": "1.17.5", "description": "An sdk for interacting with Internxt's services", "repository": { "type": "git", diff --git a/src/mail/schema.ts b/src/mail/schema.ts index 83a7c87..e955790 100644 --- a/src/mail/schema.ts +++ b/src/mail/schema.ts @@ -387,6 +387,8 @@ export interface components { encryptedPreview: string; /** @description De-identified wrapped keys; the client trial-decrypts to read */ wrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][]; + /** @description De-identified wrapped keys for the symmetric key that encrypts the email's attachments. Present only when the email has encrypted attachments. */ + attachmentWrappedKeys?: components['schemas']['EncryptedWrappedKeyDto'][]; }; EmailSummaryResponseDto: { /** @example Ma1f09b… */ @@ -554,6 +556,8 @@ export interface components { encryptedText: string; /** @description De-identified wrapped keys, one per recipient */ wrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][]; + /** @description De-identified attachment wrapped keys, one per recipient */ + attachmentWrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][]; }; AttachmentRefDto: { /** @example T1a2b3c… */ @@ -586,7 +590,6 @@ export interface components { */ htmlBody?: string; encryption?: components['schemas']['EncryptionBlockDto']; - /** @description Attachments to include, referenced by blobId previously obtained from POST /email/attachment */ attachments?: components['schemas']['AttachmentRefDto'][]; }; EmailCreatedResponseDto: { @@ -606,7 +609,6 @@ export interface components { textBody?: string; /** @example

Still working on this…

*/ htmlBody?: string; - /** @description Attachments to include, referenced by blobId previously obtained from POST /email/attachment */ attachments?: components['schemas']['AttachmentRefDto'][]; }; UploadAttachmentResponseDto: {