@alicloud/dm20151123 1.2.6 → 1.2.8

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 (33) hide show
  1. package/dist/client.d.ts +1 -0
  2. package/dist/client.js +91 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/BatchSendMailRequest.d.ts +1 -0
  5. package/dist/models/BatchSendMailRequest.js +2 -0
  6. package/dist/models/BatchSendMailRequest.js.map +1 -1
  7. package/dist/models/QueryTaskByParamResponseBodyDataTask.d.ts +2 -0
  8. package/dist/models/QueryTaskByParamResponseBodyDataTask.js +4 -0
  9. package/dist/models/QueryTaskByParamResponseBodyDataTask.js.map +1 -1
  10. package/dist/models/SingleSendMailAdvanceRequest.d.ts +184 -0
  11. package/dist/models/SingleSendMailAdvanceRequest.js +100 -0
  12. package/dist/models/SingleSendMailAdvanceRequest.js.map +1 -0
  13. package/dist/models/SingleSendMailAdvanceRequestAttachments.d.ts +16 -0
  14. package/dist/models/SingleSendMailAdvanceRequestAttachments.js +59 -0
  15. package/dist/models/SingleSendMailAdvanceRequestAttachments.js.map +1 -0
  16. package/dist/models/SingleSendMailRequest.d.ts +3 -0
  17. package/dist/models/SingleSendMailRequest.js +8 -0
  18. package/dist/models/SingleSendMailRequest.js.map +1 -1
  19. package/dist/models/SingleSendMailRequestAttachments.d.ts +15 -0
  20. package/dist/models/SingleSendMailRequestAttachments.js +60 -0
  21. package/dist/models/SingleSendMailRequestAttachments.js.map +1 -0
  22. package/dist/models/model.d.ts +3 -0
  23. package/dist/models/model.js +10 -4
  24. package/dist/models/model.js.map +1 -1
  25. package/package.json +5 -1
  26. package/src/client.ts +100 -0
  27. package/src/models/BatchSendMailRequest.ts +3 -0
  28. package/src/models/QueryTaskByParamResponseBodyDataTask.ts +6 -0
  29. package/src/models/SingleSendMailAdvanceRequest.ts +238 -0
  30. package/src/models/SingleSendMailAdvanceRequestAttachments.ts +31 -0
  31. package/src/models/SingleSendMailRequest.ts +10 -0
  32. package/src/models/SingleSendMailRequestAttachments.ts +30 -0
  33. package/src/models/model.ts +3 -0
package/src/client.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  // This file is auto-generated, don't edit it
2
2
  import * as $dara from '@darabonba/typescript';
3
+ import OSS, * as $OSS from '@alicloud/oss-client';
4
+ import OpenPlatform, * as $OpenPlatform from '@alicloud/openplatform20191219';
5
+ import * as $OSSUtil from '@alicloud/oss-util';
6
+ import * as $FileForm from '@alicloud/tea-fileform';
3
7
  import OpenApi from '@alicloud/openapi-core';
4
8
  import { OpenApiUtil, $OpenApiUtil }from '@alicloud/openapi-core';
5
9
 
@@ -163,6 +167,10 @@ export default class Client extends OpenApi {
163
167
  query["Headers"] = request.headers;
164
168
  }
165
169
 
170
+ if (!$dara.isNull(request.ipPoolId)) {
171
+ query["IpPoolId"] = request.ipPoolId;
172
+ }
173
+
166
174
  if (!$dara.isNull(request.ownerId)) {
167
175
  query["OwnerId"] = request.ownerId;
168
176
  }
@@ -2675,6 +2683,10 @@ export default class Client extends OpenApi {
2675
2683
  query["AddressType"] = request.addressType;
2676
2684
  }
2677
2685
 
2686
+ if (!$dara.isNull(request.attachments)) {
2687
+ query["Attachments"] = request.attachments;
2688
+ }
2689
+
2678
2690
  if (!$dara.isNull(request.clickTrace)) {
2679
2691
  query["ClickTrace"] = request.clickTrace;
2680
2692
  }
@@ -2691,6 +2703,10 @@ export default class Client extends OpenApi {
2691
2703
  query["HtmlBody"] = request.htmlBody;
2692
2704
  }
2693
2705
 
