@emilgroup/notification-sdk-node 1.4.1-beta.1 → 1.4.1-beta.14

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.
Files changed (52) hide show
  1. package/.openapi-generator/FILES +11 -0
  2. package/README.md +2 -2
  3. package/api/email-messages-api.ts +372 -0
  4. package/api/email-tracking-api.ts +541 -0
  5. package/api.ts +4 -0
  6. package/base.ts +0 -1
  7. package/dist/api/default-api.d.ts +1 -1
  8. package/dist/api/email-messages-api.d.ts +205 -0
  9. package/dist/api/email-messages-api.js +405 -0
  10. package/dist/api/email-tracking-api.d.ts +301 -0
  11. package/dist/api/email-tracking-api.js +524 -0
  12. package/dist/api/email-verifications-api.d.ts +2 -2
  13. package/dist/api/layouts-api.d.ts +5 -5
  14. package/dist/api/notification-templates-api.d.ts +5 -5
  15. package/dist/api/notifications-api.d.ts +1 -1
  16. package/dist/api.d.ts +2 -0
  17. package/dist/api.js +2 -0
  18. package/dist/common.d.ts +1 -1
  19. package/dist/models/download-attachment-response-class.d.ts +36 -0
  20. package/dist/models/download-attachment-response-class.js +15 -0
  21. package/dist/models/email-attachment-class.d.ts +84 -0
  22. package/dist/models/email-attachment-class.js +15 -0
  23. package/dist/models/email-message-class.d.ts +140 -0
  24. package/dist/models/email-message-class.js +27 -0
  25. package/dist/models/email-thread-class.d.ts +83 -0
  26. package/dist/models/email-thread-class.js +20 -0
  27. package/dist/models/get-email-message-response-class.d.ts +25 -0
  28. package/dist/models/get-email-message-response-class.js +15 -0
  29. package/dist/models/get-email-thread-response-class.d.ts +25 -0
  30. package/dist/models/get-email-thread-response-class.js +15 -0
  31. package/dist/models/index.d.ts +9 -0
  32. package/dist/models/index.js +9 -0
  33. package/dist/models/list-email-attachments-response-class.d.ts +25 -0
  34. package/dist/models/list-email-attachments-response-class.js +15 -0
  35. package/dist/models/list-email-messages-response-class.d.ts +43 -0
  36. package/dist/models/list-email-messages-response-class.js +15 -0
  37. package/dist/models/list-email-threads-response-class.d.ts +43 -0
  38. package/dist/models/list-email-threads-response-class.js +15 -0
  39. package/dist/models/send-notification-request-dto.d.ts +44 -2
  40. package/dist/models/send-notification-request-dto.js +6 -0
  41. package/models/download-attachment-response-class.ts +42 -0
  42. package/models/email-attachment-class.ts +90 -0
  43. package/models/email-message-class.ts +150 -0
  44. package/models/email-thread-class.ts +92 -0
  45. package/models/get-email-message-response-class.ts +31 -0
  46. package/models/get-email-thread-response-class.ts +31 -0
  47. package/models/index.ts +9 -0
  48. package/models/list-email-attachments-response-class.ts +31 -0
  49. package/models/list-email-messages-response-class.ts +49 -0
  50. package/models/list-email-threads-response-class.ts +49 -0
  51. package/models/send-notification-request-dto.ts +47 -2
  52. package/package.json +3 -3
package/dist/api.js CHANGED
@@ -28,6 +28,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
30
  __exportStar(require("./api/default-api"), exports);
31
+ __exportStar(require("./api/email-messages-api"), exports);
32
+ __exportStar(require("./api/email-tracking-api"), exports);
31
33
  __exportStar(require("./api/email-verifications-api"), exports);
32
34
  __exportStar(require("./api/layouts-api"), exports);
33
35
  __exportStar(require("./api/notification-templates-api"), exports);
package/dist/common.d.ts CHANGED
@@ -63,7 +63,7 @@ export declare const toPathString: (url: URL) => string;
63
63
  *
64
64
  * @export
65
65
  */
