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 0.2.7 to 0.2.8

10

dist/api.d.ts

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

password: string;
platformType?: PlatformType | undefined;
constructor(data?: ILoginDTO);

@@ -67,3 +68,12 @@ init(_data?: any): void;

password: string;
platformType?: PlatformType | undefined;
}
export declare enum PlatformType {
Admin = "Admin",
Cataloging = "Cataloging",
Clerking = "Clerking",
PriceGuide = "PriceGuide",
SalesTool = "SalesTool",
Watcher = "Watcher"
}
export declare class RefreshTokenDTO implements IRefreshTokenDTO {

@@ -70,0 +80,0 @@ expiredToken: string;

13

dist/api.js

@@ -8,3 +8,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.IConfig = exports.ApiException = exports.UserDTO = exports.ResetPasswordDTO = exports.RefreshTokenDTO = exports.LoginDTO = exports.TokenDTO = exports.UserClient = exports.AuthClient = exports.AuthorizedApiBase = void 0;
exports.IConfig = exports.ApiException = exports.UserDTO = exports.ResetPasswordDTO = exports.RefreshTokenDTO = exports.PlatformType = exports.LoginDTO = exports.TokenDTO = exports.UserClient = exports.AuthClient = exports.AuthorizedApiBase = void 0;
/* tslint:disable */

@@ -376,2 +376,3 @@ /* eslint-disable */

this.password = _data["password"];
this.platformType = _data["platformType"];
}

@@ -389,2 +390,3 @@ }

data["password"] = this.password;
data["platformType"] = this.platformType;
return data;

@@ -394,2 +396,11 @@ }

exports.LoginDTO = LoginDTO;
var PlatformType;
(function (PlatformType) {
PlatformType["Admin"] = "Admin";
PlatformType["Cataloging"] = "Cataloging";
PlatformType["Clerking"] = "Clerking";
PlatformType["PriceGuide"] = "PriceGuide";
PlatformType["SalesTool"] = "SalesTool";
PlatformType["Watcher"] = "Watcher";
})(PlatformType = exports.PlatformType || (exports.PlatformType = {}));
class RefreshTokenDTO {

@@ -396,0 +407,0 @@ constructor(data) {

2

package.json
{
"name": "@steffesgroup/steffes-auth",
"version": "0.2.07",
"version": "0.2.08",
"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