Skip to content

Commit 34bb47a

Browse files
committed
remove-punycode
1 parent cc4e17c commit 34bb47a

File tree

2,649 files changed

+535340
-48630
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,649 files changed

+535340
-48630
lines changed

dist/generated/apis/AliasControllerApi.d.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MailSlurp API
3-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
3+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
44
*
55
* The version of the OpenAPI document: 6.5.2
66
* Contact: [email protected]
@@ -10,7 +10,7 @@
1010
* Do not edit the class manually.
1111
*/
1212
import * as runtime from '../runtime';
13-
import { AliasDto, CreateAliasOptions, PageAlias, PageEmailProjection, PageThreadProjection, ReplyToAliasEmailOptions, SendEmailOptions, SentEmailDto, ThreadProjection, UpdateAliasOptions } from '../models';
13+
import { AliasDto, AliasThreadProjection, CreateAliasOptions, PageAlias, PageAliasThreadProjection, PageEmailProjection, ReplyToAliasEmailOptions, SendEmailOptions, SentEmailDto, UpdateAliasOptions } from '../models';
1414
export interface CreateAliasRequest {
1515
createAliasOptions: CreateAliasOptions;
1616
}
@@ -113,12 +113,12 @@ export declare class AliasControllerApi extends runtime.BaseAPI {
113113
* Returns threads created for an email alias in paginated form
114114
* Get threads created for an alias
115115
*/
116-
getAliasThreadsRaw(requestParameters: GetAliasThreadsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<PageThreadProjection>>;
116+
getAliasThreadsRaw(requestParameters: GetAliasThreadsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<PageAliasThreadProjection>>;
117117
/**
118118
* Returns threads created for an email alias in paginated form
119119
* Get threads created for an alias
120120
*/
121-
getAliasThreads(requestParameters: GetAliasThreadsRequest, initOverrides?: RequestInit): Promise<PageThreadProjection>;
121+
getAliasThreads(requestParameters: GetAliasThreadsRequest, initOverrides?: RequestInit): Promise<PageAliasThreadProjection>;
122122
/**
123123
* Get all email aliases in paginated form
124124
* Get all email aliases you have created
@@ -133,22 +133,22 @@ export declare class AliasControllerApi extends runtime.BaseAPI {
133133
* Return a thread associated with an alias
134134
* Get a thread
135135
*/
136-
getThreadRaw(requestParameters: GetThreadRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<ThreadProjection>>;
136+
getThreadRaw(requestParameters: GetThreadRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AliasThreadProjection>>;
137137
/**
138138
* Return a thread associated with an alias
139139
* Get a thread
140140
*/
141-
getThread(requestParameters: GetThreadRequest, initOverrides?: RequestInit): Promise<ThreadProjection>;
141+
getThread(requestParameters: GetThreadRequest, initOverrides?: RequestInit): Promise<AliasThreadProjection>;
142142
/**
143143
* Returns threads created for all aliases in paginated form
144144
* Get all threads
145145
*/
146-
getThreadsPaginatedRaw(requestParameters: GetThreadsPaginatedRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<PageThreadProjection>>;
146+
getThreadsPaginatedRaw(requestParameters: GetThreadsPaginatedRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<PageAliasThreadProjection>>;
147147
/**
148148
* Returns threads created for all aliases in paginated form
149149
* Get all threads
150150
*/
151-
getThreadsPaginated(requestParameters: GetThreadsPaginatedRequest, initOverrides?: RequestInit): Promise<PageThreadProjection>;
151+
getThreadsPaginated(requestParameters: GetThreadsPaginatedRequest, initOverrides?: RequestInit): Promise<PageAliasThreadProjection>;
152152
/**
153153
* Send the reply to the email sender or reply-to and include same subject cc bcc etc. Reply to an email and the contents will be sent with the existing subject to the emails `to`, `cc`, and `bcc`.
154154
* Reply to an email

dist/generated/apis/AliasControllerApi.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* eslint-disable */
44
/**
55
* MailSlurp API
6-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
6+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
77
*
88
* The version of the OpenAPI document: 6.5.2
99
* Contact: [email protected]
@@ -360,7 +360,7 @@ var AliasControllerApi = /** @class */ (function (_super) {
360360
case 1:
361361
response = _a.sent();
362362
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) {
363-
return (0, models_1.PageThreadProjectionFromJSON)(jsonValue);
363+
return (0, models_1.PageAliasThreadProjectionFromJSON)(jsonValue);
364364
})];
365365
}
366366
});
@@ -478,7 +478,7 @@ var AliasControllerApi = /** @class */ (function (_super) {
478478
case 1:
479479
response = _a.sent();
480480
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) {
481-
return (0, models_1.ThreadProjectionFromJSON)(jsonValue);
481+
return (0, models_1.AliasThreadProjectionFromJSON)(jsonValue);
482482
})];
483483
}
484484
});
@@ -541,7 +541,7 @@ var AliasControllerApi = /** @class */ (function (_super) {
541541
case 1:
542542
response = _a.sent();
543543
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) {
544-
return (0, models_1.PageThreadProjectionFromJSON)(jsonValue);
544+
return (0, models_1.PageAliasThreadProjectionFromJSON)(jsonValue);
545545
})];
546546
}
547547
});

