@authhero/kysely-adapter 12.1.0 → 12.2.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/kysely-adapter.cjs +1 -1
- package/dist/kysely-adapter.mjs +892 -835
- package/dist/types/migrate/migrations/2026-08-10T12:00:00_action_executions_created_at_index.d.ts +4 -0
- package/dist/types/migrate/migrations/index.d.ts +2 -0
- package/dist/types/src/actionExecutions/cleanup.d.ts +3 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -3,6 +3,7 @@ import * as codesExpiresAtTs from "./2026-07-16T15:00:00_codes_expires_at_ts";
|
|
|
3
3
|
import * as scimInboundProvisioning from "./2026-08-04T12:00:00_scim_inbound_provisioning";
|
|
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
|
+
import * as actionExecutionsCreatedAtIndex from "./2026-08-10T12:00:00_action_executions_created_at_index";
|
|
6
7
|
/**
|
|
7
8
|
* Kysely runs these in key order and refuses to start if an already-executed
|
|
8
9
|
* migration sorts after a pending one, so the keys must sort in execution
|
|
@@ -24,5 +25,6 @@ declare const _default: {
|
|
|
24
25
|
"2026-08-04T12:00:00_scim_inbound_provisioning": typeof scimInboundProvisioning;
|
|
25
26
|
"2026-08-05T12:00:00_user_blocked": typeof userBlocked;
|
|
26
27
|
"2026-08-09T12:00:00_prompt_settings_last_used": typeof promptSettingsLastUsed;
|
|
28
|
+
"2026-08-10T12:00:00_action_executions_created_at_index": typeof actionExecutionsCreatedAtIndex;
|
|
27
29
|
};
|
|
28
30
|
export default _default;
|