@glidevvr/storage-payload-types-pkg 1.0.82 → 1.0.83
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/package.json +1 -1
- package/payload-types.ts +14 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -408,6 +408,13 @@ export interface User {
|
|
|
408
408
|
hash?: string | null;
|
|
409
409
|
loginAttempts?: number | null;
|
|
410
410
|
lockUntil?: string | null;
|
|
411
|
+
sessions?:
|
|
412
|
+
| {
|
|
413
|
+
id: string;
|
|
414
|
+
createdAt?: string | null;
|
|
415
|
+
expiresAt: string;
|
|
416
|
+
}[]
|
|
417
|
+
| null;
|
|
411
418
|
password?: string | null;
|
|
412
419
|
}
|
|
413
420
|
/**
|
|
@@ -2514,6 +2521,13 @@ export interface UsersSelect<T extends boolean = true> {
|
|
|
2514
2521
|
hash?: T;
|
|
2515
2522
|
loginAttempts?: T;
|
|
2516
2523
|
lockUntil?: T;
|
|
2524
|
+
sessions?:
|
|
2525
|
+
| T
|
|
2526
|
+
| {
|
|
2527
|
+
id?: T;
|
|
2528
|
+
createdAt?: T;
|
|
2529
|
+
expiresAt?: T;
|
|
2530
|
+
};
|
|
2517
2531
|
}
|
|
2518
2532
|
/**
|
|
2519
2533
|
* This interface was referenced by `Config`'s JSON-Schema
|