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
0
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.1.2 to 2.1.3

56

dist/api.d.ts

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

addresses?: Address[];
bidder?: CreateBidderDTO | undefined;
bidder?: Bidder | undefined;
company?: string | undefined;

@@ -723,3 +723,3 @@ defaultImage?: RelationEntity | undefined;

registrationState?: RegistrationState;
staff?: CreateStaffDTO | undefined;
staff?: Staff | undefined;
taxExemptionExpirationDate?: Date | undefined;

@@ -736,3 +736,3 @@ taxExemptionId?: string | undefined;

addresses?: Address[];
bidder?: CreateBidderDTO | undefined;
bidder?: Bidder | undefined;
company?: string | undefined;

@@ -753,3 +753,3 @@ defaultImage?: RelationEntity | undefined;

registrationState?: RegistrationState;
staff?: CreateStaffDTO | undefined;
staff?: Staff | undefined;
taxExemptionExpirationDate?: Date | undefined;

@@ -760,12 +760,12 @@ taxExemptionId?: string | undefined;

}
export declare abstract class CustomFieldsDTO implements ICustomFieldsDTO {
export declare abstract class ExtensibleItem implements IExtensibleItem {
customFields?: {
[key: string]: any;
};
constructor(data?: ICustomFieldsDTO);
constructor(data?: IExtensibleItem);
init(_data?: any): void;
static fromJS(data: any): CustomFieldsDTO;
static fromJS(data: any): ExtensibleItem;
toJSON(data?: any): any;
}
export interface ICustomFieldsDTO {
export interface IExtensibleItem {
customFields?: {

@@ -775,38 +775,38 @@ [key: string]: any;

}
export declare class CreateBidderDTO extends CustomFieldsDTO implements ICreateBidderDTO {
onlineBidderNumber?: number | undefined;
onsiteBidderNumber?: number | undefined;
constructor(data?: ICreateBidderDTO);
export declare class Bidder extends ExtensibleItem implements IBidder {
onlineBidderNumber?: string | undefined;
onsiteBidderNumber?: string | undefined;
constructor(data?: IBidder);
init(_data?: any): void;
static fromJS(data: any): CreateBidderDTO;
static fromJS(data: any): Bidder;
toJSON(data?: any): any;
}
export interface ICreateBidderDTO extends ICustomFieldsDTO {
onlineBidderNumber?: number | undefined;
onsiteBidderNumber?: number | undefined;
export interface IBidder extends IExtensibleItem {
onlineBidderNumber?: string | undefined;
onsiteBidderNumber?: string | undefined;
}
export declare class CreateStaffDTO extends CustomFieldsDTO implements ICreateStaffDTO {
export declare class Staff extends ExtensibleItem implements IStaff {
commission?: number | undefined;
industryIds?: string[];
industries?: RelationEntity[];
stateAbbreviations?: string[];
managerId?: string | undefined;
officeIds?: string[];
manager?: RelationEntity | undefined;
offices?: RelationEntity[];
representative?: boolean;
requiresApproval?: boolean;
showStaffExternally: boolean;
showStaffExternally?: boolean;
title?: string | undefined;
constructor(data?: ICreateStaffDTO);
constructor(data?: IStaff);
init(_data?: any): void;
static fromJS(data: any): CreateStaffDTO;
static fromJS(data: any): Staff;
toJSON(data?: any): any;
}
export interface ICreateStaffDTO extends ICustomFieldsDTO {
export interface IStaff extends IExtensibleItem {
commission?: number | undefined;
industryIds?: string[];
industries?: RelationEntity[];
stateAbbreviations?: string[];
managerId?: string | undefined;
officeIds?: string[];
manager?: RelationEntity | undefined;
offices?: RelationEntity[];
representative?: boolean;
requiresApproval?: boolean;
showStaffExternally: boolean;
showStaffExternally?: boolean;
title?: string | undefined;

@@ -813,0 +813,0 @@ }

{
"name": "@steffesgroup/steffes-auth",
"version": "2.1.2",
"version": "2.1.3",
"description": "Steffes Auth",

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

Sorry, the diff of this file is too big to display

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