expo-backend-types 0.53.0-EXPO-360-Tato-Bores.3 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.1

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,70 +86,6 @@ 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">;
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">;
153
89
  }>, "strip", import("zod").ZodTypeAny, {
154
90
  id: string;
155
91
  username: string | null;
@@ -194,28 +130,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
194
130
  country: string;
195
131
  city: string;
196
132
  } | null;
197
- productionsAdministrated: {
198
- id: string;
199
- name: string;
200
- created_at: Date;
201
- updated_at: Date;
202
- administratorId: string | null;
203
- }[];
204
- productionsParticipated: {
205
- id: string;
206
- name: string;
207
- created_at: Date;
208
- updated_at: Date;
209
- administratorId: string | null;
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
- }[];
219
133
  }, {
220
134
  id: string;
221
135
  username: string | null;
@@ -259,28 +173,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
259
173
  country: string;
260
174
  city: string;
261
175
  } | null;
262
- productionsAdministrated: {
263
- id: string;
264
- name: string;
265
- created_at: Date;
266
- updated_at: Date;
267
- administratorId: string | null;
268
- }[];
269
- productionsParticipated: {
270
- id: string;
271
- name: string;
272
- created_at: Date;
273
- updated_at: Date;
274
- administratorId: string | null;
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
- }[];
284
176
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
285
177
  }>;
286
178
  declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
@@ -369,70 +261,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
369
261
  country: string;
370
262
  city: string;
371
263
  }>>;
372
- productionsAdministrated: import("zod").ZodArray<import("zod").ZodObject<{
373
- id: import("zod").ZodString;
374
- name: import("zod").ZodString;
375
- administratorId: import("zod").ZodNullable<import("zod").ZodString>;
376
- created_at: import("zod").ZodString;
377
- updated_at: import("zod").ZodString;
378
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
379
- id: string;
380
- name: string;
381
- created_at: string;
382
- updated_at: string;
383
- administratorId: string | null;
384
- }, {
385
- id: string;
386
- name: string;
387
- created_at: string;
388
- updated_at: string;
389
- administratorId: string | null;
390
- }>, "many">;
391
- productionsParticipated: import("zod").ZodArray<import("zod").ZodObject<{
392
- id: import("zod").ZodString;
393
- name: import("zod").ZodString;
394
- administratorId: import("zod").ZodNullable<import("zod").ZodString>;
395
- created_at: import("zod").ZodString;
396
- updated_at: import("zod").ZodString;
397
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
398
- id: string;
399
- name: string;
400
- created_at: string;
401
- updated_at: string;
402
- administratorId: string | null;
403
- }, {
404
- id: string;
405
- name: string;
406
- created_at: string;
407
- updated_at: string;
408
- administratorId: string | null;
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">;
436
264
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
437
265
  id: string;
438
266
  username: string | null;
@@ -477,28 +305,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
477
305
  country: string;
478
306
  city: string;
479
307
  } | null;
480
- productionsAdministrated: {
481
- id: string;
482
- name: string;
483
- created_at: string;
484
- updated_at: string;
485
- administratorId: string | null;
486
- }[];
487
- productionsParticipated: {
488
- id: string;
489
- name: string;
490
- created_at: string;
491
- updated_at: string;
492
- administratorId: string | null;
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
- }[];
502
308
  }, {
503
309
  id: string;
504
310
  username: string | null;
@@ -542,28 +348,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
542
348
  country: string;
543
349
  city: string;
544
350
  } | null;
545
- productionsAdministrated: {
546
- id: string;
547
- name: string;
548
- created_at: string;
549
- updated_at: string;
550
- administratorId: string | null;
551
- }[];
552
- productionsParticipated: {
553
- id: string;
554
- name: string;
555
- created_at: string;
556
- updated_at: string;
557
- administratorId: string | null;
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
- }[];
567
351
  role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
568
352
  }>>;
569
353
  export declare class GetMiExpoMeResponseDto extends GetMiExpoMeResponseDto_base {
@@ -1,8 +1,6 @@
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");
6
4
  const location_schema_1 = require("../../schema/location.schema");
7
5
  const profile_schema_1 = require("../../schema/profile.schema");
8
6
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
@@ -11,9 +9,6 @@ exports.getMiExpoMeResponseSchema = profile_schema_1.profileSchema
11
9
  .extend({
12
10
  residenceLocation: location_schema_1.locationSchema.nullable(),
13
11
  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(),
17
12
  });
18
13
  class GetMiExpoMeResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getMiExpoMeResponseSchema) {
19
14
  }
@@ -3823,28 +3823,6 @@ 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
- }[];
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
- }[];
3848
3826
  };
3849
3827
  UpdateMiExpoMeDto: {
3850
3828
  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-360-Tato-Bores.3",
3
+ "version": "0.53.0-EXPO-366-EB-Schema-codigo-referido.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,