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.
Files changed (48) hide show
  1. package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -10
  2. package/dist/src/account/dto/get-me.dto.d.ts +16 -20
  3. package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -10
  4. package/dist/src/event/dto/get-all-event.dto.d.ts +232 -236
  5. package/dist/src/event/dto/get-all-event.dto.js +1 -1
  6. package/dist/src/event/dto/get-all-statistics.dto.d.ts +364 -0
  7. package/dist/src/event/dto/get-all-statistics.dto.js +40 -0
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +126 -136
  9. package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
  10. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +402 -0
  11. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +35 -0
  12. package/dist/src/event/dto/update-event.dto.d.ts +8 -10
  13. package/dist/src/exports.d.ts +0 -1
  14. package/dist/src/exports.js +0 -1
  15. package/dist/src/i18n/es.d.ts +7 -15
  16. package/dist/src/i18n/es.js +7 -15
  17. package/dist/src/i18n/es.js.map +1 -1
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -14
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -24
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -10
  21. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -14
  22. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -14
  23. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -14
  24. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -7
  25. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -6
  26. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -10
  27. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -10
  28. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -6
  29. package/dist/src/tag/dto/tag.dto.d.ts +4 -6
  30. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -7
  31. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -14
  32. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -14
  33. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -10
  34. package/dist/types/prisma-schema/edge.js +5 -32
  35. package/dist/types/prisma-schema/index-browser.js +2 -29
  36. package/dist/types/prisma-schema/index.d.ts +6857 -11425
  37. package/dist/types/prisma-schema/index.js +5 -32
  38. package/dist/types/prisma-schema/package.json +1 -1
  39. package/dist/types/prisma-schema/schema.prisma +4 -54
  40. package/dist/types/prisma-schema/wasm.js +2 -29
  41. package/dist/types/schema.d.ts +165 -28
  42. package/package.json +1 -1
  43. package/dist/src/production/dto/production.dto.d.ts +0 -20
  44. package/dist/src/production/dto/production.dto.js +0 -21
  45. package/dist/src/production/exports.d.ts +0 -1
  46. package/dist/src/production/exports.js +0 -18
  47. package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +0 -27
  48. 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