expo-backend-types 0.59.0-EXPO-404-Etapa-4-Paquete-02.5.4 → 0.60.0-feat-desfile-12-octubre.1

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.
Files changed (29) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +15 -0
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +30 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +15 -0
  4. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +49 -1
  5. package/dist/src/ticket/dto/create-many-ticket.dto.js +3 -0
  6. package/dist/src/ticket/dto/create-ticket.dto.d.ts +37 -1
  7. package/dist/src/ticket/dto/create-ticket.dto.js +3 -0
  8. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +18 -0
  9. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +30 -0
  10. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -0
  11. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -0
  12. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -0
  13. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +30 -0
  14. package/dist/src/ticket/dto/find-ticket.dto.d.ts +18 -0
  15. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +15 -0
  16. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +18 -0
  17. package/dist/src/ticket/dto/ticket.dto.d.ts +18 -0
  18. package/dist/src/ticket/dto/ticket.dto.js +4 -0
  19. package/dist/src/ticket/dto/update-ticket.dto.d.ts +18 -0
  20. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  21. package/dist/types/prisma-schema/edge.js +6 -3
  22. package/dist/types/prisma-schema/index-browser.js +3 -0
  23. package/dist/types/prisma-schema/index.d.ts +148 -1
  24. package/dist/types/prisma-schema/index.js +6 -3
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +6 -0
  27. package/dist/types/prisma-schema/wasm.js +3 -0
  28. package/dist/types/schema.d.ts +45 -0
  29. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-0ccae125bdf17c343b23423a71ad2310f14c01582eb8b883f79d147757749721",
2
+ "name": "prisma-client-d3be7bbe7f9a81fa080bd352982dff4644a67e6895fd352eab754baa7cba47d1",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -282,6 +282,12 @@ model Ticket {
282
282
  mail String
283
283
  dni String
284
284
 
285
+ // [N]
286
+ phoneNumber String @map("__phone_number")
287
+ instagrams String[] @map("__instagrams")
288
+ whoToWatch String? @map("__who_to_watch")
289
+ // [/N]
290
+
285
291
  seat Int?
286
292
  scanned Boolean @default(false)
287
293
  scannedAt DateTime? @map("scanned_at")
@@ -259,6 +259,9 @@ exports.Prisma.TicketScalarFieldEnum = {
259
259
  fullName: 'fullName',
260
260
  mail: 'mail',
261
261
  dni: 'dni',
262
+ phoneNumber: 'phoneNumber',
263
+ instagrams: 'instagrams',
264
+ whoToWatch: 'whoToWatch',
262
265
  seat: 'seat',
263
266
  scanned: 'scanned',
264
267
  scannedAt: 'scannedAt',
@@ -2804,6 +2804,9 @@ export interface components {
2804
2804
  fullName: string;
2805
2805
  mail: string;
2806
2806
  dni: string;
2807
+ phoneNumber: string;
2808
+ instagrams: string[];
2809
+ whoToWatch: string | null;
2807
2810
  seat: number | null;
2808
2811
  scanned: boolean;
2809
2812
  scannedAt: string | null;
@@ -3516,6 +3519,9 @@ export interface components {
3516
3519
  fullName: string;
3517
3520
  mail: string;
3518
3521
  dni: string;
3522
+ phoneNumber: string;
3523
+ instagrams: string[];
3524
+ whoToWatch: string | null;
3519
3525
  profileId?: string;
3520
3526
  ticketGroupId?: string;
3521
3527
  };
@@ -3526,6 +3532,9 @@ export interface components {
3526
3532
  fullName: string;
3527
3533
  mail: string;
3528
3534
  dni: string;
3535
+ phoneNumber: string;
3536
+ instagrams: string[];
3537
+ whoToWatch: string | null;
3529
3538
  seat: number | null;
3530
3539
  scanned: boolean;
3531
3540
  scannedAt: string | null;
@@ -3559,6 +3568,9 @@ export interface components {
3559
3568
  mail: string;
3560
3569
  dni: string;
3561
3570
  ticketGroupId: string | null;
3571
+ phoneNumber: string;
3572
+ instagrams: string[];
3573
+ whoToWatch: string | null;
3562
3574
  profileId?: string;
3563
3575
  }[];
3564
3576
  referralCode?: string | null;
@@ -3570,6 +3582,9 @@ export interface components {
3570
3582
  fullName: string;
3571
3583
  mail: string;
3572
3584
  dni: string;
3585
+ phoneNumber: string;
3586
+ instagrams: string[];
3587
+ whoToWatch: string | null;
3573
3588
  seat: number | null;
3574
3589
  scanned: boolean;
3575
3590
  scannedAt: string | null;
@@ -3609,6 +3624,9 @@ export interface components {
3609
3624
  fullName: string;
3610
3625
  mail: string;
3611
3626
  dni: string;
3627
+ phoneNumber: string;
3628
+ instagrams: string[];
3629
+ whoToWatch: string | null;
3612
3630
  seat: number | null;
3613
3631
  scanned: boolean;
3614
3632
  scannedAt: string | null;
@@ -3630,6 +3648,9 @@ export interface components {
3630
3648
  fullName: string;
3631
3649
  mail: string;
3632
3650
  dni: string;
3651
+ phoneNumber: string;
3652
+ instagrams: string[];
3653
+ whoToWatch: string | null;
3633
3654
  seat: number | null;
3634
3655
  scanned: boolean;
3635
3656
  scannedAt: string | null;
@@ -3692,6 +3713,9 @@ export interface components {
3692
3713
  fullName: string;
3693
3714
  mail: string;
3694
3715
  dni: string;
3716
+ phoneNumber: string;
3717
+ instagrams: string[];
3718
+ whoToWatch: string | null;
3695
3719
  seat: number | null;
3696
3720
  scanned: boolean;
3697
3721
  scannedAt: string | null;
@@ -3740,6 +3764,9 @@ export interface components {
3740
3764
  fullName: string;
3741
3765
  mail: string;
3742
3766
  dni: string;
3767
+ phoneNumber: string;
3768
+ instagrams: string[];
3769
+ whoToWatch: string | null;
3743
3770
  seat: number | null;
3744
3771
  scanned: boolean;
3745
3772
  scannedAt: string | null;
@@ -3788,6 +3815,9 @@ export interface components {
3788
3815
  fullName: string;
3789
3816
  mail: string;
3790
3817
  dni: string;
3818
+ phoneNumber: string;
3819
+ instagrams: string[];
3820
+ whoToWatch: string | null;
3791
3821
  seat: number | null;
3792
3822
  scanned: boolean;
3793
3823
  scannedAt: string | null;
@@ -3828,6 +3858,9 @@ export interface components {
3828
3858
  fullName: string;
3829
3859
  mail: string;
3830
3860
  dni: string;
3861
+ phoneNumber: string;
3862
+ instagrams: string[];
3863
+ whoToWatch: string | null;
3831
3864
  seat: number | null;
3832
3865
  scanned: boolean;
3833
3866
  scannedAt: string | null;
@@ -3842,6 +3875,9 @@ export interface components {
3842
3875
  fullName: string;
3843
3876
  mail: string;
3844
3877
  dni: string;
3878
+ phoneNumber: string;
3879
+ instagrams: string[];
3880
+ whoToWatch: string | null;
3845
3881
  seat: number | null;
3846
3882
  scanned: boolean;
3847
3883
  scannedAt: string | null;
@@ -3856,6 +3892,9 @@ export interface components {
3856
3892
  fullName: string;
3857
3893
  mail: string;
3858
3894
  dni: string;
3895
+ phoneNumber: string;
3896
+ instagrams: string[];
3897
+ whoToWatch: string | null;
3859
3898
  seat: number | null;
3860
3899
  scanned: boolean;
3861
3900
  scannedAt: string | null;
@@ -3874,6 +3913,9 @@ export interface components {
3874
3913
  fullName: string;
3875
3914
  mail: string;
3876
3915
  dni: string;
3916
+ phoneNumber: string;
3917
+ instagrams: string[];
3918
+ whoToWatch: string | null;
3877
3919
  seat: number | null;
3878
3920
  scanned: boolean;
3879
3921
  scannedAt: string | null;
@@ -3903,6 +3945,9 @@ export interface components {
3903
3945
  fullName: string;
3904
3946
  mail: string;
3905
3947
  dni: string;
3948
+ phoneNumber: string;
3949
+ instagrams: string[];
3950
+ whoToWatch: string | null;
3906
3951
  seat: number | null;
3907
3952
  scanned: boolean;
3908
3953
  scannedAt: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.59.0-EXPO-404-Etapa-4-Paquete-02.5.4",
3
+ "version": "0.60.0-feat-desfile-12-octubre.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,