expo-backend-types 0.22.0-EXPO-288-EB-Imagenes.1 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/README.md +1 -1
  2. package/dist/src/csv/dto/csv.dto.d.ts +18 -0
  3. package/dist/src/csv/dto/csv.dto.js +17 -0
  4. package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
  5. package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
  6. package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
  7. package/dist/src/csv/dto/download-profiles.dto.js +15 -0
  8. package/dist/src/csv/exports.d.ts +3 -0
  9. package/dist/src/{image → csv}/exports.js +3 -3
  10. package/dist/src/event/dto/event.dto.js +1 -1
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
  12. package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
  13. package/dist/src/event/dto/update-event.dto.d.ts +20 -20
  14. package/dist/src/i18n/es.d.ts +18 -20
  15. package/dist/src/i18n/es.js +18 -20
  16. package/dist/src/i18n/es.js.map +1 -1
  17. package/dist/src/location/dto/find-all-location.dto.d.ts +16 -16
  18. package/dist/src/message/dto/message.dto.d.ts +2 -2
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
  24. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
  25. package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
  26. package/dist/types/prisma-schema/default.d.ts +1 -1
  27. package/dist/types/prisma-schema/edge.d.ts +1 -1
  28. package/dist/types/prisma-schema/edge.js +7 -11
  29. package/dist/types/prisma-schema/index-browser.js +4 -7
  30. package/dist/types/prisma-schema/index.d.ts +1036 -805
  31. package/dist/types/prisma-schema/index.js +7 -11
  32. package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  33. package/dist/types/prisma-schema/package.json +1 -14
  34. package/dist/types/prisma-schema/runtime/edge-esm.js +18 -21
  35. package/dist/types/prisma-schema/runtime/edge.js +18 -21
  36. package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
  37. package/dist/types/prisma-schema/runtime/library.d.ts +87 -297
  38. package/dist/types/prisma-schema/runtime/library.js +61 -64
  39. package/dist/types/prisma-schema/runtime/react-native.js +28 -31
  40. package/dist/types/prisma-schema/runtime/wasm.js +19 -22
  41. package/dist/types/prisma-schema/wasm.d.ts +1 -1
  42. package/dist/types/prisma-schema/wasm.js +4 -7
  43. package/dist/types/schema.d.ts +32 -42
  44. package/package.json +7 -5
  45. package/dist/src/image/dto/delete-image.dto.d.ts +0 -18
  46. package/dist/src/image/dto/delete-image.dto.js +0 -12
  47. package/dist/src/image/dto/image.dto.d.ts +0 -24
  48. package/dist/src/image/dto/image.dto.js +0 -18
  49. package/dist/src/image/dto/update-image.dto.d.ts +0 -18
  50. package/dist/src/image/dto/update-image.dto.js +0 -15
  51. package/dist/src/image/exports.d.ts +0 -3
