-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcypress.d.ts
228 lines (202 loc) · 6.71 KB
/
cypress.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import type { Message, MessageSummary, MessagesSummary, SendEmailOptions, SpamAssassin } from "./src/types";
/// <reference types="cypress" />
declare global {
namespace Cypress {
interface Chainable {
/**
* Get all mails from the mailbox.
* @param start
* @param limit
*/
mailpitGetAllMails(start?: number, limit?: number): Chainable<MessagesSummary>;
/**
* Search all mails from the mailbox using query.
* @param query {@link https://mailpit.axllent.org/docs/usage/search-filters/ | Query Refrence}
* @param start
* @param limit
*/
mailpitSearchEmails(query: string, start?: number, limit?: number): Chainable<MessagesSummary>;
/**
* Get all mails from the mailbox using subject.
* @param subject
* @param start
* @param limit
*/
mailpitGetEmailsBySubject(subject: string, start?: number, limit?: number): Chainable<MessagesSummary>;
/**
* Check if mailpit has any email with the search query
* Automatically retries until the condition is met or timeout is reached.
* @param query {@link https://mailpit.axllent.org/docs/usage/search-filters/ | Query Refrence}
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitHasEmailsBySearch(
query: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Check if mailpit has any email with the search query
* Automatically retries until the condition is met or timeout is reached.
* @param query {@link https://mailpit.axllent.org/docs/usage/search-filters/ | Query Refrence}
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitNotHasEmailsBySearch(
query: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Check if mails have emails using the subject.
* Automatically retries until the condition is met or timeout is reached.
* @param subject
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitHasEmailsBySubject(
subject: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Check if mails do not have emails using the subject.
* Automatically retries until the condition is met or timeout is reached.
* @param subject
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitNotHasEmailsBySubject(
subject: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Get all mails from the mailbox using the recipient's email address.
* @param email
* @param start
* @param limit
*/
mailpitGetEmailsByTo(email: string, start?: number, limit?: number): Chainable<MessagesSummary>;
/**
* Check if mails have emails sent to a specific email address.
* Automatically retries until the condition is met or timeout is reached.
* @param email
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitHasEmailsByTo(
email: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Check if mails do not have emails sent to a specific email address.
* Automatically retries until the condition is met or timeout is reached.
* @param email
* @param start
* @param limit
* @param options Optional. Object with `timeout` and `interval` properties.
*/
mailpitNotHasEmailsByTo(
email: string,
start?: number,
limit?: number,
options?: { timeout?: number; interval?: number },
): Chainable;
/**
* Get the mail text body.
* @param message
*/
mailpitGetMailTextBody(message?: Message): Chainable<string>;
/**
* Get the mail HTML body.
* @param message
*/
mailpitGetMailHTMlBody(message?: Message): Chainable<string>;
/**
* Get the mail's "From" address.
* @param message
*/
mailpitGetFromAddress(message?: Message): Chainable<string>;
/**
* Get the attachments of the mail.
* @param message
*/
mailpitGetAttachments(message?: Message): Chainable<string>;
/**
* Get the mail SpamAssassin summary.
* @param message
*/
mailpitGetMailSpamAssassinSummary(message?: Message): Chainable<SpamAssassin>;
/**
* Get the mail SpamAssassin summary.
* This is a deprecated method for backward compatibility.
* @param message
* @deprecated Use `mailpitGetMailSpamAssassinSummary` instead.
*/
mailpitGetMailSpamAssainSummary(message?: Message): Chainable<SpamAssassin>;
/**
* Get the recipient addresses of the mail.
* @param message
*/
mailpitGetRecipientAddress(message?: Message): Chainable<Array<string>>;
/**
* Get the subject of the mail.
* @param message
*/
mailpitGetSubject(message?: Message): Chainable<string>;
/**
* Get the mail by ID.
* If ID is not provided, it will get the latest email.
* @param id
*/
mailpitGetMail(id?: string): Chainable<Message>;
/**
* Send an email.
* If options are not provided, it will send a default email.
* @param options SendEmailOptions
*/
mailpitSendMail(options?: SendEmailOptions): Chainable<{ ID: string }>;
/**
* Delete all emails from the mailbox.
*/
mailpitDeleteAllEmails(): Chainable<Response<void>>;
/**
* Delete emails from the mailbox based on search query.
* @param query {@link https://mailpit.axllent.org/docs/usage/search-filters/ | Query Refrence}
*/
mailpitDeleteEmailsBySearch(query: string): Chainable<Response<void>>;
/**
* Set the read status of one or more emails to read.
* @param messages Array of Message or MessageSummary objects to mark as read
*/
mailpitSetStatusAsRead(messages?: Message[] | Message | MessageSummary[] | MessageSummary | null): Chainable<string>;
/**
* Set the read status of one or more emails to unread.
* @param messages Array of Message or MessageSummary objects to mark as unread
*/
mailpitSetStatusAsUnRead(
messages?: Message[] | Message | MessageSummary[] | MessageSummary | null,
): Chainable<string>;
/**
* Set the read status of all emails to read.
*/
mailpitSetAllEmailStatusAsRead(): Chainable<string>;
/**
* Set the read status of all emails to unread.
*/
mailpitSetAllEmailStatusAsUnRead(): Chainable<string>;
}
}
}