Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@boozybats/shared

Package Overview
Dependencies
Maintainers
1
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boozybats/shared - npm Package Compare versions

Comparing version 1.4.11 to 1.4.12

5

index.d.ts

@@ -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;

22

lib/entities/user/schema.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc