zitejs 0.9.83 → 0.9.84
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/cjs/auth/index.d.ts
CHANGED
|
@@ -232,11 +232,11 @@ export declare function updateProfile(data: {
|
|
|
232
232
|
export type User = {
|
|
233
233
|
id: string;
|
|
234
234
|
name: string;
|
|
235
|
-
firstName
|
|
236
|
-
lastName
|
|
235
|
+
firstName: string | null;
|
|
236
|
+
lastName: string | null;
|
|
237
237
|
email: string;
|
|
238
238
|
emailVerified: boolean;
|
|
239
|
-
image
|
|
239
|
+
image: string | null;
|
|
240
240
|
createdAt: Date;
|
|
241
241
|
updatedAt: Date;
|
|
242
242
|
};
|
package/dist/esm/auth/index.d.ts
CHANGED
|
@@ -232,11 +232,11 @@ export declare function updateProfile(data: {
|
|
|
232
232
|
export type User = {
|
|
233
233
|
id: string;
|
|
234
234
|
name: string;
|
|
235
|
-
firstName
|
|
236
|
-
lastName
|
|
235
|
+
firstName: string | null;
|
|
236
|
+
lastName: string | null;
|
|
237
237
|
email: string;
|
|
238
238
|
emailVerified: boolean;
|
|
239
|
-
image
|
|
239
|
+
image: string | null;
|
|
240
240
|
createdAt: Date;
|
|
241
241
|
updatedAt: Date;
|
|
242
242
|
};
|