expo-backend-types 0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.2 → 0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.4

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.
@@ -124,6 +124,32 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
124
124
  updated_at: Date;
125
125
  administratorId: string | null;
126
126
  }>, "many">;
127
+ productionRequestsSent: import("zod").ZodArray<import("zod").ZodObject<{
128
+ id: import("zod").ZodString;
129
+ productionId: import("zod").ZodString;
130
+ profileId: import("zod").ZodString;
131
+ status: import("zod").ZodNativeEnum<{
132
+ APPROVED: "APPROVED";
133
+ PENDING: "PENDING";
134
+ REJECTED: "REJECTED";
135
+ }>;
136
+ created_at: import("zod").ZodDate;
137
+ updated_at: import("zod").ZodDate;
138
+ }, "strip", import("zod").ZodTypeAny, {
139
+ id: string;
140
+ status: "APPROVED" | "PENDING" | "REJECTED";
141
+ created_at: Date;
142
+ updated_at: Date;
143
+ profileId: string;
144
+ productionId: string;
145
+ }, {
146
+ id: string;
147
+ status: "APPROVED" | "PENDING" | "REJECTED";
148
+ created_at: Date;
149
+ updated_at: Date;
150
+ profileId: string;
151
+ productionId: string;
152
+ }>, "many">;
127
153
  }>, "strip", import("zod").ZodTypeAny, {
128
154
  id: string;
129
155
  username: string | null;
@@ -182,6 +208,14 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
182
208
  updated_at: Date;
183
209
  administratorId: string | null;
184
210
  }[];
211
+ productionRequestsSent: {
212
+ id: string;
213
+ status: "APPROVED" | "PENDING" | "REJECTED";
214
+ created_at: Date;
215
+ updated_at: Date;
216
+ profileId: string;
217
+ productionId: string;
218
+ }[];
185
219
  }, {
186
220
  id: string;
187
221
  username: string | null;
@@ -239,6 +273,14 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
239
273
  updated_at: Date;
240
274
  administratorId: string | null;
241
275
  }[];
276
+ productionRequestsSent: {
277
+ id: string;
278
+ status: "APPROVED" | "PENDING" | "REJECTED";
279
+ created_at: Date;
280
+ updated_at: Date;
281
+ profileId: string;
282
+ productionId: string;
283
+ }[];
242
284
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
243
285
  }>;
244
286
  declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -365,6 +407,32 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
365
407
  updated_at: string;
366
408
  administratorId: string | null;
367
409
  }>, "many">;
410
+ productionRequestsSent: import("zod").ZodArray<import("zod").ZodObject<{
411
+ id: import("zod").ZodString;
412
+ productionId: import("zod").ZodString;
413
+ profileId: import("zod").ZodString;
414
+ status: import("zod").ZodNativeEnum<{
415
+ APPROVED: "APPROVED";
416
+ PENDING: "PENDING";
417
+ REJECTED: "REJECTED";
418
+ }>;
419
+ created_at: import("zod").ZodString;
420
+ updated_at: import("zod").ZodString;
421
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
422
+ id: string;
423
+ status: "APPROVED" | "PENDING" | "REJECTED";
424
+ created_at: string;
425
+ updated_at: string;
426
+ profileId: string;
427
+ productionId: string;
428
+ }, {
429
+ id: string;
430
+ status: "APPROVED" | "PENDING" | "REJECTED";
431
+ created_at: string;
432
+ updated_at: string;
433
+ profileId: string;
434
+ productionId: string;
435
+ }>, "many">;
368
436
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
369
437
  id: string;
370
438
  username: string | null;
@@ -423,6 +491,14 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
423
491
  updated_at: string;
424
492
  administratorId: string | null;
425
493
  }[];
494
+ productionRequestsSent: {
495
+ id: string;
496
+ status: "APPROVED" | "PENDING" | "REJECTED";
497
+ created_at: string;
498
+ updated_at: string;
499
+ profileId: string;
500
+ productionId: string;
501
+ }[];
426
502
  }, {
427
503
  id: string;
428
504
  username: string | null;
@@ -480,6 +556,14 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
480
556
  updated_at: string;
481
557
  administratorId: string | null;
482
558
  }[];
