stytch 10.1.1 → 10.2.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/lib/stytch/b2b_client.rb +3 -1
- data/lib/stytch/b2b_discovery.rb +1 -1
- data/lib/stytch/b2b_impersonation.rb +30 -0
- data/lib/stytch/b2b_organizations.rb +2 -2
- data/lib/stytch/m2m.rb +1 -1
- data/lib/stytch/version.rb +1 -1
- metadata +3 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: dc18ab472e7d75e811a35b5952442c0c3bb3b978fb9eb061bf49053e9eb77b3b
         | 
| 4 | 
            +
              data.tar.gz: c15e8be5557ec42a987c3ff700b8ed6cc8a896f39d156c58124aee24d642a2b1
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: a788ac5599e21f1a4078d5c1097c92d9f4ee21aeda677f3710604ad9bf144e20b0183470fee54470637e9ad4d7830cd5c8687b5fbd7c03eddba78cb0b742edc1
         | 
| 7 | 
            +
              data.tar.gz: 5f41ea984d2255a11096bec39e217ffba50c10ff431fa2c918fc079cf4a233d4e880c00f16b54889d74839a49aa198dab445cbc3d3e1434637f355e76f5fc747
         | 
    
        data/lib/stytch/b2b_client.rb
    CHANGED
    
    | @@ -1,6 +1,7 @@ | |
| 1 1 | 
             
            # frozen_string_literal: true
         | 
| 2 2 |  | 
| 3 3 | 
             
            require_relative 'b2b_discovery'
         | 
| 4 | 
            +
            require_relative 'b2b_impersonation'
         | 
| 4 5 | 
             
            require_relative 'b2b_magic_links'
         | 
| 5 6 | 
             
            require_relative 'b2b_oauth'
         | 
| 6 7 | 
             
            require_relative 'b2b_organizations'
         | 
| @@ -21,7 +22,7 @@ module StytchB2B | |
| 21 22 | 
             
              class Client
         | 
| 22 23 | 
             
                ENVIRONMENTS = %i[live test].freeze
         | 
| 23 24 |  | 
| 24 | 
            -
                attr_reader :discovery, :fraud, :m2m, :magic_links, :oauth, :otps, :organizations, :passwords, :project, :rbac, :recovery_codes, :scim, :sso, :sessions, :totps
         | 
| 25 | 
            +
                attr_reader :discovery, :fraud, :impersonation, :m2m, :magic_links, :oauth, :otps, :organizations, :passwords, :project, :rbac, :recovery_codes, :scim, :sso, :sessions, :totps
         | 
| 25 26 |  | 
| 26 27 | 
             
                def initialize(project_id:, secret:, env: nil, fraud_env: nil, &block)
         | 
| 27 28 | 
             
                  @api_host = api_host(env, project_id)
         | 
| @@ -37,6 +38,7 @@ module StytchB2B | |
| 37 38 |  | 
| 38 39 | 
             
                  @discovery = StytchB2B::Discovery.new(@connection)
         | 
| 39 40 | 
             
                  @fraud = Stytch::Fraud.new(@fraud_connection)
         | 
| 41 | 
            +
                  @impersonation = StytchB2B::Impersonation.new(@connection)
         | 
| 40 42 | 
             
                  @m2m = Stytch::M2M.new(@connection, @project_id, @is_b2b_client)
         | 
| 41 43 | 
             
                  @magic_links = StytchB2B::MagicLinks.new(@connection)
         | 
| 42 44 | 
             
                  @oauth = StytchB2B::OAuth.new(@connection)
         | 
    
        data/lib/stytch/b2b_discovery.rb
    CHANGED
    
    | @@ -237,7 +237,7 @@ module StytchB2B | |
| 237 237 | 
             
                  #   The type of this field is nilable +String+.
         | 
| 238 238 | 
             
                  # allowed_auth_methods::
         | 
| 239 239 | 
             
                  #   An array of allowed authentication methods. This list is enforced when `auth_methods` is set to `RESTRICTED`.
         | 
| 240 | 
            -
                  #   The list's accepted values are: `sso`, `magic_link`, `password`, `google_oauth`, and ` | 
| 240 | 
            +
                  #   The list's accepted values are: `sso`, `magic_link`, `email_otp`, `password`, `google_oauth`, `microsoft_oauth`, `slack_oauth`, `github_oauth`, and `hubspot_oauth`.
         | 
| 241 241 | 
             
                  #
         | 
| 242 242 | 
             
                  #   The type of this field is nilable list of +String+.
         | 
| 243 243 | 
             
                  # mfa_policy::
         | 
| @@ -0,0 +1,30 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # !!!
         | 
