svix 1.43.0 → 1.45.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 (52) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/lib/svix/api/application_api.rb +14 -14
  4. data/lib/svix/api/authentication_api.rb +217 -13
  5. data/lib/svix/api/background_tasks_api.rb +4 -4
  6. data/lib/svix/api/broadcast_api.rb +2 -2
  7. data/lib/svix/api/endpoint_api.rb +45 -45
  8. data/lib/svix/api/environment_api.rb +2 -2
  9. data/lib/svix/api/environment_settings_api.rb +2 -2
  10. data/lib/svix/api/event_type_api.rb +12 -12
  11. data/lib/svix/api/events_api.rb +4 -4
  12. data/lib/svix/api/inbound_api.rb +2 -2
  13. data/lib/svix/api/message_api.rb +162 -26
  14. data/lib/svix/api/message_attempt_api.rb +6 -6
  15. data/lib/svix/api/statistics_api.rb +10 -10
  16. data/lib/svix/api/transformation_template_api.rb +24 -24
  17. data/lib/svix/endpoint_api.rb +1 -1
  18. data/lib/svix/message_api.rb +1 -1
  19. data/lib/svix/models/application_in.rb +1 -1
  20. data/lib/svix/models/{create_message_token_in.rb → create_token_in.rb} +3 -3
  21. data/lib/svix/models/endpoint_in.rb +3 -3
  22. data/lib/svix/models/endpoint_oauth_config_in.rb +1 -1
  23. data/lib/svix/models/endpoint_out.rb +3 -3
  24. data/lib/svix/models/endpoint_patch.rb +1 -1
  25. data/lib/svix/models/endpoint_secret_out.rb +1 -1
  26. data/lib/svix/models/endpoint_secret_rotate_in.rb +1 -1
  27. data/lib/svix/models/endpoint_update.rb +2 -2
  28. data/lib/svix/models/environment_in.rb +2 -4
  29. data/lib/svix/models/environment_out.rb +2 -4
  30. data/lib/svix/models/environment_settings_out.rb +12 -1
  31. data/lib/svix/models/event_type_example_out.rb +2 -4
  32. data/lib/svix/models/event_type_from_open_api.rb +2 -4
  33. data/lib/svix/models/event_type_import_open_api_in.rb +2 -4
  34. data/lib/svix/models/event_type_in.rb +2 -4
  35. data/lib/svix/models/event_type_out.rb +2 -4
  36. data/lib/svix/models/event_type_patch.rb +2 -4
  37. data/lib/svix/models/event_type_update.rb +2 -4
  38. data/lib/svix/models/message_broadcast_in.rb +2 -2
  39. data/lib/svix/models/message_endpoint_out.rb +3 -3
  40. data/lib/svix/models/message_in.rb +0 -9
  41. data/lib/svix/models/operational_webhook_endpoint_in.rb +2 -2
  42. data/lib/svix/models/operational_webhook_endpoint_out.rb +2 -2
  43. data/lib/svix/models/operational_webhook_endpoint_secret_in.rb +1 -1
  44. data/lib/svix/models/operational_webhook_endpoint_secret_out.rb +1 -1
  45. data/lib/svix/models/operational_webhook_endpoint_update.rb +1 -1
  46. data/lib/svix/models/rotate_poller_token_in.rb +280 -0
  47. data/lib/svix/models/sink_in.rb +2 -1
  48. data/lib/svix/models/sink_in_one_of4.rb +255 -0
  49. data/lib/svix/models/sink_out.rb +2 -1
  50. data/lib/svix/models/transformation_http_method.rb +2 -1
  51. data/lib/svix/version.rb +1 -1
  52. metadata +5 -3
@@ -0,0 +1,280 @@
1
+ =begin
2
+ #Svix API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.1.1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.9.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Svix
17
+ class RotatePollerTokenIn
18
+ # How long the token will be valid for, in seconds. Can be up to 31,536,000 seconds (1 year).
19
+ attr_accessor :expiry
20
+
21
+ # Updates the previous token's expiration, in seconds. If set to 0, the old token will immediately be revoked. Must be between 0 and 86,400 seconds (1 day). Defaults to 300 seconds (5 minutes).
22
+ attr_accessor :old_token_expiry
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'expiry' => :'expiry',
28
+ :'old_token_expiry' => :'oldTokenExpiry'
29
+ }
30
+ end
31
+
32
+ # Returns all the JSON keys this model knows about
33
+ def self.acceptable_attributes
34
+ attribute_map.values
35
+ end
36
+
37
+ # Attribute type mapping.
38
+ def self.openapi_types
39
+ {
40
+ :'expiry' => :'Integer',
41
+ :'old_token_expiry' => :'Integer'
42
+ }
43
+ end
44
+
45
+ # List of attributes with nullable: true
46
+ def self.openapi_nullable
47
+ Set.new([
48
+ :'expiry',
49
+ ])
50
+ end
51
+
52
+ # Initializes the object
53
+ # @param [Hash] attributes Model attributes in the form of hash
54
+ def initialize(attributes = {})
55
+ if (!attributes.is_a?(Hash))
56
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Svix::RotatePollerTokenIn` initialize method"
57
+ end
58
+
59
+ # check to see if the attribute exists and convert string to symbol for hash key
60
+ attributes = attributes.each_with_object({}) { |(k, v), h|
61
+ if (!self.class.attribute_map.key?(k.to_sym))
62
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Svix::RotatePollerTokenIn`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ end
64
+ h[k.to_sym] = v
65
+ }
66
+
67
+ if attributes.key?(:'expiry')
68
+ self.expiry = attributes[:'expiry']
69
+ end
70
+
71
+ if attributes.key?(:'old_token_expiry')
72
+ self.old_token_expiry = attributes[:'old_token_expiry']
73
+ else
74
+ self.old_token_expiry = 300
75
+ end
76
+ end
77
+
78
+ # Show invalid properties with the reasons. Usually used together with valid?
79
+ # @return Array for valid properties with the reasons
80
+ def list_invalid_properties
81
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
82
+ invalid_properties = Array.new
83
+ if !@expiry.nil? && @expiry > 31536000
84
+ invalid_properties.push('invalid value for "expiry", must be smaller than or equal to 31536000.')
85
+ end
86
+
87
+ if !@expiry.nil? && @expiry < 1
88
+ invalid_properties.push('invalid value for "expiry", must be greater than or equal to 1.')
89
+ end
90
+
91
+ if !@old_token_expiry.nil? && @old_token_expiry > 86400
92
+ invalid_properties.push('invalid value for "old_token_expiry", must be smaller than or equal to 86400.')
93
+ end
94
+
95
+ if !@old_token_expiry.nil? && @old_token_expiry < 0
96
+ invalid_properties.push('invalid value for "old_token_expiry", must be greater than or equal to 0.')
97
+ end
98
+
99
+ invalid_properties
100
+ end
101
+
102
+ # Check to see if the all the properties in the model are valid
103
+ # @return true if the model is valid
104
+ def valid?
105
+ warn '[DEPRECATED] the `valid?` method is obsolete'
106
+ return false if !@expiry.nil? && @expiry > 31536000
107
+ return false if !@expiry.nil? && @expiry < 1
108
+ return false if !@old_token_expiry.nil? && @old_token_expiry > 86400
109
+ return false if !@old_token_expiry.nil? && @old_token_expiry < 0
110
+ true
111
+ end
112
+
113
+ # Custom attribute writer method with validation
114
+ # @param [Object] expiry Value to be assigned
115
+ def expiry=(expiry)
116
+ if !expiry.nil? && expiry > 31536000
117
+ fail ArgumentError, 'invalid value for "expiry", must be smaller than or equal to 31536000.'
118
+ end
119
+
120
+ if !expiry.nil? && expiry < 1
121
+ fail ArgumentError, 'invalid value for "expiry", must be greater than or equal to 1.'
122
+ end
123
+
124
+ @expiry = expiry
125
+ end
126
+
127
+ # Custom attribute writer method with validation
128
+ # @param [Object] old_token_expiry Value to be assigned
129
+ def old_token_expiry=(old_token_expiry)
130
+ if old_token_expiry.nil?
131
+ fail ArgumentError, 'old_token_expiry cannot be nil'
132
+ end
133
+
134
+ if old_token_expiry > 86400
135
+ fail ArgumentError, 'invalid value for "old_token_expiry", must be smaller than or equal to 86400.'
136
+ end
137
+
138
+ if old_token_expiry < 0
139
+ fail ArgumentError, 'invalid value for "old_token_expiry", must be greater than or equal to 0.'
140
+ end
141
+
142
+ @old_token_expiry = old_token_expiry
143
+ end
144
+
145
+ # Checks equality by comparing each attribute.
146
+ # @param [Object] Object to be compared
147
+ def ==(o)
148
+ return true if self.equal?(o)
149
+ self.class == o.class &&
150
+ expiry == o.expiry &&
151
+ old_token_expiry == o.old_token_expiry
152
+ end
153
+
154
+ # @see the `==` method
155
+ # @param [Object] Object to be compared
156
+ def eql?(o)
157
+ self == o
158
+ end
159
+
160
+ # Calculates hash code according to all attributes.
161
+ # @return [Integer] Hash code
162
+ def hash
163
+ [expiry, old_token_expiry].hash
164
+ end
165
+
166
+ # Builds the object from hash
167
+ # @param [Hash] attributes Model attributes in the form of hash
168
+ # @return [Object] Returns the model itself
169
+ def self.build_from_hash(attributes)
170
+ return nil unless attributes.is_a?(Hash)
171
+ attributes = attributes.transform_keys(&:to_sym)
172
+ transformed_hash = {}
173
+ openapi_types.each_pair do |key, type|
174
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
175
+ transformed_hash["#{key}"] = nil
176
+ elsif type =~ /\AArray<(.*)>/i
177
+ # check to ensure the input is an array given that the attribute
178
+ # is documented as an array but the input is not
179
+ if attributes[attribute_map[key]].is_a?(Array)
180
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
181
+ end
182
+ elsif !attributes[attribute_map[key]].nil?
183
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
184
+ end
185
+ end
186
+ new(transformed_hash)
187
+ end
188
+
189
+ # Deserializes the data based on type
190
+ # @param string type Data type
191
+ # @param string value Value to be deserialized
192
+ # @return [Object] Deserialized data
193
+ def self._deserialize(type, value)
194
+ case type.to_sym
195
+ when :Time
196
+ Time.parse(value)
197
+ when :Date
198
+ Date.parse(value)
199
+ when :String
200
+ value.to_s
201
+ when :Integer
202
+ value.to_i
203
+ when :Float
204
+ value.to_f
205
+ when :Boolean
206
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
207
+ true
208
+ else
209
+ false
210
+ end
211
+ when :Object
212
+ # generic object (usually a Hash), return directly
213
+ value
214
+ when /\AArray<(?<inner_type>.+)>\z/
215
+ inner_type = Regexp.last_match[:inner_type]
216
+ value.map { |v| _deserialize(inner_type, v) }
217
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
218
+ k_type = Regexp.last_match[:k_type]
219
+ v_type = Regexp.last_match[:v_type]
220
+ {}.tap do |hash|
221
+ value.each do |k, v|
222
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
223
+ end
224
+ end
225
+ else # model
226
+ # models (e.g. Pet) or oneOf
227
+ klass = Svix.const_get(type)
228
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
229
+ end
230
+ end
231
+
232
+ # Returns the string representation of the object
233
+ # @return [String] String presentation of the object
234
+ def to_s
235
+ to_hash.to_s
236
+ end
237
+
238
+ # to_body is an alias to to_hash (backward compatibility)
239
+ # @return [Hash] Returns the object in the form of hash
240
+ def to_body
241
+ to_hash
242
+ end
243
+
244
+ # Returns the object in the form of hash
245
+ # @return [Hash] Returns the object in the form of hash
246
+ def to_hash
247
+ hash = {}
248
+ self.class.attribute_map.each_pair do |attr, param|
249
+ value = self.send(attr)
250
+ if value.nil?
251
+ is_nullable = self.class.openapi_nullable.include?(attr)
252
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
253
+ end
254
+
255
+ hash[param] = _to_hash(value)
256
+ end
257
+ hash
258
+ end
259
+
260
+ # Outputs non-array value in the form of hash
261
+ # For object, use to_hash. Otherwise, just return the value
262
+ # @param [Object] value Any valid value
263
+ # @return [Hash] Returns the value in the form of hash
264
+ def _to_hash(value)
265
+ if value.is_a?(Array)
266
+ value.compact.map { |v| _to_hash(v) }
267
+ elsif value.is_a?(Hash)
268
+ {}.tap do |hash|
269
+ value.each { |k, v| hash[k] = _to_hash(v) }
270
+ end
271
+ elsif value.respond_to? :to_hash
272
+ value.to_hash
273
+ else
274
+ value
275
+ end
276
+ end
277
+
278
+ end
279
+
280
+ end
@@ -22,7 +22,8 @@ module Svix
22
22
  :'SinkInOneOf',
