svix 1.20.0 → 1.21.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/svix/models/environment_settings_out.rb +15 -4
- data/lib/svix/models/settings_in.rb +15 -4
- data/lib/svix/models/settings_out.rb +15 -4
- data/lib/svix/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: ce379d8b22e30667b94ce51b9bd2ac12b3479e62e8c6ecef87b7b8d8f4b3743e
         | 
| 4 | 
            +
              data.tar.gz: 72c78232666eb75235ce22e9acf8563acfcdef0089760de109170286ae73cb0f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9585c4c43da9f934c8f9d811058a18a9bef7fb055438f1c7f09de157451c3c658ef3df73ca0b9332af3e982ac2b630dac8bd3a3724886f2066a4ab921a26a727
         | 
| 7 | 
            +
              data.tar.gz: 8b9b6dd783db790f0eda302f506abfcdd2051c195b736941e9d6c5d7a22e7f3124de3ca34cc14eb82adcd27e1b610a40c3add254274f13f3359a8e814eaf09b2
         | 
    
        data/Gemfile.lock
    CHANGED
    
    
| @@ -39,6 +39,8 @@ module Svix | |
| 39 39 |  | 
| 40 40 | 
             
                attr_accessor :enable_transformations
         | 
| 41 41 |  | 
| 42 | 
            +
                attr_accessor :show_use_svix_play
         | 
| 43 | 
            +
             | 
| 42 44 | 
             
                # Attribute mapping from ruby-style variable name to JSON key.
         | 
| 43 45 | 
             
                def self.attribute_map
         | 
| 44 46 | 
             
                  {
         | 
| @@ -53,7 +55,8 @@ module Svix | |
| 53 55 | 
             
                    :'enable_channels' => :'enableChannels',
         | 
| 54 56 | 
             
                    :'enable_integration_management' => :'enableIntegrationManagement',
         | 
| 55 57 | 
             
                    :'enable_message_tags' => :'enableMessageTags',
         | 
| 56 | 
            -
                    :'enable_transformations' => :'enableTransformations'
         | 
| 58 | 
            +
                    :'enable_transformations' => :'enableTransformations',
         | 
| 59 | 
            +
                    :'show_use_svix_play' => :'showUseSvixPlay'
         | 
| 57 60 | 
             
                  }
         | 
| 58 61 | 
             
                end
         | 
| 59 62 |  | 
| @@ -76,7 +79,8 @@ module Svix | |
| 76 79 | 
             
                    :'enable_channels' => :'Boolean',
         | 
| 77 80 | 
             
                    :'enable_integration_management' => :'Boolean',
         | 
| 78 81 | 
             
                    :'enable_message_tags' => :'Boolean',
         | 
| 79 | 
            -
                    :'enable_transformations' => :'Boolean'
         | 
| 82 | 
            +
                    :'enable_transformations' => :'Boolean',
         | 
| 83 | 
            +
                    :'show_use_svix_play' => :'Boolean'
         | 
| 80 84 | 
             
                  }
         | 
| 81 85 | 
             
                end
         | 
| 82 86 |  | 
| @@ -160,6 +164,12 @@ module Svix | |
| 160 164 | 
             
                  else
         | 
| 161 165 | 
             
                    self.enable_transformations = false
         | 
| 162 166 | 
             
                  end
         | 
| 167 | 
            +
             | 
| 168 | 
            +
                  if attributes.key?(:'show_use_svix_play')
         | 
| 169 | 
            +
                    self.show_use_svix_play = attributes[:'show_use_svix_play']
         | 
| 170 | 
            +
                  else
         | 
| 171 | 
            +
                    self.show_use_svix_play = true
         | 
| 172 | 
            +
                  end
         | 
| 163 173 | 
             
                end
         | 
| 164 174 |  | 
| 165 175 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -256,7 +266,8 @@ module Svix | |
| 256 266 | 
             
                      enable_channels == o.enable_channels &&
         | 
| 257 267 | 
             
                      enable_integration_management == o.enable_integration_management &&
         | 
| 258 268 | 
             
                      enable_message_tags == o.enable_message_tags &&
         | 
| 259 | 
            -
                      enable_transformations == o.enable_transformations
         | 
| 269 | 
            +
                      enable_transformations == o.enable_transformations &&
         | 
| 270 | 
            +
                      show_use_svix_play == o.show_use_svix_play
         | 
| 260 271 | 
             
                end
         | 
| 261 272 |  | 
| 262 273 | 
             
                # @see the `==` method
         | 
| @@ -268,7 +279,7 @@ module Svix | |
| 268 279 | 
             
                # Calculates hash code according to all attributes.
         | 
| 269 280 | 
             
                # @return [Integer] Hash code
         | 
| 270 281 | 
             
                def hash
         | 
| 271 | 
            -
                  [color_palette_dark, color_palette_light, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, display_name, enable_channels, enable_integration_management, enable_message_tags, enable_transformations].hash
         | 
| 282 | 
            +
                  [color_palette_dark, color_palette_light, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, display_name, enable_channels, enable_integration_management, enable_message_tags, enable_transformations, show_use_svix_play].hash
         | 
| 272 283 | 
             
                end
         | 
| 273 284 |  | 
| 274 285 | 
             
                # Builds the object from hash
         | 
| @@ -47,6 +47,8 @@ module Svix | |
| 47 47 |  | 
| 48 48 | 
             
                attr_accessor :read_only
         | 
| 49 49 |  | 
| 50 | 
            +
                attr_accessor :show_use_svix_play
         | 
| 51 | 
            +
             | 
| 50 52 | 
             
                # Attribute mapping from ruby-style variable name to JSON key.
         | 
| 51 53 | 
             
                def self.attribute_map
         | 
| 52 54 | 
             
                  {
         | 
| @@ -65,7 +67,8 @@ module Svix | |
| 65 67 | 
             
                    :'enable_transformations' => :'enableTransformations',
         | 
| 66 68 | 
             
                    :'enforce_https' => :'enforceHttps',
         | 
| 67 69 | 
             
                    :'event_catalog_published' => :'eventCatalogPublished',
         | 
| 68 | 
            -
                    :'read_only' => :'readOnly'
         | 
| 70 | 
            +
                    :'read_only' => :'readOnly',
         | 
| 71 | 
            +
                    :'show_use_svix_play' => :'showUseSvixPlay'
         | 
| 69 72 | 
             
                  }
         | 
| 70 73 | 
             
                end
         | 
| 71 74 |  | 
| @@ -92,7 +95,8 @@ module Svix | |
| 92 95 | 
             
                    :'enable_transformations' => :'Boolean',
         | 
| 93 96 | 
             
                    :'enforce_https' => :'Boolean',
         | 
| 94 97 | 
             
                    :'event_catalog_published' => :'Boolean',
         | 
| 95 | 
            -
                    :'read_only' => :'Boolean'
         | 
| 98 | 
            +
                    :'read_only' => :'Boolean',
         | 
| 99 | 
            +
                    :'show_use_svix_play' => :'Boolean'
         | 
| 96 100 | 
             
                  }
         | 
| 97 101 | 
             
                end
         | 
| 98 102 |  | 
| @@ -199,6 +203,12 @@ module Svix | |
| 199 203 | 
             
                  else
         | 
| 200 204 | 
             
                    self.read_only = false
         | 
| 201 205 | 
             
                  end
         | 
| 206 | 
            +
             | 
| 207 | 
            +
                  if attributes.key?(:'show_use_svix_play')
         | 
| 208 | 
            +
                    self.show_use_svix_play = attributes[:'show_use_svix_play']
         | 
| 209 | 
            +
                  else
         | 
| 210 | 
            +
                    self.show_use_svix_play = true
         | 
| 211 | 
            +
                  end
         | 
| 202 212 | 
             
                end
         | 
| 203 213 |  | 
| 204 214 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -299,7 +309,8 @@ module Svix | |
| 299 309 | 
             
                      enable_transformations == o.enable_transformations &&
         | 
| 300 310 | 
             
                      enforce_https == o.enforce_https &&
         | 
| 301 311 | 
             
                      event_catalog_published == o.event_catalog_published &&
         | 
| 302 | 
            -
                      read_only == o.read_only
         | 
| 312 | 
            +
                      read_only == o.read_only &&
         | 
| 313 | 
            +
                      show_use_svix_play == o.show_use_svix_play
         | 
| 303 314 | 
             
                end
         | 
| 304 315 |  | 
| 305 316 | 
             
                # @see the `==` method
         | 
| @@ -311,7 +322,7 @@ module Svix | |
| 311 322 | 
             
                # Calculates hash code according to all attributes.
         | 
| 312 323 | 
             
                # @return [Integer] Hash code
         | 
| 313 324 | 
             
                def hash
         | 
| 314 | 
            -
                  [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published, read_only].hash
         | 
| 325 | 
            +
                  [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published, read_only, show_use_svix_play].hash
         | 
| 315 326 | 
             
                end
         | 
