mailslurp_client 5.0.0 → 7.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client.rb +72 -7
  3. metadata +14 -271
  4. data/Gemfile +0 -8
  5. data/Gemfile.lock +0 -79
  6. data/LICENSE +0 -22
  7. data/README.md +0 -139
  8. data/Rakefile +0 -10
  9. data/docs/BasicAuthOptions.md +0 -9
  10. data/docs/BulkSendEmailOptions.md +0 -9
  11. data/docs/CommonOperationsApi.md +0 -499
  12. data/docs/CreateWebhookOptions.md +0 -10
  13. data/docs/Email.md +0 -24
  14. data/docs/EmailAnalysis.md +0 -12
  15. data/docs/EmailPreview.md +0 -13
  16. data/docs/ExtraOperationsApi.md +0 -1021
  17. data/docs/ForwardEmailOptions.md +0 -11
  18. data/docs/Inbox.md +0 -11
  19. data/docs/MatchOption.md +0 -10
  20. data/docs/MatchOptions.md +0 -8
  21. data/docs/SendEmailOptions.md +0 -18
  22. data/docs/UploadAttachmentOptions.md +0 -10
  23. data/docs/Webhook.md +0 -13
  24. data/git_push.sh +0 -55
  25. data/lib/mailslurp_client/api/common_operations_api.rb +0 -502
  26. data/lib/mailslurp_client/api/extra_operations_api.rb +0 -1054
  27. data/lib/mailslurp_client/api_client.rb +0 -389
  28. data/lib/mailslurp_client/api_error.rb +0 -38
  29. data/lib/mailslurp_client/configuration.rb +0 -251
  30. data/lib/mailslurp_client/models/basic_auth_options.rb +0 -202
  31. data/lib/mailslurp_client/models/bulk_send_email_options.rb +0 -201
  32. data/lib/mailslurp_client/models/create_webhook_options.rb +0 -202
  33. data/lib/mailslurp_client/models/email.rb +0 -368
  34. data/lib/mailslurp_client/models/email_analysis.rb +0 -245
  35. data/lib/mailslurp_client/models/email_preview.rb +0 -250
  36. data/lib/mailslurp_client/models/forward_email_options.rb +0 -222
  37. data/lib/mailslurp_client/models/inbox.rb +0 -212
  38. data/lib/mailslurp_client/models/match_option.rb +0 -250
  39. data/lib/mailslurp_client/models/match_options.rb +0 -187
  40. data/lib/mailslurp_client/models/send_email_options.rb +0 -297
  41. data/lib/mailslurp_client/models/upload_attachment_options.rb +0 -205
  42. data/lib/mailslurp_client/models/webhook.rb +0 -242
  43. data/lib/mailslurp_client/version.rb +0 -15
  44. data/mailslurp_client.gemspec +0 -45
  45. data/spec/api/common_operations_api_spec.rb +0 -95
  46. data/spec/api/extra_operations_api_spec.rb +0 -231
  47. data/spec/api_client_spec.rb +0 -226
  48. data/spec/configuration_spec.rb +0 -42
  49. data/spec/models/basic_auth_options_spec.rb +0 -47
  50. data/spec/models/bulk_send_email_options_spec.rb +0 -47
  51. data/spec/models/create_webhook_options_spec.rb +0 -53
  52. data/spec/models/email_analysis_spec.rb +0 -65
  53. data/spec/models/email_preview_spec.rb +0 -47
  54. data/spec/models/email_spec.rb +0 -125
  55. data/spec/models/forward_email_options_spec.rb +0 -59
  56. data/spec/models/inbox_spec.rb +0 -59
  57. data/spec/models/match_option_spec.rb +0 -61
  58. data/spec/models/match_options_spec.rb +0 -41
  59. data/spec/models/send_email_options_spec.rb +0 -89
  60. data/spec/models/upload_attachment_options_spec.rb +0 -53
  61. data/spec/models/webhook_spec.rb +0 -71
  62. data/spec/spec_helper.rb +0 -111
