svix 0.66.0 → 0.67.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d300df50ddfa25b537c607c2e12be972dc9011f6a8abc22f8c17936e1b5d1ec
4
- data.tar.gz: 41882c52cbd282cd42584018464924d56c4d3ab169c3786c4539ce3e0ab049e7
3
+ metadata.gz: f3262ab4750a03ccd1ca612b72cca510a5b53178584a93d0aec788142d569bea
4
+ data.tar.gz: 9b59bf35a2eff0310a1bac58f3eb165872ca67755e5c383366b8eb5836762e41
5
5
  SHA512:
6
- metadata.gz: 9c2b8101577188561126ae3dcc37e9da38f67aca8b0d28324e2ede3c265bf906616dce13019dcda54257c9d9c34937d1090ba6b885cb88274790cf5016ddc3b2
7
- data.tar.gz: 1c1744492897b3f60147de55c55a17b321bec1a61e190eecc176a6974aecbfa7b96e3563b226eca6bd0533637cf1d642a099cfae2350c6308a03c47e817f9ae3
6
+ metadata.gz: dcdce7470d83b02ece638173f8a67a2fbfee84fc955753b0e37cf2ba82e99b95155dfb660cc4f59f2a996387afff58284b3bd4ea788a81940003217d3fdb3f59
7
+ data.tar.gz: d68aa78d14f9bcb2e126879b8e8ed34f206c051cce68be5a6e795ec91f268d3d75be0dabccc0e17dcdc000cfb10a70d3d072235a5d0f5533bd48c8521cfc4a06
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- svix (0.66.0)
4
+ svix (0.67.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -31,6 +31,8 @@ module Svix
31
31
 
32
32
  attr_accessor :enable_integration_management
33
33
 
34
+ attr_accessor :enable_transformations
35
+
34
36
  # Attribute mapping from ruby-style variable name to JSON key.
35
37
  def self.attribute_map
36
38
  {
@@ -41,7 +43,8 @@ module Svix
41
43
  :'custom_logo_url' => :'customLogoUrl',
42
44
  :'custom_theme_override' => :'customThemeOverride',
43
45
  :'enable_channels' => :'enableChannels',
44
- :'enable_integration_management' => :'enableIntegrationManagement'
46
+ :'enable_integration_management' => :'enableIntegrationManagement',
47
+ :'enable_transformations' => :'enableTransformations'
45
48
  }
46
49
  end
47
50
 
@@ -60,7 +63,8 @@ module Svix
60
63
  :'custom_logo_url' => :'String',
61
64
  :'custom_theme_override' => :'CustomThemeOverride',
62
65
  :'enable_channels' => :'Boolean',
63
- :'enable_integration_management' => :'Boolean'
66
+ :'enable_integration_management' => :'Boolean',
67
+ :'enable_transformations' => :'Boolean'
64
68
  }
65
69
  end
66
70
 
@@ -123,6 +127,12 @@ module Svix
123
127
  else
124
128
  self.enable_integration_management = false
125
129
  end
130
+
131
+ if attributes.key?(:'enable_transformations')
132
+ self.enable_transformations = attributes[:'enable_transformations']
133
+ else
134
+ self.enable_transformations = false
135
+ end
126
136
  end
127
137
 
128
138
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -191,7 +201,8 @@ module Svix
191
201
  custom_logo_url == o.custom_logo_url &&
192
202
  custom_theme_override == o.custom_theme_override &&
193
203
  enable_channels == o.enable_channels &&
194
- enable_integration_management == o.enable_integration_management
204
+ enable_integration_management == o.enable_integration_management &&
205
+ enable_transformations == o.enable_transformations
195
206
  end
196
207
 
197
208
  # @see the `==` method
@@ -203,7 +214,7 @@ module Svix
203
214
  # Calculates hash code according to all attributes.
204
215
  # @return [Integer] Hash code
205
216
  def hash
206
- [color_palette_dark, color_palette_light, custom_color, custom_font_family, custom_logo_url, custom_theme_override, enable_channels, enable_integration_management].hash
217
+ [color_palette_dark, color_palette_light, custom_color, custom_font_family, custom_logo_url, custom_theme_override, enable_channels, enable_integration_management, enable_transformations].hash
207
218
  end
208
219
 
209
220
  # Builds the object from hash
@@ -37,6 +37,8 @@ module Svix
37
37
 
38
38
  attr_accessor :enable_integration_management
39
39
 
40
+ attr_accessor :enable_transformations
41
+
40
42
  attr_accessor :enforce_https
41
43
 
42
44
  attr_accessor :event_catalog_published
