expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.9 → 0.36.0-EXPO-323-Enviar-mail-ticket.5

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.
Files changed (73) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +9 -9
  4. package/dist/src/account/dto/get-me.dto.d.ts +22 -22
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -14
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  12. package/dist/src/event/dto/get-by-id-event.dto.d.ts +60 -40
  13. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  14. package/dist/src/i18n/es.d.ts +25 -5
  15. package/dist/src/i18n/es.js +25 -5
  16. package/dist/src/i18n/es.js.map +1 -1
  17. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  18. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  19. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  20. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  21. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  22. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  23. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  24. package/dist/src/profile/dto/find-all-profile.dto.d.ts +30 -30
  25. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +48 -48
  26. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +19 -19
  27. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  28. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +30 -30
  29. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +30 -30
  30. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  31. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +30 -30
  32. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  33. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  34. package/dist/src/schema/profile.schema.d.ts +5 -5
  35. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  36. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  41. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  42. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  43. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  44. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  45. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  46. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  47. package/dist/src/ticket/constants.d.ts +12 -14
  48. package/dist/src/ticket/constants.js +355 -267
  49. package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
  50. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  51. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
  52. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
  53. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +54 -34
  54. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +54 -34
  55. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +54 -34
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
  57. package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
  58. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  59. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  60. package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
  61. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  62. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
  63. package/dist/types/prisma-schema/edge.js +7 -5
  64. package/dist/types/prisma-schema/index-browser.js +4 -2
  65. package/dist/types/prisma-schema/index.d.ts +193 -65
  66. package/dist/types/prisma-schema/index.js +7 -5
  67. package/dist/types/prisma-schema/package.json +1 -1
  68. package/dist/types/prisma-schema/schema.prisma +5 -1
  69. package/dist/types/prisma-schema/wasm.js +4 -2
  70. package/dist/types/schema.d.ts +99 -118
  71. package/package.json +8 -8
  72. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -728
  73. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -58
@@ -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>>;
10
11
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
11
12
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
13
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>>;
13
14
  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;
72
73
  firstTimeMiExpo?: boolean | undefined;
73
74
  gender?: string | null | undefined;
74
75
  birthDate?: Date | null | undefined;
75
76
  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;
103
104
  firstTimeMiExpo?: boolean | undefined;
104
105
  gender?: string | null | undefined;
105
106
  birthDate?: string | null | undefined;
106
107
  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>>;
135
136
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
136
137
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
137
138
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
138
139
  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;
190
191
  firstTimeMiExpo?: boolean | undefined;
191
192
  gender?: string | null | undefined;
192
193
  birthDate?: string | null | undefined;
193
194
  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;
221
222
  firstTimeMiExpo?: boolean | undefined;
222
223
  gender?: string | null | undefined;
223
224
  birthDate?: string | null | undefined;
224
225
  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;
@@ -251,8 +251,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
251
251
  USER: "USER";
252
252
  ADMIN: "ADMIN";
253
253
  FORM: "FORM";
254
- TICKETS: "TICKETS";
255
254
  MI_EXPO: "MI_EXPO";
255
+ TICKETS: "TICKETS";
256
256
  }>>;
257
257
  firstTimeMiExpo: z.ZodBoolean;
258
258
  username: z.ZodNullable<z.ZodString>;
@@ -279,12 +279,13 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
279
279
  id: string;
280
280
  username: string | null;
281
281
  password: string | null;
282
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
282
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
283
283
  phoneNumber: string;
284
284
  secondaryPhoneNumber: string | null;
285
285
  fullName: string;
286
286
  profilePictureUrl: string | null;
287
287
  mail: string | null;
288
+ dni: string | null;
288
289
  created_at: Date;
289
290
  updated_at: Date;
290
291
  shortId: number;
@@ -294,7 +295,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
294
295
  gender: string | null;
295
296
  birthDate: Date | null;
296
297
  instagram: string | null;
297
- dni: string | null;
298
298
  alternativeNames: string[];
299
299
  birthLocationId: string | null;
300
300
  residenceLocationId: string | null;
@@ -309,6 +309,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
309
309
  fullName: string;
310
310
  profilePictureUrl: string | null;
311
311
  mail: string | null;
312
+ dni: string | null;
312
313
  created_at: Date;
313
314
  updated_at: Date;
314
315
  shortId: number;
@@ -318,13 +319,12 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
318
319
  gender: string | null;
319
320
  birthDate: string | null;
320
321
  instagram: string | null;
321
- dni: string | null;
322
322
  alternativeNames: string[];
323
323
  birthLocationId: string | null;
324
324
  residenceLocationId: string | null;
325
325
  isInTrash: boolean;
326
326
  movedToTrashDate: Date | null;
