expo-backend-types 0.9.0-EXPO-249-EB-Modelo.6 → 0.9.0-EXPO-247-EB-Evento.1
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 +4 -6
- package/dist/src/account/dto/create-account.dto.d.ts +8 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +0 -1
- package/dist/src/account/dto/get-me.dto.d.ts +4 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +4 -6
- package/dist/src/auth/dto/login.dto.d.ts +8 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +0 -1
- package/dist/src/event/dto/create-event.dto.d.ts +126 -0
- package/dist/src/event/dto/create-event.dto.js +22 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +71 -0
- package/dist/src/event/dto/delete-event.dto.js +10 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +223 -0
- package/dist/src/event/dto/get-all-event.dto.js +19 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +139 -0
- package/dist/src/event/dto/get-by-id-event.dto.js +17 -0
- package/dist/src/event/dto/update-event.dto.d.ts +126 -0
- package/dist/src/event/dto/update-event.dto.js +22 -0
- package/dist/src/event/exports.d.ts +5 -0
- package/dist/src/event/exports.js +5 -0
- package/dist/src/event-folder/dto/update-event-folder.dto.d.ts +14 -17
- package/dist/src/event-folder/dto/update-event-folder.dto.js +4 -2
- package/dist/src/i18n/es.d.ts +16 -21
- package/dist/src/i18n/es.js +16 -21
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/profile.dto.js +2 -6
- package/dist/src/profile/exports.d.ts +0 -5
- package/dist/src/profile/exports.js +0 -5
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +6 -6
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +6 -6
- package/dist/types/prisma-schema/edge.js +4 -5
- package/dist/types/prisma-schema/index-browser.js +1 -2
- package/dist/types/prisma-schema/index.d.ts +2 -9
- package/dist/types/prisma-schema/index.js +4 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +0 -2
- package/dist/types/prisma-schema/wasm.js +1 -2
- package/dist/types/schema.d.ts +131 -261
- package/package.json +1 -2
- package/dist/src/profile/dto/create-profile.dto.d.ts +0 -694
- package/dist/src/profile/dto/create-profile.dto.js +0 -84
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +0 -410
- package/dist/src/profile/dto/find-all-profile.dto.js +0 -25
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +0 -475
- package/dist/src/profile/dto/find-by-id-profile.dto.js +0 -27
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +0 -337
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +0 -19
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +0 -393
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +0 -24
@@ -6,7 +6,6 @@ export declare const accountSchema: z.ZodObject<{
|
|
6
6
|
role: z.ZodNativeEnum<{
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
9
|
}>;
|
11
10
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
12
11
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -16,7 +15,7 @@ export declare const accountSchema: z.ZodObject<{
|
|
16
15
|
id: string;
|
17
16
|
username: string;
|
18
17
|
password: string;
|
19
|
-
role: "USER" | "ADMIN"
|
18
|
+
role: "USER" | "ADMIN";
|
20
19
|
isGlobalFilterActive: boolean;
|
21
20
|
fcmToken: string[];
|
22
21
|
created_at: Date;
|
@@ -25,7 +24,7 @@ export declare const accountSchema: z.ZodObject<{
|
|
25
24
|
id: string;
|
26
25
|
username: string;
|
27
26
|
password: string;
|
28
|
-
role: "USER" | "ADMIN"
|
27
|
+
role: "USER" | "ADMIN";
|
29
28
|
created_at: Date;
|
30
29
|
updated_at: Date;
|
31
30
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -38,7 +37,6 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
38
37
|
role: z.ZodNativeEnum<{
|
39
38
|
USER: "USER";
|
40
39
|
ADMIN: "ADMIN";
|
41
|
-
FORM: "FORM";
|
42
40
|
}>;
|
43
41
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
44
42
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -48,7 +46,7 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
48
46
|
id: string;
|
49
47
|
username: string;
|
50
48
|
password: string;
|
51
|
-
role: "USER" | "ADMIN"
|
49
|
+
role: "USER" | "ADMIN";
|
52
50
|
isGlobalFilterActive: boolean;
|
53
51
|
fcmToken: string[];
|
54
52
|
created_at: string;
|
@@ -57,7 +55,7 @@ declare const CuentaDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
57
55
|
id: string;
|
58
56
|
username: string;
|
59
57
|
password: string;
|
60
|
-
role: "USER" | "ADMIN"
|
58
|
+
role: "USER" | "ADMIN";
|
61
59
|
created_at: string;
|
62
60
|
updated_at: string;
|
63
61
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -5,7 +5,6 @@ export declare const createAccountSchema: import("zod").ZodObject<Pick<{
|
|
5
5
|
role: import("zod").ZodNativeEnum<{
|
6
6
|
USER: "USER";
|
7
7
|
ADMIN: "ADMIN";
|
8
|
-
FORM: "FORM";
|
9
8
|
}>;
|
10
9
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
11
10
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
@@ -14,11 +13,11 @@ export declare const createAccountSchema: import("zod").ZodObject<Pick<{
|
|
14
13
|
}, "username" | "password" | "role">, "strip", import("zod").ZodTypeAny, {
|
15
14
|
username: string;
|
16
15
|
password: string;
|
17
|
-
role: "USER" | "ADMIN"
|
16
|
+
role: "USER" | "ADMIN";
|
18
17
|
}, {
|
19
18
|
username: string;
|
20
19
|
password: string;
|
21
|
-
role: "USER" | "ADMIN"
|
20
|
+
role: "USER" | "ADMIN";
|
22
21
|
}>;
|
23
22
|
declare const CreateAccountDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
24
23
|
username: import("zod").ZodString;
|
@@ -26,16 +25,15 @@ declare const CreateAccountDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
26
25
|
role: import("zod").ZodNativeEnum<{
|
27
26
|
USER: "USER";
|
28
27
|
ADMIN: "ADMIN";
|
29
|
-
FORM: "FORM";
|
30
28
|
}>;
|
31
29
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
32
30
|
username: string;
|
33
31
|
password: string;
|
34
|
-
role: "USER" | "ADMIN"
|
32
|
+
role: "USER" | "ADMIN";
|
35
33
|
}, {
|
36
34
|
username: string;
|
37
35
|
password: string;
|
38
|
-
role: "USER" | "ADMIN"
|
36
|
+
role: "USER" | "ADMIN";
|
39
37
|
}>>;
|
40
38
|
export declare class CreateAccountDto extends CreateAccountDto_base {
|
41
39
|
}
|
@@ -46,7 +44,6 @@ export declare const createAccountResponseSchema: import("zod").ZodObject<Omit<{
|
|
46
44
|
role: import("zod").ZodNativeEnum<{
|
47
45
|
USER: "USER";
|
48
46
|
ADMIN: "ADMIN";
|
49
|
-
FORM: "FORM";
|
50
47
|
}>;
|
51
48
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
52
49
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
@@ -55,13 +52,13 @@ export declare const createAccountResponseSchema: import("zod").ZodObject<Omit<{
|
|
55
52
|
}, "password" | "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
56
53
|
id: string;
|
57
54
|
username: string;
|
58
|
-
role: "USER" | "ADMIN"
|
55
|
+
role: "USER" | "ADMIN";
|
59
56
|
isGlobalFilterActive: boolean;
|
60
57
|
fcmToken: string[];
|
61
58
|
}, {
|
62
59
|
id: string;
|
63
60
|
username: string;
|
64
|
-
role: "USER" | "ADMIN"
|
61
|
+
role: "USER" | "ADMIN";
|
65
62
|
isGlobalFilterActive?: boolean | undefined;
|
66
63
|
fcmToken?: string[] | undefined;
|
67
64
|
}>;
|
@@ -71,20 +68,19 @@ declare const CreateAccountResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
71
68
|
role: import("zod").ZodNativeEnum<{
|
72
69
|
USER: "USER";
|
73
70
|
ADMIN: "ADMIN";
|
74
|
-
FORM: "FORM";
|
75
71
|
}>;
|
76
72
|
isGlobalFilterActive: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
77
73
|
fcmToken: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
78
74
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
79
75
|
id: string;
|
80
76
|
username: string;
|
81
|
-
role: "USER" | "ADMIN"
|
77
|
+
role: "USER" | "ADMIN";
|
82
78
|
isGlobalFilterActive: boolean;
|
83
79
|
fcmToken: string[];
|
84
80
|
}, {
|
85
81
|
id: string;
|
86
82
|
username: string;
|
87
|
-
role: "USER" | "ADMIN"
|
83
|
+
role: "USER" | "ADMIN";
|
88
84
|
isGlobalFilterActive?: boolean | undefined;
|
89
85
|
fcmToken?: string[] | undefined;
|
90
86
|
}>>;
|
@@ -6,7 +6,6 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
6
6
|
role: z.ZodNativeEnum<{
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
9
|
}>;
|
11
10
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
12
11
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -6,7 +6,6 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
6
6
|
role: z.ZodNativeEnum<{
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
9
|
}>;
|
11
10
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
12
11
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -91,7 +90,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
91
90
|
}>, "strip", z.ZodTypeAny, {
|
92
91
|
id: string;
|
93
92
|
username: string;
|
94
|
-
role: "USER" | "ADMIN"
|
93
|
+
role: "USER" | "ADMIN";
|
95
94
|
isGlobalFilterActive: boolean;
|
96
95
|
fcmToken: string[];
|
97
96
|
created_at: Date;
|
@@ -117,7 +116,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
117
116
|
}, {
|
118
117
|
id: string;
|
119
118
|
username: string;
|
120
|
-
role: "USER" | "ADMIN"
|
119
|
+
role: "USER" | "ADMIN";
|
121
120
|
created_at: Date;
|
122
121
|
updated_at: Date;
|
123
122
|
globalFilter: {
|
@@ -147,7 +146,6 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
147
146
|
role: z.ZodNativeEnum<{
|
148
147
|
USER: "USER";
|
149
148
|
ADMIN: "ADMIN";
|
150
|
-
FORM: "FORM";
|
151
149
|
}>;
|
152
150
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
153
151
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -224,7 +222,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
224
222
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
225
223
|
id: string;
|
226
224
|
username: string;
|
227
|
-
role: "USER" | "ADMIN"
|
225
|
+
role: "USER" | "ADMIN";
|
228
226
|
isGlobalFilterActive: boolean;
|
229
227
|
fcmToken: string[];
|
230
228
|
created_at: string;
|
@@ -250,7 +248,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
250
248
|
}, {
|
251
249
|
id: string;
|
252
250
|
username: string;
|
253
|
-
role: "USER" | "ADMIN"
|
251
|
+
role: "USER" | "ADMIN";
|
254
252
|
created_at: string;
|
255
253
|
updated_at: string;
|
256
254
|
globalFilter: {
|
@@ -28,7 +28,6 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
28
28
|
role: z.ZodNativeEnum<{
|
29
29
|
USER: "USER";
|
30
30
|
ADMIN: "ADMIN";
|
31
|
-
FORM: "FORM";
|
32
31
|
}>;
|
33
32
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
34
33
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -66,7 +65,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
66
65
|
id: string;
|
67
66
|
username: string;
|
68
67
|
password: string;
|
69
|
-
role: "USER" | "ADMIN"
|
68
|
+
role: "USER" | "ADMIN";
|
70
69
|
isGlobalFilterActive: boolean;
|
71
70
|
fcmToken: string[];
|
72
71
|
created_at: Date;
|
@@ -83,7 +82,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
83
82
|
id: string;
|
84
83
|
username: string;
|
85
84
|
password: string;
|
86
|
-
role: "USER" | "ADMIN"
|
85
|
+
role: "USER" | "ADMIN";
|
87
86
|
created_at: Date;
|
88
87
|
updated_at: Date;
|
89
88
|
globalFilter: {
|
@@ -104,7 +103,6 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
104
103
|
role: z.ZodNativeEnum<{
|
105
104
|
USER: "USER";
|
106
105
|
ADMIN: "ADMIN";
|
107
|
-
FORM: "FORM";
|
108
106
|
}>;
|
109
107
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
110
108
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -141,7 +139,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
141
139
|
id: string;
|
142
140
|
username: string;
|
143
141
|
password: string;
|
144
|
-
role: "USER" | "ADMIN"
|
142
|
+
role: "USER" | "ADMIN";
|
145
143
|
isGlobalFilterActive: boolean;
|
146
144
|
fcmToken: string[];
|
147
145
|
created_at: string;
|
@@ -158,7 +156,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
158
156
|
id: string;
|
159
157
|
username: string;
|
160
158
|
password: string;
|
161
|
-
role: "USER" | "ADMIN"
|
159
|
+
role: "USER" | "ADMIN";
|
162
160
|
created_at: string;
|
163
161
|
updated_at: string;
|
164
162
|
globalFilter: {
|
@@ -6,7 +6,6 @@ export declare const loginSchema: z.ZodObject<Pick<{
|
|
6
6
|
role: z.ZodNativeEnum<{
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
|
-
FORM: "FORM";
|
10
9
|
}>;
|
11
10
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
12
11
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -39,7 +38,6 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
39
38
|
role: z.ZodNativeEnum<{
|
40
39
|
USER: "USER";
|
41
40
|
ADMIN: "ADMIN";
|
42
|
-
FORM: "FORM";
|
43
41
|
}>;
|
44
42
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
45
43
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -48,7 +46,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
48
46
|
}, "password">, "strip", z.ZodTypeAny, {
|
49
47
|
id: string;
|
50
48
|
username: string;
|
51
|
-
role: "USER" | "ADMIN"
|
49
|
+
role: "USER" | "ADMIN";
|
52
50
|
isGlobalFilterActive: boolean;
|
53
51
|
fcmToken: string[];
|
54
52
|
created_at: Date;
|
@@ -56,7 +54,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
56
54
|
}, {
|
57
55
|
id: string;
|
58
56
|
username: string;
|
59
|
-
role: "USER" | "ADMIN"
|
57
|
+
role: "USER" | "ADMIN";
|
60
58
|
created_at: Date;
|
61
59
|
updated_at: Date;
|
62
60
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -79,7 +77,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
79
77
|
user: {
|
80
78
|
id: string;
|
81
79
|
username: string;
|
82
|
-
role: "USER" | "ADMIN"
|
80
|
+
role: "USER" | "ADMIN";
|
83
81
|
isGlobalFilterActive: boolean;
|
84
82
|
fcmToken: string[];
|
85
83
|
created_at: Date;
|
@@ -94,7 +92,7 @@ export declare const loginResponseSchema: z.ZodObject<{
|
|
94
92
|
user: {
|
95
93
|
id: string;
|
96
94
|
username: string;
|
97
|
-
role: "USER" | "ADMIN"
|
95
|
+
role: "USER" | "ADMIN";
|
98
96
|
created_at: Date;
|
99
97
|
updated_at: Date;
|
100
98
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -113,7 +111,6 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
113
111
|
role: z.ZodNativeEnum<{
|
114
112
|
USER: "USER";
|
115
113
|
ADMIN: "ADMIN";
|
116
|
-
FORM: "FORM";
|
117
114
|
}>;
|
118
115
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
119
116
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -122,7 +119,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
122
119
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
123
120
|
id: string;
|
124
121
|
username: string;
|
125
|
-
role: "USER" | "ADMIN"
|
122
|
+
role: "USER" | "ADMIN";
|
126
123
|
isGlobalFilterActive: boolean;
|
127
124
|
fcmToken: string[];
|
128
125
|
created_at: string;
|
@@ -130,7 +127,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
130
127
|
}, {
|
131
128
|
id: string;
|
132
129
|
username: string;
|
133
|
-
role: "USER" | "ADMIN"
|
130
|
+
role: "USER" | "ADMIN";
|
134
131
|
created_at: string;
|
135
132
|
updated_at: string;
|
136
133
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -153,7 +150,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
153
150
|
user: {
|
154
151
|
id: string;
|
155
152
|
username: string;
|
156
|
-
role: "USER" | "ADMIN"
|
153
|
+
role: "USER" | "ADMIN";
|
157
154
|
isGlobalFilterActive: boolean;
|
158
155
|
fcmToken: string[];
|
159
156
|
created_at: string;
|
@@ -168,7 +165,7 @@ declare const LoginResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
168
165
|
user: {
|
169
166
|
id: string;
|
170
167
|
username: string;
|
171
|
-
role: "USER" | "ADMIN"
|
168
|
+
role: "USER" | "ADMIN";
|
172
169
|
created_at: string;
|
173
170
|
updated_at: string;
|
174
171
|
isGlobalFilterActive?: boolean | undefined;
|
@@ -19,7 +19,6 @@ export declare const getByProfileCommentResponseSchema: z.ZodObject<{
|
|
19
19
|
role: z.ZodNativeEnum<{
|
20
20
|
USER: "USER";
|
21
21
|
ADMIN: "ADMIN";
|
22
|
-
FORM: "FORM";
|
23
22
|
}>;
|
24
23
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
25
24
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -0,0 +1,126 @@
|
|
1
|
+
export declare const createEventSchema: 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 CreateEventDto_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 CreateEventDto extends CreateEventDto_base {
|
55
|
+
}
|
56
|
+
export declare const createEventResponseSchema: 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 CreateEventResponseDto_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 CreateEventResponseDto extends CreateEventResponseDto_base {
|
125
|
+
}
|
126
|
+
export {};
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateEventResponseDto = exports.createEventResponseSchema = exports.CreateEventDto = exports.createEventSchema = void 0;
|
4
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
+
const event_dto_1 = require("./event.dto");
|
6
|
+
exports.createEventSchema = event_dto_1.eventSchema.pick({
|
7
|
+
name: true,
|
8
|
+
date: true,
|
9
|
+
location: true,
|
10
|
+
folderId: true,
|
11
|
+
tagAssistedId: true,
|
12
|
+
tagConfirmedId: true,
|
13
|
+
supraEventId: true,
|
14
|
+
});
|
15
|
+
class CreateEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createEventSchema) {
|
16
|
+
}
|
17
|
+
exports.CreateEventDto = CreateEventDto;
|
18
|
+
exports.createEventResponseSchema = event_dto_1.eventSchema;
|
19
|
+
class CreateEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createEventResponseSchema) {
|
20
|
+
}
|
21
|
+
exports.CreateEventResponseDto = CreateEventResponseDto;
|
22
|
+
//# sourceMappingURL=create-event.dto.js.map
|
@@ -0,0 +1,71 @@
|
|
1
|
+
export declare const deleteEventResponseSchema: import("zod").ZodObject<{
|
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
|
+
}, "strip", import("zod").ZodTypeAny, {
|
13
|
+
location: string;
|
14
|
+
id: string;
|
15
|
+
name: string;
|
16
|
+
date: Date;
|
17
|
+
created_at: Date;
|
18
|
+
updated_at: Date;
|
19
|
+
folderId: string | null;
|
20
|
+
tagAssistedId: string;
|
21
|
+
tagConfirmedId: string;
|
22
|
+
supraEventId: string | null;
|
23
|
+
}, {
|
24
|
+
location: string;
|
25
|
+
id: string;
|
26
|
+
name: string;
|
27
|
+
date: Date;
|
28
|
+
created_at: Date;
|
29
|
+
updated_at: Date;
|
30
|
+
folderId: string | null;
|
31
|
+
tagAssistedId: string;
|
32
|
+
tagConfirmedId: string;
|
33
|
+
supraEventId: string | null;
|
34
|
+
}>;
|
35
|
+
declare const DeleteEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
36
|
+
id: import("zod").ZodString;
|
37
|
+
name: import("zod").ZodString;
|
38
|
+
date: import("zod").ZodString;
|
39
|
+
location: import("zod").ZodString;
|
40
|
+
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
41
|
+
tagAssistedId: import("zod").ZodString;
|
42
|
+
tagConfirmedId: import("zod").ZodString;
|
43
|
+
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
44
|
+
created_at: import("zod").ZodString;
|
45
|
+
updated_at: import("zod").ZodString;
|
46
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
47
|
+
location: string;
|
48
|
+
id: string;
|
49
|
+
name: string;
|
50
|
+
date: string;
|
51
|
+
created_at: string;
|
52
|
+
updated_at: string;
|
53
|
+
folderId: string | null;
|
54
|
+
tagAssistedId: string;
|
55
|
+
tagConfirmedId: string;
|
56
|
+
supraEventId: string | null;
|
57
|
+
}, {
|
58
|
+
location: string;
|
59
|
+
id: string;
|
60
|
+
name: string;
|
61
|
+
date: string;
|
62
|
+
created_at: string;
|
63
|
+
updated_at: string;
|
64
|
+
folderId: string | null;
|
65
|
+
tagAssistedId: string;
|
66
|
+
tagConfirmedId: string;
|
67
|
+
supraEventId: string | null;
|
68
|
+
}>>;
|
69
|
+
export declare class DeleteEventResponseDto extends DeleteEventResponseDto_base {
|
70
|
+
}
|
71
|
+
export {};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DeleteEventResponseDto = exports.deleteEventResponseSchema = 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.deleteEventResponseSchema = event_dto_1.eventSchema;
|
7
|
+
class DeleteEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.deleteEventResponseSchema) {
|
8
|
+
}
|
9
|
+
exports.DeleteEventResponseDto = DeleteEventResponseDto;
|
10
|
+
//# sourceMappingURL=delete-event.dto.js.map
|