expo-backend-types 0.22.0-EXPO-288-EB-Imagenes.1 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/src/csv/dto/csv.dto.d.ts +18 -0
- package/dist/src/csv/dto/csv.dto.js +17 -0
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
- package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
- package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
- package/dist/src/csv/dto/download-profiles.dto.js +15 -0
- package/dist/src/csv/exports.d.ts +3 -0
- package/dist/src/{image → csv}/exports.js +3 -3
- 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 -20
- package/dist/src/i18n/es.js +18 -20
- package/dist/src/i18n/es.js.map +1 -1
- 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/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 +7 -11
- package/dist/types/prisma-schema/index-browser.js +4 -7
- package/dist/types/prisma-schema/index.d.ts +1036 -805
- package/dist/types/prisma-schema/index.js +7 -11
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +1 -14
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -21
- package/dist/types/prisma-schema/runtime/edge.js +18 -21
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +87 -297
- package/dist/types/prisma-schema/runtime/library.js +61 -64
- package/dist/types/prisma-schema/runtime/react-native.js +28 -31
- package/dist/types/prisma-schema/runtime/wasm.js +19 -22
- package/dist/types/prisma-schema/wasm.d.ts +1 -1
- package/dist/types/prisma-schema/wasm.js +4 -7
- package/dist/types/schema.d.ts +32 -42
- package/package.json +7 -5
- package/dist/src/image/dto/delete-image.dto.d.ts +0 -18
- package/dist/src/image/dto/delete-image.dto.js +0 -12
- package/dist/src/image/dto/image.dto.d.ts +0 -24
- package/dist/src/image/dto/image.dto.js +0 -18
- package/dist/src/image/dto/update-image.dto.d.ts +0 -18
- package/dist/src/image/dto/update-image.dto.js +0 -15
- package/dist/src/image/exports.d.ts +0 -3
@@ -166,14 +166,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
166
166
|
mail: string | null;
|
167
167
|
created_at: Date;
|
168
168
|
updated_at: Date;
|
169
|
-
tags: {
|
170
|
-
id: string;
|
171
|
-
name: string;
|
172
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
173
|
-
created_at: Date;
|
174
|
-
updated_at: Date;
|
175
|
-
groupId: string;
|
176
|
-
}[];
|
177
169
|
shortId: number;
|
178
170
|
firstName: string | null;
|
179
171
|
gender: string | null;
|
@@ -185,7 +177,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
185
177
|
residenceLocationId: string | null;
|
186
178
|
isInTrash: boolean;
|
187
179
|
movedToTrashDate: Date | null;
|
188
|
-
inChat: boolean;
|
189
180
|
messages: {
|
190
181
|
message: {
|
191
182
|
id: string;
|
@@ -207,6 +198,15 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
207
198
|
created_at: Date;
|
208
199
|
state: "SENT" | "RECEIVED" | "SEEN";
|
209
200
|
}[];
|
201
|
+
tags: {
|
202
|
+
id: string;
|
203
|
+
name: string;
|
204
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
205
|
+
created_at: Date;
|
206
|
+
updated_at: Date;
|
207
|
+
groupId: string;
|
208
|
+
}[];
|
209
|
+
inChat: boolean;
|
210
210
|
}, {
|
211
211
|
id: string;
|
212
212
|
phoneNumber: string;
|
@@ -216,14 +216,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
216
216
|
mail: string | null;
|
217
217
|
created_at: Date;
|
218
218
|
updated_at: Date;
|
219
|
-
tags: {
|
220
|
-
id: string;
|
221
|
-
name: string;
|
222
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
223
|
-
created_at: Date;
|
224
|
-
updated_at: Date;
|
225
|
-
groupId: string;
|
226
|
-
}[];
|
227
219
|
shortId: number;
|
228
220
|
firstName: string | null;
|
229
221
|
gender: string | null;
|
@@ -235,7 +227,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
235
227
|
residenceLocationId: string | null;
|
236
228
|
isInTrash: boolean;
|
237
229
|
movedToTrashDate: Date | null;
|
238
|
-
inChat: boolean;
|
239
230
|
messages: {
|
240
231
|
message: {
|
241
232
|
id: string;
|
@@ -257,6 +248,15 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
257
248
|
created_at: Date;
|
258
249
|
state: "SENT" | "RECEIVED" | "SEEN";
|
259
250
|
}[];
|
251
|
+
tags: {
|
252
|
+
id: string;
|
253
|
+
name: string;
|
254
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
255
|
+
created_at: Date;
|
256
|
+
updated_at: Date;
|
257
|
+
groupId: string;
|
258
|
+
}[];
|
259
|
+
inChat: boolean;
|
260
260
|
}>, "many">;
|
261
261
|
}, "strip", z.ZodTypeAny, {
|
262
262
|
profiles: {
|
@@ -268,14 +268,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
268
268
|
mail: string | null;
|
269
269
|
created_at: Date;
|
270
270
|
updated_at: Date;
|
271
|
-
tags: {
|
272
|
-
id: string;
|
273
|
-
name: string;
|
274
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
275
|
-
created_at: Date;
|
276
|
-
updated_at: Date;
|
277
|
-
groupId: string;
|
278
|
-
}[];
|
279
271
|
shortId: number;
|
280
272
|
firstName: string | null;
|
281
273
|
gender: string | null;
|
@@ -287,7 +279,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
287
279
|
residenceLocationId: string | null;
|
288
280
|
isInTrash: boolean;
|
289
281
|
movedToTrashDate: Date | null;
|
290
|
-
inChat: boolean;
|
291
282
|
messages: {
|
292
283
|
message: {
|
293
284
|
id: string;
|
@@ -309,6 +300,15 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
309
300
|
created_at: Date;
|
310
301
|
state: "SENT" | "RECEIVED" | "SEEN";
|
311
302
|
}[];
|
303
|
+
tags: {
|
304
|
+
id: string;
|
305
|
+
name: string;
|
306
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
307
|
+
created_at: Date;
|
308
|
+
updated_at: Date;
|
309
|
+
groupId: string;
|
310
|
+
}[];
|
311
|
+
inChat: boolean;
|
312
312
|
}[];
|
313
313
|
}, {
|
314
314
|
profiles: {
|
@@ -320,14 +320,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
320
320
|
mail: string | null;
|
321
321
|
created_at: Date;
|
322
322
|
updated_at: Date;
|
323
|
-
tags: {
|
324
|
-
id: string;
|
325
|
-
name: string;
|
326
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
327
|
-
created_at: Date;
|
328
|
-
updated_at: Date;
|
329
|
-
groupId: string;
|
330
|
-
}[];
|
331
323
|
shortId: number;
|
332
324
|
firstName: string | null;
|
333
325
|
gender: string | null;
|
@@ -339,7 +331,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
339
331
|
residenceLocationId: string | null;
|
340
332
|
isInTrash: boolean;
|
341
333
|
movedToTrashDate: Date | null;
|
342
|
-
inChat: boolean;
|
343
334
|
messages: {
|
344
335
|
message: {
|
345
336
|
id: string;
|
@@ -361,6 +352,15 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
361
352
|
created_at: Date;
|
362
353
|
state: "SENT" | "RECEIVED" | "SEEN";
|
363
354
|
}[];
|
355
|
+
tags: {
|
356
|
+
id: string;
|
357
|
+
name: string;
|
358
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
359
|
+
created_at: Date;
|
360
|
+
updated_at: Date;
|
361
|
+
groupId: string;
|
362
|
+
}[];
|
363
|
+
inChat: boolean;
|
364
364
|
}[];
|
365
365
|
}>;
|
366
366
|
declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -526,14 +526,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
526
526
|
mail: string | null;
|
527
527
|
created_at: string;
|
528
528
|
updated_at: string;
|
529
|
-
tags: {
|
530
|
-
id: string;
|
531
|
-
name: string;
|
532
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
533
|
-
created_at: string;
|
534
|
-
updated_at: string;
|
535
|
-
groupId: string;
|
536
|
-
}[];
|
537
529
|
shortId: number;
|
538
530
|
firstName: string | null;
|
539
531
|
gender: string | null;
|
@@ -545,7 +537,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
545
537
|
residenceLocationId: string | null;
|
546
538
|
isInTrash: boolean;
|
547
539
|
movedToTrashDate: string | null;
|
548
|
-
inChat: boolean;
|
549
540
|
messages: {
|
550
541
|
message: {
|
551
542
|
id: string;
|
@@ -567,6 +558,15 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
567
558
|
created_at: string;
|
568
559
|
state: "SENT" | "RECEIVED" | "SEEN";
|
569
560
|
}[];
|
561
|
+
tags: {
|
562
|
+
id: string;
|
563
|
+
name: string;
|
564
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
565
|
+
created_at: string;
|
566
|
+
updated_at: string;
|
567
|
+
groupId: string;
|
568
|
+
}[];
|
569
|
+
inChat: boolean;
|
570
570
|
}, {
|
571
571
|
id: string;
|
572
572
|
phoneNumber: string;
|
@@ -576,14 +576,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
576
576
|
mail: string | null;
|
577
577
|
created_at: string;
|
578
578
|
updated_at: string;
|
579
|
-
tags: {
|
580
|
-
id: string;
|
581
|
-
name: string;
|
582
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
583
|
-
created_at: string;
|
584
|
-
updated_at: string;
|
585
|
-
groupId: string;
|
586
|
-
}[];
|
587
579
|
shortId: number;
|
588
580
|
firstName: string | null;
|
589
581
|
gender: string | null;
|
@@ -595,7 +587,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
595
587
|
residenceLocationId: string | null;
|
596
588
|
isInTrash: boolean;
|
597
589
|
movedToTrashDate: string | null;
|
598
|
-
inChat: boolean;
|
599
590
|
messages: {
|
600
591
|
message: {
|
601
592
|
id: string;
|
@@ -617,6 +608,15 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
617
608
|
created_at: string;
|
618
609
|
state: "SENT" | "RECEIVED" | "SEEN";
|
619
610
|
}[];
|
611
|
+
tags: {
|
612
|
+
id: string;
|
613
|
+
name: string;
|
614
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
615
|
+
created_at: string;
|
616
|
+
updated_at: string;
|
617
|
+
groupId: string;
|
618
|
+
}[];
|
619
|
+
inChat: boolean;
|
620
620
|
}>, "many">;
|
621
621
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
622
622
|
profiles: {
|
@@ -628,14 +628,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
628
628
|
mail: string | null;
|
629
629
|
created_at: string;
|
630
630
|
updated_at: string;
|
631
|
-
tags: {
|
632
|
-
id: string;
|
633
|
-
name: string;
|
634
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
635
|
-
created_at: string;
|
636
|
-
updated_at: string;
|
637
|
-
groupId: string;
|
638
|
-
}[];
|
639
631
|
shortId: number;
|
640
632
|
firstName: string | null;
|
641
633
|
gender: string | null;
|
@@ -647,7 +639,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
647
639
|
residenceLocationId: string | null;
|
648
640
|
isInTrash: boolean;
|
649
641
|
movedToTrashDate: string | null;
|
650
|
-
inChat: boolean;
|
651
642
|
messages: {
|
652
643
|
message: {
|
653
644
|
id: string;
|
@@ -669,6 +660,15 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
669
660
|
created_at: string;
|
670
661
|
state: "SENT" | "RECEIVED" | "SEEN";
|
671
662
|
}[];
|
663
|
+
tags: {
|
664
|
+
id: string;
|
665
|
+
name: string;
|
666
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
667
|
+
created_at: string;
|
668
|
+
updated_at: string;
|
669
|
+
groupId: string;
|
670
|
+
}[];
|
671
|
+
inChat: boolean;
|
672
672
|
}[];
|
673
673
|
}, {
|
674
674
|
profiles: {
|
@@ -680,14 +680,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
680
680
|
mail: string | null;
|
681
681
|
created_at: string;
|
682
682
|
updated_at: string;
|
683
|
-
tags: {
|
684
|
-
id: string;
|
685
|
-
name: string;
|
686
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
687
|
-
created_at: string;
|
688
|
-
updated_at: string;
|
689
|
-
groupId: string;
|
690
|
-
}[];
|
691
683
|
shortId: number;
|
692
684
|
firstName: string | null;
|
693
685
|
gender: string | null;
|
@@ -699,7 +691,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
699
691
|
residenceLocationId: string | null;
|
700
692
|
isInTrash: boolean;
|
701
693
|
movedToTrashDate: string | null;
|
702
|
-
inChat: boolean;
|
703
694
|
messages: {
|
704
695
|
message: {
|
705
696
|
id: string;
|
@@ -721,6 +712,15 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
721
712
|
created_at: string;
|
722
713
|
state: "SENT" | "RECEIVED" | "SEEN";
|
723
714
|
}[];
|
715
|
+
tags: {
|
716
|
+
id: string;
|
717
|
+
name: string;
|
718
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
719
|
+
created_at: string;
|
720
|
+
updated_at: string;
|
721
|
+
groupId: string;
|
722
|
+
}[];
|
723
|
+
inChat: boolean;
|
724
724
|
}[];
|
725
725
|
}>>;
|
726
726
|
export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
|
@@ -64,7 +64,6 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
64
64
|
fullName?: string | undefined;
|
65
65
|
profilePictureUrl?: string | null | undefined;
|
66
66
|
mail?: string | null | undefined;
|
67
|
-
tags?: string[] | undefined;
|
68
67
|
gender?: string | null | undefined;
|
69
68
|
birthDate?: Date | null | undefined;
|
70
69
|
instagram?: string | null | undefined;
|
@@ -72,6 +71,7 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
72
71
|
alternativeNames?: string[] | undefined;
|
73
72
|
isInTrash?: boolean | undefined;
|
74
73
|
movedToTrashDate?: Date | null | undefined;
|
74
|
+
tags?: string[] | undefined;
|
75
75
|
residence?: {
|
76
76
|
latitude: number;
|
77
77
|
longitude: number;
|
@@ -92,7 +92,6 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
92
92
|
fullName?: string | undefined;
|
93
93
|
profilePictureUrl?: string | null | undefined;
|
94
94
|
mail?: string | null | undefined;
|
95
|
-
tags?: string[] | undefined;
|
96
95
|
gender?: string | null | undefined;
|
97
96
|
birthDate?: string | null | undefined;
|
98
97
|
instagram?: string | null | undefined;
|
@@ -100,6 +99,7 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
100
99
|
alternativeNames?: string[] | undefined;
|
101
100
|
isInTrash?: boolean | undefined;
|
102
101
|
movedToTrashDate?: Date | null | undefined;
|
102
|
+
tags?: string[] | undefined;
|
103
103
|
residence?: {
|
104
104
|
latitude: number;
|
105
105
|
longitude: number;
|
@@ -173,7 +173,6 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
173
173
|
fullName?: string | undefined;
|
174
174
|
profilePictureUrl?: string | null | undefined;
|
175
175
|
mail?: string | null | undefined;
|
176
|
-
tags?: string[] | undefined;
|
177
176
|
gender?: string | null | undefined;
|
178
177
|
birthDate?: Date | null | undefined;
|
179
178
|
instagram?: string | null | undefined;
|
@@ -181,6 +180,7 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
181
180
|
alternativeNames?: string[] | undefined;
|
182
181
|
isInTrash?: boolean | undefined;
|
183
182
|
movedToTrashDate?: string | null | undefined;
|
183
|
+
tags?: string[] | undefined;
|
184
184
|
residence?: {
|
185
185
|
latitude: number;
|
186
186
|
longitude: number;
|
@@ -201,7 +201,6 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
201
201
|
fullName?: string | undefined;
|
202
202
|
profilePictureUrl?: string | null | undefined;
|
203
203
|
mail?: string | null | undefined;
|
204
|
-
tags?: string[] | undefined;
|
205
204
|
gender?: string | null | undefined;
|
206
205
|
birthDate?: string | null | undefined;
|
207
206
|
instagram?: string | null | undefined;
|
@@ -209,6 +208,7 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
209
208
|
alternativeNames?: string[] | undefined;
|
210
209
|
isInTrash?: boolean | undefined;
|
211
210
|
movedToTrashDate?: string | null | undefined;
|
211
|
+
tags?: string[] | undefined;
|
212
212
|
residence?: {
|
213
213
|
latitude: number;
|
214
214
|
longitude: number;
|
@@ -1 +1 @@
|
|
1
|
-
export * from
|
1
|
+
export * from './index'
|
@@ -1 +1 @@
|
|
1
|
-
export * from
|
1
|
+
export * from './default'
|