expo-backend-types 0.54.0 → 0.55.0-EXPO-366-EB-Schema-codigo-referido.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
  2. package/dist/src/i18n/es.d.ts +6 -0
  3. package/dist/src/i18n/es.js +6 -0
  4. package/dist/src/i18n/es.js.map +1 -1
  5. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
  6. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
  7. package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
  8. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
  9. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
  10. package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
  11. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
  12. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
  13. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  14. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
  16. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
  17. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
  19. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
  20. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
  21. package/dist/src/profile/dto/find-referral-code-exists.dto.d.ts +18 -0
  22. package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
  23. package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
  24. package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -0
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
  27. package/dist/src/profile/dto/profile.dto.d.ts +3 -0
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
  29. package/dist/src/schema/profile.schema.d.ts +3 -0
  30. package/dist/src/schema/profile.schema.js +1 -0
  31. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
  32. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
  33. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +6 -0
  34. package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
  35. package/dist/src/ticket/dto/create-ticket.dto.d.ts +6 -0
  36. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  37. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -0
  38. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -0
  39. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -0
  40. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +7 -0
  41. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
  42. package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
  43. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
  44. package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
  45. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
  46. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
  47. package/dist/types/prisma-schema/edge.js +5 -3
  48. package/dist/types/prisma-schema/index-browser.js +2 -0
  49. package/dist/types/prisma-schema/index.d.ts +556 -25
  50. package/dist/types/prisma-schema/index.js +5 -3
  51. package/dist/types/prisma-schema/package.json +1 -1
  52. package/dist/types/prisma-schema/schema.prisma +8 -0
  53. package/dist/types/prisma-schema/wasm.js +2 -0
  54. package/dist/types/schema.d.ts +107 -0
  55. package/package.json +2 -1
