@internxt/sdk 1.17.4 → 1.17.5
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/mail/schema.d.ts +4 -2
- package/package.json +1 -1
package/dist/mail/schema.d.ts
CHANGED
|
@@ -386,6 +386,8 @@ export interface components {
|
|
|
386
386
|
encryptedPreview: string;
|
|
387
387
|
/** @description De-identified wrapped keys; the client trial-decrypts to read */
|
|
388
388
|
wrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][];
|
|
389
|
+
/** @description De-identified wrapped keys for the symmetric key that encrypts the email's attachments. Present only when the email has encrypted attachments. */
|
|
390
|
+
attachmentWrappedKeys?: components['schemas']['EncryptedWrappedKeyDto'][];
|
|
389
391
|
};
|
|
390
392
|
EmailSummaryResponseDto: {
|
|
391
393
|
/** @example Ma1f09b… */
|
|
@@ -553,6 +555,8 @@ export interface components {
|
|
|
553
555
|
encryptedText: string;
|
|
554
556
|
/** @description De-identified wrapped keys, one per recipient */
|
|
555
557
|
wrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][];
|
|
558
|
+
/** @description De-identified attachment wrapped keys, one per recipient */
|
|
559
|
+
attachmentWrappedKeys: components['schemas']['EncryptedWrappedKeyDto'][];
|
|
556
560
|
};
|
|
557
561
|
AttachmentRefDto: {
|
|
558
562
|
/** @example T1a2b3c… */
|
|
@@ -585,7 +589,6 @@ export interface components {
|
|
|
585
589
|
*/
|
|
586
590
|
htmlBody?: string;
|
|
587
591
|
encryption?: components['schemas']['EncryptionBlockDto'];
|
|
588
|
-
/** @description Attachments to include, referenced by blobId previously obtained from POST /email/attachment */
|
|
589
592
|
attachments?: components['schemas']['AttachmentRefDto'][];
|
|
590
593
|
};
|
|
591
594
|
EmailCreatedResponseDto: {
|
|
@@ -605,7 +608,6 @@ export interface components {
|
|
|
605
608
|
textBody?: string;
|
|
606
609
|
/** @example <p>Still working on this…</p> */
|
|
607
610
|
htmlBody?: string;
|
|
608
|
-
/** @description Attachments to include, referenced by blobId previously obtained from POST /email/attachment */
|
|
609
611
|
attachments?: components['schemas']['AttachmentRefDto'][];
|
|
610
612
|
};
|
|
611
613
|
UploadAttachmentResponseDto: {
|