@@ -55,6 +57,7 @@ module Svix
55
57
  :'display_name' => :'displayName',
56
58
  :'enable_channels' => :'enableChannels',
57
59
  :'enable_integration_management' => :'enableIntegrationManagement',
60
+ :'enable_transformations' => :'enableTransformations',
58
61
  :'enforce_https' => :'enforceHttps',
59
62
  :'event_catalog_published' => :'eventCatalogPublished'
60
63
  }
@@ -79,6 +82,7 @@ module Svix
79
82
  :'display_name' => :'String',
80
83
  :'enable_channels' => :'Boolean',
81
84
  :'enable_integration_management' => :'Boolean',
85
+ :'enable_transformations' => :'Boolean',
82
86
  :'enforce_https' => :'Boolean',
83
87
  :'event_catalog_published' => :'Boolean'
84
88
  }
@@ -161,6 +165,12 @@ module Svix
161
165
  self.enable_integration_management = false
162
166
  end
163
167
 
168
+ if attributes.key?(:'enable_transformations')
169
+ self.enable_transformations = attributes[:'enable_transformations']
170
+ else
171
+ self.enable_transformations = false
172
+ end
173
+
164
174
  if attributes.key?(:'enforce_https')
165
175
  self.enforce_https = attributes[:'enforce_https']
166
176
  else
@@ -244,6 +254,7 @@ module Svix
244
254
  display_name == o.display_name &&
245
255
  enable_channels == o.enable_channels &&
246
256
  enable_integration_management == o.enable_integration_management &&
257
+ enable_transformations == o.enable_transformations &&
247
258
  enforce_https == o.enforce_https &&
248
259
  event_catalog_published == o.event_catalog_published
249
260
  end
@@ -257,7 +268,7 @@ module Svix
257
268
  # Calculates hash code according to all attributes.
258
269
  # @return [Integer] Hash code
259
270
  def hash
260
- [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enforce_https, event_catalog_published].hash
271
+ [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published].hash
261
272
  end
262
273
 
263
274
  # Builds the object from hash
@@ -37,6 +37,8 @@ module Svix
37
37
 
38
38
  attr_accessor :enable_integration_management
39
39
 
40
+ attr_accessor :enable_transformations
41
+
40
42
  attr_accessor :enforce_https
41
43
 
42
44
  attr_accessor :event_catalog_published
@@ -55,6 +57,7 @@ module Svix
55
57
  :'display_name' => :'displayName',
56
58
  :'enable_channels' => :'enableChannels',
57
59
  :'enable_integration_management' => :'enableIntegrationManagement',
60
+ :'enable_transformations' => :'enableTransformations',
58
61
  :'enforce_https' => :'enforceHttps',
59
62
  :'event_catalog_published' => :'eventCatalogPublished'
60
63
  }
@@ -79,6 +82,7 @@ module Svix
79
82
  :'display_name' => :'String',
80
83
  :'enable_channels' => :'Boolean',
81
84
  :'enable_integration_management' => :'Boolean',
85
+ :'enable_transformations' => :'Boolean',
82
86
  :'enforce_https' => :'Boolean',
83
87
  :'event_catalog_published' => :'Boolean'
84
88
  }
@@ -161,6 +165,12 @@ module Svix
161
165
  self.enable_integration_management = false
162
166
  end
163
167
 
168
+ if attributes.key?(:'enable_transformations')
169
+ self.enable_transformations = attributes[:'enable_transformations']
170
+ else
171
+ self.enable_transformations = false
172
+ end
173
+
164
174
  if attributes.key?(:'enforce_https')
165
175
  self.enforce_https = attributes[:'enforce_https']
166
176
  else
@@ -244,6 +254,7 @@ module Svix
244
254
  display_name == o.display_name &&
245
255
  enable_channels == o.enable_channels &&
246
256
  enable_integration_management == o.enable_integration_management &&
257
+ enable_transformations == o.enable_transformations &&
247
258
  enforce_https == o.enforce_https &&
248
259
  event_catalog_published == o.event_catalog_published
249
260
  end
@@ -257,7 +268,7 @@ module Svix
257
268
  # Calculates hash code according to all attributes.
258
269
  # @return [Integer] Hash code
259
270
  def hash
260
- [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enforce_https, event_catalog_published].hash
271
+ [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published].hash
261
272
  end
262
273
 
263
274
  # Builds the object from hash
data/lib/svix/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Svix
4
- VERSION = "0.66.0"
4
+ VERSION = "0.67.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: 0.66.0
4
+ version: 0.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svix
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-25 00:00:00.000000000 Z
11
+ date: 2022-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus