mailslurp_client 15.21.1 → 16.0.4

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.
@@ -0,0 +1,557 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. 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
+ # JSON output schema for structured content repsonses. This schema dictates the format that an AI should use when responding to your instructions.
17
+ class StructuredOutputSchema
18
+ attr_accessor :any_of
19
+
20
+ attr_accessor :default
21
+
22
+ # Provide a description of the schema to help the AI understand the schema.
23
+ attr_accessor :description
24
+
25
+ # When using type string and format enum pass a collection of enum values here.
26
+ attr_accessor :enum
27
+
28
+ attr_accessor :example
29
+
30
+ # Format for string types. Can be null, date-time or enum.
31
+ attr_accessor :format
32
+
33
+ attr_accessor :items
34
+
35
+ attr_accessor :max_items
36
+
37
+ attr_accessor :min_items
38
+
39
+ attr_accessor :max_length
40
+
41
+ attr_accessor :min_length
42
+
43
+ attr_accessor :pattern
44
+
45
+ # Properties of an OBJECT schema. These are key value pairs where the key is the property name and the value is the schema for that property.
46
+ attr_accessor :properties
47
+
48
+ # Pass an array of property names to specify the order of properties in the generated JSON object if required.
49
+ attr_accessor :property_ordering
50
+
51
+ attr_accessor :required
52
+
53
+ attr_accessor :max_properties
54
+
55
+ attr_accessor :min_properties
56
+
57
+ attr_accessor :maximum
58
+
59
+ attr_accessor :minimum
60
+
61
+ attr_accessor :nullable
62
+
63
+ attr_accessor :title
64
+
65
+ # Primitive JSON schema types with a fallback CUSTOM for unknown values.
66
+ attr_accessor :type
67
+
68
+ class EnumAttributeValidator
69
+ attr_reader :datatype
70
+ attr_reader :allowable_values
71
+
72
+ def initialize(datatype, allowable_values)
73
+ @allowable_values = allowable_values.map do |value|
74
+ case datatype.to_s
75
+ when /Integer/i
76
+ value.to_i
77
+ when /Float/i
78
+ value.to_f
79
+ else
80
+ value
81
+ end
82
+ end
83
+ end
84
+
85
+ def valid?(value)
86
+ !value || allowable_values.include?(value)
87
+ end
88
+ end
89
+
90
+ # Attribute mapping from ruby-style variable name to JSON key.
91
+ def self.attribute_map
92
+ {
93
+ :'any_of' => :'anyOf',
94
+ :'default' => :'default',
95
+ :'description' => :'description',
96
+ :'enum' => :'enum',
97
+ :'example' => :'example',
98
+ :'format' => :'format',
99
+ :'items' => :'items',
100
+ :'max_items' => :'maxItems',
101
+ :'min_items' => :'minItems',
102
+ :'max_length' => :'maxLength',
103
+ :'min_length' => :'minLength',
104
+ :'pattern' => :'pattern',
105
+ :'properties' => :'properties',
106
+ :'property_ordering' => :'propertyOrdering',
107
+ :'required' => :'required',
108
+ :'max_properties' => :'maxProperties',
109
+ :'min_properties' => :'minProperties',
110
+ :'maximum' => :'maximum',
111
+ :'minimum' => :'minimum',
112
+ :'nullable' => :'nullable',
113
+ :'title' => :'title',
114
+ :'type' => :'type'
115
+ }
116
+ end
117
+
118
+ # Attribute type mapping.
119
+ def self.openapi_types
120
+ {
121
+ :'any_of' => :'Array<StructuredOutputSchema>',
122
+ :'default' => :'Object',
123
+ :'description' => :'String',
124
+ :'enum' => :'Array<String>',
125
+ :'example' => :'Object',
126
+ :'format' => :'String',
127
+ :'items' => :'StructuredOutputSchema',
128
+ :'max_items' => :'Integer',
129
+ :'min_items' => :'Integer',
130
+ :'max_length' => :'Integer',
131
+ :'min_length' => :'Integer',
132
+ :'pattern' => :'String',
133
+ :'properties' => :'Hash<String, StructuredOutputSchema>',
134
+ :'property_ordering' => :'Array<String>',
135
+ :'required' => :'Array<String>',
136
+ :'max_properties' => :'Integer',
137
+ :'min_properties' => :'Integer',
138
+ :'maximum' => :'Float',
139
+ :'minimum' => :'Float',
140
+ :'nullable' => :'Boolean',
141
+ :'title' => :'String',
142
+ :'type' => :'String'
143
+ }
144
+ end
145
+
146
+ # List of attributes with nullable: true
147
+ def self.openapi_nullable
148
+ Set.new([
149
+ :'any_of',
150
+ :'default',
151
+ :'description',
152
+ :'enum',
153
+ :'example',
154
+ :'format',
155
+ :'max_items',
156
+ :'min_items',
157
+ :'max_length',
158
+ :'min_length',
159
+ :'pattern',
160
+ :'properties',
161
+ :'property_ordering',
162
+ :'required',
163
+ :'max_properties',
164
+ :'min_properties',
165
+ :'maximum',
166
+ :'minimum',
167
+ :'nullable',
168
+ :'title',
169
+ :'type'
170
+ ])
171
+ end
172
+
173
+ # Initializes the object
174
+ # @param [Hash] attributes Model attributes in the form of hash
175
+ def initialize(attributes = {})
176
+ if (!attributes.is_a?(Hash))
177
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::StructuredOutputSchema` initialize method"
178
+ end
179
+
180
+ # check to see if the attribute exists and convert string to symbol for hash key
181
+ attributes = attributes.each_with_object({}) { |(k, v), h|
182
+ if (!self.class.attribute_map.key?(k.to_sym))
183
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::StructuredOutputSchema`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
184
+ end
185
+ h[k.to_sym] = v
186
+ }
187
+
188
+ if attributes.key?(:'any_of')
189
+ if (value = attributes[:'any_of']).is_a?(Array)
190
+ self.any_of = value
191
+ end
192
+ end
193
+
194
+ if attributes.key?(:'default')
195
+ self.default = attributes[:'default']
196
+ end
197
+
198
+ if attributes.key?(:'description')
199
+ self.description = attributes[:'description']
200
+ end
201
+
202
+ if attributes.key?(:'enum')
203
+ if (value = attributes[:'enum']).is_a?(Array)
204
+ self.enum = value
205
+ end
206
+ end
207
+
208
+ if attributes.key?(:'example')
209
+ self.example = attributes[:'example']
210
+ end
211
+
212
+ if attributes.key?(:'format')
213
+ self.format = attributes[:'format']
214
+ end
215
+
216
+ if attributes.key?(:'items')
217
+ self.items = attributes[:'items']
218
+ end
219
+
220
+ if attributes.key?(:'max_items')
221
+ self.max_items = attributes[:'max_items']
222
+ end
223
+
224
+ if attributes.key?(:'min_items')
225
+ self.min_items = attributes[:'min_items']
226
+ end
227
+
228
+ if attributes.key?(:'max_length')
229
+ self.max_length = attributes[:'max_length']
230
+ end
231
+
232
+ if attributes.key?(:'min_length')
233
+ self.min_length = attributes[:'min_length']
234
+ end
235
+
236
+ if attributes.key?(:'pattern')
237
+ self.pattern = attributes[:'pattern']
238
+ end
239
+
240
+ if attributes.key?(:'properties')
241
+ if (value = attributes[:'properties']).is_a?(Hash)
242
+ self.properties = value
243
+ end
244
+ end
245
+
246
+ if attributes.key?(:'property_ordering')
247
+ if (value = attributes[:'property_ordering']).is_a?(Array)
248
+ self.property_ordering = value
249
+ end
250
+ end
251
+
252
+ if attributes.key?(:'required')
253
+ if (value = attributes[:'required']).is_a?(Array)
254
+ self.required = value
255
+ end
256
+ end
257
+
258
+ if attributes.key?(:'max_properties')
259
+ self.max_properties = attributes[:'max_properties']
260
+ end
261
+
262
+ if attributes.key?(:'min_properties')
263
+ self.min_properties = attributes[:'min_properties']
264
+ end
265
+
266
+ if attributes.key?(:'maximum')
267
+ self.maximum = attributes[:'maximum']
268
+ end
269
+
270
+ if attributes.key?(:'minimum')
271
+ self.minimum = attributes[:'minimum']
272
+ end
273
+
274
+ if attributes.key?(:'nullable')
275
+ self.nullable = attributes[:'nullable']
276
+ end
277
+
278
+ if attributes.key?(:'title')
279
+ self.title = attributes[:'title']
280
+ end
281
+
282
+ if attributes.key?(:'type')
283
+ self.type = attributes[:'type']
284
+ end
285
+ end
286
+
287
+ # Show invalid properties with the reasons. Usually used together with valid?
288
+ # @return Array for valid properties with the reasons
289
+ def list_invalid_properties
290
+ invalid_properties = Array.new
291
+ if !@max_items.nil? && @max_items < 0
292
+ invalid_properties.push('invalid value for "max_items", must be greater than or equal to 0.')
293
+ end
294
+
295
+ if !@min_items.nil? && @min_items < 0
296
+ invalid_properties.push('invalid value for "min_items", must be greater than or equal to 0.')
297
+ end
298
+
299
+ if !@max_length.nil? && @max_length < 0
300
+ invalid_properties.push('invalid value for "max_length", must be greater than or equal to 0.')
301
+ end
302
+
303
+ if !@min_length.nil? && @min_length < 0
304
+ invalid_properties.push('invalid value for "min_length", must be greater than or equal to 0.')
305
+ end
306
+
307
+ if !@max_properties.nil? && @max_properties < 0
308
+ invalid_properties.push('invalid value for "max_properties", must be greater than or equal to 0.')
309
+ end
310
+
311
+ if !@min_properties.nil? && @min_properties < 0
312
+ invalid_properties.push('invalid value for "min_properties", must be greater than or equal to 0.')
313
+ end
314
+
315
+ invalid_properties
316
+ end
317
+
318
+ # Check to see if the all the properties in the model are valid
319
+ # @return true if the model is valid
320
+ def valid?
321
+ return false if !@max_items.nil? && @max_items < 0
322
+ return false if !@min_items.nil? && @min_items < 0
323
+ return false if !@max_length.nil? && @max_length < 0
324
+ return false if !@min_length.nil? && @min_length < 0
325
+ return false if !@max_properties.nil? && @max_properties < 0
326
+ return false if !@min_properties.nil? && @min_properties < 0
327
+ type_validator = EnumAttributeValidator.new('String', ["string", "number", "integer", "boolean", "object", "array", "null"])
328
+ return false unless type_validator.valid?(@type)
329
+ true
330
+ end
331
+
332
+ # Custom attribute writer method with validation
333
+ # @param [Object] max_items Value to be assigned
334
+ def max_items=(max_items)
335
+ if !max_items.nil? && max_items < 0
336
+ fail ArgumentError, 'invalid value for "max_items", must be greater than or equal to 0.'
337
+ end
338
+
339
+ @max_items = max_items
340
+ end
341
+
342
+ # Custom attribute writer method with validation
343
+ # @param [Object] min_items Value to be assigned
344
+ def min_items=(min_items)
345
+ if !min_items.nil? && min_items < 0
346
+ fail ArgumentError, 'invalid value for "min_items", must be greater than or equal to 0.'
347
+ end
348
+
349
+ @min_items = min_items
350
+ end
351
+
352
+ # Custom attribute writer method with validation
353
+ # @param [Object] max_length Value to be assigned
354
+ def max_length=(max_length)
355
+ if !max_length.nil? && max_length < 0
356
+ fail ArgumentError, 'invalid value for "max_length", must be greater than or equal to 0.'
357
+ end
358
+
359
+ @max_length = max_length
360
+ end
361
+
362
+ # Custom attribute writer method with validation
363
+ # @param [Object] min_length Value to be assigned
364
+ def min_length=(min_length)
365
+ if !min_length.nil? && min_length < 0
366
+ fail ArgumentError, 'invalid value for "min_length", must be greater than or equal to 0.'
367
+ end
368
+
369
+ @min_length = min_length
370
+ end
371
+
372
+ # Custom attribute writer method with validation
373
+ # @param [Object] max_properties Value to be assigned
374
+ def max_properties=(max_properties)
375
+ if !max_properties.nil? && max_properties < 0
376
+ fail ArgumentError, 'invalid value for "max_properties", must be greater than or equal to 0.'
377
+ end
378
+
379
+ @max_properties = max_properties
380
+ end
381
+
382
+ # Custom attribute writer method with validation
383
+ # @param [Object] min_properties Value to be assigned
384
+ def min_properties=(min_properties)
385
+ if !min_properties.nil? && min_properties < 0
386
+ fail ArgumentError, 'invalid value for "min_properties", must be greater than or equal to 0.'
387
+ end
388
+
389
+ @min_properties = min_properties
390
+ end
391
+
392
+ # Custom attribute writer method checking allowed values (enum).
393
+ # @param [Object] type Object to be assigned
394
+ def type=(type)
395
+ validator = EnumAttributeValidator.new('String', ["string", "number", "integer", "boolean", "object", "array", "null"])
396
+ unless validator.valid?(type)
397
+ fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
398
+ end
399
+ @type = type
400
+ end
401
+
402
+ # Checks equality by comparing each attribute.
403
+ # @param [Object] Object to be compared
404
+ def ==(o)
405
+ return true if self.equal?(o)
406
+ self.class == o.class &&
407
+ any_of == o.any_of &&
408
+ default == o.default &&
409
+ description == o.description &&
410
+ enum == o.enum &&
411
+ example == o.example &&
412
+ format == o.format &&
413
+ items == o.items &&
414
+ max_items == o.max_items &&
415
+ min_items == o.min_items &&
416
+ max_length == o.max_length &&
417
+ min_length == o.min_length &&
418
+ pattern == o.pattern &&
419
+ properties == o.properties &&
420
+ property_ordering == o.property_ordering &&
421
+ required == o.required &&
422
+ max_properties == o.max_properties &&
423
+ min_properties == o.min_properties &&
424
+ maximum == o.maximum &&
425
+ minimum == o.minimum &&
426
+ nullable == o.nullable &&
427
+ title == o.title &&
428
+ type == o.type
429
+ end
430
+
431
+ # @see the `==` method
432
+ # @param [Object] Object to be compared
433
+ def eql?(o)
434
+ self == o
435
+ end
436
+
437
+ # Calculates hash code according to all attributes.
438
+ # @return [Integer] Hash code
439
+ def hash
440
+ [any_of, default, description, enum, example, format, items, max_items, min_items, max_length, min_length, pattern, properties, property_ordering, required, max_properties, min_properties, maximum, minimum, nullable, title, type].hash
441
+ end
442
+
443
+ # Builds the object from hash
444
+ # @param [Hash] attributes Model attributes in the form of hash
445
+ # @return [Object] Returns the model itself
446
+ def self.build_from_hash(attributes)
447
+ new.build_from_hash(attributes)
448
+ end
449
+
450
+ # Builds the object from hash
451
+ # @param [Hash] attributes Model attributes in the form of hash
452
+ # @return [Object] Returns the model itself
453
+ def build_from_hash(attributes)
454
+ return nil unless attributes.is_a?(Hash)
455
+ self.class.openapi_types.each_pair do |key, type|
456
+ if type =~ /\AArray<(.*)>/i
457
+ # check to ensure the input is an array given that the attribute
458
+ # is documented as an array but the input is not
459
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
460
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
461
+ end
462
+ elsif !attributes[self.class.attribute_map[key]].nil?
463
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
464
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
465
+ end
466
+
467
+ self
468
+ end
469
+
470
+ # Deserializes the data based on type
471
+ # @param string type Data type
472
+ # @param string value Value to be deserialized
473
+ # @return [Object] Deserialized data
474
+ def _deserialize(type, value)
475
+ case type.to_sym
476
+ when :DateTime
477
+ DateTime.parse(value)
478
+ when :Date
479
+ Date.parse(value)
480
+ when :String
481
+ value.to_s
482
+ when :Integer
483
+ value.to_i
484
+ when :Float
485
+ value.to_f
486
+ when :Boolean
487
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
488
+ true
489
+ else
490
+ false
491
+ end
492
+ when :Object
493
+ # generic object (usually a Hash), return directly
494
+ value
495
+ when /\AArray<(?<inner_type>.+)>\z/
496
+ inner_type = Regexp.last_match[:inner_type]
497
+ value.map { |v| _deserialize(inner_type, v) }
498
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
499
+ k_type = Regexp.last_match[:k_type]
500
+ v_type = Regexp.last_match[:v_type]
501
+ {}.tap do |hash|
502
+ value.each do |k, v|
503
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
504
+ end
505
+ end
506
+ else # model
507
+ MailSlurpClient.const_get(type).build_from_hash(value)
508
+ end
509
+ end
510
+
511
+ # Returns the string representation of the object
512
+ # @return [String] String presentation of the object
513
+ def to_s
514
+ to_hash.to_s
515
+ end
516
+
517
+ # to_body is an alias to to_hash (backward compatibility)
518
+ # @return [Hash] Returns the object in the form of hash
519
+ def to_body
520
+ to_hash
521
+ end
522
+
523
+ # Returns the object in the form of hash
524
+ # @return [Hash] Returns the object in the form of hash
525
+ def to_hash
526
+ hash = {}
527
+ self.class.attribute_map.each_pair do |attr, param|
528
+ value = self.send(attr)
529
+ if value.nil?
530
+ is_nullable = self.class.openapi_nullable.include?(attr)
531
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
532
+ end
533
+
534
+ hash[param] = _to_hash(value)
535
+ end
536
+ hash
537
+ end
538
+
539
+ # Outputs non-array value in the form of hash
540
+ # For object, use to_hash. Otherwise, just return the value
541
+ # @param [Object] value Any valid value
542
+ # @return [Hash] Returns the value in the form of hash
543
+ def _to_hash(value)
544
+ if value.is_a?(Array)
545
+ value.compact.map { |v| _to_hash(v) }
546
+ elsif value.is_a?(Hash)
547
+ {}.tap do |hash|
548
+ value.each { |k, v| hash[k] = _to_hash(v) }
549
+ end
550
+ elsif value.respond_to? :to_hash
551
+ value.to_hash
552
+ else
553
+ value
554
+ end
555
+ end
556
+ end
557
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module MailSlurpClient
14
- VERSION = '15.21.1'
14
+ VERSION = '16.0.4'
15
15
  end
