Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 70x 70x | /**
* Primary Account Holder Validation Module
*
* Centralized validation schemas for primary account holder forms.
*
* @module validation/merchant/primaryAccountHolder
*/
import * as Yup from "yup";
import { createEmailValidator } from "@validation/fields";
/**
* Primary account holder schema for merchant/provider creation
*/
export const createPrimaryAccountHolderSchema = {
email: createEmailValidator({ required: false }),
invite: Yup.boolean(),
};
/**
* Primary account holder schema when inviting
*/
export const invitePrimaryAccountHolderSchema = {
email: createEmailValidator({
required: false,
}),
};
|