UNPKG

@user-office-software/duo-validation

Version:
66 lines (65 loc) 3.24 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeScientistFromTechniqueValidationSchema = exports.assignScientistsToTechniqueValidationSchema = exports.removeInstrumentsFromTechniqueValidationSchema = exports.assignInstrumentsToTechniqueValidationSchema = exports.deleteTechniqueValidationSchema = exports.updateTechniqueValidationSchema = exports.createTechniqueValidationSchema = void 0; var Yup = __importStar(require("yup")); exports.createTechniqueValidationSchema = Yup.object().shape({ name: Yup.string() .max(100, 'Name of the technique should be no longer than 100 characters') .required('Name of the technique is required'), shortCode: Yup.string() .max(20, 'Short code of the technique should be no longer than 20 characters') .required('Short code of the technique is required'), description: Yup.string().required(), }); exports.updateTechniqueValidationSchema = Yup.object().shape({ id: Yup.number().required(), name: Yup.string() .max(100, 'Name of the technique should be no longer than 100 characters') .required('Name of the technique is required'), shortCode: Yup.string() .max(20, 'Short code of the technique should be no longer than 20 characters') .required('Short code of the technique is required'), description: Yup.string().required(), }); exports.deleteTechniqueValidationSchema = Yup.object().shape({ id: Yup.number().required(), }); exports.assignInstrumentsToTechniqueValidationSchema = Yup.object().shape({ instrumentIds: Yup.array(Yup.number()).min(1).required(), techniqueId: Yup.number().required(), }); exports.removeInstrumentsFromTechniqueValidationSchema = Yup.object().shape({ instrumentIds: Yup.array(Yup.number()).min(1).required(), techniqueId: Yup.number().required(), }); exports.assignScientistsToTechniqueValidationSchema = Yup.object().shape({ scientistIds: Yup.array(Yup.number()).min(1).required(), techniqueId: Yup.number().required(), }); exports.removeScientistFromTechniqueValidationSchema = Yup.object().shape({ scientistId: Yup.number().required(), techniqueId: Yup.number().required(), });