New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@solidexpert/auth

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solidexpert/auth - npm Package Compare versions

Comparing version

to
0.0.7

@@ -1,2 +0,1 @@

import { HttpClient } from '@angular/common/http';
import { JwtHelperService } from '@auth0/angular-jwt';

@@ -7,2 +6,4 @@ import { Observable } from 'rxjs';

abstract isAuthentication(): boolean;
abstract getPermissionToken(): string | null | Promise<string>;
abstract setPermissionToken(token: string): void;
abstract getToken(): string | Promise<string>;

@@ -15,8 +16,9 @@ abstract setToken(token: string): void;

export declare class AuthenticationService extends IAuthenticationService {
private http;
private jwtHelperService;
constructor(jwtHelperService: JwtHelperService);
isAuthentication(): boolean;
constructor(http: HttpClient, jwtHelperService: JwtHelperService);
getToken(): string | Promise<string>;
setToken(token: string): void;
getPermissionToken(): string | null | Promise<string>;
setPermissionToken(token: string): void;
/**

@@ -23,0 +25,0 @@ * Sign out

{
"name": "@solidexpert/auth",
"version": "0.0.1",
"version": "0.0.7",
"peerDependencies": {
"@angular/common": "^13.2.0",
"@angular/core": "^13.2.0"
"@angular/common": "^13.2.0 | ^15.0.0 | ^16.0.0",
"@angular/core": "^13.2.0 | ^15.0.0 | ^16.0.0",
"@auth0/angular-jwt": "^5.1.2"
},
"dependencies": {
"tslib": "^2.3.0"
"tslib": "^2.3.0",
"@auth0/angular-jwt": "^5.1.2"
},

@@ -11,0 +13,0 @@ "module": "fesm2015/solidexpert-auth.mjs",

@@ -1,24 +0,68 @@

# Auth
Angular helper to get current country by TimeZone
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
## Code scaffolding
## Versions
Run `ng generate component component-name --project auth` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project auth`.
> Note: Don't forget to add `--project auth` or else it will be added to the default project in your `angular.json` file.
| Angular version | package version |
| --------------- | --------------- |
| 15.x|15.x|
## Build
## Installation
Run `ng build auth` to build the project. The build artifacts will be stored in the `dist/` directory.
```shell
npm install --save @solidexpert/auth
```
## Publishing
After building your library with `ng build auth`, go to the dist folder `cd dist/auth` and run `npm publish`.
## Usage
## Running unit tests
Add `AuthModule` to your list of module imports:
Run `ng test auth` to execute the unit tests via [Karma](https://karma-runner.github.io).
```typescript
import { AuthenticationService, AuthGuard, AuthInterceptor, AuthModule, IAuthenticationService } from '@solidexpert/auth';
## Further help
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@NgModule({
imports: [
...
AuthModule,
...
],
```
Setup your providers to use Solid Auth
```typescript
providers: [
...,
AuthGuard,
{ provide: IAuthenticationService, useClass: AuthenticationService },
{
provide: 'APP_SITE_FULL_URL',
useValue: environment.sitePath,
},
{
provide : HTTP_INTERCEPTORS,
useClass: AuthInterceptor,
multi : true
},
...
],
```
setup yout callback url url
```typescript
export const appRoutes: Route[] = [
...
{ path: 'callback', component: CallbackAuthComponent }
...
];
```
Done!

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet