@stytch/vanilla-js 5.5.3 → 5.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.
@@ -11,7 +11,8 @@ export declare enum AdminPortalB2BProducts {
11
11
  oauthGoogle = "oauthGoogle",
12
12
  oauthMicrosoft = "oauthMicrosoft",
13
13
  oauthHubspot = "oauthHubspot",
14
- oauthSlack = "oauthSlack"
14
+ oauthSlack = "oauthSlack",
15
+ oauthGithub = "oauthGithub"
15
16
  }
16
17
  /**
17
18
  * The UI configuration object for organization used in the Admin Portal.
@@ -1,5 +1,8 @@
1
1
  import React from 'react';
2
2
  import { TaggedConnection } from './TaggedConnection';
3
+ export declare const DefaultAppDetails: ({ connection: connectionProp }: {
4
+ connection: TaggedConnection;
5
+ }) => React.JSX.Element;
3
6
  export declare const AppDetails: ({ connection: connectionProp }: {
4
7
  connection: TaggedConnection;
5
8
  }) => React.JSX.Element;
@@ -6,7 +6,7 @@ export declare const requiredKeys: Set<string>;
6
6
  export interface AttributeMappingState {
7
7
  attributeMapping: Record<string, string>;
8
8
  }
9
- interface AttributeMappingTableProps<TState> extends StateProps<TState> {
9
+ export interface AttributeMappingTableProps<TState> extends StateProps<TState> {
10
10
  editing: boolean;
11
11
  }
12
12
  type AttributeMapping = {
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { TaggedConnection } from './TaggedConnection';
3
+ export declare const CreateApplication: ({ connection: connectionProp }: {
4
+ connection: TaggedConnection;
5
+ }) => React.JSX.Element;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { StateProps } from '../utils/useFormState';
3
+ import { SAMLTaggedConnection } from './TaggedConnection';
4
+ import { AttributeMappingState } from './AttributeMappingTable';
5
+ export interface DetailedAttributeMappingTableProps<TState> extends StateProps<TState> {
6
+ connection: SAMLTaggedConnection;
7
+ }
8
+ export declare const DetailedAttributeMappingTable: <TState extends AttributeMappingState>({ connection: connectionProp, localState, setLocalState, remoteState, }: DetailedAttributeMappingTableProps<TState>) => string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
@@ -4,11 +4,16 @@ import { ExternalTaggedConnection, OIDCTaggedConnection, SAMLTaggedConnection, T
4
4
  export type SamlKnownIdp = 'generic' | 'okta' | 'microsoft-entra' | 'google-workspace';
5
5
  export type OidcKnownIdp = 'generic' | 'okta' | 'microsoft-entra';
6
6
  export type KnownIdp = SamlKnownIdp | OidcKnownIdp;
7
- export type SamlSetupStep = 'copyToIdp' | 'copyFromIdp' | 'attributeMapping';
7
+ export type SamlSetupStep = 'createApplication' | 'copyToIdp' | 'copyFromIdp' | 'attributeMapping';
8
8
  export type SamlIdpValue = 'ssoUrl' | 'entityId' | 'certificate';
9
- export type OidcSetupStep = 'copyToIdp' | 'copyFromIdp';
9
+ export type OidcSetupStep = 'createApplication' | 'copyToIdp' | 'copyFromIdp';
10
+ export type SamlSupportedIdp = 'okta' | 'microsoft-entra' | 'google-workspace';
11
+ export type OidcSupportedIdp = 'okta' | 'microsoft-entra';
12
+ export type SamlSupportedManualConfigurationIdp = 'microsoft-entra' | 'google-workspace';
13
+ export type SamlSupportedAttributeMappingIdp = 'okta' | 'microsoft-entra' | 'google-workspace';
10
14
  export type SamlIdpInfo = {
11
15
  displayName: string;
16
+ copyToIdpDisplayName: string;
12
17
  setupOrder: SamlSetupStep[];
13
18
  idpValueOrder: SamlIdpValue[];
14
19
  acsUrlLabel: string;
@@ -28,6 +33,7 @@ interface IssuerTransformer {
28
33
  }
29
34
  export type OidcIdpInfo = {
30
35
  displayName: string;
36
+ copyToIdpDisplayName: string;
31
37
  setupOrder: OidcSetupStep[];
32
38
  redirectUrlLabel: string;
33
39
  clientIdLabel: string;
@@ -37,6 +43,7 @@ export type OidcIdpInfo = {
37
43
  export declare const samlIdpMap: {
38
44
  readonly generic: {
39
45
  readonly displayName: "Custom SAML";
46
+ readonly copyToIdpDisplayName: "your IdP";
40
47
  readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
41
48
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
42
49
  readonly acsUrlLabel: "ACS URL (Reply URL)";
@@ -51,7 +58,8 @@ export declare const samlIdpMap: {
51
58
  };
52
59
  readonly 'microsoft-entra': {
53
60
  readonly displayName: "Entra SAML";
54
- readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
61
+ readonly copyToIdpDisplayName: "Entra";
62
+ readonly setupOrder: ["createApplication", "copyToIdp", "attributeMapping", "copyFromIdp"];
55
63
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
56
64
  readonly acsUrlLabel: "Reply URL (Assertion Consumer Service URL)";
57
65
  readonly audienceUriLabel: "Identifier (Entity ID)";
@@ -65,7 +73,8 @@ export declare const samlIdpMap: {
65
73
  };
66
74
  readonly okta: {
67
75
  readonly displayName: "Okta SAML";
68
- readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
76
+ readonly copyToIdpDisplayName: "Okta";
77
+ readonly setupOrder: ["createApplication", "copyToIdp", "attributeMapping", "copyFromIdp"];
69
78
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
70
79
  readonly acsUrlLabel: "Single sign-on URL";
71
80
  readonly audienceUriLabel: "Audience URI (SP Entity ID)";
@@ -79,7 +88,8 @@ export declare const samlIdpMap: {
79
88
  };
80
89
  readonly 'google-workspace': {
81
90
  readonly displayName: "Google SAML";
82
- readonly setupOrder: ["copyFromIdp", "copyToIdp", "attributeMapping"];
91
+ readonly copyToIdpDisplayName: "Google";
92
+ readonly setupOrder: ["createApplication", "copyFromIdp", "copyToIdp", "attributeMapping"];
83
93
  readonly idpValueOrder: ["entityId", "ssoUrl", "certificate"];
84
94
  readonly acsUrlLabel: "ACS URL";
85
95
  readonly audienceUriLabel: "Entity ID";
@@ -95,6 +105,7 @@ export declare const samlIdpMap: {
95
105
  export declare const oidcIdpMap: {
96
106
  readonly generic: {
97
107
  readonly displayName: "Custom OIDC";
108
+ readonly copyToIdpDisplayName: "your IdP";
98
109
  readonly setupOrder: ["copyToIdp", "copyFromIdp"];
99
110
  readonly redirectUrlLabel: "Redirect URI";
100
111
  readonly clientIdLabel: "Client ID";
@@ -103,7 +114,8 @@ export declare const oidcIdpMap: {
103
114
  };
104
115
  readonly 'microsoft-entra': {
105
116
  readonly displayName: "Entra OIDC";
106
- readonly setupOrder: ["copyToIdp", "copyFromIdp"];
117
+ readonly copyToIdpDisplayName: "Entra";
118
+ readonly setupOrder: ["createApplication", "copyToIdp", "copyFromIdp"];
107
119
  readonly redirectUrlLabel: "Redirect URI";
108
120
  readonly clientIdLabel: "Application (Client) ID";
109
121
  readonly clientSecretLabel: "Client Secret";
@@ -114,8 +126,9 @@ export declare const oidcIdpMap: {
114
126
  };
115
127
  readonly okta: {
116
128
  readonly displayName: "Okta OIDC";
117
- readonly setupOrder: ["copyToIdp", "copyFromIdp"];
118
- readonly redirectUrlLabel: "Sign-on Redirect URI";
129
+ readonly copyToIdpDisplayName: "Okta";
130
+ readonly setupOrder: ["createApplication", "copyToIdp", "copyFromIdp"];
131
+ readonly redirectUrlLabel: "Sign-in Redirect URI";
119
132
  readonly clientIdLabel: "Client ID";
120
133
  readonly clientSecretLabel: "Client Secret";
121
134
  readonly issuerLabel: "Okta URL (Issuer)";
@@ -148,4 +161,5 @@ type IdpAndConnectionInfoReturnType<TConnectionType extends ConnectionType> = ((
148
161
  export declare const getIdpAndConnectionInfo: <TConnectionType extends ConnectionType>(connection: TaggedConnection & {
149
162
  connectionType: TConnectionType;
150
163
  }) => IdpAndConnectionInfoReturnType<TConnectionType>;
164
+ export declare const typeToUserFriendlyName: (type: ConnectionType) => string;
151
165
  export {};
@@ -2,7 +2,8 @@ export declare const idpOptions: {
2
2
  readonly 'saml:google-workspace': {
3
3
  idp: {
4
4
  readonly displayName: "Google SAML";
5
- readonly setupOrder: ["copyFromIdp", "copyToIdp", "attributeMapping"];
5
+ readonly copyToIdpDisplayName: "Google";
6
+ readonly setupOrder: ["createApplication", "copyFromIdp", "copyToIdp", "attributeMapping"];
6
7
  readonly idpValueOrder: ["entityId", "ssoUrl", "certificate"];
7
8
  readonly acsUrlLabel: "ACS URL";
8
9
  readonly audienceUriLabel: "Entity ID";
@@ -20,7 +21,8 @@ export declare const idpOptions: {
20
21
  readonly 'saml:okta': {
21
22
  idp: {
22
23
  readonly displayName: "Okta SAML";
23
- readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
24
+ readonly copyToIdpDisplayName: "Okta";
25
+ readonly setupOrder: ["createApplication", "copyToIdp", "attributeMapping", "copyFromIdp"];
24
26
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
25
27
  readonly acsUrlLabel: "Single sign-on URL";
26
28
  readonly audienceUriLabel: "Audience URI (SP Entity ID)";
@@ -38,8 +40,9 @@ export declare const idpOptions: {
38
40
  readonly 'oidc:okta': {
39
41
  idp: {
40
42
  readonly displayName: "Okta OIDC";
41
- readonly setupOrder: ["copyToIdp", "copyFromIdp"];
42
- readonly redirectUrlLabel: "Sign-on Redirect URI";
43
+ readonly copyToIdpDisplayName: "Okta";
44
+ readonly setupOrder: ["createApplication", "copyToIdp", "copyFromIdp"];
45
+ readonly redirectUrlLabel: "Sign-in Redirect URI";
43
46
  readonly clientIdLabel: "Client ID";
44
47
  readonly clientSecretLabel: "Client Secret";
45
48
  readonly issuerLabel: "Okta URL (Issuer)";
@@ -50,7 +53,8 @@ export declare const idpOptions: {
50
53
  readonly 'saml:microsoft-entra': {
51
54
  idp: {
52
55
  readonly displayName: "Entra SAML";
53
- readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
56
+ readonly copyToIdpDisplayName: "Entra";
57
+ readonly setupOrder: ["createApplication", "copyToIdp", "attributeMapping", "copyFromIdp"];
54
58
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
55
59
  readonly acsUrlLabel: "Reply URL (Assertion Consumer Service URL)";
56
60
  readonly audienceUriLabel: "Identifier (Entity ID)";
@@ -68,7 +72,8 @@ export declare const idpOptions: {
68
72
  readonly 'oidc:microsoft-entra': {
69
73
  idp: {
70
74
  readonly displayName: "Entra OIDC";
71
- readonly setupOrder: ["copyToIdp", "copyFromIdp"];
75
+ readonly copyToIdpDisplayName: "Entra";
76
+ readonly setupOrder: ["createApplication", "copyToIdp", "copyFromIdp"];
72
77
  readonly redirectUrlLabel: "Redirect URI";
73
78
  readonly clientIdLabel: "Application (Client) ID";
74
79
  readonly clientSecretLabel: "Client Secret";
@@ -83,6 +88,7 @@ export declare const idpOptions: {
83
88
  readonly 'saml:generic': {
84
89
  idp: {
85
90
  readonly displayName: "Custom SAML";
91
+ readonly copyToIdpDisplayName: "your IdP";
86
92
  readonly setupOrder: ["copyToIdp", "attributeMapping", "copyFromIdp"];
87
93
  readonly idpValueOrder: ["ssoUrl", "entityId", "certificate"];
88
94
  readonly acsUrlLabel: "ACS URL (Reply URL)";
@@ -101,6 +107,7 @@ export declare const idpOptions: {
101
107
  readonly 'oidc:generic': {
102
108
  idp: {
103
109
  readonly displayName: "Custom OIDC";
110
+ readonly copyToIdpDisplayName: "your IdP";
104
111
  readonly setupOrder: ["copyToIdp", "copyFromIdp"];
105
112
  readonly redirectUrlLabel: "Redirect URI";
106
113
  readonly clientIdLabel: "Client ID";
@@ -30,9 +30,9 @@ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol"
30
30
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
31
31
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
32
32
  import { StytchB2BHeadlessClient } from './index.headless.esm.js';
33
- import { i as isTruthy, w as wn, q, F as F$1, m as merge, a as w$1, y, g as g$1, p as p$1, T as T$1, h as h$2, H as He, b as withMiddleware, u as useSWR, c as useSWRConfig, _ as _$1, d as useStateWithDeps, s as serialize, e as mergeObjects, f as getTimestamp, U as UNDEFINED, j as useIsomorphicLayoutEffect, k as Ue, l as passwordManagerDisableAutofillProps, Z as Ze, n as extractErrorMessage, C as CreateSSRSafeWebComponent, o as Fe } from '../extractErrorMessage-CftkKurG.js';
34
- import { B as B2BMFAProducts, A as AuthFlowType, a as B2BProducts, b as OTPMethods, W as Wallets, P as Products, S as StytchEventType, r as readB2BInternals, D as DEFAULT_SESSION_DURATION_MINUTES, _ as __awaiter, E as EMAIL_REGEX, c as StytchAPIError, d as B2BOAuthProviders, l as logger, e as OneTapPositions, i as isTestPublicToken, f as debounce, C as COUNTRIES_LIST, g as StytchSDKError, h as checkNotSSR } from '../internal-6Fhz4oMY.js';
35
- export { j as BiometricsFailedError, k as BiometricsUnavailableError, m as ChallengeSigningFailedError, n as DeviceCredentialsNotAllowedError, F as FailedCodeChallengeError, o as FailedToDecryptDataError, I as InternalError, p as InvalidAuthorizationCredentialError, q as InvalidCredentialTypeError, s as InvalidRedirectSchemeError, t as InvalidStartUrlError, J as JSONDataNotConvertibleToStringError, K as KeyInvalidatedError, u as KeystoreUnavailableError, M as MissingAttestationObjectError, v as MissingAuthorizationCredentialIDTokenError, w as MissingGoogleClientIDError, x as MissingPKCEError, y as MissingPublicKeyError, z as MissingUrlError, N as NoBiometricsEnrolledError, G as NoBiometricsRegistrationError, H as NoCredentialsPresentError, L as NoCurrentSessionError, O as OAuthProviders, Q as PasskeysInvalidEncoding, R as PasskeysMisconfigured, T as PasskeysUnsupportedError, U as RNUIProducts, V as RandomNumberGenerationFailed, X as SDKAPIUnreachableError, Y as SDKNotConfiguredError, Z as SignInWithAppleMisconfigured, $ as StytchAPISchemaError, a0 as StytchAPIUnreachableError, a1 as StytchError, a2 as StytchSDKAPIError, a3 as StytchSDKSchemaError, a4 as StytchSDKUsageError, a5 as UNRECOVERABLE_ERROR_TYPES, a6 as UserCancellationError, a7 as UserLockedOutError, a8 as errorToStytchError } from '../internal-6Fhz4oMY.js';
33
+ import { i as isTruthy, w as wn, q, F as F$1, m as merge, a as w$1, y, g as g$1, p as p$1, T as T$1, h as h$2, H as He, b as withMiddleware, u as useSWR, c as useSWRConfig, _ as _$1, d as useStateWithDeps, s as serialize, e as mergeObjects, f as getTimestamp, U as UNDEFINED, j as useIsomorphicLayoutEffect, k as Ue, l as passwordManagerDisableAutofillProps, Z as Ze, n as extractErrorMessage, C as CreateSSRSafeWebComponent, o as Fe } from '../extractErrorMessage-LV5bs3zG.js';
34
+ import { B as B2BMFAProducts, A as AuthFlowType, a as B2BProducts, b as OTPMethods, W as Wallets, P as Products, S as StytchEventType, r as readB2BInternals, D as DEFAULT_SESSION_DURATION_MINUTES, _ as __awaiter, E as EMAIL_REGEX, c as StytchAPIError, d as B2BOAuthProviders, l as logger, e as OneTapPositions, i as isTestPublicToken, f as debounce, C as COUNTRIES_LIST, g as StytchSDKError, h as checkNotSSR } from '../internal-BwQxoPJh.js';
35
+ export { j as BiometricsFailedError, k as BiometricsUnavailableError, m as ChallengeSigningFailedError, n as DeviceCredentialsNotAllowedError, F as FailedCodeChallengeError, o as FailedToDecryptDataError, I as InternalError, p as InvalidAuthorizationCredentialError, q as InvalidCredentialTypeError, s as InvalidRedirectSchemeError, t as InvalidStartUrlError, J as JSONDataNotConvertibleToStringError, K as KeyInvalidatedError, u as KeystoreUnavailableError, M as MissingAttestationObjectError, v as MissingAuthorizationCredentialIDTokenError, w as MissingGoogleClientIDError, x as MissingPKCEError, y as MissingPublicKeyError, z as MissingUrlError, N as NoBiometricsEnrolledError, G as NoBiometricsRegistrationError, H as NoCredentialsPresentError, L as NoCurrentSessionError, O as OAuthProviders, Q as PasskeysInvalidEncoding, R as PasskeysMisconfigured, T as PasskeysUnsupportedError, U as RNUIProducts, V as RandomNumberGenerationFailed, X as SDKAPIUnreachableError, Y as SDKNotConfiguredError, Z as SignInWithAppleMisconfigured, $ as StytchAPISchemaError, a0 as StytchAPIUnreachableError, a1 as StytchError, a2 as StytchSDKAPIError, a3 as StytchSDKSchemaError, a4 as StytchSDKUsageError, a5 as UNRECOVERABLE_ERROR_TYPES, a6 as UserCancellationError, a7 as UserLockedOutError, a8 as errorToStytchError } from '../internal-BwQxoPJh.js';
36
36
  var DEFAULT_MFA_STATE = {
37
37
  primaryInfo: null,
38
38
  isEnrolling: false,
@@ -2663,6 +2663,17 @@ var SlackIconSvg = function SlackIconSvg() {
2663
2663
  }));
2664
2664
  };
2665
2665
  var SlackIcon = CreateIcon(SlackIconSvg);
2666
+ var GithubIconSvg = function GithubIconSvg() {
2667
+ return /*#__PURE__*/wn.createElement("svg", {
2668
+ viewBox: "0 0 24 24",
2669
+ fill: "none",
2670
+ xmlns: "http://www.w3.org/2000/svg"
2671
+ }, /*#__PURE__*/wn.createElement("path", {
2672
+ d: "M12.0001 2.25C6.47791 2.25 2 6.72709 2 12.2501C2 16.6684 4.86533 20.4168 8.83867 21.7391C9.33844 21.8317 9.52192 21.5222 9.52192 21.2581C9.52192 21.0196 9.51265 20.2319 9.50834 19.3963C6.72631 20.0012 6.13927 18.2164 6.13927 18.2164C5.68437 17.0605 5.02894 16.7532 5.02894 16.7532C4.12163 16.1325 5.09733 16.1453 5.09733 16.1453C6.10151 16.2158 6.63026 17.1758 6.63026 17.1758C7.52217 18.7046 8.96965 18.2626 9.5403 18.0071C9.63006 17.3607 9.88922 16.9196 10.1752 16.6699C7.95405 16.417 5.61913 15.5595 5.61913 11.7278C5.61913 10.636 6.00977 9.74394 6.64947 9.04362C6.54564 8.79175 6.20335 7.77465 6.74635 6.39722C6.74635 6.39722 7.58609 6.12845 9.49708 7.42226C10.2948 7.20069 11.1502 7.08958 12.0001 7.08577C12.8499 7.08958 13.7061 7.20069 14.5052 7.42226C16.4139 6.12845 17.2525 6.39722 17.2525 6.39722C17.7968 7.77465 17.4544 8.79175 17.3505 9.04362C17.9917 9.74394 18.3797 10.636 18.3797 11.7278C18.3797 15.5687 16.0403 16.4144 13.8135 16.6619C14.1722 16.9723 14.4918 17.5808 14.4918 18.5138C14.4918 19.8518 14.4802 20.9287 14.4802 21.2581C14.4802 21.5242 14.6602 21.836 15.1671 21.7378C19.1383 20.414 22 16.6669 22 12.2501C22 6.72709 17.5227 2.25 12.0001 2.25ZM5.74536 16.4953C5.72333 16.545 5.64517 16.5599 5.57396 16.5258C5.50143 16.4932 5.46069 16.4254 5.48421 16.3756C5.50574 16.3244 5.58406 16.3102 5.65643 16.3445C5.72913 16.3771 5.77053 16.4455 5.74536 16.4953ZM6.23725 16.9342C6.18956 16.9785 6.09633 16.9579 6.03307 16.888C5.96766 16.8183 5.9554 16.7251 6.00376 16.6802C6.05294 16.636 6.14336 16.6567 6.20893 16.7264C6.27434 16.797 6.28709 16.8895 6.23725 16.9342ZM6.57471 17.4958C6.51344 17.5384 6.41325 17.4985 6.35132 17.4095C6.29004 17.3206 6.29004 17.214 6.35264 17.1712C6.41474 17.1285 6.51344 17.1669 6.5762 17.2552C6.6373 17.3456 6.6373 17.4523 6.57471 17.4958ZM7.14542 18.1462C7.09061 18.2066 6.97386 18.1904 6.88841 18.1079C6.80098 18.0273 6.77663 17.9129 6.83161 17.8524C6.88709 17.7918 7.0045 17.8089 7.09061 17.8907C7.17738 17.9711 7.20387 18.0864 7.14542 18.1462ZM7.88301 18.3657C7.85883 18.4441 7.74639 18.4797 7.63312 18.4464C7.52002 18.4121 7.446 18.3204 7.46885 18.2412C7.49237 18.1624 7.6053 18.1253 7.7194 18.1609C7.83234 18.195 7.90652 18.2861 7.88301 18.3657ZM8.72242 18.4589C8.72523 18.5413 8.62919 18.6097 8.51029 18.6112C8.39073 18.6139 8.29402 18.5471 8.29269 18.466C8.29269 18.3827 8.38659 18.315 8.50615 18.313C8.62505 18.3107 8.72242 18.3769 8.72242 18.4589ZM9.54704 18.4273C9.56128 18.5077 9.47865 18.5904 9.36058 18.6124C9.2445 18.6336 9.13702 18.5839 9.12229 18.5041C9.10788 18.4216 9.192 18.339 9.30792 18.3176C9.42616 18.2971 9.53197 18.3455 9.54704 18.4273Z",
2673
+ fill: "#161614"
2674
+ }));
2675
+ };
2676
+ var GitHubIcon = CreateIcon(GithubIconSvg);
2666
2677
  var getParamsFromB2BOAuthProviderConfig = function getParamsFromB2BOAuthProviderConfig(provider) {
2667
2678
  var providerType = '';
2668
2679
  var oneTap = false;
@@ -2940,7 +2951,7 @@ var B2BGoogleOneTap = function B2BGoogleOneTap() {
2940
2951
  return googleAuthButton;
2941
2952
  };
2942
2953
  var productsToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, B2BProducts.oauth, undefined), B2BProducts.sso, 'sso'), B2BProducts.emailMagicLinks, 'magic_link'), B2BProducts.passwords, 'password');
2943
- var oauthProvidersToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, B2BOAuthProviders.Google, 'google_oauth'), B2BOAuthProviders.Microsoft, 'microsoft_oauth'), B2BOAuthProviders.HubSpot, 'hubspot_oauth'), B2BOAuthProviders.Slack, 'slack_oauth');
2954
+ var oauthProvidersToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, B2BOAuthProviders.Google, 'google_oauth'), B2BOAuthProviders.Microsoft, 'microsoft_oauth'), B2BOAuthProviders.HubSpot, 'hubspot_oauth'), B2BOAuthProviders.Slack, 'slack_oauth'), B2BOAuthProviders.GitHub, 'github_oauth');
2944
2955
  var authMethodsToProducts = Object.entries(productsToAuthMethods).reduce(function (acc, _ref57) {
2945
2956
  var _ref58 = _slicedToArray(_ref57, 2),
2946
2957
  product = _ref58[0],
@@ -3096,6 +3107,11 @@ var getProviderInfo = function getProviderInfo(provider) {
3096
3107
  providerTypeTitle: 'Slack',
3097
3108
  icon: /*#__PURE__*/y(SlackIcon, null)
3098
3109
  };
3110
+ case B2BOAuthProviders.GitHub:
3111
+ return {
3112
+ providerTypeTitle: 'GitHub',
3113
+ icon: /*#__PURE__*/y(GitHubIcon, null)
3114
+ };
3099
3115
  default:
3100
3116
  return {
3101
3117
  providerTypeTitle: '',
@@ -24,8 +24,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
24
24
  function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
25
25
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
26
26
  function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
27
- import { ac as HeadlessB2BOAuthClient$1, _ as __awaiter, e as OneTapPositions, a4 as StytchSDKUsageError, l as logger, ad as loadESModule, ae as IframeHostClient, ab as getPersistentStorageKey, af as validate, ag as hasMultipleCookies, ah as isLocalhost, ai as GOOGLE_ONE_TAP_HOST, aj as GOOGLE_ONE_TAP_SCRIPT_URL, i as isTestPublicToken, ak as EventLogger, al as DEFAULT_MAX_BATCH_SIZE, am as DEFAULT_INTERVAL_DURATION_MS, an as createEventId, ao as createAppSessionId, ap as createPersistentId, aq as baseFetchSDK, ar as _retriableFetchSDK, as as checkB2BNotSSR, at as checkPublicToken, au as buildFinalConfig, av as StateChangeClient, aw as DFPProtectedAuthProvider, ax as HeadlessB2BOrganizationClient, ay as HeadlessB2BSelfClient, az as HeadlessB2BSessionClient, aA as HeadlessB2BMagicLinksClient, aB as HeadlessB2BSSOClient, aC as HeadlessB2BDiscoveryClient, aD as HeadlessB2BPasswordsClient, aE as HeadlessB2BOTPsClient, aF as HeadlessB2BTOTPsClient, aG as HeadlessB2BRecoveryCodesClient, aH as HeadlessB2BRBACClient, aI as HeadlessB2BSCIMClient, aJ as SessionManager, aK as SearchDataManager, aL as writeB2BInternals } from '../internal-6Fhz4oMY.js';
28
- export { A as AuthFlowType, B as B2BMFAProducts, d as B2BOAuthProviders, a as B2BProducts, j as BiometricsFailedError, k as BiometricsUnavailableError, m as ChallengeSigningFailedError, n as DeviceCredentialsNotAllowedError, F as FailedCodeChallengeError, o as FailedToDecryptDataError, I as InternalError, p as InvalidAuthorizationCredentialError, q as InvalidCredentialTypeError, s as InvalidRedirectSchemeError, t as InvalidStartUrlError, J as JSONDataNotConvertibleToStringError, K as KeyInvalidatedError, u as KeystoreUnavailableError, M as MissingAttestationObjectError, v as MissingAuthorizationCredentialIDTokenError, w as MissingGoogleClientIDError, x as MissingPKCEError, y as MissingPublicKeyError, z as MissingUrlError, N as NoBiometricsEnrolledError, G as NoBiometricsRegistrationError, H as NoCredentialsPresentError, L as NoCurrentSessionError, O as OAuthProviders, b as OTPMethods, Q as PasskeysInvalidEncoding, R as PasskeysMisconfigured, T as PasskeysUnsupportedError, P as Products, U as RNUIProducts, V as RandomNumberGenerationFailed, X as SDKAPIUnreachableError, Y as SDKNotConfiguredError, Z as SignInWithAppleMisconfigured, c as StytchAPIError, $ as StytchAPISchemaError, a0 as StytchAPIUnreachableError, a1 as StytchError, S as StytchEventType, a2 as StytchSDKAPIError, g as StytchSDKError, a3 as StytchSDKSchemaError, a5 as UNRECOVERABLE_ERROR_TYPES, a6 as UserCancellationError, a7 as UserLockedOutError, W as Wallets, a8 as errorToStytchError } from '../internal-6Fhz4oMY.js';
27
+ import { ac as HeadlessB2BOAuthClient$1, _ as __awaiter, e as OneTapPositions, a4 as StytchSDKUsageError, l as logger, ad as loadESModule, ae as IframeHostClient, ab as getPersistentStorageKey, af as validate, ag as hasMultipleCookies, ah as isLocalhost, ai as GOOGLE_ONE_TAP_HOST, aj as GOOGLE_ONE_TAP_SCRIPT_URL, i as isTestPublicToken, ak as EventLogger, al as DEFAULT_MAX_BATCH_SIZE, am as DEFAULT_INTERVAL_DURATION_MS, an as createEventId, ao as createAppSessionId, ap as createPersistentId, aq as baseFetchSDK, ar as _retriableFetchSDK, as as checkB2BNotSSR, at as checkPublicToken, au as buildFinalConfig, av as StateChangeClient, aw as DFPProtectedAuthProvider, ax as HeadlessB2BOrganizationClient, ay as HeadlessB2BSelfClient, az as HeadlessB2BSessionClient, aA as HeadlessB2BMagicLinksClient, aB as HeadlessB2BSSOClient, aC as HeadlessB2BDiscoveryClient, aD as HeadlessB2BPasswordsClient, aE as HeadlessB2BOTPsClient, aF as HeadlessB2BTOTPsClient, aG as HeadlessB2BRecoveryCodesClient, aH as HeadlessB2BRBACClient, aI as HeadlessB2BSCIMClient, aJ as SessionManager, aK as SearchDataManager, aL as writeB2BInternals } from '../internal-BwQxoPJh.js';
28
+ export { A as AuthFlowType, B as B2BMFAProducts, d as B2BOAuthProviders, a as B2BProducts, j as BiometricsFailedError, k as BiometricsUnavailableError, m as ChallengeSigningFailedError, n as DeviceCredentialsNotAllowedError, F as FailedCodeChallengeError, o as FailedToDecryptDataError, I as InternalError, p as InvalidAuthorizationCredentialError, q as InvalidCredentialTypeError, s as InvalidRedirectSchemeError, t as InvalidStartUrlError, J as JSONDataNotConvertibleToStringError, K as KeyInvalidatedError, u as KeystoreUnavailableError, M as MissingAttestationObjectError, v as MissingAuthorizationCredentialIDTokenError, w as MissingGoogleClientIDError, x as MissingPKCEError, y as MissingPublicKeyError, z as MissingUrlError, N as NoBiometricsEnrolledError, G as NoBiometricsRegistrationError, H as NoCredentialsPresentError, L as NoCurrentSessionError, O as OAuthProviders, b as OTPMethods, Q as PasskeysInvalidEncoding, R as PasskeysMisconfigured, T as PasskeysUnsupportedError, P as Products, U as RNUIProducts, V as RandomNumberGenerationFailed, X as SDKAPIUnreachableError, Y as SDKNotConfiguredError, Z as SignInWithAppleMisconfigured, c as StytchAPIError, $ as StytchAPISchemaError, a0 as StytchAPIUnreachableError, a1 as StytchError, S as StytchEventType, a2 as StytchSDKAPIError, g as StytchSDKError, a3 as StytchSDKSchemaError, a5 as UNRECOVERABLE_ERROR_TYPES, a6 as UserCancellationError, a7 as UserLockedOutError, W as Wallets, a8 as errorToStytchError } from '../internal-BwQxoPJh.js';
29
29
  var DisabledDFPProtectedAuthProvider = function DisabledDFPProtectedAuthProvider() {
30
30
  return {
31
31
  isEnabled: function () {
@@ -1429,7 +1429,7 @@ var B2BOneTapProvider = /*#__PURE__*/function () {
1429
1429
  }]);
1430
1430
  return B2BOneTapProvider;
1431
1431
  }();
1432
- var version = "5.5.3";
1432
+ var version = "5.6.0";
1433
1433
  var NetworkClient = /*#__PURE__*/function () {
1434
1434
  function NetworkClient(_publicToken, _subscriptionDataLayer, _liveAPIURL, _testAPIURL, additionalTelemetryDataFn) {
1435
1435
  _classCallCheck(this, NetworkClient);
@@ -26,7 +26,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
26
26
  function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
27
27
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
28
28
  function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
29
- var internal = require('../internal-zrA6uQSx.js');
29
+ var internal = require('../internal-B_-Y0eVO.js');
30
30
  var DisabledDFPProtectedAuthProvider = function DisabledDFPProtectedAuthProvider() {
31
31
  return {
32
32
  isEnabled: function () {
@@ -1430,7 +1430,7 @@ var B2BOneTapProvider = /*#__PURE__*/function () {
1430
1430
  }]);
1431
1431
  return B2BOneTapProvider;
1432
1432
  }();
1433
- var version = "5.5.3";
1433
+ var version = "5.6.0";
1434
1434
  var NetworkClient = /*#__PURE__*/function () {
1435
1435
  function NetworkClient(_publicToken, _subscriptionDataLayer, _liveAPIURL, _testAPIURL, additionalTelemetryDataFn) {
1436
1436
  _classCallCheck(this, NetworkClient);
package/dist/b2b/index.js CHANGED
@@ -32,8 +32,8 @@ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol"
32
32
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
33
33
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
34
34
  var b2b_index_headless = require('./index.headless.js');
35
- var extractErrorMessage = require('../extractErrorMessage-DFUBpgaf.js');
36
- var internal = require('../internal-zrA6uQSx.js');
35
+ var extractErrorMessage = require('../extractErrorMessage-C2EAqH1L.js');
36
+ var internal = require('../internal-B_-Y0eVO.js');
37
37
  var DEFAULT_MFA_STATE = {
38
38
  primaryInfo: null,
39
39
  isEnrolling: false,
@@ -2664,6 +2664,17 @@ var SlackIconSvg = function SlackIconSvg() {
2664
2664
  }));
2665
2665
  };
2666
2666
  var SlackIcon = CreateIcon(SlackIconSvg);
2667
+ var GithubIconSvg = function GithubIconSvg() {
2668
+ return /*#__PURE__*/extractErrorMessage.wn.createElement("svg", {
2669
+ viewBox: "0 0 24 24",
2670
+ fill: "none",
2671
+ xmlns: "http://www.w3.org/2000/svg"
2672
+ }, /*#__PURE__*/extractErrorMessage.wn.createElement("path", {
2673
+ d: "M12.0001 2.25C6.47791 2.25 2 6.72709 2 12.2501C2 16.6684 4.86533 20.4168 8.83867 21.7391C9.33844 21.8317 9.52192 21.5222 9.52192 21.2581C9.52192 21.0196 9.51265 20.2319 9.50834 19.3963C6.72631 20.0012 6.13927 18.2164 6.13927 18.2164C5.68437 17.0605 5.02894 16.7532 5.02894 16.7532C4.12163 16.1325 5.09733 16.1453 5.09733 16.1453C6.10151 16.2158 6.63026 17.1758 6.63026 17.1758C7.52217 18.7046 8.96965 18.2626 9.5403 18.0071C9.63006 17.3607 9.88922 16.9196 10.1752 16.6699C7.95405 16.417 5.61913 15.5595 5.61913 11.7278C5.61913 10.636 6.00977 9.74394 6.64947 9.04362C6.54564 8.79175 6.20335 7.77465 6.74635 6.39722C6.74635 6.39722 7.58609 6.12845 9.49708 7.42226C10.2948 7.20069 11.1502 7.08958 12.0001 7.08577C12.8499 7.08958 13.7061 7.20069 14.5052 7.42226C16.4139 6.12845 17.2525 6.39722 17.2525 6.39722C17.7968 7.77465 17.4544 8.79175 17.3505 9.04362C17.9917 9.74394 18.3797 10.636 18.3797 11.7278C18.3797 15.5687 16.0403 16.4144 13.8135 16.6619C14.1722 16.9723 14.4918 17.5808 14.4918 18.5138C14.4918 19.8518 14.4802 20.9287 14.4802 21.2581C14.4802 21.5242 14.6602 21.836 15.1671 21.7378C19.1383 20.414 22 16.6669 22 12.2501C22 6.72709 17.5227 2.25 12.0001 2.25ZM5.74536 16.4953C5.72333 16.545 5.64517 16.5599 5.57396 16.5258C5.50143 16.4932 5.46069 16.4254 5.48421 16.3756C5.50574 16.3244 5.58406 16.3102 5.65643 16.3445C5.72913 16.3771 5.77053 16.4455 5.74536 16.4953ZM6.23725 16.9342C6.18956 16.9785 6.09633 16.9579 6.03307 16.888C5.96766 16.8183 5.9554 16.7251 6.00376 16.6802C6.05294 16.636 6.14336 16.6567 6.20893 16.7264C6.27434 16.797 6.28709 16.8895 6.23725 16.9342ZM6.57471 17.4958C6.51344 17.5384 6.41325 17.4985 6.35132 17.4095C6.29004 17.3206 6.29004 17.214 6.35264 17.1712C6.41474 17.1285 6.51344 17.1669 6.5762 17.2552C6.6373 17.3456 6.6373 17.4523 6.57471 17.4958ZM7.14542 18.1462C7.09061 18.2066 6.97386 18.1904 6.88841 18.1079C6.80098 18.0273 6.77663 17.9129 6.83161 17.8524C6.88709 17.7918 7.0045 17.8089 7.09061 17.8907C7.17738 17.9711 7.20387 18.0864 7.14542 18.1462ZM7.88301 18.3657C7.85883 18.4441 7.74639 18.4797 7.63312 18.4464C7.52002 18.4121 7.446 18.3204 7.46885 18.2412C7.49237 18.1624 7.6053 18.1253 7.7194 18.1609C7.83234 18.195 7.90652 18.2861 7.88301 18.3657ZM8.72242 18.4589C8.72523 18.5413 8.62919 18.6097 8.51029 18.6112C8.39073 18.6139 8.29402 18.5471 8.29269 18.466C8.29269 18.3827 8.38659 18.315 8.50615 18.313C8.62505 18.3107 8.72242 18.3769 8.72242 18.4589ZM9.54704 18.4273C9.56128 18.5077 9.47865 18.5904 9.36058 18.6124C9.2445 18.6336 9.13702 18.5839 9.12229 18.5041C9.10788 18.4216 9.192 18.339 9.30792 18.3176C9.42616 18.2971 9.53197 18.3455 9.54704 18.4273Z",
2674
+ fill: "#161614"
2675
+ }));
2676
+ };
2677
+ var GitHubIcon = CreateIcon(GithubIconSvg);
2667
2678
  var getParamsFromB2BOAuthProviderConfig = function getParamsFromB2BOAuthProviderConfig(provider) {
2668
2679
  var providerType = '';
2669
2680
  var oneTap = false;
@@ -2941,7 +2952,7 @@ var B2BGoogleOneTap = function B2BGoogleOneTap() {
2941
2952
  return googleAuthButton;
2942
2953
  };
2943
2954
  var productsToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, internal.B2BProducts.oauth, undefined), internal.B2BProducts.sso, 'sso'), internal.B2BProducts.emailMagicLinks, 'magic_link'), internal.B2BProducts.passwords, 'password');
2944
- var oauthProvidersToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, internal.B2BOAuthProviders.Google, 'google_oauth'), internal.B2BOAuthProviders.Microsoft, 'microsoft_oauth'), internal.B2BOAuthProviders.HubSpot, 'hubspot_oauth'), internal.B2BOAuthProviders.Slack, 'slack_oauth');
2955
+ var oauthProvidersToAuthMethods = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, internal.B2BOAuthProviders.Google, 'google_oauth'), internal.B2BOAuthProviders.Microsoft, 'microsoft_oauth'), internal.B2BOAuthProviders.HubSpot, 'hubspot_oauth'), internal.B2BOAuthProviders.Slack, 'slack_oauth'), internal.B2BOAuthProviders.GitHub, 'github_oauth');
2945
2956
  var authMethodsToProducts = Object.entries(productsToAuthMethods).reduce(function (acc, _ref57) {
2946
2957
  var _ref58 = _slicedToArray(_ref57, 2),
2947
2958
  product = _ref58[0],
@@ -3097,6 +3108,11 @@ var getProviderInfo = function getProviderInfo(provider) {
3097
3108
  providerTypeTitle: 'Slack',
3098
3109
  icon: /*#__PURE__*/extractErrorMessage.y(SlackIcon, null)
3099
3110
  };
3111
+ case internal.B2BOAuthProviders.GitHub:
3112
+ return {
3113
+ providerTypeTitle: 'GitHub',
3114
+ icon: /*#__PURE__*/extractErrorMessage.y(GitHubIcon, null)
3115
+ };
3100
3116
  default:
3101
3117
  return {
3102
3118
  providerTypeTitle: '',
@@ -29,7 +29,7 @@ function _isNativeFunction(fn) { try { return Function.toString.call(fn).indexOf
29
29
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
30
30
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
31
31
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
32
- var internal = require('./internal-zrA6uQSx.js');
32
+ var internal = require('./internal-B_-Y0eVO.js');
33
33
  var n$3,
34
34
  l$4,
35
35
  u$3,
@@ -27,7 +27,7 @@ function _isNativeFunction(fn) { try { return Function.toString.call(fn).indexOf
27
27
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
28
28
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
29
29
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
30
- import { O as OAuthProviders } from './internal-6Fhz4oMY.js';
30
+ import { O as OAuthProviders } from './internal-BwQxoPJh.js';
31
31
  var n$3,
32
32
  l$4,
33
33
  u$3,