expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.3 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.5

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 (57) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -5
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -10
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +0 -5
  4. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
  6. package/dist/src/mi-expo/dto/login.dto.d.ts +10 -10
  7. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
  8. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
  9. package/dist/src/production/dto/get-all-production.dto.d.ts +14 -14
  10. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -14
  11. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -10
  12. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
  13. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
  14. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
  17. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
  18. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
  20. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  21. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
  22. package/dist/src/profile/dto/profile.dto.d.ts +3 -3
  23. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
  24. package/dist/src/schema/profile.schema.d.ts +3 -3
  25. package/dist/src/schema/profile.schema.js +1 -1
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
  28. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -7
  29. package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -7
  30. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -6
  31. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -10
  32. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -24
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -24
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -24
  35. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -10
  36. package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -6
  37. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +0 -5
  38. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -6
  39. package/dist/src/ticket/dto/ticket.dto.d.ts +0 -6
  40. package/dist/src/ticket/dto/ticket.dto.js +0 -1
  41. package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -6
  42. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +7 -10
  43. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
  44. package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
  45. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
  46. package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
  47. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
  48. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
  49. package/dist/types/prisma-schema/edge.js +3 -4
  50. package/dist/types/prisma-schema/index-browser.js +0 -1
  51. package/dist/types/prisma-schema/index.d.ts +62 -110
  52. package/dist/types/prisma-schema/index.js +3 -4
  53. package/dist/types/prisma-schema/package.json +1 -1
  54. package/dist/types/prisma-schema/schema.prisma +1 -3
  55. package/dist/types/prisma-schema/wasm.js +0 -1
  56. package/dist/types/schema.d.ts +25 -33
  57. package/package.json +1 -1
@@ -1812,7 +1812,7 @@ export interface components {
1812
1812
  movedToTrashDate: string | null;
1813
1813
  created_at: string;
1814
1814
  updated_at: string;
1815
- referralCode: string | null;
1815
+ referralCode: string;
1816
1816
  }[];
1817
1817
  };
1818
1818
  MassiveDeallocationDto: {
@@ -1845,7 +1845,7 @@ export interface components {
1845
1845
  movedToTrashDate: string | null;
1846
1846
  created_at: string;
1847
1847
  updated_at: string;
1848
- referralCode: string | null;
1848
+ referralCode: string;
1849
1849
  }[];
1850
1850
  };
