@authhero/kysely-adapter 12.0.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.d.ts +27 -0
- package/dist/kysely-adapter.mjs +1061 -751
- package/dist/types/migrate/migrations/2026-08-04T12:00:00_scim_inbound_provisioning.d.ts +21 -0
- package/dist/types/migrate/migrations/2026-08-05T12:00:00_user_blocked.d.ts +4 -0
- package/dist/types/migrate/migrations/2026-08-09T12:00:00_prompt_settings_last_used.d.ts +4 -0
- 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 +8 -0
- package/dist/types/src/actionExecutions/cleanup.d.ts +3 -0
- package/dist/types/src/db.d.ts +27 -0
- package/dist/types/src/scim/adapter.d.ts +6 -0
- package/dist/types/src/scim/index.d.ts +1 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ declare const sqlPromptSettingSchema: z.ZodObject<{
|
|
|
56
56
|
identifier_first: z.ZodNumber;
|
|
57
57
|
password_first: z.ZodNumber;
|
|
58
58
|
webauthn_platform_first_factor: z.ZodNumber;
|
|
59
|
+
show_last_used_connection: z.ZodNullable<z.ZodNumber>;
|
|
59
60
|
tenant_id: z.ZodString;
|
|
60
61
|
}, z.core.$strip>;
|
|
61
62
|
declare const sqlPasswordSchema: z.ZodObject<{
|
|
@@ -124,6 +125,7 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
124
125
|
email_verified: z.ZodNumber;
|
|
125
126
|
phone_verified: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
126
127
|
is_social: z.ZodNumber;
|
|
128
|
+
blocked: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
127
129
|
app_metadata: z.ZodString;
|
|
128
130
|
user_metadata: z.ZodString;
|
|
129
131
|
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -939,6 +941,31 @@ interface Database {
|
|
|
939
941
|
created_at: string;
|
|
940
942
|
updated_at: string;
|
|
941
943
|
};
|
|
944
|
+
scim_configurations: {
|
|
945
|
+
connection_id: string;
|
|
946
|
+
tenant_id: string;
|
|
947
|
+
user_id_attribute: string;
|
|
948
|
+
mapping: string;
|
|
949
|
+
created_at: string;
|
|
950
|
+
updated_at: string;
|
|
951
|
+
};
|
|
952
|
+
scim_tokens: {
|
|
953
|
+
token_id: string;
|
|
954
|
+
tenant_id: string;
|
|
955
|
+
connection_id: string;
|
|
956
|
+
token_hash: string;
|
|
957
|
+
scopes: string;
|
|
958
|
+
valid_until: string | null;
|
|
959
|
+
created_at: string;
|
|
960
|
+
last_used_at: string | null;
|
|
961
|
+
};
|
|
962
|
+
scim_external_ids: {
|
|
963
|
+
tenant_id: string;
|
|
964
|
+
connection_id: string;
|
|
965
|
+
external_id: string;
|
|
966
|
+
user_id: string;
|
|
967
|
+
created_at: string;
|
|
968
|
+
};
|
|
942
969
|
tenant_operations: {
|
|
943
970
|
id: string;
|
|
944
971
|
tenant_id: string | null;
|