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.
@@ -232,11 +232,11 @@ export declare function updateProfile(data: {
232
232
  export type User = {
233
233
  id: string;
234
234
  name: string;
235
- firstName?: string;
236
- lastName?: string;
235
+ firstName: string | null;
236
+ lastName: string | null;
237
237
  email: string;
238
238
  emailVerified: boolean;
239
- image?: string | null;
239
+ image: string | null;
240
240
  createdAt: Date;
241
241
  updatedAt: Date;
242
242
  };
@@ -232,11 +232,11 @@ export declare function updateProfile(data: {
232
232
  export type User = {
233
233
  id: string;
234
234
  name: string;
235
- firstName?: string;
236
- lastName?: string;
235
+ firstName: string | null;
236
+ lastName: string | null;
237
237
  email: string;
238
238
  emailVerified: boolean;
239
- image?: string | null;
239
+ image: string | null;
240
240
  createdAt: Date;
241
241
  updatedAt: Date;
242
242
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zitejs",
3
- "version": "0.9.83",
3
+ "version": "0.9.84",
4
4
  "description": "The Zite framework — build apps on Zite Database",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",