| 4 | 
            +
            # WARNING: This file is autogenerated
         | 
| 5 | 
            +
            # Only modify code within MANUAL() sections
         | 
| 6 | 
            +
            # or your changes may be overwritten later!
         | 
| 7 | 
            +
            # !!!
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require_relative 'request_helper'
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            module StytchB2B
         | 
| 12 | 
            +
              class Impersonation
         | 
| 13 | 
            +
                include Stytch::RequestHelper
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                def initialize(connection)
         | 
| 16 | 
            +
                  @connection = connection
         | 
| 17 | 
            +
                end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
                def authenticate(
         | 
| 20 | 
            +
                  token:
         | 
| 21 | 
            +
                )
         | 
| 22 | 
            +
                  headers = {}
         | 
| 23 | 
            +
                  request = {
         | 
| 24 | 
            +
                    token: token
         | 
| 25 | 
            +
                  }
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                  post_request('/v1/b2b/impersonation/authenticate', request, headers)
         | 
| 28 | 
            +
                end
         | 
| 29 | 
            +
              end
         | 
| 30 | 
            +
            end
         | 
| @@ -120,7 +120,7 @@ module StytchB2B | |
| 120 120 | 
             
                #   The type of this field is nilable +String+.
         | 
| 121 121 | 
             
                # allowed_auth_methods::
         | 
| 122 122 | 
             
                #   An array of allowed authentication methods. This list is enforced when `auth_methods` is set to `RESTRICTED`.
         | 
| 123 | 
            -
                #   The list's accepted values are: `sso`, `magic_link`, `password`, `google_oauth`, and ` | 
| 123 | 
            +
                #   The list's accepted values are: `sso`, `magic_link`, `email_otp`, `password`, `google_oauth`, `microsoft_oauth`, `slack_oauth`, `github_oauth`, and `hubspot_oauth`.
         | 
| 124 124 | 
             
                #
         | 
| 125 125 | 
             
                #   The type of this field is nilable list of +String+.
         | 
| 126 126 | 
             
                # mfa_policy::
         | 
| @@ -334,7 +334,7 @@ module StytchB2B | |
| 334 334 | 
             
                #   The type of this field is nilable +String+.
         | 
| 335 335 | 
             
                # allowed_auth_methods::
         | 
| 336 336 | 
             
                #   An array of allowed authentication methods. This list is enforced when `auth_methods` is set to `RESTRICTED`.
         | 
| 337 | 
            -
                #   The list's accepted values are: `sso`, `magic_link`, `password`, `google_oauth`, and ` | 
| 337 | 
            +
                #   The list's accepted values are: `sso`, `magic_link`, `email_otp`, `password`, `google_oauth`, `microsoft_oauth`, `slack_oauth`, `github_oauth`, and `hubspot_oauth`.
         | 
| 338 338 | 
             
                #
         | 
| 339 339 | 
             
                #
         | 
| 340 340 | 
             
                # If this field is provided and a session header is passed into the request, the Member Session must have permission to perform the `update.settings.allowed-auth-methods` action on the `stytch.organization` Resource.
         | 
    
        data/lib/stytch/m2m.rb
    CHANGED
    
    | @@ -83,7 +83,7 @@ module Stytch | |
| 83 83 | 
             
                  }
         | 
| 84 84 | 
             
                  request[:scope] = scopes.join(' ') unless scopes.nil?
         | 
| 85 85 |  | 
| 86 | 
            -
                  post_request("/v1/public/#{@project_id}/oauth2/token", request, headers)
         | 
| 86 | 
            +
                  JSON.parse(post_request("/v1/public/#{@project_id}/oauth2/token", request, headers), { symbolize_names: true })
         | 
| 87 87 | 
             
                end
         | 
| 88 88 | 
             
                # ENDMANUAL(M2M::token)
         | 
| 89 89 |  | 
    
        data/lib/stytch/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: stytch
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 10. | 
| 4 | 
            +
              version: 10.2.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - stytch
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-01- | 
| 11 | 
            +
            date: 2025-01-13 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: faraday
         | 
| @@ -126,6 +126,7 @@ files: | |
| 126 126 | 
             
            - lib/stytch.rb
         | 
| 127 127 | 
             
            - lib/stytch/b2b_client.rb
         | 
| 128 128 | 
             
            - lib/stytch/b2b_discovery.rb
         | 
| 129 | 
            +
            - lib/stytch/b2b_impersonation.rb
         | 
| 129 130 | 
             
            - lib/stytch/b2b_magic_links.rb
         | 
| 130 131 | 
             
            - lib/stytch/b2b_oauth.rb
         | 
| 131 132 | 
             
            - lib/stytch/b2b_organizations.rb
         |