1851
1851
  CreateAccountDto: {
@@ -2568,7 +2568,6 @@ export interface components {
2568
2568
  scanned: boolean;
2569
2569
  scannedAt: string | null;
2570
2570
  ticketGroupId: string | null;
2571
- referralCode: string | null;
2572
2571
  created_at: string;
2573
2572
  updated_at: string;
2574
2573
  }[];
@@ -2739,7 +2738,7 @@ export interface components {
2739
2738
  movedToTrashDate: string | null;
2740
2739
  created_at: string;
2741
2740
  updated_at: string;
2742
- referralCode: string | null;
2741
+ referralCode: string;
2743
2742
  tags: {
2744
2743
  id: string;
2745
2744
  name: string;
@@ -2780,7 +2779,7 @@ export interface components {
2780
2779
  movedToTrashDate: string | null;
2781
2780
  created_at: string;
2782
2781
  updated_at: string;
2783
- referralCode: string | null;
2782
+ referralCode: string;
2784
2783
  tags: {
2785
2784
  id: string;
2786
2785
  name: string;
@@ -2839,7 +2838,7 @@ export interface components {
2839
2838
  movedToTrashDate: string | null;
2840
2839
  created_at: string;
2841
2840
  updated_at: string;
2842
- referralCode: string | null;
2841
+ referralCode: string;
2843
2842
  tags: {
2844
2843
  id: string;
2845
2844
  name: string;
@@ -2881,7 +2880,7 @@ export interface components {
2881
2880
  movedToTrashDate: string | null;
2882
2881
  created_at: string;
2883
2882
  updated_at: string;
2884
- referralCode: string | null;
2883
+ referralCode: string;
2885
2884
  tags: {
2886
2885
  id: string;
2887
2886
  name: string;
@@ -2918,7 +2917,7 @@ export interface components {
2918
2917
  movedToTrashDate: string | null;
2919
2918
  created_at: string;
2920
2919
  updated_at: string;
2921
- referralCode: string | null;
2920
+ referralCode: string;
2922
2921
  tags: {
2923
2922
  id: string;
2924
2923
  name: string;
@@ -2957,7 +2956,7 @@ export interface components {
2957
2956
  movedToTrashDate: string | null;
2958
2957
  created_at: string;
2959
2958
  updated_at: string;
2960
- referralCode: string | null;
2959
+ referralCode: string;
2961
2960
  };
2962
2961
  FindTrashResponseDto: {
2963
2962
  profiles: {
@@ -3056,7 +3055,7 @@ export interface components {
3056
3055
  movedToTrashDate: string | null;
3057
3056
  created_at: string;
3058
3057
  updated_at: string;
3059
- referralCode: string | null;
3058
+ referralCode: string;
3060
3059
  residenceLocation: {
3061
3060
  id: string;
3062
3061
  latitude: number;
@@ -3116,7 +3115,7 @@ export interface components {
3116
3115
  movedToTrashDate: string | null;
3117
3116
  created_at: string;
3118
3117
  updated_at: string;
3119
- referralCode: string | null;
3118
+ referralCode: string;
3120
3119
  };
3121
3120
  UpdateProfileDto: {
3122
3121
  alternativeNames?: string[];
@@ -3271,7 +3270,6 @@ export interface components {
3271
3270
  scanned: boolean;
3272
3271
  scannedAt: string | null;
3273
3272
  ticketGroupId: string | null;
3274
- referralCode: string | null;
3275
3273
  created_at: string;
3276
3274
  updated_at: string;
3277
3275
  event: {
@@ -3315,7 +3313,6 @@ export interface components {
3315
3313
  scanned: boolean;
3316
3314
  scannedAt: string | null;
3317
3315
  ticketGroupId: string | null;
3318
- referralCode: string | null;
3319
3316
  created_at: string;
3320
3317
  updated_at: string;
3321
3318
  event: {
@@ -3355,7 +3352,6 @@ export interface components {
3355
3352
  scanned: boolean;
3356
3353
  scannedAt: string | null;
3357
3354
  ticketGroupId: string | null;
3358
- referralCode: string | null;
3359
3355
  created_at: string;
3360
3356
  updated_at: string;
3361
3357
  event: {
@@ -3377,7 +3373,6 @@ export interface components {
3377
3373
  scanned: boolean;
3378
3374
  scannedAt: string | null;
3379
3375
  ticketGroupId: string | null;
3380
- referralCode: string | null;
3381
3376
  created_at: string;
3382
3377
  updated_at: string;
3383
3378
  event: {
@@ -3423,7 +3418,7 @@ export interface components {
3423
3418
  movedToTrashDate: string | null;
3424
3419
  created_at: string;
3425
3420
  updated_at: string;
3426
- referralCode: string | null;
3421
+ referralCode: string;
3427
3422
  } | null;
3428
3423
  profileId: string | null;
3429
3424
  };
@@ -3440,7 +3435,6 @@ export interface components {
3440
3435
  scanned: boolean;
3441
3436
  scannedAt: string | null;
3442
3437
  ticketGroupId: string | null;
3443
- referralCode: string | null;
3444
3438
  created_at: string;
3445
3439
  updated_at: string;
3446
3440
  event: {
@@ -3473,7 +3467,7 @@ export interface components {
3473
3467
  movedToTrashDate: string | null;
3474
3468
  created_at: string;
3475
3469
  updated_at: string;
3476
- referralCode: string | null;
3470
+ referralCode: string;
3477
3471
  } | null;
3478
3472
  }[];
3479
3473
  };
@@ -3489,7 +3483,6 @@ export interface components {
3489
3483
  scanned: boolean;
3490
3484
  scannedAt: string | null;
3491
3485
  ticketGroupId: string | null;
3492
- referralCode: string | null;
3493
3486
  created_at: string;
3494
3487
  updated_at: string;
3495
3488
  event: {
@@ -3522,7 +3515,7 @@ export interface components {
3522
3515
  movedToTrashDate: string | null;
3523
3516
  created_at: string;
3524
3517
  updated_at: string;
3525
- referralCode: string | null;
3518
+ referralCode: string;
3526
3519
  } | null;
3527
3520
  }[];
3528
3521
  };
@@ -3538,7 +3531,6 @@ export interface components {
3538
3531
  scanned: boolean;
3539
3532
  scannedAt: string | null;
3540
3533
  ticketGroupId: string | null;
3541
- referralCode: string | null;
3542
3534
  created_at: string;
3543
3535
  updated_at: string;
3544
3536
  event: {
@@ -3579,7 +3571,6 @@ export interface components {
3579
3571
  scanned: boolean;
3580
3572
  scannedAt: string | null;
3581
3573
  ticketGroupId: string | null;
3582
- referralCode: string | null;
3583
3574
  created_at: string;
3584
3575
  updated_at: string;
3585
3576
  };
@@ -3594,7 +3585,6 @@ export interface components {
3594
3585
  scanned: boolean;
3595
3586
  scannedAt: string | null;
3596
3587
  ticketGroupId: string | null;
3597
- referralCode: string | null;
3598
3588
  created_at: string;
3599
3589
  updated_at: string;
3600
3590
  };
@@ -3609,7 +3599,6 @@ export interface components {
3609
3599
  scanned: boolean;
3610
3600
  scannedAt: string | null;
3611
3601
  ticketGroupId: string | null;
3612
- referralCode: string | null;
3613
3602
  created_at: string;
3614
3603
  updated_at: string;
3615
3604
  };
@@ -3628,7 +3617,6 @@ export interface components {
3628
3617
  scanned: boolean;
3629
3618
  scannedAt: string | null;
3630
3619
  ticketGroupId: string | null;
3631
- referralCode: string | null;
3632
3620
  created_at: string;
3633
3621
  updated_at: string;
3634
3622
  };
@@ -3644,6 +3632,7 @@ export interface components {
3644
3632
  amountTickets: number;
3645
3633
  status: "BOOKED" | "PAID" | "FREE";
3646
3634
  eventId: string;
3635
+ referralCode?: string | null;
3647
3636
  created_at: string;
3648
3637
  updated_at: string;
3649
3638
  tickets: {
@@ -3657,7 +3646,6 @@ export interface components {
3657
3646
  scanned: boolean;
3658
3647
  scannedAt: string | null;
3659
3648
  ticketGroupId: string | null;
3660
- referralCode: string | null;
3661
3649
  created_at: string;
3662
3650
  updated_at: string;
3663
3651
  }[];
@@ -3688,17 +3676,20 @@ export interface components {
3688
3676
  amountTickets: number;
3689
3677
  status: "BOOKED" | "PAID" | "FREE";
3690
3678
  eventId: string;
3679
+ referralCode?: string | null;
3691
3680
  created_at: string;
3692
3681
  updated_at: string;
3693
3682
  };
3694
3683
  UpdateTicketGroupDto: {
3695
3684
  status?: "BOOKED" | "PAID" | "FREE";
3685
+ referralCode?: string | null;
3696
3686
  };
3697
3687
  UpdateTicketGroupResponseDto: {
3698
3688
  id: string;
3699
3689
  amountTickets: number;
3700
3690
  status: "BOOKED" | "PAID" | "FREE";
3701
3691
  eventId: string;
3692
+ referralCode?: string | null;
3702
3693
  created_at: string;
3703
3694
  updated_at: string;
3704
3695
  };
@@ -3707,6 +3698,7 @@ export interface components {
3707
3698
  amountTickets: number;
3708
3699
  status: "BOOKED" | "PAID" | "FREE";
3709
3700
  eventId: string;
3701
+ referralCode?: string | null;
3710
3702
  created_at: string;
3711
3703
  updated_at: string;
3712
3704
  };
@@ -3756,7 +3748,7 @@ export interface components {
3756
3748
  movedToTrashDate: string | null;
3757
3749
  created_at: string;
3758
3750
  updated_at: string;
3759
- referralCode: string | null;
3751
+ referralCode: string;
3760
3752
  residenceLocation: {
3761
3753
  city: string;
3762
3754
  country: string;
@@ -3804,7 +3796,7 @@ export interface components {
3804
3796
  movedToTrashDate: string | null;
3805
3797
  created_at: string;
3806
3798
  updated_at: string;
3807
- referralCode: string | null;
3799
+ referralCode: string;
3808
3800
  };
3809
3801
  };
3810
3802
  GetMiExpoMeResponseDto: {
@@ -3831,7 +3823,7 @@ export interface components {
3831
3823
  movedToTrashDate: string | null;
3832
3824
  created_at: string;
3833
3825
  updated_at: string;
3834
- referralCode: string | null;
3826
+ referralCode: string;
3835
3827
  residenceLocation: {
3836
3828
  id: string;
3837
3829
  latitude: number;
@@ -3919,7 +3911,7 @@ export interface components {
3919
3911
  movedToTrashDate: string | null;
3920
3912
  created_at: string;
3921
3913
  updated_at: string;
3922
- referralCode: string | null;
3914
+ referralCode: string;
3923
3915
  };
3924
3916
  backendTokens: {
3925
3917
  accessToken: string;
@@ -3987,7 +3979,7 @@ export interface components {
3987
3979
  movedToTrashDate: string | null;
3988
3980
  created_at: string;
3989
3981
  updated_at: string;
3990
- referralCode: string | null;
3982
+ referralCode: string;
3991
3983
  } | null;
3992
3984
  }[];
3993
3985
  };
@@ -4058,7 +4050,7 @@ export interface components {
4058
4050
  movedToTrashDate: string | null;
4059
4051
  created_at: string;
4060
4052
  updated_at: string;
4061
- referralCode: string | null;
4053
+ referralCode: string;
4062
4054
  };
4063
4055
  };
4064
4056
  FindByProductionAffiliationRequestResponseDto: {
@@ -4101,7 +4093,7 @@ export interface components {
4101
4093
  movedToTrashDate: string | null;
4102
4094
  created_at: string;
4103
4095
  updated_at: string;
4104
- referralCode: string | null;
4096
+ referralCode: string;
4105
4097
  };
4106
4098
  }[];
4107
4099
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.53.0-EXPO-366-EB-Schema-codigo-referido.3",
3
+ "version": "0.53.0-EXPO-366-EB-Schema-codigo-referido.5",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,