@intuitionrobotics/user-account
Version:
17 lines • 485 B
TypeScript
import { type AuditBy, type DB_Object } from "@intuitionrobotics/ts-common";
export * from "../../index.js";
export type RequestBody_SamlAssertOptions = {
request_body: {
SAMLResponse: string;
RelayState: string;
};
allow_unencrypted_assertion?: boolean;
};
export type DB_Account = DB_Object & {
email: string;
_audit: AuditBy;
createdTimestamp?: number;
salt?: string;
saltedPassword?: string;
};
//# sourceMappingURL=_imports.d.ts.map