@accounts/client
Advanced tools
Comparing version 1.0.0-alpha-20231122105229-8edd073f to 1.0.0-alpha-20231122120807-69a661e3
@@ -1,4 +0,4 @@ | ||
import { LoginResult, Tokens, ImpersonationResult, User } from '@accounts/types'; | ||
import { TransportInterface } from './transport-interface'; | ||
import { AccountsClientOptions } from './types'; | ||
import { type LoginResult, type Tokens, type ImpersonationResult, type User } from '@accounts/types'; | ||
import { type TransportInterface } from './transport-interface'; | ||
import { type AccountsClientOptions } from './types'; | ||
export declare class AccountsClient { | ||
@@ -5,0 +5,0 @@ transport: TransportInterface; |
@@ -1,2 +0,2 @@ | ||
import { TokenStorage } from './types'; | ||
import { type TokenStorage } from './types'; | ||
export declare const tokenStorageLocal: TokenStorage; |
@@ -1,3 +0,3 @@ | ||
import { LoginResult, ImpersonationUserIdentity, ImpersonationResult, CreateUser, User, CreateUserResult } from '@accounts/types'; | ||
import { AccountsClient } from './accounts-client'; | ||
import { type LoginResult, type ImpersonationUserIdentity, type ImpersonationResult, type CreateUser, type User, type CreateUserResult } from '@accounts/types'; | ||
import { type AccountsClient } from './accounts-client'; | ||
export interface TransportInterface { | ||
@@ -4,0 +4,0 @@ client: AccountsClient; |
@@ -1,2 +0,2 @@ | ||
import { TokenStorage } from '.'; | ||
import { type TokenStorage } from '.'; | ||
export interface AccountsClientOptions { | ||
@@ -3,0 +3,0 @@ /** |
{ | ||
"name": "@accounts/client", | ||
"version": "1.0.0-alpha-20231122105229-8edd073f", | ||
"version": "1.0.0-alpha-20231122120807-69a661e3", | ||
"description": "Fullstack authentication and accounts-management", | ||
@@ -56,3 +56,3 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@accounts/types": "1.0.0-alpha-20231122105229-8edd073f", | ||
"@accounts/types": "1.0.0-alpha-20231122120807-69a661e3", | ||
"jwt-decode": "3.1.2", | ||
@@ -59,0 +59,0 @@ "tslib": "2.6.2" |
@@ -1,4 +0,9 @@ | ||
import { LoginResult, Tokens, ImpersonationResult, User } from '@accounts/types'; | ||
import { TransportInterface } from './transport-interface'; | ||
import { TokenStorage, AccountsClientOptions } from './types'; | ||
import { | ||
type LoginResult, | ||
type Tokens, | ||
type ImpersonationResult, | ||
type User, | ||
} from '@accounts/types'; | ||
import { type TransportInterface } from './transport-interface'; | ||
import { type TokenStorage, type AccountsClientOptions } from './types'; | ||
import { tokenStorageLocal } from './token-storage-local'; | ||
@@ -5,0 +10,0 @@ import { isTokenExpired } from './utils'; |
@@ -1,2 +0,2 @@ | ||
import { TokenStorage } from './types'; | ||
import { type TokenStorage } from './types'; | ||
@@ -3,0 +3,0 @@ export const tokenStorageLocal: TokenStorage = { |
import { | ||
LoginResult, | ||
ImpersonationUserIdentity, | ||
ImpersonationResult, | ||
CreateUser, | ||
User, | ||
CreateUserResult, | ||
type LoginResult, | ||
type ImpersonationUserIdentity, | ||
type ImpersonationResult, | ||
type CreateUser, | ||
type User, | ||
type CreateUserResult, | ||
} from '@accounts/types'; | ||
import { AccountsClient } from './accounts-client'; | ||
import { type AccountsClient } from './accounts-client'; | ||
@@ -11,0 +11,0 @@ export interface TransportInterface { |
@@ -1,2 +0,2 @@ | ||
import { TokenStorage } from '.'; | ||
import { type TokenStorage } from '.'; | ||
@@ -3,0 +3,0 @@ export interface AccountsClientOptions { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35361
706
+ Added@accounts/types@1.0.0-alpha-20231122120807-69a661e3(transitive)
- Removed@accounts/types@1.0.0-alpha-20231122105229-8edd073f(transitive)