archetecture security fix
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { companySignupSchema } from './auth.company.schemas';
|
||||
import type { output } from 'zod';
|
||||
type CompanySignupInput = output<typeof companySignupSchema>;
|
||||
export declare function signup(body: CompanySignupInput): Promise<{
|
||||
companyId: string;
|
||||
companyName: string;
|
||||
slug: string;
|
||||
invitationId: null;
|
||||
trialEndsAt: string;
|
||||
nextStep: string;
|
||||
emailDelivery: {};
|
||||
}>;
|
||||
export declare function completeSignupDisabled(): void;
|
||||
export declare function verifyEmailDisabled(): void;
|
||||
export {};
|
||||
//# sourceMappingURL=auth.company.service.d.ts.map
|
||||
Reference in New Issue
Block a user