mailslurp_client 15.2.8 → 15.3.0

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client/api/inbox_controller_api.rb +56 -0
  3. data/lib/mailslurp_client/models/alias_projection.rb +15 -15
  4. data/lib/mailslurp_client/models/expired_inbox_record_projection.rb +15 -15
  5. data/lib/mailslurp_client/models/inbox_ids_result.rb +213 -0
  6. data/lib/mailslurp_client/models/page_alias.rb +10 -10
  7. data/lib/mailslurp_client/models/page_attachment_entity.rb +10 -10
  8. data/lib/mailslurp_client/models/page_bounced_email.rb +10 -10
  9. data/lib/mailslurp_client/models/page_bounced_recipients.rb +10 -10
  10. data/lib/mailslurp_client/models/page_contact_projection.rb +10 -10
  11. data/lib/mailslurp_client/models/page_email_preview.rb +10 -10
  12. data/lib/mailslurp_client/models/page_email_projection.rb +10 -10
  13. data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +10 -10
  14. data/lib/mailslurp_client/models/page_group_projection.rb +10 -10
  15. data/lib/mailslurp_client/models/page_inbox_forwarder_dto.rb +10 -10
  16. data/lib/mailslurp_client/models/page_inbox_projection.rb +10 -10
  17. data/lib/mailslurp_client/models/page_inbox_ruleset_dto.rb +10 -10
  18. data/lib/mailslurp_client/models/page_missed_email_projection.rb +10 -10
  19. data/lib/mailslurp_client/models/page_organization_inbox_projection.rb +10 -10
  20. data/lib/mailslurp_client/models/page_sent_email_projection.rb +16 -16
  21. data/lib/mailslurp_client/models/page_template_projection.rb +10 -10
  22. data/lib/mailslurp_client/models/page_thread_projection.rb +10 -10
  23. data/lib/mailslurp_client/models/page_tracking_pixel_projection.rb +10 -10
  24. data/lib/mailslurp_client/models/page_unknown_missed_email_projection.rb +10 -10
  25. data/lib/mailslurp_client/models/page_webhook_projection.rb +10 -10
  26. data/lib/mailslurp_client/models/page_webhook_result.rb +10 -10
  27. data/lib/mailslurp_client/models/sent_email_projection.rb +15 -15
  28. data/lib/mailslurp_client/models/sort.rb +13 -13
  29. data/lib/mailslurp_client/models/thread_projection.rb +15 -15
  30. data/lib/mailslurp_client/models/tracking_pixel_projection.rb +10 -10
  31. data/lib/mailslurp_client/version.rb +1 -1
  32. data/lib/mailslurp_client.rb +1 -0
  33. metadata +3 -2
@@ -23,10 +23,10 @@ module MailSlurpClient
23
23
 
24
24
  attr_accessor :last
25
25
 
26
- attr_accessor :total_elements
27
-
28
26
  attr_accessor :total_pages
29
27
 
28
+ attr_accessor :total_elements
29
+
30
30
  attr_accessor :size
31
31
 
32
32
  attr_accessor :number
@@ -46,8 +46,8 @@ module MailSlurpClient
46
46
  :'pageable' => :'pageable',
47
47
  :'total' => :'total',
48
48
  :'last' => :'last',
49
- :'total_elements' => :'totalElements',
50
49
  :'total_pages' => :'totalPages',
50
+ :'total_elements' => :'totalElements',
51
51
  :'size' => :'size',
52
52
  :'number' => :'number',
53
53
  :'sort' => :'sort',
@@ -64,8 +64,8 @@ module MailSlurpClient
64
64
  :'pageable' => :'PageableObject',
65
65
  :'total' => :'Integer',
66
66
  :'last' => :'Boolean',
67
- :'total_elements' => :'Integer',
68
67
  :'total_pages' => :'Integer',
68
+ :'total_elements' => :'Integer',
69
69
  :'size' => :'Integer',
70
70
  :'number' => :'Integer',
71
71
  :'sort' => :'Sort',
@@ -114,14 +114,14 @@ module MailSlurpClient
114
114
  self.last = attributes[:'last']
115
115
  end
116
116
 
