expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.2
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/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -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/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -0
- package/dist/types/prisma-schema/edge.js +5 -3
- package/dist/types/prisma-schema/index-browser.js +2 -0
- package/dist/types/prisma-schema/index.d.ts +118 -2
- package/dist/types/prisma-schema/index.js +5 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +4 -0
- package/dist/types/prisma-schema/wasm.js +2 -0
- package/dist/types/schema.d.ts +20 -0
- package/package.json +1 -1
@@ -29,6 +29,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
29
29
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
30
30
|
created_at: import("zod").ZodDate;
|
31
31
|
updated_at: import("zod").ZodDate;
|
32
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
32
33
|
}, "password">, {
|
33
34
|
residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
|
34
35
|
id: import("zod").ZodString;
|
@@ -110,6 +111,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
110
111
|
residenceLocationId: string | null;
|
111
112
|
isInTrash: boolean;
|
112
113
|
movedToTrashDate: Date | null;
|
114
|
+
referralCode: string | null;
|
113
115
|
birthLocation: {
|
114
116
|
id: string;
|
115
117
|
latitude: number;
|
@@ -153,6 +155,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
153
155
|
residenceLocationId: string | null;
|
154
156
|
isInTrash: boolean;
|
155
157
|
movedToTrashDate: Date | null;
|
158
|
+
referralCode: string | null;
|
156
159
|
birthLocation: {
|
157
160
|
id: string;
|
158
161
|
latitude: number;
|
@@ -205,6 +208,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
205
208
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
206
209
|
isInTrash: import("zod").ZodBoolean;
|
207
210
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
211
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
208
212
|
residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
|
209
213
|
id: import("zod").ZodString;
|
210
214
|
latitude: import("zod").ZodNumber;
|
@@ -285,6 +289,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
285
289
|
residenceLocationId: string | null;
|
286
290
|
isInTrash: boolean;
|
287
291
|
movedToTrashDate: string | null;
|
292
|
+
referralCode: string | null;
|
288
293
|
birthLocation: {
|
289
294
|
id: string;
|
290
295
|
latitude: number;
|
@@ -328,6 +333,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
328
333
|
residenceLocationId: string | null;
|
329
334
|
isInTrash: boolean;
|
330
335
|
movedToTrashDate: string | null;
|
336
|
+
referralCode: string | null;
|
331
337
|
birthLocation: {
|
332
338
|
id: string;
|
333
339
|
latitude: number;
|
@@ -60,6 +60,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
60
60
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
61
61
|
created_at: z.ZodDate;
|
62
62
|
updated_at: z.ZodDate;
|
63
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
63
64
|
}, "password">, "strip", z.ZodTypeAny, {
|
64
65
|
id: string;
|
65
66
|
username: string | null;
|
@@ -84,6 +85,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
84
85
|
residenceLocationId: string | null;
|
85
86
|
isInTrash: boolean;
|
86
87
|
movedToTrashDate: Date | null;
|
88
|
+
referralCode: string | null;
|
87
89
|
}, {
|
88
90
|
id: string;
|
89
91
|
username: string | null;
|
@@ -107,6 +109,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
107
109
|
residenceLocationId: string | null;
|
108
110
|
isInTrash: boolean;
|
109
111
|
movedToTrashDate: Date | null;
|
112
|
+
referralCode: string | null;
|
110
113
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
111
114
|
}>;
|
112
115
|
}, "strip", z.ZodTypeAny, {
|
@@ -134,6 +137,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
134
137
|
residenceLocationId: string | null;
|
135
138
|
isInTrash: boolean;
|
136
139
|
movedToTrashDate: Date | null;
|
140
|
+
referralCode: string | null;
|
137
141
|
};
|
138
142
|
tokens: {
|
139
143
|
accessToken: string;
|
@@ -164,6 +168,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
164
168
|
residenceLocationId: string | null;
|
165
169
|
isInTrash: boolean;
|
166
170
|
movedToTrashDate: Date | null;
|
171
|
+
referralCode: string | null;
|
167
172
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
168
173
|
};
|
169
174
|
tokens: {
|
@@ -216,6 +221,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
216
221
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
217
222
|
isInTrash: z.ZodBoolean;
|
218
223
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
224
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
219
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
220
226
|
id: string;
|
221
227
|
username: string | null;
|
@@ -240,6 +246,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
240
246
|
residenceLocationId: string | null;
|
241
247
|
isInTrash: boolean;
|
242
248
|
movedToTrashDate: string | null;
|
249
|
+
referralCode: string | null;
|
243
250
|
}, {
|
244
251
|
id: string;
|
245
252
|
username: string | null;
|
@@ -263,6 +270,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
263
270
|
residenceLocationId: string | null;
|
264
271
|
isInTrash: boolean;
|
265
272
|
movedToTrashDate: string | null;
|
273
|
+
referralCode: string | null;
|
266
274
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
267
275
|
}>;
|
268
276
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -290,6 +298,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
290
298
|
residenceLocationId: string | null;
|
291
299
|
isInTrash: boolean;
|
292
300
|
movedToTrashDate: string | null;
|
301
|
+
referralCode: string | null;
|
293
302
|
};
|
294
303
|
tokens: {
|
295
304
|
accessToken: string;
|
@@ -320,6 +329,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
320
329
|
residenceLocationId: string | null;
|
321
330
|
isInTrash: boolean;
|
322
331
|
movedToTrashDate: string | null;
|
332
|
+
referralCode: string | null;
|
323
333
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
324
334
|
};
|
325
335
|
tokens: {
|
@@ -65,6 +65,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
65
65
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
66
66
|
created_at: z.ZodDate;
|
67
67
|
updated_at: z.ZodDate;
|
68
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
68
69
|
}, "password">, "strip", z.ZodTypeAny, {
|
69
70
|
id: string;
|
70
71
|
username: string | null;
|
@@ -89,6 +90,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
89
90
|
residenceLocationId: string | null;
|
90
91
|
isInTrash: boolean;
|
91
92
|
movedToTrashDate: Date | null;
|
93
|
+
referralCode: string | null;
|
92
94
|
}, {
|
93
95
|
id: string;
|
94
96
|
username: string | null;
|
@@ -112,6 +114,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
112
114
|
residenceLocationId: string | null;
|
113
115
|
isInTrash: boolean;
|
114
116
|
movedToTrashDate: Date | null;
|
117
|
+
referralCode: string | null;
|
115
118
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
116
119
|
}>;
|
117
120
|
backendTokens: z.ZodObject<{
|
@@ -152,6 +155,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
152
155
|
residenceLocationId: string | null;
|
153
156
|
isInTrash: boolean;
|
154
157
|
movedToTrashDate: Date | null;
|
158
|
+
referralCode: string | null;
|
155
159
|
};
|
156
160
|
backendTokens: {
|
157
161
|
accessToken: string;
|
@@ -182,6 +186,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
182
186
|
residenceLocationId: string | null;
|
183
187
|
isInTrash: boolean;
|
184
188
|
movedToTrashDate: Date | null;
|
189
|
+
referralCode: string | null;
|
185
190
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
186
191
|
};
|
187
192
|
backendTokens: {
|
@@ -221,6 +226,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
221
226
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
222
227
|
isInTrash: z.ZodBoolean;
|
223
228
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
229
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
224
230
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
225
231
|
id: string;
|
226
232
|
username: string | null;
|
@@ -245,6 +251,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
245
251
|
residenceLocationId: string | null;
|
246
252
|
isInTrash: boolean;
|
247
253
|
movedToTrashDate: string | null;
|
254
|
+
referralCode: string | null;
|
248
255
|
}, {
|
249
256
|
id: string;
|
250
257
|
username: string | null;
|
@@ -268,6 +275,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
268
275
|
residenceLocationId: string | null;
|
269
276
|
isInTrash: boolean;
|
270
277
|
movedToTrashDate: string | null;
|
278
|
+
referralCode: string | null;
|
271
279
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
272
280
|
}>;
|
273
281
|
backendTokens: z.ZodObject<{
|
@@ -308,6 +316,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
308
316
|
residenceLocationId: string | null;
|
309
317
|
isInTrash: boolean;
|
310
318
|
movedToTrashDate: string | null;
|
319
|
+
referralCode: string | null;
|
311
320
|
};
|
312
321
|
backendTokens: {
|
313
322
|
accessToken: string;
|
@@ -338,6 +347,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
338
347
|
residenceLocationId: string | null;
|
339
348
|
isInTrash: boolean;
|
340
349
|
movedToTrashDate: string | null;
|
350
|
+
referralCode: string | null;
|
341
351
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
342
352
|
};
|
343
353
|
backendTokens: {
|
@@ -237,6 +237,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
237
237
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
238
238
|
created_at: import("zod").ZodDate;
|
239
239
|
updated_at: import("zod").ZodDate;
|
240
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
240
241
|
}, "password">, "strip", import("zod").ZodTypeAny, {
|
241
242
|
id: string;
|
242
243
|
username: string | null;
|
@@ -261,6 +262,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
261
262
|
residenceLocationId: string | null;
|
262
263
|
isInTrash: boolean;
|
263
264
|
movedToTrashDate: Date | null;
|
265
|
+
referralCode: string | null;
|
264
266
|
}, {
|
265
267
|
id: string;
|
266
268
|
username: string | null;
|
@@ -284,6 +286,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
284
286
|
residenceLocationId: string | null;
|
285
287
|
isInTrash: boolean;
|
286
288
|
movedToTrashDate: Date | null;
|
289
|
+
referralCode: string | null;
|
287
290
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
288
291
|
}>;
|
289
292
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -316,6 +319,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
316
319
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
317
320
|
isInTrash: import("zod").ZodBoolean;
|
318
321
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
322
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
319
323
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
320
324
|
id: string;
|
321
325
|
username: string | null;
|
@@ -340,6 +344,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
340
344
|
residenceLocationId: string | null;
|
341
345
|
isInTrash: boolean;
|
342
346
|
movedToTrashDate: string | null;
|
347
|
+
referralCode: string | null;
|
343
348
|
}, {
|
344
349
|
id: string;
|
345
350
|
username: string | null;
|
@@ -363,6 +368,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
363
368
|
residenceLocationId: string | null;
|
364
369
|
isInTrash: boolean;
|
365
370
|
movedToTrashDate: string | null;
|
371
|
+
referralCode: string | null;
|
366
372
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
367
373
|
}>>;
|
368
374
|
export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
|
@@ -54,6 +54,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
54
54
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
55
55
|
created_at: z.ZodDate;
|
56
56
|
updated_at: z.ZodDate;
|
57
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
57
58
|
}, {
|
58
59
|
residenceLocation: z.ZodNullable<z.ZodObject<Pick<{
|
59
60
|
id: z.ZodString;
|
@@ -120,6 +121,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
120
121
|
residenceLocationId: string | null;
|
121
122
|
isInTrash: boolean;
|
122
123
|
movedToTrashDate: Date | null;
|
124
|
+
referralCode: string | null;
|
123
125
|
birthLocation: {
|
124
126
|
latitude: number;
|
125
127
|
longitude: number;
|
@@ -156,6 +158,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
156
158
|
residenceLocationId: string | null;
|
157
159
|
isInTrash: boolean;
|
158
160
|
movedToTrashDate: Date | null;
|
161
|
+
referralCode: string | null;
|
159
162
|
birthLocation: {
|
160
163
|
latitude: number;
|
161
164
|
longitude: number;
|
@@ -196,6 +199,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
196
199
|
residenceLocationId: string | null;
|
197
200
|
isInTrash: boolean;
|
198
201
|
movedToTrashDate: Date | null;
|
202
|
+
referralCode: string | null;
|
199
203
|
birthLocation: {
|
200
204
|
latitude: number;
|
201
205
|
longitude: number;
|
@@ -235,6 +239,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
235
239
|
residenceLocationId: string | null;
|
236
240
|
isInTrash: boolean;
|
237
241
|
movedToTrashDate: Date | null;
|
242
|
+
referralCode: string | null;
|
238
243
|
birthLocation: {
|
239
244
|
latitude: number;
|
240
245
|
longitude: number;
|
@@ -284,6 +289,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
284
289
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
285
290
|
created_at: z.ZodString;
|
286
291
|
updated_at: z.ZodString;
|
292
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
287
293
|
residenceLocation: z.ZodNullable<z.ZodObject<{
|
288
294
|
latitude: z.ZodNumber;
|
289
295
|
longitude: z.ZodNumber;
|
@@ -341,6 +347,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
341
347
|
residenceLocationId: string | null;
|
342
348
|
isInTrash: boolean;
|
343
349
|
movedToTrashDate: string | null;
|
350
|
+
referralCode: string | null;
|
344
351
|
birthLocation: {
|
345
352
|
latitude: number;
|
346
353
|
longitude: number;
|
@@ -377,6 +384,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
377
384
|
residenceLocationId: string | null;
|
378
385
|
isInTrash: boolean;
|
379
386
|
movedToTrashDate: string | null;
|
387
|
+
referralCode: string | null;
|
380
388
|
birthLocation: {
|
381
389
|
latitude: number;
|
382
390
|
longitude: number;
|
@@ -417,6 +425,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
417
425
|
residenceLocationId: string | null;
|
418
426
|
isInTrash: boolean;
|
419
427
|
movedToTrashDate: string | null;
|
428
|
+
referralCode: string | null;
|
420
429
|
birthLocation: {
|
421
430
|
latitude: number;
|
422
431
|
longitude: number;
|
@@ -456,6 +465,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
456
465
|
residenceLocationId: string | null;
|
457
466
|
isInTrash: boolean;
|
458
467
|
movedToTrashDate: string | null;
|
468
|
+
referralCode: string | null;
|
459
469
|
birthLocation: {
|
460
470
|
latitude: number;
|
461
471
|
longitude: number;
|
@@ -38,6 +38,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
38
38
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
39
39
|
created_at: z.ZodDate;
|
40
40
|
updated_at: z.ZodDate;
|
41
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
41
42
|
}, "strip", z.ZodTypeAny, {
|
42
43
|
id: string;
|
43
44
|
username: string | null;
|
@@ -63,6 +64,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
63
64
|
residenceLocationId: string | null;
|
64
65
|
isInTrash: boolean;
|
65
66
|
movedToTrashDate: Date | null;
|
67
|
+
referralCode: string | null;
|
66
68
|
}, {
|
67
69
|
id: string;
|
68
70
|
username: string | null;
|
@@ -87,6 +89,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
87
89
|
residenceLocationId: string | null;
|
88
90
|
isInTrash: boolean;
|
89
91
|
movedToTrashDate: Date | null;
|
92
|
+
referralCode: string | null;
|
90
93
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
91
94
|
}>>;
|
92
95
|
}>, "strip", z.ZodTypeAny, {
|
@@ -120,6 +123,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
120
123
|
residenceLocationId: string | null;
|
121
124
|
isInTrash: boolean;
|
122
125
|
movedToTrashDate: Date | null;
|
126
|
+
referralCode: string | null;
|
123
127
|
} | null;
|
124
128
|
}, {
|
125
129
|
id: string;
|
@@ -151,6 +155,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
151
155
|
residenceLocationId: string | null;
|
152
156
|
isInTrash: boolean;
|
153
157
|
movedToTrashDate: Date | null;
|
158
|
+
referralCode: string | null;
|
154
159
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
155
160
|
} | null;
|
156
161
|
}>, "many">;
|
@@ -186,6 +191,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
186
191
|
residenceLocationId: string | null;
|
187
192
|
isInTrash: boolean;
|
188
193
|
movedToTrashDate: Date | null;
|
194
|
+
referralCode: string | null;
|
189
195
|
} | null;
|
190
196
|
}[];
|
191
197
|
}, {
|
@@ -219,6 +225,7 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
219
225
|
residenceLocationId: string | null;
|
220
226
|
isInTrash: boolean;
|
221
227
|
movedToTrashDate: Date | null;
|
228
|
+
referralCode: string | null;
|
222
229
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
223
230
|
} | null;
|
224
231
|
}[];
|
@@ -261,6 +268,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
261
268
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
262
269
|
created_at: z.ZodString;
|
263
270
|
updated_at: z.ZodString;
|
271
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
264
272
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
265
273
|
id: string;
|
266
274
|
username: string | null;
|
@@ -286,6 +294,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
286
294
|
residenceLocationId: string | null;
|
287
295
|
isInTrash: boolean;
|
288
296
|
movedToTrashDate: string | null;
|
297
|
+
referralCode: string | null;
|
289
298
|
}, {
|
290
299
|
id: string;
|
291
300
|
username: string | null;
|
@@ -310,6 +319,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
310
319
|
residenceLocationId: string | null;
|
311
320
|
isInTrash: boolean;
|
312
321
|
movedToTrashDate: string | null;
|
322
|
+
referralCode: string | null;
|
313
323
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
314
324
|
}>>;
|
315
325
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -343,6 +353,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
343
353
|
residenceLocationId: string | null;
|
344
354
|
isInTrash: boolean;
|
345
355
|
movedToTrashDate: string | null;
|
356
|
+
referralCode: string | null;
|
346
357
|
} | null;
|
347
358
|
}, {
|
348
359
|
id: string;
|
@@ -374,6 +385,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
374
385
|
residenceLocationId: string | null;
|
375
386
|
isInTrash: boolean;
|
376
387
|
movedToTrashDate: string | null;
|
388
|
+
referralCode: string | null;
|
377
389
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
378
390
|
} | null;
|
379
391
|
}>, "many">;
|
@@ -409,6 +421,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
409
421
|
residenceLocationId: string | null;
|
410
422
|
isInTrash: boolean;
|
411
423
|
movedToTrashDate: string | null;
|
424
|
+
referralCode: string | null;
|
412
425
|
} | null;
|
413
426
|
}[];
|
414
427
|
}, {
|
@@ -442,6 +455,7 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
442
455
|
residenceLocationId: string | null;
|
443
456
|
isInTrash: boolean;
|
444
457
|
movedToTrashDate: string | null;
|
458
|
+
referralCode: string | null;
|
445
459
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
446
460
|
} | null;
|
447
461
|
}[];
|
package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts
CHANGED
@@ -62,6 +62,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
62
62
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
63
63
|
created_at: z.ZodDate;
|
64
64
|
updated_at: z.ZodDate;
|
65
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
65
66
|
}, "strip", z.ZodTypeAny, {
|
66
67
|
id: string;
|
67
68
|
username: string | null;
|
@@ -87,6 +88,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
87
88
|
residenceLocationId: string | null;
|
88
89
|
isInTrash: boolean;
|
89
90
|
movedToTrashDate: Date | null;
|
91
|
+
referralCode: string | null;
|
90
92
|
}, {
|
91
93
|
id: string;
|
92
94
|
username: string | null;
|
@@ -111,6 +113,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
111
113
|
residenceLocationId: string | null;
|
112
114
|
isInTrash: boolean;
|
113
115
|
movedToTrashDate: Date | null;
|
116
|
+
referralCode: string | null;
|
114
117
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
115
118
|
}>;
|
116
119
|
}>, "strip", z.ZodTypeAny, {
|
@@ -139,6 +142,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
139
142
|
residenceLocationId: string | null;
|
140
143
|
isInTrash: boolean;
|
141
144
|
movedToTrashDate: Date | null;
|
145
|
+
referralCode: string | null;
|
142
146
|
};
|
143
147
|
production: {
|
144
148
|
id: string;
|
@@ -178,6 +182,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
178
182
|
residenceLocationId: string | null;
|
179
183
|
isInTrash: boolean;
|
180
184
|
movedToTrashDate: Date | null;
|
185
|
+
referralCode: string | null;
|
181
186
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
182
187
|
};
|
183
188
|
production: {
|
@@ -221,6 +226,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
221
226
|
residenceLocationId: string | null;
|
222
227
|
isInTrash: boolean;
|
223
228
|
movedToTrashDate: Date | null;
|
229
|
+
referralCode: string | null;
|
224
230
|
};
|
225
231
|
production: {
|
226
232
|
id: string;
|
@@ -262,6 +268,7 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
262
268
|
residenceLocationId: string | null;
|
263
269
|
isInTrash: boolean;
|
264
270
|
movedToTrashDate: Date | null;
|
271
|
+
referralCode: string | null;
|
265
272
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
266
273
|
};
|
267
274
|
production: {
|
@@ -341,6 +348,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
341
348
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
342
349
|
created_at: z.ZodString;
|
343
350
|
updated_at: z.ZodString;
|
351
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
344
352
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
345
353
|
id: string;
|
346
354
|
username: string | null;
|
@@ -366,6 +374,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
366
374
|
residenceLocationId: string | null;
|
367
375
|
isInTrash: boolean;
|
368
376
|
movedToTrashDate: string | null;
|
377
|
+
referralCode: string | null;
|
369
378
|
}, {
|
370
379
|
id: string;
|
371
380
|
username: string | null;
|
@@ -390,6 +399,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
390
399
|
residenceLocationId: string | null;
|
391
400
|
isInTrash: boolean;
|
392
401
|
movedToTrashDate: string | null;
|
402
|
+
referralCode: string | null;
|
393
403
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
394
404
|
}>;
|
395
405
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -418,6 +428,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
418
428
|
residenceLocationId: string | null;
|
419
429
|
isInTrash: boolean;
|
420
430
|
movedToTrashDate: string | null;
|
431
|
+
referralCode: string | null;
|
421
432
|
};
|
422
433
|
production: {
|
423
434
|
id: string;
|
@@ -457,6 +468,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
457
468
|
residenceLocationId: string | null;
|
458
469
|
isInTrash: boolean;
|
459
470
|
movedToTrashDate: string | null;
|
471
|
+
referralCode: string | null;
|
460
472
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
461
473
|
};
|
462
474
|
production: {
|
@@ -500,6 +512,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
500
512
|
residenceLocationId: string | null;
|
501
513
|
isInTrash: boolean;
|
502
514
|
movedToTrashDate: string | null;
|
515
|
+
referralCode: string | null;
|
503
516
|
};
|
504
517
|
production: {
|
505
518
|
id: string;
|
@@ -541,6 +554,7 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
541
554
|
residenceLocationId: string | null;
|
542
555
|
isInTrash: boolean;
|
543
556
|
movedToTrashDate: string | null;
|
557
|
+
referralCode: string | null;
|
544
558
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
545
559
|
};
|
546
560
|
production: {
|
package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts
CHANGED
@@ -60,6 +60,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
60
60
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
61
61
|
created_at: import("zod").ZodDate;
|
62
62
|
updated_at: import("zod").ZodDate;
|
63
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
63
64
|
}, "strip", import("zod").ZodTypeAny, {
|
64
65
|
id: string;
|
65
66
|
username: string | null;
|
@@ -85,6 +86,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
85
86
|
residenceLocationId: string | null;
|
86
87
|
isInTrash: boolean;
|
87
88
|
movedToTrashDate: Date | null;
|
89
|
+
referralCode: string | null;
|
88
90
|
}, {
|
89
91
|
id: string;
|
90
92
|
username: string | null;
|
@@ -109,6 +111,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
109
111
|
residenceLocationId: string | null;
|
110
112
|
isInTrash: boolean;
|
111
113
|
movedToTrashDate: Date | null;
|
114
|
+
referralCode: string | null;
|
112
115
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
113
116
|
}>;
|
114
117
|
}>, "strip", import("zod").ZodTypeAny, {
|
@@ -137,6 +140,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
137
140
|
residenceLocationId: string | null;
|
138
141
|
isInTrash: boolean;
|
139
142
|
movedToTrashDate: Date | null;
|
143
|
+
referralCode: string | null;
|
140
144
|
};
|
141
145
|
production: {
|
142
146
|
id: string;
|
@@ -176,6 +180,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
176
180
|
residenceLocationId: string | null;
|
177
181
|
isInTrash: boolean;
|
178
182
|
movedToTrashDate: Date | null;
|
183
|
+
referralCode: string | null;
|
179
184
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
180
185
|
};
|
181
186
|
production: {
|
@@ -253,6 +258,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
253
258
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
254
259
|
created_at: import("zod").ZodString;
|
255
260
|
updated_at: import("zod").ZodString;
|
261
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
256
262
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
257
263
|
id: string;
|
258
264
|
username: string | null;
|
@@ -278,6 +284,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
278
284
|
residenceLocationId: string | null;
|
279
285
|
isInTrash: boolean;
|
280
286
|
movedToTrashDate: string | null;
|
287
|
+
referralCode: string | null;
|
281
288
|
}, {
|
282
289
|
id: string;
|
283
290
|
username: string | null;
|
@@ -302,6 +309,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
302
309
|
residenceLocationId: string | null;
|
303
310
|
isInTrash: boolean;
|
304
311
|
movedToTrashDate: string | null;
|
312
|
+
referralCode: string | null;
|
305
313
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
306
314
|
}>;
|
307
315
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -330,6 +338,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
330
338
|
residenceLocationId: string | null;
|
331
339
|
isInTrash: boolean;
|
332
340
|
movedToTrashDate: string | null;
|
341
|
+
referralCode: string | null;
|
333
342
|
};
|
334
343
|
production: {
|
335
344
|
id: string;
|
@@ -369,6 +378,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
369
378
|
residenceLocationId: string | null;
|
370
379
|
isInTrash: boolean;
|
371
380
|
movedToTrashDate: string | null;
|
381
|
+
referralCode: string | null;
|
372
382
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
373
383
|
};
|
374
384
|
production: {
|
@@ -31,6 +31,7 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
31
31
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
32
32
|
created_at: z.ZodDate;
|
33
33
|
updated_at: z.ZodDate;
|
34
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
34
35
|
}, "username" | "password" | "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "dni" | "gender" | "birthDate" | "instagram" | "alternativeNames">, {
|
35
36
|
comments: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
36
37
|
id: z.ZodString;
|
@@ -466,6 +467,7 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
466
467
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
467
468
|
created_at: z.ZodDate;
|
468
469
|
updated_at: z.ZodDate;
|
470
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
469
471
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
470
472
|
id: string;
|
471
473
|
phoneNumber: string;
|
@@ -528,6 +530,7 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
528
530
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
529
531
|
created_at: z.ZodDate;
|
530
532
|
updated_at: z.ZodDate;
|
533
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
531
534
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
532
535
|
id: string;
|
533
536
|
phoneNumber: string;
|
@@ -658,6 +661,7 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
658
661
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
659
662
|
created_at: z.ZodDate;
|
660
663
|
updated_at: z.ZodDate;
|
664
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
661
665
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
662
666
|
id: string;
|
663
667
|
phoneNumber: string;
|