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.
Files changed (61) hide show
  1. package/README.md +1 -1
  2. package/dist/src/event/dto/event.dto.js +1 -1
  3. package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
  4. package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
  5. package/dist/src/event/dto/update-event.dto.d.ts +20 -20
  6. package/dist/src/i18n/es.d.ts +18 -43
  7. package/dist/src/i18n/es.js +18 -43
  8. package/dist/src/i18n/es.js.map +1 -1
  9. package/dist/src/image/dto/delete-image.dto.d.ts +18 -0
  10. package/dist/src/image/dto/delete-image.dto.js +12 -0
  11. package/dist/src/image/dto/image.dto.d.ts +24 -0
  12. package/dist/src/image/dto/image.dto.js +18 -0
  13. package/dist/src/image/dto/update-image.dto.d.ts +18 -0
  14. package/dist/src/image/dto/update-image.dto.js +15 -0
  15. package/dist/src/image/exports.d.ts +3 -0
  16. package/dist/src/{csv → image}/exports.js +3 -3
  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/message/exports.d.ts +0 -4
  20. package/dist/src/message/exports.js +0 -4
  21. package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
  22. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
  23. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
  24. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
  25. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
  28. package/dist/types/prisma-schema/default.d.ts +1 -1
  29. package/dist/types/prisma-schema/edge.d.ts +1 -1
  30. package/dist/types/prisma-schema/edge.js +11 -7
  31. package/dist/types/prisma-schema/index-browser.js +7 -4
  32. package/dist/types/prisma-schema/index.d.ts +803 -1034
  33. package/dist/types/prisma-schema/index.js +11 -7
  34. package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  35. package/dist/types/prisma-schema/package.json +14 -1
  36. package/dist/types/prisma-schema/runtime/edge-esm.js +21 -18
  37. package/dist/types/prisma-schema/runtime/edge.js +21 -18
  38. package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
  39. package/dist/types/prisma-schema/runtime/library.d.ts +297 -87
  40. package/dist/types/prisma-schema/runtime/library.js +64 -61
  41. package/dist/types/prisma-schema/runtime/react-native.js +31 -28
  42. package/dist/types/prisma-schema/runtime/wasm.js +22 -19
  43. package/dist/types/prisma-schema/wasm.d.ts +1 -1
  44. package/dist/types/prisma-schema/wasm.js +7 -4
  45. package/dist/types/schema.d.ts +30 -145
  46. package/package.json +5 -7
  47. package/dist/src/csv/dto/csv.dto.d.ts +0 -18
  48. package/dist/src/csv/dto/csv.dto.js +0 -17
  49. package/dist/src/csv/dto/download-all-tables.dto.d.ts +0 -23
  50. package/dist/src/csv/dto/download-all-tables.dto.js +0 -19
  51. package/dist/src/csv/dto/download-profiles.dto.d.ts +0 -18
  52. package/dist/src/csv/dto/download-profiles.dto.js +0 -15
  53. package/dist/src/csv/exports.d.ts +0 -3
  54. package/dist/src/message/dto/create-template.dto.d.ts +0 -93
  55. package/dist/src/message/dto/create-template.dto.js +0 -24
  56. package/dist/src/message/dto/find-template-by-id.dto.d.ts +0 -245
  57. package/dist/src/message/dto/find-template-by-id.dto.js +0 -23
  58. package/dist/src/message/dto/find-templates.dto.d.ts +0 -109
  59. package/dist/src/message/dto/find-templates.dto.js +0 -20
  60. package/dist/src/message/dto/template.dto.d.ts +0 -154
  61. package/dist/src/message/dto/template.dto.js +0 -58
@@ -166,6 +166,14 @@ 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
+ }[];
169
177
  shortId: number;
170
178
  firstName: string | null;
171
179
  gender: string | null;
@@ -177,6 +185,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
177
185
  residenceLocationId: string | null;
178
186
  isInTrash: boolean;
179
187
  movedToTrashDate: Date | null;
188
+ inChat: boolean;
180
189
  messages: {
181
190
  message: {
182
191
  id: string;
@@ -198,15 +207,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
198
207
  created_at: Date;
199
208
  state: "SENT" | "RECEIVED" | "SEEN";
200
209
  }[];
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,6 +216,14 @@ 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
+ }[];
219
227
  shortId: number;
220
228
  firstName: string | null;
221
229
  gender: string | null;
@@ -227,6 +235,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
227
235
  residenceLocationId: string | null;
228
236
  isInTrash: boolean;
229
237
  movedToTrashDate: Date | null;
238
+ inChat: boolean;
230
239
  messages: {
231
240
  message: {
232
241
  id: string;
@@ -248,15 +257,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
248
257
  created_at: Date;
249
258
  state: "SENT" | "RECEIVED" | "SEEN";
250
259
  }[];
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,6 +268,14 @@ 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
+ }[];
271
279
  shortId: number;
272
280
  firstName: string | null;
273
281
  gender: string | null;
@@ -279,6 +287,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
279
287
  residenceLocationId: string | null;
280
288
  isInTrash: boolean;
281
289
  movedToTrashDate: Date | null;