@@ -145,8 +145,8 @@ export declare const messageSchema: z.ZodObject<{
145
145
  id: string;
146
146
  created_at: Date;
147
147
  updated_at: Date;
148
- state: "SENT" | "RECEIVED" | "SEEN";
149
148
  wamId: string;
149
+ state: "SENT" | "RECEIVED" | "SEEN";
150
150
  }, {
151
151
  message: {
152
152
  id: string;
@@ -168,6 +168,6 @@ export declare const messageSchema: z.ZodObject<{
168
168
  id: string;
169
169
  created_at: Date;
170
170
  updated_at: Date;
171
- state: "SENT" | "RECEIVED" | "SEEN";
172
171
  wamId: string;
172
+ state: "SENT" | "RECEIVED" | "SEEN";
173
173
  }>;
@@ -80,18 +80,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
80
80
  mail: string | null;
81
81
  created_at: Date;
82
82
  updated_at: Date;
83
- tags: {
84
- id: string;
85
- name: string;
86
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
87
- created_at: Date;
88
- updated_at: Date;
89
- groupId: string;
90
- group: {
91
- color: string;
92
- isExclusive: boolean;
93
- };
94
- }[];
95
83
  shortId: number;
96
84
  firstName: string | null;
97
85
  gender: string | null;
@@ -103,15 +91,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
103
91
  residenceLocationId: string | null;
104
92
  isInTrash: boolean;
105
93
  movedToTrashDate: Date | null;
106
- }, {
107
- id: string;
108
- phoneNumber: string;
109
- secondaryPhoneNumber: string | null;
110
- fullName: string;
111
- profilePictureUrl: string | null;
112
- mail: string | null;
113
- created_at: Date;
114
- updated_at: Date;
115
94
  tags: {
116
95
  id: string;
117
96
  name: string;
@@ -124,6 +103,15 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
124
103
  isExclusive: boolean;
125
104
  };
126
105
  }[];
106
+ }, {
107
+ id: string;
108
+ phoneNumber: string;
109
+ secondaryPhoneNumber: string | null;
110
+ fullName: string;
111
+ profilePictureUrl: string | null;
112
+ mail: string | null;
113
+ created_at: Date;
114
+ updated_at: Date;
127
115
  shortId: number;
128
116
  firstName: string | null;
129
117
  gender: string | null;
@@ -135,17 +123,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
135
123
  residenceLocationId: string | null;
136
124
  isInTrash: boolean;
137
125
  movedToTrashDate: Date | null;
138
- }>, "many">;
139
- }, "strip", z.ZodTypeAny, {
140
- profiles: {
141
- id: string;
142
- phoneNumber: string;
143
- secondaryPhoneNumber: string | null;
144
- fullName: string;
145
- profilePictureUrl: string | null;
146
- mail: string | null;
147
- created_at: Date;
148
- updated_at: Date;
149
126
  tags: {
150
127
  id: string;
151
128
  name: string;
@@ -158,6 +135,17 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
158
135
  isExclusive: boolean;
159
136
  };
160
137
  }[];
138
+ }>, "many">;
139
+ }, "strip", z.ZodTypeAny, {
140
+ profiles: {
141
+ id: string;
142
+ phoneNumber: string;
143
+ secondaryPhoneNumber: string | null;
144
+ fullName: string;
145
+ profilePictureUrl: string | null;
146
+ mail: string | null;
147
+ created_at: Date;
148
+ updated_at: Date;
161
149
  shortId: number;
162
150
  firstName: string | null;
163
151
  gender: string | null;
@@ -169,17 +157,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
169
157
  residenceLocationId: string | null;
170
158
  isInTrash: boolean;
171
159
  movedToTrashDate: Date | null;
172
- }[];
173
- }, {
174
- profiles: {
175
- id: string;
176
- phoneNumber: string;
177
- secondaryPhoneNumber: string | null;
178
- fullName: string;
179
- profilePictureUrl: string | null;
180
- mail: string | null;
181
- created_at: Date;
182
- updated_at: Date;
183
160
  tags: {
184
161
  id: string;
185
162
  name: string;
@@ -192,6 +169,17 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
192
169
  isExclusive: boolean;
193
170
  };
194
171
  }[];
172
+ }[];
173
+ }, {
174
+ profiles: {
175
+ id: string;
176
+ phoneNumber: string;
177
+ secondaryPhoneNumber: string | null;
178
+ fullName: string;
179
+ profilePictureUrl: string | null;
180
+ mail: string | null;
181
+ created_at: Date;
182
+ updated_at: Date;
195
183
  shortId: number;
196
184
  firstName: string | null;
197
185
  gender: string | null;
@@ -203,6 +191,18 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
203
191
  residenceLocationId: string | null;
204
192
  isInTrash: boolean;
205
193
  movedToTrashDate: Date | null;
194
+ tags: {
195
+ id: string;
196
+ name: string;
197
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
198
+ created_at: Date;
199
+ updated_at: Date;
200
+ groupId: string;
201
+ group: {
202
+ color: string;
203
+ isExclusive: boolean;
204
+ };
205
+ }[];
206
206
  }[];
207
207
  }>;
208
208
  declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -280,18 +280,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
280
280
  mail: string | null;
281
281
  created_at: string;
282
282
  updated_at: string;
