expo-backend-types 0.9.0-EXPO-247-EB-Evento.1 → 0.9.0-EXPO-249-EB-Modelo.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/account/dto/account.dto.d.ts +6 -4
- package/dist/src/account/dto/create-account.dto.d.ts +12 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
- package/dist/src/account/dto/get-me.dto.d.ts +6 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
- package/dist/src/auth/dto/login.dto.d.ts +11 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
- package/dist/src/event/exports.d.ts +0 -5
- package/dist/src/event/exports.js +0 -5
- package/dist/src/event-folder/dto/update-event-folder.dto.d.ts +17 -14
- package/dist/src/event-folder/dto/update-event-folder.dto.js +2 -4
- package/dist/src/i18n/es.d.ts +40 -15
- package/dist/src/i18n/es.js +40 -15
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/create-profile.dto.d.ts +694 -0
- package/dist/src/profile/dto/create-profile.dto.js +84 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +125 -0
- package/dist/src/profile/dto/delete-profile.dto.js +10 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +410 -0
- package/dist/src/profile/dto/find-all-profile.dto.js +25 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +655 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +34 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +475 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.js +27 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +125 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.js +10 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +337 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +19 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +393 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +24 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +110 -0
- package/dist/src/profile/dto/find-trash.dto.js +24 -0
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/profile.dto.js +7 -3
- package/dist/src/profile/dto/update-profile.dto.d.ts +360 -0
- package/dist/src/profile/dto/update-profile.dto.js +55 -0
- package/dist/src/profile/exports.d.ts +10 -0
- package/dist/src/profile/exports.js +10 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +16 -16
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +16 -16
- package/dist/types/prisma-schema/edge.js +5 -4
- package/dist/types/prisma-schema/index-browser.js +2 -1
- package/dist/types/prisma-schema/index.d.ts +9 -2
- package/dist/types/prisma-schema/index.js +5 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -0
- package/dist/types/prisma-schema/wasm.js +2 -1
- package/dist/types/schema.d.ts +587 -154
- package/package.json +4 -1
- package/dist/src/event/dto/create-event.dto.d.ts +0 -126
- package/dist/src/event/dto/create-event.dto.js +0 -22
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -71
- package/dist/src/event/dto/delete-event.dto.js +0 -10
- package/dist/src/event/dto/get-all-event.dto.d.ts +0 -223
- package/dist/src/event/dto/get-all-event.dto.js +0 -19
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -139
- package/dist/src/event/dto/get-by-id-event.dto.js +0 -17
- package/dist/src/event/dto/update-event.dto.d.ts +0 -126
- package/dist/src/event/dto/update-event.dto.js +0 -22
@@ -1,126 +0,0 @@
|
|
1
|
-
export declare const updateEventSchema: import("zod").ZodObject<Pick<{
|
2
|
-
id: import("zod").ZodString;
|
3
|
-
name: import("zod").ZodString;
|
4
|
-
date: import("zod").ZodDate;
|
5
|
-
location: import("zod").ZodString;
|
6
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
7
|
-
tagAssistedId: import("zod").ZodString;
|
8
|
-
tagConfirmedId: import("zod").ZodString;
|
9
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
10
|
-
created_at: import("zod").ZodDate;
|
11
|
-
updated_at: import("zod").ZodDate;
|
12
|
-
}, "location" | "name" | "date" | "folderId" | "tagAssistedId" | "tagConfirmedId" | "supraEventId">, "strip", import("zod").ZodTypeAny, {
|
13
|
-
location: string;
|
14
|
-
name: string;
|
15
|
-
date: Date;
|
16
|
-
folderId: string | null;
|
17
|
-
tagAssistedId: string;
|
18
|
-
tagConfirmedId: string;
|
19
|
-
supraEventId: string | null;
|
20
|
-
}, {
|
21
|
-
location: string;
|
22
|
-
name: string;
|
23
|
-
date: Date;
|
24
|
-
folderId: string | null;
|
25
|
-
tagAssistedId: string;
|
26
|
-
tagConfirmedId: string;
|
27
|
-
supraEventId: string | null;
|
28
|
-
}>;
|
29
|
-
declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
30
|
-
location: import("zod").ZodString;
|
31
|
-
name: import("zod").ZodString;
|
32
|
-
date: import("zod").ZodString;
|
33
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
34
|
-
tagAssistedId: import("zod").ZodString;
|
35
|
-
tagConfirmedId: import("zod").ZodString;
|
36
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
37
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
38
|
-
location: string;
|
39
|
-
name: string;
|
40
|
-
date: string;
|
41
|
-
folderId: string | null;
|
42
|
-
tagAssistedId: string;
|
43
|
-
tagConfirmedId: string;
|
44
|
-
supraEventId: string | null;
|
45
|
-
}, {
|
46
|
-
location: string;
|
47
|
-
name: string;
|
48
|
-
date: string;
|
49
|
-
folderId: string | null;
|
50
|
-
tagAssistedId: string;
|
51
|
-
tagConfirmedId: string;
|
52
|
-
supraEventId: string | null;
|
53
|
-
}>>;
|
54
|
-
export declare class UpdateEventDto extends UpdateEventDto_base {
|
55
|
-
}
|
56
|
-
export declare const updateEventResponseSchema: import("zod").ZodObject<{
|
57
|
-
id: import("zod").ZodString;
|
58
|
-
name: import("zod").ZodString;
|
59
|
-
date: import("zod").ZodDate;
|
60
|
-
location: import("zod").ZodString;
|
61
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
62
|
-
tagAssistedId: import("zod").ZodString;
|
63
|
-
tagConfirmedId: import("zod").ZodString;
|
64
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
65
|
-
created_at: import("zod").ZodDate;
|
66
|
-
updated_at: import("zod").ZodDate;
|
67
|
-
}, "strip", import("zod").ZodTypeAny, {
|
68
|
-
location: string;
|
69
|
-
id: string;
|
70
|
-
name: string;
|
71
|
-
date: Date;
|
72
|
-
created_at: Date;
|
73
|
-
updated_at: Date;
|
74
|
-
folderId: string | null;
|
75
|
-
tagAssistedId: string;
|
76
|
-
tagConfirmedId: string;
|
77
|
-
supraEventId: string | null;
|
78
|
-
}, {
|
79
|
-
location: string;
|
80
|
-
id: string;
|
81
|
-
name: string;
|
82
|
-
date: Date;
|
83
|
-
created_at: Date;
|
84
|
-
updated_at: Date;
|
85
|
-
folderId: string | null;
|
86
|
-
tagAssistedId: string;
|
87
|
-
tagConfirmedId: string;
|
88
|
-
supraEventId: string | null;
|
89
|
-
}>;
|
90
|
-
declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
91
|
-
id: import("zod").ZodString;
|
92
|
-
name: import("zod").ZodString;
|
93
|
-
date: import("zod").ZodString;
|
94
|
-
location: import("zod").ZodString;
|
95
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
96
|
-
tagAssistedId: import("zod").ZodString;
|
97
|
-
tagConfirmedId: import("zod").ZodString;
|
98
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
99
|
-
created_at: import("zod").ZodString;
|
100
|
-
updated_at: import("zod").ZodString;
|
101
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
102
|
-
location: string;
|
103
|
-
id: string;
|
104
|
-
name: string;
|
105
|
-
date: string;
|
106
|
-
created_at: string;
|
107
|
-
updated_at: string;
|
108
|
-
folderId: string | null;
|
109
|
-
tagAssistedId: string;
|
110
|
-
tagConfirmedId: string;
|
111
|
-
supraEventId: string | null;
|
112
|
-
}, {
|
113
|
-
location: string;
|
114
|
-
id: string;
|
115
|
-
name: string;
|
116
|
-
date: string;
|
117
|
-
created_at: string;
|
118
|
-
updated_at: string;
|
119
|
-
folderId: string | null;
|
120
|
-
tagAssistedId: string;
|
121
|
-
tagConfirmedId: string;
|
122
|
-
supraEventId: string | null;
|
123
|
-
}>>;
|
124
|
-
export declare class UpdateEventResponseDto extends UpdateEventResponseDto_base {
|
125
|
-
}
|
126
|
-
export {};
|
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.UpdateEventResponseDto = exports.updateEventResponseSchema = exports.UpdateEventDto = exports.updateEventSchema = void 0;
|
4
|
-
const event_dto_1 = require("./event.dto");
|
5
|
-
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
-
exports.updateEventSchema = event_dto_1.eventSchema.pick({
|
7
|
-
name: true,
|
8
|
-
folderId: true,
|
9
|
-
date: true,
|
10
|
-
location: true,
|
11
|
-
supraEventId: true,
|
12
|
-
tagAssistedId: true,
|
13
|
-
tagConfirmedId: true,
|
14
|
-
});
|
15
|
-
class UpdateEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventSchema) {
|
16
|
-
}
|
17
|
-
exports.UpdateEventDto = UpdateEventDto;
|
18
|
-
exports.updateEventResponseSchema = event_dto_1.eventSchema;
|
19
|
-
class UpdateEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventResponseSchema) {
|
20
|
-
}
|
21
|
-
exports.UpdateEventResponseDto = UpdateEventResponseDto;
|
22
|
-
//# sourceMappingURL=update-event.dto.js.map
|