@boozybats/shared
Advanced tools
Comparing version 1.4.11 to 1.4.12
@@ -613,3 +613,6 @@ import { Document as Document_2 } from 'mongoose'; | ||
userId: number; | ||
photoUrl: string | null; | ||
avatar: { | ||
url: string | null; | ||
updatedAt: number; | ||
} | null; | ||
firstName: string | null; | ||
@@ -616,0 +619,0 @@ lastName: string | null; |
@@ -35,6 +35,20 @@ "use strict"; | ||
userId: Number, | ||
photoUrl: { | ||
required: false, | ||
default: null, | ||
type: String, | ||
avatar: { | ||
required: true, | ||
default: { | ||
url: null, | ||
updatedAt: 0, | ||
}, | ||
type: { | ||
url: { | ||
required: false, | ||
default: null, | ||
type: String, | ||
}, | ||
updatedAt: { | ||
required: true, | ||
default: 0, | ||
type: Number, | ||
}, | ||
}, | ||
}, | ||
@@ -41,0 +55,0 @@ firstName: { |
@@ -14,3 +14,6 @@ import { Document } from 'mongoose'; | ||
userId: number; | ||
photoUrl: string | null; | ||
avatar: { | ||
url: string | null; | ||
updatedAt: number; | ||
} | null; | ||
firstName: string | null; | ||
@@ -17,0 +20,0 @@ lastName: string | null; |
{ | ||
"name": "@boozybats/shared", | ||
"version": "1.4.11", | ||
"version": "1.4.12", | ||
"description": "private shared package", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
174308
3903