mailslurp_client 12.6.3 → 12.6.4
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bddde41f8ab29775db94ef1e31c3a37552769ad172df69f2fb44cf9b0f3ab4c2
|
4
|
+
data.tar.gz: 7463b34eb8741aad56a97d2b848462dc7a9017e0d205519a98309005b8a55dae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8190e5d71248099518777147806aaa29601e3c0990772c575df2246fed8408de2f9afc42202022956b1abd36144ea97325b3e493bc768d31e44b6b2ebab71c3
|
7
|
+
data.tar.gz: f39c090da88eabc415d311cbb43703f2e5806597c0e5e0e028d713e3d8aebb64cc46a8a3146dece6d90470d4ffed38e2a9338fd6dfae578f154444fe1c103dec
|
@@ -847,8 +847,8 @@ module MailSlurpClient
|
|
847
847
|
return data, status_code, headers
|
848
848
|
end
|
849
849
|
|
850
|
-
# List Inboxes and email
|
851
|
-
# List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended
|
850
|
+
# List Inboxes and email addresses
|
851
|
+
# List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended and allows paginated access using a limit and sort parameter.
|
852
852
|
# @param [Hash] opts the optional parameters
|
853
853
|
# @option opts [Integer] :size Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries. (default to 100)
|
854
854
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC (default to 'ASC')
|
@@ -858,8 +858,8 @@ module MailSlurpClient
|
|
858
858
|
data
|
859
859
|
end
|
860
860
|
|
861
|
-
# List Inboxes and email
|
862
|
-
# List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended
|
861
|
+
# List Inboxes and email addresses
|
862
|
+
# List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended and allows paginated access using a limit and sort parameter.
|
863
863
|
# @param [Hash] opts the optional parameters
|
864
864
|
# @option opts [Integer] :size Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries.
|
865
865
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC
|
@@ -26,6 +26,9 @@ module MailSlurpClient
|
|
26
26
|
# The body of the email message
|
27
27
|
attr_accessor :body
|
28
28
|
|
29
|
+
# An excerpt of the body of the email message
|
30
|
+
attr_accessor :body_excerpt
|
31
|
+
|
29
32
|
# A hash signature of the email message
|
30
33
|
attr_accessor :body_md5_hash
|
31
34
|
|
@@ -81,6 +84,7 @@ module MailSlurpClient
|
|
81
84
|
:'attachments' => :'attachments',
|
82
85
|
:'bcc' => :'bcc',
|
83
86
|
:'body' => :'body',
|
87
|
+
:'body_excerpt' => :'bodyExcerpt',
|
84
88
|
:'body_md5_hash' => :'bodyMD5Hash',
|
85
89
|
:'cc' => :'cc',
|
86
90
|
:'charset' => :'charset',
|
@@ -107,6 +111,7 @@ module MailSlurpClient
|
|
107
111
|
:'attachments' => :'Array<String>',
|
108
112
|
:'bcc' => :'Array<String>',
|
109
113
|
:'body' => :'String',
|
114
|
+
:'body_excerpt' => :'String',
|
110
115
|
:'body_md5_hash' => :'String',
|
111
116
|
:'cc' => :'Array<String>',
|
112
117
|
:'charset' => :'String',
|
@@ -167,6 +172,10 @@ module MailSlurpClient
|
|
167
172
|
self.body = attributes[:'body']
|
168
173
|
end
|
169
174
|
|
175
|
+
if attributes.key?(:'body_excerpt')
|
176
|
+
self.body_excerpt = attributes[:'body_excerpt']
|
177
|
+
end
|
178
|
+
|
170
179
|
if attributes.key?(:'body_md5_hash')
|
171
180
|
self.body_md5_hash = attributes[:'body_md5_hash']
|
172
181
|
end
|
@@ -260,6 +269,7 @@ module MailSlurpClient
|
|
260
269
|
attachments == o.attachments &&
|
261
270
|
bcc == o.bcc &&
|
262
271
|
body == o.body &&
|
272
|
+
body_excerpt == o.body_excerpt &&
|
263
273
|
body_md5_hash == o.body_md5_hash &&
|
264
274
|
cc == o.cc &&
|
265
275
|
charset == o.charset &&
|
@@ -287,7 +297,7 @@ module MailSlurpClient
|
|
287
297
|
# Calculates hash code according to all attributes.
|
288
298
|
# @return [Integer] Hash code
|
289
299
|
def hash
|
290
|
-
[analysis, attachments, bcc, body, body_md5_hash, cc, charset, created_at, from, headers, id, inbox_id, is_html, read, reply_to, subject, team_access, to, updated_at, user_id].hash
|
300
|
+
[analysis, attachments, bcc, body, body_excerpt, body_md5_hash, cc, charset, created_at, from, headers, id, inbox_id, is_html, read, reply_to, subject, team_access, to, updated_at, user_id].hash
|
291
301
|
end
|
292
302
|
|
293
303
|
# Builds the object from hash
|
@@ -19,6 +19,8 @@ module MailSlurpClient
|
|
19
19
|
|
20
20
|
attr_accessor :bcc
|
21
21
|
|
22
|
+
attr_accessor :body_excerpt
|
23
|
+
|
22
24
|
attr_accessor :body_md5_hash
|
23
25
|
|
24
26
|
attr_accessor :cc
|
@@ -44,6 +46,7 @@ module MailSlurpClient
|
|
44
46
|
{
|
45
47
|
:'attachments' => :'attachments',
|
46
48
|
:'bcc' => :'bcc',
|
49
|
+
:'body_excerpt' => :'bodyExcerpt',
|
47
50
|
:'body_md5_hash' => :'bodyMD5Hash',
|
48
51
|
:'cc' => :'cc',
|
49
52
|
:'created_at' => :'createdAt',
|
@@ -62,6 +65,7 @@ module MailSlurpClient
|
|
62
65
|
{
|
63
66
|
:'attachments' => :'Array<String>',
|
64
67
|
:'bcc' => :'Array<String>',
|
68
|
+
:'body_excerpt' => :'String',
|
65
69
|
:'body_md5_hash' => :'String',
|
66
70
|
:'cc' => :'Array<String>',
|
67
71
|
:'created_at' => :'DateTime',
|
@@ -108,6 +112,10 @@ module MailSlurpClient
|
|
108
112
|
end
|
109
113
|
end
|
110
114
|
|
115
|
+
if attributes.key?(:'body_excerpt')
|
116
|
+
self.body_excerpt = attributes[:'body_excerpt']
|
117
|
+
end
|
118
|
+
|
111
119
|
if attributes.key?(:'body_md5_hash')
|
112
120
|
self.body_md5_hash = attributes[:'body_md5_hash']
|
113
121
|
end
|
@@ -193,6 +201,7 @@ module MailSlurpClient
|
|
193
201
|
self.class == o.class &&
|
194
202
|
attachments == o.attachments &&
|
195
203
|
bcc == o.bcc &&
|
204
|
+
body_excerpt == o.body_excerpt &&
|
196
205
|
body_md5_hash == o.body_md5_hash &&
|
197
206
|
cc == o.cc &&
|
198
207
|
created_at == o.created_at &&
|
@@ -214,7 +223,7 @@ module MailSlurpClient
|
|
214
223
|
# Calculates hash code according to all attributes.
|
215
224
|
# @return [Integer] Hash code
|
216
225
|
def hash
|
217
|
-
[attachments, bcc, body_md5_hash, cc, created_at, from, id, inbox_id, read, subject, team_access, to].hash
|
226
|
+
[attachments, bcc, body_excerpt, body_md5_hash, cc, created_at, from, id, inbox_id, read, subject, team_access, to].hash
|
218
227
|
end
|
219
228
|
|
220
229
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailslurp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.6.
|
4
|
+
version: 12.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Create emails addresses in Ruby then send and receive real emails and
|
14
14
|
attachments. See https://www.mailslurp.com/docs/ruby/ for full Ruby documentation.
|