@authhero/kysely-adapter 12.6.1 → 12.7.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 +17 -11
- package/dist/kysely-adapter.mjs +1168 -967
- 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/codes/create.d.ts +2 -2
- package/dist/types/src/customDomains/getByDomain.d.ts +1 -11
- package/dist/types/src/db.d.ts +17 -11
- package/dist/types/src/outbox/replay.d.ts +5 -0
- package/dist/types/src/tenantOperationRows/index.d.ts +4 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -285,21 +285,11 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
285
285
|
ready: "ready";
|
|
286
286
|
}>;
|
|
287
287
|
origin_domain_name: z.ZodOptional<z.ZodString>;
|
|
288
|
-
verification: z.ZodOptional<z.ZodObject<{
|
|
289
|
-
methods: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
290
|
-
name: z.ZodLiteral<"txt">;
|
|
291
|
-
record: z.ZodString;
|
|
292
|
-
domain: z.ZodString;
|
|
293
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
294
|
-
name: z.ZodLiteral<"http">;
|
|
295
|
-
http_body: z.ZodString;
|
|
296
|
-
http_url: z.ZodString;
|
|
297
|
-
}, z.core.$strip>], "name">>;
|
|
298
|
-
}, z.core.$strip>>;
|
|
299
288
|
tls_policy: z.ZodOptional<z.ZodString>;
|
|
300
289
|
primary: z.ZodNumber;
|
|
301
290
|
tenant_id: z.ZodString;
|
|
302
291
|
domain_metadata: z.ZodOptional<z.ZodString>;
|
|
292
|
+
verification: z.ZodOptional<z.ZodString>;
|
|
303
293
|
created_at: z.ZodString;
|
|
304
294
|
updated_at: z.ZodString;
|
|
305
295
|
}, z.core.$strip>;
|
|
@@ -986,10 +976,26 @@ interface Database {
|
|
|
986
976
|
target_database_version: string | null;
|
|
987
977
|
error: string | null;
|
|
988
978
|
initiated_by: string | null;
|
|
979
|
+
input: string | null;
|
|
980
|
+
result: string | null;
|
|
981
|
+
claimed_by: string | null;
|
|
982
|
+
claim_expires_at: string | null;
|
|
989
983
|
created_at: string;
|
|
990
984
|
updated_at: string;
|
|
991
985
|
finished_at: string | null;
|
|
992
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
|
+
};
|
|
993
999
|
tenant_operation_events: {
|
|
994
1000
|
id: string;
|
|
995
1001
|
operation_id: string;
|