dist/generated/apis/AttachmentControllerApi.d.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MailSlurp API
3-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
3+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
44
*
55
* The version of the OpenAPI document: 6.5.2
66
* Contact: [email protected]
@@ -10,7 +10,7 @@
1010
* Do not edit the class manually.
1111
*/
1212
import * as runtime from '../runtime';
13-
import { AttachmentEntity, AttachmentMetaData, DownloadAttachmentDto, InlineObject, PageAttachmentEntity, UploadAttachmentOptions } from '../models';
13+
import { AttachmentEntityDto, AttachmentMetaData, DownloadAttachmentDto, InlineObject, PageAttachmentEntity, UploadAttachmentOptions } from '../models';
1414
export interface DeleteAttachmentRequest {
1515
attachmentId: string;
1616
}
@@ -43,32 +43,40 @@ export interface UploadAttachmentBytesRequest {
4343
contentType2?: string;
4444
contentId?: string;
4545
filename?: string;
46+
fileSize?: number;
4647
filename2?: string;
4748
}
4849
export interface UploadMultipartFormRequest {
4950
contentId?: string;
5051
contentType?: string;
5152
filename?: string;
53+
contentTypeHeader?: string;
5254
xFilename?: string;
55+
xFilenameRaw?: string;
56+
xFilesize?: number;
5357
inlineObject?: InlineObject;
5458
}
5559
/**
5660
*
5761
*/
5862
export declare class AttachmentControllerApi extends runtime.BaseAPI {
5963
/**
64+
* Delete all attachments
6065
* Delete all attachments
6166
*/
6267
deleteAllAttachmentsRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
6368
/**
69+
* Delete all attachments
6470
* Delete all attachments
6571
*/
6672
deleteAllAttachments(initOverrides?: RequestInit): Promise<void>;
6773
/**
74+
* Delete an attachment
6875
* Delete an attachment
6976
*/
7077
deleteAttachmentRaw(requestParameters: DeleteAttachmentRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
7178
/**
79+
* Delete an attachment
7280
* Delete an attachment
7381
*/
7482
deleteAttachment(requestParameters: DeleteAttachmentRequest, initOverrides?: RequestInit): Promise<void>;
@@ -95,11 +103,11 @@ export declare class AttachmentControllerApi extends runtime.BaseAPI {
95103
/**
96104
* Get an attachment entity
97105
*/
98-
getAttachmentRaw(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AttachmentEntity>>;
106+
getAttachmentRaw(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AttachmentEntityDto>>;
99107
/**
100108
* Get an attachment entity
101109
*/
102-
getAttachment(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit): Promise<AttachmentEntity>;
110+
getAttachment(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit): Promise<AttachmentEntityDto>;
103111
/**
104112
* Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment.
105113
* Get email attachment metadata information

dist/generated/apis/AttachmentControllerApi.js

+19-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* eslint-disable */
44
/**
55
* MailSlurp API
6-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
6+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
77
*
88
* The version of the OpenAPI document: 6.5.2
99
* Contact: [email protected]
@@ -99,6 +99,7 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
9999
return _super !== null && _super.apply(this, arguments) || this;
100100
}
101101
/**
102+
* Delete all attachments
102103
* Delete all attachments
103104
*/
104105
AttachmentControllerApi.prototype.deleteAllAttachmentsRaw = function (initOverrides) {
@@ -126,6 +127,7 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
126127
});
127128
};
128129
/**
130+
* Delete all attachments
129131
* Delete all attachments
130132
*/
131133
AttachmentControllerApi.prototype.deleteAllAttachments = function (initOverrides) {
@@ -141,6 +143,7 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
141143
});
142144
};
143145
/**
146+
* Delete an attachment
144147
* Delete an attachment
145148
*/
146149
AttachmentControllerApi.prototype.deleteAttachmentRaw = function (requestParameters, initOverrides) {
@@ -172,6 +175,7 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
172175
});
173176
};
174177
/**
178+
* Delete an attachment
175179
* Delete an attachment
176180
*/
177181
AttachmentControllerApi.prototype.deleteAttachment = function (requestParameters, initOverrides) {
@@ -315,7 +319,7 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
315319
case 1:
316320
response = _a.sent();
317321
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) {
318-
return (0, models_1.AttachmentEntityFromJSON)(jsonValue);
322+
return (0, models_1.AttachmentEntityDtoFromJSON)(jsonValue);
319323
})];
320324
}
321325
});
@@ -528,6 +532,9 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
528532
if (requestParameters.filename !== undefined) {
529533
queryParameters['filename'] = requestParameters.filename;
530534
}
535+
if (requestParameters.fileSize !== undefined) {
536+
queryParameters['fileSize'] = requestParameters.fileSize;
537+
}
531538
headerParameters = {};
532539
if (requestParameters.contentType !== undefined &&
533540
requestParameters.contentType !== null) {
@@ -589,9 +596,19 @@ var AttachmentControllerApi = /** @class */ (function (_super) {
589596
if (requestParameters.filename !== undefined) {
590597
queryParameters['filename'] = requestParameters.filename;
591598
}
599+
if (requestParameters.contentTypeHeader !== undefined) {
600+
queryParameters['contentTypeHeader'] =
601+
requestParameters.contentTypeHeader;
602+
}
592603
if (requestParameters.xFilename !== undefined) {
593604
queryParameters['x-filename'] = requestParameters.xFilename;
594605
}
606+
if (requestParameters.xFilenameRaw !== undefined) {
607+
queryParameters['x-filename-raw'] = requestParameters.xFilenameRaw;
608+
}
609+
if (requestParameters.xFilesize !== undefined) {
610+
queryParameters['x-filesize'] = requestParameters.xFilesize;
611+
}
595612
headerParameters = {};
596613
headerParameters['Content-Type'] = 'application/json';
597614
if (this.configuration && this.configuration.apiKey) {

dist/generated/apis/BounceControllerApi.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MailSlurp API
3-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
3+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
44
*
55
* The version of the OpenAPI document: 6.5.2
66
* Contact: [email protected]

dist/generated/apis/BounceControllerApi.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* eslint-disable */
44
/**
55
* MailSlurp API
6-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
6+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
77
*
88
* The version of the OpenAPI document: 6.5.2
99
* Contact: [email protected]

dist/generated/apis/BulkActionsControllerApi.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MailSlurp API
3-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
3+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
44
*
55
* The version of the OpenAPI document: 6.5.2
66
* Contact: [email protected]

dist/generated/apis/BulkActionsControllerApi.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* eslint-disable */
44
/**
55
* MailSlurp API
6-
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
6+
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
77
*
88
* The version of the OpenAPI document: 6.5.2
99
* Contact: [email protected]

0 commit comments

Comments
 (0)