@@ -149,6 +149,7 @@ require 'mailslurp_client/models/generate_dmarc_record_options'
149
149
  require 'mailslurp_client/models/generate_dmarc_record_results'
150
150
  require 'mailslurp_client/models/generate_mta_sts_record_options'
151
151
  require 'mailslurp_client/models/generate_mta_sts_record_results'
152
+ require 'mailslurp_client/models/generate_structured_content_email_options'
152
153
  require 'mailslurp_client/models/generate_tls_reporting_record_options'
153
154
  require 'mailslurp_client/models/generate_tls_reporting_record_results'
154
155
  require 'mailslurp_client/models/get_email_screenshot_options'
@@ -318,6 +319,8 @@ require 'mailslurp_client/models/sms_send_options'
318
319
  require 'mailslurp_client/models/smtp_access_details'
319
320
  require 'mailslurp_client/models/sort_object'
320
321
  require 'mailslurp_client/models/spelling_issue'
322
+ require 'mailslurp_client/models/structured_content_result'
323
+ require 'mailslurp_client/models/structured_output_schema'
321
324
  require 'mailslurp_client/models/template_dto'
322
325
  require 'mailslurp_client/models/template_preview'
323
326
  require 'mailslurp_client/models/template_projection'
@@ -377,6 +380,7 @@ require 'mailslurp_client/models/webhook_test_response'
377
380
  require 'mailslurp_client/models/webhook_test_result'
