@internxt/sdk 1.17.5 → 1.17.6
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 +5 -0
- package/dist/mail/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/mail/schema.d.ts
CHANGED
|
@@ -590,6 +590,11 @@ export interface components {
|
|
|
590
590
|
htmlBody?: string;
|
|
591
591
|
encryption?: components['schemas']['EncryptionBlockDto'];
|
|
592
592
|
attachments?: components['schemas']['AttachmentRefDto'][];
|
|
593
|
+
/**
|
|
594
|
+
* @example INTERNXT
|
|
595
|
+
* @enum {string}
|
|
596
|
+
*/
|
|
597
|
+
deliveryMode?: 'INTERNXT' | 'EXTERNAL';
|
|
593
598
|
};
|
|
594
599
|
EmailCreatedResponseDto: {
|
|
595
600
|
/**
|
package/dist/mail/types.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export type EmailDomainsResponse = components['schemas']['MailDomainDto'][];
|
|
|
19
19
|
export type UploadAttachmentResponse = components['schemas']['UploadAttachmentResponseDto'];
|
|
20
20
|
export type DownloadAttachmentPayload = operations['EmailController_downloadAttachment']['parameters']['query'];
|
|
21
21
|
export type AttachmentRef = components['schemas']['EmailAttachmentDto'];
|
|
22
|
+
export type DeliveryMode = components['schemas']['SendEmailRequestDto']['deliveryMode'];
|
|
22
23
|
export type DownloadAttachmentResponse = {
|
|
23
24
|
data: ArrayBuffer;
|
|
24
25
|
contentType: string;
|