expo-backend-types 0.49.0-EXPO-353-Sandro-de-America.2 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -10
- package/dist/src/account/dto/get-me.dto.d.ts +16 -20
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -10
- package/dist/src/event/dto/get-all-event.dto.d.ts +232 -236
- package/dist/src/event/dto/get-all-event.dto.js +1 -1
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +364 -0
- package/dist/src/event/dto/get-all-statistics.dto.js +40 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +126 -136
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +402 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.js +35 -0
- package/dist/src/event/dto/update-event.dto.d.ts +8 -10
- package/dist/src/exports.d.ts +0 -1
- package/dist/src/exports.js +0 -1
- package/dist/src/i18n/es.d.ts +7 -15
- package/dist/src/i18n/es.js +7 -15
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -14
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -24
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -14
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -14
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -14
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -7
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -6
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -10
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -10
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -6
- package/dist/src/tag/dto/tag.dto.d.ts +4 -6
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -7
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -14
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -14
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -10
- package/dist/types/prisma-schema/edge.js +5 -32
- package/dist/types/prisma-schema/index-browser.js +2 -29
- package/dist/types/prisma-schema/index.d.ts +6857 -11425
- package/dist/types/prisma-schema/index.js +5 -32
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +4 -54
- package/dist/types/prisma-schema/wasm.js +2 -29
- package/dist/types/schema.d.ts +165 -28
- package/package.json +1 -1
- package/dist/src/production/dto/production.dto.d.ts +0 -20
- package/dist/src/production/dto/production.dto.js +0 -21
- package/dist/src/production/exports.d.ts +0 -1
- package/dist/src/production/exports.js +0 -18
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +0 -27
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +0 -22
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.productionAffiliationRequestSchema = void 0;
|
7
|
-
const translate_1 = require("../../i18n/translate");
|
8
|
-
const production_dto_1 = require("../../production/dto/production.dto");
|
9
|
-
const profile_schema_1 = require("../../schema/profile.schema");
|
10
|
-
const zod_1 = __importDefault(require("zod"));
|
11
|
-
const prisma_schema_1 = require("../../../types/prisma-schema/index.js");
|
12
|
-
exports.productionAffiliationRequestSchema = zod_1.default.object({
|
13
|
-
id: zod_1.default.string().uuid({
|
14
|
-
message: (0, translate_1.translate)('model.productionAffiliationRequest.id.uuid'),
|
15
|
-
}),
|
16
|
-
productionId: production_dto_1.productionSchema.shape.id,
|
17
|
-
profileId: profile_schema_1.profileSchema.shape.id,
|
18
|
-
status: zod_1.default.nativeEnum(prisma_schema_1.AffiliationStatus),
|
19
|
-
createdAt: zod_1.default.date(),
|
20
|
-
updatedAt: zod_1.default.date(),
|
21
|
-
});
|
22
|
-
//# sourceMappingURL=production-affiliation-request.dto.js.map
|