stytch 10.5.0 → 10.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7a83bb6fc8a15b7c439e4cf6f987491baa4376b6e90eae604d2d815b868bdd1
4
- data.tar.gz: 760982754bff8b9db9d7d5637f7bb198fd147f3f4eed6a3a4678ba0f86acbcc8
3
+ metadata.gz: 1fc94b3f2682727e8313774b34312e8e5b621e012a99cf789c956cfc08a43419
4
+ data.tar.gz: e82cbc5ef8e95c439b0e959c9aeb1b88d123b589e58816be36359654b5c642da
5
5
  SHA512:
6
- metadata.gz: 7721ae6335a51bc6858f877520c17b846265c1262a04de8f25c5d0c339aec4749359e6467ef52ce36ad54c4a5a9cc47afacef584cead680599f1880e5c47fc76
7
- data.tar.gz: fabb5b4741fb4a906d13d97e04c3c8e15d4f9e923839c4b682fd17db53eec9ae09be74c5d97566161fb2e0a412867cbff191632ad8ed8bf1283d0c665f94ae08
6
+ metadata.gz: e37526e4eeef1517b5aa1fc415a7b9f742943ba89fe97c88088ae7059ecb1840b4330dc7c7dffd7c8b822f3a69697ebcafac2965f735e53bfd1b6fc47dd82c68
7
+ data.tar.gz: 8a84503310f85e276f94d7c8ce7adbc0a3b010669a8d9548256df0c9a8d35a1ec759eb803a74be530dd2226895483f385c0a4fa5e8d1e86e7bc29ddb5f8ce6f5
@@ -633,6 +633,9 @@ module StytchB2B
633
633
  #
634
634
  # Specifying a known provider allows Stytch to handle any provider-specific logic.
635
635
  # The type of this field is nilable +UpdateConnectionRequestIdentityProvider+ (string enum).
636
+ # signing_private_key::
637
+ # A PKCS1 format RSA private key used for signing SAML requests. Only PKCS1 format (starting with "-----BEGIN RSA PRIVATE KEY-----") is supported. When provided, Stytch will generate a new x509 certificate from this key and return it in the signing_certificates array.
638
+ # The type of this field is nilable +String+.
636
639
  #
637
640
  # == Returns:
638
641
  # An object with the following fields:
@@ -660,6 +663,7 @@ module StytchB2B
660
663
  saml_group_implicit_role_assignments: nil,
661
664
  alternative_audience_uri: nil,
662
665
  identity_provider: nil,
666
+ signing_private_key: nil,
663
667
  method_options: nil
664
668
  )
665
669
  headers = {}
@@ -674,6 +678,7 @@ module StytchB2B
674
678
  request[:saml_group_implicit_role_assignments] = saml_group_implicit_role_assignments unless saml_group_implicit_role_assignments.nil?
675
679
  request[:alternative_audience_uri] = alternative_audience_uri unless alternative_audience_uri.nil?
676
680
  request[:identity_provider] = identity_provider unless identity_provider.nil?
681
+ request[:signing_private_key] = signing_private_key unless signing_private_key.nil?
677
682
 
678
683
  put_request("/v1/b2b/sso/saml/#{organization_id}/connections/#{connection_id}", request, headers)
679
684
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stytch
4
- VERSION = '10.5.0'
4
+ VERSION = '10.6.0'
5
5
  end
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.5.0
4
+ version: 10.6.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-02-14 00:00:00.000000000 Z
11
+ date: 2025-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday