Constructors

Properties

GetSuperAdminMFARequestSchema: ZodObject<
    {
        product: ZodEffects<
            ZodEffects<ZodString, ProductKey, string>,
            ProductKey,
            string,
        >;
    },
    "strip",
    ZodTypeAny,
    { product: ProductKey },
    { product: string },
> = ...

Validation schema for GET /superAdmin/{product}/mfa request

PutSuperAdminMFABodySchema: ZodObject<
    {
        enabled: ZodBoolean;
        tenantList: ZodEffects<
            ZodOptional<ZodArray<ZodString, "many">>,
            undefined | string[],
            undefined | string[],
        >;
    },
    "strip",
    ZodTypeAny,
    { enabled: boolean; tenantList?: string[] },
    { enabled: boolean; tenantList?: string[] },
> = ...

Validation schema for PUT /superAdmin/{product}/mfa request body

PutSuperAdminMFARequestSchema: ZodObject<
    {
        enabled: ZodBoolean;
        product: ZodEffects<
            ZodEffects<ZodString, ProductKey, string>,
            ProductKey,
            string,
        >;
        tenantList: ZodEffects<
            ZodOptional<ZodArray<ZodString, "many">>,
            undefined | string[],
            undefined | string[],
        >;
    },
    "strip",
    ZodTypeAny,
    { enabled: boolean; product: ProductKey; tenantList?: string[] },
    { enabled: boolean; product: string; tenantList?: string[] },
> = ...

Validation schema for PUT /superAdmin/{product}/mfa complete request