Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
export declare class CreateContributionDto {
giftId: string;
contributorName: string;
contributorEmail?: string;
amount: number;
type?: 'individual' | 'group';
metadata?: Record<string, any>;
}
//# sourceMappingURL=create-contribution.dto.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"create-contribution.dto.d.ts","sourceRoot":"","sources":["../../../../src/gift/api/dto/create-contribution.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,qBAAqB;IAChC,MAAM,EAAG,MAAM,CAAC;IAChB,eAAe,EAAG,MAAM,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,MAAM,EAAG,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAChC"}

View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreateContributionDto = void 0;
class CreateContributionDto {
}
exports.CreateContributionDto = CreateContributionDto;

10
dist/gift/api/dto/create-gift.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
export declare class CreateGiftDto {
name: string;
description?: string;
imageUrl?: string;
price?: number;
experience?: boolean;
ownerId?: string;
metadata?: Record<string, any>;
}
//# sourceMappingURL=create-gift.dto.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"create-gift.dto.d.ts","sourceRoot":"","sources":["../../../../src/gift/api/dto/create-gift.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,aAAa;IACxB,IAAI,EAAG,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAChC"}

6
dist/gift/api/dto/create-gift.dto.js vendored Normal file
View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreateGiftDto = void 0;
class CreateGiftDto {
}
exports.CreateGiftDto = CreateGiftDto;