UNPKG

@kilterset/auth0-actions-testing

Version:

Test and develop Auth0 Actions or Okta CIC Actions locally.

21 lines (19 loc) 474 B
import { Authentication } from "../authentication"; import { Client } from "../client"; import { Connection } from "../connection"; import { Request } from "../request"; import { Transaction } from "../transaction"; import { User } from "../user"; export interface PreUserRegistration { client: Client; connection: Connection; request: Request; tenant: { id: string; }; transaction: Transaction; user: User; secrets: { [key: string]: string; }; }