expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +167 -3
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +33 -0
- package/package.json +1 -1
@@ -15,6 +15,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, "strip", z.ZodTypeAny, {
|
@@ -27,6 +28,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
27
28
|
seat: number | null;
|
28
29
|
created_at: Date;
|
29
30
|
updated_at: Date;
|
31
|
+
referralCode: string | null;
|
30
32
|
scanned: boolean;
|
31
33
|
scannedAt: Date | null;
|
32
34
|
ticketGroupId: string | null;
|
@@ -40,6 +42,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
40
42
|
seat: number | null;
|
41
43
|
created_at: Date;
|
42
44
|
updated_at: Date;
|
45
|
+
referralCode: string | null;
|
43
46
|
scanned: boolean;
|
44
47
|
scannedAt: Date | null;
|
45
48
|
ticketGroupId: string | null;
|
@@ -55,6 +58,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
55
58
|
seat: number | null;
|
56
59
|
created_at: Date;
|
57
60
|
updated_at: Date;
|
61
|
+
referralCode: string | null;
|
58
62
|
scanned: boolean;
|
59
63
|
scannedAt: Date | null;
|
60
64
|
ticketGroupId: string | null;
|
@@ -70,6 +74,7 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: Date;
|
72
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: Date | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -36,6 +36,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
36
36
|
scanned: z.ZodBoolean;
|
37
37
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
38
38
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
39
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
39
40
|
created_at: z.ZodDate;
|
40
41
|
updated_at: z.ZodDate;
|
41
42
|
}, "strip", z.ZodTypeAny, {
|
@@ -48,6 +49,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
48
49
|
seat: number | null;
|
49
50
|
created_at: Date;
|
50
51
|
updated_at: Date;
|
52
|
+
referralCode: string | null;
|
51
53
|
scanned: boolean;
|
52
54
|
scannedAt: Date | null;
|
53
55
|
ticketGroupId: string | null;
|
@@ -61,6 +63,7 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
61
63
|
seat: number | null;
|
62
64
|
created_at: Date;
|
63
65
|
updated_at: Date;
|
66
|
+
referralCode: string | null;
|
64
67
|
scanned: boolean;
|
65
68
|
scannedAt: Date | null;
|
66
69
|
ticketGroupId: string | null;
|
@@ -80,6 +83,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
80
83
|
scanned: z.ZodBoolean;
|
81
84
|
scannedAt: z.ZodNullable<z.ZodString>;
|
82
85
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
86
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
83
87
|
created_at: z.ZodString;
|
84
88
|
updated_at: z.ZodString;
|
85
89
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -92,6 +96,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
92
96
|
seat: number | null;
|
93
97
|
created_at: string;
|
94
98
|
updated_at: string;
|
99
|
+
referralCode: string | null;
|
95
100
|
scanned: boolean;
|
96
101
|
scannedAt: string | null;
|
97
102
|
ticketGroupId: string | null;
|
@@ -105,6 +110,7 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
105
110
|
seat: number | null;
|
106
111
|
created_at: string;
|
107
112
|
updated_at: string;
|
113
|
+
referralCode: string | null;
|
108
114
|
scanned: boolean;
|
109
115
|
scannedAt: string | null;
|
110
116
|
ticketGroupId: string | null;
|
@@ -14,6 +14,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
scanned: z.ZodBoolean;
|
15
15
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
16
16
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
17
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
17
18
|
created_at: z.ZodDate;
|
18
19
|
updated_at: z.ZodDate;
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
@@ -26,6 +27,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
26
27
|
seat: number | null;
|
27
28
|
created_at: Date;
|
28
29
|
updated_at: Date;
|
30
|
+
referralCode: string | null;
|
29
31
|
scanned: boolean;
|
30
32
|
scannedAt: Date | null;
|
31
33
|
ticketGroupId: string | null;
|
@@ -39,6 +41,7 @@ export declare const ticketSchema: z.ZodObject<{
|
|
39
41
|
seat: number | null;
|
40
42
|
created_at: Date;
|
41
43
|
updated_at: Date;
|
44
|
+
referralCode: string | null;
|
42
45
|
scanned: boolean;
|
43
46
|
scannedAt: Date | null;
|
44
47
|
ticketGroupId: string | null;
|
@@ -58,6 +61,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
58
61
|
scanned: z.ZodBoolean;
|
59
62
|
scannedAt: z.ZodNullable<z.ZodString>;
|
60
63
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
64
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
61
65
|
created_at: z.ZodString;
|
62
66
|
updated_at: z.ZodString;
|
63
67
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -70,6 +74,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: string;
|
72
76
|
updated_at: string;
|
77
|
+
referralCode: string | null;
|
73
78
|
scanned: boolean;
|
74
79
|
scannedAt: string | null;
|
75
80
|
ticketGroupId: string | null;
|
@@ -83,6 +88,7 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
83
88
|
seat: number | null;
|
84
89
|
created_at: string;
|
85
90
|
updated_at: string;
|
91
|
+
referralCode: string | null;
|
86
92
|
scanned: boolean;
|
87
93
|
scannedAt: string | null;
|
88
94
|
ticketGroupId: string | null;
|
@@ -23,6 +23,7 @@ exports.ticketSchema = zod_1.default.object({
|
|
23
23
|
scanned: zod_1.default.boolean(),
|
24
24
|
scannedAt: zod_1.default.date().nullable(),
|
25
25
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.nullable(),
|
26
|
+
referralCode: zod_1.default.string().nullable(),
|
26
27
|
created_at: zod_1.default.date(),
|
27
28
|
updated_at: zod_1.default.date(),
|
28
29
|
});
|
@@ -61,6 +61,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
61
61
|
scanned: import("zod").ZodBoolean;
|
62
62
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
63
63
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
64
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
64
65
|
created_at: import("zod").ZodDate;
|
65
66
|
updated_at: import("zod").ZodDate;
|
66
67
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -73,6 +74,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
73
74
|
seat: number | null;
|
74
75
|
created_at: Date;
|
75
76
|
updated_at: Date;
|
77
|
+
referralCode: string | null;
|
76
78
|
scanned: boolean;
|
77
79
|
scannedAt: Date | null;
|
78
80
|
ticketGroupId: string | null;
|
@@ -86,6 +88,7 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
86
88
|
seat: number | null;
|
87
89
|
created_at: Date;
|
88
90
|
updated_at: Date;
|
91
|
+
referralCode: string | null;
|
89
92
|
scanned: boolean;
|
90
93
|
scannedAt: Date | null;
|
91
94
|
ticketGroupId: string | null;
|
@@ -105,6 +108,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
105
108
|
scanned: import("zod").ZodBoolean;
|
106
109
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
107
110
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
111
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
108
112
|
created_at: import("zod").ZodString;
|
109
113
|
updated_at: import("zod").ZodString;
|
110
114
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -117,6 +121,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: string;
|
119
123
|
updated_at: string;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: string | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -130,6 +135,7 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
130
135
|
seat: number | null;
|
131
136
|
created_at: string;
|
132
137
|
updated_at: string;
|
138
|
+
referralCode: string | null;
|
133
139
|
scanned: boolean;
|
134
140
|
scannedAt: string | null;
|
135
141
|
ticketGroupId: string | null;
|
@@ -56,6 +56,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
56
56
|
scanned: z.ZodBoolean;
|
57
57
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
58
58
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
59
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
59
60
|
created_at: z.ZodDate;
|
60
61
|
updated_at: z.ZodDate;
|
61
62
|
}, "strip", z.ZodTypeAny, {
|
@@ -68,6 +69,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
68
69
|
seat: number | null;
|
69
70
|
created_at: Date;
|
70
71
|
updated_at: Date;
|
72
|
+
referralCode: string | null;
|
71
73
|
scanned: boolean;
|
72
74
|
scannedAt: Date | null;
|
73
75
|
ticketGroupId: string | null;
|
@@ -81,6 +83,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
81
83
|
seat: number | null;
|
82
84
|
created_at: Date;
|
83
85
|
updated_at: Date;
|
86
|
+
referralCode: string | null;
|
84
87
|
scanned: boolean;
|
85
88
|
scannedAt: Date | null;
|
86
89
|
ticketGroupId: string | null;
|
@@ -172,6 +175,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
172
175
|
seat: number | null;
|
173
176
|
created_at: Date;
|
174
177
|
updated_at: Date;
|
178
|
+
referralCode: string | null;
|
175
179
|
scanned: boolean;
|
176
180
|
scannedAt: Date | null;
|
177
181
|
ticketGroupId: string | null;
|
@@ -211,6 +215,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
211
215
|
seat: number | null;
|
212
216
|
created_at: Date;
|
213
217
|
updated_at: Date;
|
218
|
+
referralCode: string | null;
|
214
219
|
scanned: boolean;
|
215
220
|
scannedAt: Date | null;
|
216
221
|
ticketGroupId: string | null;
|
@@ -242,6 +247,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
242
247
|
scanned: z.ZodBoolean;
|
243
248
|
scannedAt: z.ZodNullable<z.ZodString>;
|
244
249
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
250
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
245
251
|
created_at: z.ZodString;
|
246
252
|
updated_at: z.ZodString;
|
247
253
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -254,6 +260,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
254
260
|
seat: number | null;
|
255
261
|
created_at: string;
|
256
262
|
updated_at: string;
|
263
|
+
referralCode: string | null;
|
257
264
|
scanned: boolean;
|
258
265
|
scannedAt: string | null;
|
259
266
|
ticketGroupId: string | null;
|
@@ -267,6 +274,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
267
274
|
seat: number | null;
|
268
275
|
created_at: string;
|
269
276
|
updated_at: string;
|
277
|
+
referralCode: string | null;
|
270
278
|
scanned: boolean;
|
271
279
|
scannedAt: string | null;
|
272
280
|
ticketGroupId: string | null;
|
@@ -358,6 +366,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
358
366
|
seat: number | null;
|
359
367
|
created_at: string;
|
360
368
|
updated_at: string;
|
369
|
+
referralCode: string | null;
|
361
370
|
scanned: boolean;
|
362
371
|
scannedAt: string | null;
|
363
372
|
ticketGroupId: string | null;
|
@@ -397,6 +406,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
397
406
|
seat: number | null;
|
398
407
|
created_at: string;
|
399
408
|
updated_at: string;
|
409
|
+
referralCode: string | null;
|
400
410
|
scanned: boolean;
|
401
411
|
scannedAt: string | null;
|
402
412
|
ticketGroupId: string | null;
|