559
+ productionRequestsSent: {
560
+ id: string;
561
+ status: "APPROVED" | "PENDING" | "REJECTED";
562
+ created_at: string;
563
+ updated_at: string;
564
+ profileId: string;
565
+ productionId: string;
566
+ }[];
483
567
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
484
568
  }>>;
485
569
  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_affiliation_request_dto_1 = require("../../production-affiliation-request/dto/production-affiliation-request.dto");
4
5
  const production_dto_1 = require("../../production/dto/production.dto");
5
6
  const location_schema_1 = require("../../schema/location.schema");
6
7
  const profile_schema_1 = require("../../schema/profile.schema");
@@ -12,6 +13,7 @@ exports.getMiExpoMeResponseSchema = profile_schema_1.profileSchema
12
13
  birthLocation: location_schema_1.locationSchema.nullable(),
13
14
  productionsAdministrated: production_dto_1.productionSchema.array(),
14
15
  productionsParticipated: production_dto_1.productionSchema.array(),
16
+ productionRequestsSent: production_affiliation_request_dto_1.productionAffiliationRequestSchema.array(),
15
17
  });
16
18
  class GetMiExpoMeResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getMiExpoMeResponseSchema) {
17
19
  }
@@ -87,44 +87,6 @@ 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">;
128
90
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
129
91
  id: z.ZodString;
130
92
  name: z.ZodString;
@@ -237,20 +199,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
237
199
  country: string;
238
200
  city: string;
239
201
  } | 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
- }[];
254
202
  }, {
255
203
  id: string;
256
204
  username: string | null;
@@ -307,20 +255,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
307
255
  country: string;
308
256
  city: string;
309
257
  } | 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
- }[];
324
258
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
325
259
  }>;
326
260
  declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -409,44 +343,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
409
343
  country: string;
410
344
  city: string;
411
345
  }>>;
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">;
450
346
  tags: z.ZodArray<z.ZodObject<{
451
347
  id: z.ZodString;
452
348
  name: z.ZodString;
@@ -555,20 +451,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
555
451
  country: string;
556
452
  city: string;
557
453
  } | 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
- }[];
572
454
  }, {
573
455
  id: string;
574
456
  username: string | null;
@@ -625,20 +507,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
625
507
  country: string;
626
508
  city: string;
627
509
  } | 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
- }[];
642
510
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
643
511
  }>>;
644
512
  export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
@@ -4,7 +4,6 @@ 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");
8
7
  const location_schema_1 = require("../../schema/location.schema");
9
8
  const profile_schema_1 = require("../../schema/profile.schema");
10
9
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
@@ -16,8 +15,6 @@ exports.findByIdProfileResponseSchema = profile_schema_1.profileSchema
16
15
  .merge(zod_1.default.object({
17
16
  residenceLocation: location_schema_1.locationSchema.nullable(),
18
17
  birthLocation: location_schema_1.locationSchema.nullable(),
19
- productionsAdministrated: production_dto_1.productionSchema.array(),
20
- productionsParticipated: production_dto_1.productionSchema.array(),
21
18
  tags: zod_1.default.array(tag_dto_1.tagSchema.merge(zod_1.default.object({
22
19
  group: tag_group_dto_1.tagGroupSchema.pick({
23
20
  id: true,
@@ -3067,20 +3067,6 @@ 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
- }[];
3084
3070
  tags: {
3085
3071
  id: string;
3086
3072
  name: string;
@@ -3851,6 +3837,14 @@ export interface components {
3851
3837
  created_at: string;
3852
3838
  updated_at: string;
3853
3839
  }[];
3840
+ productionRequestsSent: {
3841
+ id: string;
3842
+ productionId: string;
3843
+ profileId: string;
3844
+ status: "APPROVED" | "PENDING" | "REJECTED";
3845
+ created_at: string;
3846
+ updated_at: string;
3847
+ }[];
3854
3848
  };
3855
3849
  UpdateMiExpoMeDto: {
3856
3850
  birthDate: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.2",
3
+ "version": "0.53.0-EXPO-362-ExpoBackend-Agregar-campos-a-rutas-necesarias.4",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,