authhero 0.57.0 → 0.60.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.
@@ -4746,6 +4746,61 @@ export declare function init(config: AuthHeroConfig): {
4746
4746
  Bindings: Bindings;
4747
4747
  Variables: Variables;
4748
4748
  }, import("hono/types").MergeSchemaPath<{
4749
+ "/:id": {
4750
+ $get: {
4751
+ input: {
4752
+ param: {
4753
+ id: string;
4754
+ };
4755
+ } & {
4756
+ header: {
4757
+ "tenant-id": string;
4758
+ };
4759
+ };
4760
+ output: {
4761
+ user_id: string;
4762
+ id: string;
4763
+ client_id: string;
4764
+ device: {
4765
+ last_ip: string;
4766
+ initial_user_agent: string;
4767
+ initial_ip: string;
4768
+ initial_asn: string;
4769
+ last_user_agent: string;
4770
+ last_asn: string;
4771
+ };
4772
+ session_id: string;
4773
+ resource_servers: {
4774
+ audience: string;
4775
+ scopes: string;
4776
+ }[];
4777
+ rotating: boolean;
4778
+ expires_at?: string | undefined;
4779
+ idle_expires_at?: string | undefined;
4780
+ last_exchanged_at?: string | undefined;
4781
+ };
4782
+ outputFormat: "json" | "text";
4783
+ status: 200;
4784
+ };
4785
+ };
4786
+ } & {
4787
+ "/:id": {
4788
+ $delete: {
4789
+ input: {
4790
+ param: {
4791
+ id: string;
4792
+ };
4793
+ } & {
4794
+ header: {
4795
+ "tenant-id": string;
4796
+ };
4797
+ };
4798
+ output: {};
4799
+ outputFormat: string;
4800
+ status: 200;
4801
+ };
4802
+ };
4803
+ }, "/refresh_tokens"> & import("hono/types").MergeSchemaPath<{
4749
4804
  "/:id": {
4750
4805
  $get: {
4751
4806
  input: {