expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.9 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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 +10 -5
- 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 +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +9 -2
- 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 +22 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- 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 +17 -7
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +496 -33
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +7 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +17 -4
- package/package.json +2 -1
@@ -97,6 +97,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
97
97
|
dni: string | null;
|
98
98
|
created_at: Date;
|
99
99
|
updated_at: Date;
|
100
|
+
referralCode: string;
|
100
101
|
shortId: number;
|
101
102
|
firstTimeMiExpo: boolean;
|
102
103
|
isPhoneVerified: boolean;
|
@@ -109,7 +110,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
109
110
|
residenceLocationId: string | null;
|
110
111
|
isInTrash: boolean;
|
111
112
|
movedToTrashDate: Date | null;
|
112
|
-
referralCode: string;
|
113
113
|
tags: {
|
114
114
|
id: string;
|
115
115
|
name: string;
|
@@ -134,6 +134,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
134
134
|
dni: string | null;
|
135
135
|
created_at: Date;
|
136
136
|
updated_at: Date;
|
137
|
+
referralCode: string;
|
137
138
|
shortId: number;
|
138
139
|
firstTimeMiExpo: boolean;
|
139
140
|
isPhoneVerified: boolean;
|
@@ -146,7 +147,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
146
147
|
residenceLocationId: string | null;
|
147
148
|
isInTrash: boolean;
|
148
149
|
movedToTrashDate: Date | null;
|
149
|
-
referralCode: string;
|
150
150
|
tags: {
|
151
151
|
id: string;
|
152
152
|
name: string;
|
@@ -175,6 +175,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
175
175
|
dni: string | null;
|
176
176
|
created_at: Date;
|
177
177
|
updated_at: Date;
|
178
|
+
referralCode: string;
|
178
179
|
shortId: number;
|
179
180
|
firstTimeMiExpo: boolean;
|
180
181
|
isPhoneVerified: boolean;
|
@@ -187,7 +188,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
187
188
|
residenceLocationId: string | null;
|
188
189
|
isInTrash: boolean;
|
189
190
|
movedToTrashDate: Date | null;
|
190
|
-
referralCode: string;
|
191
191
|
tags: {
|
192
192
|
id: string;
|
193
193
|
name: string;
|
@@ -214,6 +214,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
214
214
|
dni: string | null;
|
215
215
|
created_at: Date;
|
216
216
|
updated_at: Date;
|
217
|
+
referralCode: string;
|
217
218
|
shortId: number;
|
218
219
|
firstTimeMiExpo: boolean;
|
219
220
|
isPhoneVerified: boolean;
|
@@ -226,7 +227,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
226
227
|
residenceLocationId: string | null;
|
227
228
|
isInTrash: boolean;
|
228
229
|
movedToTrashDate: Date | null;
|
229
|
-
referralCode: string;
|
230
230
|
tags: {
|
231
231
|
id: string;
|
232
232
|
name: string;
|
@@ -334,6 +334,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
334
334
|
dni: string | null;
|
335
335
|
created_at: string;
|
336
336
|
updated_at: string;
|
337
|
+
referralCode: string;
|
337
338
|
shortId: number;
|
338
339
|
firstTimeMiExpo: boolean;
|
339
340
|
isPhoneVerified: boolean;
|
@@ -346,7 +347,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
346
347
|
residenceLocationId: string | null;
|
347
348
|
isInTrash: boolean;
|
348
349
|
movedToTrashDate: string | null;
|
349
|
-
referralCode: string;
|
350
350
|
tags: {
|
351
351
|
id: string;
|
352
352
|
name: string;
|
@@ -371,6 +371,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
371
371
|
dni: string | null;
|
372
372
|
created_at: string;
|
373
373
|
updated_at: string;
|
374
|
+
referralCode: string;
|
374
375
|
shortId: number;
|
375
376
|
firstTimeMiExpo: boolean;
|
376
377
|
isPhoneVerified: boolean;
|
@@ -383,7 +384,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
383
384
|
residenceLocationId: string | null;
|
384
385
|
isInTrash: boolean;
|
385
386
|
movedToTrashDate: string | null;
|
386
|
-
referralCode: string;
|
387
387
|
tags: {
|
388
388
|
id: string;
|
389
389
|
name: string;
|
@@ -412,6 +412,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
412
412
|
dni: string | null;
|
413
413
|
created_at: string;
|
414
414
|
updated_at: string;
|
415
|
+
referralCode: string;
|
415
416
|
shortId: number;
|
416
417
|
firstTimeMiExpo: boolean;
|
417
418
|
isPhoneVerified: boolean;
|
@@ -424,7 +425,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
424
425
|
residenceLocationId: string | null;
|
425
426
|
isInTrash: boolean;
|
426
427
|
movedToTrashDate: string | null;
|
427
|
-
referralCode: string;
|
428
428
|
tags: {
|
429
429
|
id: string;
|
430
430
|
name: string;
|
@@ -451,6 +451,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
451
451
|
dni: string | null;
|
452
452
|
created_at: string;
|
453
453
|
updated_at: string;
|
454
|
+
referralCode: string;
|
454
455
|
shortId: number;
|
455
456
|
firstTimeMiExpo: boolean;
|
456
457
|
isPhoneVerified: boolean;
|
@@ -463,7 +464,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
463
464
|
residenceLocationId: string | null;
|
464
465
|
isInTrash: boolean;
|
465
466
|
movedToTrashDate: string | null;
|
466
|
-
referralCode: string;
|
467
467
|
tags: {
|
468
468
|
id: string;
|
469
469
|
name: string;
|
@@ -93,6 +93,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
93
93
|
dni: string | null;
|
94
94
|
created_at: Date;
|
95
95
|
updated_at: Date;
|
96
|
+
referralCode: string;
|
96
97
|
shortId: number;
|
97
98
|
firstTimeMiExpo: boolean;
|
98
99
|
isPhoneVerified: boolean;
|
@@ -105,7 +106,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
105
106
|
residenceLocationId: string | null;
|
106
107
|
isInTrash: boolean;
|
107
108
|
movedToTrashDate: Date | null;
|
108
|
-
referralCode: string;
|
109
109
|
tags: {
|
110
110
|
id: string;
|
111
111
|
name: string;
|
@@ -129,6 +129,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
129
129
|
dni: string | null;
|
130
130
|
created_at: Date;
|
131
131
|
updated_at: Date;
|
132
|
+
referralCode: string;
|
132
133
|
shortId: number;
|
133
134
|
firstTimeMiExpo: boolean;
|
134
135
|
isPhoneVerified: boolean;
|
@@ -141,7 +142,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
141
142
|
residenceLocationId: string | null;
|
142
143
|
isInTrash: boolean;
|
143
144
|
movedToTrashDate: Date | null;
|
144
|
-
referralCode: string;
|
145
145
|
tags: {
|
146
146
|
id: string;
|
147
147
|
name: string;
|
@@ -169,6 +169,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
169
169
|
dni: string | null;
|
170
170
|
created_at: Date;
|
171
171
|
updated_at: Date;
|
172
|
+
referralCode: string;
|
172
173
|
shortId: number;
|
173
174
|
firstTimeMiExpo: boolean;
|
174
175
|
isPhoneVerified: boolean;
|
@@ -181,7 +182,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
181
182
|
residenceLocationId: string | null;
|
182
183
|
isInTrash: boolean;
|
183
184
|
movedToTrashDate: Date | null;
|
184
|
-
referralCode: string;
|
185
185
|
tags: {
|
186
186
|
id: string;
|
187
187
|
name: string;
|
@@ -207,6 +207,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
207
207
|
dni: string | null;
|
208
208
|
created_at: Date;
|
209
209
|
updated_at: Date;
|
210
|
+
referralCode: string;
|
210
211
|
shortId: number;
|
211
212
|
firstTimeMiExpo: boolean;
|
212
213
|
isPhoneVerified: boolean;
|
@@ -219,7 +220,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
219
220
|
residenceLocationId: string | null;
|
220
221
|
isInTrash: boolean;
|
221
222
|
movedToTrashDate: Date | null;
|
222
|
-
referralCode: string;
|
223
223
|
tags: {
|
224
224
|
id: string;
|
225
225
|
name: string;
|
@@ -321,6 +321,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
321
321
|
dni: string | null;
|
322
322
|
created_at: string;
|
323
323
|
updated_at: string;
|
324
|
+
referralCode: string;
|
324
325
|
shortId: number;
|
325
326
|
firstTimeMiExpo: boolean;
|
326
327
|
isPhoneVerified: boolean;
|
@@ -333,7 +334,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
333
334
|
residenceLocationId: string | null;
|
334
335
|
isInTrash: boolean;
|
335
336
|
movedToTrashDate: string | null;
|
336
|
-
referralCode: string;
|
337
337
|
tags: {
|
338
338
|
id: string;
|
339
339
|
name: string;
|
@@ -357,6 +357,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
357
357
|
dni: string | null;
|
358
358
|
created_at: string;
|
359
359
|
updated_at: string;
|
360
|
+
referralCode: string;
|
360
361
|
shortId: number;
|
361
362
|
firstTimeMiExpo: boolean;
|
362
363
|
isPhoneVerified: boolean;
|
@@ -369,7 +370,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
369
370
|
residenceLocationId: string | null;
|
370
371
|
isInTrash: boolean;
|
371
372
|
movedToTrashDate: string | null;
|
372
|
-
referralCode: string;
|
373
373
|
tags: {
|
374
374
|
id: string;
|
375
375
|
name: string;
|
@@ -397,6 +397,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
397
397
|
dni: string | null;
|
398
398
|
created_at: string;
|
399
399
|
updated_at: string;
|
400
|
+
referralCode: string;
|
400
401
|
shortId: number;
|
401
402
|
firstTimeMiExpo: boolean;
|
402
403
|
isPhoneVerified: boolean;
|
@@ -409,7 +410,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
409
410
|
residenceLocationId: string | null;
|
410
411
|
isInTrash: boolean;
|
411
412
|
movedToTrashDate: string | null;
|
412
|
-
referralCode: string;
|
413
413
|
tags: {
|
414
414
|
id: string;
|
415
415
|
name: string;
|
@@ -435,6 +435,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
435
435
|
dni: string | null;
|
436
436
|
created_at: string;
|
437
437
|
updated_at: string;
|
438
|
+
referralCode: string;
|
438
439
|
shortId: number;
|
439
440
|
firstTimeMiExpo: boolean;
|
440
441
|
isPhoneVerified: boolean;
|
@@ -447,7 +448,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
447
448
|
residenceLocationId: string | null;
|
448
449
|
isInTrash: boolean;
|
449
450
|
movedToTrashDate: string | null;
|
450
|
-
referralCode: string;
|
451
451
|
tags: {
|
452
452
|
id: string;
|
453
453
|
name: string;
|
@@ -557,6 +557,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
557
557
|
dni: string | null;
|
558
558
|
created_at: Date;
|
559
559
|
updated_at: Date;
|
560
|
+
referralCode: string;
|
560
561
|
shortId: number;
|
561
562
|
firstTimeMiExpo: boolean;
|
562
563
|
isPhoneVerified: boolean;
|
@@ -569,7 +570,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
569
570
|
residenceLocationId: string | null;
|
570
571
|
isInTrash: boolean;
|
571
572
|
movedToTrashDate: Date | null;
|
572
|
-
referralCode: string;
|
573
573
|
tags: {
|
574
574
|
id: string;
|
575
575
|
name: string;
|
@@ -593,6 +593,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
593
593
|
dni: string | null;
|
594
594
|
created_at: Date;
|
595
595
|
updated_at: Date;
|
596
|
+
referralCode: string;
|
596
597
|
shortId: number;
|
597
598
|
firstTimeMiExpo: boolean;
|
598
599
|
isPhoneVerified: boolean;
|
@@ -605,7 +606,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
605
606
|
residenceLocationId: string | null;
|
606
607
|
isInTrash: boolean;
|
607
608
|
movedToTrashDate: Date | null;
|
608
|
-
referralCode: string;
|
609
609
|
tags: {
|
610
610
|
id: string;
|
611
611
|
name: string;
|
@@ -712,6 +712,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
712
712
|
dni: string | null;
|
713
713
|
created_at: Date;
|
714
714
|
updated_at: Date;
|
715
|
+
referralCode: string;
|
715
716
|
shortId: number;
|
716
717
|
firstTimeMiExpo: boolean;
|
717
718
|
isPhoneVerified: boolean;
|
@@ -724,7 +725,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
724
725
|
residenceLocationId: string | null;
|
725
726
|
isInTrash: boolean;
|
726
727
|
movedToTrashDate: Date | null;
|
727
|
-
referralCode: string;
|
728
728
|
tags: {
|
729
729
|
id: string;
|
730
730
|
name: string;
|
@@ -748,6 +748,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
748
748
|
dni: string | null;
|
749
749
|
created_at: Date;
|
750
750
|
updated_at: Date;
|
751
|
+
referralCode: string;
|
751
752
|
shortId: number;
|
752
753
|
firstTimeMiExpo: boolean;
|
753
754
|
isPhoneVerified: boolean;
|
@@ -760,7 +761,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
760
761
|
residenceLocationId: string | null;
|
761
762
|
isInTrash: boolean;
|
762
763
|
movedToTrashDate: Date | null;
|
763
|
-
referralCode: string;
|
764
764
|
tags: {
|
765
765
|
id: string;
|
766
766
|
name: string;
|
@@ -155,6 +155,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
155
155
|
dni: string | null;
|
156
156
|
created_at: Date;
|
157
157
|
updated_at: Date;
|
158
|
+
referralCode: string;
|
158
159
|
shortId: number;
|
159
160
|
firstTimeMiExpo: boolean;
|
160
161
|
isPhoneVerified: boolean;
|
@@ -167,7 +168,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
167
168
|
residenceLocationId: string | null;
|
168
169
|
isInTrash: boolean;
|
169
170
|
movedToTrashDate: Date | null;
|
170
|
-
referralCode: string;
|
171
171
|
tags: {
|
172
172
|
id: string;
|
173
173
|
name: string;
|
@@ -212,6 +212,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
212
212
|
dni: string | null;
|
213
213
|
created_at: Date;
|
214
214
|
updated_at: Date;
|
215
|
+
referralCode: string;
|
215
216
|
shortId: number;
|
216
217
|
firstTimeMiExpo: boolean;
|
217
218
|
isPhoneVerified: boolean;
|
@@ -224,7 +225,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
224
225
|
residenceLocationId: string | null;
|
225
226
|
isInTrash: boolean;
|
226
227
|
movedToTrashDate: Date | null;
|
227
|
-
referralCode: string;
|
228
228
|
tags: {
|
229
229
|
id: string;
|
230
230
|
name: string;
|
@@ -278,6 +278,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
278
278
|
dni: z.ZodNullable<z.ZodString>;
|
279
279
|
created_at: z.ZodString;
|
280
280
|
updated_at: z.ZodString;
|
281
|
+
referralCode: z.ZodString;
|
281
282
|
shortId: z.ZodNumber;
|
282
283
|
firstTimeMiExpo: z.ZodBoolean;
|
283
284
|
isPhoneVerified: z.ZodBoolean;
|
@@ -290,7 +291,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
290
291
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
291
292
|
isInTrash: z.ZodBoolean;
|
292
293
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
293
|
-
referralCode: z.ZodString;
|
294
294
|
residenceLocation: z.ZodNullable<z.ZodObject<{
|
295
295
|
id: z.ZodString;
|
296
296
|
latitude: z.ZodNumber;
|
@@ -410,6 +410,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
410
410
|
dni: string | null;
|
411
411
|
created_at: string;
|
412
412
|
updated_at: string;
|
413
|
+
referralCode: string;
|
413
414
|
shortId: number;
|
414
415
|
firstTimeMiExpo: boolean;
|
415
416
|
isPhoneVerified: boolean;
|
@@ -422,7 +423,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
422
423
|
residenceLocationId: string | null;
|
423
424
|
isInTrash: boolean;
|
424
425
|
movedToTrashDate: string | null;
|
425
|
-
referralCode: string;
|
426
426
|
tags: {
|
427
427
|
id: string;
|
428
428
|
name: string;
|
@@ -467,6 +467,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
467
467
|
dni: string | null;
|
468
468
|
created_at: string;
|
469
469
|
updated_at: string;
|
470
|
+
referralCode: string;
|
470
471
|
shortId: number;
|
471
472
|
firstTimeMiExpo: boolean;
|
472
473
|
isPhoneVerified: boolean;
|
@@ -479,7 +480,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
479
480
|
residenceLocationId: string | null;
|
480
481
|
isInTrash: boolean;
|
481
482
|
movedToTrashDate: string | null;
|
482
|
-
referralCode: string;
|
483
483
|
tags: {
|
484
484
|
id: string;
|
485
485
|
name: string;
|
@@ -43,6 +43,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
43
43
|
dni: string | null;
|
44
44
|
created_at: Date;
|
45
45
|
updated_at: Date;
|
46
|
+
referralCode: string;
|
46
47
|
shortId: number;
|
47
48
|
firstTimeMiExpo: boolean;
|
48
49
|
isPhoneVerified: boolean;
|
@@ -55,7 +56,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
55
56
|
residenceLocationId: string | null;
|
56
57
|
isInTrash: boolean;
|
57
58
|
movedToTrashDate: Date | null;
|
58
|
-
referralCode: string;
|
59
59
|
}, {
|
60
60
|
id: string;
|
61
61
|
username: string | null;
|
@@ -68,6 +68,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
68
68
|
dni: string | null;
|
69
69
|
created_at: Date;
|
70
70
|
updated_at: Date;
|
71
|
+
referralCode: string;
|
71
72
|
shortId: number;
|
72
73
|
firstTimeMiExpo: boolean;
|
73
74
|
isPhoneVerified: boolean;
|
@@ -80,7 +81,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
80
81
|
residenceLocationId: string | null;
|
81
82
|
isInTrash: boolean;
|
82
83
|
movedToTrashDate: Date | null;
|
83
|
-
referralCode: string;
|
84
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
85
85
|
}>;
|
86
86
|
declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -128,6 +128,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
128
128
|
dni: string | null;
|
129
129
|
created_at: string;
|
130
130
|
updated_at: string;
|
131
|
+
referralCode: string;
|
131
132
|
shortId: number;
|
132
133
|
firstTimeMiExpo: boolean;
|
133
134
|
isPhoneVerified: boolean;
|
@@ -140,7 +141,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
140
141
|
residenceLocationId: string | null;
|
141
142
|
isInTrash: boolean;
|
142
143
|
movedToTrashDate: string | null;
|
143
|
-
referralCode: string;
|
144
144
|
}, {
|
145
145
|
id: string;
|
146
146
|
username: string | null;
|
@@ -153,6 +153,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
153
153
|
dni: string | null;
|
154
154
|
created_at: string;
|
155
155
|
updated_at: string;
|
156
|
+
referralCode: string;
|
156
157
|
shortId: number;
|
157
158
|
firstTimeMiExpo: boolean;
|
158
159
|
isPhoneVerified: boolean;
|
@@ -165,7 +166,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
165
166
|
residenceLocationId: string | null;
|
166
167
|
isInTrash: boolean;
|
167
168
|
movedToTrashDate: string | null;
|
168
|
-
referralCode: string;
|
169
169
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
170
170
|
}>>;
|
171
171
|
export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
|
@@ -74,6 +74,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
74
74
|
dni: string | null;
|
75
75
|
created_at: Date;
|
76
76
|
updated_at: Date;
|
77
|
+
referralCode: string;
|
77
78
|
shortId: number;
|
78
79
|
firstTimeMiExpo: boolean;
|
79
80
|
isPhoneVerified: boolean;
|
@@ -86,7 +87,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
86
87
|
residenceLocationId: string | null;
|
87
88
|
isInTrash: boolean;
|
88
89
|
movedToTrashDate: Date | null;
|
89
|
-
referralCode: string;
|
90
90
|
tags: {
|
91
91
|
id: string;
|
92
92
|
name: string;
|
@@ -107,6 +107,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
107
107
|
dni: string | null;
|
108
108
|
created_at: Date;
|
109
109
|
updated_at: Date;
|
110
|
+
referralCode: string;
|
110
111
|
shortId: number;
|
111
112
|
firstTimeMiExpo: boolean;
|
112
113
|
isPhoneVerified: boolean;
|
@@ -119,7 +120,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
119
120
|
residenceLocationId: string | null;
|
120
121
|
isInTrash: boolean;
|
121
122
|
movedToTrashDate: Date | null;
|
122
|
-
referralCode: string;
|
123
123
|
tags: {
|
124
124
|
id: string;
|
125
125
|
name: string;
|
@@ -144,6 +144,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
144
144
|
dni: string | null;
|
145
145
|
created_at: Date;
|
146
146
|
updated_at: Date;
|
147
|
+
referralCode: string;
|
147
148
|
shortId: number;
|
148
149
|
firstTimeMiExpo: boolean;
|
149
150
|
isPhoneVerified: boolean;
|
@@ -156,7 +157,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
156
157
|
residenceLocationId: string | null;
|
157
158
|
isInTrash: boolean;
|
158
159
|
movedToTrashDate: Date | null;
|
159
|
-
referralCode: string;
|
160
160
|
tags: {
|
161
161
|
id: string;
|
162
162
|
name: string;
|
@@ -179,6 +179,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
179
179
|
dni: string | null;
|
180
180
|
created_at: Date;
|
181
181
|
updated_at: Date;
|
182
|
+
referralCode: string;
|
182
183
|
shortId: number;
|
183
184
|
firstTimeMiExpo: boolean;
|
184
185
|
isPhoneVerified: boolean;
|
@@ -191,7 +192,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
191
192
|
residenceLocationId: string | null;
|
192
193
|
isInTrash: boolean;
|
193
194
|
movedToTrashDate: Date | null;
|
194
|
-
referralCode: string;
|
195
195
|
tags: {
|
196
196
|
id: string;
|
197
197
|
name: string;
|
@@ -277,6 +277,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
277
277
|
dni: string | null;
|
278
278
|
created_at: string;
|
279
279
|
updated_at: string;
|
280
|
+
referralCode: string;
|
280
281
|
shortId: number;
|
281
282
|
firstTimeMiExpo: boolean;
|
282
283
|
isPhoneVerified: boolean;
|
@@ -289,7 +290,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
289
290
|
residenceLocationId: string | null;
|
290
291
|
isInTrash: boolean;
|
291
292
|
movedToTrashDate: string | null;
|
292
|
-
referralCode: string;
|
293
293
|
tags: {
|
294
294
|
id: string;
|
295
295
|
name: string;
|
@@ -310,6 +310,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
310
310
|
dni: string | null;
|
311
311
|
created_at: string;
|
312
312
|
updated_at: string;
|
313
|
+
referralCode: string;
|
313
314
|
shortId: number;
|
314
315
|
firstTimeMiExpo: boolean;
|
315
316
|
isPhoneVerified: boolean;
|
@@ -322,7 +323,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
322
323
|
residenceLocationId: string | null;
|
323
324
|
isInTrash: boolean;
|
324
325
|
movedToTrashDate: string | null;
|
325
|
-
referralCode: string;
|
326
326
|
tags: {
|
327
327
|
id: string;
|
328
328
|
name: string;
|
@@ -347,6 +347,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
347
347
|
dni: string | null;
|
348
348
|
created_at: string;
|
349
349
|
updated_at: string;
|
350
|
+
referralCode: string;
|
350
351
|
shortId: number;
|
351
352
|
firstTimeMiExpo: boolean;
|
352
353
|
isPhoneVerified: boolean;
|
@@ -359,7 +360,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
359
360
|
residenceLocationId: string | null;
|
360
361
|
isInTrash: boolean;
|
361
362
|
movedToTrashDate: string | null;
|
362
|
-
referralCode: string;
|
363
363
|
tags: {
|
364
364
|
id: string;
|
365
365
|
name: string;
|
@@ -382,6 +382,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
382
382
|
dni: string | null;
|
383
383
|
created_at: string;
|
384
384
|
updated_at: string;
|
385
|
+
referralCode: string;
|
385
386
|
shortId: number;
|
386
387
|
firstTimeMiExpo: boolean;
|
387
388
|
isPhoneVerified: boolean;
|
@@ -394,7 +395,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
394
395
|
residenceLocationId: string | null;
|
395
396
|
isInTrash: boolean;
|
396
397
|
movedToTrashDate: string | null;
|
397
|
-
referralCode: string;
|
398
398
|
tags: {
|
399
399
|
id: string;
|
400
400
|
name: string;
|
@@ -101,6 +101,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
101
101
|
dni: string | null;
|
102
102
|
created_at: Date;
|
103
103
|
updated_at: Date;
|
104
|
+
referralCode: string;
|
104
105
|
shortId: number;
|
105
106
|
firstTimeMiExpo: boolean;
|
106
107
|
isPhoneVerified: boolean;
|
@@ -113,7 +114,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
113
114
|
residenceLocationId: string | null;
|
114
115
|
isInTrash: boolean;
|
115
116
|
movedToTrashDate: Date | null;
|
116
|
-
referralCode: string;
|
117
117
|
tags: {
|
118
118
|
id: string;
|
119
119
|
name: string;
|
@@ -139,6 +139,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
139
139
|
dni: string | null;
|
140
140
|
created_at: Date;
|
141
141
|
updated_at: Date;
|
142
|
+
referralCode: string;
|
142
143
|
shortId: number;
|
143
144
|
firstTimeMiExpo: boolean;
|
144
145
|
isPhoneVerified: boolean;
|
@@ -151,7 +152,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
151
152
|
residenceLocationId: string | null;
|
152
153
|
isInTrash: boolean;
|
153
154
|
movedToTrashDate: Date | null;
|
154
|
-
referralCode: string;
|
155
155
|
tags: {
|
156
156
|
id: string;
|
157
157
|
name: string;
|
@@ -181,6 +181,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
181
181
|
dni: string | null;
|
182
182
|
created_at: Date;
|
183
183
|
updated_at: Date;
|
184
|
+
referralCode: string;
|
184
185
|
shortId: number;
|
185
186
|
firstTimeMiExpo: boolean;
|
186
187
|
isPhoneVerified: boolean;
|
@@ -193,7 +194,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
193
194
|
residenceLocationId: string | null;
|
194
195
|
isInTrash: boolean;
|
195
196
|
movedToTrashDate: Date | null;
|
196
|
-
referralCode: string;
|
197
197
|
tags: {
|
198
198
|
id: string;
|
199
199
|
name: string;
|
@@ -221,6 +221,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
221
221
|
dni: string | null;
|
222
222
|
created_at: Date;
|
223
223
|
updated_at: Date;
|
224
|
+
referralCode: string;
|
224
225
|
shortId: number;
|
225
226
|
firstTimeMiExpo: boolean;
|
226
227
|
isPhoneVerified: boolean;
|
@@ -233,7 +234,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
233
234
|
residenceLocationId: string | null;
|
234
235
|
isInTrash: boolean;
|
235
236
|
movedToTrashDate: Date | null;
|
236
|
-
referralCode: string;
|
237
237
|
tags: {
|
238
238
|
id: string;
|
239
239
|
name: string;
|
@@ -347,6 +347,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
347
347
|
dni: string | null;
|
348
348
|
created_at: string;
|
349
349
|
updated_at: string;
|
350
|
+
referralCode: string;
|
350
351
|
shortId: number;
|
351
352
|
firstTimeMiExpo: boolean;
|
352
353
|
isPhoneVerified: boolean;
|
@@ -359,7 +360,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
359
360
|
residenceLocationId: string | null;
|
360
361
|
isInTrash: boolean;
|
361
362
|
movedToTrashDate: string | null;
|
362
|
-
referralCode: string;
|
363
363
|
tags: {
|
364
364
|
id: string;
|
365
365
|
name: string;
|
@@ -385,6 +385,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
385
385
|
dni: string | null;
|
386
386
|
created_at: string;
|
387
387
|
updated_at: string;
|
388
|
+
referralCode: string;
|
388
389
|
shortId: number;
|
389
390
|
firstTimeMiExpo: boolean;
|
390
391
|
isPhoneVerified: boolean;
|
@@ -397,7 +398,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
397
398
|
residenceLocationId: string | null;
|
398
399
|
isInTrash: boolean;
|
399
400
|
movedToTrashDate: string | null;
|
400
|
-
referralCode: string;
|
401
401
|
tags: {
|
402
402
|
id: string;
|
403
403
|
name: string;
|
@@ -427,6 +427,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
427
427
|
dni: string | null;
|
428
428
|
created_at: string;
|
429
429
|
updated_at: string;
|
430
|
+
referralCode: string;
|
430
431
|
shortId: number;
|
431
432
|
firstTimeMiExpo: boolean;
|
432
433
|
isPhoneVerified: boolean;
|
@@ -439,7 +440,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
439
440
|
residenceLocationId: string | null;
|
440
441
|
isInTrash: boolean;
|
441
442
|
movedToTrashDate: string | null;
|
442
|
-
referralCode: string;
|
443
443
|
tags: {
|
444
444
|
id: string;
|
445
445
|
name: string;
|
@@ -467,6 +467,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
467
467
|
dni: string | null;
|
468
468
|
created_at: string;
|
469
469
|
updated_at: string;
|
470
|
+
referralCode: string;
|
470
471
|
shortId: number;
|
471
472
|
firstTimeMiExpo: boolean;
|
472
473
|
isPhoneVerified: boolean;
|
@@ -479,7 +480,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
479
480
|
residenceLocationId: string | null;
|
480
481
|
isInTrash: boolean;
|
481
482
|
movedToTrashDate: string | null;
|
482
|
-
referralCode: string;
|
483
483
|
tags: {
|
484
484
|
id: string;
|
485
485
|
name: string;
|