| 316 327 |  | 
| 317 328 | 
             
                # Builds the object from hash
         | 
| @@ -47,6 +47,8 @@ module Svix | |
| 47 47 |  | 
| 48 48 | 
             
                attr_accessor :read_only
         | 
| 49 49 |  | 
| 50 | 
            +
                attr_accessor :show_use_svix_play
         | 
| 51 | 
            +
             | 
| 50 52 | 
             
                # Attribute mapping from ruby-style variable name to JSON key.
         | 
| 51 53 | 
             
                def self.attribute_map
         | 
| 52 54 | 
             
                  {
         | 
| @@ -65,7 +67,8 @@ module Svix | |
| 65 67 | 
             
                    :'enable_transformations' => :'enableTransformations',
         | 
| 66 68 | 
             
                    :'enforce_https' => :'enforceHttps',
         | 
| 67 69 | 
             
                    :'event_catalog_published' => :'eventCatalogPublished',
         | 
| 68 | 
            -
                    :'read_only' => :'readOnly'
         | 
| 70 | 
            +
                    :'read_only' => :'readOnly',
         | 
| 71 | 
            +
                    :'show_use_svix_play' => :'showUseSvixPlay'
         | 
| 69 72 | 
             
                  }
         | 
| 70 73 | 
             
                end
         | 
| 71 74 |  | 
| @@ -92,7 +95,8 @@ module Svix | |
| 92 95 | 
             
                    :'enable_transformations' => :'Boolean',
         | 
| 93 96 | 
             
                    :'enforce_https' => :'Boolean',
         | 
| 94 97 | 
             
                    :'event_catalog_published' => :'Boolean',
         | 
| 95 | 
            -
                    :'read_only' => :'Boolean'
         | 
| 98 | 
            +
                    :'read_only' => :'Boolean',
         | 
| 99 | 
            +
                    :'show_use_svix_play' => :'Boolean'
         | 
| 96 100 | 
             
                  }
         | 
| 97 101 | 
             
                end
         | 
| 98 102 |  | 
| @@ -199,6 +203,12 @@ module Svix | |
| 199 203 | 
             
                  else
         | 
| 200 204 | 
             
                    self.read_only = false
         | 
| 201 205 | 
             
                  end
         | 
| 206 | 
            +
             | 
| 207 | 
            +
                  if attributes.key?(:'show_use_svix_play')
         | 
| 208 | 
            +
                    self.show_use_svix_play = attributes[:'show_use_svix_play']
         | 
| 209 | 
            +
                  else
         | 
| 210 | 
            +
                    self.show_use_svix_play = true
         | 
| 211 | 
            +
                  end
         | 
| 202 212 | 
             
                end
         | 
| 203 213 |  | 
| 204 214 | 
             
                # Show invalid properties with the reasons. Usually used together with valid?
         | 
| @@ -299,7 +309,8 @@ module Svix | |
| 299 309 | 
             
                      enable_transformations == o.enable_transformations &&
         | 
| 300 310 | 
             
                      enforce_https == o.enforce_https &&
         | 
| 301 311 | 
             
                      event_catalog_published == o.event_catalog_published &&
         | 
| 302 | 
            -
                      read_only == o.read_only
         | 
| 312 | 
            +
                      read_only == o.read_only &&
         | 
| 313 | 
            +
                      show_use_svix_play == o.show_use_svix_play
         | 
| 303 314 | 
             
                end
         | 
| 304 315 |  | 
| 305 316 | 
             
                # @see the `==` method
         | 
| @@ -311,7 +322,7 @@ module Svix | |
| 311 322 | 
             
                # Calculates hash code according to all attributes.
         | 
| 312 323 | 
             
                # @return [Integer] Hash code
         | 
| 313 324 | 
             
                def hash
         | 
| 314 | 
            -
                  [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published, read_only].hash
         | 
| 325 | 
            +
                  [color_palette_dark, color_palette_light, custom_base_font_size, custom_color, custom_font_family, custom_font_family_url, custom_logo_url, custom_theme_override, disable_endpoint_on_failure, display_name, enable_channels, enable_integration_management, enable_transformations, enforce_https, event_catalog_published, read_only, show_use_svix_play].hash
         | 
| 315 326 | 
             
                end
         | 
| 316 327 |  | 
| 317 328 | 
             
                # Builds the object from hash
         | 
    
        data/lib/svix/version.rb
    CHANGED
    
    
    
        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. | 
| 4 | 
            +
              version: 1.21.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- | 
| 11 | 
            +
            date: 2024-03-06 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: typhoeus
         |