@axium/server 0.12.1 → 0.12.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/database.d.ts +1 -1
- package/package.json +1 -1
package/dist/database.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export type TablesMatching<T> = (string & keyof Schema) & keyof {
|
|
|
52
52
|
/**
|
|
53
53
|
* Select the user with the id from the userId column of a table, placing it in the `user` property.
|
|
54
54
|
*/
|
|
55
|
-
export declare function userFromId(eb: kysely.ExpressionBuilder<Schema,
|
|
55
|
+
export declare function userFromId(eb: kysely.ExpressionBuilder<Schema, any>): kysely.AliasedRawBuilder<UserInternal, 'user'>;
|
|
56
56
|
export interface Stats {
|
|
57
57
|
users: number;
|
|
58
58
|
passkeys: number;
|