mailslurp_client 15.17.4 → 15.17.6
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 +4 -4
- data/README.md +13 -13
- data/SECURITY.md +1 -1
- data/SUPPORT.md +2 -2
- data/lib/mailslurp_client/api/domain_controller_api.rb +59 -0
- data/lib/mailslurp_client/api/inbox_ruleset_controller_api.rb +6 -10
- data/lib/mailslurp_client/api/phone_controller_api.rb +1 -1
- data/lib/mailslurp_client/models/alias_projection.rb +15 -15
- data/lib/mailslurp_client/models/attachment_projection.rb +19 -19
- data/lib/mailslurp_client/models/create_emergency_address_options.rb +2 -2
- data/lib/mailslurp_client/models/domain_dto.rb +27 -1
- data/lib/mailslurp_client/models/domain_issues_dto.rb +211 -0
- data/lib/mailslurp_client/models/domain_preview.rb +18 -4
- data/lib/mailslurp_client/models/email_projection.rb +10 -10
- data/lib/mailslurp_client/models/emergency_address.rb +2 -2
- data/lib/mailslurp_client/models/emergency_address_dto.rb +2 -2
- data/lib/mailslurp_client/models/inbox_forwarder_event_projection.rb +11 -11
- data/lib/mailslurp_client/models/inbox_replier_event_projection.rb +23 -23
- data/lib/mailslurp_client/models/inbox_ruleset_dto.rb +0 -5
- data/lib/mailslurp_client/models/missed_email_projection.rb +11 -11
- data/lib/mailslurp_client/models/phone_number_dto.rb +2 -2
- data/lib/mailslurp_client/models/phone_number_projection.rb +2 -2
- data/lib/mailslurp_client/models/phone_plan_dto.rb +2 -2
- data/lib/mailslurp_client/models/sent_email_projection.rb +15 -15
- data/lib/mailslurp_client/models/thread_projection.rb +20 -20
- data/lib/mailslurp_client/models/tracking_pixel_projection.rb +13 -13
- data/lib/mailslurp_client/version.rb +1 -1
- data/lib/mailslurp_client.rb +1 -0
- metadata +4 -3
@@ -19,10 +19,10 @@ module MailSlurpClient
|
|
19
19
|
|
20
20
|
attr_accessor :from
|
21
21
|
|
22
|
-
attr_accessor :subject
|
23
|
-
|
24
22
|
attr_accessor :user_id
|
25
23
|
|
24
|
+
attr_accessor :subject
|
25
|
+
|
26
26
|
attr_accessor :created_at
|
27
27
|
|
28
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -30,8 +30,8 @@ module MailSlurpClient
|
|
30
30
|
{
|
31
31
|
:'id' => :'id',
|
32
32
|
:'from' => :'from',
|
33
|
-
:'subject' => :'subject',
|
34
33
|
:'user_id' => :'userId',
|
34
|
+
:'subject' => :'subject',
|
35
35
|
:'created_at' => :'createdAt'
|
36
36
|
}
|
37
37
|
end
|
@@ -41,8 +41,8 @@ module MailSlurpClient
|
|
41
41
|
{
|
42
42
|
:'id' => :'String',
|
43
43
|
:'from' => :'String',
|
44
|
-
:'subject' => :'String',
|
45
44
|
:'user_id' => :'String',
|
45
|
+
:'subject' => :'String',
|
46
46
|
:'created_at' => :'DateTime'
|
47
47
|
}
|
48
48
|
end
|
@@ -51,8 +51,8 @@ module MailSlurpClient
|
|
51
51
|
def self.openapi_nullable
|
52
52
|
Set.new([
|
53
53
|
:'from',
|
54
|
-
:'subject',
|
55
54
|
:'user_id',
|
55
|
+
:'subject',
|
56
56
|
])
|
57
57
|
end
|
58
58
|
|
@@ -79,14 +79,14 @@ module MailSlurpClient
|
|
79
79
|
self.from = attributes[:'from']
|
80
80
|
end
|
81
81
|
|
82
|
-
if attributes.key?(:'subject')
|
83
|
-
self.subject = attributes[:'subject']
|
84
|
-
end
|
85
|
-
|
86
82
|
if attributes.key?(:'user_id')
|
87
83
|
self.user_id = attributes[:'user_id']
|
88
84
|
end
|
89
85
|
|
86
|
+
if attributes.key?(:'subject')
|
87
|
+
self.subject = attributes[:'subject']
|
88
|
+
end
|
89
|
+
|
90
90
|
if attributes.key?(:'created_at')
|
91
91
|
self.created_at = attributes[:'created_at']
|
92
92
|
end
|
@@ -122,8 +122,8 @@ module MailSlurpClient
|
|
122
122
|
self.class == o.class &&
|
123
123
|
id == o.id &&
|
124
124
|
from == o.from &&
|
125
|
-
subject == o.subject &&
|
126
125
|
user_id == o.user_id &&
|
126
|
+
subject == o.subject &&
|
127
127
|
created_at == o.created_at
|
128
128
|
end
|
129
129
|
|
@@ -136,7 +136,7 @@ module MailSlurpClient
|
|
136
136
|
# Calculates hash code according to all attributes.
|
137
137
|
# @return [Integer] Hash code
|
138
138
|
def hash
|
139
|
-
[id, from,
|
139
|
+
[id, from, user_id, subject, created_at].hash
|
140
140
|
end
|
141
141
|
|
142
142
|
# Builds the object from hash
|
@@ -184,7 +184,7 @@ module MailSlurpClient
|
|
184
184
|
return false if @user_id.nil?
|
185
185
|
return false if @phone_number.nil?
|
186
186
|
return false if @phone_country.nil?
|
187
|
-
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
187
|
+
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
188
188
|
return false unless phone_country_validator.valid?(@phone_country)
|
189
189
|
return false if @phone_plan.nil?
|
190
190
|
return false if @created_at.nil?
|
@@ -195,7 +195,7 @@ module MailSlurpClient
|
|
195
195
|
# Custom attribute writer method checking allowed values (enum).
|
196
196
|
# @param [Object] phone_country Object to be assigned
|
197
197
|
def phone_country=(phone_country)
|
198
|
-
validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
198
|
+
validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
199
199
|
unless validator.valid?(phone_country)
|
200
200
|
fail ArgumentError, "invalid value for \"phone_country\", must be one of #{validator.allowable_values}."
|
201
201
|
end
|
@@ -146,7 +146,7 @@ module MailSlurpClient
|
|
146
146
|
return false if @created_at.nil?
|
147
147
|
return false if @phone_number.nil?
|
148
148
|
return false if @phone_country.nil?
|
149
|
-
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
149
|
+
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
150
150
|
return false unless phone_country_validator.valid?(@phone_country)
|
151
151
|
true
|
152
152
|
end
|
@@ -154,7 +154,7 @@ module MailSlurpClient
|
|
154
154
|
# Custom attribute writer method checking allowed values (enum).
|
155
155
|
# @param [Object] phone_country Object to be assigned
|
156
156
|
def phone_country=(phone_country)
|
157
|
-
validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
157
|
+
validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
158
158
|
unless validator.valid?(phone_country)
|
159
159
|
fail ArgumentError, "invalid value for \"phone_country\", must be one of #{validator.allowable_values}."
|
160
160
|
end
|
@@ -131,7 +131,7 @@ module MailSlurpClient
|
|
131
131
|
return false if @id.nil?
|
132
132
|
return false if @user_id.nil?
|
133
133
|
return false if @phone_country.nil?
|
134
|
-
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
134
|
+
phone_country_validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
135
135
|
return false unless phone_country_validator.valid?(@phone_country)
|
136
136
|
return false if @created_at.nil?
|
137
137
|
true
|
@@ -140,7 +140,7 @@ module MailSlurpClient
|
|
140
140
|
# Custom attribute writer method checking allowed values (enum).
|
141
141
|
# @param [Object] phone_country Object to be assigned
|
142
142
|
def phone_country=(phone_country)
|
143
|
-
validator = EnumAttributeValidator.new('String', ["US", "GB"])
|
143
|
+
validator = EnumAttributeValidator.new('String', ["US", "GB", "AU"])
|
144
144
|
unless validator.valid?(phone_country)
|
145
145
|
fail ArgumentError, "invalid value for \"phone_country\", must be one of #{validator.allowable_values}."
|
146
146
|
end
|
@@ -21,12 +21,12 @@ module MailSlurpClient
|
|
21
21
|
|
22
22
|
attr_accessor :subject
|
23
23
|
|
24
|
+
attr_accessor :inbox_id
|
25
|
+
|
24
26
|
attr_accessor :user_id
|
25
27
|
|
26
28
|
attr_accessor :attachments
|
27
29
|
|
28
|
-
attr_accessor :inbox_id
|
29
|
-
|
30
30
|
attr_accessor :created_at
|
31
31
|
|
32
32
|
attr_accessor :to
|
@@ -45,9 +45,9 @@ module MailSlurpClient
|
|
45
45
|
:'id' => :'id',
|
46
46
|
:'from' => :'from',
|
47
47
|
:'subject' => :'subject',
|
48
|
+
:'inbox_id' => :'inboxId',
|
48
49
|
:'user_id' => :'userId',
|
49
50
|
:'attachments' => :'attachments',
|
50
|
-
:'inbox_id' => :'inboxId',
|
51
51
|
:'created_at' => :'createdAt',
|
52
52
|
:'to' => :'to',
|
53
53
|
:'bcc' => :'bcc',
|
@@ -63,9 +63,9 @@ module MailSlurpClient
|
|
63
63
|
:'id' => :'String',
|
64
64
|
:'from' => :'String',
|
65
65
|
:'subject' => :'String',
|
66
|
+
:'inbox_id' => :'String',
|
66
67
|
:'user_id' => :'String',
|
67
68
|
:'attachments' => :'Array<String>',
|
68
|
-
:'inbox_id' => :'String',
|
69
69
|
:'created_at' => :'DateTime',
|
70
70
|
:'to' => :'Array<String>',
|
71
71
|
:'bcc' => :'Array<String>',
|
@@ -108,6 +108,10 @@ module MailSlurpClient
|
|
108
108
|
self.subject = attributes[:'subject']
|
109
109
|
end
|
110
110
|
|
111
|
+
if attributes.key?(:'inbox_id')
|
112
|
+
self.inbox_id = attributes[:'inbox_id']
|
113
|
+
end
|
114
|
+
|
111
115
|
if attributes.key?(:'user_id')
|
112
116
|
self.user_id = attributes[:'user_id']
|
113
117
|
end
|
@@ -118,10 +122,6 @@ module MailSlurpClient
|
|
118
122
|
end
|
119
123
|
end
|
120
124
|
|
121
|
-
if attributes.key?(:'inbox_id')
|
122
|
-
self.inbox_id = attributes[:'inbox_id']
|
123
|
-
end
|
124
|
-
|
125
125
|
if attributes.key?(:'created_at')
|
126
126
|
self.created_at = attributes[:'created_at']
|
127
127
|
end
|
@@ -161,6 +161,10 @@ module MailSlurpClient
|
|
161
161
|
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
162
162
|
end
|
163
163
|
|
164
|
+
if @inbox_id.nil?
|
165
|
+
invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
|
166
|
+
end
|
167
|
+
|
164
168
|
if @user_id.nil?
|
165
169
|
invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
|
166
170
|
end
|
@@ -169,10 +173,6 @@ module MailSlurpClient
|
|
169
173
|
invalid_properties.push('invalid value for "attachments", attachments cannot be nil.')
|
170
174
|
end
|
171
175
|
|
172
|
-
if @inbox_id.nil?
|
173
|
-
invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
|
174
|
-
end
|
175
|
-
|
176
176
|
if @created_at.nil?
|
177
177
|
invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
|
178
178
|
end
|
@@ -200,9 +200,9 @@ module MailSlurpClient
|
|
200
200
|
# @return true if the model is valid
|
201
201
|
def valid?
|
202
202
|
return false if @id.nil?
|
203
|
+
return false if @inbox_id.nil?
|
203
204
|
return false if @user_id.nil?
|
204
205
|
return false if @attachments.nil?
|
205
|
-
return false if @inbox_id.nil?
|
206
206
|
return false if @created_at.nil?
|
207
207
|
return false if @to.nil?
|
208
208
|
return false if @bcc.nil?
|
@@ -219,9 +219,9 @@ module MailSlurpClient
|
|
219
219
|
id == o.id &&
|
220
220
|
from == o.from &&
|
221
221
|
subject == o.subject &&
|
222
|
+
inbox_id == o.inbox_id &&
|
222
223
|
user_id == o.user_id &&
|
223
224
|
attachments == o.attachments &&
|
224
|
-
inbox_id == o.inbox_id &&
|
225
225
|
created_at == o.created_at &&
|
226
226
|
to == o.to &&
|
227
227
|
bcc == o.bcc &&
|
@@ -239,7 +239,7 @@ module MailSlurpClient
|
|
239
239
|
# Calculates hash code according to all attributes.
|
240
240
|
# @return [Integer] Hash code
|
241
241
|
def hash
|
242
|
-
[id, from, subject, user_id, attachments,
|
242
|
+
[id, from, subject, inbox_id, user_id, attachments, created_at, to, bcc, cc, body_md5_hash, virtual_send].hash
|
243
243
|
end
|
244
244
|
|
245
245
|
# Builds the object from hash
|
@@ -21,14 +21,14 @@ module MailSlurpClient
|
|
21
21
|
# ID of email thread
|
22
22
|
attr_accessor :id
|
23
23
|
|
24
|
-
#
|
25
|
-
attr_accessor :
|
24
|
+
# Inbox ID
|
25
|
+
attr_accessor :inbox_id
|
26
26
|
|
27
27
|
# User ID
|
28
28
|
attr_accessor :user_id
|
29
29
|
|
30
|
-
#
|
31
|
-
attr_accessor :
|
30
|
+
# Thread subject
|
31
|
+
attr_accessor :subject
|
32
32
|
|
33
33
|
# Created at DateTime
|
34
34
|
attr_accessor :created_at
|
@@ -53,9 +53,9 @@ module MailSlurpClient
|
|
53
53
|
{
|
54
54
|
:'name' => :'name',
|
55
55
|
:'id' => :'id',
|
56
|
-
:'subject' => :'subject',
|
57
|
-
:'user_id' => :'userId',
|
58
56
|
:'inbox_id' => :'inboxId',
|
57
|
+
:'user_id' => :'userId',
|
58
|
+
:'subject' => :'subject',
|
59
59
|
:'created_at' => :'createdAt',
|
60
60
|
:'updated_at' => :'updatedAt',
|
61
61
|
:'to' => :'to',
|
@@ -70,9 +70,9 @@ module MailSlurpClient
|
|
70
70
|
{
|
71
71
|
:'name' => :'String',
|
72
72
|
:'id' => :'String',
|
73
|
-
:'subject' => :'String',
|
74
|
-
:'user_id' => :'String',
|
75
73
|
:'inbox_id' => :'String',
|
74
|
+
:'user_id' => :'String',
|
75
|
+
:'subject' => :'String',
|
76
76
|
:'created_at' => :'DateTime',
|
77
77
|
:'updated_at' => :'DateTime',
|
78
78
|
:'to' => :'Array<String>',
|
@@ -111,16 +111,16 @@ module MailSlurpClient
|
|
111
111
|
self.id = attributes[:'id']
|
112
112
|
end
|
113
113
|
|
114
|
-
if attributes.key?(:'
|
115
|
-
self.
|
114
|
+
if attributes.key?(:'inbox_id')
|
115
|
+
self.inbox_id = attributes[:'inbox_id']
|
116
116
|
end
|
117
117
|
|
118
118
|
if attributes.key?(:'user_id')
|
119
119
|
self.user_id = attributes[:'user_id']
|
120
120
|
end
|
121
121
|
|
122
|
-
if attributes.key?(:'
|
123
|
-
self.
|
122
|
+
if attributes.key?(:'subject')
|
123
|
+
self.subject = attributes[:'subject']
|
124
124
|
end
|
125
125
|
|
126
126
|
if attributes.key?(:'created_at')
|
@@ -162,14 +162,14 @@ module MailSlurpClient
|
|
162
162
|
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
163
163
|
end
|
164
164
|
|
165
|
-
if @user_id.nil?
|
166
|
-
invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
|
167
|
-
end
|
168
|
-
|
169
165
|
if @inbox_id.nil?
|
170
166
|
invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
|
171
167
|
end
|
172
168
|
|
169
|
+
if @user_id.nil?
|
170
|
+
invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
|
171
|
+
end
|
172
|
+
|
173
173
|
if @created_at.nil?
|
174
174
|
invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
|
175
175
|
end
|
@@ -193,8 +193,8 @@ module MailSlurpClient
|
|
193
193
|
# @return true if the model is valid
|
194
194
|
def valid?
|
195
195
|
return false if @id.nil?
|
196
|
-
return false if @user_id.nil?
|
197
196
|
return false if @inbox_id.nil?
|
197
|
+
return false if @user_id.nil?
|
198
198
|
return false if @created_at.nil?
|
199
199
|
return false if @updated_at.nil?
|
200
200
|
return false if @to.nil?
|
@@ -209,9 +209,9 @@ module MailSlurpClient
|
|
209
209
|
self.class == o.class &&
|
210
210
|
name == o.name &&
|
211
211
|
id == o.id &&
|
212
|
-
subject == o.subject &&
|
213
|
-
user_id == o.user_id &&
|
214
212
|
inbox_id == o.inbox_id &&
|
213
|
+
user_id == o.user_id &&
|
214
|
+
subject == o.subject &&
|
215
215
|
created_at == o.created_at &&
|
216
216
|
updated_at == o.updated_at &&
|
217
217
|
to == o.to &&
|
@@ -229,7 +229,7 @@ module MailSlurpClient
|
|
229
229
|
# Calculates hash code according to all attributes.
|
230
230
|
# @return [Integer] Hash code
|
231
231
|
def hash
|
232
|
-
[name, id,
|
232
|
+
[name, id, inbox_id, user_id, subject, created_at, updated_at, to, bcc, cc, alias_id].hash
|
233
233
|
end
|
234
234
|
|
235
235
|
# Builds the object from hash
|
@@ -19,11 +19,11 @@ module MailSlurpClient
|
|
19
19
|
|
20
20
|
attr_accessor :id
|
21
21
|
|
22
|
-
attr_accessor :
|
22
|
+
attr_accessor :inbox_id
|
23
23
|
|
24
24
|
attr_accessor :user_id
|
25
25
|
|
26
|
-
attr_accessor :
|
26
|
+
attr_accessor :sent_email_id
|
27
27
|
|
28
28
|
attr_accessor :created_at
|
29
29
|
|
@@ -38,9 +38,9 @@ module MailSlurpClient
|
|
38
38
|
{
|
39
39
|
:'name' => :'name',
|
40
40
|
:'id' => :'id',
|
41
|
-
:'sent_email_id' => :'sentEmailId',
|
42
|
-
:'user_id' => :'userId',
|
43
41
|
:'inbox_id' => :'inboxId',
|
42
|
+
:'user_id' => :'userId',
|
43
|
+
:'sent_email_id' => :'sentEmailId',
|
44
44
|
:'created_at' => :'createdAt',
|
45
45
|
:'recipient' => :'recipient',
|
46
46
|
:'seen' => :'seen',
|
@@ -53,9 +53,9 @@ module MailSlurpClient
|
|
53
53
|
{
|
54
54
|
:'name' => :'String',
|
55
55
|
:'id' => :'String',
|
56
|
-
:'sent_email_id' => :'String',
|
57
|
-
:'user_id' => :'String',
|
58
56
|
:'inbox_id' => :'String',
|
57
|
+
:'user_id' => :'String',
|
58
|
+
:'sent_email_id' => :'String',
|
59
59
|
:'created_at' => :'DateTime',
|
60
60
|
:'recipient' => :'String',
|
61
61
|
:'seen' => :'Boolean',
|
@@ -92,16 +92,16 @@ module MailSlurpClient
|
|
92
92
|
self.id = attributes[:'id']
|
93
93
|
end
|
94
94
|
|
95
|
-
if attributes.key?(:'
|
96
|
-
self.
|
95
|
+
if attributes.key?(:'inbox_id')
|
96
|
+
self.inbox_id = attributes[:'inbox_id']
|
97
97
|
end
|
98
98
|
|
99
99
|
if attributes.key?(:'user_id')
|
100
100
|
self.user_id = attributes[:'user_id']
|
101
101
|
end
|
102
102
|
|
103
|
-
if attributes.key?(:'
|
104
|
-
self.
|
103
|
+
if attributes.key?(:'sent_email_id')
|
104
|
+
self.sent_email_id = attributes[:'sent_email_id']
|
105
105
|
end
|
106
106
|
|
107
107
|
if attributes.key?(:'created_at')
|
@@ -161,9 +161,9 @@ module MailSlurpClient
|
|
161
161
|
self.class == o.class &&
|
162
162
|
name == o.name &&
|
163
163
|
id == o.id &&
|
164
|
-
sent_email_id == o.sent_email_id &&
|
165
|
-
user_id == o.user_id &&
|
166
164
|
inbox_id == o.inbox_id &&
|
165
|
+
user_id == o.user_id &&
|
166
|
+
sent_email_id == o.sent_email_id &&
|
167
167
|
created_at == o.created_at &&
|
168
168
|
recipient == o.recipient &&
|
169
169
|
seen == o.seen &&
|
@@ -179,7 +179,7 @@ module MailSlurpClient
|
|
179
179
|
# Calculates hash code according to all attributes.
|
180
180
|
# @return [Integer] Hash code
|
181
181
|
def hash
|
182
|
-
[name, id,
|
182
|
+
[name, id, inbox_id, user_id, sent_email_id, created_at, recipient, seen, seen_at].hash
|
183
183
|
end
|
184
184
|
|
185
185
|
# Builds the object from hash
|
data/lib/mailslurp_client.rb
CHANGED
@@ -54,6 +54,7 @@ require 'mailslurp_client/models/delivery_status_dto'
|
|
54
54
|
require 'mailslurp_client/models/describe_domain_options'
|
55
55
|
require 'mailslurp_client/models/describe_mail_server_domain_result'
|
56
56
|
require 'mailslurp_client/models/domain_dto'
|
57
|
+
require 'mailslurp_client/models/domain_issues_dto'
|
57
58
|
require 'mailslurp_client/models/domain_name_record'
|
58
59
|
require 'mailslurp_client/models/domain_preview'
|
59
60
|
require 'mailslurp_client/models/download_attachment_dto'
|
metadata
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailslurp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.17.
|
4
|
+
version: 15.17.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-17 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/ruby/ for full Ruby documentation. Get
|
15
15
|
an API Key at https://app.mailslurp.com
|
16
|
-
email:
|
16
|
+
email: contact@mailslurp.dev
|
17
17
|
executables: []
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
@@ -90,6 +90,7 @@ files:
|
|
90
90
|
- lib/mailslurp_client/models/dns_lookup_result.rb
|
91
91
|
- lib/mailslurp_client/models/dns_lookup_results.rb
|
92
92
|
- lib/mailslurp_client/models/domain_dto.rb
|
93
|
+
- lib/mailslurp_client/models/domain_issues_dto.rb
|
93
94
|
- lib/mailslurp_client/models/domain_name_record.rb
|
94
95
|
- lib/mailslurp_client/models/domain_preview.rb
|
95
96
|
- lib/mailslurp_client/models/download_attachment_dto.rb
|