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
@@ -39,7 +39,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
39
39
|
fullName: string;
|
40
40
|
profilePictureUrl: string | null;
|
41
41
|
mail: string | null;
|
42
|
-
dni: string | null;
|
43
42
|
created_at: string;
|
44
43
|
updated_at: string;
|
45
44
|
shortId: number;
|
@@ -49,6 +48,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
49
48
|
gender: string | null;
|
50
49
|
birthDate: string | null;
|
51
50
|
instagram: string | null;
|
51
|
+
dni: string | null;
|
52
52
|
alternativeNames: string[];
|
53
53
|
birthLocationId: string | null;
|
54
54
|
residenceLocationId: string | null;
|
@@ -63,7 +63,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
63
63
|
fullName: string;
|
64
64
|
profilePictureUrl: string | null;
|
65
65
|
mail: string | null;
|
66
|
-
dni: string | null;
|
67
66
|
created_at: string;
|
68
67
|
updated_at: string;
|
69
68
|
shortId: number;
|
@@ -73,6 +72,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
73
72
|
gender: string | null;
|
74
73
|
birthDate: string | null;
|
75
74
|
instagram: string | null;
|
75
|
+
dni: string | null;
|
76
76
|
alternativeNames: string[];
|
77
77
|
birthLocationId: string | null;
|
78
78
|
residenceLocationId: string | null;
|
@@ -7,11 +7,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
7
7
|
fullName: z.ZodOptional<z.ZodString>;
|
8
8
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9
9
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10
|
-
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11
10
|
firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
|
12
11
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13
12
|
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>>;
|
14
13
|
instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
|
+
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15
15
|
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
16
16
|
isInTrash: z.ZodOptional<z.ZodBoolean>;
|
17
17
|
movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
@@ -69,11 +69,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
69
69
|
fullName?: string | undefined;
|
70
70
|
profilePictureUrl?: string | null | undefined;
|
71
71
|
mail?: string | null | undefined;
|
72
|
-
dni?: string | null | undefined;
|
73
72
|
firstTimeMiExpo?: boolean | undefined;
|
74
73
|
gender?: string | null | undefined;
|
75
74
|
birthDate?: Date | null | undefined;
|
76
75
|
instagram?: string | null | undefined;
|
76
|
+
dni?: string | null | undefined;
|
77
77
|
alternativeNames?: string[] | undefined;
|
78
78
|
isInTrash?: boolean | undefined;
|
79
79
|
movedToTrashDate?: Date | null | undefined;
|
@@ -100,11 +100,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
100
100
|
fullName?: string | undefined;
|
101
101
|
profilePictureUrl?: string | null | undefined;
|
102
102
|
mail?: string | null | undefined;
|
103
|
-
dni?: string | null | undefined;
|
104
103
|
firstTimeMiExpo?: boolean | undefined;
|
105
104
|
gender?: string | null | undefined;
|
106
105
|
birthDate?: string | null | undefined;
|
107
106
|
instagram?: string | null | undefined;
|
107
|
+
dni?: string | null | undefined;
|
108
108
|
alternativeNames?: string[] | undefined;
|
109
109
|
isInTrash?: boolean | undefined;
|
110
110
|
movedToTrashDate?: Date | null | undefined;
|
@@ -132,11 +132,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
132
132
|
fullName: z.ZodOptional<z.ZodString>;
|
133
133
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
134
134
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
135
|
-
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
136
135
|
firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
|
137
136
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
138
137
|
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
|
139
138
|
instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
139
|
+
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
140
140
|
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
141
141
|
isInTrash: z.ZodOptional<z.ZodBoolean>;
|
142
142
|
movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -187,11 +187,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
187
187
|
fullName?: string | undefined;
|
188
188
|
profilePictureUrl?: string | null | undefined;
|
189
189
|
mail?: string | null | undefined;
|
190
|
-
dni?: string | null | undefined;
|
191
190
|
firstTimeMiExpo?: boolean | undefined;
|
192
191
|
gender?: string | null | undefined;
|
193
192
|
birthDate?: string | null | undefined;
|
194
193
|
instagram?: string | null | undefined;
|
194
|
+
dni?: string | null | undefined;
|
195
195
|
alternativeNames?: string[] | undefined;
|
196
196
|
isInTrash?: boolean | undefined;
|
197
197
|
movedToTrashDate?: string | null | undefined;
|
@@ -218,11 +218,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
218
218
|
fullName?: string | undefined;
|
219
219
|
profilePictureUrl?: string | null | undefined;
|
220
220
|
mail?: string | null | undefined;
|
221
|
-
dni?: string | null | undefined;
|
222
221
|
firstTimeMiExpo?: boolean | undefined;
|
223
222
|
gender?: string | null | undefined;
|
224
223
|
birthDate?: string | null | undefined;
|
225
224
|
instagram?: string | null | undefined;
|
225
|
+
dni?: string | null | undefined;
|
226
226
|
alternativeNames?: string[] | undefined;
|
227
227
|
isInTrash?: boolean | undefined;
|
228
228
|
movedToTrashDate?: string | null | undefined;
|
@@ -285,7 +285,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
285
285
|
fullName: string;
|
286
286
|
profilePictureUrl: string | null;
|
287
287
|
mail: string | null;
|
288
|
-
dni: string | null;
|
289
288
|
created_at: Date;
|
290
289
|
updated_at: Date;
|
291
290
|
shortId: number;
|
@@ -295,6 +294,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
295
294
|
gender: string | null;
|
296
295
|
birthDate: Date | null;
|
297
296
|
instagram: string | null;
|
297
|
+
dni: string | null;
|
298
298
|
alternativeNames: string[];
|
299
299
|
birthLocationId: string | null;
|
300
300
|
residenceLocationId: string | null;
|
@@ -309,7 +309,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
309
309
|
fullName: string;
|
310
310
|
profilePictureUrl: string | null;
|
311
311
|
mail: string | null;
|
312
|
-
dni: string | null;
|
313
312
|
created_at: Date;
|
314
313
|
updated_at: Date;
|
315
314
|
shortId: number;
|
@@ -319,6 +318,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
319
318
|
gender: string | null;
|
320
319
|
birthDate: string | null;
|
321
320
|
instagram: string | null;
|
321
|
+
dni: string | null;
|
322
322
|
alternativeNames: string[];
|
323
323
|
birthLocationId: string | null;
|
324
324
|
residenceLocationId: string | null;
|
@@ -367,7 +367,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
367
367
|
fullName: string;
|
368
368
|
profilePictureUrl: string | null;
|
369
369
|
mail: string | null;
|
370
|
-
dni: string | null;
|
371
370
|
created_at: string;
|
372
371
|
updated_at: string;
|
373
372
|
shortId: number;
|
@@ -377,6 +376,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
377
376
|
gender: string | null;
|
378
377
|
birthDate: string | null;
|
379
378
|
instagram: string | null;
|
379
|
+
dni: string | null;
|
380
380
|
alternativeNames: string[];
|
381
381
|
birthLocationId: string | null;
|
382
382
|
residenceLocationId: string | null;
|
@@ -391,7 +391,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
391
391
|
fullName: string;
|
392
392
|
profilePictureUrl: string | null;
|
393
393
|
mail: string | null;
|
394
|
-
dni: string | null;
|
395
394
|
created_at: string;
|
396
395
|
updated_at: string;
|
397
396
|
shortId: number;
|
@@ -401,6 +400,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
401
400
|
gender: string | null;
|
402
401
|
birthDate: string | null;
|
403
402
|
instagram: string | null;
|
403
|
+
dni: string | null;
|
404
404
|
alternativeNames: string[];
|
405
405
|
birthLocationId: string | null;
|
406
406
|
residenceLocationId: string | null;
|
@@ -40,7 +40,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
40
40
|
fullName: string;
|
41
41
|
profilePictureUrl: string | null;
|
42
42
|
mail: string | null;
|
43
|
-
dni: string | null;
|
44
43
|
created_at: Date;
|
45
44
|
updated_at: Date;
|
46
45
|
shortId: number;
|
@@ -50,6 +49,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
50
49
|
gender: string | null;
|
51
50
|
birthDate: Date | null;
|
52
51
|
instagram: string | null;
|
52
|
+
dni: string | null;
|
53
53
|
alternativeNames: string[];
|
54
54
|
birthLocationId: string | null;
|
55
55
|
residenceLocationId: string | null;
|
@@ -64,7 +64,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
64
64
|
fullName: string;
|
65
65
|
profilePictureUrl: string | null;
|
66
66
|
mail: string | null;
|
67
|
-
dni: string | null;
|
68
67
|
created_at: Date;
|
69
68
|
updated_at: Date;
|
70
69
|
shortId: number;
|
@@ -74,6 +73,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
74
73
|
gender: string | null;
|
75
74
|
birthDate: string | null;
|
76
75
|
instagram: string | null;
|
76
|
+
dni: string | null;
|
77
77
|
alternativeNames: string[];
|
78
78
|
birthLocationId: string | null;
|
79
79
|
residenceLocationId: string | null;
|
@@ -44,12 +44,12 @@ export declare const createTagResponseSchema: import("zod").ZodObject<Omit<{
|
|
44
44
|
}, "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
|
-
type: "
|
47
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
48
|
groupId: string;
|
49
49
|
}, {
|
50
50
|
id: string;
|
51
51
|
name: string;
|
52
|
-
type: "
|
52
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
53
53
|
groupId: string;
|
54
54
|
}>;
|
55
55
|
declare const CreateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -65,12 +65,12 @@ declare const CreateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
65
65
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
66
66
|
id: string;
|
67
67
|
name: string;
|
68
|
-
type: "
|
68
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
69
69
|
groupId: string;
|
70
70
|
}, {
|
71
71
|
id: string;
|
72
72
|
name: string;
|
73
|
-
type: "
|
73
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
74
74
|
groupId: string;
|
75
75
|
}>>;
|
76
76
|
export declare class CreateTagResponseDto extends CreateTagResponseDto_base {
|
@@ -13,14 +13,14 @@ export declare const deleteTagResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
}, "strip", import("zod").ZodTypeAny, {
|
14
14
|
id: string;
|
15
15
|
name: string;
|
16
|
-
type: "
|
16
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
17
17
|
created_at: Date;
|
18
18
|
updated_at: Date;
|
19
19
|
groupId: string;
|
20
20
|
}, {
|
21
21
|
id: string;
|
22
22
|
name: string;
|
23
|
-
type: "
|
23
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
24
24
|
created_at: Date;
|
25
25
|
updated_at: Date;
|
26
26
|
groupId: string;
|
@@ -40,14 +40,14 @@ declare const DeleteTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
40
40
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
41
41
|
id: string;
|
42
42
|
name: string;
|
43
|
-
type: "
|
43
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
44
44
|
created_at: string;
|
45
45
|
updated_at: string;
|
46
46
|
groupId: string;
|
47
47
|
}, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
created_at: string;
|
52
52
|
updated_at: string;
|
53
53
|
groupId: string;
|
@@ -38,7 +38,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
39
39
|
id: string;
|
40
40
|
name: string;
|
41
|
-
type: "
|
41
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
42
42
|
created_at: Date;
|
43
43
|
updated_at: Date;
|
44
44
|
groupId: string;
|
@@ -53,7 +53,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
53
53
|
}, {
|
54
54
|
id: string;
|
55
55
|
name: string;
|
56
|
-
type: "
|
56
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
57
57
|
created_at: Date;
|
58
58
|
updated_at: Date;
|
59
59
|
groupId: string;
|
@@ -70,7 +70,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
70
70
|
tags: {
|
71
71
|
id: string;
|
72
72
|
name: string;
|
73
|
-
type: "
|
73
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
74
74
|
created_at: Date;
|
75
75
|
updated_at: Date;
|
76
76
|
groupId: string;
|
@@ -87,7 +87,7 @@ export declare const findAllTagResponseSchema: 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;
|
@@ -139,7 +139,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
140
140
|
id: string;
|
141
141
|
name: string;
|
142
|
-
type: "
|
142
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
143
143
|
created_at: string;
|
144
144
|
updated_at: string;
|
145
145
|
groupId: string;
|
@@ -154,7 +154,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
154
154
|
}, {
|
155
155
|
id: string;
|
156
156
|
name: string;
|
157
|
-
type: "
|
157
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
158
158
|
created_at: string;
|
159
159
|
updated_at: string;
|
160
160
|
groupId: string;
|
@@ -171,7 +171,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
171
171
|
tags: {
|
172
172
|
id: string;
|
173
173
|
name: string;
|
174
|
-
type: "
|
174
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
175
175
|
created_at: string;
|
176
176
|
updated_at: string;
|
177
177
|
groupId: string;
|
@@ -188,7 +188,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
188
188
|
tags: {
|
189
189
|
id: string;
|
190
190
|
name: string;
|
191
|
-
type: "
|
191
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
192
192
|
created_at: string;
|
193
193
|
updated_at: string;
|
194
194
|
groupId: string;
|
@@ -38,7 +38,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
39
39
|
id: string;
|
40
40
|
name: string;
|
41
|
-
type: "
|
41
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
42
42
|
created_at: Date;
|
43
43
|
updated_at: Date;
|
44
44
|
groupId: string;
|
@@ -53,7 +53,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
53
53
|
}, {
|
54
54
|
id: string;
|
55
55
|
name: string;
|
56
|
-
type: "
|
56
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
57
57
|
created_at: Date;
|
58
58
|
updated_at: Date;
|
59
59
|
groupId: string;
|
@@ -70,7 +70,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
70
70
|
tags: {
|
71
71
|
id: string;
|
72
72
|
name: string;
|
73
|
-
type: "
|
73
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
74
74
|
created_at: Date;
|
75
75
|
updated_at: Date;
|
76
76
|
groupId: string;
|
@@ -87,7 +87,7 @@ export declare const findByGroupTagResponseSchema: 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;
|
@@ -139,7 +139,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
140
140
|
id: string;
|
141
141
|
name: string;
|
142
|
-
type: "
|
142
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
143
143
|
created_at: string;
|
144
144
|
updated_at: string;
|
145
145
|
groupId: string;
|
@@ -154,7 +154,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
154
154
|
}, {
|
155
155
|
id: string;
|
156
156
|
name: string;
|
157
|
-
type: "
|
157
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
158
158
|
created_at: string;
|
159
159
|
updated_at: string;
|
160
160
|
groupId: string;
|
@@ -171,7 +171,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
171
171
|
tags: {
|
172
172
|
id: string;
|
173
173
|
name: string;
|
174
|
-
type: "
|
174
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
175
175
|
created_at: string;
|
176
176
|
updated_at: string;
|
177
177
|
groupId: string;
|
@@ -188,7 +188,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
188
188
|
tags: {
|
189
189
|
id: string;
|
190
190
|
name: string;
|
191
|
-
type: "
|
191
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
192
192
|
created_at: string;
|
193
193
|
updated_at: string;
|
194
194
|
groupId: string;
|
@@ -37,7 +37,7 @@ export declare const findOneTagResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
37
37
|
}>, "strip", z.ZodTypeAny, {
|
38
38
|
id: string;
|
39
39
|
name: string;
|
40
|
-
type: "
|
40
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
41
41
|
created_at: Date;
|
42
42
|
updated_at: Date;
|
43
43
|
groupId: string;
|
@@ -52,7 +52,7 @@ export declare const findOneTagResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
52
52
|
}, {
|
53
53
|
id: string;
|
54
54
|
name: string;
|
55
|
-
type: "
|
55
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
56
56
|
created_at: Date;
|
57
57
|
updated_at: Date;
|
58
58
|
groupId: string;
|
@@ -102,7 +102,7 @@ declare const FindOneTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
102
102
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
103
103
|
id: string;
|
104
104
|
name: string;
|
105
|
-
type: "
|
105
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
106
106
|
created_at: string;
|
107
107
|
updated_at: string;
|
108
108
|
groupId: string;
|
@@ -117,7 +117,7 @@ declare const FindOneTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
117
117
|
}, {
|
118
118
|
id: string;
|
119
119
|
name: string;
|
120
|
-
type: "
|
120
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
121
121
|
created_at: string;
|
122
122
|
updated_at: string;
|
123
123
|
groupId: string;
|
@@ -63,7 +63,6 @@ export declare const massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 massiveAllocationResponseSchema: 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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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;
|