michangarrito/apps/backend/node_modules/@nestjs/swagger/dist/services/response-object-mapper.d.ts
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

20 lines
1.1 KiB
TypeScript

import { ApiResponseMetadata, ApiResponseSchemaHost } from '../decorators';
export declare class ResponseObjectMapper {
private readonly mimetypeContentWrapper;
toArrayRefObject(response: Record<string, any>, name: string, produces: string[]): {
content: import("../interfaces/open-api-spec.interface").ContentObject;
};
toRefObject(response: Record<string, any>, name: string, produces: string[]): {
content: import("../interfaces/open-api-spec.interface").ContentObject;
};
wrapSchemaWithContent(response: ApiResponseSchemaHost & ApiResponseMetadata, produces: string[]): (ApiResponseSchemaHost & ApiResponseMetadata) | {
content: import("../interfaces/open-api-spec.interface").ContentObject;
description?: string;
type?: string | Function | import("@nestjs/common").Type<unknown> | [Function];
isArray?: boolean;
headers?: import("../interfaces/open-api-spec.interface").HeadersObject;
links?: import("../interfaces/open-api-spec.interface").LinksObject;
status?: number | "default" | "1XX" | "2XX" | "3XX" | "4XX" | "5XX";
};
}