UNPKG

@kilterset/auth0-actions-testing

Version:

Test and develop Auth0 Actions or Okta CIC Actions locally.

19 lines (17 loc) 427 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 PostChangePassword { connection: Connection; request: Request; tenant: { id: string; }; user: User; secrets: { [key: string]: string; }; }