UNPKG

moleculer-api

Version:

A dynamic API Gateway for MoleculerJS which updates REST endpoints and aggregated GraphQL schema, access control policy for each action calls from metadata of remote services schema without restart or deployment.

8 lines (7 loc) 280 B
import { AuthContextParser } from "./auth"; export declare type AuthContextOIDCParserOptions = { issuer: string; client_id: string; client_secret?: string; }; export declare const createAuthContextOIDCParser: (opts: AuthContextOIDCParserOptions) => AuthContextParser;