expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.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/event/dto/get-all-statistics.dto.d.ts +5 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- 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/create-many-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +167 -3
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +33 -0
- package/package.json +1 -1
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;
|
@@ -29,6 +29,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
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
|
}, "strip", import("zod").ZodTypeAny, {
|
33
34
|
id: string;
|
34
35
|
username: string | null;
|
@@ -54,6 +55,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
54
55
|
residenceLocationId: string | null;
|
55
56
|
isInTrash: boolean;
|
56
57
|
movedToTrashDate: Date | null;
|
58
|
+
referralCode: string | null;
|
57
59
|
}, {
|
58
60
|
id: string;
|
59
61
|
username: string | null;
|
@@ -78,6 +80,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
78
80
|
residenceLocationId: string | null;
|
79
81
|
isInTrash: boolean;
|
80
82
|
movedToTrashDate: Date | null;
|
83
|
+
referralCode: string | null;
|
81
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
82
85
|
}>;
|
83
86
|
declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -111,6 +114,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
111
114
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
112
115
|
created_at: import("zod").ZodString;
|
113
116
|
updated_at: import("zod").ZodString;
|
117
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
114
118
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
115
119
|
id: string;
|
116
120
|
username: string | null;
|
@@ -136,6 +140,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
136
140
|
residenceLocationId: string | null;
|
137
141
|
isInTrash: boolean;
|
138
142
|
movedToTrashDate: string | null;
|
143
|
+
referralCode: string | null;
|
139
144
|
}, {
|
140
145
|
id: string;
|
141
146
|
username: string | null;
|
@@ -160,6 +165,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
160
165
|
residenceLocationId: string | null;
|
161
166
|
isInTrash: boolean;
|
162
167
|
movedToTrashDate: string | null;
|
168
|
+
referralCode: string | null;
|
163
169
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
164
170
|
}>>;
|
165
171
|
export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
|
@@ -31,6 +31,7 @@ export declare const findAllProfileResponseSchema: 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
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
36
37
|
id: z.ZodString;
|
@@ -108,6 +109,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
108
109
|
residenceLocationId: string | null;
|
109
110
|
isInTrash: boolean;
|
110
111
|
movedToTrashDate: Date | null;
|
112
|
+
referralCode: string | null;
|
111
113
|
tags: {
|
112
114
|
id: string;
|
113
115
|
name: string;
|
@@ -144,6 +146,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
144
146
|
residenceLocationId: string | null;
|
145
147
|
isInTrash: boolean;
|
146
148
|
movedToTrashDate: Date | null;
|
149
|
+
referralCode: string | null;
|
147
150
|
tags: {
|
148
151
|
id: string;
|
149
152
|
name: string;
|
@@ -184,6 +187,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
184
187
|
residenceLocationId: string | null;
|
185
188
|
isInTrash: boolean;
|
186
189
|
movedToTrashDate: Date | null;
|
190
|
+
referralCode: string | null;
|
187
191
|
tags: {
|
188
192
|
id: string;
|
189
193
|
name: string;
|
@@ -222,6 +226,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
222
226
|
residenceLocationId: string | null;
|
223
227
|
isInTrash: boolean;
|
224
228
|
movedToTrashDate: Date | null;
|
229
|
+
referralCode: string | null;
|
225
230
|
tags: {
|
226
231
|
id: string;
|
227
232
|
name: string;
|
@@ -269,6 +274,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
269
274
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
270
275
|
created_at: z.ZodString;
|
271
276
|
updated_at: z.ZodString;
|
277
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
272
278
|
tags: z.ZodArray<z.ZodObject<{
|
273
279
|
id: z.ZodString;
|
274
280
|
name: z.ZodString;
|
@@ -340,6 +346,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
340
346
|
residenceLocationId: string | null;
|
341
347
|
isInTrash: boolean;
|
342
348
|
movedToTrashDate: string | null;
|
349
|
+
referralCode: string | null;
|
343
350
|
tags: {
|
344
351
|
id: string;
|
345
352
|
name: string;
|
@@ -376,6 +383,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
376
383
|
residenceLocationId: string | null;
|
377
384
|
isInTrash: boolean;
|
378
385
|
movedToTrashDate: string | null;
|
386
|
+
referralCode: string | null;
|
379
387
|
tags: {
|
380
388
|
id: string;
|
381
389
|
name: string;
|
@@ -416,6 +424,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
416
424
|
residenceLocationId: string | null;
|
417
425
|
isInTrash: boolean;
|
418
426
|
movedToTrashDate: string | null;
|
427
|
+
referralCode: string | null;
|
419
428
|
tags: {
|
420
429
|
id: string;
|
421
430
|
name: string;
|
@@ -454,6 +463,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
454
463
|
residenceLocationId: string | null;
|
455
464
|
isInTrash: boolean;
|
456
465
|
movedToTrashDate: string | null;
|
466
|
+
referralCode: string | null;
|
457
467
|
tags: {
|
458
468
|
id: string;
|
459
469
|
name: string;
|
@@ -31,6 +31,7 @@ export declare const findByDateRangeSchema: 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
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
36
37
|
id: z.ZodString;
|
@@ -104,6 +105,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
104
105
|
residenceLocationId: string | null;
|
105
106
|
isInTrash: boolean;
|
106
107
|
movedToTrashDate: Date | null;
|
108
|
+
referralCode: string | null;
|
107
109
|
tags: {
|
108
110
|
id: string;
|
109
111
|
name: string;
|
@@ -139,6 +141,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
139
141
|
residenceLocationId: string | null;
|
140
142
|
isInTrash: boolean;
|
141
143
|
movedToTrashDate: Date | null;
|
144
|
+
referralCode: string | null;
|
142
145
|
tags: {
|
143
146
|
id: string;
|
144
147
|
name: string;
|
@@ -178,6 +181,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
178
181
|
residenceLocationId: string | null;
|
179
182
|
isInTrash: boolean;
|
180
183
|
movedToTrashDate: Date | null;
|
184
|
+
referralCode: string | null;
|
181
185
|
tags: {
|
182
186
|
id: string;
|
183
187
|
name: string;
|
@@ -215,6 +219,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
215
219
|
residenceLocationId: string | null;
|
216
220
|
isInTrash: boolean;
|
217
221
|
movedToTrashDate: Date | null;
|
222
|
+
referralCode: string | null;
|
218
223
|
tags: {
|
219
224
|
id: string;
|
220
225
|
name: string;
|
@@ -261,6 +266,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
261
266
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
262
267
|
created_at: z.ZodString;
|
263
268
|
updated_at: z.ZodString;
|
269
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
264
270
|
tags: z.ZodArray<z.ZodObject<{
|
265
271
|
id: z.ZodString;
|
266
272
|
name: z.ZodString;
|
@@ -327,6 +333,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
327
333
|
residenceLocationId: string | null;
|
328
334
|
isInTrash: boolean;
|
329
335
|
movedToTrashDate: string | null;
|
336
|
+
referralCode: string | null;
|
330
337
|
tags: {
|
331
338
|
id: string;
|
332
339
|
name: string;
|
@@ -362,6 +369,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
362
369
|
residenceLocationId: string | null;
|
363
370
|
isInTrash: boolean;
|
364
371
|
movedToTrashDate: string | null;
|
372
|
+
referralCode: string | null;
|
365
373
|
tags: {
|
366
374
|
id: string;
|
367
375
|
name: string;
|
@@ -401,6 +409,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
401
409
|
residenceLocationId: string | null;
|
402
410
|
isInTrash: boolean;
|
403
411
|
movedToTrashDate: string | null;
|
412
|
+
referralCode: string | null;
|
404
413
|
tags: {
|
405
414
|
id: string;
|
406
415
|
name: string;
|
@@ -438,6 +447,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
438
447
|
residenceLocationId: string | null;
|
439
448
|
isInTrash: boolean;
|
440
449
|
movedToTrashDate: string | null;
|
450
|
+
referralCode: string | null;
|
441
451
|
tags: {
|
442
452
|
id: string;
|
443
453
|
name: string;
|
@@ -485,6 +495,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
485
495
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
486
496
|
created_at: z.ZodDate;
|
487
497
|
updated_at: z.ZodDate;
|
498
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
488
499
|
}, {
|
489
500
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
490
501
|
id: z.ZodString;
|
@@ -558,6 +569,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
558
569
|
residenceLocationId: string | null;
|
559
570
|
isInTrash: boolean;
|
560
571
|
movedToTrashDate: Date | null;
|
572
|
+
referralCode: string | null;
|
561
573
|
tags: {
|
562
574
|
id: string;
|
563
575
|
name: string;
|
@@ -593,6 +605,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
593
605
|
residenceLocationId: string | null;
|
594
606
|
isInTrash: boolean;
|
595
607
|
movedToTrashDate: Date | null;
|
608
|
+
referralCode: string | null;
|
596
609
|
tags: {
|
597
610
|
id: string;
|
598
611
|
name: string;
|
@@ -637,6 +650,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
637
650
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
638
651
|
created_at: z.ZodDate;
|
639
652
|
updated_at: z.ZodDate;
|
653
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
640
654
|
}, {
|
641
655
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
642
656
|
id: z.ZodString;
|
@@ -710,6 +724,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
710
724
|
residenceLocationId: string | null;
|
711
725
|
isInTrash: boolean;
|
712
726
|
movedToTrashDate: Date | null;
|
727
|
+
referralCode: string | null;
|
713
728
|
tags: {
|
714
729
|
id: string;
|
715
730
|
name: string;
|
@@ -745,6 +760,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
745
760
|
residenceLocationId: string | null;
|
746
761
|
isInTrash: boolean;
|
747
762
|
movedToTrashDate: Date | null;
|
763
|
+
referralCode: string | null;
|
748
764
|
tags: {
|
749
765
|
id: string;
|
750
766
|
name: string;
|
@@ -30,6 +30,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
30
30
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
31
31
|
created_at: z.ZodDate;
|
32
32
|
updated_at: z.ZodDate;
|
33
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
33
34
|
}, "password">, {
|
34
35
|
residenceLocation: z.ZodNullable<z.ZodObject<{
|
35
36
|
id: z.ZodString;
|
@@ -166,6 +167,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
166
167
|
residenceLocationId: string | null;
|
167
168
|
isInTrash: boolean;
|
168
169
|
movedToTrashDate: Date | null;
|
170
|
+
referralCode: string | null;
|
169
171
|
tags: {
|
170
172
|
id: string;
|
171
173
|
name: string;
|
@@ -222,6 +224,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
222
224
|
residenceLocationId: string | null;
|
223
225
|
isInTrash: boolean;
|
224
226
|
movedToTrashDate: Date | null;
|
227
|
+
referralCode: string | null;
|
225
228
|
tags: {
|
226
229
|
id: string;
|
227
230
|
name: string;
|
@@ -287,6 +290,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
287
290
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
288
291
|
isInTrash: z.ZodBoolean;
|
289
292
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
293
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
290
294
|
residenceLocation: z.ZodNullable<z.ZodObject<{
|
291
295
|
id: z.ZodString;
|
292
296
|
latitude: z.ZodNumber;
|
@@ -418,6 +422,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
418
422
|
residenceLocationId: string | null;
|
419
423
|
isInTrash: boolean;
|
420
424
|
movedToTrashDate: string | null;
|
425
|
+
referralCode: string | null;
|
421
426
|
tags: {
|
422
427
|
id: string;
|
423
428
|
name: string;
|
@@ -474,6 +479,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
474
479
|
residenceLocationId: string | null;
|
475
480
|
isInTrash: boolean;
|
476
481
|
movedToTrashDate: string | null;
|
482
|
+
referralCode: string | null;
|
477
483
|
tags: {
|
478
484
|
id: string;
|
479
485
|
name: string;
|
@@ -29,6 +29,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
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
|
}, "strip", import("zod").ZodTypeAny, {
|
33
34
|
id: string;
|
34
35
|
username: string | null;
|
@@ -54,6 +55,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
54
55
|
residenceLocationId: string | null;
|
55
56
|
isInTrash: boolean;
|
56
57
|
movedToTrashDate: Date | null;
|
58
|
+
referralCode: string | null;
|
57
59
|
}, {
|
58
60
|
id: string;
|
59
61
|
username: string | null;
|
@@ -78,6 +80,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
78
80
|
residenceLocationId: string | null;
|
79
81
|
isInTrash: boolean;
|
80
82
|
movedToTrashDate: Date | null;
|
83
|
+
referralCode: string | null;
|
81
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
82
85
|
}>;
|
83
86
|
declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -111,6 +114,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
111
114
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
112
115
|
created_at: import("zod").ZodString;
|
113
116
|
updated_at: import("zod").ZodString;
|
117
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
114
118
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
115
119
|
id: string;
|
116
120
|
username: string | null;
|
@@ -136,6 +140,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
136
140
|
residenceLocationId: string | null;
|
137
141
|
isInTrash: boolean;
|
138
142
|
movedToTrashDate: string | null;
|
143
|
+
referralCode: string | null;
|
139
144
|
}, {
|
140
145
|
id: string;
|
141
146
|
username: string | null;
|
@@ -160,6 +165,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
160
165
|
residenceLocationId: string | null;
|
161
166
|
isInTrash: boolean;
|
162
167
|
movedToTrashDate: string | null;
|
168
|
+
referralCode: string | null;
|
163
169
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
164
170
|
}>>;
|
165
171
|
export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
|
@@ -31,6 +31,7 @@ export declare const findByTagGroupsProfileResponseSchema: 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
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<{
|
36
37
|
id: z.ZodString;
|
@@ -85,6 +86,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
85
86
|
residenceLocationId: string | null;
|
86
87
|
isInTrash: boolean;
|
87
88
|
movedToTrashDate: Date | null;
|
89
|
+
referralCode: string | null;
|
88
90
|
tags: {
|
89
91
|
id: string;
|
90
92
|
name: string;
|
@@ -117,6 +119,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
117
119
|
residenceLocationId: string | null;
|
118
120
|
isInTrash: boolean;
|
119
121
|
movedToTrashDate: Date | null;
|
122
|
+
referralCode: string | null;
|
120
123
|
tags: {
|
121
124
|
id: string;
|
122
125
|
name: string;
|
@@ -153,6 +156,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
153
156
|
residenceLocationId: string | null;
|
154
157
|
isInTrash: boolean;
|
155
158
|
movedToTrashDate: Date | null;
|
159
|
+
referralCode: string | null;
|
156
160
|
tags: {
|
157
161
|
id: string;
|
158
162
|
name: string;
|
@@ -187,6 +191,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
187
191
|
residenceLocationId: string | null;
|
188
192
|
isInTrash: boolean;
|
189
193
|
movedToTrashDate: Date | null;
|
194
|
+
referralCode: string | null;
|
190
195
|
tags: {
|
191
196
|
id: string;
|
192
197
|
name: string;
|
@@ -230,6 +235,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
230
235
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
231
236
|
created_at: z.ZodString;
|
232
237
|
updated_at: z.ZodString;
|
238
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
233
239
|
tags: z.ZodArray<z.ZodObject<{
|
234
240
|
id: z.ZodString;
|
235
241
|
name: z.ZodString;
|
@@ -283,6 +289,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
283
289
|
residenceLocationId: string | null;
|
284
290
|
isInTrash: boolean;
|
285
291
|
movedToTrashDate: string | null;
|
292
|
+
referralCode: string | null;
|
286
293
|
tags: {
|
287
294
|
id: string;
|
288
295
|
name: string;
|
@@ -315,6 +322,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
315
322
|
residenceLocationId: string | null;
|
316
323
|
isInTrash: boolean;
|
317
324
|
movedToTrashDate: string | null;
|
325
|
+
referralCode: string | null;
|
318
326
|
tags: {
|
319
327
|
id: string;
|
320
328
|
name: string;
|
@@ -351,6 +359,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
351
359
|
residenceLocationId: string | null;
|
352
360
|
isInTrash: boolean;
|
353
361
|
movedToTrashDate: string | null;
|
362
|
+
referralCode: string | null;
|
354
363
|
tags: {
|
355
364
|
id: string;
|
356
365
|
name: string;
|
@@ -385,6 +394,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
385
394
|
residenceLocationId: string | null;
|
386
395
|
isInTrash: boolean;
|
387
396
|
movedToTrashDate: string | null;
|
397
|
+
referralCode: string | null;
|
388
398
|
tags: {
|
389
399
|
id: string;
|
390
400
|
name: string;
|