327
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
327
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
328
328
  }>;
329
329
  declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
330
330
  id: z.ZodString;
@@ -333,8 +333,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
333
333
  USER: "USER";
334
334
  ADMIN: "ADMIN";
335
335
  FORM: "FORM";
336
- TICKETS: "TICKETS";
337
336
  MI_EXPO: "MI_EXPO";
337
+ TICKETS: "TICKETS";
338
338
  }>>;
339
339
  firstTimeMiExpo: z.ZodBoolean;
340
340
  username: z.ZodNullable<z.ZodString>;
@@ -361,12 +361,13 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
361
361
  id: string;
362
362
  username: string | null;
363
363
  password: string | null;
364
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
364
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
365
365
  phoneNumber: string;
366
366
  secondaryPhoneNumber: string | null;
367
367
  fullName: string;
368
368
  profilePictureUrl: string | null;
369
369
  mail: string | null;
370
+ dni: string | null;
370
371
  created_at: string;
371
372
  updated_at: string;
372
373
  shortId: number;
@@ -376,7 +377,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
376
377
  gender: string | null;
377
378
  birthDate: string | null;
378
379
  instagram: string | null;
379
- dni: string | null;
380
380
  alternativeNames: string[];
381
381
  birthLocationId: string | null;
382
382
  residenceLocationId: string | null;
@@ -391,6 +391,7 @@ 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;
394
395
  created_at: string;
395
396
  updated_at: string;
396
397
  shortId: number;
@@ -400,13 +401,12 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
400
401
  gender: string | null;
401
402
  birthDate: string | null;
402
403
  instagram: string | null;
403
- dni: string | null;
404
404
  alternativeNames: string[];
405
405
  birthLocationId: string | null;
406
406
  residenceLocationId: string | null;
407
407
  isInTrash: boolean;
408
408
  movedToTrashDate: string | null;
409
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
409
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
410
410
  }>>;
411
411
  export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
412
412
  }
@@ -6,8 +6,8 @@ export declare const profileSchema: z.ZodObject<{
6
6
  USER: "USER";
7
7
  ADMIN: "ADMIN";
8
8
  FORM: "FORM";
9
- TICKETS: "TICKETS";
10
9
  MI_EXPO: "MI_EXPO";
10
+ TICKETS: "TICKETS";
11
11
  }>>;
12
12
  firstTimeMiExpo: z.ZodBoolean;
13
13
  username: z.ZodNullable<z.ZodString>;
@@ -34,12 +34,13 @@ export declare const profileSchema: z.ZodObject<{
34
34
  id: string;
35
35
  username: string | null;
36
36
  password: string | null;
37
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
37
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
38
38
  phoneNumber: string;
39
39
  secondaryPhoneNumber: string | null;
40
40
  fullName: string;
41
41
  profilePictureUrl: string | null;
42
42
  mail: string | null;
43
+ dni: string | null;
43
44
  created_at: Date;
44
45
  updated_at: Date;
45
46
  shortId: number;
@@ -49,7 +50,6 @@ export declare const profileSchema: z.ZodObject<{
49
50
  gender: string | null;
50
51
  birthDate: Date | null;
51
52
  instagram: string | null;
52
- dni: string | null;
53
53
  alternativeNames: string[];
54
54
  birthLocationId: string | null;
55
55
  residenceLocationId: string | null;
@@ -64,6 +64,7 @@ export declare const profileSchema: z.ZodObject<{
64
64
  fullName: string;
65
65
  profilePictureUrl: string | null;
66
66
  mail: string | null;
67
+ dni: string | null;
67
68
  created_at: Date;
68
69
  updated_at: Date;
69
70
  shortId: number;
@@ -73,11 +74,10 @@ export declare const profileSchema: z.ZodObject<{
73
74
  gender: string | null;
74
75
  birthDate: string | null;
75
76
  instagram: string | null;
76
- dni: string | null;
77
77
  alternativeNames: string[];
78
78
  birthLocationId: string | null;
79
79
  residenceLocationId: string | null;
80
80
  isInTrash: boolean;
81
81
  movedToTrashDate: Date | null;
82
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
82
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
83
83
  }>;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
47
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
48
48
  groupId: string;
49
49
  }, {
50
50
  id: string;
51
51
  name: string;
52
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
52
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
68
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
69
69
  groupId: string;
70
70
  }, {
71
71
  id: string;
72
72
  name: string;
73
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
73
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
16
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
23
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
43
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
50
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
41
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
56
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
73
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
90
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
142
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
157
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
174
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
191
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
41
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
56
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
73
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
90
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
142
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
157
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
174
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
191
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
40
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
55
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
105
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
120
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
121
121
  created_at: string;
122
122
  updated_at: string;
123
123
  groupId: string;