expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -0
- package/dist/types/prisma-schema/edge.js +5 -3
- package/dist/types/prisma-schema/index-browser.js +2 -0
- package/dist/types/prisma-schema/index.d.ts +118 -2
- package/dist/types/prisma-schema/index.js +5 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +4 -0
- package/dist/types/prisma-schema/wasm.js +2 -0
- package/dist/types/schema.d.ts +20 -0
- package/package.json +1 -1
@@ -29,6 +29,7 @@ export declare const 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;
|
@@ -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.ZodNullable<z.ZodString>;
|
34
35
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
36
37
|
id: z.ZodString;
|
@@ -112,6 +113,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
112
113
|
residenceLocationId: string | null;
|
113
114
|
isInTrash: boolean;
|
114
115
|
movedToTrashDate: Date | null;
|
116
|
+
referralCode: string | null;
|
115
117
|
tags: {
|
116
118
|
id: string;
|
117
119
|
name: string;
|
@@ -149,6 +151,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
149
151
|
residenceLocationId: string | null;
|
150
152
|
isInTrash: boolean;
|
151
153
|
movedToTrashDate: Date | null;
|
154
|
+
referralCode: string | null;
|
152
155
|
tags: {
|
153
156
|
id: string;
|
154
157
|
name: string;
|
@@ -190,6 +193,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
190
193
|
residenceLocationId: string | null;
|
191
194
|
isInTrash: boolean;
|
192
195
|
movedToTrashDate: Date | null;
|
196
|
+
referralCode: string | null;
|
193
197
|
tags: {
|
194
198
|
id: string;
|
195
199
|
name: string;
|
@@ -229,6 +233,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
229
233
|
residenceLocationId: string | null;
|
230
234
|
isInTrash: boolean;
|
231
235
|
movedToTrashDate: Date | null;
|
236
|
+
referralCode: string | null;
|
232
237
|
tags: {
|
233
238
|
id: string;
|
234
239
|
name: string;
|
@@ -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.ZodNullable<z.ZodString>;
|
280
286
|
tags: z.ZodArray<z.ZodObject<{
|
281
287
|
id: z.ZodString;
|
282
288
|
name: z.ZodString;
|
@@ -353,6 +359,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
353
359
|
residenceLocationId: string | null;
|
354
360
|
isInTrash: boolean;
|
355
361
|
movedToTrashDate: string | null;
|
362
|
+
referralCode: string | null;
|
356
363
|
tags: {
|
357
364
|
id: string;
|
358
365
|
name: string;
|
@@ -390,6 +397,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
390
397
|
residenceLocationId: string | null;
|
391
398
|
isInTrash: boolean;
|
392
399
|
movedToTrashDate: string | null;
|
400
|
+
referralCode: string | null;
|
393
401
|
tags: {
|
394
402
|
id: string;
|
395
403
|
name: string;
|
@@ -431,6 +439,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
431
439
|
residenceLocationId: string | null;
|
432
440
|
isInTrash: boolean;
|
433
441
|
movedToTrashDate: string | null;
|
442
|
+
referralCode: string | null;
|
434
443
|
tags: {
|
435
444
|
id: string;
|
436
445
|
name: string;
|
@@ -470,6 +479,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
470
479
|
residenceLocationId: string | null;
|
471
480
|
isInTrash: boolean;
|
472
481
|
movedToTrashDate: string | null;
|
482
|
+
referralCode: string | null;
|
473
483
|
tags: {
|
474
484
|
id: string;
|
475
485
|
name: string;
|
@@ -31,6 +31,7 @@ export declare const findTrashResponseSchema: 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
|
}, "id" | "phoneNumber" | "fullName" | "profilePictureUrl" | "created_at" | "isInTrash" | "movedToTrashDate">, "strip", z.ZodTypeAny, {
|
35
36
|
id: string;
|
36
37
|
phoneNumber: string;
|
@@ -31,6 +31,7 @@ export declare const findWithActiveChatResponseSchema: 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;
|
@@ -194,6 +195,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
194
195
|
residenceLocationId: string | null;
|
195
196
|
isInTrash: boolean;
|
196
197
|
movedToTrashDate: Date | null;
|
198
|
+
referralCode: string | null;
|
197
199
|
messages: {
|
198
200
|
message: {
|
199
201
|
id: string;
|
@@ -248,6 +250,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
248
250
|
residenceLocationId: string | null;
|
249
251
|
isInTrash: boolean;
|
250
252
|
movedToTrashDate: Date | null;
|
253
|
+
referralCode: string | null;
|
251
254
|
messages: {
|
252
255
|
message: {
|
253
256
|
id: string;
|
@@ -306,6 +309,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
306
309
|
residenceLocationId: string | null;
|
307
310
|
isInTrash: boolean;
|
308
311
|
movedToTrashDate: Date | null;
|
312
|
+
referralCode: string | null;
|
309
313
|
messages: {
|
310
314
|
message: {
|
311
315
|
id: string;
|
@@ -362,6 +366,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
362
366
|
residenceLocationId: string | null;
|
363
367
|
isInTrash: boolean;
|
364
368
|
movedToTrashDate: Date | null;
|
369
|
+
referralCode: string | null;
|
365
370
|
messages: {
|
366
371
|
message: {
|
367
372
|
id: string;
|
@@ -427,6 +432,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
427
432
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
428
433
|
created_at: z.ZodString;
|
429
434
|
updated_at: z.ZodString;
|
435
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
430
436
|
tags: z.ZodArray<z.ZodObject<{
|
431
437
|
id: z.ZodString;
|
432
438
|
name: z.ZodString;
|
@@ -586,6 +592,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
586
592
|
residenceLocationId: string | null;
|
587
593
|
isInTrash: boolean;
|
588
594
|
movedToTrashDate: string | null;
|
595
|
+
referralCode: string | null;
|
589
596
|
messages: {
|
590
597
|
message: {
|
591
598
|
id: string;
|
@@ -640,6 +647,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
640
647
|
residenceLocationId: string | null;
|
641
648
|
isInTrash: boolean;
|
642
649
|
movedToTrashDate: string | null;
|
650
|
+
referralCode: string | null;
|
643
651
|
messages: {
|
644
652
|
message: {
|
645
653
|
id: string;
|
@@ -698,6 +706,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
698
706
|
residenceLocationId: string | null;
|
699
707
|
isInTrash: boolean;
|
700
708
|
movedToTrashDate: string | null;
|
709
|
+
referralCode: string | null;
|
701
710
|
messages: {
|
702
711
|
message: {
|
703
712
|
id: string;
|
@@ -754,6 +763,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
754
763
|
residenceLocationId: string | null;
|
755
764
|
isInTrash: boolean;
|
756
765
|
movedToTrashDate: string | null;
|
766
|
+
referralCode: string | null;
|
757
767
|
messages: {
|
758
768
|
message: {
|
759
769
|
id: string;
|
@@ -29,6 +29,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
29
29
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
30
30
|
created_at: import("zod").ZodString;
|
31
31
|
updated_at: import("zod").ZodString;
|
32
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
32
33
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
33
34
|
id: string;
|
34
35
|
username: string | null;
|
@@ -54,6 +55,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
54
55
|
residenceLocationId: string | null;
|
55
56
|
isInTrash: boolean;
|
56
57
|
movedToTrashDate: string | null;
|
58
|
+
referralCode: string | null;
|
57
59
|
}, {
|
58
60
|
id: string;
|
59
61
|
username: string | null;
|
@@ -78,6 +80,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
78
80
|
residenceLocationId: string | null;
|
79
81
|
isInTrash: boolean;
|
80
82
|
movedToTrashDate: string | null;
|
83
|
+
referralCode: string | null;
|
81
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
82
85
|
}>>;
|
83
86
|
export declare class ProfileDto extends ProfileDto_base {
|
@@ -275,6 +275,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
275
275
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
276
276
|
created_at: z.ZodDate;
|
277
277
|
updated_at: z.ZodDate;
|
278
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
278
279
|
}, "strip", z.ZodTypeAny, {
|
279
280
|
id: string;
|
280
281
|
username: string | null;
|
@@ -300,6 +301,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
300
301
|
residenceLocationId: string | null;
|
301
302
|
isInTrash: boolean;
|
302
303
|
movedToTrashDate: Date | null;
|
304
|
+
referralCode: string | null;
|
303
305
|
}, {
|
304
306
|
id: string;
|
305
307
|
username: string | null;
|
@@ -324,6 +326,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
324
326
|
residenceLocationId: string | null;
|
325
327
|
isInTrash: boolean;
|
326
328
|
movedToTrashDate: Date | null;
|
329
|
+
referralCode: string | null;
|
327
330
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
328
331
|
}>;
|
329
332
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -357,6 +360,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
357
360
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
358
361
|
created_at: z.ZodString;
|
359
362
|
updated_at: z.ZodString;
|
363
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
360
364
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
361
365
|
id: string;
|
362
366
|
username: string | null;
|
@@ -382,6 +386,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
382
386
|
residenceLocationId: string | null;
|
383
387
|
isInTrash: boolean;
|
384
388
|
movedToTrashDate: string | null;
|
389
|
+
referralCode: string | null;
|
385
390
|
}, {
|
386
391
|
id: string;
|
387
392
|
username: string | null;
|
@@ -406,6 +411,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
406
411
|
residenceLocationId: string | null;
|
407
412
|
isInTrash: boolean;
|
408
413
|
movedToTrashDate: string | null;
|
414
|
+
referralCode: string | null;
|
409
415
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
410
416
|
}>>;
|
411
417
|
export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
|
@@ -30,6 +30,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
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
|
}, "strip", z.ZodTypeAny, {
|
34
35
|
id: string;
|
35
36
|
username: string | null;
|
@@ -55,6 +56,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
55
56
|
residenceLocationId: string | null;
|
56
57
|
isInTrash: boolean;
|
57
58
|
movedToTrashDate: Date | null;
|
59
|
+
referralCode: string | null;
|
58
60
|
}, {
|
59
61
|
id: string;
|
60
62
|
username: string | null;
|
@@ -79,5 +81,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
79
81
|
residenceLocationId: string | null;
|
80
82
|
isInTrash: boolean;
|
81
83
|
movedToTrashDate: Date | null;
|
84
|
+
referralCode: string | null;
|
82
85
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
83
86
|
}>;
|