@authhero/kysely-adapter 11.8.0 → 11.8.2
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.d.ts
CHANGED
|
@@ -402,13 +402,13 @@ declare const sqlRoleSchema: z.ZodObject<{
|
|
|
402
402
|
declare const sqlTenantSchema: z.ZodObject<{
|
|
403
403
|
created_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
404
404
|
updated_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
405
|
-
audience: z.ZodString
|
|
405
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
406
406
|
friendly_name: z.ZodString;
|
|
407
407
|
picture_url: z.ZodOptional<z.ZodString>;
|
|
408
408
|
support_email: z.ZodOptional<z.ZodString>;
|
|
409
409
|
support_url: z.ZodOptional<z.ZodString>;
|
|
410
|
-
sender_email: z.ZodString
|
|
411
|
-
sender_name: z.ZodString
|
|
410
|
+
sender_email: z.ZodOptional<z.ZodString>;
|
|
411
|
+
sender_name: z.ZodOptional<z.ZodString>;
|
|
412
412
|
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
413
413
|
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
414
414
|
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
package/dist/kysely-adapter.mjs
CHANGED
|
@@ -472,7 +472,7 @@ function Te(e) {
|
|
|
472
472
|
};
|
|
473
473
|
}
|
|
474
474
|
//#endregion
|
|
475
|
-
//#region ../../node_modules/.pnpm/hono@4.12.
|
|
475
|
+
//#region ../../node_modules/.pnpm/hono@4.12.24/node_modules/hono/dist/http-exception.js
|
|
476
476
|
var D = class extends Error {
|
|
477
477
|
res;
|
|
478
478
|
status;
|
package/dist/types/src/db.d.ts
CHANGED
|
@@ -402,13 +402,13 @@ export declare const sqlRoleSchema: z.ZodObject<{
|
|
|
402
402
|
export declare const sqlTenantSchema: z.ZodObject<{
|
|
403
403
|
created_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
404
404
|
updated_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
405
|
-
audience: z.ZodString
|
|
405
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
406
406
|
friendly_name: z.ZodString;
|
|
407
407
|
picture_url: z.ZodOptional<z.ZodString>;
|
|
408
408
|
support_email: z.ZodOptional<z.ZodString>;
|
|
409
409
|
support_url: z.ZodOptional<z.ZodString>;
|
|
410
|
-
sender_email: z.ZodString
|
|
411
|
-
sender_name: z.ZodString
|
|
410
|
+
sender_email: z.ZodOptional<z.ZodString>;
|
|
411
|
+
sender_name: z.ZodOptional<z.ZodString>;
|
|
412
412
|
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
413
413
|
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
414
414
|
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5,14 +5,14 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
5
5
|
tenants: {
|
|
6
6
|
created_at: string;
|
|
7
7
|
updated_at: string;
|
|
8
|
-
audience: string;
|
|
9
8
|
friendly_name: string;
|
|
10
|
-
sender_email: string;
|
|
11
|
-
sender_name: string;
|
|
12
9
|
id: string;
|
|
10
|
+
audience?: string | undefined;
|
|
13
11
|
picture_url?: string | undefined;
|
|
14
12
|
support_email?: string | undefined;
|
|
15
13
|
support_url?: string | undefined;
|
|
14
|
+
sender_email?: string | undefined;
|
|
15
|
+
sender_name?: string | undefined;
|
|
16
16
|
session_lifetime?: number | undefined;
|
|
17
17
|
idle_session_lifetime?: number | undefined;
|
|
18
18
|
ephemeral_session_lifetime?: number | undefined;
|
|
@@ -190,14 +190,14 @@ export declare function list(db: Kysely<Database>): (params?: ListParams) => Pro
|
|
|
190
190
|
tenants: {
|
|
191
191
|
created_at: string;
|
|
192
192
|
updated_at: string;
|
|
193
|
-
audience: string;
|
|
194
193
|
friendly_name: string;
|
|
195
|
-
sender_email: string;
|
|
196
|
-
sender_name: string;
|
|
197
194
|
id: string;
|
|
195
|
+
audience?: string | undefined;
|
|
198
196
|
picture_url?: string | undefined;
|
|
199
197
|
support_email?: string | undefined;
|
|
200
198
|
support_url?: string | undefined;
|
|
199
|
+
sender_email?: string | undefined;
|
|
200
|
+
sender_name?: string | undefined;
|
|
201
201
|
session_lifetime?: number | undefined;
|
|
202
202
|
idle_session_lifetime?: number | undefined;
|
|
203
203
|
ephemeral_session_lifetime?: number | undefined;
|