Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ConstraintMetadata = void 0;
|
|
const container_1 = require("../container");
|
|
/**
|
|
* This metadata interface contains information for custom validators.
|
|
*/
|
|
class ConstraintMetadata {
|
|
// -------------------------------------------------------------------------
|
|
// Constructor
|
|
// -------------------------------------------------------------------------
|
|
constructor(target, name, async = false) {
|
|
this.target = target;
|
|
this.name = name;
|
|
this.async = async;
|
|
}
|
|
// -------------------------------------------------------------------------
|
|
// Accessors
|
|
// -------------------------------------------------------------------------
|
|
/**
|
|
* Instance of the target custom validation class which performs validation.
|
|
*/
|
|
get instance() {
|
|
return (0, container_1.getFromContainer)(this.target);
|
|
}
|
|
}
|
|
exports.ConstraintMetadata = ConstraintMetadata;
|
|
//# sourceMappingURL=ConstraintMetadata.js.map
|