stytch 10.2.0 → 10.3.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: dc18ab472e7d75e811a35b5952442c0c3bb3b978fb9eb061bf49053e9eb77b3b
4
- data.tar.gz: c15e8be5557ec42a987c3ff700b8ed6cc8a896f39d156c58124aee24d642a2b1
3
+ metadata.gz: 653ba0c5b4647be6cf2cc7aac82b9f45d69e4faa37d8fb33f6fe542be89e2569
4
+ data.tar.gz: 210c37ce333a4a394338ae46299e8af98f53a5569fc2766bb25ff7b836ca1921
5
5
  SHA512:
6
- metadata.gz: a788ac5599e21f1a4078d5c1097c92d9f4ee21aeda677f3710604ad9bf144e20b0183470fee54470637e9ad4d7830cd5c8687b5fbd7c03eddba78cb0b742edc1
7
- data.tar.gz: 5f41ea984d2255a11096bec39e217ffba50c10ff431fa2c918fc079cf4a233d4e880c00f16b54889d74839a49aa198dab445cbc3d3e1434637f355e76f5fc747
6
+ metadata.gz: 15a1c847414eaa79a0685996f286ef7071ff3e4bc3367246c8f0a82e38a564e7c679810c4f3b6f6a80c77ad71f87a163282d8b047b405b5d118892eb0e3d384d
7
+ data.tar.gz: c5e7f30486c7493e6f6c0ff2cf1879c2def740762299addad91a5b837357fc0ed9eef838fc611248d6557300ea5c027cbcf4e47a576d0b3a175fa7649404ed28
@@ -16,12 +16,58 @@ module StytchB2B
16
16
  @connection = connection
17
17
  end
18
18
 
19
+ # Authenticate an impersonation token to impersonate a. This endpoint requires an impersonation token that is not expired or previously used.
20
+ # A Stytch session will be created for the impersonated member with a 60 minute duration. Impersonated sessions cannot be extended.
21
+ #
22
+ # == Parameters:
23
+ # impersonation_token::
24
+ # The User Impersonation token to authenticate.
25
+ # The type of this field is +String+.
26
+ #
27
+ # == Returns:
28
+ # An object with the following fields:
29
+ # request_id::
30
+ # Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue.
31
+ # The type of this field is +String+.
32
+ # member_id::
33
+ # Globally unique UUID that identifies a specific Member.
34
+ # The type of this field is +String+.
35
+ # organization_id::
36
+ # Globally unique UUID that identifies a specific Organization. The `organization_id` is critical to perform operations on an Organization, so be sure to preserve this value.
37
+ # The type of this field is +String+.
38
+ # member::
39
+ # The [Member object](https://stytch.com/docs/b2b/api/member-object)
40
+ # The type of this field is +Member+ (+object+).
41
+ # session_token::
42
+ # A secret token for a given Stytch Session.
43
+ # The type of this field is +String+.
44
+ # session_jwt::
45
+ # The JSON Web Token (JWT) for a given Stytch Session.
46
+ # The type of this field is +String+.
47
+ # organization::
48
+ # The [Organization object](https://stytch.com/docs/b2b/api/organization-object).
49
+ # The type of this field is +Organization+ (+object+).
50
+ # intermediate_session_token::
51
+ # Successfully authenticating an impersonation token will never result in an intermediate session. If the token is valid, a full session will be created.
52
+ # The type of this field is +String+.
53
+ # member_authenticated::
54
+ # The member will always be fully authenticated if an impersonation token is successfully authenticated.
55
+ # The type of this field is +Boolean+.
56
+ # status_code::
57
+ # The HTTP status code of the response. Stytch follows standard HTTP response status code patterns, e.g. 2XX values equate to success, 3XX values are redirects, 4XX are client errors, and 5XX are server errors.
58
+ # The type of this field is +Integer+.
59
+ # member_session::
60
+ # The [Session object](https://stytch.com/docs/b2b/api/session-object) for the impersonated Member.
61
+ # The type of this field is nilable +MemberSession+ (+object+).
62
+ # mfa_required::
63
+ # MFA will not be required when authenticating impersonation tokens.
64
+ # The type of this field is nilable +MfaRequired+ (+object+).
19
65
  def authenticate(
20
- token:
66
+ impersonation_token:
21
67
  )
22
68
  headers = {}
23
69
  request = {
24
- token: token
70
+ impersonation_token: impersonation_token
25
71
  }
26
72
 
27
73
  post_request('/v1/b2b/impersonation/authenticate', request, headers)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stytch
4
- VERSION = '10.2.0'
4
+ VERSION = '10.3.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.2.0
4
+ version: 10.3.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-13 00:00:00.000000000 Z
11
+ date: 2025-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday