mailslurp_client 15.19.13 → 15.19.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client/api/email_controller_api.rb +3 -0
  3. data/lib/mailslurp_client/api/inbox_controller_api.rb +182 -2
  4. data/lib/mailslurp_client/models/alias_projection.rb +15 -15
  5. data/lib/mailslurp_client/models/connector_projection.rb +15 -15
  6. data/lib/mailslurp_client/models/create_domain_options.rb +1 -1
  7. data/lib/mailslurp_client/models/imap_access_details.rb +61 -1
  8. data/lib/mailslurp_client/models/imap_smtp_access_details.rb +61 -1
  9. data/lib/mailslurp_client/models/imap_smtp_access_servers.rb +254 -0
  10. data/lib/mailslurp_client/models/inbox_dto.rb +1 -1
  11. data/lib/mailslurp_client/models/inbox_forwarder_event_projection.rb +11 -11
  12. data/lib/mailslurp_client/models/inbox_replier_event_projection.rb +11 -11
  13. data/lib/mailslurp_client/models/page_alias.rb +10 -10
  14. data/lib/mailslurp_client/models/page_attachment_entity.rb +10 -10
  15. data/lib/mailslurp_client/models/page_bounced_email.rb +10 -10
  16. data/lib/mailslurp_client/models/page_bounced_recipients.rb +10 -10
  17. data/lib/mailslurp_client/models/page_complaint.rb +10 -10
  18. data/lib/mailslurp_client/models/page_connector.rb +10 -10
  19. data/lib/mailslurp_client/models/page_connector_sync_events.rb +10 -10
  20. data/lib/mailslurp_client/models/page_contact_projection.rb +10 -10
  21. data/lib/mailslurp_client/models/page_delivery_status.rb +10 -10
  22. data/lib/mailslurp_client/models/page_email_preview.rb +10 -10
  23. data/lib/mailslurp_client/models/page_email_projection.rb +10 -10
  24. data/lib/mailslurp_client/models/page_email_validation_request.rb +10 -10
  25. data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +10 -10
  26. data/lib/mailslurp_client/models/page_group_projection.rb +10 -10
  27. data/lib/mailslurp_client/models/page_inbox_forwarder_dto.rb +10 -10
  28. data/lib/mailslurp_client/models/page_inbox_forwarder_events.rb +10 -10
  29. data/lib/mailslurp_client/models/page_inbox_projection.rb +10 -10
  30. data/lib/mailslurp_client/models/page_inbox_replier_dto.rb +10 -10
  31. data/lib/mailslurp_client/models/page_inbox_replier_events.rb +10 -10
  32. data/lib/mailslurp_client/models/page_inbox_ruleset_dto.rb +10 -10
  33. data/lib/mailslurp_client/models/page_list_unsubscribe_recipients.rb +10 -10
  34. data/lib/mailslurp_client/models/page_missed_email_projection.rb +10 -10
  35. data/lib/mailslurp_client/models/page_organization_inbox_projection.rb +10 -10
  36. data/lib/mailslurp_client/models/page_phone_number_projection.rb +10 -10
  37. data/lib/mailslurp_client/models/page_scheduled_jobs.rb +10 -10
  38. data/lib/mailslurp_client/models/page_sent_email_projection.rb +10 -10
  39. data/lib/mailslurp_client/models/page_sent_email_with_queue_projection.rb +10 -10
  40. data/lib/mailslurp_client/models/page_sms_projection.rb +10 -10
  41. data/lib/mailslurp_client/models/page_template_projection.rb +10 -10
  42. data/lib/mailslurp_client/models/page_thread_projection.rb +10 -10
  43. data/lib/mailslurp_client/models/page_tracking_pixel_projection.rb +10 -10
  44. data/lib/mailslurp_client/models/page_unknown_missed_email_projection.rb +10 -10
  45. data/lib/mailslurp_client/models/page_webhook_projection.rb +10 -10
  46. data/lib/mailslurp_client/models/page_webhook_result.rb +10 -10
  47. data/lib/mailslurp_client/models/sent_email_projection.rb +15 -15
  48. data/lib/mailslurp_client/models/server_endpoints.rb +255 -0
  49. data/lib/mailslurp_client/models/thread_projection.rb +16 -16
  50. data/lib/mailslurp_client/models/tracking_pixel_projection.rb +13 -13
  51. data/lib/mailslurp_client/models/update_imap_access_options.rb +220 -0
  52. data/lib/mailslurp_client/models/update_smtp_access_options.rb +220 -0
  53. data/lib/mailslurp_client/version.rb +1 -1
  54. data/lib/mailslurp_client.rb +4 -0
  55. metadata +6 -2