117
- if attributes.key?(:'total_elements')
118
- self.total_elements = attributes[:'total_elements']
119
- end
120
-
121
117
  if attributes.key?(:'total_pages')
122
118
  self.total_pages = attributes[:'total_pages']
123
119
  end
124
120
 
121
+ if attributes.key?(:'total_elements')
122
+ self.total_elements = attributes[:'total_elements']
123
+ end
124
+
125
125
  if attributes.key?(:'size')
126
126
  self.size = attributes[:'size']
127
127
  end
@@ -169,8 +169,8 @@ module MailSlurpClient
169
169
  pageable == o.pageable &&
170
170
  total == o.total &&
171
171
  last == o.last &&
172
- total_elements == o.total_elements &&
173
172
  total_pages == o.total_pages &&
173
+ total_elements == o.total_elements &&
174
174
  size == o.size &&
175
175
  number == o.number &&
176
176
  sort == o.sort &&
@@ -188,7 +188,7 @@ module MailSlurpClient
188
188
  # Calculates hash code according to all attributes.
189
189
  # @return [Integer] Hash code
190
190
  def hash
191
- [content, pageable, total, last, total_elements, total_pages, size, number, sort, first, number_of_elements, empty].hash
191
+ [content, pageable, total, last, total_pages, total_elements, size, number, sort, first, number_of_elements, empty].hash
192
192
  end
193
193
 
194
194
  # Builds the object from hash
@@ -23,6 +23,8 @@ module MailSlurpClient
23
23
 
24
24
  attr_accessor :subject
25
25
 
26
+ attr_accessor :created_at
27
+
26
28
  attr_accessor :inbox_id
27
29
 
28
30
  attr_accessor :to
@@ -33,8 +35,6 @@ module MailSlurpClient
33
35
 
34
36
  attr_accessor :cc
35
37
 
36
- attr_accessor :created_at
37
-
38
38
  attr_accessor :body_md5_hash
39
39
 
40
40
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -44,12 +44,12 @@ module MailSlurpClient
44
44
  :'from' => :'from',
45
45
  :'user_id' => :'userId',
46
46
  :'subject' => :'subject',
47
+ :'created_at' => :'createdAt',
47
48
  :'inbox_id' => :'inboxId',
48
49
  :'to' => :'to',
49
50
  :'attachments' => :'attachments',
50
51
  :'bcc' => :'bcc',
51
52
  :'cc' => :'cc',
52
- :'created_at' => :'createdAt',
53
53
  :'body_md5_hash' => :'bodyMD5Hash'
54
54
  }
55
55
  end
@@ -61,12 +61,12 @@ module MailSlurpClient
61
61
  :'from' => :'String',
62
62
  :'user_id' => :'String',
63
63
  :'subject' => :'String',
64
+ :'created_at' => :'DateTime',
64
65
  :'inbox_id' => :'String',
65
66
  :'to' => :'Array<String>',
66
67
  :'attachments' => :'Array<String>',
67
68
  :'bcc' => :'Array<String>',
68
69
  :'cc' => :'Array<String>',
69
- :'created_at' => :'DateTime',
70
70
  :'body_md5_hash' => :'String'
71
71
  }
72
72
  end
@@ -108,6 +108,10 @@ module MailSlurpClient
108
108
  self.subject = attributes[:'subject']
109
109
  end
110
110
 
111
+ if attributes.key?(:'created_at')
112
+ self.created_at = attributes[:'created_at']
113
+ end
114
+
111
115
  if attributes.key?(:'inbox_id')
112
116
  self.inbox_id = attributes[:'inbox_id']
113
117
  end
@@ -136,10 +140,6 @@ module MailSlurpClient
136
140
  end
137
141
  end
138
142
 
139
- if attributes.key?(:'created_at')
140
- self.created_at = attributes[:'created_at']
141
- end
142
-
143
143
  if attributes.key?(:'body_md5_hash')
144
144
  self.body_md5_hash = attributes[:'body_md5_hash']
145
145
  end
@@ -157,6 +157,10 @@ module MailSlurpClient
157
157
  invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
158
158
  end
159
159
 
160
+ if @created_at.nil?
161
+ invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
162
+ end
163
+
160
164
  if @inbox_id.nil?
161
165
  invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
162
166
  end
@@ -177,10 +181,6 @@ module MailSlurpClient
177
181
  invalid_properties.push('invalid value for "cc", cc cannot be nil.')
178
182
  end
179
183
 
180
- if @created_at.nil?
181
- invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
182
- end
183
-
184
184
  invalid_properties
185
185
  end
186
186
 
@@ -189,12 +189,12 @@ module MailSlurpClient
189
189
  def valid?
190
190
  return false if @id.nil?
191
191
  return false if @user_id.nil?
192
+ return false if @created_at.nil?
192
193
  return false if @inbox_id.nil?
193
194
  return false if @to.nil?
194
195
  return false if @attachments.nil?
195
196
  return false if @bcc.nil?
196
197
  return false if @cc.nil?
197
- return false if @created_at.nil?
198
198
  true
199
199
  end
200
200
 
@@ -207,12 +207,12 @@ module MailSlurpClient
207
207
  from == o.from &&
208
208
  user_id == o.user_id &&
209
209
  subject == o.subject &&
210
+ created_at == o.created_at &&
210
211
  inbox_id == o.inbox_id &&
211
212
  to == o.to &&
212
213
  attachments == o.attachments &&
213
214
  bcc == o.bcc &&
214
215
  cc == o.cc &&
215
- created_at == o.created_at &&
216
216
  body_md5_hash == o.body_md5_hash
217
217
  end
218
218
 
@@ -225,7 +225,7 @@ module MailSlurpClient
225
225
  # Calculates hash code according to all attributes.
226
226
  # @return [Integer] Hash code
227
227
  def hash
228
- [id, from, user_id, subject, inbox_id, to, attachments, bcc, cc, created_at, body_md5_hash].hash
228
+ [id, from, user_id, subject, created_at, inbox_id, to, attachments, bcc, cc, body_md5_hash].hash
229
229
  end
230
230
 
231
231
  # Builds the object from hash
@@ -16,16 +16,16 @@ module MailSlurpClient
16
16
  class Sort
17
17
  attr_accessor :empty
18
18
 
19
- attr_accessor :sorted
20
-
21
19
  attr_accessor :unsorted
22
20
 
21
+ attr_accessor :sorted
22
+
23
23
  # Attribute mapping from ruby-style variable name to JSON key.
24
24
  def self.attribute_map
25
25
  {
26
26
  :'empty' => :'empty',
27
- :'sorted' => :'sorted',
28
- :'unsorted' => :'unsorted'
27
+ :'unsorted' => :'unsorted',
28
+ :'sorted' => :'sorted'
29
29
  }
30
30
  end
31
31
 
@@ -33,8 +33,8 @@ module MailSlurpClient
33
33
  def self.openapi_types
34
34
  {
35
35
  :'empty' => :'Boolean',
36
- :'sorted' => :'Boolean',
37
- :'unsorted' => :'Boolean'
36
+ :'unsorted' => :'Boolean',
37
+ :'sorted' => :'Boolean'
38
38
  }
39
39
  end
40
40
 
@@ -63,13 +63,13 @@ module MailSlurpClient
63
63
  self.empty = attributes[:'empty']
64
64
  end
65
65
 
66
- if attributes.key?(:'sorted')
67
- self.sorted = attributes[:'sorted']
68
- end
69
-
70
66
  if attributes.key?(:'unsorted')
71
67
  self.unsorted = attributes[:'unsorted']
72
68
  end
69
+
70
+ if attributes.key?(:'sorted')
71
+ self.sorted = attributes[:'sorted']
72
+ end
73
73
  end
74
74
 
75
75
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -91,8 +91,8 @@ module MailSlurpClient
91
91
  return true if self.equal?(o)
92
92
  self.class == o.class &&
93
93
  empty == o.empty &&
94
- sorted == o.sorted &&
95
- unsorted == o.unsorted
94
+ unsorted == o.unsorted &&
95
+ sorted == o.sorted
96
96
  end
97
97
 
98
98
  # @see the `==` method
@@ -104,7 +104,7 @@ module MailSlurpClient
104
104
  # Calculates hash code according to all attributes.
105
105
  # @return [Integer] Hash code
106
106
  def hash
