expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.3 → 0.34.0-EXPO-319-ver-eventos-disponibles.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/update-event.dto.d.ts +6 -0
- package/dist/src/event/dto/update-event.dto.js +1 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +35 -1
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
- package/dist/types/schema.d.ts +3 -0
- package/package.json +1 -1
@@ -14,6 +14,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
14
14
|
created_at: z.ZodDate;
|
15
15
|
updated_at: z.ZodDate;
|
16
16
|
}, "location" | "name" | "date" | "startingDate" | "endingDate" | "folderId">, {
|
17
|
+
tagsId: z.ZodArray<z.ZodString, "many">;
|
17
18
|
subEvents: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
18
19
|
id: z.ZodString;
|
19
20
|
name: z.ZodString;
|
@@ -78,6 +79,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
78
79
|
startingDate: Date;
|
79
80
|
endingDate: Date;
|
80
81
|
}[];
|
82
|
+
tagsId: string[];
|
81
83
|
eventTickets: {
|
82
84
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
83
85
|
amount: number;
|
@@ -98,6 +100,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
98
100
|
startingDate: Date;
|
99
101
|
endingDate: Date;
|
100
102
|
}[];
|
103
|
+
tagsId: string[];
|
101
104
|
eventTickets: {
|
102
105
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
103
106
|
amount: number;
|
@@ -111,6 +114,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
111
114
|
startingDate: z.ZodString;
|
112
115
|
endingDate: z.ZodString;
|
113
116
|
folderId: z.ZodNullable<z.ZodString>;
|
117
|
+
tagsId: z.ZodArray<z.ZodString, "many">;
|
114
118
|
subEvents: z.ZodArray<z.ZodObject<{
|
115
119
|
location: z.ZodString;
|
116
120
|
name: z.ZodString;
|
@@ -165,6 +169,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
165
169
|
startingDate: string;
|
166
170
|
endingDate: string;
|
167
171
|
}[];
|
172
|
+
tagsId: string[];
|
168
173
|
eventTickets: {
|
169
174
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
170
175
|
amount: number;
|
@@ -185,6 +190,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
185
190
|
startingDate: string;
|
186
191
|
endingDate: string;
|
187
192
|
}[];
|
193
|
+
tagsId: string[];
|
188
194
|
eventTickets: {
|
189
195
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
190
196
|
amount: number;
|
@@ -45,9 +45,13 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
45
45
|
isExclusive: z.ZodBoolean;
|
46
46
|
created_at: z.ZodDate;
|
47
47
|
updated_at: z.ZodDate;
|
48
|
-
}, "isExclusive">, "strip", z.ZodTypeAny, {
|
48
|
+
}, "name" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
|
49
|
+
name: string;
|
50
|
+
color: string;
|
49
51
|
isExclusive: boolean;
|
50
52
|
}, {
|
53
|
+
name: string;
|
54
|
+
color: string;
|
51
55
|
isExclusive: boolean;
|
52
56
|
}>;
|
53
57
|
}>, "strip", z.ZodTypeAny, {
|
@@ -58,6 +62,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
58
62
|
updated_at: Date;
|
59
63
|
groupId: string;
|
60
64
|
group: {
|
65
|
+
name: string;
|
66
|
+
color: string;
|
61
67
|
isExclusive: boolean;
|
62
68
|
};
|
63
69
|
}, {
|
@@ -68,6 +74,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
68
74
|
updated_at: Date;
|
69
75
|
groupId: string;
|
70
76
|
group: {
|
77
|
+
name: string;
|
78
|
+
color: string;
|
71
79
|
isExclusive: boolean;
|
72
80
|
};
|
73
81
|
}>, "many">;
|
@@ -103,6 +111,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
103
111
|
updated_at: Date;
|
104
112
|
groupId: string;
|
105
113
|
group: {
|
114
|
+
name: string;
|
115
|
+
color: string;
|
106
116
|
isExclusive: boolean;
|
107
117
|
};
|
108
118
|
}[];
|
@@ -138,6 +148,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
138
148
|
updated_at: Date;
|
139
149
|
groupId: string;
|
140
150
|
group: {
|
151
|
+
name: string;
|
152
|
+
color: string;
|
141
153
|
isExclusive: boolean;
|
142
154
|
};
|
143
155
|
}[];
|
@@ -175,6 +187,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
175
187
|
updated_at: Date;
|
176
188
|
groupId: string;
|
177
189
|
group: {
|
190
|
+
name: string;
|
191
|
+
color: string;
|
178
192
|
isExclusive: boolean;
|
179
193
|
};
|
180
194
|
}[];
|
@@ -212,6 +226,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
212
226
|
updated_at: Date;
|
213
227
|
groupId: string;
|
214
228
|
group: {
|
229
|
+
name: string;
|
230
|
+
color: string;
|
215
231
|
isExclusive: boolean;
|
216
232
|
};
|
217
233
|
}[];
|
@@ -255,10 +271,16 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
255
271
|
created_at: z.ZodString;
|
256
272
|
updated_at: z.ZodString;
|
257
273
|
group: z.ZodObject<{
|
274
|
+
name: z.ZodString;
|
275
|
+
color: z.ZodString;
|
258
276
|
isExclusive: z.ZodBoolean;
|
259
277
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
278
|
+
name: string;
|
279
|
+
color: string;
|
260
280
|
isExclusive: boolean;
|
261
281
|
}, {
|
282
|
+
name: string;
|
283
|
+
color: string;
|
262
284
|
isExclusive: boolean;
|
263
285
|
}>;
|
264
286
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -269,6 +291,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
269
291
|
updated_at: string;
|
270
292
|
groupId: string;
|
271
293
|
group: {
|
294
|
+
name: string;
|
295
|
+
color: string;
|
272
296
|
isExclusive: boolean;
|
273
297
|
};
|
274
298
|
}, {
|
@@ -279,6 +303,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
279
303
|
updated_at: string;
|
280
304
|
groupId: string;
|
281
305
|
group: {
|
306
|
+
name: string;
|
307
|
+
color: string;
|
282
308
|
isExclusive: boolean;
|
283
309
|
};
|
284
310
|
}>, "many">;
|
@@ -314,6 +340,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
314
340
|
updated_at: string;
|
315
341
|
groupId: string;
|
316
342
|
group: {
|
343
|
+
name: string;
|
344
|
+
color: string;
|
317
345
|
isExclusive: boolean;
|
318
346
|
};
|
319
347
|
}[];
|
@@ -349,6 +377,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
349
377
|
updated_at: string;
|
350
378
|
groupId: string;
|
351
379
|
group: {
|
380
|
+
name: string;
|
381
|
+
color: string;
|
352
382
|
isExclusive: boolean;
|
353
383
|
};
|
354
384
|
}[];
|
@@ -386,6 +416,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
386
416
|
updated_at: string;
|
387
417
|
groupId: string;
|
388
418
|
group: {
|
419
|
+
name: string;
|
420
|
+
color: string;
|
389
421
|
isExclusive: boolean;
|
390
422
|
};
|
391
423
|
}[];
|
@@ -423,6 +455,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
423
455
|
updated_at: string;
|
424
456
|
groupId: string;
|
425
457
|
group: {
|
458
|
+
name: string;
|
459
|
+
color: string;
|
426
460
|
isExclusive: boolean;
|
427
461
|
};
|
428
462
|
}[];
|
@@ -14,6 +14,8 @@ exports.findByTagsProfileResponseSchema = zod_1.default.object({
|
|
14
14
|
tags: zod_1.default.array(tag_dto_1.tagSchema.merge(zod_1.default.object({
|
15
15
|
group: tag_group_dto_1.tagGroupSchema.pick({
|
16
16
|
isExclusive: true,
|
17
|
+
name: true,
|
18
|
+
color: true,
|
17
19
|
}),
|
18
20
|
}))),
|
19
21
|
}))),
|
package/dist/types/schema.d.ts
CHANGED
@@ -2031,6 +2031,7 @@ export interface components {
|
|
2031
2031
|
location: string;
|
2032
2032
|
startingDate: string;
|
2033
2033
|
endingDate: string;
|
2034
|
+
tagsId: string[];
|
2034
2035
|
subEvents: {
|
2035
2036
|
name: string;
|
2036
2037
|
location: string;
|
@@ -2227,6 +2228,8 @@ export interface components {
|
|
2227
2228
|
updated_at: string;
|
2228
2229
|
group: {
|
2229
2230
|
isExclusive: boolean;
|
2231
|
+
name: string;
|
2232
|
+
color: string;
|
2230
2233
|
};
|
2231
2234
|
}[];
|
2232
2235
|
}[];
|