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.11 to 2.0.12

56

dist/api.d.ts

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

/**
* Get addresses to user
* @param tenantId The ID of the tenant to associate the entity with.
*/
getAddresses(tenantId: string): Promise<Address[]>;
/**
* Add phone to user
*/
getPhones(tenantId: string): Promise<Phone[]>;
/**
* Add address to user

@@ -92,2 +101,13 @@ * @param tenantId The ID of the tenant to associate the entity with.

/**
* Get addresses to user
* @param tenantId The ID of the tenant to associate the entity with.
*/
getAddresses(tenantId: string, cancelToken?: CancelToken): Promise<Address[]>;
protected processGetAddresses(response: AxiosResponse): Promise<Address[]>;
/**
* Add phone to user
*/
getPhones(tenantId: string, cancelToken?: CancelToken): Promise<Phone[]>;
protected processGetPhones(response: AxiosResponse): Promise<Phone[]>;
/**
* Add address to user

@@ -423,2 +443,20 @@ * @param tenantId The ID of the tenant to associate the entity with.

}
export declare class Phone implements IPhone {
countryCode?: string | undefined;
id?: string;
number?: string | undefined;
primary?: boolean;
verified?: boolean;
constructor(data?: IPhone);
init(_data?: any): void;
static fromJS(data: any): Phone;
toJSON(data?: any): any;
}
export interface IPhone {
countryCode?: string | undefined;
id?: string;
number?: string | undefined;
primary?: boolean;
verified?: boolean;
}
export declare class CreateAddressDTO implements ICreateAddressDTO {

@@ -452,20 +490,2 @@ addressLine1: string;

}
export declare class Phone implements IPhone {
countryCode?: string | undefined;
id?: string;
number?: string | undefined;
primary?: boolean;
verified?: boolean;
constructor(data?: IPhone);
init(_data?: any): void;
static fromJS(data: any): Phone;
toJSON(data?: any): any;
}
export interface IPhone {
countryCode?: string | undefined;
id?: string;
number?: string | undefined;
primary?: boolean;
verified?: boolean;
}
export declare class CreatePhoneDTO implements ICreatePhoneDTO {

@@ -472,0 +492,0 @@ countryCode: string;

{
"name": "@steffesgroup/steffes-auth",
"version": "2.0.11",
"version": "2.0.12",
"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