107
- [empty, sorted, unsorted].hash
107
+ [empty, unsorted, sorted].hash
108
108
  end
109
109
 
110
110
  # Builds the object from hash
@@ -21,10 +21,10 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :subject
23
23
 
24
- attr_accessor :inbox_id
25
-
26
24
  attr_accessor :user_id
27
25
 
26
+ attr_accessor :inbox_id
27
+
28
28
  attr_accessor :to
29
29
 
30
30
  attr_accessor :bcc
@@ -43,8 +43,8 @@ module MailSlurpClient
43
43
  :'name' => :'name',
44
44
  :'id' => :'id',
45
45
  :'subject' => :'subject',
46
- :'inbox_id' => :'inboxId',
47
46
  :'user_id' => :'userId',
47
+ :'inbox_id' => :'inboxId',
48
48
  :'to' => :'to',
49
49
  :'bcc' => :'bcc',
50
50
  :'cc' => :'cc',
@@ -60,8 +60,8 @@ module MailSlurpClient
60
60
  :'name' => :'String',
61
61
  :'id' => :'String',
62
62
  :'subject' => :'String',
63
- :'inbox_id' => :'String',
64
63
  :'user_id' => :'String',
64
+ :'inbox_id' => :'String',
65
65
  :'to' => :'Array<String>',
66
66
  :'bcc' => :'Array<String>',
67
67
  :'cc' => :'Array<String>',
@@ -104,14 +104,14 @@ module MailSlurpClient
104
104
  self.subject = attributes[:'subject']
105
105
  end
106
106
 
107
- if attributes.key?(:'inbox_id')
108
- self.inbox_id = attributes[:'inbox_id']
109
- end
110
-
111
107
  if attributes.key?(:'user_id')
112
108
  self.user_id = attributes[:'user_id']
113
109
  end
114
110
 
111
+ if attributes.key?(:'inbox_id')
112
+ self.inbox_id = attributes[:'inbox_id']
113
+ end
114
+
115
115
  if attributes.key?(:'to')
116
116
  if (value = attributes[:'to']).is_a?(Array)
117
117
  self.to = value
@@ -151,14 +151,14 @@ module MailSlurpClient
151
151
  invalid_properties.push('invalid value for "id", id cannot be nil.')
152
152
  end
153
153
 
154
- if @inbox_id.nil?
155
- invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
156
- end
157
-
158
154
  if @user_id.nil?
159
155
  invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
160
156
  end
161
157
 
158
+ if @inbox_id.nil?
159
+ invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
160
+ end
161
+
162
162
  if @to.nil?
163
163
  invalid_properties.push('invalid value for "to", to cannot be nil.')
164
164
  end
@@ -182,8 +182,8 @@ module MailSlurpClient
182
182
  # @return true if the model is valid
183
183
  def valid?
184
184
  return false if @id.nil?
185
- return false if @inbox_id.nil?
186
185
  return false if @user_id.nil?
186
+ return false if @inbox_id.nil?
187
187
  return false if @to.nil?
188
188
  return false if @created_at.nil?
189
189
  return false if @updated_at.nil?
@@ -199,8 +199,8 @@ module MailSlurpClient
199
199
  name == o.name &&
200
200
  id == o.id &&
201
201
  subject == o.subject &&
202
- inbox_id == o.inbox_id &&
203
202
  user_id == o.user_id &&
203
+ inbox_id == o.inbox_id &&
204
204
  to == o.to &&
205
205
  bcc == o.bcc &&
206
206
  cc == o.cc &&
@@ -218,7 +218,7 @@ module MailSlurpClient
218
218
  # Calculates hash code according to all attributes.
219
219
  # @return [Integer] Hash code
220
220
  def hash
221
- [name, id, subject, inbox_id, user_id, to, bcc, cc, created_at, updated_at, alias_id].hash
221
+ [name, id, subject, user_id, inbox_id, to, bcc, cc, created_at, updated_at, alias_id].hash
222
222
  end
223
223
 
224
224
  # Builds the object from hash
@@ -18,10 +18,10 @@ module MailSlurpClient
18
18
 
19
19
  attr_accessor :id
20
20
 
21
- attr_accessor :inbox_id
22
-
23
21
  attr_accessor :user_id
