expo-backend-types 0.57.0-EXPO-379-EB-Rutas-necesarias.2 → 0.57.0-EXPO-379-EB-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.
- package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.d.ts +515 -0
- package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.js +23 -0
- package/dist/src/i18n/es.d.ts +7 -0
- package/dist/src/i18n/es.js +7 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +20 -0
- package/dist/src/production/dto/create-production.dto.d.ts +8 -1
- package/dist/src/production/dto/create-production.dto.js +1 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +6 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +10 -0
- package/dist/src/production/dto/production.dto.d.ts +3 -0
- package/dist/src/production/dto/production.dto.js +3 -0
- package/dist/src/production/dto/update-production.dto.d.ts +12 -0
- package/dist/src/production/dto/update-production.dto.js +1 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/types/schema.d.ts +95 -0
- package/package.json +1 -1
@@ -90,16 +90,19 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
90
90
|
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
91
91
|
id: import("zod").ZodString;
|
92
92
|
name: import("zod").ZodString;
|
93
|
+
description: import("zod").ZodString;
|
93
94
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
94
95
|
created_at: import("zod").ZodDate;
|
95
96
|
updated_at: import("zod").ZodDate;
|
96
97
|
}, "strip", import("zod").ZodTypeAny, {
|
98
|
+
description: string;
|
97
99
|
id: string;
|
98
100
|
name: string;
|
99
101
|
created_at: Date;
|
100
102
|
updated_at: Date;
|
101
103
|
administratorId: string | null;
|
102
104
|
}, {
|
105
|
+
description: string;
|
103
106
|
id: string;
|
104
107
|
name: string;
|
105
108
|
created_at: Date;
|
@@ -109,16 +112,19 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
109
112
|
productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
|
110
113
|
id: import("zod").ZodString;
|
111
114
|
name: import("zod").ZodString;
|
115
|
+
description: import("zod").ZodString;
|
112
116
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
113
117
|
created_at: import("zod").ZodDate;
|
114
118
|
updated_at: import("zod").ZodDate;
|
115
119
|
}, "strip", import("zod").ZodTypeAny, {
|
120
|
+
description: string;
|
116
121
|
id: string;
|
117
122
|
name: string;
|
118
123
|
created_at: Date;
|
119
124
|
updated_at: Date;
|
120
125
|
administratorId: string | null;
|
121
126
|
}, {
|
127
|
+
description: string;
|
122
128
|
id: string;
|
123
129
|
name: string;
|
124
130
|
created_at: Date;
|
@@ -197,6 +203,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
197
203
|
city: string;
|
198
204
|
} | null;
|
199
205
|
productionsAdministrated: {
|
206
|
+
description: string;
|
200
207
|
id: string;
|
201
208
|
name: string;
|
202
209
|
created_at: Date;
|
@@ -204,6 +211,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
204
211
|
administratorId: string | null;
|
205
212
|
}[];
|
206
213
|
productionsParticipated: {
|
214
|
+
description: string;
|
207
215
|
id: string;
|
208
216
|
name: string;
|
209
217
|
created_at: Date;
|
@@ -263,6 +271,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
263
271
|
city: string;
|
264
272
|
} | null;
|
265
273
|
productionsAdministrated: {
|
274
|
+
description: string;
|
266
275
|
id: string;
|
267
276
|
name: string;
|
268
277
|
created_at: Date;
|
@@ -270,6 +279,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
270
279
|
administratorId: string | null;
|
271
280
|
}[];
|
272
281
|
productionsParticipated: {
|
282
|
+
description: string;
|
273
283
|
id: string;
|
274
284
|
name: string;
|
275
285
|
created_at: Date;
|
@@ -376,16 +386,19 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
376
386
|
productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
|
377
387
|
id: import("zod").ZodString;
|
378
388
|
name: import("zod").ZodString;
|
389
|
+
description: import("zod").ZodString;
|
379
390
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
380
391
|
created_at: import("zod").ZodString;
|
381
392
|
updated_at: import("zod").ZodString;
|
382
393
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
394
|
+
description: string;
|
383
395
|
id: string;
|
384
396
|
name: string;
|
385
397
|
created_at: string;
|
386
398
|
updated_at: string;
|
387
399
|
administratorId: string | null;
|
388
400
|
}, {
|
401
|
+
description: string;
|
389
402
|
id: string;
|
390
403
|
name: string;
|
391
404
|
created_at: string;
|
@@ -395,16 +408,19 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
395
408
|
productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
|
396
409
|
id: import("zod").ZodString;
|
397
410
|
name: import("zod").ZodString;
|
411
|
+
description: import("zod").ZodString;
|
398
412
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
399
413
|
created_at: import("zod").ZodString;
|
400
414
|
updated_at: import("zod").ZodString;
|
401
415
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
416
|
+
description: string;
|
402
417
|
id: string;
|
403
418
|
name: string;
|
404
419
|
created_at: string;
|
405
420
|
updated_at: string;
|
406
421
|
administratorId: string | null;
|
407
422
|
}, {
|
423
|
+
description: string;
|
408
424
|
id: string;
|
409
425
|
name: string;
|
410
426
|
created_at: string;
|
@@ -483,6 +499,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
483
499
|
city: string;
|
484
500
|
} | null;
|
485
501
|
productionsAdministrated: {
|
502
|
+
description: string;
|
486
503
|
id: string;
|
487
504
|
name: string;
|
488
505
|
created_at: string;
|
@@ -490,6 +507,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
490
507
|
administratorId: string | null;
|
491
508
|
}[];
|
492
509
|
productionsParticipated: {
|
510
|
+
description: string;
|
493
511
|
id: string;
|
494
512
|
name: string;
|
495
513
|
created_at: string;
|
@@ -549,6 +567,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
549
567
|
city: string;
|
550
568
|
} | null;
|
551
569
|
productionsAdministrated: {
|
570
|
+
description: string;
|
552
571
|
id: string;
|
553
572
|
name: string;
|
554
573
|
created_at: string;
|
@@ -556,6 +575,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
556
575
|
administratorId: string | null;
|
557
576
|
}[];
|
558
577
|
productionsParticipated: {
|
578
|
+
description: string;
|
559
579
|
id: string;
|
560
580
|
name: string;
|
561
581
|
created_at: string;
|
@@ -1,23 +1,29 @@
|
|
1
1
|
export declare const createProductionSchema: import("zod").ZodObject<Pick<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
name: import("zod").ZodString;
|
4
|
+
description: import("zod").ZodString;
|
4
5
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
5
6
|
created_at: import("zod").ZodDate;
|
6
7
|
updated_at: import("zod").ZodDate;
|
7
|
-
}, "name" | "administratorId">, "strip", import("zod").ZodTypeAny, {
|
8
|
+
}, "description" | "name" | "administratorId">, "strip", import("zod").ZodTypeAny, {
|
9
|
+
description: string;
|
8
10
|
name: string;
|
9
11
|
administratorId: string | null;
|
10
12
|
}, {
|
13
|
+
description: string;
|
11
14
|
name: string;
|
12
15
|
administratorId: string | null;
|
13
16
|
}>;
|
14
17
|
declare const CreateProductionDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
18
|
+
description: import("zod").ZodString;
|
15
19
|
name: import("zod").ZodString;
|
16
20
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
17
21
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
22
|
+
description: string;
|
18
23
|
name: string;
|
19
24
|
administratorId: string | null;
|
20
25
|
}, {
|
26
|
+
description: string;
|
21
27
|
name: string;
|
22
28
|
administratorId: string | null;
|
23
29
|
}>>;
|
@@ -26,6 +32,7 @@ export declare class CreateProductionDto extends CreateProductionDto_base {
|
|
26
32
|
export declare const createProductionResponseSchema: import("zod").ZodObject<Pick<{
|
27
33
|
id: import("zod").ZodString;
|
28
34
|
name: import("zod").ZodString;
|
35
|
+
description: import("zod").ZodString;
|
29
36
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
30
37
|
created_at: import("zod").ZodDate;
|
31
38
|
updated_at: import("zod").ZodDate;
|
@@ -5,6 +5,7 @@ const production_dto_1 = require("./production.dto");
|
|
5
5
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
6
|
exports.createProductionSchema = production_dto_1.productionSchema.pick({
|
7
7
|
name: true,
|
8
|
+
description: true,
|
8
9
|
administratorId: true,
|
9
10
|
});
|
10
11
|
class CreateProductionDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createProductionSchema) {
|
@@ -1,16 +1,19 @@
|
|
1
1
|
export declare const deleteProductionResponseSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
name: import("zod").ZodString;
|
4
|
+
description: import("zod").ZodString;
|
4
5
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
5
6
|
created_at: import("zod").ZodDate;
|
6
7
|
updated_at: import("zod").ZodDate;
|
7
8
|
}, "strip", import("zod").ZodTypeAny, {
|
9
|
+
description: string;
|
8
10
|
id: string;
|
9
11
|
name: string;
|
10
12
|
created_at: Date;
|
11
13
|
updated_at: Date;
|
12
14
|
administratorId: string | null;
|
13
15
|
}, {
|
16
|
+
description: string;
|
14
17
|
id: string;
|
15
18
|
name: string;
|
16
19
|
created_at: Date;
|
@@ -20,16 +23,19 @@ export declare const deleteProductionResponseSchema: import("zod").ZodObject<{
|
|
20
23
|
declare const DeleteProductionResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
21
24
|
id: import("zod").ZodString;
|
22
25
|
name: import("zod").ZodString;
|
26
|
+
description: import("zod").ZodString;
|
23
27
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
24
28
|
created_at: import("zod").ZodString;
|
25
29
|
updated_at: import("zod").ZodString;
|
26
30
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
31
|
+
description: string;
|
27
32
|
id: string;
|
28
33
|
name: string;
|
29
34
|
created_at: string;
|
30
35
|
updated_at: string;
|
31
36
|
administratorId: string | null;
|
32
37
|
}, {
|
38
|
+
description: string;
|
33
39
|
id: string;
|
34
40
|
name: string;
|
35
41
|
created_at: string;
|
@@ -3,6 +3,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
3
3
|
productions: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
4
4
|
id: z.ZodString;
|
5
5
|
name: z.ZodString;
|
6
|
+
description: z.ZodString;
|
6
7
|
administratorId: z.ZodNullable<z.ZodString>;
|
7
8
|
created_at: z.ZodDate;
|
8
9
|
updated_at: z.ZodDate;
|
@@ -93,6 +94,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
93
94
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
94
95
|
}>>;
|
95
96
|
}>, "strip", z.ZodTypeAny, {
|
97
|
+
description: string;
|
96
98
|
id: string;
|
97
99
|
name: string;
|
98
100
|
created_at: Date;
|
@@ -126,6 +128,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
126
128
|
movedToTrashDate: Date | null;
|
127
129
|
} | null;
|
128
130
|
}, {
|
131
|
+
description: string;
|
129
132
|
id: string;
|
130
133
|
name: string;
|
131
134
|
created_at: Date;
|
@@ -161,6 +164,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
161
164
|
}>, "many">;
|
162
165
|
}, "strip", z.ZodTypeAny, {
|
163
166
|
productions: {
|
167
|
+
description: string;
|
164
168
|
id: string;
|
165
169
|
name: string;
|
166
170
|
created_at: Date;
|
@@ -196,6 +200,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
196
200
|
}[];
|
197
201
|
}, {
|
198
202
|
productions: {
|
203
|
+
description: string;
|
199
204
|
id: string;
|
200
205
|
name: string;
|
201
206
|
created_at: Date;
|
@@ -234,6 +239,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
234
239
|
productions: z.ZodArray<z.ZodObject<{
|
235
240
|
id: z.ZodString;
|
236
241
|
name: z.ZodString;
|
242
|
+
description: z.ZodString;
|
237
243
|
administratorId: z.ZodNullable<z.ZodString>;
|
238
244
|
created_at: z.ZodString;
|
239
245
|
updated_at: z.ZodString;
|
@@ -323,6 +329,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
323
329
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
324
330
|
}>>;
|
325
331
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
332
|
+
description: string;
|
326
333
|
id: string;
|
327
334
|
name: string;
|
328
335
|
created_at: string;
|
@@ -356,6 +363,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
356
363
|
movedToTrashDate: string | null;
|
357
364
|
} | null;
|
358
365
|
}, {
|
366
|
+
description: string;
|
359
367
|
id: string;
|
360
368
|
name: string;
|
361
369
|
created_at: string;
|
@@ -391,6 +399,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
391
399
|
}>, "many">;
|
392
400
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
393
401
|
productions: {
|
402
|
+
description: string;
|
394
403
|
id: string;
|
395
404
|
name: string;
|
396
405
|
created_at: string;
|
@@ -426,6 +435,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
426
435
|
}[];
|
427
436
|
}, {
|
428
437
|
productions: {
|
438
|
+
description: string;
|
429
439
|
id: string;
|
430
440
|
name: string;
|
431
441
|
created_at: string;
|
@@ -2,16 +2,19 @@ import z from 'zod';
|
|
2
2
|
export declare const productionSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
4
|
name: z.ZodString;
|
5
|
+
description: z.ZodString;
|
5
6
|
administratorId: z.ZodNullable<z.ZodString>;
|
6
7
|
created_at: z.ZodDate;
|
7
8
|
updated_at: z.ZodDate;
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
10
|
+
description: string;
|
9
11
|
id: string;
|
10
12
|
name: string;
|
11
13
|
created_at: Date;
|
12
14
|
updated_at: Date;
|
13
15
|
administratorId: string | null;
|
14
16
|
}, {
|
17
|
+
description: string;
|
15
18
|
id: string;
|
16
19
|
name: string;
|
17
20
|
created_at: Date;
|
@@ -14,6 +14,9 @@ exports.productionSchema = zod_1.default.object({
|
|
14
14
|
name: zod_1.default.string().min(1, {
|
15
15
|
message: (0, translate_1.translate)('model.production.name.min'),
|
16
16
|
}),
|
17
|
+
description: zod_1.default.string().min(1, {
|
18
|
+
message: (0, translate_1.translate)('model.production.description.min'),
|
19
|
+
}),
|
17
20
|
administratorId: profile_schema_1.profileSchema.shape.id.nullable(),
|
18
21
|
created_at: zod_1.default.date(),
|
19
22
|
updated_at: zod_1.default.date(),
|
@@ -1,20 +1,26 @@
|
|
1
1
|
export declare const updateProductionSchema: import("zod").ZodObject<{
|
2
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
2
3
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
3
4
|
administratorId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
4
5
|
}, "strip", import("zod").ZodTypeAny, {
|
6
|
+
description?: string | undefined;
|
5
7
|
name?: string | undefined;
|
6
8
|
administratorId?: string | null | undefined;
|
7
9
|
}, {
|
10
|
+
description?: string | undefined;
|
8
11
|
name?: string | undefined;
|
9
12
|
administratorId?: string | null | undefined;
|
10
13
|
}>;
|
11
14
|
declare const UpdateProductionDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
15
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
12
16
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
13
17
|
administratorId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
14
18
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
19
|
+
description?: string | undefined;
|
15
20
|
name?: string | undefined;
|
16
21
|
administratorId?: string | null | undefined;
|
17
22
|
}, {
|
23
|
+
description?: string | undefined;
|
18
24
|
name?: string | undefined;
|
19
25
|
administratorId?: string | null | undefined;
|
20
26
|
}>>;
|
@@ -23,16 +29,19 @@ export declare class UpdateProductionDto extends UpdateProductionDto_base {
|
|
23
29
|
export declare const updateProductionResponseSchema: import("zod").ZodObject<{
|
24
30
|
id: import("zod").ZodString;
|
25
31
|
name: import("zod").ZodString;
|
32
|
+
description: import("zod").ZodString;
|
26
33
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
27
34
|
created_at: import("zod").ZodDate;
|
28
35
|
updated_at: import("zod").ZodDate;
|
29
36
|
}, "strip", import("zod").ZodTypeAny, {
|
37
|
+
description: string;
|
30
38
|
id: string;
|
31
39
|
name: string;
|
32
40
|
created_at: Date;
|
33
41
|
updated_at: Date;
|
34
42
|
administratorId: string | null;
|
35
43
|
}, {
|
44
|
+
description: string;
|
36
45
|
id: string;
|
37
46
|
name: string;
|
38
47
|
created_at: Date;
|
@@ -42,16 +51,19 @@ export declare const updateProductionResponseSchema: import("zod").ZodObject<{
|
|
42
51
|
declare const UpdateProductionResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
43
52
|
id: import("zod").ZodString;
|
44
53
|
name: import("zod").ZodString;
|
54
|
+
description: import("zod").ZodString;
|
45
55
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
46
56
|
created_at: import("zod").ZodString;
|
47
57
|
updated_at: import("zod").ZodString;
|
48
58
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
59
|
+
description: string;
|
49
60
|
id: string;
|
50
61
|
name: string;
|
51
62
|
created_at: string;
|
52
63
|
updated_at: string;
|
53
64
|
administratorId: string | null;
|
54
65
|
}, {
|
66
|
+
description: string;
|
55
67
|
id: string;
|
56
68
|
name: string;
|
57
69
|
created_at: string;
|
package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts
CHANGED
@@ -15,16 +15,19 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
15
15
|
production: z.ZodObject<{
|
16
16
|
id: z.ZodString;
|
17
17
|
name: z.ZodString;
|
18
|
+
description: z.ZodString;
|
18
19
|
administratorId: z.ZodNullable<z.ZodString>;
|
19
20
|
created_at: z.ZodDate;
|
20
21
|
updated_at: z.ZodDate;
|
21
22
|
}, "strip", z.ZodTypeAny, {
|
23
|
+
description: string;
|
22
24
|
id: string;
|
23
25
|
name: string;
|
24
26
|
created_at: Date;
|
25
27
|
updated_at: Date;
|
26
28
|
administratorId: string | null;
|
27
29
|
}, {
|
30
|
+
description: string;
|
28
31
|
id: string;
|
29
32
|
name: string;
|
30
33
|
created_at: Date;
|
@@ -145,6 +148,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
145
148
|
movedToTrashDate: Date | null;
|
146
149
|
};
|
147
150
|
production: {
|
151
|
+
description: string;
|
148
152
|
id: string;
|
149
153
|
name: string;
|
150
154
|
created_at: Date;
|
@@ -186,6 +190,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
186
190
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
187
191
|
};
|
188
192
|
production: {
|
193
|
+
description: string;
|
189
194
|
id: string;
|
190
195
|
name: string;
|
191
196
|
created_at: Date;
|
@@ -229,6 +234,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
229
234
|
movedToTrashDate: Date | null;
|
230
235
|
};
|
231
236
|
production: {
|
237
|
+
description: string;
|
232
238
|
id: string;
|
233
239
|
name: string;
|
234
240
|
created_at: Date;
|
@@ -272,6 +278,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
272
278
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
273
279
|
};
|
274
280
|
production: {
|
281
|
+
description: string;
|
275
282
|
id: string;
|
276
283
|
name: string;
|
277
284
|
created_at: Date;
|
@@ -301,16 +308,19 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
301
308
|
production: z.ZodObject<{
|
302
309
|
id: z.ZodString;
|
303
310
|
name: z.ZodString;
|
311
|
+
description: z.ZodString;
|
304
312
|
administratorId: z.ZodNullable<z.ZodString>;
|
305
313
|
created_at: z.ZodString;
|
306
314
|
updated_at: z.ZodString;
|
307
315
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
316
|
+
description: string;
|
308
317
|
id: string;
|
309
318
|
name: string;
|
310
319
|
created_at: string;
|
311
320
|
updated_at: string;
|
312
321
|
administratorId: string | null;
|
313
322
|
}, {
|
323
|
+
description: string;
|
314
324
|
id: string;
|
315
325
|
name: string;
|
316
326
|
created_at: string;
|
@@ -431,6 +441,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
431
441
|
movedToTrashDate: string | null;
|
432
442
|
};
|
433
443
|
production: {
|
444
|
+
description: string;
|
434
445
|
id: string;
|
435
446
|
name: string;
|
436
447
|
created_at: string;
|
@@ -472,6 +483,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
472
483
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
473
484
|
};
|
474
485
|
production: {
|
486
|
+
description: string;
|
475
487
|
id: string;
|
476
488
|
name: string;
|
477
489
|
created_at: string;
|
@@ -515,6 +527,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
515
527
|
movedToTrashDate: string | null;
|
516
528
|
};
|
517
529
|
production: {
|
530
|
+
description: string;
|
518
531
|
id: string;
|
519
532
|
name: string;
|
520
533
|
created_at: string;
|
@@ -558,6 +571,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
558
571
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
559
572
|
};
|
560
573
|
production: {
|
574
|
+
description: string;
|
561
575
|
id: string;
|
562
576
|
name: string;
|
563
577
|
created_at: string;
|
package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts
CHANGED
@@ -13,16 +13,19 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
13
13
|
production: import("zod").ZodObject<{
|
14
14
|
id: import("zod").ZodString;
|
15
15
|
name: import("zod").ZodString;
|
16
|
+
description: import("zod").ZodString;
|
16
17
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
17
18
|
created_at: import("zod").ZodDate;
|
18
19
|
updated_at: import("zod").ZodDate;
|
19
20
|
}, "strip", import("zod").ZodTypeAny, {
|
21
|
+
description: string;
|
20
22
|
id: string;
|
21
23
|
name: string;
|
22
24
|
created_at: Date;
|
23
25
|
updated_at: Date;
|
24
26
|
administratorId: string | null;
|
25
27
|
}, {
|
28
|
+
description: string;
|
26
29
|
id: string;
|
27
30
|
name: string;
|
28
31
|
created_at: Date;
|
@@ -143,6 +146,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
143
146
|
movedToTrashDate: Date | null;
|
144
147
|
};
|
145
148
|
production: {
|
149
|
+
description: string;
|
146
150
|
id: string;
|
147
151
|
name: string;
|
148
152
|
created_at: Date;
|
@@ -184,6 +188,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
184
188
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
185
189
|
};
|
186
190
|
production: {
|
191
|
+
description: string;
|
187
192
|
id: string;
|
188
193
|
name: string;
|
189
194
|
created_at: Date;
|
@@ -211,16 +216,19 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
211
216
|
production: import("zod").ZodObject<{
|
212
217
|
id: import("zod").ZodString;
|
213
218
|
name: import("zod").ZodString;
|
219
|
+
description: import("zod").ZodString;
|
214
220
|
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
215
221
|
created_at: import("zod").ZodString;
|
216
222
|
updated_at: import("zod").ZodString;
|
217
223
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
224
|
+
description: string;
|
218
225
|
id: string;
|
219
226
|
name: string;
|
220
227
|
created_at: string;
|
221
228
|
updated_at: string;
|
222
229
|
administratorId: string | null;
|
223
230
|
}, {
|
231
|
+
description: string;
|
224
232
|
id: string;
|
225
233
|
name: string;
|
226
234
|
created_at: string;
|
@@ -341,6 +349,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
341
349
|
movedToTrashDate: string | null;
|
342
350
|
};
|
343
351
|
production: {
|
352
|
+
description: string;
|
344
353
|
id: string;
|
345
354
|
name: string;
|
346
355
|
created_at: string;
|
@@ -382,6 +391,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
382
391
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
383
392
|
};
|
384
393
|
production: {
|
394
|
+
description: string;
|
385
395
|
id: string;
|
386
396
|
name: string;
|
387
397
|
created_at: string;
|