expo-backend-types 0.18.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -139,6 +139,17 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
139
139
  mail: string | null;
140
140
  created_at: Date;
141
141
  updated_at: Date;
142
+ shortId: number;
143
+ firstName: string | null;
144
+ gender: string | null;
145
+ birthDate: Date | null;
146
+ instagram: string | null;
147
+ dni: string | null;
148
+ alternativeNames: string[];
149
+ birthLocationId: string | null;
150
+ residenceLocationId: string | null;
151
+ isInTrash: boolean;
152
+ movedToTrashDate: Date | null;
142
153
  tags: {
143
154
  id: string;
144
155
  name: string;
@@ -152,18 +163,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
152
163
  isExclusive: boolean;
153
164
  };
154
165
  }[];
155
- shortId: number;
156
- firstName: string | null;
157
- gender: string | null;
158
- birthDate: Date | null;
159
- instagram: string | null;
160
- dni: string | null;
161
- alternativeNames: string[];
162
- birthLocationId: string | null;
163
- residenceLocationId: string | null;
164
- isInTrash: boolean;
165
- movedToTrashDate: Date | null;
166
- residenceLocation: {
166
+ birthLocation: {
167
167
  id: string;
168
168
  latitude: number;
169
169
  longitude: number;
@@ -173,7 +173,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
173
173
  country: string;
174
174
  city: string;
175
175
  } | null;
176
- birthLocation: {
176
+ residenceLocation: {
177
177
  id: string;
178
178
  latitude: number;
179
179
  longitude: number;
@@ -192,6 +192,17 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
192
192
  mail: string | null;
193
193
  created_at: Date;
194
194
  updated_at: Date;
195
+ shortId: number;
196
+ firstName: string | null;
197
+ gender: string | null;
198
+ birthDate: string | null;
199
+ instagram: string | null;
200
+ dni: string | null;
201
+ alternativeNames: string[];
202
+ birthLocationId: string | null;
203
+ residenceLocationId: string | null;
204
+ isInTrash: boolean;
205
+ movedToTrashDate: Date | null;
195
206
  tags: {
196
207
  id: string;
197
208
  name: string;
@@ -205,18 +216,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
205
216
  isExclusive: boolean;
206
217
  };
207
218
  }[];
208
- shortId: number;
209
- firstName: string | null;
210
- gender: string | null;
211
- birthDate: string | null;
212
- instagram: string | null;
213
- dni: string | null;
214
- alternativeNames: string[];
215
- birthLocationId: string | null;
216
- residenceLocationId: string | null;
217
- isInTrash: boolean;
218
- movedToTrashDate: Date | null;
219
- residenceLocation: {
219
+ birthLocation: {
220
220
  id: string;
221
221
  latitude: number;
222
222
  longitude: number;
@@ -226,7 +226,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
226
226
  country: string;
227
227
  city: string;
228
228
  } | null;
229
- birthLocation: {
229
+ residenceLocation: {
230
230
  id: string;
231
231
  latitude: number;
232
232
  longitude: number;
@@ -372,6 +372,17 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
372
372
  mail: string | null;
373
373
  created_at: string;
374
374
  updated_at: string;
375
+ shortId: number;
376
+ firstName: string | null;
377
+ gender: string | null;
378
+ birthDate: Date | null;
379
+ instagram: string | null;
380
+ dni: string | null;
381
+ alternativeNames: string[];
382
+ birthLocationId: string | null;
383
+ residenceLocationId: string | null;
384
+ isInTrash: boolean;
385
+ movedToTrashDate: string | null;
375
386
  tags: {
376
387
  id: string;
377
388
  name: string;
@@ -385,18 +396,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
385
396
  isExclusive: boolean;
386
397
  };
387
398
  }[];
388
- shortId: number;
389
- firstName: string | null;
390
- gender: string | null;
391
- birthDate: Date | null;
392
- instagram: string | null;
393
- dni: string | null;
394
- alternativeNames: string[];
395
- birthLocationId: string | null;
396
- residenceLocationId: string | null;
397
- isInTrash: boolean;
398
- movedToTrashDate: string | null;
399
- residenceLocation: {
399
+ birthLocation: {
400
400
  id: string;
401
401
  latitude: number;
402
402
  longitude: number;
@@ -406,7 +406,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
406
406
  country: string;
407
407
  city: string;
408
408
  } | null;
409
- birthLocation: {
409
+ residenceLocation: {
410
410
  id: string;
411
411
  latitude: number;
412
412
  longitude: number;
@@ -425,6 +425,17 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
425
425
  mail: string | null;
426
426
  created_at: string;
427
427
  updated_at: string;
428
+ shortId: number;
429
+ firstName: string | null;
430
+ gender: string | null;
431
+ birthDate: string | null;
432
+ instagram: string | null;
433
+ dni: string | null;
434
+ alternativeNames: string[];
435
+ birthLocationId: string | null;
436
+ residenceLocationId: string | null;
437
+ isInTrash: boolean;
438
+ movedToTrashDate: string | null;
428
439
  tags: {
429
440
  id: string;
430
441
  name: string;
@@ -438,18 +449,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
438
449
  isExclusive: boolean;
439
450
  };
440
451
  }[];
441
- shortId: number;
442
- firstName: string | null;
443
- gender: string | null;
444
- birthDate: string | null;
445
- instagram: string | null;
446
- dni: string | null;
447
- alternativeNames: string[];
448
- birthLocationId: string | null;
449
- residenceLocationId: string | null;
450
- isInTrash: boolean;
451
- movedToTrashDate: string | null;
452
- residenceLocation: {
452
+ birthLocation: {
453
453
  id: string;
454
454
  latitude: number;
455
455
  longitude: number;
@@ -459,7 +459,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
459
459
  country: string;
460
460
  city: string;
461
461
  } | null;
462
- birthLocation: {
462
+ residenceLocation: {
463
463
  id: string;
464
464
  latitude: number;
465
465
  longitude: number;
@@ -57,14 +57,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
57
57
  mail: string | null;
58
58
  created_at: Date;
59
59
  updated_at: Date;
60
- tags: {
61
- id: string;
62
- name: string;
63
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
64
- created_at: Date;
65
- updated_at: Date;
66
- groupId: string;
67
- }[];
68
60
  shortId: number;
69
61
  firstName: string | null;
70
62
  gender: string | null;
@@ -76,6 +68,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
76
68
  residenceLocationId: string | null;
77
69
  isInTrash: boolean;
78
70
  movedToTrashDate: Date | null;
71
+ tags: {
72
+ id: string;
73
+ name: string;
74
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
75
+ created_at: Date;
76
+ updated_at: Date;
77
+ groupId: string;
78
+ }[];
79
79
  }, {
80
80
  id: string;
81
81
  phoneNumber: string;
@@ -85,14 +85,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
85
85
  mail: string | null;
86
86
  created_at: Date;
87
87
  updated_at: Date;
88
- tags: {
89
- id: string;
90
- name: string;
91
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
92
- created_at: Date;
93
- updated_at: Date;
94
- groupId: string;
95
- }[];
96
88
  shortId: number;
97
89
  firstName: string | null;
98
90
  gender: string | null;
@@ -104,6 +96,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
104
96
  residenceLocationId: string | null;
105
97
  isInTrash: boolean;
106
98
  movedToTrashDate: Date | null;
99
+ tags: {
100
+ id: string;
101
+ name: string;
102
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
103
+ created_at: Date;
104
+ updated_at: Date;
105
+ groupId: string;
106
+ }[];
107
107
  }>, "many">;
108
108
  }, "strip", z.ZodTypeAny, {
109
109
  profiles: {
@@ -115,14 +115,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
115
115
  mail: string | null;
116
116
  created_at: Date;
117
117
  updated_at: Date;
118
- tags: {
119
- id: string;
120
- name: string;
121
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
122
- created_at: Date;
123
- updated_at: Date;
124
- groupId: string;
125
- }[];
126
118
  shortId: number;
127
119
  firstName: string | null;
128
120
  gender: string | null;
@@ -134,6 +126,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
134
126
  residenceLocationId: string | null;
135
127
  isInTrash: boolean;
136
128
  movedToTrashDate: Date | null;
129
+ tags: {
130
+ id: string;
131
+ name: string;
132
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
133
+ created_at: Date;
134
+ updated_at: Date;
135
+ groupId: string;
136
+ }[];
137
137
  }[];
138
138
  }, {
139
139
  profiles: {
@@ -145,14 +145,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
145
145
  mail: string | null;
146
146
  created_at: Date;
147
147
  updated_at: Date;
148
- tags: {
149
- id: string;
150
- name: string;
151
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
152
- created_at: Date;
153
- updated_at: Date;
154
- groupId: string;
155
- }[];
156
148
  shortId: number;
157
149
  firstName: string | null;
158
150
  gender: string | null;
@@ -164,6 +156,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
164
156
  residenceLocationId: string | null;
165
157
  isInTrash: boolean;
166
158
  movedToTrashDate: Date | null;
159
+ tags: {
160
+ id: string;
161
+ name: string;
162
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
163
+ created_at: Date;
164
+ updated_at: Date;
165
+ groupId: string;
166
+ }[];
167
167
  }[];
168
168
  }>;
169
169
  declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -223,14 +223,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
223
223
  mail: string | null;
224
224
  created_at: string;
225
225
  updated_at: string;
226
- tags: {
227
- id: string;
228
- name: string;
229
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
230
- created_at: string;
231
- updated_at: string;
232
- groupId: string;
233
- }[];
234
226
  shortId: number;
235
227
  firstName: string | null;
236
228
  gender: string | null;
@@ -242,6 +234,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
242
234
  residenceLocationId: string | null;
243
235
  isInTrash: boolean;
244
236
  movedToTrashDate: string | null;
237
+ tags: {
238
+ id: string;
239
+ name: string;
240
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
241
+ created_at: string;
242
+ updated_at: string;
243
+ groupId: string;
244
+ }[];
245
245
  }, {
246
246
  id: string;
247
247
  phoneNumber: string;
@@ -251,14 +251,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
251
251
  mail: string | null;
252
252
  created_at: string;
253
253
  updated_at: string;
254
- tags: {
255
- id: string;
256
- name: string;
257
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
258
- created_at: string;
259
- updated_at: string;
260
- groupId: string;
261
- }[];
262
254
  shortId: number;
263
255
  firstName: string | null;
264
256
  gender: string | null;
@@ -270,6 +262,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
270
262
  residenceLocationId: string | null;
271
263
  isInTrash: boolean;
272
264
  movedToTrashDate: string | null;
265
+ tags: {
266
+ id: string;
267
+ name: string;
268
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
269
+ created_at: string;
270
+ updated_at: string;
271
+ groupId: string;
272
+ }[];
273
273
  }>, "many">;
274
274
  }, z.UnknownKeysParam, z.ZodTypeAny, {
275
275
  profiles: {
@@ -281,14 +281,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
281
281
  mail: string | null;
282
282
  created_at: string;
283
283
  updated_at: string;
284
- tags: {
285
- id: string;
286
- name: string;
287
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
288
- created_at: string;
289
- updated_at: string;
290
- groupId: string;
291
- }[];
292
284
  shortId: number;
293
285
  firstName: string | null;
294
286
  gender: string | null;
@@ -300,6 +292,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
300
292
  residenceLocationId: string | null;
301
293
  isInTrash: boolean;
302
294
  movedToTrashDate: string | null;
295
+ tags: {
296
+ id: string;
297
+ name: string;
298
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
299
+ created_at: string;
300
+ updated_at: string;
301
+ groupId: string;
302
+ }[];
303
303
  }[];
304
304
  }, {
305
305
  profiles: {
@@ -311,14 +311,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
311
311
  mail: string | null;
312
312
  created_at: string;
313
313
  updated_at: string;
314
- tags: {
315
- id: string;
316
- name: string;
317
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
318
- created_at: string;
319
- updated_at: string;
320
- groupId: string;
321
- }[];
322
314
  shortId: number;
323
315
  firstName: string | null;
324
316
  gender: string | null;
@@ -330,6 +322,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
330
322
  residenceLocationId: string | null;
331
323
  isInTrash: boolean;
332
324
  movedToTrashDate: string | null;
325
+ tags: {
326
+ id: string;
327
+ name: string;
328
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
329
+ created_at: string;
330
+ updated_at: string;
331
+ groupId: string;
332
+ }[];
333
333
  }[];
334
334
  }>>;
335
335
  export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {
@@ -76,17 +76,6 @@ export declare const findByTagsProfileResponseSchema: 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
- isExclusive: boolean;
88
- };
89
- }[];
90
79
  shortId: number;
91
80
  firstName: string | null;
92
81
  gender: string | null;
@@ -98,15 +87,6 @@ export declare const findByTagsProfileResponseSchema: 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 findByTagsProfileResponseSchema: z.ZodObject<{
118
98
  isExclusive: boolean;
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 findByTagsProfileResponseSchema: 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 findByTagsProfileResponseSchema: z.ZodObject<{
151
129
  isExclusive: boolean;
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 findByTagsProfileResponseSchema: 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 findByTagsProfileResponseSchema: z.ZodObject<{
184
162
  isExclusive: boolean;
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 findByTagsProfileResponseSchema: 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
+ isExclusive: boolean;
196
+ };
197
+ }[];
198
198
  }[];
199
199
  }>;
200
200
  declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -267,17 +267,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
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
- isExclusive: boolean;
279
- };
280
- }[];
281
270
  shortId: number;
282
271
  firstName: string | null;
283
272
  gender: string | null;
@@ -289,15 +278,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
309
289
  isExclusive: boolean;
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
342
320
  isExclusive: boolean;
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
375
353
  isExclusive: boolean;
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 FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
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
+ isExclusive: boolean;
387
+ };
388
+ }[];
389
389
  }[];
390
390
  }>>;
391
391
  export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {