expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.9 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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 +10 -5
- 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 +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +9 -2
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +9 -2
- 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 +22 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- 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 +17 -7
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -6
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -1
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +8 -8
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +496 -33
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +7 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +17 -4
- package/package.json +2 -1
package/dist/types/schema.d.ts
CHANGED
@@ -2600,6 +2600,7 @@ export interface components {
|
|
2600
2600
|
scanned: boolean;
|
2601
2601
|
scannedAt: string | null;
|
2602
2602
|
ticketGroupId: string | null;
|
2603
|
+
referralCode: string | null;
|
2603
2604
|
created_at: string;
|
2604
2605
|
updated_at: string;
|
2605
2606
|
}[];
|
@@ -3309,6 +3310,7 @@ export interface components {
|
|
3309
3310
|
scanned: boolean;
|
3310
3311
|
scannedAt: string | null;
|
3311
3312
|
ticketGroupId: string | null;
|
3313
|
+
referralCode: string | null;
|
3312
3314
|
created_at: string;
|
3313
3315
|
updated_at: string;
|
3314
3316
|
event: {
|
@@ -3353,6 +3355,7 @@ export interface components {
|
|
3353
3355
|
scanned: boolean;
|
3354
3356
|
scannedAt: string | null;
|
3355
3357
|
ticketGroupId: string | null;
|
3358
|
+
referralCode: string | null;
|
3356
3359
|
created_at: string;
|
3357
3360
|
updated_at: string;
|
3358
3361
|
event: {
|
@@ -3392,6 +3395,7 @@ export interface components {
|
|
3392
3395
|
scanned: boolean;
|
3393
3396
|
scannedAt: string | null;
|
3394
3397
|
ticketGroupId: string | null;
|
3398
|
+
referralCode: string | null;
|
3395
3399
|
created_at: string;
|
3396
3400
|
updated_at: string;
|
3397
3401
|
event: {
|
@@ -3413,6 +3417,7 @@ export interface components {
|
|
3413
3417
|
scanned: boolean;
|
3414
3418
|
scannedAt: string | null;
|
3415
3419
|
ticketGroupId: string | null;
|
3420
|
+
referralCode: string | null;
|
3416
3421
|
created_at: string;
|
3417
3422
|
updated_at: string;
|
3418
3423
|
event: {
|
@@ -3475,6 +3480,7 @@ export interface components {
|
|
3475
3480
|
scanned: boolean;
|
3476
3481
|
scannedAt: string | null;
|
3477
3482
|
ticketGroupId: string | null;
|
3483
|
+
referralCode: string | null;
|
3478
3484
|
created_at: string;
|
3479
3485
|
updated_at: string;
|
3480
3486
|
event: {
|
@@ -3523,6 +3529,7 @@ export interface components {
|
|
3523
3529
|
scanned: boolean;
|
3524
3530
|
scannedAt: string | null;
|
3525
3531
|
ticketGroupId: string | null;
|
3532
|
+
referralCode: string | null;
|
3526
3533
|
created_at: string;
|
3527
3534
|
updated_at: string;
|
3528
3535
|
event: {
|
@@ -3571,6 +3578,7 @@ export interface components {
|
|
3571
3578
|
scanned: boolean;
|
3572
3579
|
scannedAt: string | null;
|
3573
3580
|
ticketGroupId: string | null;
|
3581
|
+
referralCode: string | null;
|
3574
3582
|
created_at: string;
|
3575
3583
|
updated_at: string;
|
3576
3584
|
event: {
|
@@ -3611,6 +3619,7 @@ export interface components {
|
|
3611
3619
|
scanned: boolean;
|
3612
3620
|
scannedAt: string | null;
|
3613
3621
|
ticketGroupId: string | null;
|
3622
|
+
referralCode: string | null;
|
3614
3623
|
created_at: string;
|
3615
3624
|
updated_at: string;
|
3616
3625
|
};
|
@@ -3625,6 +3634,7 @@ export interface components {
|
|
3625
3634
|
scanned: boolean;
|
3626
3635
|
scannedAt: string | null;
|
3627
3636
|
ticketGroupId: string | null;
|
3637
|
+
referralCode: string | null;
|
3628
3638
|
created_at: string;
|
3629
3639
|
updated_at: string;
|
3630
3640
|
};
|
@@ -3639,6 +3649,7 @@ export interface components {
|
|
3639
3649
|
scanned: boolean;
|
3640
3650
|
scannedAt: string | null;
|
3641
3651
|
ticketGroupId: string | null;
|
3652
|
+
referralCode: string | null;
|
3642
3653
|
created_at: string;
|
3643
3654
|
updated_at: string;
|
3644
3655
|
};
|
@@ -3657,6 +3668,7 @@ export interface components {
|
|
3657
3668
|
scanned: boolean;
|
3658
3669
|
scannedAt: string | null;
|
3659
3670
|
ticketGroupId: string | null;
|
3671
|
+
referralCode: string | null;
|
3660
3672
|
created_at: string;
|
3661
3673
|
updated_at: string;
|
3662
3674
|
};
|
@@ -3672,7 +3684,7 @@ export interface components {
|
|
3672
3684
|
amountTickets: number;
|
3673
3685
|
status: "BOOKED" | "PAID" | "FREE";
|
3674
3686
|
eventId: string;
|
3675
|
-
referralCode
|
3687
|
+
referralCode: string | null;
|
3676
3688
|
created_at: string;
|
3677
3689
|
updated_at: string;
|
3678
3690
|
tickets: {
|
@@ -3686,6 +3698,7 @@ export interface components {
|
|
3686
3698
|
scanned: boolean;
|
3687
3699
|
scannedAt: string | null;
|
3688
3700
|
ticketGroupId: string | null;
|
3701
|
+
referralCode: string | null;
|
3689
3702
|
created_at: string;
|
3690
3703
|
updated_at: string;
|
3691
3704
|
}[];
|
@@ -3716,7 +3729,7 @@ export interface components {
|
|
3716
3729
|
amountTickets: number;
|
3717
3730
|
status: "BOOKED" | "PAID" | "FREE";
|
3718
3731
|
eventId: string;
|
3719
|
-
referralCode
|
3732
|
+
referralCode: string | null;
|
3720
3733
|
created_at: string;
|
3721
3734
|
updated_at: string;
|
3722
3735
|
};
|
@@ -3729,7 +3742,7 @@ export interface components {
|
|
3729
3742
|
amountTickets: number;
|
3730
3743
|
status: "BOOKED" | "PAID" | "FREE";
|
3731
3744
|
eventId: string;
|
3732
|
-
referralCode
|
3745
|
+
referralCode: string | null;
|
3733
3746
|
created_at: string;
|
3734
3747
|
updated_at: string;
|
3735
3748
|
};
|
@@ -3738,7 +3751,7 @@ export interface components {
|
|
3738
3751
|
amountTickets: number;
|
3739
3752
|
status: "BOOKED" | "PAID" | "FREE";
|
3740
3753
|
eventId: string;
|
3741
|
-
referralCode
|
3754
|
+
referralCode: string | null;
|
3742
3755
|
created_at: string;
|
3743
3756
|
updated_at: string;
|
3744
3757
|
};
|
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
|
+
"version": "0.53.0-EXPO-366-EB-Schema-codigo-referido.11",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -35,6 +35,7 @@
|
|
35
35
|
"dependencies": {
|
36
36
|
"@anatine/zod-nestjs": "^2.0.10",
|
37
37
|
"@anatine/zod-openapi": "^2.2.6",
|
38
|
+
"@faker-js/faker": "^9.8.0",
|
38
39
|
"i18n-js": "^4.4.3",
|
39
40
|
"libphonenumber-js": "^1.12.6",
|
40
41
|
"mercadopago": "^2.4.0",
|