expo-backend-types 0.55.0-EXPO-363-Etapa-4-Paquete-00.2 → 0.56.0
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.
@@ -87,6 +87,70 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
87
87
|
country: string;
|
88
88
|
city: string;
|
89
89
|
}>>;
|
90
|
+
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
91
|
+
id: import("zod").ZodString;
|
92
|
+
name: import("zod").ZodString;
|
93
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
94
|
+
created_at: import("zod").ZodDate;
|
95
|
+
updated_at: import("zod").ZodDate;
|
96
|
+
}, "strip", import("zod").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: import("zod").ZodArray<import("zod").ZodObject<{
|
110
|
+
id: import("zod").ZodString;
|
111
|
+
name: import("zod").ZodString;
|
112
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
113
|
+
created_at: import("zod").ZodDate;
|
114
|
+
updated_at: import("zod").ZodDate;
|
115
|
+
}, "strip", import("zod").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">;
|
128
|
+
productionRequestsSent: import("zod").ZodArray<import("zod").ZodObject<{
|
129
|
+
id: import("zod").ZodString;
|
130
|
+
productionId: import("zod").ZodString;
|
131
|
+
profileId: import("zod").ZodString;
|
132
|
+
status: import("zod").ZodNativeEnum<{
|
133
|
+
APPROVED: "APPROVED";
|
134
|
+
PENDING: "PENDING";
|
135
|
+
REJECTED: "REJECTED";
|
136
|
+
}>;
|
137
|
+
created_at: import("zod").ZodDate;
|
138
|
+
updated_at: import("zod").ZodDate;
|
139
|
+
}, "strip", import("zod").ZodTypeAny, {
|
140
|
+
id: string;
|
141
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
142
|
+
created_at: Date;
|
143
|
+
updated_at: Date;
|
144
|
+
profileId: string;
|
145
|
+
productionId: string;
|
146
|
+
}, {
|
147
|
+
id: string;
|
148
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
149
|
+
created_at: Date;
|
150
|
+
updated_at: Date;
|
151
|
+
profileId: string;
|
152
|
+
productionId: string;
|
153
|
+
}>, "many">;
|
90
154
|
}>, "strip", import("zod").ZodTypeAny, {
|
91
155
|
id: string;
|
92
156
|
username: string | null;
|
@@ -132,6 +196,28 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
132
196
|
country: string;
|
133
197
|
city: string;
|
134
198
|
} | null;
|
199
|
+
productionsAdministrated: {
|
200
|
+
id: string;
|
201
|
+
name: string;
|
202
|
+
created_at: Date;
|
203
|
+
updated_at: Date;
|
204
|
+
administratorId: string | null;
|
205
|
+
}[];
|
206
|
+
productionsParticipated: {
|
207
|
+
id: string;
|
208
|
+
name: string;
|
209
|
+
created_at: Date;
|
210
|
+
updated_at: Date;
|
211
|
+
administratorId: string | null;
|
212
|
+
}[];
|
213
|
+
productionRequestsSent: {
|
214
|
+
id: string;
|
215
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
216
|
+
created_at: Date;
|
217
|
+
updated_at: Date;
|
218
|
+
profileId: string;
|
219
|
+
productionId: string;
|
220
|
+
}[];
|
135
221
|
}, {
|
136
222
|
id: string;
|
137
223
|
username: string | null;
|
@@ -176,6 +262,28 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
176
262
|
country: string;
|
177
263
|
city: string;
|
178
264
|
} | null;
|
265
|
+
productionsAdministrated: {
|
266
|
+
id: string;
|
267
|
+
name: string;
|
268
|
+
created_at: Date;
|
269
|
+
updated_at: Date;
|
270
|
+
administratorId: string | null;
|
271
|
+
}[];
|
272
|
+
productionsParticipated: {
|
273
|
+
id: string;
|
274
|
+
name: string;
|
275
|
+
created_at: Date;
|
276
|
+
updated_at: Date;
|
277
|
+
administratorId: string | null;
|
278
|
+
}[];
|
279
|
+
productionRequestsSent: {
|
280
|
+
id: string;
|
281
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
282
|
+
created_at: Date;
|
283
|
+
updated_at: Date;
|
284
|
+
profileId: string;
|
285
|
+
productionId: string;
|
286
|
+
}[];
|
179
287
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
180
288
|
}>;
|
181
289
|
declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -265,6 +373,70 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
265
373
|
country: string;
|
266
374
|
city: string;
|
267
375
|
}>>;
|
376
|
+
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
377
|
+
id: import("zod").ZodString;
|
378
|
+
name: import("zod").ZodString;
|
379
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
380
|
+
created_at: import("zod").ZodString;
|
381
|
+
updated_at: import("zod").ZodString;
|
382
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
383
|
+
id: string;
|
384
|
+
name: string;
|
385
|
+
created_at: string;
|
386
|
+
updated_at: string;
|
387
|
+
administratorId: string | null;
|
388
|
+
}, {
|
389
|
+
id: string;
|
390
|
+
name: string;
|
391
|
+
created_at: string;
|
392
|
+
updated_at: string;
|
393
|
+
administratorId: string | null;
|
394
|
+
}>, "many">;
|
395
|
+
productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
|
396
|
+
id: import("zod").ZodString;
|
397
|
+
name: import("zod").ZodString;
|
398
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
399
|
+
created_at: import("zod").ZodString;
|
400
|
+
updated_at: import("zod").ZodString;
|
401
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
402
|
+
id: string;
|
403
|
+
name: string;
|
404
|
+
created_at: string;
|
405
|
+
updated_at: string;
|
406
|
+
administratorId: string | null;
|
407
|
+
}, {
|
408
|
+
id: string;
|
409
|
+
name: string;
|
410
|
+
created_at: string;
|
411
|
+
updated_at: string;
|
412
|
+
administratorId: string | null;
|
413
|
+
}>, "many">;
|
414
|
+
productionRequestsSent: import("zod").ZodArray<import("zod").ZodObject<{
|
415
|
+
id: import("zod").ZodString;
|
416
|
+
productionId: import("zod").ZodString;
|
417
|
+
profileId: import("zod").ZodString;
|
418
|
+
status: import("zod").ZodNativeEnum<{
|
419
|
+
APPROVED: "APPROVED";
|
420
|
+
PENDING: "PENDING";
|
421
|
+
REJECTED: "REJECTED";
|
422
|
+
}>;
|
423
|
+
created_at: import("zod").ZodString;
|
424
|
+
updated_at: import("zod").ZodString;
|
425
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
426
|
+
id: string;
|
427
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
428
|
+
created_at: string;
|
429
|
+
updated_at: string;
|
430
|
+
profileId: string;
|
431
|
+
productionId: string;
|
432
|
+
}, {
|
433
|
+
id: string;
|
434
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
435
|
+
created_at: string;
|
436
|
+
updated_at: string;
|
437
|
+
profileId: string;
|
438
|
+
productionId: string;
|
439
|
+
}>, "many">;
|
268
440
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
269
441
|
id: string;
|
270
442
|
username: string | null;
|
@@ -310,6 +482,28 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
310
482
|
country: string;
|
311
483
|
city: string;
|
312
484
|
} | null;
|
485
|
+
productionsAdministrated: {
|
486
|
+
id: string;
|
487
|
+
name: string;
|
488
|
+
created_at: string;
|
489
|
+
updated_at: string;
|
490
|
+
administratorId: string | null;
|
491
|
+
}[];
|
492
|
+
productionsParticipated: {
|
493
|
+
id: string;
|
494
|
+
name: string;
|
495
|
+
created_at: string;
|
496
|
+
updated_at: string;
|
497
|
+
administratorId: string | null;
|
498
|
+
}[];
|
499
|
+
productionRequestsSent: {
|
500
|
+
id: string;
|
501
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
502
|
+
created_at: string;
|
503
|
+
updated_at: string;
|
504
|
+
profileId: string;
|
505
|
+
productionId: string;
|
506
|
+
}[];
|
313
507
|
}, {
|
314
508
|
id: string;
|
315
509
|
username: string | null;
|
@@ -354,6 +548,28 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
354
548
|
country: string;
|
355
549
|
city: string;
|
356
550
|
} | null;
|
551
|
+
productionsAdministrated: {
|
552
|
+
id: string;
|
553
|
+
name: string;
|
554
|
+
created_at: string;
|
555
|
+
updated_at: string;
|
556
|
+
administratorId: string | null;
|
557
|
+
}[];
|
558
|
+
productionsParticipated: {
|
559
|
+
id: string;
|
560
|
+
name: string;
|
561
|
+
created_at: string;
|
562
|
+
updated_at: string;
|
563
|
+
administratorId: string | null;
|
564
|
+
}[];
|
565
|
+
productionRequestsSent: {
|
566
|
+
id: string;
|
567
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
568
|
+
created_at: string;
|
569
|
+
updated_at: string;
|
570
|
+
profileId: string;
|
571
|
+
productionId: string;
|
572
|
+
}[];
|
357
573
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
358
574
|
}>>;
|
359
575
|
export declare class GetMiExpoMeResponseDto extends GetMiExpoMeResponseDto_base {
|
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GetMiExpoMeResponseDto = exports.getMiExpoMeResponseSchema = void 0;
|
4
|
+
const production_affiliation_request_dto_1 = require("../../production-affiliation-request/dto/production-affiliation-request.dto");
|
5
|
+
const production_dto_1 = require("../../production/dto/production.dto");
|
4
6
|
const location_schema_1 = require("../../schema/location.schema");
|
5
7
|
const profile_schema_1 = require("../../schema/profile.schema");
|
6
8
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
@@ -9,6 +11,9 @@ exports.getMiExpoMeResponseSchema = profile_schema_1.profileSchema
|
|
9
11
|
.extend({
|
10
12
|
residenceLocation: location_schema_1.locationSchema.nullable(),
|
11
13
|
birthLocation: location_schema_1.locationSchema.nullable(),
|
14
|
+
productionsAdministrated: production_dto_1.productionSchema.array(),
|
15
|
+
productionsParticipated: production_dto_1.productionSchema.array(),
|
16
|
+
productionRequestsSent: production_affiliation_request_dto_1.productionAffiliationRequestSchema.array(),
|
12
17
|
});
|
13
18
|
class GetMiExpoMeResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getMiExpoMeResponseSchema) {
|
14
19
|
}
|
package/dist/types/schema.d.ts
CHANGED
@@ -3883,6 +3883,28 @@ export interface components {
|
|
3883
3883
|
created_at: string;
|
3884
3884
|
updated_at: string;
|
3885
3885
|
} | null;
|
3886
|
+
productionsAdministrated: {
|
3887
|
+
id: string;
|
3888
|
+
name: string;
|
3889
|
+
administratorId: string | null;
|
3890
|
+
created_at: string;
|
3891
|
+
updated_at: string;
|
3892
|
+
}[];
|
3893
|
+
productionsParticipated: {
|
3894
|
+
id: string;
|
3895
|
+
name: string;
|
3896
|
+
administratorId: string | null;
|
3897
|
+
created_at: string;
|
3898
|
+
updated_at: string;
|
3899
|
+
}[];
|
3900
|
+
productionRequestsSent: {
|
3901
|
+
id: string;
|
3902
|
+
productionId: string;
|
3903
|
+
profileId: string;
|
3904
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
3905
|
+
created_at: string;
|
3906
|
+
updated_at: string;
|
3907
|
+
}[];
|
3886
3908
|
};
|
3887
3909
|
UpdateMiExpoMeDto: {
|
3888
3910
|
birthDate: string | null;
|