michangarrito/apps/whatsapp-service/node_modules/@nestjs/cli/lib/schematics/nest.collection.js
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
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>
2026-01-07 04:41:02 -06:00

127 lines
3.2 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NestCollection = void 0;
const abstract_collection_1 = require("./abstract.collection");
class NestCollection extends abstract_collection_1.AbstractCollection {
constructor(runner) {
super('@nestjs/schematics', runner);
}
async execute(name, options) {
const schematic = this.validate(name);
await super.execute(schematic, options);
}
getSchematics() {
return NestCollection.schematics.filter((item) => item.name !== 'angular-app');
}
validate(name) {
const schematic = NestCollection.schematics.find((s) => s.name === name || s.alias === name);
if (schematic === undefined || schematic === null) {
throw new Error(`Invalid schematic "${name}". Please, ensure that "${name}" exists in this collection.`);
}
return schematic.name;
}
}
exports.NestCollection = NestCollection;
NestCollection.schematics = [
{
name: 'application',
alias: 'application',
description: 'Generate a new application workspace',
},
{
name: 'angular-app',
alias: 'ng-app',
description: '',
},
{
name: 'class',
alias: 'cl',
description: 'Generate a new class',
},
{
name: 'configuration',
alias: 'config',
description: 'Generate a CLI configuration file',
},
{
name: 'controller',
alias: 'co',
description: 'Generate a controller declaration',
},
{
name: 'decorator',
alias: 'd',
description: 'Generate a custom decorator',
},
{
name: 'filter',
alias: 'f',
description: 'Generate a filter declaration',
},
{
name: 'gateway',
alias: 'ga',
description: 'Generate a gateway declaration',
},
{
name: 'guard',
alias: 'gu',
description: 'Generate a guard declaration',
},
{
name: 'interceptor',
alias: 'itc',
description: 'Generate an interceptor declaration',
},
{
name: 'interface',
alias: 'itf',
description: 'Generate an interface',
},
{
name: 'library',
alias: 'lib',
description: 'Generate a new library within a monorepo',
},
{
name: 'middleware',
alias: 'mi',
description: 'Generate a middleware declaration',
},
{
name: 'module',
alias: 'mo',
description: 'Generate a module declaration',
},
{
name: 'pipe',
alias: 'pi',
description: 'Generate a pipe declaration',
},
{
name: 'provider',
alias: 'pr',
description: 'Generate a provider declaration',
},
{
name: 'resolver',
alias: 'r',
description: 'Generate a GraphQL resolver declaration',
},
{
name: 'resource',
alias: 'res',
description: 'Generate a new CRUD resource',
},
{
name: 'service',
alias: 's',
description: 'Generate a service declaration',
},
{
name: 'sub-app',
alias: 'app',
description: 'Generate a new application within a monorepo',
},
];