expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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.
- package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -78
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +31 -22
- package/dist/src/i18n/es.js +31 -22
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -355
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +704 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.js +2 -5
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +8 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +15 -7
- package/dist/types/prisma-schema/index-browser.js +12 -4
- package/dist/types/prisma-schema/index.d.ts +2216 -366
- package/dist/types/prisma-schema/index.js +15 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +22 -7
- package/dist/types/prisma-schema/wasm.js +12 -4
- package/dist/types/schema.d.ts +308 -40
- package/package.json +6 -6
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -63,7 +63,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
63
63
|
fullName: string;
|
64
64
|
profilePictureUrl: string | null;
|
65
65
|
mail: string | null;
|
66
|
-
dni: string | null;
|
67
66
|
created_at: Date;
|
68
67
|
updated_at: Date;
|
69
68
|
shortId: number;
|
@@ -73,6 +72,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
73
72
|
gender: string | null;
|
74
73
|
birthDate: Date | null;
|
75
74
|
instagram: string | null;
|
75
|
+
dni: string | null;
|
76
76
|
alternativeNames: string[];
|
77
77
|
birthLocationId: string | null;
|
78
78
|
residenceLocationId: string | null;
|
@@ -87,7 +87,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
87
87
|
fullName: string;
|
88
88
|
profilePictureUrl: string | null;
|
89
89
|
mail: string | null;
|
90
|
-
dni: string | null;
|
91
90
|
created_at: Date;
|
92
91
|
updated_at: Date;
|
93
92
|
shortId: number;
|
@@ -97,6 +96,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
97
96
|
gender: string | null;
|
98
97
|
birthDate: string | null;
|
99
98
|
instagram: string | null;
|
99
|
+
dni: string | null;
|
100
100
|
alternativeNames: string[];
|
101
101
|
birthLocationId: string | null;
|
102
102
|
residenceLocationId: string | null;
|
@@ -115,7 +115,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
115
115
|
fullName: string;
|
116
116
|
profilePictureUrl: string | null;
|
117
117
|
mail: string | null;
|
118
|
-
dni: string | null;
|
119
118
|
created_at: Date;
|
120
119
|
updated_at: Date;
|
121
120
|
shortId: number;
|
@@ -125,6 +124,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
125
124
|
gender: string | null;
|
126
125
|
birthDate: Date | null;
|
127
126
|
instagram: string | null;
|
127
|
+
dni: string | null;
|
128
128
|
alternativeNames: string[];
|
129
129
|
birthLocationId: string | null;
|
130
130
|
residenceLocationId: string | null;
|
@@ -141,7 +141,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
141
141
|
fullName: string;
|
142
142
|
profilePictureUrl: string | null;
|
143
143
|
mail: string | null;
|
144
|
-
dni: string | null;
|
145
144
|
created_at: Date;
|
146
145
|
updated_at: Date;
|
147
146
|
shortId: number;
|
@@ -151,6 +150,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
151
150
|
gender: string | null;
|
152
151
|
birthDate: string | null;
|
153
152
|
instagram: string | null;
|
153
|
+
dni: string | null;
|
154
154
|
alternativeNames: string[];
|
155
155
|
birthLocationId: string | null;
|
156
156
|
residenceLocationId: string | null;
|
@@ -201,7 +201,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
201
201
|
fullName: string;
|
202
202
|
profilePictureUrl: string | null;
|
203
203
|
mail: string | null;
|
204
|
-
dni: string | null;
|
205
204
|
created_at: string;
|
206
205
|
updated_at: string;
|
207
206
|
shortId: number;
|
@@ -211,6 +210,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
211
210
|
gender: string | null;
|
212
211
|
birthDate: string | null;
|
213
212
|
instagram: string | null;
|
213
|
+
dni: string | null;
|
214
214
|
alternativeNames: string[];
|
215
215
|
birthLocationId: string | null;
|
216
216
|
residenceLocationId: string | null;
|
@@ -225,7 +225,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
225
225
|
fullName: string;
|
226
226
|
profilePictureUrl: string | null;
|
227
227
|
mail: string | null;
|
228
|
-
dni: string | null;
|
229
228
|
created_at: string;
|
230
229
|
updated_at: string;
|
231
230
|
shortId: number;
|
@@ -235,6 +234,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
235
234
|
gender: string | null;
|
236
235
|
birthDate: string | null;
|
237
236
|
instagram: string | null;
|
237
|
+
dni: string | null;
|
238
238
|
alternativeNames: string[];
|
239
239
|
birthLocationId: string | null;
|
240
240
|
residenceLocationId: string | null;
|
@@ -253,7 +253,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
253
253
|
fullName: string;
|
254
254
|
profilePictureUrl: string | null;
|
255
255
|
mail: string | null;
|
256
|
-
dni: string | null;
|
257
256
|
created_at: string;
|
258
257
|
updated_at: string;
|
259
258
|
shortId: number;
|
@@ -263,6 +262,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
263
262
|
gender: string | null;
|
264
263
|
birthDate: string | null;
|
265
264
|
instagram: string | null;
|
265
|
+
dni: string | null;
|
266
266
|
alternativeNames: string[];
|
267
267
|
birthLocationId: string | null;
|
268
268
|
residenceLocationId: string | null;
|
@@ -279,7 +279,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
279
279
|
fullName: string;
|
280
280
|
profilePictureUrl: string | null;
|
281
281
|
mail: string | null;
|
282
|
-
dni: string | null;
|
283
282
|
created_at: string;
|
284
283
|
updated_at: string;
|
285
284
|
shortId: number;
|
@@ -289,6 +288,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
289
288
|
gender: string | null;
|
290
289
|
birthDate: string | null;
|
291
290
|
instagram: string | null;
|
291
|
+
dni: string | null;
|
292
292
|
alternativeNames: string[];
|
293
293
|
birthLocationId: string | null;
|
294
294
|
residenceLocationId: string | null;
|
@@ -14,14 +14,14 @@ export declare const tagSchema: z.ZodObject<{
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
15
15
|
id: string;
|
16
16
|
name: string;
|
17
|
-
type: "
|
17
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
18
18
|
created_at: Date;
|
19
19
|
updated_at: Date;
|
20
20
|
groupId: string;
|
21
21
|
}, {
|
22
22
|
id: string;
|
23
23
|
name: string;
|
24
|
-
type: "
|
24
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
25
25
|
created_at: Date;
|
26
26
|
updated_at: Date;
|
27
27
|
groupId: string;
|
@@ -41,14 +41,14 @@ declare const TagDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObjec
|
|
41
41
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
42
42
|
id: string;
|
43
43
|
name: string;
|
44
|
-
type: "
|
44
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
45
45
|
created_at: string;
|
46
46
|
updated_at: string;
|
47
47
|
groupId: string;
|
48
48
|
}, {
|
49
49
|
id: string;
|
50
50
|
name: string;
|
51
|
-
type: "
|
51
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
52
52
|
created_at: string;
|
53
53
|
updated_at: string;
|
54
54
|
groupId: string;
|
@@ -44,14 +44,14 @@ export declare const updateTagResponseSchema: import("zod").ZodObject<{
|
|
44
44
|
}, "strip", import("zod").ZodTypeAny, {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
|
-
type: "
|
47
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
48
|
created_at: Date;
|
49
49
|
updated_at: Date;
|
50
50
|
groupId: string;
|
51
51
|
}, {
|
52
52
|
id: string;
|
53
53
|
name: string;
|
54
|
-
type: "
|
54
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
55
55
|
created_at: Date;
|
56
56
|
updated_at: Date;
|
57
57
|
groupId: string;
|
@@ -71,14 +71,14 @@ declare const UpdateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
71
71
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
72
72
|
id: string;
|
73
73
|
name: string;
|
74
|
-
type: "
|
74
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
75
75
|
created_at: string;
|
76
76
|
updated_at: string;
|
77
77
|
groupId: string;
|
78
78
|
}, {
|
79
79
|
id: string;
|
80
80
|
name: string;
|
81
|
-
type: "
|
81
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
82
82
|
created_at: string;
|
83
83
|
updated_at: string;
|
84
84
|
groupId: string;
|
@@ -23,14 +23,14 @@ export declare const findAllTagGroupResponseSchema: z.ZodObject<{
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
24
24
|
id: string;
|
25
25
|
name: string;
|
26
|
-
type: "
|
26
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
27
27
|
created_at: Date;
|
28
28
|
updated_at: Date;
|
29
29
|
groupId: string;
|
30
30
|
}, {
|
31
31
|
id: string;
|
32
32
|
name: string;
|
33
|
-
type: "
|
33
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
34
34
|
created_at: Date;
|
35
35
|
updated_at: Date;
|
36
36
|
groupId: string;
|
@@ -45,7 +45,7 @@ export declare const findAllTagGroupResponseSchema: z.ZodObject<{
|
|
45
45
|
tags: {
|
46
46
|
id: string;
|
47
47
|
name: string;
|
48
|
-
type: "
|
48
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
49
49
|
created_at: Date;
|
50
50
|
updated_at: Date;
|
51
51
|
groupId: string;
|
@@ -60,7 +60,7 @@ export declare const findAllTagGroupResponseSchema: z.ZodObject<{
|
|
60
60
|
tags: {
|
61
61
|
id: string;
|
62
62
|
name: string;
|
63
|
-
type: "
|
63
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
64
64
|
created_at: Date;
|
65
65
|
updated_at: Date;
|
66
66
|
groupId: string;
|
@@ -77,7 +77,7 @@ export declare const findAllTagGroupResponseSchema: z.ZodObject<{
|
|
77
77
|
tags: {
|
78
78
|
id: string;
|
79
79
|
name: string;
|
80
|
-
type: "
|
80
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
81
81
|
created_at: Date;
|
82
82
|
updated_at: Date;
|
83
83
|
groupId: string;
|
@@ -94,7 +94,7 @@ export declare const findAllTagGroupResponseSchema: z.ZodObject<{
|
|
94
94
|
tags: {
|
95
95
|
id: string;
|
96
96
|
name: string;
|
97
|
-
type: "
|
97
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
98
98
|
created_at: Date;
|
99
99
|
updated_at: Date;
|
100
100
|
groupId: string;
|
@@ -124,14 +124,14 @@ declare const FindAllTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
124
124
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
125
125
|
id: string;
|
126
126
|
name: string;
|
127
|
-
type: "
|
127
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
128
128
|
created_at: string;
|
129
129
|
updated_at: string;
|
130
130
|
groupId: string;
|
131
131
|
}, {
|
132
132
|
id: string;
|
133
133
|
name: string;
|
134
|
-
type: "
|
134
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
135
135
|
created_at: string;
|
136
136
|
updated_at: string;
|
137
137
|
groupId: string;
|
@@ -146,7 +146,7 @@ declare const FindAllTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
146
146
|
tags: {
|
147
147
|
id: string;
|
148
148
|
name: string;
|
149
|
-
type: "
|
149
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
150
150
|
created_at: string;
|
151
151
|
updated_at: string;
|
152
152
|
groupId: string;
|
@@ -161,7 +161,7 @@ declare const FindAllTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
161
161
|
tags: {
|
162
162
|
id: string;
|
163
163
|
name: string;
|
164
|
-
type: "
|
164
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
165
165
|
created_at: string;
|
166
166
|
updated_at: string;
|
167
167
|
groupId: string;
|
@@ -178,7 +178,7 @@ declare const FindAllTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
178
178
|
tags: {
|
179
179
|
id: string;
|
180
180
|
name: string;
|
181
|
-
type: "
|
181
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
182
182
|
created_at: string;
|
183
183
|
updated_at: string;
|
184
184
|
groupId: string;
|
@@ -195,7 +195,7 @@ declare const FindAllTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
195
195
|
tags: {
|
196
196
|
id: string;
|
197
197
|
name: string;
|
198
|
-
type: "
|
198
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
199
199
|
created_at: string;
|
200
200
|
updated_at: string;
|
201
201
|
groupId: string;
|
@@ -31,7 +31,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
31
31
|
}>, "strip", z.ZodTypeAny, {
|
32
32
|
id: string;
|
33
33
|
name: string;
|
34
|
-
type: "
|
34
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
35
35
|
created_at: Date;
|
36
36
|
updated_at: Date;
|
37
37
|
groupId: string;
|
@@ -41,7 +41,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
41
41
|
}, {
|
42
42
|
id: string;
|
43
43
|
name: string;
|
44
|
-
type: "
|
44
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
45
45
|
created_at: Date;
|
46
46
|
updated_at: Date;
|
47
47
|
groupId: string;
|
@@ -64,7 +64,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
64
64
|
tags: {
|
65
65
|
id: string;
|
66
66
|
name: string;
|
67
|
-
type: "
|
67
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
68
68
|
created_at: Date;
|
69
69
|
updated_at: Date;
|
70
70
|
groupId: string;
|
@@ -83,7 +83,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
83
83
|
tags: {
|
84
84
|
id: string;
|
85
85
|
name: string;
|
86
|
-
type: "
|
86
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
87
87
|
created_at: Date;
|
88
88
|
updated_at: Date;
|
89
89
|
groupId: string;
|
@@ -104,7 +104,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
104
104
|
tags: {
|
105
105
|
id: string;
|
106
106
|
name: string;
|
107
|
-
type: "
|
107
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
108
108
|
created_at: Date;
|
109
109
|
updated_at: Date;
|
110
110
|
groupId: string;
|
@@ -125,7 +125,7 @@ export declare const findAllWithTagsResponseSchema: z.ZodObject<{
|
|
125
125
|
tags: {
|
126
126
|
id: string;
|
127
127
|
name: string;
|
128
|
-
type: "
|
128
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
129
129
|
created_at: Date;
|
130
130
|
updated_at: Date;
|
131
131
|
groupId: string;
|
@@ -166,7 +166,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
166
166
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
167
167
|
id: string;
|
168
168
|
name: string;
|
169
|
-
type: "
|
169
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
170
170
|
created_at: string;
|
171
171
|
updated_at: string;
|
172
172
|
groupId: string;
|
@@ -176,7 +176,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
176
176
|
}, {
|
177
177
|
id: string;
|
178
178
|
name: string;
|
179
|
-
type: "
|
179
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
180
180
|
created_at: string;
|
181
181
|
updated_at: string;
|
182
182
|
groupId: string;
|
@@ -199,7 +199,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
199
199
|
tags: {
|
200
200
|
id: string;
|
201
201
|
name: string;
|
202
|
-
type: "
|
202
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
203
203
|
created_at: string;
|
204
204
|
updated_at: string;
|
205
205
|
groupId: string;
|
@@ -218,7 +218,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
218
218
|
tags: {
|
219
219
|
id: string;
|
220
220
|
name: string;
|
221
|
-
type: "
|
221
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
222
222
|
created_at: string;
|
223
223
|
updated_at: string;
|
224
224
|
groupId: string;
|
@@ -239,7 +239,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
239
239
|
tags: {
|
240
240
|
id: string;
|
241
241
|
name: string;
|
242
|
-
type: "
|
242
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
243
243
|
created_at: string;
|
244
244
|
updated_at: string;
|
245
245
|
groupId: string;
|
@@ -260,7 +260,7 @@ declare const FindAllWithTagsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
260
260
|
tags: {
|
261
261
|
id: string;
|
262
262
|
name: string;
|
263
|
-
type: "
|
263
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
264
264
|
created_at: string;
|
265
265
|
updated_at: string;
|
266
266
|
groupId: string;
|
@@ -22,14 +22,14 @@ export declare const findOneTagGroupResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
23
23
|
id: string;
|
24
24
|
name: string;
|
25
|
-
type: "
|
25
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
26
26
|
created_at: Date;
|
27
27
|
updated_at: Date;
|
28
28
|
groupId: string;
|
29
29
|
}, {
|
30
30
|
id: string;
|
31
31
|
name: string;
|
32
|
-
type: "
|
32
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
33
33
|
created_at: Date;
|
34
34
|
updated_at: Date;
|
35
35
|
groupId: string;
|
@@ -44,7 +44,7 @@ export declare const findOneTagGroupResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
44
44
|
tags: {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
|
-
type: "
|
47
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
48
|
created_at: Date;
|
49
49
|
updated_at: Date;
|
50
50
|
groupId: string;
|
@@ -59,7 +59,7 @@ export declare const findOneTagGroupResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
59
59
|
tags: {
|
60
60
|
id: string;
|
61
61
|
name: string;
|
62
|
-
type: "
|
62
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
63
63
|
created_at: Date;
|
64
64
|
updated_at: Date;
|
65
65
|
groupId: string;
|
@@ -87,14 +87,14 @@ declare const FindOneTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
87
87
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
88
88
|
id: string;
|
89
89
|
name: string;
|
90
|
-
type: "
|
90
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
91
91
|
created_at: string;
|
92
92
|
updated_at: string;
|
93
93
|
groupId: string;
|
94
94
|
}, {
|
95
95
|
id: string;
|
96
96
|
name: string;
|
97
|
-
type: "
|
97
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
98
98
|
created_at: string;
|
99
99
|
updated_at: string;
|
100
100
|
groupId: string;
|
@@ -109,7 +109,7 @@ declare const FindOneTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
109
109
|
tags: {
|
110
110
|
id: string;
|
111
111
|
name: string;
|
112
|
-
type: "
|
112
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
113
113
|
created_at: string;
|
114
114
|
updated_at: string;
|
115
115
|
groupId: string;
|
@@ -124,7 +124,7 @@ declare const FindOneTagGroupResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
124
124
|
tags: {
|
125
125
|
id: string;
|
126
126
|
name: string;
|
127
|
-
type: "
|
127
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
128
128
|
created_at: string;
|
129
129
|
updated_at: string;
|
130
130
|
groupId: string;
|
@@ -1,14 +1,16 @@
|
|
1
|
-
import { Template } from '@pdfme/common';
|
2
|
-
|
3
|
-
export type TicketInputs = {
|
4
|
-
eventName: string;
|
5
|
-
eventDate: string;
|
6
|
-
eventLocation: string;
|
7
|
-
fullName: string;
|
8
|
-
dni: string;
|
9
|
-
seat: string;
|
10
|
-
barcode: string;
|
1
|
+
import { type Template } from '@pdfme/common';
|
2
|
+
export declare const TICKET_INPUTS: {
|
11
3
|
footer: string;
|
12
|
-
|
4
|
+
title: string;
|
5
|
+
event_section: string;
|
6
|
+
date_label: string;
|
7
|
+
time_label: string;
|
8
|
+
location_label: string;
|
9
|
+
attendee_section: string;
|
10
|
+
name_label: string;
|
11
|
+
email_label: string;
|
12
|
+
ticket_section: string;
|
13
|
+
type_label: string;
|
14
|
+
status_label: string;
|
13
15
|
};
|
14
|
-
export declare
|
16
|
+
export declare const TICKET_TEMPLATE: Template;
|