Skip to content

Commit

Permalink
Update nodejs to 8.12.1 and install node-jsonwebtoken for validation …
Browse files Browse the repository at this point in the history
…of the signature #11

Signed-off-by: Sarah Julia Kriesch <sarah.j.kriesch@fau.de>
  • Loading branch information
skriesch committed Jun 12, 2022
1 parent 37d8dff commit 93afa4e
Show file tree
Hide file tree
Showing 31,275 changed files with 4,380,518 additions and 1,489 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
53 changes: 53 additions & 0 deletions dist/app.controller.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { Issuer, GrantBody } from 'openid-client';
import { AppService } from './app.service';
import { Response } from 'express';
export declare class AppController {
private readonly appService;
constructor(appService: AppService);
root(): void;
get_issuer(issuer_s: any): Promise<Issuer<import("openid-client").BaseClient>>;
discover_issuer(issuer_url_s: string, authorization_endpoint_s: string, claim_types_supported_s: string, claims_parameter_supported_s: string, claims_supported_s: string, code_challenge_methods_supported_s: string, device_authorization_endpoint_s: string, grant_types_supported_s: string, id_token_signing_alg_values_supported_s: string, issuer_s: string, jwks_uri_s: string, request_parameter_supported_s: string, request_uri_parameter_supported_s: string, require_request_uri_registration_s: string, response_modes_supported_s: string, response_types_supported_s: string, revocation_endpoint_s: string, revocation_endpoint_auth_methods_supported_s: string, scopes_supported_s: string, subject_types_supported_s: string, token_endpoint_s: string, token_endpoint_auth_methods_supported_s: string, userinfo_endpoint_s: string): Promise<{
result: {
success: number;
info: any;
previously_checked: any;
};
first_query: number;
} | {
result: {
success: number;
info: string;
previously_checked: {
authorization_endpoint: string;
claim_types_supported: string;
claims_parameter_supported: string;
claims_supported: string;
code_challenge_methods_supported: string;
device_authorization_endpoint: string;
grant_types_supported: string;
id_token_signing_alg_values_supported: string;
issuer: string;
jwks_uri: string;
request_parameter_supported: string;
request_uri_parameter_supported: string;
require_request_uri_registration: string;
response_modes_supported: string;
response_types_supported: string;
revocation_endpoint: string;
revocation_endpoint_auth_methods_supported: string;
scopes_supported: string;
subject_types_supported: string;
token_endpoint: string;
token_endpoint_auth_methods_supported: string;
userinfo_endpoint: string;
};
} | {
success: number;
info: any;
previously_checked: any;
};
first_query?: undefined;
}>;
requestToken(issuer_s: string, res: Response): Promise<any>;
requestTokenWithClientInformation(issuer_s: string, grantBody: GrantBody, res: Response): Promise<any>;
}
169 changes: 169 additions & 0 deletions dist/app.controller.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/app.controller.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/app.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export declare class AppModule {
}
26 changes: 26 additions & 0 deletions dist/app.module.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/app.module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions dist/app.service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { GrantBody, Issuer } from 'openid-client';
export declare class AppService {
getHello(): string;
getToken(token_endpoint: string, grantBody: GrantBody): Promise<any>;
requestToken(issuer: Issuer): Promise<any>;
}
45 changes: 45 additions & 0 deletions dist/app.service.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 93afa4e

Please sign in to comment.