authhero 0.74.1 → 0.75.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/dist/authhero.cjs +33 -33
- package/dist/authhero.d.ts +164 -0
- package/dist/authhero.mjs +5452 -5261
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6595,6 +6595,170 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6595
6595
|
};
|
|
6596
6596
|
};
|
|
6597
6597
|
}, "/email/providers"> & import("hono/types").MergeSchemaPath<{
|
|
6598
|
+
"/": {
|
|
6599
|
+
$get: {
|
|
6600
|
+
input: {
|
|
6601
|
+
query: {
|
|
6602
|
+
sort?: string | undefined;
|
|
6603
|
+
page?: string | undefined;
|
|
6604
|
+
per_page?: string | undefined;
|
|
6605
|
+
include_totals?: string | undefined;
|
|
6606
|
+
q?: string | undefined;
|
|
6607
|
+
};
|
|
6608
|
+
} & {
|
|
6609
|
+
header: {
|
|
6610
|
+
"tenant-id": string;
|
|
6611
|
+
};
|
|
6612
|
+
};
|
|
6613
|
+
output: {
|
|
6614
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
6615
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
6616
|
+
primary: boolean;
|
|
6617
|
+
domain: string;
|
|
6618
|
+
custom_domain_id: string;
|
|
6619
|
+
verification_method?: "txt" | undefined;
|
|
6620
|
+
tls_policy?: string | undefined;
|
|
6621
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6622
|
+
domain_metadata?: {
|
|
6623
|
+
[x: string]: string;
|
|
6624
|
+
} | undefined;
|
|
6625
|
+
origin_domain_name?: string | undefined;
|
|
6626
|
+
verification?: {} | undefined;
|
|
6627
|
+
}[];
|
|
6628
|
+
outputFormat: "json" | "text";
|
|
6629
|
+
status: 200;
|
|
6630
|
+
};
|
|
6631
|
+
};
|
|
6632
|
+
} & {
|
|
6633
|
+
"/:id": {
|
|
6634
|
+
$get: {
|
|
6635
|
+
input: {
|
|
6636
|
+
param: {
|
|
6637
|
+
id: string;
|
|
6638
|
+
};
|
|
6639
|
+
} & {
|
|
6640
|
+
header: {
|
|
6641
|
+
"tenant-id": string;
|
|
6642
|
+
};
|
|
6643
|
+
};
|
|
6644
|
+
output: {
|
|
6645
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
6646
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
6647
|
+
primary: boolean;
|
|
6648
|
+
domain: string;
|
|
6649
|
+
custom_domain_id: string;
|
|
6650
|
+
verification_method?: "txt" | undefined;
|
|
6651
|
+
tls_policy?: string | undefined;
|
|
6652
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6653
|
+
domain_metadata?: {
|
|
6654
|
+
[x: string]: string;
|
|
6655
|
+
} | undefined;
|
|
6656
|
+
origin_domain_name?: string | undefined;
|
|
6657
|
+
verification?: {} | undefined;
|
|
6658
|
+
};
|
|
6659
|
+
outputFormat: "json" | "text";
|
|
6660
|
+
status: 200;
|
|
6661
|
+
};
|
|
6662
|
+
};
|
|
6663
|
+
} & {
|
|
6664
|
+
"/:id": {
|
|
6665
|
+
$delete: {
|
|
6666
|
+
input: {
|
|
6667
|
+
param: {
|
|
6668
|
+
id: string;
|
|
6669
|
+
};
|
|
6670
|
+
} & {
|
|
6671
|
+
header: {
|
|
6672
|
+
"tenant-id": string;
|
|
6673
|
+
};
|
|
6674
|
+
};
|
|
6675
|
+
output: {};
|
|
6676
|
+
outputFormat: string;
|
|
6677
|
+
status: 200;
|
|
6678
|
+
};
|
|
6679
|
+
};
|
|
6680
|
+
} & {
|
|
6681
|
+
"/:id": {
|
|
6682
|
+
$patch: {
|
|
6683
|
+
input: {
|
|
6684
|
+
param: {
|
|
6685
|
+
id: string;
|
|
6686
|
+
};
|
|
6687
|
+
} & {
|
|
6688
|
+
header: {
|
|
6689
|
+
"tenant-id": string;
|
|
6690
|
+
};
|
|
6691
|
+
} & {
|
|
6692
|
+
json: {
|
|
6693
|
+
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
6694
|
+
status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
|
|
6695
|
+
primary?: boolean | undefined;
|
|
6696
|
+
domain?: string | undefined;
|
|
6697
|
+
custom_domain_id?: string | undefined;
|
|
6698
|
+
verification_method?: "txt" | undefined;
|
|
6699
|
+
tls_policy?: string | undefined;
|
|
6700
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6701
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
6702
|
+
origin_domain_name?: string | undefined;
|
|
6703
|
+
verification?: {} | undefined;
|
|
6704
|
+
};
|
|
6705
|
+
};
|
|
6706
|
+
output: {
|
|
6707
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
6708
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
6709
|
+
primary: boolean;
|
|
6710
|
+
domain: string;
|
|
6711
|
+
custom_domain_id: string;
|
|
6712
|
+
verification_method?: "txt" | undefined;
|
|
6713
|
+
tls_policy?: string | undefined;
|
|
6714
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6715
|
+
domain_metadata?: {
|
|
6716
|
+
[x: string]: string;
|
|
6717
|
+
} | undefined;
|
|
6718
|
+
origin_domain_name?: string | undefined;
|
|
6719
|
+
verification?: {} | undefined;
|
|
6720
|
+
};
|
|
6721
|
+
outputFormat: "json" | "text";
|
|
6722
|
+
status: 200;
|
|
6723
|
+
};
|
|
6724
|
+
};
|
|
6725
|
+
} & {
|
|
6726
|
+
"/": {
|
|
6727
|
+
$post: {
|
|
6728
|
+
input: {
|
|
6729
|
+
header: {
|
|
6730
|
+
"tenant-id": string;
|
|
6731
|
+
};
|
|
6732
|
+
} & {
|
|
6733
|
+
json: {
|
|
6734
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
6735
|
+
domain: string;
|
|
6736
|
+
verification_method?: "txt" | undefined;
|
|
6737
|
+
tls_policy?: "recommended" | undefined;
|
|
6738
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6739
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
6740
|
+
};
|
|
6741
|
+
};
|
|
6742
|
+
output: {
|
|
6743
|
+
type: "auth0_managed_certs" | "self_managed_certs";
|
|
6744
|
+
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
6745
|
+
primary: boolean;
|
|
6746
|
+
domain: string;
|
|
6747
|
+
custom_domain_id: string;
|
|
6748
|
+
verification_method?: "txt" | undefined;
|
|
6749
|
+
tls_policy?: string | undefined;
|
|
6750
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
6751
|
+
domain_metadata?: {
|
|
6752
|
+
[x: string]: string;
|
|
6753
|
+
} | undefined;
|
|
6754
|
+
origin_domain_name?: string | undefined;
|
|
6755
|
+
verification?: {} | undefined;
|
|
6756
|
+
};
|
|
6757
|
+
outputFormat: "json" | "text";
|
|
6758
|
+
status: 201;
|
|
6759
|
+
};
|
|
6760
|
+
};
|
|
6761
|
+
}, "/custom-domains"> & import("hono/types").MergeSchemaPath<{
|
|
6598
6762
|
"/": {
|
|
6599
6763
|
$get: {
|
|
6600
6764
|
input: {
|