expo-backend-types 0.22.0-EXPO-251-EB-Whatsapp.2 → 0.22.0-EXPO-288-EB-Imagenes.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/src/event/dto/event.dto.js +1 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
- package/dist/src/event/dto/update-event.dto.d.ts +20 -20
- package/dist/src/i18n/es.d.ts +18 -43
- package/dist/src/i18n/es.js +18 -43
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/image/dto/delete-image.dto.d.ts +18 -0
- package/dist/src/image/dto/delete-image.dto.js +12 -0
- package/dist/src/image/dto/image.dto.d.ts +24 -0
- package/dist/src/image/dto/image.dto.js +18 -0
- package/dist/src/image/dto/update-image.dto.d.ts +18 -0
- package/dist/src/image/dto/update-image.dto.js +15 -0
- package/dist/src/image/exports.d.ts +3 -0
- package/dist/src/{csv → image}/exports.js +3 -3
- package/dist/src/location/dto/find-all-location.dto.d.ts +16 -16
- package/dist/src/message/dto/message.dto.d.ts +2 -2
- package/dist/src/message/exports.d.ts +0 -4
- package/dist/src/message/exports.js +0 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/types/prisma-schema/default.d.ts +1 -1
- package/dist/types/prisma-schema/edge.d.ts +1 -1
- package/dist/types/prisma-schema/edge.js +11 -7
- package/dist/types/prisma-schema/index-browser.js +7 -4
- package/dist/types/prisma-schema/index.d.ts +803 -1034
- package/dist/types/prisma-schema/index.js +11 -7
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +14 -1
- package/dist/types/prisma-schema/runtime/edge-esm.js +21 -18
- package/dist/types/prisma-schema/runtime/edge.js +21 -18
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +297 -87
- package/dist/types/prisma-schema/runtime/library.js +64 -61
- package/dist/types/prisma-schema/runtime/react-native.js +31 -28
- package/dist/types/prisma-schema/runtime/wasm.js +22 -19
- package/dist/types/prisma-schema/wasm.d.ts +1 -1
- package/dist/types/prisma-schema/wasm.js +7 -4
- package/dist/types/schema.d.ts +30 -145
- package/package.json +5 -7
- package/dist/src/csv/dto/csv.dto.d.ts +0 -18
- package/dist/src/csv/dto/csv.dto.js +0 -17
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +0 -23
- package/dist/src/csv/dto/download-all-tables.dto.js +0 -19
- package/dist/src/csv/dto/download-profiles.dto.d.ts +0 -18
- package/dist/src/csv/dto/download-profiles.dto.js +0 -15
- package/dist/src/csv/exports.d.ts +0 -3
- package/dist/src/message/dto/create-template.dto.d.ts +0 -93
- package/dist/src/message/dto/create-template.dto.js +0 -24
- package/dist/src/message/dto/find-template-by-id.dto.d.ts +0 -245
- package/dist/src/message/dto/find-template-by-id.dto.js +0 -23
- package/dist/src/message/dto/find-templates.dto.d.ts +0 -109
- package/dist/src/message/dto/find-templates.dto.js +0 -20
- package/dist/src/message/dto/template.dto.d.ts +0 -154
- package/dist/src/message/dto/template.dto.js +0 -58
@@ -57,6 +57,14 @@ 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
|
+
}[];
|
60
68
|
shortId: number;
|
61
69
|
firstName: string | null;
|
62
70
|
gender: string | null;
|
@@ -68,14 +76,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
68
76
|
residenceLocationId: string | null;
|
69
77
|
isInTrash: boolean;
|
70
78
|
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,6 +85,14 @@ 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
|
+
}[];
|
88
96
|
shortId: number;
|
89
97
|
firstName: string | null;
|
90
98
|
gender: string | null;
|
@@ -96,14 +104,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
96
104
|
residenceLocationId: string | null;
|
97
105
|
isInTrash: boolean;
|
98
106
|
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,6 +115,14 @@ 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
|
+
}[];
|
118
126
|
shortId: number;
|
119
127
|
firstName: string | null;
|
120
128
|
gender: string | null;
|
@@ -126,14 +134,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
126
134
|
residenceLocationId: string | null;
|
127
135
|
isInTrash: boolean;
|
128
136
|
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,6 +145,14 @@ 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
|
+
}[];
|
148
156
|
shortId: number;
|
149
157
|
firstName: string | null;
|
150
158
|
gender: string | null;
|
@@ -156,14 +164,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
156
164
|
residenceLocationId: string | null;
|
157
165
|
isInTrash: boolean;
|
158
166
|
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,6 +223,14 @@ 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
|
+
}[];
|
226
234
|
shortId: number;
|
227
235
|
firstName: string | null;
|
228
236
|
gender: string | null;
|
@@ -234,14 +242,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
234
242
|
residenceLocationId: string | null;
|
235
243
|
isInTrash: boolean;
|
236
244
|
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,6 +251,14 @@ 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
|
+
}[];
|
254
262
|
shortId: number;
|
255
263
|
firstName: string | null;
|
256
264
|
gender: string | null;
|
@@ -262,14 +270,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
262
270
|
residenceLocationId: string | null;
|
263
271
|
isInTrash: boolean;
|
264
272
|
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,6 +281,14 @@ 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
|
+
}[];
|
284
292
|
shortId: number;
|
285
293
|
firstName: string | null;
|
286
294
|
gender: string | null;
|
@@ -292,14 +300,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
292
300
|
residenceLocationId: string | null;
|
293
301
|
isInTrash: boolean;
|
294
302
|
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,6 +311,14 @@ 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
|
+
}[];
|
314
322
|
shortId: number;
|
315
323
|
firstName: string | null;
|
316
324
|
gender: string | null;
|
@@ -322,14 +330,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
322
330
|
residenceLocationId: string | null;
|
323
331
|
isInTrash: boolean;
|
324
332
|
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,6 +76,17 @@ 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
|
+
}[];
|
79
90
|
shortId: number;
|
80
91
|
firstName: string | null;
|
81
92
|
gender: string | null;
|
@@ -87,6 +98,15 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
87
98
|
residenceLocationId: string | null;
|
88
99
|
isInTrash: boolean;
|
89
100
|
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;
|
90
110
|
tags: {
|
91
111
|
id: string;
|
92
112
|
name: string;
|
@@ -98,15 +118,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
98
118
|
isExclusive: boolean;
|
99
119
|
};
|
100
120
|
}[];
|
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
121
|
shortId: number;
|
111
122
|
firstName: string | null;
|
112
123
|
gender: string | null;
|
@@ -118,17 +129,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
118
129
|
residenceLocationId: string | null;
|
119
130
|
isInTrash: boolean;
|
120
131
|
movedToTrashDate: Date | null;
|
121
|
-
tags: {
|
122
|
-
id: string;
|
123
|
-
name: string;
|
124
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
125
|
-
created_at: Date;
|
126
|
-
updated_at: Date;
|
127
|
-
groupId: string;
|
128
|
-
group: {
|
129
|
-
isExclusive: boolean;
|
130
|
-
};
|
131
|
-
}[];
|
132
132
|
}>, "many">;
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
134
134
|
profiles: {
|
@@ -140,17 +140,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
140
140
|
mail: string | null;
|
141
141
|
created_at: Date;
|
142
142
|
updated_at: Date;
|
143
|
-
shortId: number;
|
144
|
-
firstName: string | null;
|
145
|
-
gender: string | null;
|
146
|
-
birthDate: Date | null;
|
147
|
-
instagram: string | null;
|
148
|
-
dni: string | null;
|
149
|
-
alternativeNames: string[];
|
150
|
-
birthLocationId: string | null;
|
151
|
-
residenceLocationId: string | null;
|
152
|
-
isInTrash: boolean;
|
153
|
-
movedToTrashDate: Date | null;
|
154
143
|
tags: {
|
155
144
|
id: string;
|
156
145
|
name: string;
|
@@ -162,6 +151,17 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
162
151
|
isExclusive: boolean;
|
163
152
|
};
|
164
153
|
}[];
|
154
|
+
shortId: number;
|
155
|
+
firstName: string | null;
|
156
|
+
gender: string | null;
|
157
|
+
birthDate: Date | null;
|
158
|
+
instagram: string | null;
|
159
|
+
dni: string | null;
|
160
|
+
alternativeNames: string[];
|
161
|
+
birthLocationId: string | null;
|
162
|
+
residenceLocationId: string | null;
|
163
|
+
isInTrash: boolean;
|
164
|
+
movedToTrashDate: Date | null;
|
165
165
|
}[];
|
166
166
|
}, {
|
167
167
|
profiles: {
|
@@ -173,17 +173,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
173
173
|
mail: string | null;
|
174
174
|
created_at: Date;
|
175
175
|
updated_at: Date;
|
176
|
-
shortId: number;
|
177
|
-
firstName: string | null;
|
178
|
-
gender: string | null;
|
179
|
-
birthDate: string | null;
|
180
|
-
instagram: string | null;
|
181
|
-
dni: string | null;
|
182
|
-
alternativeNames: string[];
|
183
|
-
birthLocationId: string | null;
|
184
|
-
residenceLocationId: string | null;
|
185
|
-
isInTrash: boolean;
|
186
|
-
movedToTrashDate: Date | null;
|
187
176
|
tags: {
|
188
177
|
id: string;
|
189
178
|
name: string;
|
@@ -195,6 +184,17 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
195
184
|
isExclusive: boolean;
|
196
185
|
};
|
197
186
|
}[];
|
187
|
+
shortId: number;
|
188
|
+
firstName: string | null;
|
189
|
+
gender: string | null;
|
190
|
+
birthDate: string | null;
|
191
|
+
instagram: string | null;
|
192
|
+
dni: string | null;
|
193
|
+
alternativeNames: string[];
|
194
|
+
birthLocationId: string | null;
|
195
|
+
residenceLocationId: string | null;
|
196
|
+
isInTrash: boolean;
|
197
|
+
movedToTrashDate: Date | null;
|
198
198
|
}[];
|
199
199
|
}>;
|
200
200
|
declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -267,6 +267,17 @@ 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
|
+
}[];
|
270
281
|
shortId: number;
|
271
282
|
firstName: string | null;
|
272
283
|
gender: string | null;
|
@@ -278,6 +289,15 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
278
289
|
residenceLocationId: string | null;
|
279
290
|
isInTrash: boolean;
|
280
291
|
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;
|
281
301
|
tags: {
|
282
302
|
id: string;
|
283
303
|
name: string;
|
@@ -289,15 +309,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
289
309
|
isExclusive: boolean;
|
290
310
|
};
|
291
311
|
}[];
|
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
312
|
shortId: number;
|
302
313
|
firstName: string | null;
|
303
314
|
gender: string | null;
|
@@ -309,17 +320,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
309
320
|
residenceLocationId: string | null;
|
310
321
|
isInTrash: boolean;
|
311
322
|
movedToTrashDate: string | null;
|
312
|
-
tags: {
|
313
|
-
id: string;
|
314
|
-
name: string;
|
315
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
316
|
-
created_at: string;
|
317
|
-
updated_at: string;
|
318
|
-
groupId: string;
|
319
|
-
group: {
|
320
|
-
isExclusive: boolean;
|
321
|
-
};
|
322
|
-
}[];
|
323
323
|
}>, "many">;
|
324
324
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
325
325
|
profiles: {
|
@@ -331,17 +331,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
331
331
|
mail: string | null;
|
332
332
|
created_at: string;
|
333
333
|
updated_at: string;
|
334
|
-
shortId: number;
|
335
|
-
firstName: string | null;
|
336
|
-
gender: string | null;
|
337
|
-
birthDate: Date | null;
|
338
|
-
instagram: string | null;
|
339
|
-
dni: string | null;
|
340
|
-
alternativeNames: string[];
|
341
|
-
birthLocationId: string | null;
|
342
|
-
residenceLocationId: string | null;
|
343
|
-
isInTrash: boolean;
|
344
|
-
movedToTrashDate: string | null;
|
345
334
|
tags: {
|
346
335
|
id: string;
|
347
336
|
name: string;
|
@@ -353,6 +342,17 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
353
342
|
isExclusive: boolean;
|
354
343
|
};
|
355
344
|
}[];
|
345
|
+
shortId: number;
|
346
|
+
firstName: string | null;
|
347
|
+
gender: string | null;
|
348
|
+
birthDate: Date | null;
|
349
|
+
instagram: string | null;
|
350
|
+
dni: string | null;
|
351
|
+
alternativeNames: string[];
|
352
|
+
birthLocationId: string | null;
|
353
|
+
residenceLocationId: string | null;
|
354
|
+
isInTrash: boolean;
|
355
|
+
movedToTrashDate: string | null;
|
356
356
|
}[];
|
357
357
|
}, {
|
358
358
|
profiles: {
|
@@ -364,17 +364,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
364
364
|
mail: string | null;
|
365
365
|
created_at: string;
|
366
366
|
updated_at: string;
|
367
|
-
shortId: number;
|
368
|
-
firstName: string | null;
|
369
|
-
gender: string | null;
|
370
|
-
birthDate: string | null;
|
371
|
-
instagram: string | null;
|
372
|
-
dni: string | null;
|
373
|
-
alternativeNames: string[];
|
374
|
-
birthLocationId: string | null;
|
375
|
-
residenceLocationId: string | null;
|
376
|
-
isInTrash: boolean;
|
377
|
-
movedToTrashDate: string | null;
|
378
367
|
tags: {
|
379
368
|
id: string;
|
380
369
|
name: string;
|
@@ -386,6 +375,17 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
386
375
|
isExclusive: boolean;
|
387
376
|
};
|
388
377
|
}[];
|
378
|
+
shortId: number;
|
379
|
+
firstName: string | null;
|
380
|
+
gender: string | null;
|
381
|
+
birthDate: string | null;
|
382
|
+
instagram: string | null;
|
383
|
+
dni: string | null;
|
384
|
+
alternativeNames: string[];
|
385
|
+
birthLocationId: string | null;
|
386
|
+
residenceLocationId: string | null;
|
387
|
+
isInTrash: boolean;
|
388
|
+
movedToTrashDate: string | null;
|
389
389
|
}[];
|
390
390
|
}>>;
|
391
391
|
export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {
|