@@ -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").ZodString;
63
64
  }, "strip", import("zod").ZodTypeAny, {
64
65
  id: string;
65
66
  username: string | null;
@@ -73,6 +74,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
73
74
  dni: string | null;
74
75
  created_at: Date;
75
76
  updated_at: Date;
77
+ referralCode: string;
76
78
  shortId: number;
77
79
  firstTimeMiExpo: boolean;
78
80
  isPhoneVerified: boolean;
@@ -97,6 +99,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
97
99
  dni: string | null;
98
100
  created_at: Date;
99
101
  updated_at: Date;
102
+ referralCode: string;
100
103
  shortId: number;
101
104
  firstTimeMiExpo: boolean;
102
105
  isPhoneVerified: boolean;
@@ -125,6 +128,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
125
128
  dni: string | null;
126
129
  created_at: Date;
127
130
  updated_at: Date;
131
+ referralCode: string;
128
132
  shortId: number;
129
133
  firstTimeMiExpo: boolean;
130
134
  isPhoneVerified: boolean;
@@ -164,6 +168,7 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
164
168
  dni: string | null;
165
169
  created_at: Date;
166
170
  updated_at: Date;
171
+ referralCode: string;
167
172
  shortId: number;
168
173
  firstTimeMiExpo: boolean;
169
174
  isPhoneVerified: boolean;
@@ -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").ZodString;
256
262
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
257
263
  id: string;
258
264
  username: string | null;
@@ -266,6 +272,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
266
272
  dni: string | null;
267
273
  created_at: string;
268
274
  updated_at: string;
275
+ referralCode: string;
269
276
  shortId: number;
270
277
  firstTimeMiExpo: boolean;
271
278
  isPhoneVerified: boolean;
@@ -290,6 +297,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
290
297
  dni: string | null;
291
298
  created_at: string;
292
299
  updated_at: string;
300
+ referralCode: string;
293
301
  shortId: number;
294
302
  firstTimeMiExpo: boolean;
295
303
  isPhoneVerified: boolean;
@@ -318,6 +326,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
318
326
  dni: string | null;
319
327
  created_at: string;
320
328
  updated_at: string;
329
+ referralCode: string;
321
330
  shortId: number;
322
331
  firstTimeMiExpo: boolean;
323
332
  isPhoneVerified: boolean;
@@ -357,6 +366,7 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
357
366
  dni: string | null;
358
367
  created_at: string;
359
368
  updated_at: string;
369
+ referralCode: string;
360
370
  shortId: number;
361
371
  firstTimeMiExpo: boolean;
362
372
  isPhoneVerified: boolean;
@@ -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.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.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.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.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").ZodString;
32
33
  }, "strip", import("zod").ZodTypeAny, {
33
34
  id: string;
34
35
  username: string | null;
@@ -42,6 +43,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
42
43
  dni: string | null;
43
44
  created_at: Date;
44
45
  updated_at: Date;
46
+ referralCode: string;
45
47
  shortId: number;
46
48
  firstTimeMiExpo: boolean;
47
49
  isPhoneVerified: boolean;
@@ -66,6 +68,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
66
68
  dni: string | null;
67
69
  created_at: Date;
68
70
  updated_at: Date;
71
+ referralCode: string;
69
72
  shortId: number;
70
73
  firstTimeMiExpo: boolean;
71
74
  isPhoneVerified: boolean;
@@ -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").ZodString;
114
118
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
115
119
  id: string;
116
120
  username: string | null;
@@ -124,6 +128,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
124
128
  dni: string | null;
125
129
  created_at: string;
126
130
  updated_at: string;
131
+ referralCode: string;
127
132
  shortId: number;
128
133
  firstTimeMiExpo: boolean;
129
134
  isPhoneVerified: boolean;
@@ -148,6 +153,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
148
153
  dni: string | null;
149
154
  created_at: string;
150
155
  updated_at: string;
156
+ referralCode: string;
151
157
  shortId: number;
152
158
  firstTimeMiExpo: boolean;
153
159
  isPhoneVerified: boolean;
@@ -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.ZodString;
34
35
  }, {
35
36
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
36
37
  id: z.ZodString;
@@ -96,6 +97,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
96
97
  dni: string | null;
97
98
  created_at: Date;
98
99
  updated_at: Date;
100
+ referralCode: string;
99
101
  shortId: number;
100
102
  firstTimeMiExpo: boolean;
101
103
  isPhoneVerified: boolean;
@@ -132,6 +134,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
132
134
  dni: string | null;
133
135
  created_at: Date;
134
136
  updated_at: Date;
137
+ referralCode: string;
135
138
  shortId: number;
136
139
  firstTimeMiExpo: boolean;
137
140
  isPhoneVerified: boolean;
@@ -172,6 +175,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
172
175
  dni: string | null;
173
176
  created_at: Date;
174
177
  updated_at: Date;
178
+ referralCode: string;
175
179
  shortId: number;
176
180
  firstTimeMiExpo: boolean;
177
181
  isPhoneVerified: boolean;
@@ -210,6 +214,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
210
214
  dni: string | null;
211
215
  created_at: Date;
212
216
  updated_at: Date;
217
+ referralCode: string;
213
218
  shortId: number;
214
219
  firstTimeMiExpo: boolean;
215
220
  isPhoneVerified: boolean;
@@ -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.ZodString;
272
278
  tags: z.ZodArray<z.ZodObject<{
273
279
  id: z.ZodString;
274
280
  name: z.ZodString;
@@ -328,6 +334,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
328
334
  dni: string | null;
329
335
  created_at: string;
330
336
  updated_at: string;
337
+ referralCode: string;
331
338
  shortId: number;
332
339
  firstTimeMiExpo: boolean;
333
340
  isPhoneVerified: boolean;
@@ -364,6 +371,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
364
371
  dni: string | null;
365
372
  created_at: string;
366
373
  updated_at: string;
374
+ referralCode: string;
367
375
  shortId: number;
368
376
  firstTimeMiExpo: boolean;
369
377
  isPhoneVerified: boolean;
@@ -404,6 +412,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
404
412
  dni: string | null;
405
413
  created_at: string;
406
414
  updated_at: string;
415
+ referralCode: string;
407
416
  shortId: number;
408
417
  firstTimeMiExpo: boolean;
409
418
  isPhoneVerified: boolean;
@@ -442,6 +451,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
442
451
  dni: string | null;
443
452
  created_at: string;
444
453
  updated_at: string;
454
+ referralCode: string;
445
455
  shortId: number;
446
456
  firstTimeMiExpo: boolean;
447
457
  isPhoneVerified: boolean;
@@ -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.ZodString;
34
35
  }, {
35
36
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
36
37
  id: z.ZodString;
@@ -92,6 +93,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
92
93
  dni: string | null;
93
94
  created_at: Date;
94
95
  updated_at: Date;
96
+ referralCode: string;
95
97
  shortId: number;
96
98
  firstTimeMiExpo: boolean;
97
99
  isPhoneVerified: boolean;
@@ -127,6 +129,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
127
129
  dni: string | null;
128
130
  created_at: Date;
129
131
  updated_at: Date;
132
+ referralCode: string;
130
133
  shortId: number;
131
134
  firstTimeMiExpo: boolean;
132
135
  isPhoneVerified: boolean;
@@ -166,6 +169,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
166
169
  dni: string | null;
167
170
  created_at: Date;
168
171
  updated_at: Date;
172
+ referralCode: string;
169
173
  shortId: number;
170
174
  firstTimeMiExpo: boolean;
171
175
  isPhoneVerified: boolean;
@@ -203,6 +207,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
203
207
  dni: string | null;
204
208
  created_at: Date;
205
209
  updated_at: Date;
210
+ referralCode: string;
206
211
  shortId: number;
207
212
  firstTimeMiExpo: boolean;
208
213
  isPhoneVerified: boolean;
@@ -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.ZodString;
264
270
  tags: z.ZodArray<z.ZodObject<{
265
271
  id: z.ZodString;
266
272
  name: z.ZodString;
@@ -315,6 +321,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
315
321
  dni: string | null;
316
322
  created_at: string;
317
323
  updated_at: string;
324
+ referralCode: string;
318
325
  shortId: number;
319
326
  firstTimeMiExpo: boolean;
320
327
  isPhoneVerified: boolean;
@@ -350,6 +357,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
350
357
  dni: string | null;
351
358
  created_at: string;
352
359
  updated_at: string;
360
+ referralCode: string;
353
361
  shortId: number;
354
362
  firstTimeMiExpo: boolean;
355
363
  isPhoneVerified: boolean;
@@ -389,6 +397,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
389
397
  dni: string | null;
390
398
  created_at: string;
391
399
  updated_at: string;
400
+ referralCode: string;
392
401
  shortId: number;
393
402
  firstTimeMiExpo: boolean;
394
403
  isPhoneVerified: boolean;
@@ -426,6 +435,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
426
435
  dni: string | null;
427
436
  created_at: string;
428
437
  updated_at: string;
438
+ referralCode: string;
429
439
  shortId: number;
430
440
  firstTimeMiExpo: boolean;
431
441
  isPhoneVerified: boolean;
@@ -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.ZodString;
488
499
  }, {
489
500
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
490
501
  id: z.ZodString;
@@ -546,6 +557,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
546
557
  dni: string | null;
547
558
  created_at: Date;
548
559
  updated_at: Date;
560
+ referralCode: string;
549
561
  shortId: number;
550
562
  firstTimeMiExpo: boolean;
551
563
  isPhoneVerified: boolean;
@@ -581,6 +593,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
581
593
  dni: string | null;
582
594
  created_at: Date;
583
595
  updated_at: Date;
596
+ referralCode: string;
584
597
  shortId: number;
585
598
  firstTimeMiExpo: boolean;
586
599
  isPhoneVerified: boolean;
@@ -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.ZodString;
640
654
  }, {
641
655
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
642
656
  id: z.ZodString;
@@ -698,6 +712,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
698
712
  dni: string | null;
699
713
  created_at: Date;
700
714
  updated_at: Date;
715
+ referralCode: string;
701
716
  shortId: number;
702
717
  firstTimeMiExpo: boolean;
703
718
  isPhoneVerified: boolean;
@@ -733,6 +748,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
733
748
  dni: string | null;
734
749
  created_at: Date;
735
750
  updated_at: Date;
751
+ referralCode: string;
736
752
  shortId: number;
737
753
  firstTimeMiExpo: boolean;
738
754
  isPhoneVerified: boolean;
@@ -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.ZodString;
33
34
  }, "password">, {
34
35
  residenceLocation: z.ZodNullable<z.ZodObject<{
35
36
  id: z.ZodString;
@@ -154,6 +155,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
154
155
  dni: string | null;
155
156
  created_at: Date;
156
157
  updated_at: Date;
158
+ referralCode: string;
157
159
  shortId: number;
158
160
  firstTimeMiExpo: boolean;
159
161
  isPhoneVerified: boolean;
@@ -210,6 +212,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
210
212
  dni: string | null;
211
213
  created_at: Date;
212
214
  updated_at: Date;
215
+ referralCode: string;
213
216
  shortId: number;
214
217
  firstTimeMiExpo: boolean;
215
218
  isPhoneVerified: boolean;
@@ -275,6 +278,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
275
278
  dni: z.ZodNullable<z.ZodString>;
276
279
  created_at: z.ZodString;
277
280
  updated_at: z.ZodString;
281
+ referralCode: z.ZodString;
278
282
  shortId: z.ZodNumber;
279
283
  firstTimeMiExpo: z.ZodBoolean;
280
284
  isPhoneVerified: z.ZodBoolean;
@@ -406,6 +410,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
406
410
  dni: string | null;
407
411
  created_at: string;
408
412
  updated_at: string;
413
+ referralCode: string;
409
414
  shortId: number;
410
415
  firstTimeMiExpo: boolean;
411
416
  isPhoneVerified: boolean;
@@ -462,6 +467,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
462
467
  dni: string | null;
463
468
  created_at: string;
464
469
  updated_at: string;
470
+ referralCode: string;
465
471
  shortId: number;
466
472
  firstTimeMiExpo: boolean;
467
473
  isPhoneVerified: boolean;
@@ -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").ZodString;
32
33
  }, "strip", import("zod").ZodTypeAny, {
33
34
  id: string;
34
35
  username: string | null;
@@ -42,6 +43,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
42
43
  dni: string | null;
43
44
  created_at: Date;
44
45
  updated_at: Date;
46
+ referralCode: string;
45
47
  shortId: number;
46
48
  firstTimeMiExpo: boolean;
47
49
  isPhoneVerified: boolean;
@@ -66,6 +68,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
66
68
  dni: string | null;
67
69
  created_at: Date;
68
70
  updated_at: Date;
71
+ referralCode: string;
69
72
  shortId: number;
70
73
  firstTimeMiExpo: boolean;
71
74
  isPhoneVerified: boolean;
@@ -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").ZodString;
114
118
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
115
119
  id: string;
116
120
  username: string | null;
@@ -124,6 +128,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
124
128
  dni: string | null;
125
129
  created_at: string;
126
130
  updated_at: string;
131
+ referralCode: string;
127
132
  shortId: number;
128
133
  firstTimeMiExpo: boolean;
129
134
  isPhoneVerified: boolean;
@@ -148,6 +153,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
148
153
  dni: string | null;
149
154
  created_at: string;
150
155
  updated_at: string;
156
+ referralCode: string;
151
157
  shortId: number;
152
158
  firstTimeMiExpo: boolean;
153
159
  isPhoneVerified: boolean;
@@ -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.ZodString;
34
35
  }, {
35
36
  tags: z.ZodArray<z.ZodObject<{
36
37
  id: z.ZodString;
@@ -73,6 +74,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
73
74
  dni: string | null;
74
75
  created_at: Date;
75
76
  updated_at: Date;
77
+ referralCode: string;
76
78
  shortId: number;
77
79
  firstTimeMiExpo: boolean;
78
80
  isPhoneVerified: boolean;
@@ -105,6 +107,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
105
107
  dni: string | null;
106
108
  created_at: Date;
107
109
  updated_at: Date;
110
+ referralCode: string;
108
111
  shortId: number;
109
112
  firstTimeMiExpo: boolean;
110
113
  isPhoneVerified: boolean;
@@ -141,6 +144,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
141
144
  dni: string | null;
142
145
  created_at: Date;
143
146
  updated_at: Date;
147
+ referralCode: string;
144
148
  shortId: number;
145
149
  firstTimeMiExpo: boolean;
146
150
  isPhoneVerified: boolean;
@@ -175,6 +179,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
175
179
  dni: string | null;
176
180
  created_at: Date;
177
181
  updated_at: Date;
182
+ referralCode: string;
178
183
  shortId: number;
179
184
  firstTimeMiExpo: boolean;
180
185
  isPhoneVerified: boolean;
@@ -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.ZodString;
233
239
  tags: z.ZodArray<z.ZodObject<{
234
240
  id: z.ZodString;
235
241
  name: z.ZodString;
@@ -271,6 +277,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
271
277
  dni: string | null;
272
278
  created_at: string;
273
279
  updated_at: string;
280
+ referralCode: string;
274
281
  shortId: number;
275
282
  firstTimeMiExpo: boolean;
276
283
  isPhoneVerified: boolean;
@@ -303,6 +310,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
303
310
  dni: string | null;
304
311
  created_at: string;
305
312
  updated_at: string;
313
+ referralCode: string;
306
314
  shortId: number;
307
315
  firstTimeMiExpo: boolean;
308
316
  isPhoneVerified: boolean;
@@ -339,6 +347,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
339
347
  dni: string | null;
340
348
  created_at: string;
341
349
  updated_at: string;
350
+ referralCode: string;
342
351
  shortId: number;
343
352
  firstTimeMiExpo: boolean;
344
353
  isPhoneVerified: boolean;
@@ -373,6 +382,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
373
382
  dni: string | null;
374
383
  created_at: string;
375
384
  updated_at: string;
385
+ referralCode: string;
376
386
  shortId: number;
377
387
  firstTimeMiExpo: boolean;
378
388
  isPhoneVerified: boolean;
@@ -31,6 +31,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
31
31
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
32
32
  created_at: z.ZodDate;
33
33
  updated_at: z.ZodDate;
34
+ referralCode: z.ZodString;
34
35
  }, {
35
36
  tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
36
37
  id: z.ZodString;
@@ -100,6 +101,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
100
101
  dni: string | null;
101
102
  created_at: Date;
102
103
  updated_at: Date;
104
+ referralCode: string;
103
105
  shortId: number;
104
106
  firstTimeMiExpo: boolean;
105
107
  isPhoneVerified: boolean;
@@ -137,6 +139,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
137
139
  dni: string | null;
138
140
  created_at: Date;
139
141
  updated_at: Date;
142
+ referralCode: string;
140
143
  shortId: number;
141
144
  firstTimeMiExpo: boolean;
142
145
  isPhoneVerified: boolean;
@@ -178,6 +181,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
178
181
  dni: string | null;
179
182
  created_at: Date;
180
183
  updated_at: Date;
184
+ referralCode: string;
181
185
  shortId: number;
182
186
  firstTimeMiExpo: boolean;
183
187
  isPhoneVerified: boolean;
@@ -217,6 +221,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
217
221
  dni: string | null;
218
222
  created_at: Date;
219
223
  updated_at: Date;
224
+ referralCode: string;
220
225
  shortId: number;
221
226
  firstTimeMiExpo: boolean;
222
227
  isPhoneVerified: boolean;
@@ -277,6 +282,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
277
282
  movedToTrashDate: z.ZodNullable<z.ZodString>;
278
283
  created_at: z.ZodString;
279
284
  updated_at: z.ZodString;
285
+ referralCode: z.ZodString;
280
286
  tags: z.ZodArray<z.ZodObject<{
281
287
  id: z.ZodString;
282
288
  name: z.ZodString;
@@ -341,6 +347,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
341
347
  dni: string | null;
342
348
  created_at: string;
343
349
  updated_at: string;
350
+ referralCode: string;
344
351
  shortId: number;
345
352
  firstTimeMiExpo: boolean;
346
353
  isPhoneVerified: boolean;
@@ -378,6 +385,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
378
385
  dni: string | null;
379
386
  created_at: string;
380
387
  updated_at: string;
388
+ referralCode: string;
381
389
  shortId: number;
382
390
  firstTimeMiExpo: boolean;
383
391
  isPhoneVerified: boolean;
@@ -419,6 +427,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
419
427
  dni: string | null;
420
428
  created_at: string;
421
429
  updated_at: string;
430
+ referralCode: string;
422
431
  shortId: number;
423
432
  firstTimeMiExpo: boolean;
424
433
  isPhoneVerified: boolean;
@@ -458,6 +467,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
458
467
  dni: string | null;
459
468
  created_at: string;
460
469
  updated_at: string;
470
+ referralCode: string;
461
471
  shortId: number;
462
472
  firstTimeMiExpo: boolean;
463
473
  isPhoneVerified: boolean;
@@ -0,0 +1,18 @@
1
+ import z from 'zod';
2
+ export declare const findReferralCodeExistsResponseSchema: z.ZodObject<{
3
+ exists: z.ZodBoolean;
4
+ }, "strip", z.ZodTypeAny, {
5
+ exists: boolean;
6
+ }, {
7
+ exists: boolean;
8
+ }>;
9
+ declare const FindReferralCodeExistsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
10
+ exists: z.ZodBoolean;
11
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
12
+ exists: boolean;
13
+ }, {
14
+ exists: boolean;
15
+ }>>;
16
+ export declare class FindReferralCodeExistsResponseDto extends FindReferralCodeExistsResponseDto_base {
17
+ }
18
+ export {};
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.FindReferralCodeExistsResponseDto = exports.findReferralCodeExistsResponseSchema = void 0;
7
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
+ const zod_1 = __importDefault(require("zod"));
9
+ exports.findReferralCodeExistsResponseSchema = zod_1.default.object({
10
+ exists: zod_1.default.boolean(),
11
+ });
12
+ class FindReferralCodeExistsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findReferralCodeExistsResponseSchema) {
13
+ }
14
+ exports.FindReferralCodeExistsResponseDto = FindReferralCodeExistsResponseDto;
15
+ //# sourceMappingURL=find-referral-code-exists.dto.js.map
@@ -0,0 +1,18 @@
1
+ import z from 'zod';
2
+ export declare const findReferralCodeUsageResponseSchema: z.ZodObject<{
3
+ amount: z.ZodNumber;
4
+ }, "strip", z.ZodTypeAny, {
5
+ amount: number;
6
+ }, {
7
+ amount: number;
8
+ }>;
9
+ declare const FindReferralCodeUsageResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
10
+ amount: z.ZodNumber;
11
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
12
+ amount: number;
13
+ }, {
14
+ amount: number;
15
+ }>>;
16
+ export declare class FindReferralCodeUsageResponseDto extends FindReferralCodeUsageResponseDto_base {
17
+ }
18
+ export {};
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.FindReferralCodeUsageResponseDto = exports.findReferralCodeUsageResponseSchema = void 0;
7
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
+ const zod_1 = __importDefault(require("zod"));
9
+ exports.findReferralCodeUsageResponseSchema = zod_1.default.object({
10
+ amount: zod_1.default.number(),
11
+ });
12
+ class FindReferralCodeUsageResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findReferralCodeUsageResponseSchema) {
13
+ }
14
+ exports.FindReferralCodeUsageResponseDto = FindReferralCodeUsageResponseDto;
15
+ //# sourceMappingURL=find-referral-code-usage.dto.js.map