66
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
66
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any, {}>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
67
67
  /**
68
68
  * EMIL NotificationService
69
69
  * The EMIL NotificationService API description
@@ -0,0 +1,36 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface DownloadAttachmentResponseClass
16
+ */
17
+ export interface DownloadAttachmentResponseClass {
18
+ /**
19
+ * Presigned S3 URL for downloading the attachment
20
+ * @type {string}
21
+ * @memberof DownloadAttachmentResponseClass
22
+ */
23
+ 'url': string;
24
+ /**
25
+ * Original filename of the attachment
26
+ * @type {string}
27
+ * @memberof DownloadAttachmentResponseClass
28
+ */
29
+ 'filename': string;
30
+ /**
31
+ * MIME content type of the attachment
32
+ * @type {string}
33
+ * @memberof DownloadAttachmentResponseClass
34
+ */
35
+ 'contentType': string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,84 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface EmailAttachmentClass
16
+ */
17
+ export interface EmailAttachmentClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof EmailAttachmentClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier code for the attachment
26
+ * @type {string}
27
+ * @memberof EmailAttachmentClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Message code this attachment belongs to
32
+ * @type {string}
33
+ * @memberof EmailAttachmentClass
34
+ */
35
+ 'messageCode': string;
36
+ /**
37
+ * Original filename of the attachment
38
+ * @type {string}
39
+ * @memberof EmailAttachmentClass
40
+ */
41
+ 'filename': string;
42
+ /**
43
+ * MIME content type
44
+ * @type {string}
45
+ * @memberof EmailAttachmentClass
46
+ */
47
+ 'contentType'?: string;
48
+ /**
49
+ * Size of the attachment in bytes
50
+ * @type {number}
51
+ * @memberof EmailAttachmentClass
52
+ */
53
+ 'sizeBytes'?: number;
54
+ /**
55
+ * S3 bucket where the attachment is stored
56
+ * @type {string}
57
+ * @memberof EmailAttachmentClass
58
+ */
59
+ 's3Bucket': string;
60
+ /**
61
+ * S3 key of the attachment
62
+ * @type {string}
63
+ * @memberof EmailAttachmentClass
64
+ */
65
+ 's3Key': string;
66
+ /**
67
+ * User who created this attachment
68
+ * @type {string}
69
+ * @memberof EmailAttachmentClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * User who last updated this attachment
74
+ * @type {string}
75
+ * @memberof EmailAttachmentClass
76
+ */
77
+ 'updatedBy': string;
78
+ /**
79
+ * Timestamp when the attachment was created
80
+ * @type {string}
81
+ * @memberof EmailAttachmentClass
82
+ */
83
+ 'createdAt': string;
84
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,140 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EmailAttachmentClass } from './email-attachment-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface EmailMessageClass
17
+ */
18
+ export interface EmailMessageClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof EmailMessageClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier code for the email message
27
+ * @type {string}
28
+ * @memberof EmailMessageClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Thread code this message belongs to
33
+ * @type {string}
34
+ * @memberof EmailMessageClass
35
+ */
36
+ 'threadCode': string;
37
+ /**
38
+ * Direction of the email
39
+ * @type {string}
40
+ * @memberof EmailMessageClass
41
+ */
42
+ 'direction': EmailMessageClassDirectionEnum;
43
+ /**
44
+ * Sender email address
45
+ * @type {string}
46
+ * @memberof EmailMessageClass
47
+ */
48
+ 'fromAddress': string;
49
+ /**
50
+ * Recipient email addresses
51
+ * @type {string}
52
+ * @memberof EmailMessageClass
53
+ */
54
+ 'toAddresses': string;
55
+ /**
56
+ * CC email addresses
57
+ * @type {string}
58
+ * @memberof EmailMessageClass
59
+ */
60
+ 'ccAddresses'?: string;
61
+ /**
62
+ * Email subject
63
+ * @type {string}
64
+ * @memberof EmailMessageClass
65
+ */
66
+ 'subject'?: string;
67
+ /**
68
+ * Plain text body of the email
69
+ * @type {string}
70
+ * @memberof EmailMessageClass
71
+ */
72
+ 'bodyText'?: string;
73
+ /**
74
+ * Delivery status of the email
75
+ * @type {string}
76
+ * @memberof EmailMessageClass
77
+ */
78
+ 'deliveryStatus': EmailMessageClassDeliveryStatusEnum;
79
+ /**
80
+ * Message-ID header value
81
+ * @type {string}
82
+ * @memberof EmailMessageClass
83
+ */
84
+ 'messageIdHeader'?: string;
85
+ /**
86
+ * Timestamp when the email was sent
87
+ * @type {string}
88
+ * @memberof EmailMessageClass
89
+ */
90
+ 'sentAt'?: string;
91
+ /**
92
+ * Timestamp when the email was received
93
+ * @type {string}
94
+ * @memberof EmailMessageClass
95
+ */
96
+ 'receivedAt'?: string;
97
+ /**
98
+ * User who created this message
99
+ * @type {string}
100
+ * @memberof EmailMessageClass
101
+ */
102
+ 'createdBy': string;
103
+ /**
104
+ * User who last updated this message
105
+ * @type {string}
106
+ * @memberof EmailMessageClass
107
+ */
108
+ 'updatedBy': string;
109
+ /**
110
+ * Time at which the object was created.
111
+ * @type {string}
112
+ * @memberof EmailMessageClass
113
+ */
114
+ 'createdAt': string;
115
+ /**
116
+ * Time at which the object was updated.
117
+ * @type {string}
118
+ * @memberof EmailMessageClass
119
+ */
120
+ 'updatedAt': string;
121
+ /**
122
+ * Attachments on this message
123
+ * @type {Array<EmailAttachmentClass>}
124
+ * @memberof EmailMessageClass
125
+ */
126
+ 'attachments': Array<EmailAttachmentClass>;
127
+ }
128
+ export declare const EmailMessageClassDirectionEnum: {
129
+ readonly Outbound: "outbound";
130
+ readonly Inbound: "inbound";
131
+ };
132
+ export type EmailMessageClassDirectionEnum = typeof EmailMessageClassDirectionEnum[keyof typeof EmailMessageClassDirectionEnum];
133
+ export declare const EmailMessageClassDeliveryStatusEnum: {
134
+ readonly Pending: "pending";
135
+ readonly Sent: "sent";
136
+ readonly Delivered: "delivered";
137
+ readonly Bounced: "bounced";
138
+ readonly Failed: "failed";
139
+ };
140
+ export type EmailMessageClassDeliveryStatusEnum = typeof EmailMessageClassDeliveryStatusEnum[keyof typeof EmailMessageClassDeliveryStatusEnum];
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.EmailMessageClassDeliveryStatusEnum = exports.EmailMessageClassDirectionEnum = void 0;
17
+ exports.EmailMessageClassDirectionEnum = {
18
+ Outbound: 'outbound',
19
+ Inbound: 'inbound'
20
+ };
21
+ exports.EmailMessageClassDeliveryStatusEnum = {
22
+ Pending: 'pending',
23
+ Sent: 'sent',
24
+ Delivered: 'delivered',
25
+ Bounced: 'bounced',
26
+ Failed: 'failed'
27
+ };
@@ -0,0 +1,83 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface EmailThreadClass
16
+ */
17
+ export interface EmailThreadClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof EmailThreadClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier code for the email thread
26
+ * @type {string}
27
+ * @memberof EmailThreadClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Entity type associated with this thread
32
+ * @type {string}
33
+ * @memberof EmailThreadClass
34
+ */
35
+ 'entityType': string;
36
+ /**
37
+ * Entity code associated with this thread
38
+ * @type {string}
39
+ * @memberof EmailThreadClass
40
+ */
41
+ 'entityCode': string;
42
+ /**
43
+ * Email subject of the thread
44
+ * @type {string}
45
+ * @memberof EmailThreadClass
46
+ */
47
+ 'subject'?: string;
48
+ /**
49
+ * Thread status
50
+ * @type {string}
51
+ * @memberof EmailThreadClass
52
+ */
53
+ 'status': EmailThreadClassStatusEnum;
54
+ /**
55
+ * User who created this thread
56
+ * @type {string}
57
+ * @memberof EmailThreadClass
58
+ */
59
+ 'createdBy': string;
60
+ /**
61
+ * User who last updated this thread
62
+ * @type {string}
63
+ * @memberof EmailThreadClass
64
+ */
65
+ 'updatedBy': string;
66
+ /**
67
+ * Time at which the object was created.
68
+ * @type {string}
69
+ * @memberof EmailThreadClass
70
+ */
71
+ 'createdAt': string;
72
+ /**
73
+ * Time at which the object was updated.
74
+ * @type {string}
75
+ * @memberof EmailThreadClass
76
+ */
77
+ 'updatedAt': string;
78
+ }
79
+ export declare const EmailThreadClassStatusEnum: {
80
+ readonly Open: "open";
81
+ readonly Closed: "closed";
82
+ };
83
+ export type EmailThreadClassStatusEnum = typeof EmailThreadClassStatusEnum[keyof typeof EmailThreadClassStatusEnum];
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.EmailThreadClassStatusEnum = void 0;
17
+ exports.EmailThreadClassStatusEnum = {
18
+ Open: 'open',
19
+ Closed: 'closed'
20
+ };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EmailMessageClass } from './email-message-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetEmailMessageResponseClass
17
+ */
18
+ export interface GetEmailMessageResponseClass {
19
+ /**
20
+ * The email message response.
21
+ * @type {EmailMessageClass}
22
+ * @memberof GetEmailMessageResponseClass
23
+ */
24
+ 'message': EmailMessageClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EmailThreadClass } from './email-thread-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetEmailThreadResponseClass
17
+ */
18
+ export interface GetEmailThreadResponseClass {
19
+ /**
20
+ * The email thread response.
21
+ * @type {EmailThreadClass}
22
+ * @memberof GetEmailThreadResponseClass
23
+ */
24
+ 'thread': EmailThreadClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,6 +6,12 @@ export * from './create-notification-template-request-dto';
6
6
  export * from './create-notification-template-response-class';
7
7
  export * from './delete-layout-request-dto';
8
8
  export * from './delete-notification-template-request-dto';
9
+ export * from './download-attachment-response-class';
10
+ export * from './email-attachment-class';
11
+ export * from './email-message-class';
12
+ export * from './email-thread-class';
13
+ export * from './get-email-message-response-class';
14
+ export * from './get-email-thread-response-class';
9
15
  export * from './get-layout-request-dto';
10
16
  export * from './get-layout-response-class';
11
17
  export * from './get-notification-template-request-dto';
@@ -16,6 +22,9 @@ export * from './initiate-email-verification-response-class';
16
22
  export * from './inline-response200';
17
23
  export * from './inline-response503';
18
24
  export * from './layout-class';
25
+ export * from './list-email-attachments-response-class';
26
+ export * from './list-email-messages-response-class';
27
+ export * from './list-email-threads-response-class';
19
28
  export * from './list-layouts-response-class';
20
29
  export * from './list-notification-templates-response-class';
21
30
  export * from './notification-template-class';
@@ -22,6 +22,12 @@ __exportStar(require("./create-notification-template-request-dto"), exports);
22
22
  __exportStar(require("./create-notification-template-response-class"), exports);
23
23
  __exportStar(require("./delete-layout-request-dto"), exports);
24
24
  __exportStar(require("./delete-notification-template-request-dto"), exports);
25
+ __exportStar(require("./download-attachment-response-class"), exports);
26
+ __exportStar(require("./email-attachment-class"), exports);
27
+ __exportStar(require("./email-message-class"), exports);
28
+ __exportStar(require("./email-thread-class"), exports);
29
+ __exportStar(require("./get-email-message-response-class"), exports);
30
+ __exportStar(require("./get-email-thread-response-class"), exports);
25
31
  __exportStar(require("./get-layout-request-dto"), exports);
26
32
  __exportStar(require("./get-layout-response-class"), exports);
27
33
  __exportStar(require("./get-notification-template-request-dto"), exports);
@@ -32,6 +38,9 @@ __exportStar(require("./initiate-email-verification-response-class"), exports);
32
38
  __exportStar(require("./inline-response200"), exports);
33
39
  __exportStar(require("./inline-response503"), exports);
34
40
  __exportStar(require("./layout-class"), exports);
41
+ __exportStar(require("./list-email-attachments-response-class"), exports);
42
+ __exportStar(require("./list-email-messages-response-class"), exports);
43
+ __exportStar(require("./list-email-threads-response-class"), exports);
35
44
  __exportStar(require("./list-layouts-response-class"), exports);
36
45
  __exportStar(require("./list-notification-templates-response-class"), exports);
37
46
  __exportStar(require("./notification-template-class"), exports);
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EmailAttachmentClass } from './email-attachment-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListEmailAttachmentsResponseClass
17
+ */
18
+ export interface ListEmailAttachmentsResponseClass {
19
+ /**
20
+ * List of email attachments
21
+ * @type {Array<EmailAttachmentClass>}
22
+ * @memberof ListEmailAttachmentsResponseClass
23
+ */
24
+ 'items': Array<EmailAttachmentClass>;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ /**
2
+ * EMIL NotificationService
3
+ * The EMIL NotificationService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EmailMessageClass } from './email-message-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListEmailMessagesResponseClass
17
+ */
18
+ export interface ListEmailMessagesResponseClass {
19
+ /**
20
+ * List of email messages
21
+ * @type {Array<EmailMessageClass>}
22
+ * @memberof ListEmailMessagesResponseClass
23
+ */
24
+ 'items': Array<EmailMessageClass>;
25
+ /**
26
+ * Token for next page of results
27
+ * @type {string}
28
+ * @memberof ListEmailMessagesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Total number of items
33
+ * @type {number}
34
+ * @memberof ListEmailMessagesResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Number of items per page
39
+ * @type {number}
40
+ * @memberof ListEmailMessagesResponseClass
41
+ */
42
+ 'itemsPerPage': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL NotificationService
6
+ * The EMIL NotificationService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });