@authhero/kysely-adapter 11.4.1 → 11.5.1
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/kysely-adapter.cjs +15 -15
- package/dist/kysely-adapter.d.ts +24 -2
- package/dist/kysely-adapter.mjs +2167 -1984
- package/dist/types/migrate/migrations/2026-05-26T00:00:00_create_proxy_routes.d.ts +3 -0
- package/dist/types/migrate/migrations/2026-05-28T00:00:00_proxy_routes_v2.d.ts +3 -0
- package/dist/types/migrate/migrations/index.d.ts +4 -0
- package/dist/types/src/db.d.ts +11 -0
- package/dist/types/src/index.d.ts +1 -0
- package/dist/types/src/proxyRoutes/adapter.d.ts +4 -0
- package/dist/types/src/proxyRoutes/index.d.ts +11 -0
- package/dist/types/src/proxyRoutes/resolve-host.d.ts +4 -0
- package/dist/types/src/proxyRoutes/serialize.d.ts +4 -0
- package/dist/types/src/tenants/list.d.ts +2 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -2
|
@@ -167,6 +167,8 @@ import * as o068_move_disable_signup_to_connection from "./2026-05-13T10:00:00_m
|
|
|
167
167
|
import * as o069_actions_is_system_inherit from "./2026-05-13T11:00:00_actions_is_system_inherit";
|
|
168
168
|
import * as o070_collapse_auth0_source_into_db_connection from "./2026-05-13T12:00:00_collapse_auth0_source_into_db_connection";
|
|
169
169
|
import * as o071_migration_sources from "./2026-05-14T10:00:00_migration_sources";
|
|
170
|
+
import * as o072_proxy_routes from "./2026-05-26T00:00:00_create_proxy_routes";
|
|
171
|
+
import * as o073_proxy_routes_v2 from "./2026-05-28T00:00:00_proxy_routes_v2";
|
|
170
172
|
declare const _default: {
|
|
171
173
|
m1_init: typeof m1_init;
|
|
172
174
|
m2_magicLink: typeof m2_magicLink;
|
|
@@ -337,5 +339,7 @@ declare const _default: {
|
|
|
337
339
|
o069_actions_is_system_inherit: typeof o069_actions_is_system_inherit;
|
|
338
340
|
o070_collapse_auth0_source_into_db_connection: typeof o070_collapse_auth0_source_into_db_connection;
|
|
339
341
|
o071_migration_sources: typeof o071_migration_sources;
|
|
342
|
+
o072_proxy_routes: typeof o072_proxy_routes;
|
|
343
|
+
o073_proxy_routes_v2: typeof o073_proxy_routes_v2;
|
|
340
344
|
};
|
|
341
345
|
export default _default;
|
package/dist/types/src/db.d.ts
CHANGED
|
@@ -435,6 +435,7 @@ export declare const sqlTenantSchema: z.ZodObject<{
|
|
|
435
435
|
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
436
436
|
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
437
437
|
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
438
|
+
client_id_metadata_document_registration: z.ZodOptional<z.ZodBoolean>;
|
|
438
439
|
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
439
440
|
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
440
441
|
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -888,5 +889,15 @@ export interface Database {
|
|
|
888
889
|
dead_lettered_at: string | null;
|
|
889
890
|
final_error: string | null;
|
|
890
891
|
};
|
|
892
|
+
proxy_routes: {
|
|
893
|
+
id: string;
|
|
894
|
+
tenant_id: string;
|
|
895
|
+
custom_domain_id: string;
|
|
896
|
+
priority: number;
|
|
897
|
+
match: string;
|
|
898
|
+
handlers: string;
|
|
899
|
+
created_at: string;
|
|
900
|
+
updated_at: string;
|
|
901
|
+
};
|
|
891
902
|
}
|
|
892
903
|
export {};
|
|
@@ -3,6 +3,7 @@ import { Database } from "./db";
|
|
|
3
3
|
import { DataAdapters } from "@authhero/adapter-interfaces";
|
|
4
4
|
export { migrateToLatest, migrateDown } from "../migrate/migrate";
|
|
5
5
|
export type { Database } from "./db";
|
|
6
|
+
export { createProxyRoutesAdapter, createProxyDataAdapter, } from "./proxyRoutes";
|
|
6
7
|
export default function createAdapters(db: Kysely<Database>, databaseOptions?: {
|
|
7
8
|
useTransactions: boolean;
|
|
8
9
|
}): DataAdapters;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Kysely } from "kysely";
|
|
2
|
+
import type { ProxyDataAdapter } from "@authhero/proxy";
|
|
3
|
+
import { Database } from "../db";
|
|
4
|
+
export { createProxyRoutesAdapter } from "./adapter";
|
|
5
|
+
/**
|
|
6
|
+
* Build a full `ProxyDataAdapter` (CRUD + cross-tenant `resolveHost`) for the
|
|
7
|
+
* `@authhero/proxy` data plane. Authhero itself only needs the CRUD adapter
|
|
8
|
+
* surfaced via `createAdapters(db).proxyRoutes`; a separate proxy worker
|
|
9
|
+
* process uses this helper when reading directly from the same database.
|
|
10
|
+
*/
|
|
11
|
+
export declare function createProxyDataAdapter(db: Kysely<Database>): ProxyDataAdapter;
|
|
@@ -36,6 +36,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
36
36
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
37
37
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
38
38
|
change_pwd_flow_v1?: boolean | undefined;
|
|
39
|
+
client_id_metadata_document_registration?: boolean | undefined;
|
|
39
40
|
custom_domains_provisioning?: boolean | undefined;
|
|
40
41
|
dashboard_insights_view?: boolean | undefined;
|
|
41
42
|
dashboard_log_streams_next?: boolean | undefined;
|
|
@@ -210,6 +211,7 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
210
211
|
allow_legacy_ro_grant_types?: boolean | undefined;
|
|
211
212
|
allow_legacy_tokeninfo_endpoint?: boolean | undefined;
|
|
212
213
|
change_pwd_flow_v1?: boolean | undefined;
|
|
214
|
+
client_id_metadata_document_registration?: boolean | undefined;
|
|
213
215
|
custom_domains_provisioning?: boolean | undefined;
|
|
214
216
|
dashboard_insights_view?: boolean | undefined;
|
|
215
217
|
dashboard_log_streams_next?: boolean | undefined;
|