@@ -0,0 +1,220 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+ Contact: contact@mailslurp.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module MailSlurpClient
16
+ # Edit access details for inbox using IMAP
17
+ class UpdateImapAccessOptions
18
+ # IMAP username for login
19
+ attr_accessor :imap_username
20
+
21
+ # IMAP password for login
22
+ attr_accessor :imap_password
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'imap_username' => :'imapUsername',
28
+ :'imap_password' => :'imapPassword'
29
+ }
30
+ end
31
+
32
+ # Attribute type mapping.
33
+ def self.openapi_types
34
+ {
35
+ :'imap_username' => :'String',
36
+ :'imap_password' => :'String'
37
+ }
38
+ end
39
+
40
+ # List of attributes with nullable: true
41
+ def self.openapi_nullable
42
+ Set.new([
43
+ :'imap_username',
44
+ :'imap_password'
45
+ ])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ if (!attributes.is_a?(Hash))
52
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::UpdateImapAccessOptions` initialize method"
53
+ end
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h|
57
+ if (!self.class.attribute_map.key?(k.to_sym))
58
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::UpdateImapAccessOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ end
60
+ h[k.to_sym] = v
61
+ }
62
+
63
+ if attributes.key?(:'imap_username')
64
+ self.imap_username = attributes[:'imap_username']
65
+ end
66
+
67
+ if attributes.key?(:'imap_password')
68
+ self.imap_password = attributes[:'imap_password']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = Array.new
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ true
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ imap_username == o.imap_username &&
91
+ imap_password == o.imap_password
92
+ end
93
+
94
+ # @see the `==` method
95
+ # @param [Object] Object to be compared
96
+ def eql?(o)
97
+ self == o
98
+ end
99
+
100
+ # Calculates hash code according to all attributes.
101
+ # @return [Integer] Hash code
102
+ def hash
103
+ [imap_username, imap_password].hash
104
+ end
105
+
106
+ # Builds the object from hash
107
+ # @param [Hash] attributes Model attributes in the form of hash
108
+ # @return [Object] Returns the model itself
109
+ def self.build_from_hash(attributes)
110
+ new.build_from_hash(attributes)
111
+ end
112
+
113
+ # Builds the object from hash
114
+ # @param [Hash] attributes Model attributes in the form of hash
115
+ # @return [Object] Returns the model itself
116
+ def build_from_hash(attributes)
117
+ return nil unless attributes.is_a?(Hash)
118
+ self.class.openapi_types.each_pair do |key, type|
119
+ if type =~ /\AArray<(.*)>/i
120
+ # check to ensure the input is an array given that the attribute
121
+ # is documented as an array but the input is not
122
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
123
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
124
+ end
125
+ elsif !attributes[self.class.attribute_map[key]].nil?
126
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
127
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
128
+ end
129
+
130
+ self
131
+ end
132
+
133
+ # Deserializes the data based on type
134
+ # @param string type Data type
135
+ # @param string value Value to be deserialized
136
+ # @return [Object] Deserialized data
137
+ def _deserialize(type, value)
138
+ case type.to_sym
139
+ when :DateTime
140
+ DateTime.parse(value)
141
+ when :Date
142
+ Date.parse(value)
143
+ when :String
144
+ value.to_s
145
+ when :Integer
146
+ value.to_i
147
+ when :Float
148
+ value.to_f
149
+ when :Boolean
150
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
151
+ true
152
+ else
153
+ false
154
+ end
155
+ when :Object
156
+ # generic object (usually a Hash), return directly
157
+ value
158
+ when /\AArray<(?<inner_type>.+)>\z/
159
+ inner_type = Regexp.last_match[:inner_type]
160
+ value.map { |v| _deserialize(inner_type, v) }
161
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
162
+ k_type = Regexp.last_match[:k_type]
163
+ v_type = Regexp.last_match[:v_type]
164
+ {}.tap do |hash|
165
+ value.each do |k, v|
166
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
167
+ end
168
+ end
169
+ else # model
170
+ MailSlurpClient.const_get(type).build_from_hash(value)
171
+ end
172
+ end
173
+
174
+ # Returns the string representation of the object
175
+ # @return [String] String presentation of the object
176
+ def to_s
177
+ to_hash.to_s
178
+ end
179
+
180
+ # to_body is an alias to to_hash (backward compatibility)
181
+ # @return [Hash] Returns the object in the form of hash
182
+ def to_body
183
+ to_hash
184
+ end
185
+
186
+ # Returns the object in the form of hash
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_hash
189
+ hash = {}
190
+ self.class.attribute_map.each_pair do |attr, param|
191
+ value = self.send(attr)
192
+ if value.nil?
193
+ is_nullable = self.class.openapi_nullable.include?(attr)
194
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
195
+ end
196
+
197
+ hash[param] = _to_hash(value)
198
+ end
199
+ hash
200
+ end
201
+
202
+ # Outputs non-array value in the form of hash
203
+ # For object, use to_hash. Otherwise, just return the value
204
+ # @param [Object] value Any valid value
205
+ # @return [Hash] Returns the value in the form of hash
206
+ def _to_hash(value)
207
+ if value.is_a?(Array)
208
+ value.compact.map { |v| _to_hash(v) }
209
+ elsif value.is_a?(Hash)
210
+ {}.tap do |hash|
211
+ value.each { |k, v| hash[k] = _to_hash(v) }
212
+ end
213
+ elsif value.respond_to? :to_hash
214
+ value.to_hash
215
+ else
216
+ value
217
+ end
218
+ end
219
+ end
220
+ end
@@ -0,0 +1,220 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+ Contact: contact@mailslurp.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module MailSlurpClient
16
+ # Edit access details for inbox using SMTP
17
+ class UpdateSmtpAccessOptions
18
+ # SMTP username for login
19
+ attr_accessor :smtp_username
20
+
21
+ # SMTP password for login
22
+ attr_accessor :smtp_password
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'smtp_username' => :'smtpUsername',
28
+ :'smtp_password' => :'smtpPassword'
29
+ }
30
+ end
31
+
32
+ # Attribute type mapping.
33
+ def self.openapi_types
34
+ {
35
+ :'smtp_username' => :'String',
36
+ :'smtp_password' => :'String'
37
+ }
38
+ end
39
+
40
+ # List of attributes with nullable: true
41
+ def self.openapi_nullable
42
+ Set.new([
43
+ :'smtp_username',
44
+ :'smtp_password'
45
+ ])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ if (!attributes.is_a?(Hash))
52
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::UpdateSmtpAccessOptions` initialize method"
53
+ end
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h|
57
+ if (!self.class.attribute_map.key?(k.to_sym))
58
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::UpdateSmtpAccessOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ end
60
+ h[k.to_sym] = v
61
+ }
62
+
63
+ if attributes.key?(:'smtp_username')
64
+ self.smtp_username = attributes[:'smtp_username']
65
+ end
66
+
67
+ if attributes.key?(:'smtp_password')
68
+ self.smtp_password = attributes[:'smtp_password']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = Array.new
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ true
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ smtp_username == o.smtp_username &&
91
+ smtp_password == o.smtp_password
92
+ end
93
+
94
+ # @see the `==` method
95
+ # @param [Object] Object to be compared
96
+ def eql?(o)
97
+ self == o
98
+ end
99
+
100
+ # Calculates hash code according to all attributes.
101
+ # @return [Integer] Hash code
102
+ def hash
103
+ [smtp_username, smtp_password].hash
104
+ end
105
+
106
+ # Builds the object from hash
107
+ # @param [Hash] attributes Model attributes in the form of hash
108
+ # @return [Object] Returns the model itself
109
+ def self.build_from_hash(attributes)
110
+ new.build_from_hash(attributes)
111
+ end
112
+
113
+ # Builds the object from hash
114
+ # @param [Hash] attributes Model attributes in the form of hash
115
+ # @return [Object] Returns the model itself
116
+ def build_from_hash(attributes)
117
+ return nil unless attributes.is_a?(Hash)
118
+ self.class.openapi_types.each_pair do |key, type|
119
+ if type =~ /\AArray<(.*)>/i
120
+ # check to ensure the input is an array given that the attribute
121
+ # is documented as an array but the input is not
122
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
123
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
124
+ end
125
+ elsif !attributes[self.class.attribute_map[key]].nil?
126
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
127
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
128
+ end
129
+
130
+ self
131
+ end
132
+
133
+ # Deserializes the data based on type
134
+ # @param string type Data type
135
+ # @param string value Value to be deserialized
136
+ # @return [Object] Deserialized data
137
+ def _deserialize(type, value)
138
+ case type.to_sym
139
+ when :DateTime
140
+ DateTime.parse(value)
141
+ when :Date
142
+ Date.parse(value)
143
+ when :String
144
+ value.to_s
145
+ when :Integer
146
+ value.to_i
147
+ when :Float
148
+ value.to_f
149
+ when :Boolean
150
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
151
+ true
152
+ else
153
+ false
154
+ end
155
+ when :Object
156
+ # generic object (usually a Hash), return directly
157
+ value
158
+ when /\AArray<(?<inner_type>.+)>\z/
159
+ inner_type = Regexp.last_match[:inner_type]
160
+ value.map { |v| _deserialize(inner_type, v) }
161
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
162
+ k_type = Regexp.last_match[:k_type]
163
+ v_type = Regexp.last_match[:v_type]
164
+ {}.tap do |hash|
165
+ value.each do |k, v|
166
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
167
+ end
168
+ end
169
+ else # model
170
+ MailSlurpClient.const_get(type).build_from_hash(value)
171
+ end
172
+ end
173
+
174
+ # Returns the string representation of the object
175
+ # @return [String] String presentation of the object
176
+ def to_s
177
+ to_hash.to_s
178
+ end
179
+
180
+ # to_body is an alias to to_hash (backward compatibility)
181
+ # @return [Hash] Returns the object in the form of hash
182
+ def to_body
183
+ to_hash
184
+ end
185
+
186
+ # Returns the object in the form of hash
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_hash
189
+ hash = {}
190
+ self.class.attribute_map.each_pair do |attr, param|
191
+ value = self.send(attr)
192
+ if value.nil?
193
+ is_nullable = self.class.openapi_nullable.include?(attr)
194
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
195
+ end
196
+
197
+ hash[param] = _to_hash(value)
198
+ end
199
+ hash
200
+ end
201
+
202
+ # Outputs non-array value in the form of hash
203
+ # For object, use to_hash. Otherwise, just return the value
204
+ # @param [Object] value Any valid value
205
+ # @return [Hash] Returns the value in the form of hash
206
+ def _to_hash(value)
207
+ if value.is_a?(Array)
208
+ value.compact.map { |v| _to_hash(v) }
209
+ elsif value.is_a?(Hash)
210
+ {}.tap do |hash|
211
+ value.each { |k, v| hash[k] = _to_hash(v) }
212
+ end
213
+ elsif value.respond_to? :to_hash
214
+ value.to_hash
215
+ else
216
+ value
217
+ end
218
+ end
219
+ end
220
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module MailSlurpClient
14
- VERSION = '15.19.13'
14
+ VERSION = '15.19.14'
15
15
  end
@@ -154,6 +154,7 @@ require 'mailslurp_client/models/imap_server_search_result'
154
154
  require 'mailslurp_client/models/imap_server_status_options'
155
155
  require 'mailslurp_client/models/imap_server_status_result'
156
156
  require 'mailslurp_client/models/imap_smtp_access_details'
157
+ require 'mailslurp_client/models/imap_smtp_access_servers'
157
158
  require 'mailslurp_client/models/imap_update_flags_options'
158
159
  require 'mailslurp_client/models/inbox_by_email_address_result'
159
160
  require 'mailslurp_client/models/inbox_by_name_result'
@@ -246,6 +247,7 @@ require 'mailslurp_client/models/sender'
246
247
  require 'mailslurp_client/models/sent_email_dto'
247
248
  require 'mailslurp_client/models/sent_email_projection'
248
249
  require 'mailslurp_client/models/sent_sms_dto'
250
+ require 'mailslurp_client/models/server_endpoints'
249
251
  require 'mailslurp_client/models/set_inbox_favourited_options'
250
252
  require 'mailslurp_client/models/simple_send_email_options'
251
253
  require 'mailslurp_client/models/sms_dto'
@@ -276,8 +278,10 @@ require 'mailslurp_client/models/unseen_error_count_dto'
276
278
  require 'mailslurp_client/models/update_alias_options'
277
279
  require 'mailslurp_client/models/update_domain_options'
278
280
  require 'mailslurp_client/models/update_group_contacts'
281
+ require 'mailslurp_client/models/update_imap_access_options'
279
282
  require 'mailslurp_client/models/update_inbox_options'
280
283
  require 'mailslurp_client/models/update_inbox_replier_options'
284
+ require 'mailslurp_client/models/update_smtp_access_options'
281
285
  require 'mailslurp_client/models/upload_attachment_options'
282
286
  require 'mailslurp_client/models/user_info_dto'
283
287
  require 'mailslurp_client/models/validate_email_address_list_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.19.13
4
+ version: 15.19.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - mailslurp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-03 00:00:00.000000000 Z
11
+ date: 2024-05-09 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
@@ -192,6 +192,7 @@ files:
192
192
  - lib/mailslurp_client/models/imap_server_status_options.rb
193
193
  - lib/mailslurp_client/models/imap_server_status_result.rb
194
194
  - lib/mailslurp_client/models/imap_smtp_access_details.rb
195
+ - lib/mailslurp_client/models/imap_smtp_access_servers.rb
195
196
  - lib/mailslurp_client/models/imap_update_flags_options.rb
196
197
  - lib/mailslurp_client/models/inbox_by_email_address_result.rb
