@qrush/types 2.1.81 → 2.1.82

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.
Files changed (2) hide show
  1. package/dist/Users.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/Users.d.ts CHANGED
@@ -69,7 +69,7 @@ export type SharingToken = {
69
69
  };
70
70
  export type Gender = 'male' | 'female' | 'diverse';
71
71
  export type FireUserSnapshotRef = FireQueryDocSnapshotRef<IFireUser>;
72
- export type IFireUserCreationData = Omit<Omit<Omit<IFireUser, 'birthday'>, 'sharingToken'>, 'createdAt'> & {
72
+ export type IFireUserCreationData = Omit<IFireUser, 'id' | 'birthday' | 'sharingToken' | 'createdAt'> & {
73
73
  birthday: Date;
74
74
  createdAt: FieldValue;
75
75
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.81",
3
+ "version": "2.1.82",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",