378
381
 
379
382
  # APIs
383
+ require 'mailslurp_client/api/ai_controller_api'
380
384
  require 'mailslurp_client/api/alias_controller_api'
381
385
  require 'mailslurp_client/api/attachment_controller_api'
382
386
  require 'mailslurp_client/api/bounce_controller_api'
@@ -404,7 +408,6 @@ require 'mailslurp_client/api/o_auth_connection_api'
404
408
  require 'mailslurp_client/api/phone_controller_api'
405
409
  require 'mailslurp_client/api/sent_emails_controller_api'
406
410
  require 'mailslurp_client/api/sms_controller_api'
407
- require 'mailslurp_client/api/sse_controller_api'
408
411
  require 'mailslurp_client/api/template_controller_api'
409
412
  require 'mailslurp_client/api/tools_controller_api'
410
413
  require 'mailslurp_client/api/tracking_controller_api'
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.21.1
4
+ version: 16.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mailslurp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-11 00:00:00.000000000 Z
11
+ date: 2025-05-22 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
@@ -23,6 +23,7 @@ files:
23
23
  - SECURITY.md
24
24
  - SUPPORT.md
25
25
  - lib/mailslurp_client.rb
26
+ - lib/mailslurp_client/api/ai_controller_api.rb
26
27
  - lib/mailslurp_client/api/alias_controller_api.rb
