expo-backend-types 0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.1 → 0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.2
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.
@@ -86,6 +86,44 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
86
86
|
country: string;
|
87
87
|
city: string;
|
88
88
|
}>>;
|
89
|
+
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
90
|
+
id: import("zod").ZodString;
|
91
|
+
name: import("zod").ZodString;
|
92
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
93
|
+
created_at: import("zod").ZodDate;
|
94
|
+
updated_at: import("zod").ZodDate;
|
95
|
+
}, "strip", import("zod").ZodTypeAny, {
|
96
|
+
id: string;
|
97
|
+
name: string;
|
98
|
+
created_at: Date;
|
99
|
+
updated_at: Date;
|
100
|
+
administratorId: string | null;
|
101
|
+
}, {
|
102
|
+
id: string;
|
103
|
+
name: string;
|
104
|
+
created_at: Date;
|
105
|
+
updated_at: Date;
|
106
|
+
administratorId: string | null;
|
107
|
+
}>, "many">;
|
108
|
+
productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
|
109
|
+
id: import("zod").ZodString;
|
110
|
+
name: import("zod").ZodString;
|
111
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
112
|
+
created_at: import("zod").ZodDate;
|
113
|
+
updated_at: import("zod").ZodDate;
|
114
|
+
}, "strip", import("zod").ZodTypeAny, {
|
115
|
+
id: string;
|
116
|
+
name: string;
|
117
|
+
created_at: Date;
|
118
|
+
updated_at: Date;
|
119
|
+
administratorId: string | null;
|
120
|
+
}, {
|
121
|
+
id: string;
|
122
|
+
name: string;
|
123
|
+
created_at: Date;
|
124
|
+
updated_at: Date;
|
125
|
+
administratorId: string | null;
|
126
|
+
}>, "many">;
|
89
127
|
}>, "strip", import("zod").ZodTypeAny, {
|
90
128
|
id: string;
|
91
129
|
username: string | null;
|
@@ -130,6 +168,20 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
130
168
|
country: string;
|
131
169
|
city: string;
|
132
170
|
} | null;
|
171
|
+
productionsAdministrated: {
|
172
|
+
id: string;
|
173
|
+
name: string;
|
174
|
+
created_at: Date;
|
175
|
+
updated_at: Date;
|
176
|
+
administratorId: string | null;
|
177
|
+
}[];
|
178
|
+
productionsParticipated: {
|
179
|
+
id: string;
|
180
|
+
name: string;
|
181
|
+
created_at: Date;
|
182
|
+
updated_at: Date;
|
183
|
+
administratorId: string | null;
|
184
|
+
}[];
|
133
185
|
}, {
|
134
186
|
id: string;
|
135
187
|
username: string | null;
|
@@ -173,6 +225,20 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
173
225
|
country: string;
|
174
226
|
city: string;
|
175
227
|
} | null;
|
228
|
+
productionsAdministrated: {
|
229
|
+
id: string;
|
230
|
+
name: string;
|
231
|
+
created_at: Date;
|
232
|
+
updated_at: Date;
|
233
|
+
administratorId: string | null;
|
234
|
+
}[];
|
235
|
+
productionsParticipated: {
|
236
|
+
id: string;
|
237
|
+
name: string;
|
238
|
+
created_at: Date;
|
239
|
+
updated_at: Date;
|
240
|
+
administratorId: string | null;
|
241
|
+
}[];
|
176
242
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
177
243
|
}>;
|
178
244
|
declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -261,6 +327,44 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
261
327
|
country: string;
|
262
328
|
city: string;
|
263
329
|
}>>;
|
330
|
+
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
331
|
+
id: import("zod").ZodString;
|
332
|
+
name: import("zod").ZodString;
|
333
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
334
|
+
created_at: import("zod").ZodString;
|
335
|
+
updated_at: import("zod").ZodString;
|
336
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
337
|
+
id: string;
|
338
|
+
name: string;
|
339
|
+
created_at: string;
|
340
|
+
updated_at: string;
|
341
|
+
administratorId: string | null;
|
342
|
+
}, {
|
343
|
+
id: string;
|
344
|
+
name: string;
|
345
|
+
created_at: string;
|
346
|
+
updated_at: string;
|
347
|
+
administratorId: string | null;
|
348
|
+
}>, "many">;
|
349
|
+
productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
|
350
|
+
id: import("zod").ZodString;
|
351
|
+
name: import("zod").ZodString;
|
352
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
353
|
+
created_at: import("zod").ZodString;
|
354
|
+
updated_at: import("zod").ZodString;
|
355
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
356
|
+
id: string;
|
357
|
+
name: string;
|
358
|
+
created_at: string;
|
359
|
+
updated_at: string;
|
360
|
+
administratorId: string | null;
|
361
|
+
}, {
|
362
|
+
id: string;
|
363
|
+
name: string;
|
364
|
+
created_at: string;
|
365
|
+
updated_at: string;
|
366
|
+
administratorId: string | null;
|
367
|
+
}>, "many">;
|
264
368
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
265
369
|
id: string;
|
266
370
|
username: string | null;
|
@@ -305,6 +409,20 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
305
409
|
country: string;
|
306
410
|
city: string;
|
307
411
|
} | null;
|
412
|
+
productionsAdministrated: {
|
413
|
+
id: string;
|
414
|
+
name: string;
|
415
|
+
created_at: string;
|
416
|
+
updated_at: string;
|
417
|
+
administratorId: string | null;
|
418
|
+
}[];
|
419
|
+
productionsParticipated: {
|
420
|
+
id: string;
|
421
|
+
name: string;
|
422
|
+
created_at: string;
|
423
|
+
updated_at: string;
|
424
|
+
administratorId: string | null;
|
425
|
+
}[];
|
308
426
|
}, {
|
309
427
|
id: string;
|
310
428
|
username: string | null;
|
@@ -348,6 +466,20 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
348
466
|
country: string;
|
349
467
|
city: string;
|
350
468
|
} | null;
|
469
|
+
productionsAdministrated: {
|
470
|
+
id: string;
|
471
|
+
name: string;
|
472
|
+
created_at: string;
|
473
|
+
updated_at: string;
|
474
|
+
administratorId: string | null;
|
475
|
+
}[];
|
476
|
+
productionsParticipated: {
|
477
|
+
id: string;
|
478
|
+
name: string;
|
479
|
+
created_at: string;
|
480
|
+
updated_at: string;
|
481
|
+
administratorId: string | null;
|
482
|
+
}[];
|
351
483
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
352
484
|
}>>;
|
353
485
|
export declare class GetMiExpoMeResponseDto extends GetMiExpoMeResponseDto_base {
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GetMiExpoMeResponseDto = exports.getMiExpoMeResponseSchema = void 0;
|
4
|
+
const production_dto_1 = require("../../production/dto/production.dto");
|
4
5
|
const location_schema_1 = require("../../schema/location.schema");
|
5
6
|
const profile_schema_1 = require("../../schema/profile.schema");
|
6
7
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
@@ -9,6 +10,8 @@ exports.getMiExpoMeResponseSchema = profile_schema_1.profileSchema
|
|
9
10
|
.extend({
|
10
11
|
residenceLocation: location_schema_1.locationSchema.nullable(),
|
11
12
|
birthLocation: location_schema_1.locationSchema.nullable(),
|
13
|
+
productionsAdministrated: production_dto_1.productionSchema.array(),
|
14
|
+
productionsParticipated: production_dto_1.productionSchema.array(),
|
12
15
|
});
|
13
16
|
class GetMiExpoMeResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getMiExpoMeResponseSchema) {
|
14
17
|
}
|
@@ -87,6 +87,44 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
87
87
|
country: string;
|
88
88
|
city: string;
|
89
89
|
}>>;
|
90
|
+
productionsAdministrated: z.ZodArray<z.ZodObject<{
|
91
|
+
id: z.ZodString;
|
92
|
+
name: z.ZodString;
|
93
|
+
administratorId: z.ZodNullable<z.ZodString>;
|
94
|
+
created_at: z.ZodDate;
|
95
|
+
updated_at: z.ZodDate;
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
97
|
+
id: string;
|
98
|
+
name: string;
|
99
|
+
created_at: Date;
|
100
|
+
updated_at: Date;
|
101
|
+
administratorId: string | null;
|
102
|
+
}, {
|
103
|
+
id: string;
|
104
|
+
name: string;
|
105
|
+
created_at: Date;
|
106
|
+
updated_at: Date;
|
107
|
+
administratorId: string | null;
|
108
|
+
}>, "many">;
|
109
|
+
productionsParticipated: z.ZodArray<z.ZodObject<{
|
110
|
+
id: z.ZodString;
|
111
|
+
name: z.ZodString;
|
112
|
+
administratorId: z.ZodNullable<z.ZodString>;
|
113
|
+
created_at: z.ZodDate;
|
114
|
+
updated_at: z.ZodDate;
|
115
|
+
}, "strip", z.ZodTypeAny, {
|
116
|
+
id: string;
|
117
|
+
name: string;
|
118
|
+
created_at: Date;
|
119
|
+
updated_at: Date;
|
120
|
+
administratorId: string | null;
|
121
|
+
}, {
|
122
|
+
id: string;
|
123
|
+
name: string;
|
124
|
+
created_at: Date;
|
125
|
+
updated_at: Date;
|
126
|
+
administratorId: string | null;
|
127
|
+
}>, "many">;
|
90
128
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
91
129
|
id: z.ZodString;
|
92
130
|
name: z.ZodString;
|
@@ -199,6 +237,20 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
199
237
|
country: string;
|
200
238
|
city: string;
|
201
239
|
} | null;
|
240
|
+
productionsAdministrated: {
|
241
|
+
id: string;
|
242
|
+
name: string;
|
243
|
+
created_at: Date;
|
244
|
+
updated_at: Date;
|
245
|
+
administratorId: string | null;
|
246
|
+
}[];
|
247
|
+
productionsParticipated: {
|
248
|
+
id: string;
|
249
|
+
name: string;
|
250
|
+
created_at: Date;
|
251
|
+
updated_at: Date;
|
252
|
+
administratorId: string | null;
|
253
|
+
}[];
|
202
254
|
}, {
|
203
255
|
id: string;
|
204
256
|
username: string | null;
|
@@ -255,6 +307,20 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
255
307
|
country: string;
|
256
308
|
city: string;
|
257
309
|
} | null;
|
310
|
+
productionsAdministrated: {
|
311
|
+
id: string;
|
312
|
+
name: string;
|
313
|
+
created_at: Date;
|
314
|
+
updated_at: Date;
|
315
|
+
administratorId: string | null;
|
316
|
+
}[];
|
317
|
+
productionsParticipated: {
|
318
|
+
id: string;
|
319
|
+
name: string;
|
320
|
+
created_at: Date;
|
321
|
+
updated_at: Date;
|
322
|
+
administratorId: string | null;
|
323
|
+
}[];
|
258
324
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
259
325
|
}>;
|
260
326
|
declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -343,6 +409,44 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
343
409
|
country: string;
|
344
410
|
city: string;
|
345
411
|
}>>;
|
412
|
+
productionsAdministrated: z.ZodArray<z.ZodObject<{
|
413
|
+
id: z.ZodString;
|
414
|
+
name: z.ZodString;
|
415
|
+
administratorId: z.ZodNullable<z.ZodString>;
|
416
|
+
created_at: z.ZodString;
|
417
|
+
updated_at: z.ZodString;
|
418
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
419
|
+
id: string;
|
420
|
+
name: string;
|
421
|
+
created_at: string;
|
422
|
+
updated_at: string;
|
423
|
+
administratorId: string | null;
|
424
|
+
}, {
|
425
|
+
id: string;
|
426
|
+
name: string;
|
427
|
+
created_at: string;
|
428
|
+
updated_at: string;
|
429
|
+
administratorId: string | null;
|
430
|
+
}>, "many">;
|
431
|
+
productionsParticipated: z.ZodArray<z.ZodObject<{
|
432
|
+
id: z.ZodString;
|
433
|
+
name: z.ZodString;
|
434
|
+
administratorId: z.ZodNullable<z.ZodString>;
|
435
|
+
created_at: z.ZodString;
|
436
|
+
updated_at: z.ZodString;
|
437
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
438
|
+
id: string;
|
439
|
+
name: string;
|
440
|
+
created_at: string;
|
441
|
+
updated_at: string;
|
442
|
+
administratorId: string | null;
|
443
|
+
}, {
|
444
|
+
id: string;
|
445
|
+
name: string;
|
446
|
+
created_at: string;
|
447
|
+
updated_at: string;
|
448
|
+
administratorId: string | null;
|
449
|
+
}>, "many">;
|
346
450
|
tags: z.ZodArray<z.ZodObject<{
|
347
451
|
id: z.ZodString;
|
348
452
|
name: z.ZodString;
|
@@ -451,6 +555,20 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
451
555
|
country: string;
|
452
556
|
city: string;
|
453
557
|
} | null;
|
558
|
+
productionsAdministrated: {
|
559
|
+
id: string;
|
560
|
+
name: string;
|
561
|
+
created_at: string;
|
562
|
+
updated_at: string;
|
563
|
+
administratorId: string | null;
|
564
|
+
}[];
|
565
|
+
productionsParticipated: {
|
566
|
+
id: string;
|
567
|
+
name: string;
|
568
|
+
created_at: string;
|
569
|
+
updated_at: string;
|
570
|
+
administratorId: string | null;
|
571
|
+
}[];
|
454
572
|
}, {
|
455
573
|
id: string;
|
456
574
|
username: string | null;
|
@@ -507,6 +625,20 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
507
625
|
country: string;
|
508
626
|
city: string;
|
509
627
|
} | null;
|
628
|
+
productionsAdministrated: {
|
629
|
+
id: string;
|
630
|
+
name: string;
|
631
|
+
created_at: string;
|
632
|
+
updated_at: string;
|
633
|
+
administratorId: string | null;
|
634
|
+
}[];
|
635
|
+
productionsParticipated: {
|
636
|
+
id: string;
|
637
|
+
name: string;
|
638
|
+
created_at: string;
|
639
|
+
updated_at: string;
|
640
|
+
administratorId: string | null;
|
641
|
+
}[];
|
510
642
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
511
643
|
}>>;
|
512
644
|
export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
|
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.FindByIdProfileResponseDto = exports.findByIdProfileResponseSchema = void 0;
|
7
|
+
const production_dto_1 = require("../../production/dto/production.dto");
|
7
8
|
const location_schema_1 = require("../../schema/location.schema");
|
8
9
|
const profile_schema_1 = require("../../schema/profile.schema");
|
9
10
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
@@ -15,6 +16,8 @@ exports.findByIdProfileResponseSchema = profile_schema_1.profileSchema
|
|
15
16
|
.merge(zod_1.default.object({
|
16
17
|
residenceLocation: location_schema_1.locationSchema.nullable(),
|
17
18
|
birthLocation: location_schema_1.locationSchema.nullable(),
|
19
|
+
productionsAdministrated: production_dto_1.productionSchema.array(),
|
20
|
+
productionsParticipated: production_dto_1.productionSchema.array(),
|
18
21
|
tags: zod_1.default.array(tag_dto_1.tagSchema.merge(zod_1.default.object({
|
19
22
|
group: tag_group_dto_1.tagGroupSchema.pick({
|
20
23
|
id: true,
|
package/dist/types/schema.d.ts
CHANGED
@@ -3067,6 +3067,20 @@ export interface components {
|
|
3067
3067
|
created_at: string;
|
3068
3068
|
updated_at: string;
|
3069
3069
|
} | null;
|
3070
|
+
productionsAdministrated: {
|
3071
|
+
id: string;
|
3072
|
+
name: string;
|
3073
|
+
administratorId: string | null;
|
3074
|
+
created_at: string;
|
3075
|
+
updated_at: string;
|
3076
|
+
}[];
|
3077
|
+
productionsParticipated: {
|
3078
|
+
id: string;
|
3079
|
+
name: string;
|
3080
|
+
administratorId: string | null;
|
3081
|
+
created_at: string;
|
3082
|
+
updated_at: string;
|
3083
|
+
}[];
|
3070
3084
|
tags: {
|
3071
3085
|
id: string;
|
3072
3086
|
name: string;
|
@@ -3823,6 +3837,20 @@ export interface components {
|
|
3823
3837
|
created_at: string;
|
3824
3838
|
updated_at: string;
|
3825
3839
|
} | null;
|
3840
|
+
productionsAdministrated: {
|
3841
|
+
id: string;
|
3842
|
+
name: string;
|
3843
|
+
administratorId: string | null;
|
3844
|
+
created_at: string;
|
3845
|
+
updated_at: string;
|
3846
|
+
}[];
|
3847
|
+
productionsParticipated: {
|
3848
|
+
id: string;
|
3849
|
+
name: string;
|
3850
|
+
administratorId: string | null;
|
3851
|
+
created_at: string;
|
3852
|
+
updated_at: string;
|
3853
|
+
}[];
|
3826
3854
|
};
|
3827
3855
|
UpdateMiExpoMeDto: {
|
3828
3856
|
birthDate: string | null;
|
package/package.json
CHANGED