expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.3
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/dist/src/event/dto/get-all-statistics.dto.d.ts +5 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +167 -3
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +33 -0
- package/package.json +1 -1
@@ -151,6 +151,7 @@ exports.Prisma.ProfileScalarFieldEnum = {
|
|
151
151
|
residenceLocationId: 'residenceLocationId',
|
152
152
|
isInTrash: 'isInTrash',
|
153
153
|
movedToTrashDate: 'movedToTrashDate',
|
154
|
+
referralCode: 'referralCode',
|
154
155
|
created_at: 'created_at',
|
155
156
|
updated_at: 'updated_at'
|
156
157
|
};
|
@@ -263,6 +264,7 @@ exports.Prisma.TicketScalarFieldEnum = {
|
|
263
264
|
scannedAt: 'scannedAt',
|
264
265
|
profileId: 'profileId',
|
265
266
|
ticketGroupId: 'ticketGroupId',
|
267
|
+
referralCode: 'referralCode',
|
266
268
|
created_at: 'created_at',
|
267
269
|
updated_at: 'updated_at'
|
268
270
|
};
|
@@ -272,6 +274,7 @@ exports.Prisma.TicketGroupScalarFieldEnum = {
|
|
272
274
|
status: 'status',
|
273
275
|
amountTickets: 'amountTickets',
|
274
276
|
eventId: 'eventId',
|
277
|
+
referralCode: 'referralCode',
|
275
278
|
created_at: 'created_at',
|
276
279
|
updated_at: 'updated_at'
|
277
280
|
};
|
package/dist/types/schema.d.ts
CHANGED
@@ -1812,6 +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
1816
|
}[];
|
1816
1817
|
};
|
1817
1818
|
MassiveDeallocationDto: {
|
@@ -1844,6 +1845,7 @@ export interface components {
|
|
1844
1845
|
movedToTrashDate: string | null;
|
1845
1846
|
created_at: string;
|
1846
1847
|
updated_at: string;
|
1848
|
+
referralCode: string | null;
|
1847
1849
|
}[];
|
1848
1850
|
};
|
1849
1851
|
CreateAccountDto: {
|
@@ -2566,6 +2568,7 @@ export interface components {
|
|
2566
2568
|
scanned: boolean;
|
2567
2569
|
scannedAt: string | null;
|
2568
2570
|
ticketGroupId: string | null;
|
2571
|
+
referralCode: string | null;
|
2569
2572
|
created_at: string;
|
2570
2573
|
updated_at: string;
|
2571
2574
|
}[];
|
@@ -2736,6 +2739,7 @@ export interface components {
|
|
2736
2739
|
movedToTrashDate: string | null;
|
2737
2740
|
created_at: string;
|
2738
2741
|
updated_at: string;
|
2742
|
+
referralCode: string | null;
|
2739
2743
|
tags: {
|
2740
2744
|
id: string;
|
2741
2745
|
name: string;
|
@@ -2776,6 +2780,7 @@ export interface components {
|
|
2776
2780
|
movedToTrashDate: string | null;
|
2777
2781
|
created_at: string;
|
2778
2782
|
updated_at: string;
|
2783
|
+
referralCode: string | null;
|
2779
2784
|
tags: {
|
2780
2785
|
id: string;
|
2781
2786
|
name: string;
|
@@ -2834,6 +2839,7 @@ export interface components {
|
|
2834
2839
|
movedToTrashDate: string | null;
|
2835
2840
|
created_at: string;
|
2836
2841
|
updated_at: string;
|
2842
|
+
referralCode: string | null;
|
2837
2843
|
tags: {
|
2838
2844
|
id: string;
|
2839
2845
|
name: string;
|
@@ -2875,6 +2881,7 @@ export interface components {
|
|
2875
2881
|
movedToTrashDate: string | null;
|
2876
2882
|
created_at: string;
|
2877
2883
|
updated_at: string;
|
2884
|
+
referralCode: string | null;
|
2878
2885
|
tags: {
|
2879
2886
|
id: string;
|
2880
2887
|
name: string;
|
@@ -2911,6 +2918,7 @@ export interface components {
|
|
2911
2918
|
movedToTrashDate: string | null;
|
2912
2919
|
created_at: string;
|
2913
2920
|
updated_at: string;
|
2921
|
+
referralCode: string | null;
|
2914
2922
|
tags: {
|
2915
2923
|
id: string;
|
2916
2924
|
name: string;
|
@@ -2949,6 +2957,7 @@ export interface components {
|
|
2949
2957
|
movedToTrashDate: string | null;
|
2950
2958
|
created_at: string;
|
2951
2959
|
updated_at: string;
|
2960
|
+
referralCode: string | null;
|
2952
2961
|
};
|
2953
2962
|
FindTrashResponseDto: {
|
2954
2963
|
profiles: {
|
@@ -3047,6 +3056,7 @@ export interface components {
|
|
3047
3056
|
movedToTrashDate: string | null;
|
3048
3057
|
created_at: string;
|
3049
3058
|
updated_at: string;
|
3059
|
+
referralCode: string | null;
|
3050
3060
|
residenceLocation: {
|
3051
3061
|
id: string;
|
3052
3062
|
latitude: number;
|
@@ -3106,6 +3116,7 @@ export interface components {
|
|
3106
3116
|
movedToTrashDate: string | null;
|
3107
3117
|
created_at: string;
|
3108
3118
|
updated_at: string;
|
3119
|
+
referralCode: string | null;
|
3109
3120
|
};
|
3110
3121
|
UpdateProfileDto: {
|
3111
3122
|
alternativeNames?: string[];
|
@@ -3260,6 +3271,7 @@ export interface components {
|
|
3260
3271
|
scanned: boolean;
|
3261
3272
|
scannedAt: string | null;
|
3262
3273
|
ticketGroupId: string | null;
|
3274
|
+
referralCode: string | null;
|
3263
3275
|
created_at: string;
|
3264
3276
|
updated_at: string;
|
3265
3277
|
event: {
|
@@ -3303,6 +3315,7 @@ export interface components {
|
|
3303
3315
|
scanned: boolean;
|
3304
3316
|
scannedAt: string | null;
|
3305
3317
|
ticketGroupId: string | null;
|
3318
|
+
referralCode: string | null;
|
3306
3319
|
created_at: string;
|
3307
3320
|
updated_at: string;
|
3308
3321
|
event: {
|
@@ -3342,6 +3355,7 @@ export interface components {
|
|
3342
3355
|
scanned: boolean;
|
3343
3356
|
scannedAt: string | null;
|
3344
3357
|
ticketGroupId: string | null;
|
3358
|
+
referralCode: string | null;
|
3345
3359
|
created_at: string;
|
3346
3360
|
updated_at: string;
|
3347
3361
|
event: {
|
@@ -3363,6 +3377,7 @@ export interface components {
|
|
3363
3377
|
scanned: boolean;
|
3364
3378
|
scannedAt: string | null;
|
3365
3379
|
ticketGroupId: string | null;
|
3380
|
+
referralCode: string | null;
|
3366
3381
|
created_at: string;
|
3367
3382
|
updated_at: string;
|
3368
3383
|
event: {
|
@@ -3408,6 +3423,7 @@ export interface components {
|
|
3408
3423
|
movedToTrashDate: string | null;
|
3409
3424
|
created_at: string;
|
3410
3425
|
updated_at: string;
|
3426
|
+
referralCode: string | null;
|
3411
3427
|
} | null;
|
3412
3428
|
profileId: string | null;
|
3413
3429
|
};
|
@@ -3424,6 +3440,7 @@ export interface components {
|
|
3424
3440
|
scanned: boolean;
|
3425
3441
|
scannedAt: string | null;
|
3426
3442
|
ticketGroupId: string | null;
|
3443
|
+
referralCode: string | null;
|
3427
3444
|
created_at: string;
|
3428
3445
|
updated_at: string;
|
3429
3446
|
event: {
|
@@ -3456,6 +3473,7 @@ export interface components {
|
|
3456
3473
|
movedToTrashDate: string | null;
|
3457
3474
|
created_at: string;
|
3458
3475
|
updated_at: string;
|
3476
|
+
referralCode: string | null;
|
3459
3477
|
} | null;
|
3460
3478
|
}[];
|
3461
3479
|
};
|
@@ -3471,6 +3489,7 @@ export interface components {
|
|
3471
3489
|
scanned: boolean;
|
3472
3490
|
scannedAt: string | null;
|
3473
3491
|
ticketGroupId: string | null;
|
3492
|
+
referralCode: string | null;
|
3474
3493
|
created_at: string;
|
3475
3494
|
updated_at: string;
|
3476
3495
|
event: {
|
@@ -3503,6 +3522,7 @@ export interface components {
|
|
3503
3522
|
movedToTrashDate: string | null;
|
3504
3523
|
created_at: string;
|
3505
3524
|
updated_at: string;
|
3525
|
+
referralCode: string | null;
|
3506
3526
|
} | null;
|
3507
3527
|
}[];
|
3508
3528
|
};
|
@@ -3518,6 +3538,7 @@ export interface components {
|
|
3518
3538
|
scanned: boolean;
|
3519
3539
|
scannedAt: string | null;
|
3520
3540
|
ticketGroupId: string | null;
|
3541
|
+
referralCode: string | null;
|
3521
3542
|
created_at: string;
|
3522
3543
|
updated_at: string;
|
3523
3544
|
event: {
|
@@ -3558,6 +3579,7 @@ export interface components {
|
|
3558
3579
|
scanned: boolean;
|
3559
3580
|
scannedAt: string | null;
|
3560
3581
|
ticketGroupId: string | null;
|
3582
|
+
referralCode: string | null;
|
3561
3583
|
created_at: string;
|
3562
3584
|
updated_at: string;
|
3563
3585
|
};
|
@@ -3572,6 +3594,7 @@ export interface components {
|
|
3572
3594
|
scanned: boolean;
|
3573
3595
|
scannedAt: string | null;
|
3574
3596
|
ticketGroupId: string | null;
|
3597
|
+
referralCode: string | null;
|
3575
3598
|
created_at: string;
|
3576
3599
|
updated_at: string;
|
3577
3600
|
};
|
@@ -3586,6 +3609,7 @@ export interface components {
|
|
3586
3609
|
scanned: boolean;
|
3587
3610
|
scannedAt: string | null;
|
3588
3611
|
ticketGroupId: string | null;
|
3612
|
+
referralCode: string | null;
|
3589
3613
|
created_at: string;
|
3590
3614
|
updated_at: string;
|
3591
3615
|
};
|
@@ -3604,6 +3628,7 @@ export interface components {
|
|
3604
3628
|
scanned: boolean;
|
3605
3629
|
scannedAt: string | null;
|
3606
3630
|
ticketGroupId: string | null;
|
3631
|
+
referralCode: string | null;
|
3607
3632
|
created_at: string;
|
3608
3633
|
updated_at: string;
|
3609
3634
|
};
|
@@ -3632,6 +3657,7 @@ export interface components {
|
|
3632
3657
|
scanned: boolean;
|
3633
3658
|
scannedAt: string | null;
|
3634
3659
|
ticketGroupId: string | null;
|
3660
|
+
referralCode: string | null;
|
3635
3661
|
created_at: string;
|
3636
3662
|
updated_at: string;
|
3637
3663
|
}[];
|
@@ -3730,6 +3756,7 @@ export interface components {
|
|
3730
3756
|
movedToTrashDate: string | null;
|
3731
3757
|
created_at: string;
|
3732
3758
|
updated_at: string;
|
3759
|
+
referralCode: string | null;
|
3733
3760
|
residenceLocation: {
|
3734
3761
|
city: string;
|
3735
3762
|
country: string;
|
@@ -3777,6 +3804,7 @@ export interface components {
|
|
3777
3804
|
movedToTrashDate: string | null;
|
3778
3805
|
created_at: string;
|
3779
3806
|
updated_at: string;
|
3807
|
+
referralCode: string | null;
|
3780
3808
|
};
|
3781
3809
|
};
|
3782
3810
|
GetMiExpoMeResponseDto: {
|
@@ -3803,6 +3831,7 @@ export interface components {
|
|
3803
3831
|
movedToTrashDate: string | null;
|
3804
3832
|
created_at: string;
|
3805
3833
|
updated_at: string;
|
3834
|
+
referralCode: string | null;
|
3806
3835
|
residenceLocation: {
|
3807
3836
|
id: string;
|
3808
3837
|
latitude: number;
|
@@ -3890,6 +3919,7 @@ export interface components {
|
|
3890
3919
|
movedToTrashDate: string | null;
|
3891
3920
|
created_at: string;
|
3892
3921
|
updated_at: string;
|
3922
|
+
referralCode: string | null;
|
3893
3923
|
};
|
3894
3924
|
backendTokens: {
|
3895
3925
|
accessToken: string;
|
@@ -3957,6 +3987,7 @@ export interface components {
|
|
3957
3987
|
movedToTrashDate: string | null;
|
3958
3988
|
created_at: string;
|
3959
3989
|
updated_at: string;
|
3990
|
+
referralCode: string | null;
|
3960
3991
|
} | null;
|
3961
3992
|
}[];
|
3962
3993
|
};
|
@@ -4027,6 +4058,7 @@ export interface components {
|
|
4027
4058
|
movedToTrashDate: string | null;
|
4028
4059
|
created_at: string;
|
4029
4060
|
updated_at: string;
|
4061
|
+
referralCode: string | null;
|
4030
4062
|
};
|
4031
4063
|
};
|
4032
4064
|
FindByProductionAffiliationRequestResponseDto: {
|
@@ -4069,6 +4101,7 @@ export interface components {
|
|
4069
4101
|
movedToTrashDate: string | null;
|
4070
4102
|
created_at: string;
|
4071
4103
|
updated_at: string;
|
4104
|
+
referralCode: string | null;
|
4072
4105
|
};
|
4073
4106
|
}[];
|
4074
4107
|
};
|