authhero 0.211.1 → 0.212.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.
- package/README.md +1 -1
- package/dist/authhero.cjs +37 -37
- package/dist/authhero.d.ts +170 -151
- package/dist/authhero.mjs +2784 -2765
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -8697,121 +8697,116 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8697
8697
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8698
8698
|
enabled_clients?: string[] | undefined;
|
|
8699
8699
|
}>, "many">;
|
|
8700
|
-
|
|
8700
|
+
disable_sign_ups: z.ZodBoolean;
|
|
8701
|
+
email_validation: z.ZodString;
|
|
8702
|
+
client_id: z.ZodString;
|
|
8701
8703
|
name: z.ZodString;
|
|
8704
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8705
|
+
global: z.ZodDefault<z.ZodBoolean>;
|
|
8706
|
+
client_secret: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
8707
|
+
app_type: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8708
|
+
"native",
|
|
8709
|
+
"spa",
|
|
8710
|
+
"regular_web",
|
|
8711
|
+
"non_interactive",
|
|
8712
|
+
"resource_server",
|
|
8713
|
+
"express_configuration",
|
|
8714
|
+
"rms",
|
|
8715
|
+
"box",
|
|
8716
|
+
"cloudbees",
|
|
8717
|
+
"concur",
|
|
8718
|
+
"dropbox",
|
|
8719
|
+
"mscrm",
|
|
8720
|
+
"echosign",
|
|
8721
|
+
"egnyte",
|
|
8722
|
+
"newrelic",
|
|
8723
|
+
"office365",
|
|
8724
|
+
"salesforce",
|
|
8725
|
+
"sentry",
|
|
8726
|
+
"sharepoint",
|
|
8727
|
+
"slack",
|
|
8728
|
+
"springcm",
|
|
8729
|
+
"zendesk",
|
|
8730
|
+
"zoom",
|
|
8731
|
+
"sso_integration",
|
|
8732
|
+
"oag"
|
|
8733
|
+
]>>>;
|
|
8734
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
|
8735
|
+
is_first_party: z.ZodDefault<z.ZodBoolean>;
|
|
8736
|
+
oidc_conformant: z.ZodDefault<z.ZodBoolean>;
|
|
8702
8737
|
callbacks: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8703
8738
|
allowed_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8704
8739
|
web_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8705
|
-
|
|
8740
|
+
client_aliases: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8706
8741
|
allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
|
-
|
|
8720
|
-
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
recipient?: string | undefined;
|
|
8728
|
-
createUpnClaim?: boolean | undefined;
|
|
8729
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8730
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8731
|
-
mapIdentities?: boolean | undefined;
|
|
8732
|
-
signatureAlgorithm?: string | undefined;
|
|
8733
|
-
digestAlgorithm?: string | undefined;
|
|
8734
|
-
issuer?: string | undefined;
|
|
8735
|
-
destination?: string | undefined;
|
|
8736
|
-
lifetimeInSeconds?: number | undefined;
|
|
8737
|
-
signResponse?: boolean | undefined;
|
|
8738
|
-
nameIdentifierFormat?: string | undefined;
|
|
8739
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8740
|
-
authnContextClassRef?: string | undefined;
|
|
8741
|
-
mappings?: Record<string, string> | undefined;
|
|
8742
|
-
}, {
|
|
8743
|
-
audience?: string | undefined;
|
|
8744
|
-
recipient?: string | undefined;
|
|
8745
|
-
createUpnClaim?: boolean | undefined;
|
|
8746
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8747
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8748
|
-
mapIdentities?: boolean | undefined;
|
|
8749
|
-
signatureAlgorithm?: string | undefined;
|
|
8750
|
-
digestAlgorithm?: string | undefined;
|
|
8751
|
-
issuer?: string | undefined;
|
|
8752
|
-
destination?: string | undefined;
|
|
8753
|
-
lifetimeInSeconds?: number | undefined;
|
|
8754
|
-
signResponse?: boolean | undefined;
|
|
8755
|
-
nameIdentifierFormat?: string | undefined;
|
|
8756
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8757
|
-
authnContextClassRef?: string | undefined;
|
|
8758
|
-
mappings?: Record<string, string> | undefined;
|
|
8759
|
-
}>>;
|
|
8760
|
-
}, "strip", z.ZodTypeAny, {
|
|
8761
|
-
samlp?: {
|
|
8762
|
-
audience?: string | undefined;
|
|
8763
|
-
recipient?: string | undefined;
|
|
8764
|
-
createUpnClaim?: boolean | undefined;
|
|
8765
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8766
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8767
|
-
mapIdentities?: boolean | undefined;
|
|
8768
|
-
signatureAlgorithm?: string | undefined;
|
|
8769
|
-
digestAlgorithm?: string | undefined;
|
|
8770
|
-
issuer?: string | undefined;
|
|
8771
|
-
destination?: string | undefined;
|
|
8772
|
-
lifetimeInSeconds?: number | undefined;
|
|
8773
|
-
signResponse?: boolean | undefined;
|
|
8774
|
-
nameIdentifierFormat?: string | undefined;
|
|
8775
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8776
|
-
authnContextClassRef?: string | undefined;
|
|
8777
|
-
mappings?: Record<string, string> | undefined;
|
|
8778
|
-
} | undefined;
|
|
8779
|
-
}, {
|
|
8780
|
-
samlp?: {
|
|
8781
|
-
audience?: string | undefined;
|
|
8782
|
-
recipient?: string | undefined;
|
|
8783
|
-
createUpnClaim?: boolean | undefined;
|
|
8784
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8785
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8786
|
-
mapIdentities?: boolean | undefined;
|
|
8787
|
-
signatureAlgorithm?: string | undefined;
|
|
8788
|
-
digestAlgorithm?: string | undefined;
|
|
8789
|
-
issuer?: string | undefined;
|
|
8790
|
-
destination?: string | undefined;
|
|
8791
|
-
lifetimeInSeconds?: number | undefined;
|
|
8792
|
-
signResponse?: boolean | undefined;
|
|
8793
|
-
nameIdentifierFormat?: string | undefined;
|
|
8794
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8795
|
-
authnContextClassRef?: string | undefined;
|
|
8796
|
-
mappings?: Record<string, string> | undefined;
|
|
8797
|
-
} | undefined;
|
|
8798
|
-
}>>>;
|
|
8799
|
-
email_validation: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8800
|
-
"enabled",
|
|
8801
|
-
"disabled",
|
|
8802
|
-
"enforced"
|
|
8742
|
+
allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8743
|
+
session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8744
|
+
oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8745
|
+
grant_types: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
8746
|
+
jwt_configuration: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8747
|
+
signing_keys: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>>;
|
|
8748
|
+
encryption_key: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8749
|
+
sso: z.ZodDefault<z.ZodBoolean>;
|
|
8750
|
+
sso_disabled: z.ZodDefault<z.ZodBoolean>;
|
|
8751
|
+
cross_origin_authentication: z.ZodDefault<z.ZodBoolean>;
|
|
8752
|
+
cross_origin_loc: z.ZodOptional<z.ZodString>;
|
|
8753
|
+
custom_login_page_on: z.ZodDefault<z.ZodBoolean>;
|
|
8754
|
+
custom_login_page: z.ZodOptional<z.ZodString>;
|
|
8755
|
+
custom_login_page_preview: z.ZodOptional<z.ZodString>;
|
|
8756
|
+
form_template: z.ZodOptional<z.ZodString>;
|
|
8757
|
+
addons: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8758
|
+
token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8759
|
+
"none",
|
|
8760
|
+
"client_secret_post",
|
|
8761
|
+
"client_secret_basic"
|
|
8803
8762
|
]>>>;
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
|
|
8807
|
-
|
|
8808
|
-
|
|
8763
|
+
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8764
|
+
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8765
|
+
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
8766
|
+
native_social_login: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8767
|
+
refresh_token: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8768
|
+
default_organization: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8769
|
+
organization_usage: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8770
|
+
"deny",
|
|
8771
|
+
"allow",
|
|
8772
|
+
"require"
|
|
8773
|
+
]>>>;
|
|
8774
|
+
organization_require_behavior: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8775
|
+
"no_prompt",
|
|
8776
|
+
"pre_login_prompt",
|
|
8777
|
+
"post_login_prompt"
|
|
8778
|
+
]>>>;
|
|
8779
|
+
client_authentication_methods: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8780
|
+
require_pushed_authorization_requests: z.ZodDefault<z.ZodBoolean>;
|
|
8781
|
+
require_proof_of_possession: z.ZodDefault<z.ZodBoolean>;
|
|
8782
|
+
signed_request_object: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8783
|
+
compliance_level: z.ZodOptional<z.ZodEnum<[
|
|
8784
|
+
"none",
|
|
8785
|
+
"fapi1_adv_pkj_par",
|
|
8786
|
+
"fapi1_adv_mtls_par",
|
|
8787
|
+
"fapi2_sp_pkj_mtls",
|
|
8788
|
+
"fapi2_sp_mtls_mtls"
|
|
8789
|
+
]>>;
|
|
8790
|
+
par_request_expiry: z.ZodOptional<z.ZodNumber>;
|
|
8791
|
+
token_quota: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8792
|
+
created_at: z.ZodString;
|
|
8793
|
+
updated_at: z.ZodString;
|
|
8809
8794
|
}, "strip", z.ZodTypeAny, {
|
|
8810
8795
|
created_at: string;
|
|
8811
8796
|
updated_at: string;
|
|
8812
8797
|
name: string;
|
|
8813
|
-
|
|
8798
|
+
email_validation: string;
|
|
8814
8799
|
disable_sign_ups: boolean;
|
|
8800
|
+
client_id: string;
|
|
8801
|
+
global: boolean;
|
|
8802
|
+
is_first_party: boolean;
|
|
8803
|
+
oidc_conformant: boolean;
|
|
8804
|
+
sso: boolean;
|
|
8805
|
+
sso_disabled: boolean;
|
|
8806
|
+
cross_origin_authentication: boolean;
|
|
8807
|
+
custom_login_page_on: boolean;
|
|
8808
|
+
require_pushed_authorization_requests: boolean;
|
|
8809
|
+
require_proof_of_possession: boolean;
|
|
8815
8810
|
tenant: {
|
|
8816
8811
|
created_at: string;
|
|
8817
8812
|
updated_at: string;
|
|
@@ -8856,39 +8851,48 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8856
8851
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8857
8852
|
enabled_clients?: string[] | undefined;
|
|
8858
8853
|
}[];
|
|
8854
|
+
description?: string | undefined;
|
|
8855
|
+
refresh_token?: Record<string, any> | undefined;
|
|
8859
8856
|
callbacks?: string[] | undefined;
|
|
8860
8857
|
allowed_origins?: string[] | undefined;
|
|
8861
8858
|
web_origins?: string[] | undefined;
|
|
8862
8859
|
allowed_logout_urls?: string[] | undefined;
|
|
8863
8860
|
allowed_clients?: string[] | undefined;
|
|
8864
|
-
addons?:
|
|
8865
|
-
samlp?: {
|
|
8866
|
-
audience?: string | undefined;
|
|
8867
|
-
recipient?: string | undefined;
|
|
8868
|
-
createUpnClaim?: boolean | undefined;
|
|
8869
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8870
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8871
|
-
mapIdentities?: boolean | undefined;
|
|
8872
|
-
signatureAlgorithm?: string | undefined;
|
|
8873
|
-
digestAlgorithm?: string | undefined;
|
|
8874
|
-
issuer?: string | undefined;
|
|
8875
|
-
destination?: string | undefined;
|
|
8876
|
-
lifetimeInSeconds?: number | undefined;
|
|
8877
|
-
signResponse?: boolean | undefined;
|
|
8878
|
-
nameIdentifierFormat?: string | undefined;
|
|
8879
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8880
|
-
authnContextClassRef?: string | undefined;
|
|
8881
|
-
mappings?: Record<string, string> | undefined;
|
|
8882
|
-
} | undefined;
|
|
8883
|
-
} | undefined;
|
|
8884
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
8861
|
+
addons?: Record<string, any> | undefined;
|
|
8885
8862
|
client_secret?: string | undefined;
|
|
8886
8863
|
client_metadata?: Record<string, string> | undefined;
|
|
8864
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
8865
|
+
logo_uri?: string | undefined;
|
|
8866
|
+
client_aliases?: string[] | undefined;
|
|
8867
|
+
session_transfer?: Record<string, any> | undefined;
|
|
8868
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
8869
|
+
grant_types?: string[] | undefined;
|
|
8870
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
8871
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
8872
|
+
encryption_key?: Record<string, any> | undefined;
|
|
8873
|
+
cross_origin_loc?: string | undefined;
|
|
8874
|
+
custom_login_page?: string | undefined;
|
|
8875
|
+
custom_login_page_preview?: string | undefined;
|
|
8876
|
+
form_template?: string | undefined;
|
|
8877
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
8878
|
+
mobile?: Record<string, any> | undefined;
|
|
8879
|
+
initiate_login_uri?: string | undefined;
|
|
8880
|
+
native_social_login?: Record<string, any> | undefined;
|
|
8881
|
+
default_organization?: Record<string, any> | undefined;
|
|
8882
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
8883
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
8884
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
8885
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
8886
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
8887
|
+
par_request_expiry?: number | undefined;
|
|
8888
|
+
token_quota?: Record<string, any> | undefined;
|
|
8887
8889
|
}, {
|
|
8888
8890
|
created_at: string;
|
|
8889
8891
|
updated_at: string;
|
|
8890
8892
|
name: string;
|
|
8891
|
-
|
|
8893
|
+
email_validation: string;
|
|
8894
|
+
disable_sign_ups: boolean;
|
|
8895
|
+
client_id: string;
|
|
8892
8896
|
tenant: {
|
|
8893
8897
|
created_at: string;
|
|
8894
8898
|
updated_at: string;
|
|
@@ -8933,35 +8937,50 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
8933
8937
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
8934
8938
|
enabled_clients?: string[] | undefined;
|
|
8935
8939
|
}[];
|
|
8940
|
+
description?: string | undefined;
|
|
8941
|
+
refresh_token?: Record<string, any> | undefined;
|
|
8936
8942
|
callbacks?: string[] | undefined;
|
|
8937
8943
|
allowed_origins?: string[] | undefined;
|
|
8938
8944
|
web_origins?: string[] | undefined;
|
|
8939
8945
|
allowed_logout_urls?: string[] | undefined;
|
|
8940
8946
|
allowed_clients?: string[] | undefined;
|
|
8941
|
-
addons?:
|
|
8942
|
-
samlp?: {
|
|
8943
|
-
audience?: string | undefined;
|
|
8944
|
-
recipient?: string | undefined;
|
|
8945
|
-
createUpnClaim?: boolean | undefined;
|
|
8946
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
8947
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
8948
|
-
mapIdentities?: boolean | undefined;
|
|
8949
|
-
signatureAlgorithm?: string | undefined;
|
|
8950
|
-
digestAlgorithm?: string | undefined;
|
|
8951
|
-
issuer?: string | undefined;
|
|
8952
|
-
destination?: string | undefined;
|
|
8953
|
-
lifetimeInSeconds?: number | undefined;
|
|
8954
|
-
signResponse?: boolean | undefined;
|
|
8955
|
-
nameIdentifierFormat?: string | undefined;
|
|
8956
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
8957
|
-
authnContextClassRef?: string | undefined;
|
|
8958
|
-
mappings?: Record<string, string> | undefined;
|
|
8959
|
-
} | undefined;
|
|
8960
|
-
} | undefined;
|
|
8961
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
8947
|
+
addons?: Record<string, any> | undefined;
|
|
8962
8948
|
client_secret?: string | undefined;
|
|
8963
|
-
disable_sign_ups?: boolean | undefined;
|
|
8964
8949
|
client_metadata?: Record<string, string> | undefined;
|
|
8950
|
+
global?: boolean | undefined;
|
|
8951
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
8952
|
+
logo_uri?: string | undefined;
|
|
8953
|
+
is_first_party?: boolean | undefined;
|
|
8954
|
+
oidc_conformant?: boolean | undefined;
|
|
8955
|
+
client_aliases?: string[] | undefined;
|
|
8956
|
+
session_transfer?: Record<string, any> | undefined;
|
|
8957
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
8958
|
+
grant_types?: string[] | undefined;
|
|
8959
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
8960
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
8961
|
+
encryption_key?: Record<string, any> | undefined;
|
|
8962
|
+
sso?: boolean | undefined;
|
|
8963
|
+
sso_disabled?: boolean | undefined;
|
|
8964
|
+
cross_origin_authentication?: boolean | undefined;
|
|
8965
|
+
cross_origin_loc?: string | undefined;
|
|
8966
|
+
custom_login_page_on?: boolean | undefined;
|
|
8967
|
+
custom_login_page?: string | undefined;
|
|
8968
|
+
custom_login_page_preview?: string | undefined;
|
|
8969
|
+
form_template?: string | undefined;
|
|
8970
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
8971
|
+
mobile?: Record<string, any> | undefined;
|
|
8972
|
+
initiate_login_uri?: string | undefined;
|
|
8973
|
+
native_social_login?: Record<string, any> | undefined;
|
|
8974
|
+
default_organization?: Record<string, any> | undefined;
|
|
8975
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
8976
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
8977
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
8978
|
+
require_pushed_authorization_requests?: boolean | undefined;
|
|
8979
|
+
require_proof_of_possession?: boolean | undefined;
|
|
8980
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
8981
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
8982
|
+
par_request_expiry?: number | undefined;
|
|
8983
|
+
token_quota?: Record<string, any> | undefined;
|
|
8965
8984
|
}>;
|
|
8966
8985
|
export type LegacyClient = z.infer<typeof LegacyClientSchema>;
|
|
8967
8986
|
export declare const codeTypeSchema: z.ZodEnum<[
|
|
@@ -19171,6 +19190,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19171
19190
|
callbacks?: string[] | undefined;
|
|
19172
19191
|
id?: string | undefined;
|
|
19173
19192
|
disable_sign_ups?: boolean | undefined;
|
|
19193
|
+
email_validation?: "disabled" | "enabled" | "enforced" | undefined;
|
|
19174
19194
|
allowed_origins?: string[] | undefined;
|
|
19175
19195
|
web_origins?: string[] | undefined;
|
|
19176
19196
|
allowed_logout_urls?: string[] | undefined;
|
|
@@ -19195,7 +19215,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19195
19215
|
mappings?: Record<string, string> | undefined;
|
|
19196
19216
|
} | undefined;
|
|
19197
19217
|
} | undefined;
|
|
19198
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19199
19218
|
client_secret?: string | undefined;
|
|
19200
19219
|
client_metadata?: Record<string, string> | undefined;
|
|
19201
19220
|
};
|
|
@@ -19256,6 +19275,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19256
19275
|
id: string;
|
|
19257
19276
|
callbacks?: string[] | undefined;
|
|
19258
19277
|
disable_sign_ups?: boolean | undefined;
|
|
19278
|
+
email_validation?: "disabled" | "enabled" | "enforced" | undefined;
|
|
19259
19279
|
allowed_origins?: string[] | undefined;
|
|
19260
19280
|
web_origins?: string[] | undefined;
|
|
19261
19281
|
allowed_logout_urls?: string[] | undefined;
|
|
@@ -19280,7 +19300,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19280
19300
|
mappings?: Record<string, string> | undefined;
|
|
19281
19301
|
} | undefined;
|
|
19282
19302
|
} | undefined;
|
|
19283
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19284
19303
|
client_secret?: string | undefined;
|
|
19285
19304
|
client_metadata?: Record<string, string> | undefined;
|
|
19286
19305
|
};
|
|
@@ -19292,6 +19311,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19292
19311
|
updated_at: string;
|
|
19293
19312
|
disable_sign_ups: boolean;
|
|
19294
19313
|
callbacks?: string[] | undefined;
|
|
19314
|
+
email_validation?: "disabled" | "enabled" | "enforced" | undefined;
|
|
19295
19315
|
allowed_origins?: string[] | undefined;
|
|
19296
19316
|
web_origins?: string[] | undefined;
|
|
19297
19317
|
allowed_logout_urls?: string[] | undefined;
|
|
@@ -19318,7 +19338,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19318
19338
|
} | undefined;
|
|
19319
19339
|
} | undefined;
|
|
19320
19340
|
} | undefined;
|
|
19321
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19322
19341
|
client_secret?: string | undefined;
|
|
19323
19342
|
client_metadata?: {
|
|
19324
19343
|
[x: string]: string;
|