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.3
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
|
}
|
package/dist/types/schema.d.ts
CHANGED
@@ -3823,6 +3823,20 @@ export interface components {
|
|
3823
3823
|
created_at: string;
|
3824
3824
|
updated_at: string;
|
3825
3825
|
} | null;
|
3826
|
+
productionsAdministrated: {
|
3827
|
+
id: string;
|
3828
|
+
name: string;
|
3829
|
+
administratorId: string | null;
|
3830
|
+
created_at: string;
|
3831
|
+
updated_at: string;
|
3832
|
+
}[];
|
3833
|
+
productionsParticipated: {
|
3834
|
+
id: string;
|
3835
|
+
name: string;
|
3836
|
+
administratorId: string | null;
|
3837
|
+
created_at: string;
|
3838
|
+
updated_at: string;
|
3839
|
+
}[];
|
3826
3840
|
};
|
3827
3841
|
UpdateMiExpoMeDto: {
|
3828
3842
|
birthDate: string | null;
|
package/package.json
CHANGED