23
23
  :'SinkInOneOf1',
24
24
  :'SinkInOneOf2',
25
- :'SinkInOneOf3'
25
+ :'SinkInOneOf3',
26
+ :'SinkInOneOf4'
26
27
  ]
27
28
  end
28
29
 
@@ -0,0 +1,255 @@
1
+ =begin
2
+ #Svix API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.1.1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.9.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Svix
17
+ class SinkInOneOf4
18
+ attr_accessor :type
19
+
20
+ class EnumAttributeValidator
21
+ attr_reader :datatype
22
+ attr_reader :allowable_values
23
+
24
+ def initialize(datatype, allowable_values)
25
+ @allowable_values = allowable_values.map do |value|
26
+ case datatype.to_s
27
+ when /Integer/i
28
+ value.to_i
29
+ when /Float/i
30
+ value.to_f
31
+ else
32
+ value
33
+ end
34
+ end
35
+ end
36
+
37
+ def valid?(value)
38
+ !value || allowable_values.include?(value)
39
+ end
40
+ end
41
+
42
+ # Attribute mapping from ruby-style variable name to JSON key.
43
+ def self.attribute_map
44
+ {
45
+ :'type' => :'type'
46
+ }
47
+ end
48
+
49
+ # Returns all the JSON keys this model knows about
50
+ def self.acceptable_attributes
51
+ attribute_map.values
52
+ end
53
+
54
+ # Attribute type mapping.
55
+ def self.openapi_types
56
+ {
57
+ :'type' => :'String'
58
+ }
59
+ end
60
+
61
+ # List of attributes with nullable: true
62
+ def self.openapi_nullable
63
+ Set.new([
64
+ ])
65
+ end
66
+
67
+ # Initializes the object
68
+ # @param [Hash] attributes Model attributes in the form of hash
69
+ def initialize(attributes = {})
70
+ if (!attributes.is_a?(Hash))
71
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Svix::SinkInOneOf4` initialize method"
72
+ end
73
+
74
+ # check to see if the attribute exists and convert string to symbol for hash key
75
+ attributes = attributes.each_with_object({}) { |(k, v), h|
76
+ if (!self.class.attribute_map.key?(k.to_sym))
77
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Svix::SinkInOneOf4`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
78
+ end
79
+ h[k.to_sym] = v
80
+ }
81
+
82
+ if attributes.key?(:'type')
83
+ self.type = attributes[:'type']
84
+ else
85
+ self.type = nil
86
+ end
87
+ end
88
+
89
+ # Show invalid properties with the reasons. Usually used together with valid?
90
+ # @return Array for valid properties with the reasons
91
+ def list_invalid_properties
92
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
93
+ invalid_properties = Array.new
94
+ if @type.nil?
95
+ invalid_properties.push('invalid value for "type", type cannot be nil.')
96
+ end
97
+
98
+ invalid_properties
99
+ end
100
+
101
+ # Check to see if the all the properties in the model are valid
102
+ # @return true if the model is valid
103
+ def valid?
104
+ warn '[DEPRECATED] the `valid?` method is obsolete'
105
+ return false if @type.nil?
106
+ type_validator = EnumAttributeValidator.new('String', ["eventStream"])
107
+ return false unless type_validator.valid?(@type)
108
+ true
109
+ end
110
+
111
+ # Custom attribute writer method checking allowed values (enum).
112
+ # @param [Object] type Object to be assigned
113
+ def type=(type)
114
+ validator = EnumAttributeValidator.new('String', ["eventStream"])
115
+ unless validator.valid?(type)
116
+ fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
117
+ end
118
+ @type = type
119
+ end
120
+
121
+ # Checks equality by comparing each attribute.
122
+ # @param [Object] Object to be compared
123
+ def ==(o)
124
+ return true if self.equal?(o)
125
+ self.class == o.class &&
126
+ type == o.type
127
+ end
128
+
129
+ # @see the `==` method
130
+ # @param [Object] Object to be compared
131
+ def eql?(o)
132
+ self == o
133
+ end
134
+
135
+ # Calculates hash code according to all attributes.
136
+ # @return [Integer] Hash code
137
+ def hash
138
+ [type].hash
139
+ end
140
+
141
+ # Builds the object from hash
142
+ # @param [Hash] attributes Model attributes in the form of hash
143
+ # @return [Object] Returns the model itself
144
+ def self.build_from_hash(attributes)
145
+ return nil unless attributes.is_a?(Hash)
146
+ attributes = attributes.transform_keys(&:to_sym)
147
+ transformed_hash = {}
148
+ openapi_types.each_pair do |key, type|
149
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
150
+ transformed_hash["#{key}"] = nil
151
+ elsif type =~ /\AArray<(.*)>/i
152
+ # check to ensure the input is an array given that the attribute
153
+ # is documented as an array but the input is not
154
+ if attributes[attribute_map[key]].is_a?(Array)
155
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
156
+ end
157
+ elsif !attributes[attribute_map[key]].nil?
158
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
159
+ end
160
+ end
161
+ new(transformed_hash)
162
+ end
163
+
164
+ # Deserializes the data based on type
165
+ # @param string type Data type
166
+ # @param string value Value to be deserialized
167
+ # @return [Object] Deserialized data
168
+ def self._deserialize(type, value)
169
+ case type.to_sym
170
+ when :Time
171
+ Time.parse(value)
172
+ when :Date
173
+ Date.parse(value)
174
+ when :String
175
+ value.to_s
176
+ when :Integer
177
+ value.to_i
178
+ when :Float
179
+ value.to_f
180
+ when :Boolean
181
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
182
+ true
183
+ else
184
+ false
185
+ end
186
+ when :Object
187
+ # generic object (usually a Hash), return directly
188
+ value
189
+ when /\AArray<(?<inner_type>.+)>\z/
190
+ inner_type = Regexp.last_match[:inner_type]
191
+ value.map { |v| _deserialize(inner_type, v) }
192
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
193
+ k_type = Regexp.last_match[:k_type]
194
+ v_type = Regexp.last_match[:v_type]
195
+ {}.tap do |hash|
196
+ value.each do |k, v|
197
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
198
+ end
199
+ end
200
+ else # model
201
+ # models (e.g. Pet) or oneOf
202
+ klass = Svix.const_get(type)
203
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
204
+ end
205
+ end
206
+
207
+ # Returns the string representation of the object
208
+ # @return [String] String presentation of the object
209
+ def to_s
210
+ to_hash.to_s
211
+ end
212
+
213
+ # to_body is an alias to to_hash (backward compatibility)
214
+ # @return [Hash] Returns the object in the form of hash
215
+ def to_body
216
+ to_hash
217
+ end
218
+
219
+ # Returns the object in the form of hash
220
+ # @return [Hash] Returns the object in the form of hash
221
+ def to_hash
222
+ hash = {}
223
+ self.class.attribute_map.each_pair do |attr, param|
224
+ value = self.send(attr)
225
+ if value.nil?
226
+ is_nullable = self.class.openapi_nullable.include?(attr)
227
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
228
+ end
229
+
230
+ hash[param] = _to_hash(value)
231
+ end
232
+ hash
233
+ end
234
+
235
+ # Outputs non-array value in the form of hash
236
+ # For object, use to_hash. Otherwise, just return the value
237
+ # @param [Object] value Any valid value
238
+ # @return [Hash] Returns the value in the form of hash
239
+ def _to_hash(value)
240
+ if value.is_a?(Array)
241
+ value.compact.map { |v| _to_hash(v) }
242
+ elsif value.is_a?(Hash)
243
+ {}.tap do |hash|
244
+ value.each { |k, v| hash[k] = _to_hash(v) }
245
+ end
246
+ elsif value.respond_to? :to_hash
247
+ value.to_hash
248
+ else
249
+ value
250
+ end
251
+ end
252
+
253
+ end
254
+
255
+ end
@@ -22,7 +22,8 @@ module Svix
22
22
  :'SinkInOneOf',