283
- tags: {
284
- id: string;
285
- name: string;
286
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
287
- created_at: string;
288
- updated_at: string;
289
- groupId: string;
290
- group: {
291
- color: string;
292
- isExclusive: boolean;
293
- };
294
- }[];
295
283
  shortId: number;
296
284
  firstName: string | null;
297
285
  gender: string | null;
@@ -303,15 +291,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
303
291
  residenceLocationId: string | null;
304
292
  isInTrash: boolean;
305
293
  movedToTrashDate: string | null;
306
- }, {
307
- id: string;
308
- phoneNumber: string;
309
- secondaryPhoneNumber: string | null;
310
- fullName: string;
311
- profilePictureUrl: string | null;
312
- mail: string | null;
313
- created_at: string;
314
- updated_at: string;
315
294
  tags: {
316
295
  id: string;
317
296
  name: string;
@@ -324,6 +303,15 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
324
303
  isExclusive: boolean;
325
304
  };
326
305
  }[];
306
+ }, {
307
+ id: string;
308
+ phoneNumber: string;
309
+ secondaryPhoneNumber: string | null;
310
+ fullName: string;
311
+ profilePictureUrl: string | null;
312
+ mail: string | null;
313
+ created_at: string;
314
+ updated_at: string;
327
315
  shortId: number;
328
316
  firstName: string | null;
329
317
  gender: string | null;
@@ -335,17 +323,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
335
323
  residenceLocationId: string | null;
336
324
  isInTrash: boolean;
337
325
  movedToTrashDate: string | null;
338
- }>, "many">;
339
- }, z.UnknownKeysParam, z.ZodTypeAny, {
340
- profiles: {
341
- id: string;
342
- phoneNumber: string;
343
- secondaryPhoneNumber: string | null;
344
- fullName: string;
345
- profilePictureUrl: string | null;
346
- mail: string | null;
347
- created_at: string;
348
- updated_at: string;
349
326
  tags: {
350
327
  id: string;
351
328
  name: string;
@@ -358,6 +335,17 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
358
335
  isExclusive: boolean;
359
336
  };
360
337
  }[];
338
+ }>, "many">;
339
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
340
+ profiles: {
341
+ id: string;
342
+ phoneNumber: string;
343
+ secondaryPhoneNumber: string | null;
344
+ fullName: string;
345
+ profilePictureUrl: string | null;
346
+ mail: string | null;
347
+ created_at: string;
348
+ updated_at: string;
361
349
  shortId: number;
362
350
  firstName: string | null;
363
351
  gender: string | null;
@@ -369,17 +357,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
369
357
  residenceLocationId: string | null;
370
358
  isInTrash: boolean;
371
359
  movedToTrashDate: string | null;
372
- }[];
373
- }, {
374
- profiles: {
375
- id: string;
376
- phoneNumber: string;
377
- secondaryPhoneNumber: string | null;
378
- fullName: string;
379
- profilePictureUrl: string | null;
380
- mail: string | null;
381
- created_at: string;
382
- updated_at: string;
383
360
  tags: {
384
361
  id: string;
385
362
  name: string;
@@ -392,6 +369,17 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
392
369
  isExclusive: boolean;
393
370
  };
394
371
  }[];
372
+ }[];
373
+ }, {
374
+ profiles: {
375
+ id: string;
376
+ phoneNumber: string;
377
+ secondaryPhoneNumber: string | null;
378
+ fullName: string;
379
+ profilePictureUrl: string | null;
380
+ mail: string | null;
381
+ created_at: string;
382
+ updated_at: string;
395
383
  shortId: number;
396
384
  firstName: string | null;
397
385
  gender: string | null;
@@ -403,6 +391,18 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
403
391
  residenceLocationId: string | null;
404
392
  isInTrash: boolean;
405
393
  movedToTrashDate: string | null;
394
+ tags: {
395
+ id: string;
396
+ name: string;
397
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
398
+ created_at: string;
399
+ updated_at: string;
400
+ groupId: string;
401
+ group: {
402
+ color: string;
403
+ isExclusive: boolean;
404
+ };
405
+ }[];
406
406
  }[];
407
407
  }>>;
