authhero 0.211.1 → 0.213.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 +41 -41
- package/dist/authhero.d.ts +553 -309
- package/dist/authhero.mjs +132 -124
- 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<[
|
|
@@ -19000,40 +19019,79 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19000
19019
|
created_at: string;
|
|
19001
19020
|
updated_at: string;
|
|
19002
19021
|
name: string;
|
|
19003
|
-
|
|
19004
|
-
|
|
19022
|
+
client_id: string;
|
|
19023
|
+
global: boolean;
|
|
19024
|
+
is_first_party: boolean;
|
|
19025
|
+
oidc_conformant: boolean;
|
|
19026
|
+
sso: boolean;
|
|
19027
|
+
sso_disabled: boolean;
|
|
19028
|
+
cross_origin_authentication: boolean;
|
|
19029
|
+
custom_login_page_on: boolean;
|
|
19030
|
+
require_pushed_authorization_requests: boolean;
|
|
19031
|
+
require_proof_of_possession: boolean;
|
|
19032
|
+
description?: string | undefined | undefined;
|
|
19033
|
+
refresh_token?: {
|
|
19034
|
+
[x: string]: any;
|
|
19035
|
+
} | undefined;
|
|
19005
19036
|
callbacks?: string[] | undefined | undefined;
|
|
19006
19037
|
allowed_origins?: string[] | undefined | undefined;
|
|
19007
19038
|
web_origins?: string[] | undefined | undefined;
|
|
19008
19039
|
allowed_logout_urls?: string[] | undefined | undefined;
|
|
19009
19040
|
allowed_clients?: string[] | undefined | undefined;
|
|
19010
19041
|
addons?: {
|
|
19011
|
-
|
|
19012
|
-
audience?: string | undefined | undefined;
|
|
19013
|
-
recipient?: string | undefined | undefined;
|
|
19014
|
-
createUpnClaim?: boolean | undefined | undefined;
|
|
19015
|
-
mapUnknownClaimsAsIs?: boolean | undefined | undefined;
|
|
19016
|
-
passthroughClaimsWithNoMapping?: boolean | undefined | undefined;
|
|
19017
|
-
mapIdentities?: boolean | undefined | undefined;
|
|
19018
|
-
signatureAlgorithm?: string | undefined | undefined;
|
|
19019
|
-
digestAlgorithm?: string | undefined | undefined;
|
|
19020
|
-
issuer?: string | undefined | undefined;
|
|
19021
|
-
destination?: string | undefined | undefined;
|
|
19022
|
-
lifetimeInSeconds?: number | undefined | undefined;
|
|
19023
|
-
signResponse?: boolean | undefined | undefined;
|
|
19024
|
-
nameIdentifierFormat?: string | undefined | undefined;
|
|
19025
|
-
nameIdentifierProbes?: string[] | undefined | undefined;
|
|
19026
|
-
authnContextClassRef?: string | undefined | undefined;
|
|
19027
|
-
mappings?: {
|
|
19028
|
-
[x: string]: string;
|
|
19029
|
-
} | undefined;
|
|
19030
|
-
} | undefined;
|
|
19042
|
+
[x: string]: any;
|
|
19031
19043
|
} | undefined;
|
|
19032
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined | undefined;
|
|
19033
19044
|
client_secret?: string | undefined | undefined;
|
|
19034
19045
|
client_metadata?: {
|
|
19035
19046
|
[x: string]: string;
|
|
19036
19047
|
} | undefined;
|
|
19048
|
+
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 | undefined;
|
|
19049
|
+
logo_uri?: string | undefined | undefined;
|
|
19050
|
+
client_aliases?: string[] | undefined | undefined;
|
|
19051
|
+
session_transfer?: {
|
|
19052
|
+
[x: string]: any;
|
|
19053
|
+
} | undefined;
|
|
19054
|
+
oidc_logout?: {
|
|
19055
|
+
[x: string]: any;
|
|
19056
|
+
} | undefined;
|
|
19057
|
+
grant_types?: string[] | undefined | undefined;
|
|
19058
|
+
jwt_configuration?: {
|
|
19059
|
+
[x: string]: any;
|
|
19060
|
+
} | undefined;
|
|
19061
|
+
signing_keys?: {
|
|
19062
|
+
[x: string]: any;
|
|
19063
|
+
}[] | undefined;
|
|
19064
|
+
encryption_key?: {
|
|
19065
|
+
[x: string]: any;
|
|
19066
|
+
} | undefined;
|
|
19067
|
+
cross_origin_loc?: string | undefined | undefined;
|
|
19068
|
+
custom_login_page?: string | undefined | undefined;
|
|
19069
|
+
custom_login_page_preview?: string | undefined | undefined;
|
|
19070
|
+
form_template?: string | undefined | undefined;
|
|
19071
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
|
|
19072
|
+
mobile?: {
|
|
19073
|
+
[x: string]: any;
|
|
19074
|
+
} | undefined;
|
|
19075
|
+
initiate_login_uri?: string | undefined | undefined;
|
|
19076
|
+
native_social_login?: {
|
|
19077
|
+
[x: string]: any;
|
|
19078
|
+
} | undefined;
|
|
19079
|
+
default_organization?: {
|
|
19080
|
+
[x: string]: any;
|
|
19081
|
+
} | undefined;
|
|
19082
|
+
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
19083
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined | undefined;
|
|
19084
|
+
client_authentication_methods?: {
|
|
19085
|
+
[x: string]: any;
|
|
19086
|
+
} | undefined;
|
|
19087
|
+
signed_request_object?: {
|
|
19088
|
+
[x: string]: any;
|
|
19089
|
+
} | undefined;
|
|
19090
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined | undefined;
|
|
19091
|
+
par_request_expiry?: number | undefined | undefined;
|
|
19092
|
+
token_quota?: {
|
|
19093
|
+
[x: string]: any;
|
|
19094
|
+
} | undefined;
|
|
19037
19095
|
}[] | {
|
|
19038
19096
|
length: number;
|
|
19039
19097
|
start: number;
|
|
@@ -19042,40 +19100,79 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19042
19100
|
created_at: string;
|
|
19043
19101
|
updated_at: string;
|
|
19044
19102
|
name: string;
|
|
19045
|
-
|
|
19046
|
-
|
|
19103
|
+
client_id: string;
|
|
19104
|
+
global: boolean;
|
|
19105
|
+
is_first_party: boolean;
|
|
19106
|
+
oidc_conformant: boolean;
|
|
19107
|
+
sso: boolean;
|
|
19108
|
+
sso_disabled: boolean;
|
|
19109
|
+
cross_origin_authentication: boolean;
|
|
19110
|
+
custom_login_page_on: boolean;
|
|
19111
|
+
require_pushed_authorization_requests: boolean;
|
|
19112
|
+
require_proof_of_possession: boolean;
|
|
19113
|
+
description?: string | undefined | undefined;
|
|
19114
|
+
refresh_token?: {
|
|
19115
|
+
[x: string]: any;
|
|
19116
|
+
} | undefined;
|
|
19047
19117
|
callbacks?: string[] | undefined | undefined;
|
|
19048
19118
|
allowed_origins?: string[] | undefined | undefined;
|
|
19049
19119
|
web_origins?: string[] | undefined | undefined;
|
|
19050
19120
|
allowed_logout_urls?: string[] | undefined | undefined;
|
|
19051
19121
|
allowed_clients?: string[] | undefined | undefined;
|
|
19052
19122
|
addons?: {
|
|
19053
|
-
|
|
19054
|
-
audience?: string | undefined | undefined;
|
|
19055
|
-
recipient?: string | undefined | undefined;
|
|
19056
|
-
createUpnClaim?: boolean | undefined | undefined;
|
|
19057
|
-
mapUnknownClaimsAsIs?: boolean | undefined | undefined;
|
|
19058
|
-
passthroughClaimsWithNoMapping?: boolean | undefined | undefined;
|
|
19059
|
-
mapIdentities?: boolean | undefined | undefined;
|
|
19060
|
-
signatureAlgorithm?: string | undefined | undefined;
|
|
19061
|
-
digestAlgorithm?: string | undefined | undefined;
|
|
19062
|
-
issuer?: string | undefined | undefined;
|
|
19063
|
-
destination?: string | undefined | undefined;
|
|
19064
|
-
lifetimeInSeconds?: number | undefined | undefined;
|
|
19065
|
-
signResponse?: boolean | undefined | undefined;
|
|
19066
|
-
nameIdentifierFormat?: string | undefined | undefined;
|
|
19067
|
-
nameIdentifierProbes?: string[] | undefined | undefined;
|
|
19068
|
-
authnContextClassRef?: string | undefined | undefined;
|
|
19069
|
-
mappings?: {
|
|
19070
|
-
[x: string]: string;
|
|
19071
|
-
} | undefined;
|
|
19072
|
-
} | undefined;
|
|
19123
|
+
[x: string]: any;
|
|
19073
19124
|
} | undefined;
|
|
19074
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined | undefined;
|
|
19075
19125
|
client_secret?: string | undefined | undefined;
|
|
19076
19126
|
client_metadata?: {
|
|
19077
19127
|
[x: string]: string;
|
|
19078
19128
|
} | undefined;
|
|
19129
|
+
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 | undefined;
|
|
19130
|
+
logo_uri?: string | undefined | undefined;
|
|
19131
|
+
client_aliases?: string[] | undefined | undefined;
|
|
19132
|
+
session_transfer?: {
|
|
19133
|
+
[x: string]: any;
|
|
19134
|
+
} | undefined;
|
|
19135
|
+
oidc_logout?: {
|
|
19136
|
+
[x: string]: any;
|
|
19137
|
+
} | undefined;
|
|
19138
|
+
grant_types?: string[] | undefined | undefined;
|
|
19139
|
+
jwt_configuration?: {
|
|
19140
|
+
[x: string]: any;
|
|
19141
|
+
} | undefined;
|
|
19142
|
+
signing_keys?: {
|
|
19143
|
+
[x: string]: any;
|
|
19144
|
+
}[] | undefined;
|
|
19145
|
+
encryption_key?: {
|
|
19146
|
+
[x: string]: any;
|
|
19147
|
+
} | undefined;
|
|
19148
|
+
cross_origin_loc?: string | undefined | undefined;
|
|
19149
|
+
custom_login_page?: string | undefined | undefined;
|
|
19150
|
+
custom_login_page_preview?: string | undefined | undefined;
|
|
19151
|
+
form_template?: string | undefined | undefined;
|
|
19152
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
|
|
19153
|
+
mobile?: {
|
|
19154
|
+
[x: string]: any;
|
|
19155
|
+
} | undefined;
|
|
19156
|
+
initiate_login_uri?: string | undefined | undefined;
|
|
19157
|
+
native_social_login?: {
|
|
19158
|
+
[x: string]: any;
|
|
19159
|
+
} | undefined;
|
|
19160
|
+
default_organization?: {
|
|
19161
|
+
[x: string]: any;
|
|
19162
|
+
} | undefined;
|
|
19163
|
+
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
19164
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined | undefined;
|
|
19165
|
+
client_authentication_methods?: {
|
|
19166
|
+
[x: string]: any;
|
|
19167
|
+
} | undefined;
|
|
19168
|
+
signed_request_object?: {
|
|
19169
|
+
[x: string]: any;
|
|
19170
|
+
} | undefined;
|
|
19171
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined | undefined;
|
|
19172
|
+
par_request_expiry?: number | undefined | undefined;
|
|
19173
|
+
token_quota?: {
|
|
19174
|
+
[x: string]: any;
|
|
19175
|
+
} | undefined;
|
|
19079
19176
|
}[];
|
|
19080
19177
|
};
|
|
19081
19178
|
outputFormat: "json";
|
|
@@ -19098,40 +19195,79 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19098
19195
|
created_at: string;
|
|
19099
19196
|
updated_at: string;
|
|
19100
19197
|
name: string;
|
|
19101
|
-
|
|
19102
|
-
|
|
19198
|
+
client_id: string;
|
|
19199
|
+
global: boolean;
|
|
19200
|
+
is_first_party: boolean;
|
|
19201
|
+
oidc_conformant: boolean;
|
|
19202
|
+
sso: boolean;
|
|
19203
|
+
sso_disabled: boolean;
|
|
19204
|
+
cross_origin_authentication: boolean;
|
|
19205
|
+
custom_login_page_on: boolean;
|
|
19206
|
+
require_pushed_authorization_requests: boolean;
|
|
19207
|
+
require_proof_of_possession: boolean;
|
|
19208
|
+
description?: string | undefined | undefined;
|
|
19209
|
+
refresh_token?: {
|
|
19210
|
+
[x: string]: any;
|
|
19211
|
+
} | undefined;
|
|
19103
19212
|
callbacks?: string[] | undefined | undefined;
|
|
19104
19213
|
allowed_origins?: string[] | undefined | undefined;
|
|
19105
19214
|
web_origins?: string[] | undefined | undefined;
|
|
19106
19215
|
allowed_logout_urls?: string[] | undefined | undefined;
|
|
19107
19216
|
allowed_clients?: string[] | undefined | undefined;
|
|
19108
19217
|
addons?: {
|
|
19109
|
-
|
|
19110
|
-
audience?: string | undefined | undefined;
|
|
19111
|
-
recipient?: string | undefined | undefined;
|
|
19112
|
-
createUpnClaim?: boolean | undefined | undefined;
|
|
19113
|
-
mapUnknownClaimsAsIs?: boolean | undefined | undefined;
|
|
19114
|
-
passthroughClaimsWithNoMapping?: boolean | undefined | undefined;
|
|
19115
|
-
mapIdentities?: boolean | undefined | undefined;
|
|
19116
|
-
signatureAlgorithm?: string | undefined | undefined;
|
|
19117
|
-
digestAlgorithm?: string | undefined | undefined;
|
|
19118
|
-
issuer?: string | undefined | undefined;
|
|
19119
|
-
destination?: string | undefined | undefined;
|
|
19120
|
-
lifetimeInSeconds?: number | undefined | undefined;
|
|
19121
|
-
signResponse?: boolean | undefined | undefined;
|
|
19122
|
-
nameIdentifierFormat?: string | undefined | undefined;
|
|
19123
|
-
nameIdentifierProbes?: string[] | undefined | undefined;
|
|
19124
|
-
authnContextClassRef?: string | undefined | undefined;
|
|
19125
|
-
mappings?: {
|
|
19126
|
-
[x: string]: string;
|
|
19127
|
-
} | undefined;
|
|
19128
|
-
} | undefined;
|
|
19218
|
+
[x: string]: any;
|
|
19129
19219
|
} | undefined;
|
|
19130
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined | undefined;
|
|
19131
19220
|
client_secret?: string | undefined | undefined;
|
|
19132
19221
|
client_metadata?: {
|
|
19133
19222
|
[x: string]: string;
|
|
19134
19223
|
} | undefined;
|
|
19224
|
+
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 | undefined;
|
|
19225
|
+
logo_uri?: string | undefined | undefined;
|
|
19226
|
+
client_aliases?: string[] | undefined | undefined;
|
|
19227
|
+
session_transfer?: {
|
|
19228
|
+
[x: string]: any;
|
|
19229
|
+
} | undefined;
|
|
19230
|
+
oidc_logout?: {
|
|
19231
|
+
[x: string]: any;
|
|
19232
|
+
} | undefined;
|
|
19233
|
+
grant_types?: string[] | undefined | undefined;
|
|
19234
|
+
jwt_configuration?: {
|
|
19235
|
+
[x: string]: any;
|
|
19236
|
+
} | undefined;
|
|
19237
|
+
signing_keys?: {
|
|
19238
|
+
[x: string]: any;
|
|
19239
|
+
}[] | undefined;
|
|
19240
|
+
encryption_key?: {
|
|
19241
|
+
[x: string]: any;
|
|
19242
|
+
} | undefined;
|
|
19243
|
+
cross_origin_loc?: string | undefined | undefined;
|
|
19244
|
+
custom_login_page?: string | undefined | undefined;
|
|
19245
|
+
custom_login_page_preview?: string | undefined | undefined;
|
|
19246
|
+
form_template?: string | undefined | undefined;
|
|
19247
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
|
|
19248
|
+
mobile?: {
|
|
19249
|
+
[x: string]: any;
|
|
19250
|
+
} | undefined;
|
|
19251
|
+
initiate_login_uri?: string | undefined | undefined;
|
|
19252
|
+
native_social_login?: {
|
|
19253
|
+
[x: string]: any;
|
|
19254
|
+
} | undefined;
|
|
19255
|
+
default_organization?: {
|
|
19256
|
+
[x: string]: any;
|
|
19257
|
+
} | undefined;
|
|
19258
|
+
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
19259
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined | undefined;
|
|
19260
|
+
client_authentication_methods?: {
|
|
19261
|
+
[x: string]: any;
|
|
19262
|
+
} | undefined;
|
|
19263
|
+
signed_request_object?: {
|
|
19264
|
+
[x: string]: any;
|
|
19265
|
+
} | undefined;
|
|
19266
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined | undefined;
|
|
19267
|
+
par_request_expiry?: number | undefined | undefined;
|
|
19268
|
+
token_quota?: {
|
|
19269
|
+
[x: string]: any;
|
|
19270
|
+
} | undefined;
|
|
19135
19271
|
};
|
|
19136
19272
|
outputFormat: "json";
|
|
19137
19273
|
status: 200;
|
|
@@ -19168,76 +19304,130 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19168
19304
|
} & {
|
|
19169
19305
|
json: {
|
|
19170
19306
|
name?: string | undefined;
|
|
19307
|
+
description?: string | undefined;
|
|
19308
|
+
client_id?: string | undefined;
|
|
19171
19309
|
callbacks?: string[] | undefined;
|
|
19172
|
-
|
|
19173
|
-
|
|
19310
|
+
refresh_token?: Record<string, any> | undefined;
|
|
19311
|
+
token_quota?: Record<string, any> | undefined;
|
|
19312
|
+
global?: boolean | undefined;
|
|
19313
|
+
is_first_party?: boolean | undefined;
|
|
19314
|
+
oidc_conformant?: boolean | undefined;
|
|
19315
|
+
sso?: boolean | undefined;
|
|
19316
|
+
sso_disabled?: boolean | undefined;
|
|
19317
|
+
cross_origin_authentication?: boolean | undefined;
|
|
19318
|
+
custom_login_page_on?: boolean | undefined;
|
|
19319
|
+
require_pushed_authorization_requests?: boolean | undefined;
|
|
19320
|
+
require_proof_of_possession?: boolean | undefined;
|
|
19174
19321
|
allowed_origins?: string[] | undefined;
|
|
19175
19322
|
web_origins?: string[] | undefined;
|
|
19176
19323
|
allowed_logout_urls?: string[] | undefined;
|
|
19177
19324
|
allowed_clients?: string[] | undefined;
|
|
19178
|
-
addons?:
|
|
19179
|
-
samlp?: {
|
|
19180
|
-
audience?: string | undefined;
|
|
19181
|
-
recipient?: string | undefined;
|
|
19182
|
-
createUpnClaim?: boolean | undefined;
|
|
19183
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
19184
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
19185
|
-
mapIdentities?: boolean | undefined;
|
|
19186
|
-
signatureAlgorithm?: string | undefined;
|
|
19187
|
-
digestAlgorithm?: string | undefined;
|
|
19188
|
-
issuer?: string | undefined;
|
|
19189
|
-
destination?: string | undefined;
|
|
19190
|
-
lifetimeInSeconds?: number | undefined;
|
|
19191
|
-
signResponse?: boolean | undefined;
|
|
19192
|
-
nameIdentifierFormat?: string | undefined;
|
|
19193
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
19194
|
-
authnContextClassRef?: string | undefined;
|
|
19195
|
-
mappings?: Record<string, string> | undefined;
|
|
19196
|
-
} | undefined;
|
|
19197
|
-
} | undefined;
|
|
19198
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19325
|
+
addons?: Record<string, any> | undefined;
|
|
19199
19326
|
client_secret?: string | undefined;
|
|
19200
19327
|
client_metadata?: Record<string, string> | undefined;
|
|
19328
|
+
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;
|
|
19329
|
+
logo_uri?: string | undefined;
|
|
19330
|
+
client_aliases?: string[] | undefined;
|
|
19331
|
+
session_transfer?: Record<string, any> | undefined;
|
|
19332
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
19333
|
+
grant_types?: string[] | undefined;
|
|
19334
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
19335
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
19336
|
+
encryption_key?: Record<string, any> | undefined;
|
|
19337
|
+
cross_origin_loc?: string | undefined;
|
|
19338
|
+
custom_login_page?: string | undefined;
|
|
19339
|
+
custom_login_page_preview?: string | undefined;
|
|
19340
|
+
form_template?: string | undefined;
|
|
19341
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
19342
|
+
mobile?: Record<string, any> | undefined;
|
|
19343
|
+
initiate_login_uri?: string | undefined;
|
|
19344
|
+
native_social_login?: Record<string, any> | undefined;
|
|
19345
|
+
default_organization?: Record<string, any> | undefined;
|
|
19346
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
19347
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
19348
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
19349
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
19350
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
19351
|
+
par_request_expiry?: number | undefined;
|
|
19201
19352
|
};
|
|
19202
19353
|
};
|
|
19203
19354
|
output: {
|
|
19204
19355
|
created_at: string;
|
|
19205
19356
|
updated_at: string;
|
|
19206
19357
|
name: string;
|
|
19207
|
-
|
|
19208
|
-
|
|
19358
|
+
client_id: string;
|
|
19359
|
+
global: boolean;
|
|
19360
|
+
is_first_party: boolean;
|
|
19361
|
+
oidc_conformant: boolean;
|
|
19362
|
+
sso: boolean;
|
|
19363
|
+
sso_disabled: boolean;
|
|
19364
|
+
cross_origin_authentication: boolean;
|
|
19365
|
+
custom_login_page_on: boolean;
|
|
19366
|
+
require_pushed_authorization_requests: boolean;
|
|
19367
|
+
require_proof_of_possession: boolean;
|
|
19368
|
+
description?: string | undefined | undefined;
|
|
19369
|
+
refresh_token?: {
|
|
19370
|
+
[x: string]: any;
|
|
19371
|
+
} | undefined;
|
|
19209
19372
|
callbacks?: string[] | undefined | undefined;
|
|
19210
19373
|
allowed_origins?: string[] | undefined | undefined;
|
|
19211
19374
|
web_origins?: string[] | undefined | undefined;
|
|
19212
19375
|
allowed_logout_urls?: string[] | undefined | undefined;
|
|
19213
19376
|
allowed_clients?: string[] | undefined | undefined;
|
|
19214
19377
|
addons?: {
|
|
19215
|
-
|
|
19216
|
-
audience?: string | undefined | undefined;
|
|
19217
|
-
recipient?: string | undefined | undefined;
|
|
19218
|
-
createUpnClaim?: boolean | undefined | undefined;
|
|
19219
|
-
mapUnknownClaimsAsIs?: boolean | undefined | undefined;
|
|
19220
|
-
passthroughClaimsWithNoMapping?: boolean | undefined | undefined;
|
|
19221
|
-
mapIdentities?: boolean | undefined | undefined;
|
|
19222
|
-
signatureAlgorithm?: string | undefined | undefined;
|
|
19223
|
-
digestAlgorithm?: string | undefined | undefined;
|
|
19224
|
-
issuer?: string | undefined | undefined;
|
|
19225
|
-
destination?: string | undefined | undefined;
|
|
19226
|
-
lifetimeInSeconds?: number | undefined | undefined;
|
|
19227
|
-
signResponse?: boolean | undefined | undefined;
|
|
19228
|
-
nameIdentifierFormat?: string | undefined | undefined;
|
|
19229
|
-
nameIdentifierProbes?: string[] | undefined | undefined;
|
|
19230
|
-
authnContextClassRef?: string | undefined | undefined;
|
|
19231
|
-
mappings?: {
|
|
19232
|
-
[x: string]: string;
|
|
19233
|
-
} | undefined;
|
|
19234
|
-
} | undefined;
|
|
19378
|
+
[x: string]: any;
|
|
19235
19379
|
} | undefined;
|
|
19236
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined | undefined;
|
|
19237
19380
|
client_secret?: string | undefined | undefined;
|
|
19238
19381
|
client_metadata?: {
|
|
19239
19382
|
[x: string]: string;
|
|
19240
19383
|
} | undefined;
|
|
19384
|
+
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 | undefined;
|
|
19385
|
+
logo_uri?: string | undefined | undefined;
|
|
19386
|
+
client_aliases?: string[] | undefined | undefined;
|
|
19387
|
+
session_transfer?: {
|
|
19388
|
+
[x: string]: any;
|
|
19389
|
+
} | undefined;
|
|
19390
|
+
oidc_logout?: {
|
|
19391
|
+
[x: string]: any;
|
|
19392
|
+
} | undefined;
|
|
19393
|
+
grant_types?: string[] | undefined | undefined;
|
|
19394
|
+
jwt_configuration?: {
|
|
19395
|
+
[x: string]: any;
|
|
19396
|
+
} | undefined;
|
|
19397
|
+
signing_keys?: {
|
|
19398
|
+
[x: string]: any;
|
|
19399
|
+
}[] | undefined;
|
|
19400
|
+
encryption_key?: {
|
|
19401
|
+
[x: string]: any;
|
|
19402
|
+
} | undefined;
|
|
19403
|
+
cross_origin_loc?: string | undefined | undefined;
|
|
19404
|
+
custom_login_page?: string | undefined | undefined;
|
|
19405
|
+
custom_login_page_preview?: string | undefined | undefined;
|
|
19406
|
+
form_template?: string | undefined | undefined;
|
|
19407
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined | undefined;
|
|
19408
|
+
mobile?: {
|
|
19409
|
+
[x: string]: any;
|
|
19410
|
+
} | undefined;
|
|
19411
|
+
initiate_login_uri?: string | undefined | undefined;
|
|
19412
|
+
native_social_login?: {
|
|
19413
|
+
[x: string]: any;
|
|
19414
|
+
} | undefined;
|
|
19415
|
+
default_organization?: {
|
|
19416
|
+
[x: string]: any;
|
|
19417
|
+
} | undefined;
|
|
19418
|
+
organization_usage?: "deny" | "allow" | "require" | undefined | undefined;
|
|
19419
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined | undefined;
|
|
19420
|
+
client_authentication_methods?: {
|
|
19421
|
+
[x: string]: any;
|
|
19422
|
+
} | undefined;
|
|
19423
|
+
signed_request_object?: {
|
|
19424
|
+
[x: string]: any;
|
|
19425
|
+
} | undefined;
|
|
19426
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined | undefined;
|
|
19427
|
+
par_request_expiry?: number | undefined | undefined;
|
|
19428
|
+
token_quota?: {
|
|
19429
|
+
[x: string]: any;
|
|
19430
|
+
} | undefined;
|
|
19241
19431
|
};
|
|
19242
19432
|
outputFormat: "json";
|
|
19243
19433
|
status: 200;
|
|
@@ -19253,76 +19443,130 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
19253
19443
|
} & {
|
|
19254
19444
|
json: {
|
|
19255
19445
|
name: string;
|
|
19256
|
-
|
|
19446
|
+
client_id: string;
|
|
19447
|
+
description?: string | undefined;
|
|
19257
19448
|
callbacks?: string[] | undefined;
|
|
19258
|
-
|
|
19449
|
+
refresh_token?: Record<string, any> | undefined;
|
|
19450
|
+
token_quota?: Record<string, any> | undefined;
|
|
19451
|
+
global?: boolean | undefined;
|
|
19452
|
+
is_first_party?: boolean | undefined;
|
|
19453
|
+
oidc_conformant?: boolean | undefined;
|
|
19454
|
+
sso?: boolean | undefined;
|
|
19455
|
+
sso_disabled?: boolean | undefined;
|
|
19456
|
+
cross_origin_authentication?: boolean | undefined;
|
|
19457
|
+
custom_login_page_on?: boolean | undefined;
|
|
19458
|
+
require_pushed_authorization_requests?: boolean | undefined;
|
|
19459
|
+
require_proof_of_possession?: boolean | undefined;
|
|
19259
19460
|
allowed_origins?: string[] | undefined;
|
|
19260
19461
|
web_origins?: string[] | undefined;
|
|
19261
19462
|
allowed_logout_urls?: string[] | undefined;
|
|
19262
19463
|
allowed_clients?: string[] | undefined;
|
|
19263
|
-
addons?:
|
|
19264
|
-
samlp?: {
|
|
19265
|
-
audience?: string | undefined;
|
|
19266
|
-
recipient?: string | undefined;
|
|
19267
|
-
createUpnClaim?: boolean | undefined;
|
|
19268
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
19269
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
19270
|
-
mapIdentities?: boolean | undefined;
|
|
19271
|
-
signatureAlgorithm?: string | undefined;
|
|
19272
|
-
digestAlgorithm?: string | undefined;
|
|
19273
|
-
issuer?: string | undefined;
|
|
19274
|
-
destination?: string | undefined;
|
|
19275
|
-
lifetimeInSeconds?: number | undefined;
|
|
19276
|
-
signResponse?: boolean | undefined;
|
|
19277
|
-
nameIdentifierFormat?: string | undefined;
|
|
19278
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
19279
|
-
authnContextClassRef?: string | undefined;
|
|
19280
|
-
mappings?: Record<string, string> | undefined;
|
|
19281
|
-
} | undefined;
|
|
19282
|
-
} | undefined;
|
|
19283
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19464
|
+
addons?: Record<string, any> | undefined;
|
|
19284
19465
|
client_secret?: string | undefined;
|
|
19285
19466
|
client_metadata?: Record<string, string> | undefined;
|
|
19467
|
+
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;
|
|
19468
|
+
logo_uri?: string | undefined;
|
|
19469
|
+
client_aliases?: string[] | undefined;
|
|
19470
|
+
session_transfer?: Record<string, any> | undefined;
|
|
19471
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
19472
|
+
grant_types?: string[] | undefined;
|
|
19473
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
19474
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
19475
|
+
encryption_key?: Record<string, any> | undefined;
|
|
19476
|
+
cross_origin_loc?: string | undefined;
|
|
19477
|
+
custom_login_page?: string | undefined;
|
|
19478
|
+
custom_login_page_preview?: string | undefined;
|
|
19479
|
+
form_template?: string | undefined;
|
|
19480
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
19481
|
+
mobile?: Record<string, any> | undefined;
|
|
19482
|
+
initiate_login_uri?: string | undefined;
|
|
19483
|
+
native_social_login?: Record<string, any> | undefined;
|
|
19484
|
+
default_organization?: Record<string, any> | undefined;
|
|
19485
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
19486
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
19487
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
19488
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
19489
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
19490
|
+
par_request_expiry?: number | undefined;
|
|
19286
19491
|
};
|
|
19287
19492
|
};
|
|
19288
19493
|
output: {
|
|
19289
19494
|
name: string;
|
|
19290
|
-
|
|
19495
|
+
client_id: string;
|
|
19291
19496
|
created_at: string;
|
|
19292
19497
|
updated_at: string;
|
|
19293
|
-
|
|
19498
|
+
global: boolean;
|
|
19499
|
+
is_first_party: boolean;
|
|
19500
|
+
oidc_conformant: boolean;
|
|
19501
|
+
sso: boolean;
|
|
19502
|
+
sso_disabled: boolean;
|
|
19503
|
+
cross_origin_authentication: boolean;
|
|
19504
|
+
custom_login_page_on: boolean;
|
|
19505
|
+
require_pushed_authorization_requests: boolean;
|
|
19506
|
+
require_proof_of_possession: boolean;
|
|
19507
|
+
description?: string | undefined;
|
|
19294
19508
|
callbacks?: string[] | undefined;
|
|
19509
|
+
refresh_token?: {
|
|
19510
|
+
[x: string]: any;
|
|
19511
|
+
} | undefined;
|
|
19512
|
+
token_quota?: {
|
|
19513
|
+
[x: string]: any;
|
|
19514
|
+
} | undefined;
|
|
19295
19515
|
allowed_origins?: string[] | undefined;
|
|
19296
19516
|
web_origins?: string[] | undefined;
|
|
19297
19517
|
allowed_logout_urls?: string[] | undefined;
|
|
19298
19518
|
allowed_clients?: string[] | undefined;
|
|
19299
19519
|
addons?: {
|
|
19300
|
-
|
|
19301
|
-
audience?: string | undefined | undefined;
|
|
19302
|
-
recipient?: string | undefined | undefined;
|
|
19303
|
-
createUpnClaim?: boolean | undefined | undefined;
|
|
19304
|
-
mapUnknownClaimsAsIs?: boolean | undefined | undefined;
|
|
19305
|
-
passthroughClaimsWithNoMapping?: boolean | undefined | undefined;
|
|
19306
|
-
mapIdentities?: boolean | undefined | undefined;
|
|
19307
|
-
signatureAlgorithm?: string | undefined | undefined;
|
|
19308
|
-
digestAlgorithm?: string | undefined | undefined;
|
|
19309
|
-
issuer?: string | undefined | undefined;
|
|
19310
|
-
destination?: string | undefined | undefined;
|
|
19311
|
-
lifetimeInSeconds?: number | undefined | undefined;
|
|
19312
|
-
signResponse?: boolean | undefined | undefined;
|
|
19313
|
-
nameIdentifierFormat?: string | undefined | undefined;
|
|
19314
|
-
nameIdentifierProbes?: string[] | undefined | undefined;
|
|
19315
|
-
authnContextClassRef?: string | undefined | undefined;
|
|
19316
|
-
mappings?: {
|
|
19317
|
-
[x: string]: string;
|
|
19318
|
-
} | undefined;
|
|
19319
|
-
} | undefined;
|
|
19520
|
+
[x: string]: any;
|
|
19320
19521
|
} | undefined;
|
|
19321
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
19322
19522
|
client_secret?: string | undefined;
|
|
19323
19523
|
client_metadata?: {
|
|
19324
19524
|
[x: string]: string;
|
|
19325
19525
|
} | undefined;
|
|
19526
|
+
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;
|
|
19527
|
+
logo_uri?: string | undefined;
|
|
19528
|
+
client_aliases?: string[] | undefined;
|
|
19529
|
+
session_transfer?: {
|
|
19530
|
+
[x: string]: any;
|
|
19531
|
+
} | undefined;
|
|
19532
|
+
oidc_logout?: {
|
|
19533
|
+
[x: string]: any;
|
|
19534
|
+
} | undefined;
|
|
19535
|
+
grant_types?: string[] | undefined;
|
|
19536
|
+
jwt_configuration?: {
|
|
19537
|
+
[x: string]: any;
|
|
19538
|
+
} | undefined;
|
|
19539
|
+
signing_keys?: {
|
|
19540
|
+
[x: string]: any;
|
|
19541
|
+
}[] | undefined;
|
|
19542
|
+
encryption_key?: {
|
|
19543
|
+
[x: string]: any;
|
|
19544
|
+
} | undefined;
|
|
19545
|
+
cross_origin_loc?: string | undefined;
|
|
19546
|
+
custom_login_page?: string | undefined;
|
|
19547
|
+
custom_login_page_preview?: string | undefined;
|
|
19548
|
+
form_template?: string | undefined;
|
|
19549
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
19550
|
+
mobile?: {
|
|
19551
|
+
[x: string]: any;
|
|
19552
|
+
} | undefined;
|
|
19553
|
+
initiate_login_uri?: string | undefined;
|
|
19554
|
+
native_social_login?: {
|
|
19555
|
+
[x: string]: any;
|
|
19556
|
+
} | undefined;
|
|
19557
|
+
default_organization?: {
|
|
19558
|
+
[x: string]: any;
|
|
19559
|
+
} | undefined;
|
|
19560
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
19561
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
19562
|
+
client_authentication_methods?: {
|
|
19563
|
+
[x: string]: any;
|
|
19564
|
+
} | undefined;
|
|
19565
|
+
signed_request_object?: {
|
|
19566
|
+
[x: string]: any;
|
|
19567
|
+
} | undefined;
|
|
19568
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
19569
|
+
par_request_expiry?: number | undefined;
|
|
19326
19570
|
};
|
|
19327
19571
|
outputFormat: "json";
|
|
19328
19572
|
status: 201;
|