@@ -1,187 +0,0 @@
1
- =begin
2
- #MailSlurp API
3
-
4
- #For documentation see [developer guide](https://www.mailslurp.com/developers). [Create an account](https://app.mailslurp.com) in the MailSlurp Dashboard to [view your API Key](https://app). For all bugs, feature requests, or help please [see support](https://www.mailslurp.com/support/).
5
-
6
- OpenAPI spec version: 0.0.1-alpha
7
- Contact: contact@mailslurp.dev
8
- Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 3.3.4
10
-
11
- =end
12
-
13
- require 'date'
14
-
15
- module MailSlurpClient
16
- # Optional filter for matching emails based on fields
17
- class MatchOptions
18
- # 1 or more match options. Options are additive so if one does not match the email is excluded from results
19
- attr_accessor :matches
20
-
21
- # Attribute mapping from ruby-style variable name to JSON key.
22
- def self.attribute_map
23
- {
24
- :'matches' => :'matches'
25
- }
26
- end
27
-
28
- # Attribute type mapping.
29
- def self.openapi_types
30
- {
31
- :'matches' => :'Array<MatchOption>'
32
- }
33
- end
34
-
35
- # Initializes the object
36
- # @param [Hash] attributes Model attributes in the form of hash
37
- def initialize(attributes = {})
38
- return unless attributes.is_a?(Hash)
39
-
40
- # convert string to symbol for hash key
41
- attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
42
-
43
- if attributes.has_key?(:'matches')
44
- if (value = attributes[:'matches']).is_a?(Array)
45
- self.matches = value
46
- end
47
- end
48
- end
49
-
50
- # Show invalid properties with the reasons. Usually used together with valid?
51
- # @return Array for valid properties with the reasons
52
- def list_invalid_properties
53
- invalid_properties = Array.new
54
- invalid_properties
55
- end
56
-
57
- # Check to see if the all the properties in the model are valid
58
- # @return true if the model is valid
59
- def valid?
60
- true
61
- end
62
-
63
- # Checks equality by comparing each attribute.
64
- # @param [Object] Object to be compared
65
- def ==(o)
66
- return true if self.equal?(o)
67
- self.class == o.class &&
68
- matches == o.matches
69
- end
70
-
71
- # @see the `==` method
72
- # @param [Object] Object to be compared
73
- def eql?(o)
74
- self == o
75
- end
76
-
77
- # Calculates hash code according to all attributes.
78
- # @return [Fixnum] Hash code
79
- def hash
80
- [matches].hash
81
- end
82
-
83
- # Builds the object from hash
84
- # @param [Hash] attributes Model attributes in the form of hash
85
- # @return [Object] Returns the model itself
86
- def build_from_hash(attributes)
87
- return nil unless attributes.is_a?(Hash)
88
- self.class.openapi_types.each_pair do |key, type|
89
- if type =~ /\AArray<(.*)>/i
90
- # check to ensure the input is an array given that the the attribute
91
- # is documented as an array but the input is not
92
- if attributes[self.class.attribute_map[key]].is_a?(Array)
93
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
94
- end
95
- elsif !attributes[self.class.attribute_map[key]].nil?
96
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
97
- end # or else data not found in attributes(hash), not an issue as the data can be optional
98
- end
99
-
100
- self
101
- end
102
-
103
- # Deserializes the data based on type
104
- # @param string type Data type
105
- # @param string value Value to be deserialized
106
- # @return [Object] Deserialized data
107
- def _deserialize(type, value)
108
- case type.to_sym
109
- when :DateTime
110
- DateTime.parse(value)
111
- when :Date
112
- Date.parse(value)
113
- when :String
114
- value.to_s
115
- when :Integer
116
- value.to_i
117
- when :Float
118
- value.to_f
119
- when :BOOLEAN
120
- if value.to_s =~ /\A(true|t|yes|y|1)\z/i
121
- true
122
- else
123
- false
124
- end
125
- when :Object
126
- # generic object (usually a Hash), return directly
127
- value
128
- when /\AArray<(?<inner_type>.+)>\z/
129
- inner_type = Regexp.last_match[:inner_type]
130
- value.map { |v| _deserialize(inner_type, v) }
131
- when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
132
- k_type = Regexp.last_match[:k_type]
133
- v_type = Regexp.last_match[:v_type]
134
- {}.tap do |hash|
135
- value.each do |k, v|
136
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
137
- end
138
- end
139
- else # model
140
- temp_model = MailSlurpClient.const_get(type).new
141
- temp_model.build_from_hash(value)
142
- end
143
- end
144
-
145
- # Returns the string representation of the object
146
- # @return [String] String presentation of the object
147
- def to_s
148
- to_hash.to_s
149
- end
150
-
151
- # to_body is an alias to to_hash (backward compatibility)
152
- # @return [Hash] Returns the object in the form of hash
153
- def to_body
154
- to_hash
155
- end
156
-
157
- # Returns the object in the form of hash
158
- # @return [Hash] Returns the object in the form of hash
159
- def to_hash
160
- hash = {}
161
- self.class.attribute_map.each_pair do |attr, param|
162
- value = self.send(attr)
163
- next if value.nil?
164
- hash[param] = _to_hash(value)
165
- end
166
- hash
167
- end
168
-
169
- # Outputs non-array value in the form of hash
170
- # For object, use to_hash. Otherwise, just return the value
171
- # @param [Object] value Any valid value
172
- # @return [Hash] Returns the value in the form of hash
173
- def _to_hash(value)
174
- if value.is_a?(Array)
175
- value.compact.map { |v| _to_hash(v) }
176
- elsif value.is_a?(Hash)
177
- {}.tap do |hash|
178
- value.each { |k, v| hash[k] = _to_hash(v) }
179
- end
180
- elsif value.respond_to? :to_hash
181
- value.to_hash
182
- else
183
- value
184
- end
185
- end
186
- end
187
- end
@@ -1,297 +0,0 @@
1
- =begin
2
- #MailSlurp API
3
-
4
- #For documentation see [developer guide](https://www.mailslurp.com/developers). [Create an account](https://app.mailslurp.com) in the MailSlurp Dashboard to [view your API Key](https://app). For all bugs, feature requests, or help please [see support](https://www.mailslurp.com/support/).
5
-
6
- OpenAPI spec version: 0.0.1-alpha
7
- Contact: contact@mailslurp.dev
8
- Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 3.3.4
10
-
11
- =end
12
-
13
- require 'date'
14
-
15
- module MailSlurpClient
16
- # Options for sending an email message from an inbox
17
- class SendEmailOptions
18
- # Optional list of attachment IDs to send with this email. You must first upload each attachment separately in order to obtain attachment IDs
19
- attr_accessor :attachments
20
-
21
- # Optional list of bcc destination email addresses
22
- attr_accessor :bcc
23
-
24
- # Contents of email. If HTML set isHTML to true. You can use moustache templates here if you provide a templateVariables option
25
- attr_accessor :body
26
-
27
- # Optional list of cc destination email addresses
28
- attr_accessor :cc
29
-
30
- # Optional charset
31
- attr_accessor :charset
32
-
33
- # Optional from address. If not set source inbox address will be used
34
- attr_accessor :from
35
-
36
- attr_accessor :html
37
-
38
- # Optional replyTo header
39
- attr_accessor :reply_to
40
-
41
- # Optional email subject line
42
- attr_accessor :subject
43
-
44
- # Optional map of template variables. Will replace moustache syntax variables in subject or body with the associated values
45
- attr_accessor :template_variables
46
-
47
- # List of destination email addresses. Even single recipients must be in array form.
48
- attr_accessor :to
49
-
50
- # Attribute mapping from ruby-style variable name to JSON key.
51
- def self.attribute_map
52
- {
53
- :'attachments' => :'attachments',
54
- :'bcc' => :'bcc',
55
- :'body' => :'body',
56
- :'cc' => :'cc',
57
- :'charset' => :'charset',
58
- :'from' => :'from',
59
- :'html' => :'html',
60
- :'reply_to' => :'replyTo',
61
- :'subject' => :'subject',
62
- :'template_variables' => :'templateVariables',
63
- :'to' => :'to'
64
- }
65
- end
66
-
67
- # Attribute type mapping.
68
- def self.openapi_types
69
- {
70
- :'attachments' => :'Array<String>',
71
- :'bcc' => :'Array<String>',
72
- :'body' => :'String',
73
- :'cc' => :'Array<String>',
74
- :'charset' => :'String',
75
- :'from' => :'String',
76
- :'html' => :'BOOLEAN',
77
- :'reply_to' => :'String',
78
- :'subject' => :'String',
79
- :'template_variables' => :'Object',
80
- :'to' => :'Array<String>'
81
- }
82
- end
83
-
84
- # Initializes the object
85
- # @param [Hash] attributes Model attributes in the form of hash
86
- def initialize(attributes = {})
87
- return unless attributes.is_a?(Hash)
88
-
89
- # convert string to symbol for hash key
90
- attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
91
-
92
- if attributes.has_key?(:'attachments')
93
- if (value = attributes[:'attachments']).is_a?(Array)
94
- self.attachments = value
95
- end
96
- end
97
-
98
- if attributes.has_key?(:'bcc')
99
- if (value = attributes[:'bcc']).is_a?(Array)
100
- self.bcc = value
101
- end
102
- end
103
-
104
- if attributes.has_key?(:'body')
105
- self.body = attributes[:'body']
106
- end
107
-
108
- if attributes.has_key?(:'cc')
109
- if (value = attributes[:'cc']).is_a?(Array)
110
- self.cc = value
111
- end
112
- end
113
-
114
- if attributes.has_key?(:'charset')
115
- self.charset = attributes[:'charset']
116
- end
117
-
118
- if attributes.has_key?(:'from')
119
- self.from = attributes[:'from']
120
- end
121
-
122
- if attributes.has_key?(:'html')
123
- self.html = attributes[:'html']
124
- end
125
-
126
- if attributes.has_key?(:'replyTo')
127
- self.reply_to = attributes[:'replyTo']
128
- end
129
-
130
- if attributes.has_key?(:'subject')
131
- self.subject = attributes[:'subject']
132
- end
133
-
134
- if attributes.has_key?(:'templateVariables')
135
- self.template_variables = attributes[:'templateVariables']
136
- end
137
-
138
- if attributes.has_key?(:'to')
139
- if (value = attributes[:'to']).is_a?(Array)
140
- self.to = value
141
- end
142
- end
143
- end
144
-
145
- # Show invalid properties with the reasons. Usually used together with valid?
146
- # @return Array for valid properties with the reasons
147
- def list_invalid_properties
148
- invalid_properties = Array.new
149
- if @to.nil?
150
- invalid_properties.push('invalid value for "to", to cannot be nil.')
151
- end
152
-
153
- invalid_properties
154
- end
155
-
156
- # Check to see if the all the properties in the model are valid
157
- # @return true if the model is valid
158
- def valid?
159
- return false if @to.nil?
160
- true
161
- end
162
-
163
- # Checks equality by comparing each attribute.
164
- # @param [Object] Object to be compared
165
- def ==(o)
166
- return true if self.equal?(o)
167
- self.class == o.class &&
168
- attachments == o.attachments &&
169
- bcc == o.bcc &&
170
- body == o.body &&
171
- cc == o.cc &&
172
- charset == o.charset &&
173
- from == o.from &&
174
- html == o.html &&
175
- reply_to == o.reply_to &&
176
- subject == o.subject &&
177
- template_variables == o.template_variables &&
178
- to == o.to
179
- end
180
-
181
- # @see the `==` method
182
- # @param [Object] Object to be compared
183
- def eql?(o)
184
- self == o
185
- end
186
-
187
- # Calculates hash code according to all attributes.
188
- # @return [Fixnum] Hash code
189
- def hash
190
- [attachments, bcc, body, cc, charset, from, html, reply_to, subject, template_variables, to].hash
191
- end
192
-
193
- # Builds the object from hash
194
- # @param [Hash] attributes Model attributes in the form of hash
195
- # @return [Object] Returns the model itself
196
- def build_from_hash(attributes)
197
- return nil unless attributes.is_a?(Hash)
198
- self.class.openapi_types.each_pair do |key, type|
199
- if type =~ /\AArray<(.*)>/i
200
- # check to ensure the input is an array given that the the attribute
201
- # is documented as an array but the input is not
202
- if attributes[self.class.attribute_map[key]].is_a?(Array)
203
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
204
- end
205
- elsif !attributes[self.class.attribute_map[key]].nil?
206
- self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
207
- end # or else data not found in attributes(hash), not an issue as the data can be optional
208
- end
209
-
210
- self
211
- end
212
-
213
- # Deserializes the data based on type
214
- # @param string type Data type
215
- # @param string value Value to be deserialized
216
- # @return [Object] Deserialized data
217
- def _deserialize(type, value)
218
- case type.to_sym
219
- when :DateTime
220
- DateTime.parse(value)
221
- when :Date
222
- Date.parse(value)
223
- when :String
224
- value.to_s
225
- when :Integer
226
- value.to_i
227
- when :Float
228
- value.to_f
229
- when :BOOLEAN
230
- if value.to_s =~ /\A(true|t|yes|y|1)\z/i
231
- true
232
- else
233
- false
234
- end
235
- when :Object
236
- # generic object (usually a Hash), return directly
237
- value
238
- when /\AArray<(?<inner_type>.+)>\z/
239
- inner_type = Regexp.last_match[:inner_type]
240
- value.map { |v| _deserialize(inner_type, v) }
241
- when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
242
- k_type = Regexp.last_match[:k_type]
243
- v_type = Regexp.last_match[:v_type]
244
- {}.tap do |hash|
245
- value.each do |k, v|
246
- hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
247
- end
248
- end
249
- else # model
250
- temp_model = MailSlurpClient.const_get(type).new
251
- temp_model.build_from_hash(value)
252
- end
253
- end
254
-
255
- # Returns the string representation of the object
256
- # @return [String] String presentation of the object
257
- def to_s
258
- to_hash.to_s
259
- end
260
-
261
- # to_body is an alias to to_hash (backward compatibility)
262
- # @return [Hash] Returns the object in the form of hash
263
- def to_body
264
- to_hash
265
- end
266
-
267
- # Returns the object in the form of hash
268
- # @return [Hash] Returns the object in the form of hash
269
- def to_hash
270
- hash = {}
271
- self.class.attribute_map.each_pair do |attr, param|
272
- value = self.send(attr)
273
- next if value.nil?
274
- hash[param] = _to_hash(value)
275
- end
276
- hash
277
- end
278
-
279
- # Outputs non-array value in the form of hash
280
- # For object, use to_hash. Otherwise, just return the value
281
- # @param [Object] value Any valid value
282
- # @return [Hash] Returns the value in the form of hash
283
- def _to_hash(value)
284
- if value.is_a?(Array)
285
- value.compact.map { |v| _to_hash(v) }
286
- elsif value.is_a?(Hash)
287
- {}.tap do |hash|
288
- value.each { |k, v| hash[k] = _to_hash(v) }
289
- end
290
- elsif value.respond_to? :to_hash
291
- value.to_hash
292
- else
293
- value
294
- end
295
- end
296
- end
297
- end