vr-models 1.0.6 → 1.0.7

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.
@@ -7,7 +7,7 @@ export interface UserAttributes {
7
7
  firstName: string;
8
8
  lastName: string;
9
9
  phoneNumber: string;
10
- jacketId: string;
10
+ jacketId: string | null;
11
11
  email: string | null;
12
12
  password: string | null;
13
13
  securityClearanceId: string;
@@ -44,7 +44,7 @@ export declare class User extends Model<InferAttributes<User>, InferCreationAttr
44
44
  firstName: string;
45
45
  lastName: string;
46
46
  phoneNumber: string;
47
- jacketId: string;
47
+ jacketId: CreationOptional<string | null>;
48
48
  email: CreationOptional<string | null>;
49
49
  password: CreationOptional<string | null>;
50
50
  securityClearanceId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vr-models",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Shared database models package for VR applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",