mailslurp_client 15.12.15 → 15.12.16
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/lib/mailslurp_client/api/bounce_controller_api.rb +79 -0
- data/lib/mailslurp_client/api/sent_emails_controller_api.rb +212 -0
- data/lib/mailslurp_client/api/webhook_controller_api.rb +3 -0
- data/lib/mailslurp_client/models/alias_projection.rb +15 -15
- data/lib/mailslurp_client/models/attachment_projection.rb +14 -14
- data/lib/mailslurp_client/models/bounce_projection.rb +13 -13
- data/lib/mailslurp_client/models/bounce_recipient_projection.rb +13 -13
- data/lib/mailslurp_client/models/complaint.rb +289 -0
- data/lib/mailslurp_client/models/create_webhook_options.rb +0 -5
- data/lib/mailslurp_client/models/delivery_status.rb +331 -0
- data/lib/mailslurp_client/models/email_projection.rb +10 -10
- data/lib/mailslurp_client/models/missed_email_projection.rb +10 -10
- data/lib/mailslurp_client/models/page_alias.rb +22 -22
- data/lib/mailslurp_client/models/page_attachment_entity.rb +22 -22
- data/lib/mailslurp_client/models/page_bounced_email.rb +22 -22
- data/lib/mailslurp_client/models/page_bounced_recipients.rb +22 -22
- data/lib/mailslurp_client/models/page_complaint.rb +308 -0
- data/lib/mailslurp_client/models/page_contact_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_delivery_status.rb +308 -0
- data/lib/mailslurp_client/models/page_email_preview.rb +22 -22
- data/lib/mailslurp_client/models/page_email_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_email_validation_request.rb +22 -22
- data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_group_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_inbox_forwarder_dto.rb +22 -22
- data/lib/mailslurp_client/models/page_inbox_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_inbox_ruleset_dto.rb +22 -22
- data/lib/mailslurp_client/models/page_missed_email_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_organization_inbox_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_phone_number_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_sent_email_projection.rb +16 -16
- data/lib/mailslurp_client/models/page_sent_email_with_queue_projection.rb +16 -16
- data/lib/mailslurp_client/models/page_sms_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_template_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_thread_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_tracking_pixel_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_unknown_missed_email_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_webhook_projection.rb +22 -22
- data/lib/mailslurp_client/models/page_webhook_result.rb +22 -22
- data/lib/mailslurp_client/models/sent_email_projection.rb +18 -18
- data/lib/mailslurp_client/models/thread_projection.rb +20 -20
- data/lib/mailslurp_client/models/tracking_pixel_projection.rb +19 -19
- data/lib/mailslurp_client/version.rb +1 -1
- data/lib/mailslurp_client.rb +4 -0
- metadata +9 -5
@@ -19,18 +19,18 @@ module MailSlurpClient
|
|
19
19
|
|
20
20
|
attr_accessor :id
|
21
21
|
|
22
|
-
attr_accessor :inbox_id
|
23
|
-
|
24
22
|
attr_accessor :user_id
|
25
23
|
|
24
|
+
attr_accessor :inbox_id
|
25
|
+
|
26
26
|
attr_accessor :sent_email_id
|
27
27
|
|
28
28
|
attr_accessor :created_at
|
29
29
|
|
30
|
-
attr_accessor :seen
|
31
|
-
|
32
30
|
attr_accessor :recipient
|
33
31
|
|
32
|
+
attr_accessor :seen
|
33
|
+
|
34
34
|
attr_accessor :seen_at
|
35
35
|
|
36
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -38,12 +38,12 @@ module MailSlurpClient
|
|
38
38
|
{
|
39
39
|
:'name' => :'name',
|
40
40
|
:'id' => :'id',
|
41
|
-
:'inbox_id' => :'inboxId',
|
42
41
|
:'user_id' => :'userId',
|
42
|
+
:'inbox_id' => :'inboxId',
|
43
43
|
:'sent_email_id' => :'sentEmailId',
|
44
44
|
:'created_at' => :'createdAt',
|
45
|
-
:'seen' => :'seen',
|
46
45
|
:'recipient' => :'recipient',
|
46
|
+
:'seen' => :'seen',
|
47
47
|
:'seen_at' => :'seenAt'
|
48
48
|
}
|
49
49
|
end
|
@@ -53,12 +53,12 @@ module MailSlurpClient
|
|
53
53
|
{
|
54
54
|
:'name' => :'String',
|
55
55
|
:'id' => :'String',
|
56
|
-
:'inbox_id' => :'String',
|
57
56
|
:'user_id' => :'String',
|
57
|
+
:'inbox_id' => :'String',
|
58
58
|
:'sent_email_id' => :'String',
|
59
59
|
:'created_at' => :'DateTime',
|
60
|
-
:'seen' => :'Boolean',
|
61
60
|
:'recipient' => :'String',
|
61
|
+
:'seen' => :'Boolean',
|
62
62
|
:'seen_at' => :'DateTime'
|
63
63
|
}
|
64
64
|
end
|
@@ -92,14 +92,14 @@ module MailSlurpClient
|
|
92
92
|
self.id = attributes[:'id']
|
93
93
|
end
|
94
94
|
|
95
|
-
if attributes.key?(:'inbox_id')
|
96
|
-
self.inbox_id = attributes[:'inbox_id']
|
97
|
-
end
|
98
|
-
|
99
95
|
if attributes.key?(:'user_id')
|
100
96
|
self.user_id = attributes[:'user_id']
|
101
97
|
end
|
102
98
|
|
99
|
+
if attributes.key?(:'inbox_id')
|
100
|
+
self.inbox_id = attributes[:'inbox_id']
|
101
|
+
end
|
102
|
+
|
103
103
|
if attributes.key?(:'sent_email_id')
|
104
104
|
self.sent_email_id = attributes[:'sent_email_id']
|
105
105
|
end
|
@@ -108,14 +108,14 @@ module MailSlurpClient
|
|
108
108
|
self.created_at = attributes[:'created_at']
|
109
109
|
end
|
110
110
|
|
111
|
-
if attributes.key?(:'seen')
|
112
|
-
self.seen = attributes[:'seen']
|
113
|
-
end
|
114
|
-
|
115
111
|
if attributes.key?(:'recipient')
|
116
112
|
self.recipient = attributes[:'recipient']
|
117
113
|
end
|
118
114
|
|
115
|
+
if attributes.key?(:'seen')
|
116
|
+
self.seen = attributes[:'seen']
|
117
|
+
end
|
118
|
+
|
119
119
|
if attributes.key?(:'seen_at')
|
120
120
|
self.seen_at = attributes[:'seen_at']
|
121
121
|
end
|
@@ -161,12 +161,12 @@ module MailSlurpClient
|
|
161
161
|
self.class == o.class &&
|
162
162
|
name == o.name &&
|
163
163
|
id == o.id &&
|
164
|
-
inbox_id == o.inbox_id &&
|
165
164
|
user_id == o.user_id &&
|
165
|
+
inbox_id == o.inbox_id &&
|
166
166
|
sent_email_id == o.sent_email_id &&
|
167
167
|
created_at == o.created_at &&
|
168
|
-
seen == o.seen &&
|
169
168
|
recipient == o.recipient &&
|
169
|
+
seen == o.seen &&
|
170
170
|
seen_at == o.seen_at
|
171
171
|
end
|
172
172
|
|
@@ -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, user_id, inbox_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
@@ -29,6 +29,7 @@ require 'mailslurp_client/models/bounce_recipient_projection'
|
|
29
29
|
require 'mailslurp_client/models/bounced_email_dto'
|
30
30
|
require 'mailslurp_client/models/bounced_recipient_dto'
|
31
31
|
require 'mailslurp_client/models/bulk_send_email_options'
|
32
|
+
require 'mailslurp_client/models/complaint'
|
32
33
|
require 'mailslurp_client/models/condition_option'
|
33
34
|
require 'mailslurp_client/models/contact_dto'
|
34
35
|
require 'mailslurp_client/models/contact_projection'
|
@@ -48,6 +49,7 @@ require 'mailslurp_client/models/create_webhook_options'
|
|
48
49
|
require 'mailslurp_client/models/dns_lookup_options'
|
49
50
|
require 'mailslurp_client/models/dns_lookup_result'
|
50
51
|
require 'mailslurp_client/models/dns_lookup_results'
|
52
|
+
require 'mailslurp_client/models/delivery_status'
|
51
53
|
require 'mailslurp_client/models/describe_domain_options'
|
52
54
|
require 'mailslurp_client/models/describe_mail_server_domain_result'
|
53
55
|
require 'mailslurp_client/models/domain_dto'
|
@@ -112,7 +114,9 @@ require 'mailslurp_client/models/page_alias'
|
|
112
114
|
require 'mailslurp_client/models/page_attachment_entity'
|
113
115
|
require 'mailslurp_client/models/page_bounced_email'
|
114
116
|
require 'mailslurp_client/models/page_bounced_recipients'
|
117
|
+
require 'mailslurp_client/models/page_complaint'
|
115
118
|
require 'mailslurp_client/models/page_contact_projection'
|
119
|
+
require 'mailslurp_client/models/page_delivery_status'
|
116
120
|
require 'mailslurp_client/models/page_email_preview'
|
117
121
|
require 'mailslurp_client/models/page_email_projection'
|
118
122
|
require 'mailslurp_client/models/page_email_validation_request'
|
metadata
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailslurp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.12.
|
4
|
+
version: 15.12.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Create emails addresses in Ruby then send and receive real emails and
|
14
|
-
attachments. See https://www.mailslurp.com/
|
15
|
-
|
14
|
+
attachments. See https://www.mailslurp.com/ruby/ for full Ruby documentation. Get
|
15
|
+
an API Key at https://app.mailslurp.com
|
16
16
|
email: support@mailslurp.zendesk.com
|
17
17
|
executables: []
|
18
18
|
extensions: []
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- lib/mailslurp_client/models/bounced_email_dto.rb
|
65
65
|
- lib/mailslurp_client/models/bounced_recipient_dto.rb
|
66
66
|
- lib/mailslurp_client/models/bulk_send_email_options.rb
|
67
|
+
- lib/mailslurp_client/models/complaint.rb
|
67
68
|
- lib/mailslurp_client/models/condition_option.rb
|
68
69
|
- lib/mailslurp_client/models/contact_dto.rb
|
69
70
|
- lib/mailslurp_client/models/contact_projection.rb
|
@@ -80,6 +81,7 @@ files:
|
|
80
81
|
- lib/mailslurp_client/models/create_template_options.rb
|
81
82
|
- lib/mailslurp_client/models/create_tracking_pixel_options.rb
|
82
83
|
- lib/mailslurp_client/models/create_webhook_options.rb
|
84
|
+
- lib/mailslurp_client/models/delivery_status.rb
|
83
85
|
- lib/mailslurp_client/models/describe_domain_options.rb
|
84
86
|
- lib/mailslurp_client/models/describe_mail_server_domain_result.rb
|
85
87
|
- lib/mailslurp_client/models/dns_lookup_options.rb
|
@@ -147,7 +149,9 @@ files:
|
|
147
149
|
- lib/mailslurp_client/models/page_attachment_entity.rb
|
148
150
|
- lib/mailslurp_client/models/page_bounced_email.rb
|
149
151
|
- lib/mailslurp_client/models/page_bounced_recipients.rb
|
152
|
+
- lib/mailslurp_client/models/page_complaint.rb
|
150
153
|
- lib/mailslurp_client/models/page_contact_projection.rb
|
154
|
+
- lib/mailslurp_client/models/page_delivery_status.rb
|
151
155
|
- lib/mailslurp_client/models/page_email_preview.rb
|
152
156
|
- lib/mailslurp_client/models/page_email_projection.rb
|
153
157
|
- lib/mailslurp_client/models/page_email_validation_request.rb
|
@@ -233,7 +237,7 @@ files:
|
|
233
237
|
- lib/mailslurp_client/models/webhook_test_response.rb
|
234
238
|
- lib/mailslurp_client/models/webhook_test_result.rb
|
235
239
|
- lib/mailslurp_client/version.rb
|
236
|
-
homepage: https://www.mailslurp.com/
|
240
|
+
homepage: https://www.mailslurp.com/ruby
|
237
241
|
licenses:
|
238
242
|
- MIT
|
239
243
|
metadata:
|