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 +4 -4
- data/lib/stytch/b2b_sso.rb +5 -0
- data/lib/stytch/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: 1fc94b3f2682727e8313774b34312e8e5b621e012a99cf789c956cfc08a43419
|
4
|
+
data.tar.gz: e82cbc5ef8e95c439b0e959c9aeb1b88d123b589e58816be36359654b5c642da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e37526e4eeef1517b5aa1fc415a7b9f742943ba89fe97c88088ae7059ecb1840b4330dc7c7dffd7c8b822f3a69697ebcafac2965f735e53bfd1b6fc47dd82c68
|
7
|
+
data.tar.gz: 8a84503310f85e276f94d7c8ce7adbc0a3b010669a8d9548256df0c9a8d35a1ec759eb803a74be530dd2226895483f385c0a4fa5e8d1e86e7bc29ddb5f8ce6f5
|
data/lib/stytch/b2b_sso.rb
CHANGED
@@ -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
|
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.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-
|
11
|
+
date: 2025-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|