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
@@ -47,14 +47,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
created_at: Date;
|
52
52
|
updated_at: Date;
|
53
53
|
groupId: string;
|
54
54
|
}, {
|
55
55
|
id: string;
|
56
56
|
name: string;
|
57
|
-
type: "
|
57
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
58
58
|
created_at: Date;
|
59
59
|
updated_at: Date;
|
60
60
|
groupId: string;
|
@@ -69,7 +69,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
69
69
|
fullName: string;
|
70
70
|
profilePictureUrl: string | null;
|
71
71
|
mail: string | null;
|
72
|
-
dni: string | null;
|
73
72
|
created_at: Date;
|
74
73
|
updated_at: Date;
|
75
74
|
shortId: number;
|
@@ -79,6 +78,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
79
78
|
gender: string | null;
|
80
79
|
birthDate: Date | null;
|
81
80
|
instagram: string | null;
|
81
|
+
dni: string | null;
|
82
82
|
alternativeNames: string[];
|
83
83
|
birthLocationId: string | null;
|
84
84
|
residenceLocationId: string | null;
|
@@ -87,7 +87,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
87
87
|
tags: {
|
88
88
|
id: string;
|
89
89
|
name: string;
|
90
|
-
type: "
|
90
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
91
91
|
created_at: Date;
|
92
92
|
updated_at: Date;
|
93
93
|
groupId: string;
|
@@ -101,7 +101,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
101
101
|
fullName: string;
|
102
102
|
profilePictureUrl: string | null;
|
103
103
|
mail: string | null;
|
104
|
-
dni: string | null;
|
105
104
|
created_at: Date;
|
106
105
|
updated_at: Date;
|
107
106
|
shortId: number;
|
@@ -111,6 +110,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
111
110
|
gender: string | null;
|
112
111
|
birthDate: string | null;
|
113
112
|
instagram: string | null;
|
113
|
+
dni: string | null;
|
114
114
|
alternativeNames: string[];
|
115
115
|
birthLocationId: string | null;
|
116
116
|
residenceLocationId: string | null;
|
@@ -119,7 +119,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
119
119
|
tags: {
|
120
120
|
id: string;
|
121
121
|
name: string;
|
122
|
-
type: "
|
122
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
123
123
|
created_at: Date;
|
124
124
|
updated_at: Date;
|
125
125
|
groupId: string;
|
@@ -137,7 +137,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
137
137
|
fullName: string;
|
138
138
|
profilePictureUrl: string | null;
|
139
139
|
mail: string | null;
|
140
|
-
dni: string | null;
|
141
140
|
created_at: Date;
|
142
141
|
updated_at: Date;
|
143
142
|
shortId: number;
|
@@ -147,6 +146,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
147
146
|
gender: string | null;
|
148
147
|
birthDate: Date | null;
|
149
148
|
instagram: string | null;
|
149
|
+
dni: string | null;
|
150
150
|
alternativeNames: string[];
|
151
151
|
birthLocationId: string | null;
|
152
152
|
residenceLocationId: string | null;
|
@@ -155,7 +155,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
155
155
|
tags: {
|
156
156
|
id: string;
|
157
157
|
name: string;
|
158
|
-
type: "
|
158
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
159
159
|
created_at: Date;
|
160
160
|
updated_at: Date;
|
161
161
|
groupId: string;
|
@@ -171,7 +171,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
171
171
|
fullName: string;
|
172
172
|
profilePictureUrl: string | null;
|
173
173
|
mail: string | null;
|
174
|
-
dni: string | null;
|
175
174
|
created_at: Date;
|
176
175
|
updated_at: Date;
|
177
176
|
shortId: number;
|
@@ -181,6 +180,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
181
180
|
gender: string | null;
|
182
181
|
birthDate: string | null;
|
183
182
|
instagram: string | null;
|
183
|
+
dni: string | null;
|
184
184
|
alternativeNames: string[];
|
185
185
|
birthLocationId: string | null;
|
186
186
|
residenceLocationId: string | null;
|
@@ -189,7 +189,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
189
189
|
tags: {
|
190
190
|
id: string;
|
191
191
|
name: string;
|
192
|
-
type: "
|
192
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
193
193
|
created_at: Date;
|
194
194
|
updated_at: Date;
|
195
195
|
groupId: string;
|
@@ -244,14 +244,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
244
244
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
245
245
|
id: string;
|
246
246
|
name: string;
|
247
|
-
type: "
|
247
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
248
248
|
created_at: string;
|
249
249
|
updated_at: string;
|
250
250
|
groupId: string;
|
251
251
|
}, {
|
252
252
|
id: string;
|
253
253
|
name: string;
|
254
|
-
type: "
|
254
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
255
255
|
created_at: string;
|
256
256
|
updated_at: string;
|
257
257
|
groupId: string;
|
@@ -266,7 +266,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
266
266
|
fullName: string;
|
267
267
|
profilePictureUrl: string | null;
|
268
268
|
mail: string | null;
|
269
|
-
dni: string | null;
|
270
269
|
created_at: string;
|
271
270
|
updated_at: string;
|
272
271
|
shortId: number;
|
@@ -276,6 +275,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
276
275
|
gender: string | null;
|
277
276
|
birthDate: string | null;
|
278
277
|
instagram: string | null;
|
278
|
+
dni: string | null;
|
279
279
|
alternativeNames: string[];
|
280
280
|
birthLocationId: string | null;
|
281
281
|
residenceLocationId: string | null;
|
@@ -284,7 +284,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
284
284
|
tags: {
|
285
285
|
id: string;
|
286
286
|
name: string;
|
287
|
-
type: "
|
287
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
288
288
|
created_at: string;
|
289
289
|
updated_at: string;
|
290
290
|
groupId: string;
|
@@ -298,7 +298,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
298
298
|
fullName: string;
|
299
299
|
profilePictureUrl: string | null;
|
300
300
|
mail: string | null;
|
301
|
-
dni: string | null;
|
302
301
|
created_at: string;
|
303
302
|
updated_at: string;
|
304
303
|
shortId: number;
|
@@ -308,6 +307,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
308
307
|
gender: string | null;
|
309
308
|
birthDate: string | null;
|
310
309
|
instagram: string | null;
|
310
|
+
dni: string | null;
|
311
311
|
alternativeNames: string[];
|
312
312
|
birthLocationId: string | null;
|
313
313
|
residenceLocationId: string | null;
|
@@ -316,7 +316,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
316
316
|
tags: {
|
317
317
|
id: string;
|
318
318
|
name: string;
|
319
|
-
type: "
|
319
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
320
320
|
created_at: string;
|
321
321
|
updated_at: string;
|
322
322
|
groupId: string;
|
@@ -334,7 +334,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
334
334
|
fullName: string;
|
335
335
|
profilePictureUrl: string | null;
|
336
336
|
mail: string | null;
|
337
|
-
dni: string | null;
|
338
337
|
created_at: string;
|
339
338
|
updated_at: string;
|
340
339
|
shortId: number;
|
@@ -344,6 +343,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
344
343
|
gender: string | null;
|
345
344
|
birthDate: string | null;
|
346
345
|
instagram: string | null;
|
346
|
+
dni: string | null;
|
347
347
|
alternativeNames: string[];
|
348
348
|
birthLocationId: string | null;
|
349
349
|
residenceLocationId: string | null;
|
@@ -352,7 +352,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
352
352
|
tags: {
|
353
353
|
id: string;
|
354
354
|
name: string;
|
355
|
-
type: "
|
355
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
356
356
|
created_at: string;
|
357
357
|
updated_at: string;
|
358
358
|
groupId: string;
|
@@ -368,7 +368,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
368
368
|
fullName: string;
|
369
369
|
profilePictureUrl: string | null;
|
370
370
|
mail: string | null;
|
371
|
-
dni: string | null;
|
372
371
|
created_at: string;
|
373
372
|
updated_at: string;
|
374
373
|
shortId: number;
|
@@ -378,6 +377,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
378
377
|
gender: string | null;
|
379
378
|
birthDate: string | null;
|
380
379
|
instagram: string | null;
|
380
|
+
dni: string | null;
|
381
381
|
alternativeNames: string[];
|
382
382
|
birthLocationId: string | null;
|
383
383
|
residenceLocationId: string | null;
|
@@ -386,7 +386,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
386
386
|
tags: {
|
387
387
|
id: string;
|
388
388
|
name: string;
|
389
|
-
type: "
|
389
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
390
390
|
created_at: string;
|
391
391
|
updated_at: string;
|
392
392
|
groupId: string;
|
@@ -64,7 +64,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
64
64
|
}>, "strip", z.ZodTypeAny, {
|
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;
|
@@ -76,7 +76,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
76
76
|
}, {
|
77
77
|
id: string;
|
78
78
|
name: string;
|
79
|
-
type: "
|
79
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
80
80
|
created_at: Date;
|
81
81
|
updated_at: Date;
|
82
82
|
groupId: string;
|
@@ -96,7 +96,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
96
96
|
fullName: string;
|
97
97
|
profilePictureUrl: string | null;
|
98
98
|
mail: string | null;
|
99
|
-
dni: string | null;
|
100
99
|
created_at: Date;
|
101
100
|
updated_at: Date;
|
102
101
|
shortId: number;
|
@@ -106,6 +105,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
106
105
|
gender: string | null;
|
107
106
|
birthDate: Date | null;
|
108
107
|
instagram: string | null;
|
108
|
+
dni: string | null;
|
109
109
|
alternativeNames: string[];
|
110
110
|
birthLocationId: string | null;
|
111
111
|
residenceLocationId: string | null;
|
@@ -114,7 +114,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
114
114
|
tags: {
|
115
115
|
id: string;
|
116
116
|
name: string;
|
117
|
-
type: "
|
117
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
118
118
|
created_at: Date;
|
119
119
|
updated_at: Date;
|
120
120
|
groupId: string;
|
@@ -133,7 +133,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
133
133
|
fullName: string;
|
134
134
|
profilePictureUrl: string | null;
|
135
135
|
mail: string | null;
|
136
|
-
dni: string | null;
|
137
136
|
created_at: Date;
|
138
137
|
updated_at: Date;
|
139
138
|
shortId: number;
|
@@ -143,6 +142,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
143
142
|
gender: string | null;
|
144
143
|
birthDate: string | null;
|
145
144
|
instagram: string | null;
|
145
|
+
dni: string | null;
|
146
146
|
alternativeNames: string[];
|
147
147
|
birthLocationId: string | null;
|
148
148
|
residenceLocationId: string | null;
|
@@ -151,7 +151,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
151
151
|
tags: {
|
152
152
|
id: string;
|
153
153
|
name: string;
|
154
|
-
type: "
|
154
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
155
155
|
created_at: Date;
|
156
156
|
updated_at: Date;
|
157
157
|
groupId: string;
|
@@ -174,7 +174,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
174
174
|
fullName: string;
|
175
175
|
profilePictureUrl: string | null;
|
176
176
|
mail: string | null;
|
177
|
-
dni: string | null;
|
178
177
|
created_at: Date;
|
179
178
|
updated_at: Date;
|
180
179
|
shortId: number;
|
@@ -184,6 +183,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
184
183
|
gender: string | null;
|
185
184
|
birthDate: Date | null;
|
186
185
|
instagram: string | null;
|
186
|
+
dni: string | null;
|
187
187
|
alternativeNames: string[];
|
188
188
|
birthLocationId: string | null;
|
189
189
|
residenceLocationId: string | null;
|
@@ -192,7 +192,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
192
192
|
tags: {
|
193
193
|
id: string;
|
194
194
|
name: string;
|
195
|
-
type: "
|
195
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
196
196
|
created_at: Date;
|
197
197
|
updated_at: Date;
|
198
198
|
groupId: string;
|
@@ -213,7 +213,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
213
213
|
fullName: string;
|
214
214
|
profilePictureUrl: string | null;
|
215
215
|
mail: string | null;
|
216
|
-
dni: string | null;
|
217
216
|
created_at: Date;
|
218
217
|
updated_at: Date;
|
219
218
|
shortId: number;
|
@@ -223,6 +222,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
223
222
|
gender: string | null;
|
224
223
|
birthDate: string | null;
|
225
224
|
instagram: string | null;
|
225
|
+
dni: string | null;
|
226
226
|
alternativeNames: string[];
|
227
227
|
birthLocationId: string | null;
|
228
228
|
residenceLocationId: string | null;
|
@@ -231,7 +231,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
231
231
|
tags: {
|
232
232
|
id: string;
|
233
233
|
name: string;
|
234
|
-
type: "
|
234
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
235
235
|
created_at: Date;
|
236
236
|
updated_at: Date;
|
237
237
|
groupId: string;
|
@@ -304,7 +304,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
304
304
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
305
305
|
id: string;
|
306
306
|
name: string;
|
307
|
-
type: "
|
307
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
308
308
|
created_at: string;
|
309
309
|
updated_at: string;
|
310
310
|
groupId: string;
|
@@ -316,7 +316,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
316
316
|
}, {
|
317
317
|
id: string;
|
318
318
|
name: string;
|
319
|
-
type: "
|
319
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
320
320
|
created_at: string;
|
321
321
|
updated_at: string;
|
322
322
|
groupId: string;
|
@@ -336,7 +336,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
336
336
|
fullName: string;
|
337
337
|
profilePictureUrl: string | null;
|
338
338
|
mail: string | null;
|
339
|
-
dni: string | null;
|
340
339
|
created_at: string;
|
341
340
|
updated_at: string;
|
342
341
|
shortId: number;
|
@@ -346,6 +345,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
346
345
|
gender: string | null;
|
347
346
|
birthDate: string | null;
|
348
347
|
instagram: string | null;
|
348
|
+
dni: string | null;
|
349
349
|
alternativeNames: string[];
|
350
350
|
birthLocationId: string | null;
|
351
351
|
residenceLocationId: string | null;
|
@@ -354,7 +354,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
354
354
|
tags: {
|
355
355
|
id: string;
|
356
356
|
name: string;
|
357
|
-
type: "
|
357
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
358
358
|
created_at: string;
|
359
359
|
updated_at: string;
|
360
360
|
groupId: string;
|
@@ -373,7 +373,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
373
373
|
fullName: string;
|
374
374
|
profilePictureUrl: string | null;
|
375
375
|
mail: string | null;
|
376
|
-
dni: string | null;
|
377
376
|
created_at: string;
|
378
377
|
updated_at: string;
|
379
378
|
shortId: number;
|
@@ -383,6 +382,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
383
382
|
gender: string | null;
|
384
383
|
birthDate: string | null;
|
385
384
|
instagram: string | null;
|
385
|
+
dni: string | null;
|
386
386
|
alternativeNames: string[];
|
387
387
|
birthLocationId: string | null;
|
388
388
|
residenceLocationId: string | null;
|
@@ -391,7 +391,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
391
391
|
tags: {
|
392
392
|
id: string;
|
393
393
|
name: string;
|
394
|
-
type: "
|
394
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
395
395
|
created_at: string;
|
396
396
|
updated_at: string;
|
397
397
|
groupId: string;
|
@@ -414,7 +414,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
414
414
|
fullName: string;
|
415
415
|
profilePictureUrl: string | null;
|
416
416
|
mail: string | null;
|
417
|
-
dni: string | null;
|
418
417
|
created_at: string;
|
419
418
|
updated_at: string;
|
420
419
|
shortId: number;
|
@@ -424,6 +423,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
424
423
|
gender: string | null;
|
425
424
|
birthDate: string | null;
|
426
425
|
instagram: string | null;
|
426
|
+
dni: string | null;
|
427
427
|
alternativeNames: string[];
|
428
428
|
birthLocationId: string | null;
|
429
429
|
residenceLocationId: string | null;
|
@@ -432,7 +432,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
432
432
|
tags: {
|
433
433
|
id: string;
|
434
434
|
name: string;
|
435
|
-
type: "
|
435
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
436
436
|
created_at: string;
|
437
437
|
updated_at: string;
|
438
438
|
groupId: string;
|
@@ -453,7 +453,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
453
453
|
fullName: string;
|
454
454
|
profilePictureUrl: string | null;
|
455
455
|
mail: string | null;
|
456
|
-
dni: string | null;
|
457
456
|
created_at: string;
|
458
457
|
updated_at: string;
|
459
458
|
shortId: number;
|
@@ -463,6 +462,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
463
462
|
gender: string | null;
|
464
463
|
birthDate: string | null;
|
465
464
|
instagram: string | null;
|
465
|
+
dni: string | null;
|
466
466
|
alternativeNames: string[];
|
467
467
|
birthLocationId: string | null;
|
468
468
|
residenceLocationId: string | null;
|
@@ -471,7 +471,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
471
471
|
tags: {
|
472
472
|
id: string;
|
473
473
|
name: string;
|
474
|
-
type: "
|
474
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
475
475
|
created_at: string;
|
476
476
|
updated_at: string;
|
477
477
|
groupId: string;
|
@@ -47,14 +47,14 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
created_at: Date;
|
52
52
|
updated_at: Date;
|
53
53
|
groupId: string;
|
54
54
|
}, {
|
55
55
|
id: string;
|
56
56
|
name: string;
|
57
|
-
type: "
|
57
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
58
58
|
created_at: Date;
|
59
59
|
updated_at: Date;
|
60
60
|
groupId: string;
|
@@ -178,7 +178,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
178
178
|
fullName: string;
|
179
179
|
profilePictureUrl: string | null;
|
180
180
|
mail: string | null;
|
181
|
-
dni: string | null;
|
182
181
|
created_at: Date;
|
183
182
|
updated_at: Date;
|
184
183
|
shortId: number;
|
@@ -188,6 +187,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
188
187
|
gender: string | null;
|
189
188
|
birthDate: Date | null;
|
190
189
|
instagram: string | null;
|
190
|
+
dni: string | null;
|
191
191
|
alternativeNames: string[];
|
192
192
|
birthLocationId: string | null;
|
193
193
|
residenceLocationId: string | null;
|
@@ -217,7 +217,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
217
217
|
tags: {
|
218
218
|
id: string;
|
219
219
|
name: string;
|
220
|
-
type: "
|
220
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
221
221
|
created_at: Date;
|
222
222
|
updated_at: Date;
|
223
223
|
groupId: string;
|
@@ -232,7 +232,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
232
232
|
fullName: string;
|
233
233
|
profilePictureUrl: string | null;
|
234
234
|
mail: string | null;
|
235
|
-
dni: string | null;
|
236
235
|
created_at: Date;
|
237
236
|
updated_at: Date;
|
238
237
|
shortId: number;
|
@@ -242,6 +241,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
242
241
|
gender: string | null;
|
243
242
|
birthDate: string | null;
|
244
243
|
instagram: string | null;
|
244
|
+
dni: string | null;
|
245
245
|
alternativeNames: string[];
|
246
246
|
birthLocationId: string | null;
|
247
247
|
residenceLocationId: string | null;
|
@@ -271,7 +271,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
271
271
|
tags: {
|
272
272
|
id: string;
|
273
273
|
name: string;
|
274
|
-
type: "
|
274
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
275
275
|
created_at: Date;
|
276
276
|
updated_at: Date;
|
277
277
|
groupId: string;
|
@@ -290,7 +290,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
290
290
|
fullName: string;
|
291
291
|
profilePictureUrl: string | null;
|
292
292
|
mail: string | null;
|
293
|
-
dni: string | null;
|
294
293
|
created_at: Date;
|
295
294
|
updated_at: Date;
|
296
295
|
shortId: number;
|
@@ -300,6 +299,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
300
299
|
gender: string | null;
|
301
300
|
birthDate: Date | null;
|
302
301
|
instagram: string | null;
|
302
|
+
dni: string | null;
|
303
303
|
alternativeNames: string[];
|
304
304
|
birthLocationId: string | null;
|
305
305
|
residenceLocationId: string | null;
|
@@ -329,7 +329,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
329
329
|
tags: {
|
330
330
|
id: string;
|
331
331
|
name: string;
|
332
|
-
type: "
|
332
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
333
333
|
created_at: Date;
|
334
334
|
updated_at: Date;
|
335
335
|
groupId: string;
|
@@ -346,7 +346,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
346
346
|
fullName: string;
|
347
347
|
profilePictureUrl: string | null;
|
348
348
|
mail: string | null;
|
349
|
-
dni: string | null;
|
350
349
|
created_at: Date;
|
351
350
|
updated_at: Date;
|
352
351
|
shortId: number;
|
@@ -356,6 +355,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
356
355
|
gender: string | null;
|
357
356
|
birthDate: string | null;
|
358
357
|
instagram: string | null;
|
358
|
+
dni: string | null;
|
359
359
|
alternativeNames: string[];
|
360
360
|
birthLocationId: string | null;
|
361
361
|
residenceLocationId: string | null;
|
@@ -385,7 +385,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
385
385
|
tags: {
|
386
386
|
id: string;
|
387
387
|
name: string;
|
388
|
-
type: "
|
388
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
389
389
|
created_at: Date;
|
390
390
|
updated_at: Date;
|
391
391
|
groupId: string;
|
@@ -441,14 +441,14 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
441
441
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
442
442
|
id: string;
|
443
443
|
name: string;
|
444
|
-
type: "
|
444
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
445
445
|
created_at: string;
|
446
446
|
updated_at: string;
|
447
447
|
groupId: string;
|
448
448
|
}, {
|
449
449
|
id: string;
|
450
450
|
name: string;
|
451
|
-
type: "
|
451
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
452
452
|
created_at: string;
|
453
453
|
updated_at: string;
|
454
454
|
groupId: string;
|
@@ -569,7 +569,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
569
569
|
fullName: string;
|
570
570
|
profilePictureUrl: string | null;
|
571
571
|
mail: string | null;
|
572
|
-
dni: string | null;
|
573
572
|
created_at: string;
|
574
573
|
updated_at: string;
|
575
574
|
shortId: number;
|
@@ -579,6 +578,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
579
578
|
gender: string | null;
|
580
579
|
birthDate: string | null;
|
581
580
|
instagram: string | null;
|
581
|
+
dni: string | null;
|
582
582
|
alternativeNames: string[];
|
583
583
|
birthLocationId: string | null;
|
584
584
|
residenceLocationId: string | null;
|
@@ -608,7 +608,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
608
608
|
tags: {
|
609
609
|
id: string;
|
610
610
|
name: string;
|
611
|
-
type: "
|
611
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
612
612
|
created_at: string;
|
613
613
|
updated_at: string;
|
614
614
|
groupId: string;
|
@@ -623,7 +623,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
623
623
|
fullName: string;
|
624
624
|
profilePictureUrl: string | null;
|
625
625
|
mail: string | null;
|
626
|
-
dni: string | null;
|
627
626
|
created_at: string;
|
628
627
|
updated_at: string;
|
629
628
|
shortId: number;
|
@@ -633,6 +632,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
633
632
|
gender: string | null;
|
634
633
|
birthDate: string | null;
|
635
634
|
instagram: string | null;
|
635
|
+
dni: string | null;
|
636
636
|
alternativeNames: string[];
|
637
637
|
birthLocationId: string | null;
|
638
638
|
residenceLocationId: string | null;
|
@@ -662,7 +662,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
662
662
|
tags: {
|
663
663
|
id: string;
|
664
664
|
name: string;
|
665
|
-
type: "
|
665
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
666
666
|
created_at: string;
|
667
667
|
updated_at: string;
|
668
668
|
groupId: string;
|
@@ -681,7 +681,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
681
681
|
fullName: string;
|
682
682
|
profilePictureUrl: string | null;
|
683
683
|
mail: string | null;
|
684
|
-
dni: string | null;
|
685
684
|
created_at: string;
|
686
685
|
updated_at: string;
|
687
686
|
shortId: number;
|
@@ -691,6 +690,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
691
690
|
gender: string | null;
|
692
691
|
birthDate: string | null;
|
693
692
|
instagram: string | null;
|
693
|
+
dni: string | null;
|
694
694
|
alternativeNames: string[];
|
695
695
|
birthLocationId: string | null;
|
696
696
|
residenceLocationId: string | null;
|
@@ -720,7 +720,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
720
720
|
tags: {
|
721
721
|
id: string;
|
722
722
|
name: string;
|
723
|
-
type: "
|
723
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
724
724
|
created_at: string;
|
725
725
|
updated_at: string;
|
726
726
|
groupId: string;
|
@@ -737,7 +737,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
737
737
|
fullName: string;
|
738
738
|
profilePictureUrl: string | null;
|
739
739
|
mail: string | null;
|
740
|
-
dni: string | null;
|
741
740
|
created_at: string;
|
742
741
|
updated_at: string;
|
743
742
|
shortId: number;
|
@@ -747,6 +746,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
747
746
|
gender: string | null;
|
748
747
|
birthDate: string | null;
|
749
748
|
instagram: string | null;
|
749
|
+
dni: string | null;
|
750
750
|
alternativeNames: string[];
|
751
751
|
birthLocationId: string | null;
|
752
752
|
residenceLocationId: string | null;
|
@@ -776,7 +776,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
776
776
|
tags: {
|
777
777
|
id: string;
|
778
778
|
name: string;
|
779
|
-
type: "
|
779
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
780
780
|
created_at: string;
|
781
781
|
updated_at: string;
|
782
782
|
groupId: string;
|