@authhero/kysely-adapter 12.2.0 → 12.3.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.
@@ -0,0 +1,4 @@
1
+ import { Kysely } from "kysely";
2
+ import { Database } from "../../src/db";
3
+ export declare function up(db: Kysely<Database>): Promise<void>;
4
+ export declare function down(db: Kysely<Database>): Promise<void>;
@@ -4,6 +4,7 @@ import * as scimInboundProvisioning from "./2026-08-04T12:00:00_scim_inbound_pro
4
4
  import * as userBlocked from "./2026-08-05T12:00:00_user_blocked";
5
5
  import * as promptSettingsLastUsed from "./2026-08-09T12:00:00_prompt_settings_last_used";
6
6
  import * as actionExecutionsCreatedAtIndex from "./2026-08-10T12:00:00_action_executions_created_at_index";
7
+ import * as pageHooks from "./2026-08-11T12:00:00_page_hooks";
7
8
  /**
8
9
  * Kysely runs these in key order and refuses to start if an already-executed
9
10
  * migration sorts after a pending one, so the keys must sort in execution
@@ -26,5 +27,6 @@ declare const _default: {
26
27
  "2026-08-05T12:00:00_user_blocked": typeof userBlocked;
27
28
  "2026-08-09T12:00:00_prompt_settings_last_used": typeof promptSettingsLastUsed;
28
29
  "2026-08-10T12:00:00_action_executions_created_at_index": typeof actionExecutionsCreatedAtIndex;
30
+ "2026-08-11T12:00:00_page_hooks": typeof pageHooks;
29
31
  };
30
32
  export default _default;
@@ -144,6 +144,8 @@ declare const sqlHookSchema: z.ZodObject<{
144
144
  form_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
145
145
  template_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
146
146
  code_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
147
+ page_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
148
+ permission_required: z.ZodNullable<z.ZodOptional<z.ZodString>>;
147
149
  metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
148
150
  }, z.core.$strip>;
149
151
  export declare const sqlActionSchema: z.ZodObject<{