23
23
  :'SinkInOneOf1',
24
24
  :'SinkInOneOf2',
25
- :'SinkInOneOf3'
25
+ :'SinkInOneOf3',
26
+ :'SinkInOneOf4'
26
27
  ]
27
28
  end
28
29
 
@@ -17,9 +17,10 @@ module Svix
17
17
  class TransformationHttpMethod
18
18
  POST = "POST".freeze
19
19
  PUT = "PUT".freeze
20
+ PATCH = "PATCH".freeze
20
21
 
21
22
  def self.all_vars
22
- @all_vars ||= [POST, PUT].freeze
23
+ @all_vars ||= [POST, PUT, PATCH].freeze
23
24
  end
24
25
 
25
26
  # Builds the enum from string
data/lib/svix/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Svix
4
- VERSION = "1.43.0"
4
+ VERSION = "1.45.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svix
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svix
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2025-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -126,8 +126,8 @@ files:
126
126
  - lib/svix/models/completion_choice.rb
127
127
  - lib/svix/models/completion_message.rb
128
128
  - lib/svix/models/count_out.rb
129
- - lib/svix/models/create_message_token_in.rb
130
129
  - lib/svix/models/create_stream_in.rb
130
+ - lib/svix/models/create_token_in.rb
131
131
  - lib/svix/models/custom_color_palette.rb
132
132
  - lib/svix/models/custom_strings_override.rb
133
133
  - lib/svix/models/custom_theme_override.rb
@@ -246,6 +246,7 @@ files:
246
246
  - lib/svix/models/replay_in.rb
247
247
  - lib/svix/models/replay_out.rb
248
248
  - lib/svix/models/retry_schedule_in_out.rb
249
+ - lib/svix/models/rotate_poller_token_in.rb
249
250
  - lib/svix/models/rotated_url_out.rb
250
251
  - lib/svix/models/s3_config.rb
251
252
  - lib/svix/models/sink_http_config.rb
@@ -254,6 +255,7 @@ files:
254
255
  - lib/svix/models/sink_in_one_of1.rb
255
256
  - lib/svix/models/sink_in_one_of2.rb
256
257
  - lib/svix/models/sink_in_one_of3.rb
258
+ - lib/svix/models/sink_in_one_of4.rb
257
259
  - lib/svix/models/sink_otel_v1_config.rb
258
260
  - lib/svix/models/sink_out.rb
259
261
  - lib/svix/models/sink_payload_format.rb