408
408
  export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {
@@ -76,17 +76,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
76
76
  mail: string | null;
77
77
  created_at: Date;
78
78
  updated_at: Date;
79
- tags: {
80
- id: string;
81
- name: string;
82
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
83
- created_at: Date;
84
- updated_at: Date;
85
- groupId: string;
86
- group: {
87
- id: string;
88
- };
89
- }[];
90
79
  shortId: number;
91
80
  firstName: string | null;
92
81
  gender: string | null;
@@ -98,15 +87,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
98
87
  residenceLocationId: string | null;
99
88
  isInTrash: boolean;
100
89
  movedToTrashDate: Date | null;
101
- }, {
102
- id: string;
103
- phoneNumber: string;
104
- secondaryPhoneNumber: string | null;
105
- fullName: string;
106
- profilePictureUrl: string | null;
107
- mail: string | null;
108
- created_at: Date;
109
- updated_at: Date;
110
90
  tags: {
111
91
  id: string;
112
92
  name: string;
@@ -118,6 +98,15 @@ export declare const findByDateRangeSchema: z.ZodObject<{
118
98
  id: string;
119
99
  };
120
100
  }[];
101
+ }, {
102
+ id: string;
103
+ phoneNumber: string;
104
+ secondaryPhoneNumber: string | null;
105
+ fullName: string;
106
+ profilePictureUrl: string | null;
107
+ mail: string | null;
108
+ created_at: Date;
109
+ updated_at: Date;
121
110
  shortId: number;
122
111
  firstName: string | null;
123
112
  gender: string | null;
@@ -129,17 +118,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
129
118
  residenceLocationId: string | null;
130
119
  isInTrash: boolean;
131
120
  movedToTrashDate: Date | null;
132
- }>, "many">;
133
- }, "strip", z.ZodTypeAny, {
134
- profiles: {
135
- id: string;
136
- phoneNumber: string;
137
- secondaryPhoneNumber: string | null;
138
- fullName: string;
139
- profilePictureUrl: string | null;
140
- mail: string | null;
141
- created_at: Date;
142
- updated_at: Date;
143
121
  tags: {
144
122
  id: string;
145
123
  name: string;
@@ -151,6 +129,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
151
129
  id: string;
152
130
  };
153
131
  }[];
132
+ }>, "many">;
133
+ }, "strip", z.ZodTypeAny, {
134
+ profiles: {
135
+ id: string;
136
+ phoneNumber: string;
137
+ secondaryPhoneNumber: string | null;
138
+ fullName: string;
139
+ profilePictureUrl: string | null;
140
+ mail: string | null;
141
+ created_at: Date;
142
+ updated_at: Date;
154
143
  shortId: number;
155
144
  firstName: string | null;
156
145
  gender: string | null;
@@ -162,17 +151,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
162
151
  residenceLocationId: string | null;
163
152
  isInTrash: boolean;
164
153
  movedToTrashDate: Date | null;
165
- }[];
166
- }, {
167
- profiles: {
168
- id: string;
169
- phoneNumber: string;
170
- secondaryPhoneNumber: string | null;
171
- fullName: string;
172
- profilePictureUrl: string | null;
173
- mail: string | null;
174
- created_at: Date;
175
- updated_at: Date;
176
154
  tags: {
177
155
  id: string;
178
156
  name: string;
@@ -184,6 +162,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
184
162
  id: string;
185
163
  };
186
164
  }[];
165
+ }[];
166
+ }, {
167
+ profiles: {
168
+ id: string;
169
+ phoneNumber: string;
170
+ secondaryPhoneNumber: string | null;
171
+ fullName: string;
172
+ profilePictureUrl: string | null;
173
+ mail: string | null;
174
+ created_at: Date;
175
+ updated_at: Date;
187
176
  shortId: number;
188
177
  firstName: string | null;
189
178
  gender: string | null;
@@ -195,6 +184,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
195
184
  residenceLocationId: string | null;
196
185
  isInTrash: boolean;
197
186
  movedToTrashDate: Date | null;
187
+ tags: {
188
+ id: string;
189
+ name: string;
190
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
191
+ created_at: Date;
192
+ updated_at: Date;
193
+ groupId: string;
194
+ group: {
195
+ id: string;
196
+ };
197
+ }[];
198
198
  }[];
199
199
  }>;
