create-payload-app 3.45.0-canary.6 → 3.45.0-internal.5103e58
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.
@@ -128,13 +128,6 @@ export interface User {
|
|
128
128
|
hash?: string | null;
|
129
129
|
loginAttempts?: number | null;
|
130
130
|
lockUntil?: string | null;
|
131
|
-
sessions?:
|
132
|
-
| {
|
133
|
-
id: string;
|
134
|
-
createdAt?: string | null;
|
135
|
-
expiresAt: string;
|
136
|
-
}[]
|
137
|
-
| null;
|
138
131
|
password?: string | null;
|
139
132
|
}
|
140
133
|
/**
|
@@ -227,13 +220,6 @@ export interface UsersSelect<T extends boolean = true> {
|
|
227
220
|
hash?: T;
|
228
221
|
loginAttempts?: T;
|
229
222
|
lockUntil?: T;
|
230
|
-
sessions?:
|
231
|
-
| T
|
232
|
-
| {
|
233
|
-
id?: T;
|
234
|
-
createdAt?: T;
|
235
|
-
expiresAt?: T;
|
236
|
-
};
|
237
223
|
}
|
238
224
|
/**
|
239
225
|
* This interface was referenced by `Config`'s JSON-Schema
|