27
28
  - lib/mailslurp_client/api/attachment_controller_api.rb
28
29
  - lib/mailslurp_client/api/bounce_controller_api.rb
@@ -50,7 +51,6 @@ files:
50
51
  - lib/mailslurp_client/api/phone_controller_api.rb
51
52
  - lib/mailslurp_client/api/sent_emails_controller_api.rb
52
53
  - lib/mailslurp_client/api/sms_controller_api.rb
53
- - lib/mailslurp_client/api/sse_controller_api.rb
54
54
  - lib/mailslurp_client/api/template_controller_api.rb
55
55
  - lib/mailslurp_client/api/tools_controller_api.rb
56
56
  - lib/mailslurp_client/api/tracking_controller_api.rb
@@ -192,6 +192,7 @@ files:
192
192
  - lib/mailslurp_client/models/generate_dmarc_record_results.rb
193
193
  - lib/mailslurp_client/models/generate_mta_sts_record_options.rb
194
194
  - lib/mailslurp_client/models/generate_mta_sts_record_results.rb
195
+ - lib/mailslurp_client/models/generate_structured_content_email_options.rb
195
196
  - lib/mailslurp_client/models/generate_tls_reporting_record_options.rb
196
197
  - lib/mailslurp_client/models/generate_tls_reporting_record_results.rb
197
198
  - lib/mailslurp_client/models/get_email_screenshot_options.rb
@@ -361,6 +362,8 @@ files:
361
362
  - lib/mailslurp_client/models/smtp_access_details.rb
362
363
  - lib/mailslurp_client/models/sort_object.rb
363
364
  - lib/mailslurp_client/models/spelling_issue.rb
365
+ - lib/mailslurp_client/models/structured_content_result.rb
366
+ - lib/mailslurp_client/models/structured_output_schema.rb
364
367
  - lib/mailslurp_client/models/template_dto.rb
365
368
  - lib/mailslurp_client/models/template_preview.rb
366
369
  - lib/mailslurp_client/models/template_projection.rb