200
200
  declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -267,17 +267,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
267
267
  mail: string | null;
268
268
  created_at: string;
269
269
  updated_at: string;
270
- tags: {
271
- id: string;
272
- name: string;
273
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
274
- created_at: string;
275
- updated_at: string;
276
- groupId: string;
277
- group: {
278
- id: string;
279
- };
280
- }[];
281
270
  shortId: number;
282
271
  firstName: string | null;
283
272
  gender: string | null;
@@ -289,15 +278,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
289
278
  residenceLocationId: string | null;
290
279
  isInTrash: boolean;
291
280
  movedToTrashDate: string | null;
292
- }, {
293
- id: string;
294
- phoneNumber: string;
295
- secondaryPhoneNumber: string | null;
296
- fullName: string;
297
- profilePictureUrl: string | null;
298
- mail: string | null;
299
- created_at: string;
300
- updated_at: string;
301
281
  tags: {
302
282
  id: string;
303
283
  name: string;
@@ -309,6 +289,15 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
309
289
  id: string;
310
290
  };
311
291
  }[];
292
+ }, {
293
+ id: string;
294
+ phoneNumber: string;
295
+ secondaryPhoneNumber: string | null;
296
+ fullName: string;
297
+ profilePictureUrl: string | null;
298
+ mail: string | null;
299
+ created_at: string;
300
+ updated_at: string;
312
301
  shortId: number;
313
302
  firstName: string | null;
314
303
  gender: string | null;
@@ -320,17 +309,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
320
309
  residenceLocationId: string | null;
321
310
  isInTrash: boolean;
322
311
  movedToTrashDate: string | null;
323
- }>, "many">;
324
- }, z.UnknownKeysParam, z.ZodTypeAny, {
325
- profiles: {
326
- id: string;
327
- phoneNumber: string;
328
- secondaryPhoneNumber: string | null;
329
- fullName: string;
330
- profilePictureUrl: string | null;
331
- mail: string | null;
332
- created_at: string;
333
- updated_at: string;
334
312
  tags: {
335
313
  id: string;
336
314
  name: string;
@@ -342,6 +320,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
342
320
  id: string;
343
321
  };
344
322
  }[];
323
+ }>, "many">;
324
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
325
+ profiles: {
326
+ id: string;
327
+ phoneNumber: string;
328
+ secondaryPhoneNumber: string | null;
329
+ fullName: string;
330
+ profilePictureUrl: string | null;
331
+ mail: string | null;
332
+ created_at: string;
333
+ updated_at: string;
345
334
  shortId: number;
346
335
  firstName: string | null;
347
336
  gender: string | null;
@@ -353,17 +342,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
353
342
  residenceLocationId: string | null;
354
343
  isInTrash: boolean;
355
344
  movedToTrashDate: string | null;
356
- }[];
357
- }, {
358
- profiles: {
359
- id: string;
360
- phoneNumber: string;
361
- secondaryPhoneNumber: string | null;
362
- fullName: string;
363
- profilePictureUrl: string | null;
364
- mail: string | null;
365
- created_at: string;
366
- updated_at: string;
367
345
  tags: {
368
346
  id: string;
369
347
  name: string;
@@ -375,6 +353,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
375
353
  id: string;
376
354
  };
377
355
  }[];
356
+ }[];
357
+ }, {
358
+ profiles: {
359
+ id: string;
360
+ phoneNumber: string;
361
+ secondaryPhoneNumber: string | null;
362
+ fullName: string;
363
+ profilePictureUrl: string | null;
364
+ mail: string | null;
365
+ created_at: string;
366
+ updated_at: string;
378
367
  shortId: number;
379
368
  firstName: string | null;
380
369
  gender: string | null;
@@ -386,6 +375,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
386
375
  residenceLocationId: string | null;
387
376
  isInTrash: boolean;
388
377
  movedToTrashDate: string | null;
378
+ tags: {
379
+ id: string;
380
+ name: string;
381
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
382
+ created_at: string;
383
+ updated_at: string;
384
+ groupId: string;
385
+ group: {
386
+ id: string;
387
+ };
388
+ }[];
389
389
  }[];
390
390
  }>>;
