expo-backend-types 0.53.0 → 0.54.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/event/dto/get-all-statistics.dto.d.ts +10 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- 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-referral-code-exists.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +17 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +605 -26
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +10 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +120 -0
- package/package.json +2 -1
@@ -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
|
@@ -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.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.ZodString;
|
34
35
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<{
|
36
37
|
id: z.ZodString;
|
@@ -182,6 +183,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
182
183
|
dni: string | null;
|
183
184
|
created_at: Date;
|
184
185
|
updated_at: Date;
|
186
|
+
referralCode: string;
|
185
187
|
shortId: number;
|
186
188
|
firstTimeMiExpo: boolean;
|
187
189
|
isPhoneVerified: boolean;
|
@@ -236,6 +238,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
236
238
|
dni: string | null;
|
237
239
|
created_at: Date;
|
238
240
|
updated_at: Date;
|
241
|
+
referralCode: string;
|
239
242
|
shortId: number;
|
240
243
|
firstTimeMiExpo: boolean;
|
241
244
|
isPhoneVerified: boolean;
|
@@ -294,6 +297,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
294
297
|
dni: string | null;
|
295
298
|
created_at: Date;
|
296
299
|
updated_at: Date;
|
300
|
+
referralCode: string;
|
297
301
|
shortId: number;
|
298
302
|
firstTimeMiExpo: boolean;
|
299
303
|
isPhoneVerified: boolean;
|
@@ -350,6 +354,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
350
354
|
dni: string | null;
|
351
355
|
created_at: Date;
|
352
356
|
updated_at: Date;
|
357
|
+
referralCode: string;
|
353
358
|
shortId: number;
|
354
359
|
firstTimeMiExpo: boolean;
|
355
360
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
430
436
|
tags: z.ZodArray<z.ZodObject<{
|
431
437
|
id: z.ZodString;
|
432
438
|
name: z.ZodString;
|
@@ -574,6 +580,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
574
580
|
dni: string | null;
|
575
581
|
created_at: string;
|
576
582
|
updated_at: string;
|
583
|
+
referralCode: string;
|
577
584
|
shortId: number;
|
578
585
|
firstTimeMiExpo: boolean;
|
579
586
|
isPhoneVerified: boolean;
|
@@ -628,6 +635,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
628
635
|
dni: string | null;
|
629
636
|
created_at: string;
|
630
637
|
updated_at: string;
|
638
|
+
referralCode: string;
|
631
639
|
shortId: number;
|
632
640
|
firstTimeMiExpo: boolean;
|
633
641
|
isPhoneVerified: boolean;
|
@@ -686,6 +694,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
686
694
|
dni: string | null;
|
687
695
|
created_at: string;
|
688
696
|
updated_at: string;
|
697
|
+
referralCode: string;
|
689
698
|
shortId: number;
|
690
699
|
firstTimeMiExpo: boolean;
|
691
700
|
isPhoneVerified: boolean;
|
@@ -742,6 +751,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
742
751
|
dni: string | null;
|
743
752
|
created_at: string;
|
744
753
|
updated_at: string;
|
754
|
+
referralCode: string;
|
745
755
|
shortId: number;
|
746
756
|
firstTimeMiExpo: boolean;
|
747
757
|
isPhoneVerified: boolean;
|
@@ -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").ZodString;
|
32
33
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
33
34
|
id: string;
|
34
35
|
username: string | null;
|
@@ -42,6 +43,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
42
43
|
dni: string | null;
|
43
44
|
created_at: string;
|
44
45
|
updated_at: string;
|
46
|
+
referralCode: string;
|
45
47
|
shortId: number;
|
46
48
|
firstTimeMiExpo: boolean;
|
47
49
|
isPhoneVerified: boolean;
|
@@ -66,6 +68,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
66
68
|
dni: string | null;
|
67
69
|
created_at: string;
|
68
70
|
updated_at: string;
|
71
|
+
referralCode: string;
|
69
72
|
shortId: number;
|
70
73
|
firstTimeMiExpo: boolean;
|
71
74
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
278
279
|
}, "strip", z.ZodTypeAny, {
|
279
280
|
id: string;
|
280
281
|
username: string | null;
|
@@ -288,6 +289,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
288
289
|
dni: string | null;
|
289
290
|
created_at: Date;
|
290
291
|
updated_at: Date;
|
292
|
+
referralCode: string;
|
291
293
|
shortId: number;
|
292
294
|
firstTimeMiExpo: boolean;
|
293
295
|
isPhoneVerified: boolean;
|
@@ -312,6 +314,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
312
314
|
dni: string | null;
|
313
315
|
created_at: Date;
|
314
316
|
updated_at: Date;
|
317
|
+
referralCode: string;
|
315
318
|
shortId: number;
|
316
319
|
firstTimeMiExpo: boolean;
|
317
320
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
360
364
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
361
365
|
id: string;
|
362
366
|
username: string | null;
|
@@ -370,6 +374,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
370
374
|
dni: string | null;
|
371
375
|
created_at: string;
|
372
376
|
updated_at: string;
|
377
|
+
referralCode: string;
|
373
378
|
shortId: number;
|
374
379
|
firstTimeMiExpo: boolean;
|
375
380
|
isPhoneVerified: boolean;
|
@@ -394,6 +399,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
394
399
|
dni: string | null;
|
395
400
|
created_at: string;
|
396
401
|
updated_at: string;
|
402
|
+
referralCode: string;
|
397
403
|
shortId: number;
|
398
404
|
firstTimeMiExpo: boolean;
|
399
405
|
isPhoneVerified: boolean;
|
@@ -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.ZodString;
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
34
35
|
id: string;
|
35
36
|
username: string | null;
|
@@ -43,6 +44,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
43
44
|
dni: string | null;
|
44
45
|
created_at: Date;
|
45
46
|
updated_at: Date;
|
47
|
+
referralCode: string;
|
46
48
|
shortId: number;
|
47
49
|
firstTimeMiExpo: boolean;
|
48
50
|
isPhoneVerified: boolean;
|
@@ -67,6 +69,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
67
69
|
dni: string | null;
|
68
70
|
created_at: Date;
|
69
71
|
updated_at: Date;
|
72
|
+
referralCode: string;
|
70
73
|
shortId: number;
|
71
74
|
firstTimeMiExpo: boolean;
|
72
75
|
isPhoneVerified: boolean;
|
@@ -141,5 +141,6 @@ exports.profileSchema = zod_1.default.object({
|
|
141
141
|
movedToTrashDate: zod_1.default.coerce.date().nullable(),
|
142
142
|
created_at: zod_1.default.date(),
|
143
143
|
updated_at: zod_1.default.date(),
|
144
|
+
referralCode: zod_1.default.string(),
|
144
145
|
});
|
145
146
|
//# sourceMappingURL=profile.schema.js.map
|
@@ -53,6 +53,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
53
53
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
54
54
|
created_at: z.ZodDate;
|
55
55
|
updated_at: z.ZodDate;
|
56
|
+
referralCode: z.ZodString;
|
56
57
|
}, "strip", z.ZodTypeAny, {
|
57
58
|
id: string;
|
58
59
|
username: string | null;
|
@@ -66,6 +67,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
66
67
|
dni: string | null;
|
67
68
|
created_at: Date;
|
68
69
|
updated_at: Date;
|
70
|
+
referralCode: string;
|
69
71
|
shortId: number;
|
70
72
|
firstTimeMiExpo: boolean;
|
71
73
|
isPhoneVerified: boolean;
|
@@ -90,6 +92,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
90
92
|
dni: string | null;
|
91
93
|
created_at: Date;
|
92
94
|
updated_at: Date;
|
95
|
+
referralCode: string;
|
93
96
|
shortId: number;
|
94
97
|
firstTimeMiExpo: boolean;
|
95
98
|
isPhoneVerified: boolean;
|
@@ -118,6 +121,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
118
121
|
dni: string | null;
|
119
122
|
created_at: Date;
|
120
123
|
updated_at: Date;
|
124
|
+
referralCode: string;
|
121
125
|
shortId: number;
|
122
126
|
firstTimeMiExpo: boolean;
|
123
127
|
isPhoneVerified: boolean;
|
@@ -144,6 +148,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
144
148
|
dni: string | null;
|
145
149
|
created_at: Date;
|
146
150
|
updated_at: Date;
|
151
|
+
referralCode: string;
|
147
152
|
shortId: number;
|
148
153
|
firstTimeMiExpo: boolean;
|
149
154
|
isPhoneVerified: boolean;
|
@@ -191,6 +196,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
191
196
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
192
197
|
created_at: z.ZodString;
|
193
198
|
updated_at: z.ZodString;
|
199
|
+
referralCode: z.ZodString;
|
194
200
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
195
201
|
id: string;
|
196
202
|
username: string | null;
|
@@ -204,6 +210,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
204
210
|
dni: string | null;
|
205
211
|
created_at: string;
|
206
212
|
updated_at: string;
|
213
|
+
referralCode: string;
|
207
214
|
shortId: number;
|
208
215
|
firstTimeMiExpo: boolean;
|
209
216
|
isPhoneVerified: boolean;
|
@@ -228,6 +235,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
228
235
|
dni: string | null;
|
229
236
|
created_at: string;
|
230
237
|
updated_at: string;
|
238
|
+
referralCode: string;
|
231
239
|
shortId: number;
|
232
240
|
firstTimeMiExpo: boolean;
|
233
241
|
isPhoneVerified: boolean;
|
@@ -256,6 +264,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
256
264
|
dni: string | null;
|
257
265
|
created_at: string;
|
258
266
|
updated_at: string;
|
267
|
+
referralCode: string;
|
259
268
|
shortId: number;
|
260
269
|
firstTimeMiExpo: boolean;
|
261
270
|
isPhoneVerified: boolean;
|
@@ -282,6 +291,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
282
291
|
dni: string | null;
|
283
292
|
created_at: string;
|
284
293
|
updated_at: string;
|
294
|
+
referralCode: string;
|
285
295
|
shortId: number;
|
286
296
|
firstTimeMiExpo: boolean;
|
287
297
|
isPhoneVerified: boolean;
|
@@ -53,6 +53,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
53
53
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
54
54
|
created_at: z.ZodDate;
|
55
55
|
updated_at: z.ZodDate;
|
56
|
+
referralCode: z.ZodString;
|
56
57
|
}, "strip", z.ZodTypeAny, {
|
57
58
|
id: string;
|
58
59
|
username: string | null;
|
@@ -66,6 +67,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
66
67
|
dni: string | null;
|
67
68
|
created_at: Date;
|
68
69
|
updated_at: Date;
|
70
|
+
referralCode: string;
|
69
71
|
shortId: number;
|
70
72
|
firstTimeMiExpo: boolean;
|
71
73
|
isPhoneVerified: boolean;
|
@@ -90,6 +92,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
90
92
|
dni: string | null;
|
91
93
|
created_at: Date;
|
92
94
|
updated_at: Date;
|
95
|
+
referralCode: string;
|
93
96
|
shortId: number;
|
94
97
|
firstTimeMiExpo: boolean;
|
95
98
|
isPhoneVerified: boolean;
|
@@ -118,6 +121,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
118
121
|
dni: string | null;
|
119
122
|
created_at: Date;
|
120
123
|
updated_at: Date;
|
124
|
+
referralCode: string;
|
121
125
|
shortId: number;
|
122
126
|
firstTimeMiExpo: boolean;
|
123
127
|
isPhoneVerified: boolean;
|
@@ -144,6 +148,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
144
148
|
dni: string | null;
|
145
149
|
created_at: Date;
|
146
150
|
updated_at: Date;
|
151
|
+
referralCode: string;
|
147
152
|
shortId: number;
|
148
153
|
firstTimeMiExpo: boolean;
|
149
154
|
isPhoneVerified: boolean;
|
@@ -191,6 +196,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
191
196
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
192
197
|
created_at: z.ZodString;
|
193
198
|
updated_at: z.ZodString;
|
199
|
+
referralCode: z.ZodString;
|
194
200
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
195
201
|
id: string;
|
196
202
|
username: string | null;
|
@@ -204,6 +210,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
204
210
|
dni: string | null;
|
205
211
|
created_at: string;
|
206
212
|
updated_at: string;
|
213
|
+
referralCode: string;
|
207
214
|
shortId: number;
|
208
215
|
firstTimeMiExpo: boolean;
|
209
216
|
isPhoneVerified: boolean;
|
@@ -228,6 +235,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
228
235
|
dni: string | null;
|
229
236
|
created_at: string;
|
230
237
|
updated_at: string;
|
238
|
+
referralCode: string;
|
231
239
|
shortId: number;
|
232
240
|
firstTimeMiExpo: boolean;
|
233
241
|
isPhoneVerified: boolean;
|
@@ -256,6 +264,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
256
264
|
dni: string | null;
|
257
265
|
created_at: string;
|
258
266
|
updated_at: string;
|
267
|
+
referralCode: string;
|
259
268
|
shortId: number;
|
260
269
|
firstTimeMiExpo: boolean;
|
261
270
|
isPhoneVerified: boolean;
|
@@ -282,6 +291,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
282
291
|
dni: string | null;
|
283
292
|
created_at: string;
|
284
293
|
updated_at: string;
|
294
|
+
referralCode: string;
|
285
295
|
shortId: number;
|
286
296
|
firstTimeMiExpo: boolean;
|
287
297
|
isPhoneVerified: boolean;
|