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.3 to 2.1.4

48

dist/api.d.ts

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

/**
* Gets the current logged in user's role
* @param tenantId The ID of the tenant to associate the entity with.
*/
getUserRole(tenantId: string): Promise<UserRole>;
/**
* Gets the current logged in user's industries

@@ -149,2 +154,8 @@ * @param tenantId The ID of the tenant to associate the entity with.

/**
* Gets the current logged in user's role
* @param tenantId The ID of the tenant to associate the entity with.
*/
getUserRole(tenantId: string, cancelToken?: CancelToken): Promise<UserRole>;
protected processGetUserRole(response: AxiosResponse): Promise<UserRole>;
/**
* Gets the current logged in user's industries

@@ -607,2 +618,39 @@ * @param tenantId The ID of the tenant to associate the entity with.

}
export declare class UserRole extends Collection implements IUserRole {
assignmentRoles?: AssignmentRole[];
roles?: RelationEntity[];
user?: RelationEntity;
constructor(data?: IUserRole);
init(_data?: any): void;
static fromJS(data: any): UserRole;
toJSON(data?: any): any;
}
export interface IUserRole extends ICollection {
assignmentRoles?: AssignmentRole[];
roles?: RelationEntity[];
user?: RelationEntity;
}
export declare class AssignmentRole implements IAssignmentRole {
active?: boolean;
id?: number;
name?: string;
parent?: string;
roleTypes?: AssignmentRoleType[];
constructor(data?: IAssignmentRole);
init(_data?: any): void;
static fromJS(data: any): AssignmentRole;
toJSON(data?: any): any;
}
export interface IAssignmentRole {
active?: boolean;
id?: number;
name?: string;
parent?: string;
roleTypes?: AssignmentRoleType[];
}
export declare enum AssignmentRoleType {
Auction = "Auction",
Contract = "Contract",
LiveAuction = "Live Auction"
}
export declare class UserNotificationPreferenceDTO implements IUserNotificationPreferenceDTO {

@@ -609,0 +657,0 @@ emailNotifications?: GroupUserNotificationPreferenceDTO[];

2

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