24
22
 
23
+ attr_accessor :inbox_id
24
+
25
25
  attr_accessor :created_at
26
26
 
27
27
  attr_accessor :seen
@@ -37,8 +37,8 @@ module MailSlurpClient
37
37
  {
38
38
  :'name' => :'name',
39
39
  :'id' => :'id',
40
- :'inbox_id' => :'inboxId',
41
40
  :'user_id' => :'userId',
41
+ :'inbox_id' => :'inboxId',
42
42
  :'created_at' => :'createdAt',
43
43
  :'seen' => :'seen',
44
44
  :'recipient' => :'recipient',
@@ -52,8 +52,8 @@ module MailSlurpClient
52
52
  {
53
53
  :'name' => :'String',
54
54
  :'id' => :'String',
55
- :'inbox_id' => :'String',
56
55
  :'user_id' => :'String',
56
+ :'inbox_id' => :'String',
57
57
  :'created_at' => :'DateTime',
58
58
  :'seen' => :'Boolean',
59
59
  :'recipient' => :'String',
@@ -91,14 +91,14 @@ module MailSlurpClient
91
91
  self.id = attributes[:'id']
92
92
  end
93
93
 
94
- if attributes.key?(:'inbox_id')
95
- self.inbox_id = attributes[:'inbox_id']
96
- end
97
-
98
94
  if attributes.key?(:'user_id')
99
95
  self.user_id = attributes[:'user_id']
100
96
  end
101
97
 
98
+ if attributes.key?(:'inbox_id')
99
+ self.inbox_id = attributes[:'inbox_id']
100
+ end
101
+
102
102
  if attributes.key?(:'created_at')
103
103
  self.created_at = attributes[:'created_at']
104
104
  end
@@ -160,8 +160,8 @@ module MailSlurpClient
160
160
  self.class == o.class &&
161
161
  name == o.name &&
162
162
  id == o.id &&
163
- inbox_id == o.inbox_id &&
164
163
  user_id == o.user_id &&
164
+ inbox_id == o.inbox_id &&
165
165
  created_at == o.created_at &&
166
166
  seen == o.seen &&
167
167
  recipient == o.recipient &&
@@ -178,7 +178,7 @@ module MailSlurpClient
178
178
  # Calculates hash code according to all attributes.
179
179
  # @return [Integer] Hash code
180
180
  def hash
181
- [name, id, inbox_id, user_id, created_at, seen, recipient, seen_at, sent_email_id].hash
181
+ [name, id, user_id, inbox_id, created_at, seen, recipient, seen_at, sent_email_id].hash
182
182
  end
183
183
 
184
184
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module MailSlurpClient
14
- VERSION = '15.2.8'
14
+ VERSION = '15.3.0'
15
15
  end
@@ -80,6 +80,7 @@ require 'mailslurp_client/models/inbox_exists_dto'
80
80
  require 'mailslurp_client/models/inbox_forwarder_dto'
81
81
  require 'mailslurp_client/models/inbox_forwarder_test_options'
82
82
  require 'mailslurp_client/models/inbox_forwarder_test_result'
83
+ require 'mailslurp_client/models/inbox_ids_result'
83
84
  require 'mailslurp_client/models/inbox_preview'
84
85
  require 'mailslurp_client/models/inbox_ruleset_dto'
85
86
  require 'mailslurp_client/models/inbox_ruleset_test_options'
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: 15.2.8
4
+ version: 15.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mailslurp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-15 00:00:00.000000000 Z
11
+ date: 2022-01-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/docs/ruby/ for full Ruby documentation.
@@ -110,6 +110,7 @@ files:
110
110
  - lib/mailslurp_client/models/inbox_forwarder_dto.rb
111
111
  - lib/mailslurp_client/models/inbox_forwarder_test_options.rb
112
112
  - lib/mailslurp_client/models/inbox_forwarder_test_result.rb
113
+ - lib/mailslurp_client/models/inbox_ids_result.rb
113
114
  - lib/mailslurp_client/models/inbox_preview.rb
114
115
  - lib/mailslurp_client/models/inbox_ruleset_dto.rb
115
116
  - lib/mailslurp_client/models/inbox_ruleset_test_options.rb