2706
+ if (!$dara.isNull(request.ipPoolId)) {
2707
+ query["IpPoolId"] = request.ipPoolId;
2708
+ }
2709
+
2694
2710
  if (!$dara.isNull(request.ownerId)) {
2695
2711
  query["OwnerId"] = request.ownerId;
2696
2712
  }
@@ -2767,6 +2783,90 @@ export default class Client extends OpenApi {
2767
2783
  return await this.singleSendMailWithOptions(request, runtime);
2768
2784
  }
2769
2785
 
2786
+ async singleSendMailAdvance(request: $_model.SingleSendMailAdvanceRequest, runtime: $dara.RuntimeOptions): Promise<$_model.SingleSendMailResponse> {
2787
+ // Step 0: init client
2788
+ let accessKeyId = await this._credential.getAccessKeyId();
2789
+ let accessKeySecret = await this._credential.getAccessKeySecret();
2790
+ let securityToken = await this._credential.getSecurityToken();
2791
+ let credentialType = this._credential.getType();
2792
+ let openPlatformEndpoint = this._openPlatformEndpoint;
2793
+ if ($dara.isNull(openPlatformEndpoint)) {
2794
+ openPlatformEndpoint = "openplatform.aliyuncs.com";
2795
+ }
2796
+
2797
+ if ($dara.isNull(credentialType)) {
2798
+ credentialType = "access_key";
2799
+ }
2800
+
2801
+ let authConfig = new $OpenApiUtil.Config({
2802
+ accessKeyId: accessKeyId,
2803
+ accessKeySecret: accessKeySecret,
2804
+ securityToken: securityToken,
2805
+ type: credentialType,
2806
+ endpoint: openPlatformEndpoint,
2807
+ protocol: this._protocol,
2808
+ regionId: this._regionId,
2809
+ });
2810
+ let authClient = new OpenPlatform(authConfig);
2811
+ let authRequest = new $OpenPlatform.AuthorizeFileUploadRequest({
2812
+ product: "Dm",
2813
+ regionId: this._regionId,
2814
+ });
2815
+ let authResponse = new $OpenPlatform.AuthorizeFileUploadResponse({ });
2816
+ let ossConfig = new $OSS.Config({
2817
+ accessKeyId: accessKeyId,
2818
+ accessKeySecret: accessKeySecret,
2819
+ type: "access_key",
2820
+ protocol: this._protocol,
2821
+ regionId: this._regionId,
2822
+ });
2823
+ let ossClient : OSS = new OSS(ossConfig);
2824
+ let fileObj = new $FileForm.FileField({ });
2825
+ let ossHeader = new $OSS.PostObjectRequestHeader({ });
2826
+ let uploadRequest = new $OSS.PostObjectRequest({ });
2827
+ let ossRuntime = new $OSSUtil.RuntimeOptions({ });
2828
+ OpenApiUtil.convert(runtime, ossRuntime);
2829
+ let singleSendMailReq = new $_model.SingleSendMailRequest({ });
2830
+ OpenApiUtil.convert(request, singleSendMailReq);
2831
+ if (!$dara.isNull(request.attachments)) {
2832
+ let i0 : number = 0;
2833
+
2834
+ for(let item0 of request.attachments) {
2835
+ if (!$dara.isNull(item0.attachmentUrlObject)) {
2836
+ authResponse = await authClient.authorizeFileUploadWithOptions(authRequest, runtime);
2837
+ ossConfig.accessKeyId = authResponse.body.accessKeyId;
2838
+ ossConfig.endpoint = OpenApiUtil.getEndpoint(authResponse.body.endpoint, authResponse.body.useAccelerate, this._endpointType);
2839
+ ossClient = new OSS(ossConfig);
2840
+ fileObj = new $FileForm.FileField({
2841
+ filename: authResponse.body.objectKey,
2842
+ content: item0.attachmentUrlObject,
2843
+ contentType: "",
2844
+ });
2845
+ ossHeader = new $OSS.PostObjectRequestHeader({
2846
+ accessKeyId: authResponse.body.accessKeyId,
2847
+ policy: authResponse.body.encodedPolicy,
2848
+ signature: authResponse.body.signature,
2849
+ key: authResponse.body.objectKey,
2850
+ file: fileObj,
2851
+ successActionStatus: "201",
2852
+ });
2853
+ uploadRequest = new $OSS.PostObjectRequest({
2854
+ bucketName: authResponse.body.bucket,
2855
+ header: ossHeader,
2856
+ });
2857
+ await ossClient.postObject(uploadRequest, ossRuntime);
2858
+ let tmp : $_model.SingleSendMailRequestAttachments = singleSendMailReq.attachments[i0];
2859
+ tmp.attachmentUrl = `http://${authResponse.body.bucket}.${authResponse.body.endpoint}/${authResponse.body.objectKey}`;
2860
+ i0++;
2861
+ }
2862
+
2863
+ }
2864
+ }
2865
+
2866
+ let singleSendMailResp = await this.singleSendMailWithOptions(singleSendMailReq, runtime);
2867
+ return singleSendMailResp;
2868
+ }
2869
+
2770
2870
  /**
2771
2871
  * Update IP Protection API
2772
2872
  *
@@ -45,6 +45,7 @@ export class BatchSendMailRequest extends $dara.Model {
45
45
  * }
46
46
  */