197
198
  - lib/mailslurp_client/models/inbox_by_name_result.rb
@@ -285,6 +286,7 @@ files:
285
286
  - lib/mailslurp_client/models/sent_email_dto.rb
286
287
  - lib/mailslurp_client/models/sent_email_projection.rb
287
288
  - lib/mailslurp_client/models/sent_sms_dto.rb
289
+ - lib/mailslurp_client/models/server_endpoints.rb
288
290
  - lib/mailslurp_client/models/set_inbox_favourited_options.rb
289
291
  - lib/mailslurp_client/models/simple_send_email_options.rb
290
292
  - lib/mailslurp_client/models/sms_dto.rb
@@ -315,8 +317,10 @@ files:
315
317
  - lib/mailslurp_client/models/update_alias_options.rb
316
318
  - lib/mailslurp_client/models/update_domain_options.rb
317
319
  - lib/mailslurp_client/models/update_group_contacts.rb
320
+ - lib/mailslurp_client/models/update_imap_access_options.rb
318
321
  - lib/mailslurp_client/models/update_inbox_options.rb
319
322
  - lib/mailslurp_client/models/update_inbox_replier_options.rb
323
+ - lib/mailslurp_client/models/update_smtp_access_options.rb
320
324
  - lib/mailslurp_client/models/upload_attachment_options.rb
321
325
  - lib/mailslurp_client/models/user_info_dto.rb
322
326
  - lib/mailslurp_client/models/validate_email_address_list_options.rb