New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@steffesgroup/steffes-auth

Package Overview
Dependencies
Maintainers
3
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@steffesgroup/steffes-auth - npm Package Compare versions

Comparing version 2.0.3 to 2.0.4

2

dist/api.d.ts

@@ -175,2 +175,3 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios';

fullName?: string | undefined;
industries?: RelationEntity[];
lastLoginDate?: Date | undefined;

@@ -203,2 +204,3 @@ lastName?: string | undefined;

fullName?: string | undefined;
industries?: RelationEntity[];
lastLoginDate?: Date | undefined;

@@ -205,0 +207,0 @@ lastName?: string | undefined;

@@ -652,2 +652,7 @@ "use strict";

this.fullName = _data["fullName"];
if (Array.isArray(_data["industries"])) {
this.industries = [];
for (let item of _data["industries"])
this.industries.push(RelationEntity.fromJS(item));
}
this.lastLoginDate = _data["lastLoginDate"] ? new Date(_data["lastLoginDate"].toString()) : undefined;

@@ -692,2 +697,7 @@ this.lastName = _data["lastName"];

data["fullName"] = this.fullName;
if (Array.isArray(this.industries)) {
data["industries"] = [];
for (let item of this.industries)
data["industries"].push(item.toJSON());
}
data["lastLoginDate"] = this.lastLoginDate ? this.lastLoginDate.toISOString() : undefined;

@@ -694,0 +704,0 @@ data["lastName"] = this.lastName;

2

package.json
{
"name": "@steffesgroup/steffes-auth",
"version": "2.0.3",
"version": "2.0.4",
"description": "Steffes Auth",

@@ -5,0 +5,0 @@ "main": "dist/api.js",

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