@boozybats/shared
Advanced tools
Comparing version 1.6.6 to 1.6.7
@@ -822,2 +822,8 @@ import { Document as Document_2 } from 'mongoose'; | ||
}[]; | ||
utm?: { | ||
source: string; | ||
}; | ||
moderation: { | ||
isInterruptedChecked: boolean; | ||
}; | ||
createdAt: number; | ||
@@ -824,0 +830,0 @@ } |
@@ -735,2 +735,25 @@ "use strict"; | ||
}, | ||
utm: { | ||
required: false, | ||
default: null, | ||
type: { | ||
source: { | ||
required: true, | ||
type: String, | ||
}, | ||
}, | ||
}, | ||
moderation: { | ||
required: false, | ||
default: { | ||
isInterruptedChecked: false, | ||
}, | ||
type: { | ||
isInterruptedChecked: { | ||
required: true, | ||
default: false, | ||
type: Boolean, | ||
}, | ||
}, | ||
}, | ||
createdAt: { | ||
@@ -737,0 +760,0 @@ type: Number, |
@@ -109,3 +109,9 @@ import { Document } from 'mongoose'; | ||
}[]; | ||
utm?: { | ||
source: string; | ||
}; | ||
moderation: { | ||
isInterruptedChecked: boolean; | ||
}; | ||
createdAt: number; | ||
} |
{ | ||
"name": "@boozybats/shared", | ||
"version": "1.6.6", | ||
"version": "1.6.7", | ||
"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
217138
4855