290
+ inChat: boolean;
282
291
  messages: {
283
292
  message: {
284
293
  id: string;
@@ -300,15 +309,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
300
309
  created_at: Date;
301
310
  state: "SENT" | "RECEIVED" | "SEEN";
302
311
  }[];
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,6 +320,14 @@ 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
+ }[];
323
331
  shortId: number;
324
332
  firstName: string | null;
325
333
  gender: string | null;
@@ -331,6 +339,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
331
339
  residenceLocationId: string | null;
332
340
  isInTrash: boolean;
333
341
  movedToTrashDate: Date | null;
342
+ inChat: boolean;
334
343
  messages: {
335
344
  message: {
336
345
  id: string;
@@ -352,15 +361,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
352
361
  created_at: Date;
353
362
  state: "SENT" | "RECEIVED" | "SEEN";
354
363
  }[];
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,6 +526,14 @@ 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
+ }[];
529
537
  shortId: number;
530
538
  firstName: string | null;
531
539
  gender: string | null;
@@ -537,6 +545,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
537
545
  residenceLocationId: string | null;
538
546
  isInTrash: boolean;
539
547
  movedToTrashDate: string | null;
548
+ inChat: boolean;
540
549
  messages: {
541
550
  message: {
542
551
  id: string;
@@ -558,15 +567,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
558
567
  created_at: string;
559
568
  state: "SENT" | "RECEIVED" | "SEEN";
560
569
  }[];
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,6 +576,14 @@ 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
+ }[];
579
587
  shortId: number;
580
588
  firstName: string | null;
581
589
  gender: string | null;
@@ -587,6 +595,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
587
595
  residenceLocationId: string | null;
588
596
  isInTrash: boolean;
589
597
  movedToTrashDate: string | null;
598
+ inChat: boolean;
590
599
  messages: {
591
600
  message: {
592
601
  id: string;
@@ -608,15 +617,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
608
617
  created_at: string;
609
618
  state: "SENT" | "RECEIVED" | "SEEN";
610
619
  }[];
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,6 +628,14 @@ 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
+ }[];
631
639
  shortId: number;
632
640
  firstName: string | null;
633
641
  gender: string | null;
@@ -639,6 +647,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
639
647
  residenceLocationId: string | null;
640
648
  isInTrash: boolean;
641
649
  movedToTrashDate: string | null;
650
+ inChat: boolean;
642
651
  messages: {
643
652
  message: {
644
653
  id: string;
@@ -660,15 +669,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
660
669
  created_at: string;
661
670
  state: "SENT" | "RECEIVED" | "SEEN";
662
671
  }[];
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,6 +680,14 @@ 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
+ }[];
683
691
  shortId: number;
684
692
  firstName: string | null;
685
693
  gender: string | null;
@@ -691,6 +699,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
691
699
  residenceLocationId: string | null;
692
700
  isInTrash: boolean;
693
701
  movedToTrashDate: string | null;
702
+ inChat: boolean;
694
703
  messages: {
695
704
  message: {
696
705
  id: string;
@@ -712,15 +721,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
712
721
  created_at: string;
713
722
  state: "SENT" | "RECEIVED" | "SEEN";
714
723
  }[];
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,6 +64,7 @@ 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;
67
68
  gender?: string | null | undefined;
68
69
  birthDate?: Date | null | undefined;
69
70
  instagram?: string | null | undefined;
@@ -71,7 +72,6 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
71
72
  alternativeNames?: string[] | undefined;
72
73
  isInTrash?: boolean | undefined;
73
74
  movedToTrashDate?: Date | null | undefined;
74
- tags?: string[] | undefined;
75
75
  residence?: {
76
76
  latitude: number;
77
77
  longitude: number;
@@ -92,6 +92,7 @@ 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;
95
96
  gender?: string | null | undefined;
96
97
  birthDate?: string | null | undefined;
97
98
  instagram?: string | null | undefined;
@@ -99,7 +100,6 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
99
100
  alternativeNames?: string[] | undefined;
100
101
  isInTrash?: boolean | undefined;
101
102
  movedToTrashDate?: Date | null | undefined;
102
- tags?: string[] | undefined;
103
103
  residence?: {
104
104
  latitude: number;
105
105
  longitude: number;
@@ -173,6 +173,7 @@ 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;
176
177
  gender?: string | null | undefined;
177
178
  birthDate?: Date | null | undefined;
178
179
  instagram?: string | null | undefined;
@@ -180,7 +181,6 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
180
181
  alternativeNames?: string[] | undefined;
181
182
  isInTrash?: boolean | undefined;
182
183
  movedToTrashDate?: string | null | undefined;
183
- tags?: string[] | undefined;
184
184
  residence?: {
185
185
  latitude: number;
186
186
  longitude: number;
@@ -201,6 +201,7 @@ 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;
204
205
  gender?: string | null | undefined;
205
206
  birthDate?: string | null | undefined;
206
207
  instagram?: string | null | undefined;
@@ -208,7 +209,6 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
208
209
  alternativeNames?: string[] | undefined;
209
210
  isInTrash?: boolean | undefined;
210
211
  movedToTrashDate?: string | null | undefined;
211
- tags?: string[] | undefined;
212
212
  residence?: {
213
213
  latitude: number;
214
214
  longitude: number;
@@ -1 +1 @@
1
- export * from './index'
1
+ export * from "./index"
@@ -1 +1 @@
1
- export * from './default'
1
+ export * from "./default"