@authhero/kysely-adapter 0.16.0 → 0.17.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.mjs
CHANGED
|
@@ -7199,7 +7199,12 @@ function Lo(t) {
|
|
|
7199
7199
|
};
|
|
7200
7200
|
}
|
|
7201
7201
|
function zo(t) {
|
|
7202
|
-
return async () => await t.selectFrom("keys").where(
|
|
7202
|
+
return async () => await t.selectFrom("keys").where(
|
|
7203
|
+
(n) => n.or([
|
|
7204
|
+
n("revoked_at", ">", (/* @__PURE__ */ new Date()).toISOString()),
|
|
7205
|
+
n("revoked_at", "is", null)
|
|
7206
|
+
])
|
|
7207
|
+
).selectAll().execute();
|
|
7203
7208
|
}
|
|
7204
7209
|
function Uo(t) {
|
|
7205
7210
|
return async (e) => {
|