Skip to content
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.17.4",
"version": "1.17.5",
"description": "An sdk for interacting with Internxt's services",
"repository": {
"type": "git",
Expand Down
6 changes: 4 additions & 2 deletions src/mail/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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… */
Expand Down Expand Up @@ -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… */
Expand Down Expand Up @@ -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: {
Expand All @@ -606,7 +609,6 @@ export interface components {
textBody?: string;
/** @example <p>Still working on this…</p> */
htmlBody?: string;
/** @description Attachments to include, referenced by blobId previously obtained from POST /email/attachment */
attachments?: components['schemas']['AttachmentRefDto'][];
};
UploadAttachmentResponseDto: {
Expand Down
Loading