revokeCode: (
input:
| {
codeId: string;
tenantId: string;
userContext?: Record<string, any>;
}
| {
preAuthSessionId: string;
tenantId: string;
userContext?: Record<string, any>;
},
) => Promise<{ status: "OK" }> = Wrapper.revokeCode
Type declaration
- (
input:
| {
codeId: string;
tenantId: string;
userContext?: Record<string, any>;
}
| {
preAuthSessionId: string;
tenantId: string;
userContext?: Record<string, any>;
},
): Promise<{ status: "OK" }> Parameters
- input:
| {
codeId: string;
tenantId: string;
userContext?: Record<string, any>;
}
| {
preAuthSessionId: string;
tenantId: string;
userContext?: Record<string, any>;
}
Returns Promise<{ status: "OK" }>