391
391
  export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
@@ -466,17 +466,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
466
466
  mail: string | null;
467
467
  created_at: Date;
468
468
  updated_at: Date;
469
- tags: {
470
- id: string;
471
- name: string;
472
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
473
- created_at: Date;
474
- updated_at: Date;
475
- groupId: string;
476
- group: {
477
- id: string;
478
- };
479
- }[];
480
469
  shortId: number;
481
470
  firstName: string | null;
482
471
  gender: string | null;
@@ -488,15 +477,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
488
477
  residenceLocationId: string | null;
489
478
  isInTrash: boolean;
490
479
  movedToTrashDate: Date | null;
491
- }, {
492
- id: string;
493
- phoneNumber: string;
494
- secondaryPhoneNumber: string | null;
495
- fullName: string;
496
- profilePictureUrl: string | null;
497
- mail: string | null;
498
- created_at: Date;
499
- updated_at: Date;
500
480
  tags: {
501
481
  id: string;
502
482
  name: string;
@@ -508,6 +488,15 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
508
488
  id: string;
509
489
  };
510
490
  }[];
491
+ }, {
492
+ id: string;
493
+ phoneNumber: string;
494
+ secondaryPhoneNumber: string | null;
495
+ fullName: string;
496
+ profilePictureUrl: string | null;
497
+ mail: string | null;
498
+ created_at: Date;
499
+ updated_at: Date;
511
500
  shortId: number;
512
501
  firstName: string | null;
513
502
  gender: string | null;
@@ -519,6 +508,17 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
519
508
  residenceLocationId: string | null;
520
509
  isInTrash: boolean;
521
510
  movedToTrashDate: Date | null;
511
+ tags: {
512
+ id: string;
513
+ name: string;
514
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
515
+ created_at: Date;
516
+ updated_at: Date;
517
+ groupId: string;
518
+ group: {
519
+ id: string;
520
+ };
521
+ }[];
522
522
  }>, "many">>;
523
523
  declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
524
524
  id: z.ZodString;
@@ -596,17 +596,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
596
596
  mail: string | null;
597
597
  created_at: Date;
598
598
  updated_at: Date;
599
- tags: {
600
- id: string;
601
- name: string;
602
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
603
- created_at: Date;
604
- updated_at: Date;
605
- groupId: string;
606
- group: {
607
- id: string;
608
- };
609
- }[];
610
599
  shortId: number;
611
600
  firstName: string | null;
612
601
  gender: string | null;
@@ -618,15 +607,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
618
607
  residenceLocationId: string | null;
619
608
  isInTrash: boolean;
620
609
  movedToTrashDate: Date | null;
621
- }, {
622
- id: string;
623
- phoneNumber: string;
624
- secondaryPhoneNumber: string | null;
625
- fullName: string;
626
- profilePictureUrl: string | null;
627
- mail: string | null;
628
- created_at: Date;
629
- updated_at: Date;
630
610
  tags: {
631
611
  id: string;
632
612
  name: string;
@@ -638,6 +618,15 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
638
618
  id: string;
639
619
  };
640
620
  }[];
621
+ }, {
622
+ id: string;
623
+ phoneNumber: string;
624
+ secondaryPhoneNumber: string | null;
625
+ fullName: string;
626
+ profilePictureUrl: string | null;
627
+ mail: string | null;
628
+ created_at: Date;
629
+ updated_at: Date;
641
630
  shortId: number;
642
631
  firstName: string | null;
643
632
  gender: string | null;
@@ -649,6 +638,17 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
649
638
  residenceLocationId: string | null;
650
639
  isInTrash: boolean;
651
640
  movedToTrashDate: Date | null;
641
+ tags: {
642
+ id: string;
643
+ name: string;
644
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
645
+ created_at: Date;
646
+ updated_at: Date;
647
+ groupId: string;
648
+ group: {
649
+ id: string;
650
+ };
651
+ }[];
652
652
  }>, "many">>>;
653
653
  export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
654
654
  }