47
47
  headers?: string;
48
+ ipPoolId?: string;
48
49
  ownerId?: number;
49
50
  /**
50
51
  * @remarks
@@ -125,6 +126,7 @@ export class BatchSendMailRequest extends $dara.Model {
125
126
  addressType: 'AddressType',
126
127
  clickTrace: 'ClickTrace',
127
128
  headers: 'Headers',
129
+ ipPoolId: 'IpPoolId',
128
130
  ownerId: 'OwnerId',
129
131
  receiversName: 'ReceiversName',
130
132
  replyAddress: 'ReplyAddress',
@@ -144,6 +146,7 @@ export class BatchSendMailRequest extends $dara.Model {
144
146
  addressType: 'number',
145
147
  clickTrace: 'string',
146
148
  headers: 'string',
149
+ ipPoolId: 'string',
147
150
  ownerId: 'number',
148
151
  receiversName: 'string',
149
152
  replyAddress: 'string',
@@ -19,6 +19,8 @@ export class QueryTaskByParamResponseBodyDataTask extends $dara.Model {
19
19
  * 2022-04-18T10:36Z
20
20
  */
21
21
  createTime?: string;
22
+ ipPoolId?: string;
23
+ ipPoolName?: string;
22
24
  /**
23
25
  * @remarks
24
26
  * Receiver\\"s name.
@@ -79,6 +81,8 @@ export class QueryTaskByParamResponseBodyDataTask extends $dara.Model {
79
81
  return {
80
82
  addressType: 'AddressType',
81
83
  createTime: 'CreateTime',
84
+ ipPoolId: 'IpPoolId',
85
+ ipPoolName: 'IpPoolName',
82
86
  receiversName: 'ReceiversName',
83
87
  requestCount: 'RequestCount',
84
88
  tagName: 'TagName',
@@ -93,6 +97,8 @@ export class QueryTaskByParamResponseBodyDataTask extends $dara.Model {
93
97
  return {
94
98
  addressType: 'string',
95
99
  createTime: 'string',
100
+ ipPoolId: 'string',
101
+ ipPoolName: 'string',
96
102
  receiversName: 'string',
97
103
  requestCount: 'string',
98
104
  tagName: 'string',
@@ -0,0 +1,238 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { SingleSendMailAdvanceRequestAttachments } from "./SingleSendMailAdvanceRequestAttachments";
4
+
5
+
6
+ export class SingleSendMailAdvanceRequest extends $dara.Model {
7
+ /**
8
+ * @remarks
9
+ * The sending address configured in the management console.
10
+ *
11
+ * This parameter is required.
12
+ *
13
+ * @example
14
+ * test***@example.net
15
+ */
16
+ accountName?: string;
17
+ /**
18
+ * @remarks
19
+ * Address type. Values:
20
+ *
21
+ * 0: Random account
22
+ *
23
+ * 1: Sending address
24
+ *
25
+ * This parameter is required.
26
+ *
27
+ * @example
28
+ * 1
29
+ */
30
+ addressType?: number;
31
+ attachments?: SingleSendMailAdvanceRequestAttachments[];
32
+ /**
33
+ * @remarks
34
+ * 1: Enable data tracking function
35
+ *
36
+ * 0 (default): Disable data tracking function.
37
+ *
38
+ * @example
39
+ * 0
40
+ */
41
+ clickTrace?: string;
42
+ /**
43
+ * @remarks
44
+ * Sender nickname, with a maximum length of 15 characters.
45
+ *
46
+ * For example, if the sender\\"s nickname is set to "Xiaohong" and the sending address is test***@example.net, the recipient will see the sending address as "Xiaohong" <test***@example.net>.
47
+ *
48
+ * @example
49
+ * Xiaohong
50
+ */
51
+ fromAlias?: string;
52
+ /**
53
+ * @remarks
54
+ * Standard fields that can currently be added to the email header include Message-ID, List-Unsubscribe, and List-Unsubscribe-Post. Standard fields will overwrite existing values in the email header, while non-standard fields need to start with X-User- and will be appended to the email header.
55
+ * Currently, up to 10 headers can be passed in JSON format, and both standard and non-standard fields must comply with the syntax requirements for headers.
56
+ *
57
+ * @example
58
+ * {
59
+ * "Message-ID": "<msg0001@example.com>",
60
+ * "X-User-UID1": "UID-1-000001",
61
+ * "X-User-UID2": "UID-2-000001"
62
+ * }
63
+ */
64
+ headers?: string;
65
+ /**
66
+ * @remarks
67
+ * Email HTML body, limited to 80K by the SDK. Note: HtmlBody and TextBody are for different types of email content, and one of them must be provided.
68
+ *
69
+ * @example
70
+ * body
71
+ */
72
+ htmlBody?: string;
73
+ ipPoolId?: string;
74
+ ownerId?: number;
75
+ /**
76
+ * @remarks
77
+ * Reply-to address
78
+ *
79
+ * @example
80
+ * test2***@example.net
81
+ */
82
+ replyAddress?: string;
83
+ /**
84
+ * @remarks
85
+ * Reply-to address nickname
86
+ *
87
+ * @example
88
+ * Xiaohong
89
+ */
90
+ replyAddressAlias?: string;
91
+ /**
92
+ * @remarks
93
+ * Whether to enable the reply-to address configured in the management console (the status must be verified). The value range is the string `true` or `false` (not a boolean value).
94
+ *
95
+ * This parameter is required.
96
+ *
97
+ * @example
98
+ * true
99
+ */
100
+ replyToAddress?: boolean;
101
+ resourceOwnerAccount?: string;
102
+ resourceOwnerId?: number;
103
+ /**
104
+ * @remarks
105
+ * Email subject, with a maximum length of 100 characters.
106
+ *
107
+ * This parameter is required.
108
+ *
109
+ * @example
110
+ * Subject
111
+ */
112
+ subject?: string;
113
+ /**
114
+ * @remarks
115
+ * A tag created in the email push console, used to categorize batches of emails sent. You can use tags to query the sending status of each batch. Additionally, if the email tracking feature is enabled, you must use an email tag when sending emails.
116
+ *
117
+ * @example
118
+ * test
119
+ */
120
+ tagName?: string;
121
+ /**
122
+ * @remarks
123
+ * Email text body, limited to 80K by the SDK. Note: HtmlBody and TextBody are for different types of email content, and one of them must be provided.
124
+ *
125
+ * @example
126
+ * body
127
+ */
128
+ textBody?: string;
129
+ /**
130
+ * @remarks
131
+ * Recipient addresses. Multiple email addresses can be separated by commas, with a maximum of 100 addresses (supports mailing lists).
132
+ *
133
+ * This parameter is required.
134
+ *
135
+ * @example
136
+ * test1***@example.net
137
+ */
138
+ toAddress?: string;
139
+ /**
140
+ * @remarks
141
+ * Filtering level. Refer to the [Unsubscribe Function Link Generation and Filtering Mechanism](https://help.aliyun.com/document_detail/2689048.html) document.
142
+ *
143
+ * disabled: No filtering
144
+ *
145
+ * default: Use the default strategy, bulk addresses use the sending address level filtering
146
+ *
147
+ * mailfrom: Sending address level filtering
148
+ *
149
+ * mailfrom_domain: Sending domain level filtering
150
+ *
151
+ * edm_id: Account level filtering
152
+ *
153
+ * @example
154
+ * mailfrom_domain
155
+ */
156
+ unSubscribeFilterLevel?: string;
157
+ /**
158
+ * @remarks
159
+ * Type of the generated unsubscribe link. Refer to the [Unsubscribe Function Link Generation and Filtering Mechanism](https://help.aliyun.com/document_detail/2689048.html) document.
160
+ *
161
+ * disabled: Do not generate
162
+ *
163
+ * default: Use the default strategy: Generate unsubscribe links for bulk-type sending addresses when sending to specific domains, such as those containing keywords like "gmail", "yahoo",
164
+ *
165
+ * "google", "aol.com", "hotmail",
166
+ *
167
+ * "outlook", "ymail.com", etc.
168
+ *
169
+ * zh-cn: Generate, for future content preparation
170
+ *
171
+ * en-us: Generate, for future content preparation
172
+ *
173
+ * @example
174
+ * default
175
+ */
176
+ unSubscribeLinkType?: string;
177
+ static names(): { [key: string]: string } {
178
+ return {
179
+ accountName: 'AccountName',
180
+ addressType: 'AddressType',
181
+ attachments: 'Attachments',
182
+ clickTrace: 'ClickTrace',
183
+ fromAlias: 'FromAlias',
184
+ headers: 'Headers',
185
+ htmlBody: 'HtmlBody',
186
+ ipPoolId: 'IpPoolId',
187
+ ownerId: 'OwnerId',
188
+ replyAddress: 'ReplyAddress',
189
+ replyAddressAlias: 'ReplyAddressAlias',
190
+ replyToAddress: 'ReplyToAddress',
191
+ resourceOwnerAccount: 'ResourceOwnerAccount',
192
+ resourceOwnerId: 'ResourceOwnerId',
193
+ subject: 'Subject',
194
+ tagName: 'TagName',
195
+ textBody: 'TextBody',
196
+ toAddress: 'ToAddress',
197
+ unSubscribeFilterLevel: 'UnSubscribeFilterLevel',
198
+ unSubscribeLinkType: 'UnSubscribeLinkType',
199
+ };
200
+ }
201
+
202
+ static types(): { [key: string]: any } {
203
+ return {
204
+ accountName: 'string',
205
+ addressType: 'number',
206
+ attachments: { 'type': 'array', 'itemType': SingleSendMailAdvanceRequestAttachments },
207
+ clickTrace: 'string',
208
+ fromAlias: 'string',
209
+ headers: 'string',
210
+ htmlBody: 'string',
211
+ ipPoolId: 'string',
212
+ ownerId: 'number',
213
+ replyAddress: 'string',
214
+ replyAddressAlias: 'string',
215
+ replyToAddress: 'boolean',
216
+ resourceOwnerAccount: 'string',
217
+ resourceOwnerId: 'number',
218
+ subject: 'string',
219
+ tagName: 'string',
220
+ textBody: 'string',
221
+ toAddress: 'string',
222
+ unSubscribeFilterLevel: 'string',
223
+ unSubscribeLinkType: 'string',
224
+ };
225
+ }
226
+
227
+ validate() {
228
+ if(Array.isArray(this.attachments)) {
229
+ $dara.Model.validateArray(this.attachments);
230
+ }
231
+ super.validate();
232
+ }
233
+
234
+ constructor(map?: { [key: string]: any }) {
235
+ super(map);
236
+ }
237
+ }
238
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import { Readable } from 'stream';
3
+ import * as $dara from '@darabonba/typescript';
4
+
5
+
6
+ export class SingleSendMailAdvanceRequestAttachments extends $dara.Model {
7
+ attachmentName?: string;
8
+ attachmentUrlObject?: Readable;
9
+ static names(): { [key: string]: string } {
10
+ return {
11
+ attachmentName: 'AttachmentName',
12
+ attachmentUrlObject: 'AttachmentUrl',
13
+ };
14
+ }
15
+
16
+ static types(): { [key: string]: any } {
17
+ return {
18
+ attachmentName: 'string',
19
+ attachmentUrlObject: 'Readable',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -1,5 +1,6 @@
1
1
  // This file is auto-generated, don't edit it
2
2
  import * as $dara from '@darabonba/typescript';
3
+ import { SingleSendMailRequestAttachments } from "./SingleSendMailRequestAttachments";
3
4
 
4
5
 
5
6
  export class SingleSendMailRequest extends $dara.Model {
@@ -27,6 +28,7 @@ export class SingleSendMailRequest extends $dara.Model {
27
28
  * 1
28
29
  */
29
30
  addressType?: number;
31
+ attachments?: SingleSendMailRequestAttachments[];
30
32
  /**
31
33
  * @remarks
32
34
  * 1: Enable data tracking function
@@ -68,6 +70,7 @@ export class SingleSendMailRequest extends $dara.Model {
68
70
  * body
69
71
  */
70
72
  htmlBody?: string;
73
+ ipPoolId?: string;
71
74
  ownerId?: number;
72
75
  /**
73
76
  * @remarks
@@ -175,10 +178,12 @@ export class SingleSendMailRequest extends $dara.Model {
175
178
  return {
176
179
  accountName: 'AccountName',
177
180
  addressType: 'AddressType',
181
+ attachments: 'Attachments',
178
182
  clickTrace: 'ClickTrace',
179
183
  fromAlias: 'FromAlias',
180
184
  headers: 'Headers',
181
185
  htmlBody: 'HtmlBody',
186
+ ipPoolId: 'IpPoolId',
182
187
  ownerId: 'OwnerId',
183
188
  replyAddress: 'ReplyAddress',
184
189
  replyAddressAlias: 'ReplyAddressAlias',
@@ -198,10 +203,12 @@ export class SingleSendMailRequest extends $dara.Model {
198
203
  return {
199
204
  accountName: 'string',
200
205
  addressType: 'number',
206
+ attachments: { 'type': 'array', 'itemType': SingleSendMailRequestAttachments },
201
207
  clickTrace: 'string',
202
208
  fromAlias: 'string',
203
209
  headers: 'string',
204
210
  htmlBody: 'string',
211
+ ipPoolId: 'string',
205
212
  ownerId: 'number',
206
213
  replyAddress: 'string',
207
214
  replyAddressAlias: 'string',
@@ -218,6 +225,9 @@ export class SingleSendMailRequest extends $dara.Model {
218
225
  }
219
226
 
220
227
  validate() {
228
+ if(Array.isArray(this.attachments)) {
229
+ $dara.Model.validateArray(this.attachments);
230
+ }
221
231
  super.validate();
222
232
  }
223
233
 
@@ -0,0 +1,30 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class SingleSendMailRequestAttachments extends $dara.Model {
6
+ attachmentName?: string;
7
+ attachmentUrl?: string;
8
+ static names(): { [key: string]: string } {
9
+ return {
10
+ attachmentName: 'AttachmentName',
11
+ attachmentUrl: 'AttachmentUrl',
12
+ };
13
+ }
14
+
15
+ static types(): { [key: string]: any } {
16
+ return {
17
+ attachmentName: 'string',
18
+ attachmentUrl: 'string',
19
+ };
20
+ }
21
+
22
+ validate() {
23
+ super.validate();
24
+ }
25
+
26
+ constructor(map?: { [key: string]: any }) {
27
+ super(map);
28
+ }
29
+ }
30
+
@@ -27,6 +27,8 @@ export { SenderStatisticsByTagNameAndBatchIDResponseBodyDataStat } from './Sende
27
27
  export { SenderStatisticsByTagNameAndBatchIDResponseBodyData } from './SenderStatisticsByTagNameAndBatchIdresponseBodyData';
28
28
  export { SenderStatisticsDetailByParamResponseBodyDataMailDetail } from './SenderStatisticsDetailByParamResponseBodyDataMailDetail';
29
29
  export { SenderStatisticsDetailByParamResponseBodyData } from './SenderStatisticsDetailByParamResponseBodyData';
30
+ export { SingleSendMailRequestAttachments } from './SingleSendMailRequestAttachments';
31
+ export { SingleSendMailAdvanceRequestAttachments } from './SingleSendMailAdvanceRequestAttachments';
30
32
  export { UpdateUserRequestUser } from './UpdateUserRequestUser';
31
33
  export { AddIpfilterRequest } from './AddIpfilterRequest';
32
34
  export { AddIpfilterResponseBody } from './AddIpfilterResponseBody';
@@ -154,6 +156,7 @@ export { SetSuppressionListLevelRequest } from './SetSuppressionListLevelRequest
154
156
  export { SetSuppressionListLevelResponseBody } from './SetSuppressionListLevelResponseBody';
155
157
  export { SetSuppressionListLevelResponse } from './SetSuppressionListLevelResponse';
156
158
  export { SingleSendMailRequest } from './SingleSendMailRequest';
159
+ export { SingleSendMailAdvanceRequest } from './SingleSendMailAdvanceRequest';
157
160
  export { SingleSendMailResponseBody } from './SingleSendMailResponseBody';
158
161
  export { SingleSendMailResponse } from './SingleSendMailResponse';
159
162
  export { UpdateIpProtectionRequest } from './UpdateIpProtectionRequest';