@authhero/kysely-adapter 12.6.2 → 12.8.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.d.ts +16 -0
- package/dist/kysely-adapter.mjs +1265 -949
- package/dist/types/migrate/migrations/2026-09-01T12:00:00_tenant_operation_rows.d.ts +4 -0
- package/dist/types/migrate/migrations/index.d.ts +2 -0
- package/dist/types/src/cleanup.d.ts +20 -0
- package/dist/types/src/db.d.ts +16 -0
- package/dist/types/src/helpers/database-type.d.ts +15 -0
- package/dist/types/src/tenantOperationRows/index.d.ts +4 -0
- package/dist/types/src/users/createMany.d.ts +4 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -976,10 +976,26 @@ interface Database {
|
|
|
976
976
|
target_database_version: string | null;
|
|
977
977
|
error: string | null;
|
|
978
978
|
initiated_by: string | null;
|
|
979
|
+
input: string | null;
|
|
980
|
+
result: string | null;
|
|
981
|
+
claimed_by: string | null;
|
|
982
|
+
claim_expires_at: string | null;
|
|
979
983
|
created_at: string;
|
|
980
984
|
updated_at: string;
|
|
981
985
|
finished_at: string | null;
|
|
982
986
|
};
|
|
987
|
+
tenant_operation_rows: {
|
|
988
|
+
operation_id: string;
|
|
989
|
+
seq: number;
|
|
990
|
+
payload: string;
|
|
991
|
+
status: string;
|
|
992
|
+
error_code: string | null;
|
|
993
|
+
error_message: string | null;
|
|
994
|
+
error_path: string | null;
|
|
995
|
+
entity_id: string | null;
|
|
996
|
+
created_at: string;
|
|
997
|
+
updated_at: string;
|
|
998
|
+
};
|
|
983
999
|
tenant_operation_events: {
|
|
984
1000
|
id: string;
|
|
985
1001
|
operation_id: string;
|