expo-backend-types 0.31.0-EXPO-311-EB-Modificar-DB-schema.4 → 0.31.0-EXPO-311-EB-Modificar-DB-schema.5
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/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/get-active-events.dto.d.ts +32 -32
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +72 -72
- package/dist/src/event/dto/update-event.dto.d.ts +44 -44
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/types/schema.d.ts +4 -4
- package/package.json +1 -1
@@ -66,13 +66,13 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
66
66
|
date: Date;
|
67
67
|
startingDate: Date;
|
68
68
|
endingDate: Date;
|
69
|
+
folderId: string | null;
|
70
|
+
tagsId: string[];
|
69
71
|
eventTickets: {
|
70
72
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
71
73
|
amount: number;
|
72
74
|
price: number | null;
|
73
75
|
}[];
|
74
|
-
folderId: string | null;
|
75
|
-
tagsId: string[];
|
76
76
|
subEvents?: {
|
77
77
|
location: string;
|
78
78
|
name: string;
|
@@ -86,13 +86,13 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
86
86
|
date: Date;
|
87
87
|
startingDate: Date;
|
88
88
|
endingDate: Date;
|
89
|
+
folderId: string | null;
|
90
|
+
tagsId: string[];
|
89
91
|
eventTickets: {
|
90
92
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
91
93
|
amount: number;
|
92
94
|
price: number | null;
|
93
95
|
}[];
|
94
|
-
folderId: string | null;
|
95
|
-
tagsId: string[];
|
96
96
|
subEvents?: {
|
97
97
|
location: string;
|
98
98
|
name: string;
|
@@ -151,13 +151,13 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
151
151
|
date: string;
|
152
152
|
startingDate: string;
|
153
153
|
endingDate: string;
|
154
|
+
folderId: string | null;
|
155
|
+
tagsId: string[];
|
154
156
|
eventTickets: {
|
155
157
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
156
158
|
amount: number;
|
157
159
|
price: number | null;
|
158
160
|
}[];
|
159
|
-
folderId: string | null;
|
160
|
-
tagsId: string[];
|
161
161
|
subEvents?: {
|
162
162
|
location: string;
|
163
163
|
name: string;
|
@@ -171,13 +171,13 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
171
171
|
date: string;
|
172
172
|
startingDate: string;
|
173
173
|
endingDate: string;
|
174
|
+
folderId: string | null;
|
175
|
+
tagsId: string[];
|
174
176
|
eventTickets: {
|
175
177
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
176
178
|
amount: number;
|
177
179
|
price: number | null;
|
178
180
|
}[];
|
179
|
-
folderId: string | null;
|
180
|
-
tagsId: string[];
|
181
181
|
subEvents?: {
|
182
182
|
location: string;
|
183
183
|
name: string;
|
@@ -45,16 +45,16 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
45
45
|
created_at: Date;
|
46
46
|
updated_at: Date;
|
47
47
|
active: boolean;
|
48
|
+
folderId: string | null;
|
49
|
+
tagAssistedId: string;
|
50
|
+
tagConfirmedId: string;
|
51
|
+
supraEventId: string | null;
|
48
52
|
eventTickets: {
|
49
53
|
id: string;
|
50
54
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
51
55
|
amount: number;
|
52
56
|
price: number | null;
|
53
57
|
}[];
|
54
|
-
folderId: string | null;
|
55
|
-
tagAssistedId: string;
|
56
|
-
tagConfirmedId: string;
|
57
|
-
supraEventId: string | null;
|
58
58
|
}, {
|
59
59
|
location: string;
|
60
60
|
id: string;
|
@@ -65,16 +65,16 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
65
65
|
created_at: Date;
|
66
66
|
updated_at: Date;
|
67
67
|
active: boolean;
|
68
|
+
folderId: string | null;
|
69
|
+
tagAssistedId: string;
|
70
|
+
tagConfirmedId: string;
|
71
|
+
supraEventId: string | null;
|
68
72
|
eventTickets: {
|
69
73
|
id: string;
|
70
74
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
71
75
|
amount: number;
|
72
76
|
price: number | null;
|
73
77
|
}[];
|
74
|
-
folderId: string | null;
|
75
|
-
tagAssistedId: string;
|
76
|
-
tagConfirmedId: string;
|
77
|
-
supraEventId: string | null;
|
78
78
|
}>, "many">;
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
80
80
|
events: {
|
@@ -87,16 +87,16 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
87
87
|
created_at: Date;
|
88
88
|
updated_at: Date;
|
89
89
|
active: boolean;
|
90
|
+
folderId: string | null;
|
91
|
+
tagAssistedId: string;
|
92
|
+
tagConfirmedId: string;
|
93
|
+
supraEventId: string | null;
|
90
94
|
eventTickets: {
|
91
95
|
id: string;
|
92
96
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
93
97
|
amount: number;
|
94
98
|
price: number | null;
|
95
99
|
}[];
|
96
|
-
folderId: string | null;
|
97
|
-
tagAssistedId: string;
|
98
|
-
tagConfirmedId: string;
|
99
|
-
supraEventId: string | null;
|
100
100
|
}[];
|
101
101
|
}, {
|
102
102
|
events: {
|
@@ -109,16 +109,16 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
109
109
|
created_at: Date;
|
110
110
|
updated_at: Date;
|
111
111
|
active: boolean;
|
112
|
+
folderId: string | null;
|
113
|
+
tagAssistedId: string;
|
114
|
+
tagConfirmedId: string;
|
115
|
+
supraEventId: string | null;
|
112
116
|
eventTickets: {
|
113
117
|
id: string;
|
114
118
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
115
119
|
amount: number;
|
116
120
|
price: number | null;
|
117
121
|
}[];
|
118
|
-
folderId: string | null;
|
119
|
-
tagAssistedId: string;
|
120
|
-
tagConfirmedId: string;
|
121
|
-
supraEventId: string | null;
|
122
122
|
}[];
|
123
123
|
}>;
|
124
124
|
declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -166,16 +166,16 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
166
166
|
created_at: string;
|
167
167
|
updated_at: string;
|
168
168
|
active: boolean;
|
169
|
+
folderId: string | null;
|
170
|
+
tagAssistedId: string;
|
171
|
+
tagConfirmedId: string;
|
172
|
+
supraEventId: string | null;
|
169
173
|
eventTickets: {
|
170
174
|
id: string;
|
171
175
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
172
176
|
amount: number;
|
173
177
|
price: number | null;
|
174
178
|
}[];
|
175
|
-
folderId: string | null;
|
176
|
-
tagAssistedId: string;
|
177
|
-
tagConfirmedId: string;
|
178
|
-
supraEventId: string | null;
|
179
179
|
}, {
|
180
180
|
location: string;
|
181
181
|
id: string;
|
@@ -186,16 +186,16 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
186
186
|
created_at: string;
|
187
187
|
updated_at: string;
|
188
188
|
active: boolean;
|
189
|
+
folderId: string | null;
|
190
|
+
tagAssistedId: string;
|
191
|
+
tagConfirmedId: string;
|
192
|
+
supraEventId: string | null;
|
189
193
|
eventTickets: {
|
190
194
|
id: string;
|
191
195
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
192
196
|
amount: number;
|
193
197
|
price: number | null;
|
194
198
|
}[];
|
195
|
-
folderId: string | null;
|
196
|
-
tagAssistedId: string;
|
197
|
-
tagConfirmedId: string;
|
198
|
-
supraEventId: string | null;
|
199
199
|
}>, "many">;
|
200
200
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
201
201
|
events: {
|
@@ -208,16 +208,16 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
208
208
|
created_at: string;
|
209
209
|
updated_at: string;
|
210
210
|
active: boolean;
|
211
|
+
folderId: string | null;
|
212
|
+
tagAssistedId: string;
|
213
|
+
tagConfirmedId: string;
|
214
|
+
supraEventId: string | null;
|
211
215
|
eventTickets: {
|
212
216
|
id: string;
|
213
217
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
214
218
|
amount: number;
|
215
219
|
price: number | null;
|
216
220
|
}[];
|
217
|
-
folderId: string | null;
|
218
|
-
tagAssistedId: string;
|
219
|
-
tagConfirmedId: string;
|
220
|
-
supraEventId: string | null;
|
221
221
|
}[];
|
222
222
|
}, {
|
223
223
|
events: {
|
@@ -230,16 +230,16 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
230
230
|
created_at: string;
|
231
231
|
updated_at: string;
|
232
232
|
active: boolean;
|
233
|
+
folderId: string | null;
|
234
|
+
tagAssistedId: string;
|
235
|
+
tagConfirmedId: string;
|
236
|
+
supraEventId: string | null;
|
233
237
|
eventTickets: {
|
234
238
|
id: string;
|
235
239
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
236
240
|
amount: number;
|
237
241
|
price: number | null;
|
238
242
|
}[];
|
239
|
-
folderId: string | null;
|
240
|
-
tagAssistedId: string;
|
241
|
-
tagConfirmedId: string;
|
242
|
-
supraEventId: string | null;
|
243
243
|
}[];
|
244
244
|
}>>;
|
245
245
|
export declare class GetActiveEventsResponseDto extends GetActiveEventsResponseDto_base {
|