expo-backend-types 0.53.0 → 0.54.0-EXPO-366-EB-Schema-codigo-referido.2
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 -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/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- 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-referral-code-exists.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -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 +17 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -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 +17 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -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 +605 -26
- 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 +10 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +120 -0
- package/package.json +2 -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
@@ -799,6 +799,38 @@ export interface paths {
|
|
799
799
|
patch?: never;
|
800
800
|
trace?: never;
|
801
801
|
};
|
802
|
+
"/profile/referral-code-usage/{code}": {
|
803
|
+
parameters: {
|
804
|
+
query?: never;
|
805
|
+
header?: never;
|
806
|
+
path?: never;
|
807
|
+
cookie?: never;
|
808
|
+
};
|
809
|
+
get: operations["ProfileController_findReferralCodeUsage"];
|
810
|
+
put?: never;
|
811
|
+
post?: never;
|
812
|
+
delete?: never;
|
813
|
+
options?: never;
|
814
|
+
head?: never;
|
815
|
+
patch?: never;
|
816
|
+
trace?: never;
|
817
|
+
};
|
818
|
+
"/profile/referral-code-exists/{code}": {
|
819
|
+
parameters: {
|
820
|
+
query?: never;
|
821
|
+
header?: never;
|
822
|
+
path?: never;
|
823
|
+
cookie?: never;
|
824
|
+
};
|
825
|
+
get: operations["ProfileController_findReferralCodeExists"];
|
826
|
+
put?: never;
|
827
|
+
post?: never;
|
828
|
+
delete?: never;
|
829
|
+
options?: never;
|
830
|
+
head?: never;
|
831
|
+
patch?: never;
|
832
|
+
trace?: never;
|
833
|
+
};
|
802
834
|
"/profile/create": {
|
803
835
|
parameters: {
|
804
836
|
query?: never;
|
@@ -1812,6 +1844,7 @@ export interface components {
|
|
1812
1844
|
movedToTrashDate: string | null;
|
1813
1845
|
created_at: string;
|
1814
1846
|
updated_at: string;
|
1847
|
+
referralCode: string;
|
1815
1848
|
}[];
|
1816
1849
|
};
|
1817
1850
|
MassiveDeallocationDto: {
|
@@ -1844,6 +1877,7 @@ export interface components {
|
|
1844
1877
|
movedToTrashDate: string | null;
|
1845
1878
|
created_at: string;
|
1846
1879
|
updated_at: string;
|
1880
|
+
referralCode: string;
|
1847
1881
|
}[];
|
1848
1882
|
};
|
1849
1883
|
CreateAccountDto: {
|
@@ -2566,6 +2600,7 @@ export interface components {
|
|
2566
2600
|
scanned: boolean;
|
2567
2601
|
scannedAt: string | null;
|
2568
2602
|
ticketGroupId: string | null;
|
2603
|
+
referralCode: string | null;
|
2569
2604
|
created_at: string;
|
2570
2605
|
updated_at: string;
|
2571
2606
|
}[];
|
@@ -2736,6 +2771,7 @@ export interface components {
|
|
2736
2771
|
movedToTrashDate: string | null;
|
2737
2772
|
created_at: string;
|
2738
2773
|
updated_at: string;
|
2774
|
+
referralCode: string;
|
2739
2775
|
tags: {
|
2740
2776
|
id: string;
|
2741
2777
|
name: string;
|
@@ -2776,6 +2812,7 @@ export interface components {
|
|
2776
2812
|
movedToTrashDate: string | null;
|
2777
2813
|
created_at: string;
|
2778
2814
|
updated_at: string;
|
2815
|
+
referralCode: string;
|
2779
2816
|
tags: {
|
2780
2817
|
id: string;
|
2781
2818
|
name: string;
|
@@ -2834,6 +2871,7 @@ export interface components {
|
|
2834
2871
|
movedToTrashDate: string | null;
|
2835
2872
|
created_at: string;
|
2836
2873
|
updated_at: string;
|
2874
|
+
referralCode: string;
|
2837
2875
|
tags: {
|
2838
2876
|
id: string;
|
2839
2877
|
name: string;
|
@@ -2875,6 +2913,7 @@ export interface components {
|
|
2875
2913
|
movedToTrashDate: string | null;
|
2876
2914
|
created_at: string;
|
2877
2915
|
updated_at: string;
|
2916
|
+
referralCode: string;
|
2878
2917
|
tags: {
|
2879
2918
|
id: string;
|
2880
2919
|
name: string;
|
@@ -2911,6 +2950,7 @@ export interface components {
|
|
2911
2950
|
movedToTrashDate: string | null;
|
2912
2951
|
created_at: string;
|
2913
2952
|
updated_at: string;
|
2953
|
+
referralCode: string;
|
2914
2954
|
tags: {
|
2915
2955
|
id: string;
|
2916
2956
|
name: string;
|
@@ -2949,6 +2989,7 @@ export interface components {
|
|
2949
2989
|
movedToTrashDate: string | null;
|
2950
2990
|
created_at: string;
|
2951
2991
|
updated_at: string;
|
2992
|
+
referralCode: string;
|
2952
2993
|
};
|
2953
2994
|
FindTrashResponseDto: {
|
2954
2995
|
profiles: {
|
@@ -2961,6 +3002,12 @@ export interface components {
|
|
2961
3002
|
movedToTrashDate: string | null;
|
2962
3003
|
}[];
|
2963
3004
|
};
|
3005
|
+
FindReferralCodeUsageResponseDto: {
|
3006
|
+
amount: number;
|
3007
|
+
};
|
3008
|
+
FindReferralCodeExistsResponseDto: {
|
3009
|
+
exists: boolean;
|
3010
|
+
};
|
2964
3011
|
CreateProfileDto: {
|
2965
3012
|
profile: {
|
2966
3013
|
alternativeNames: string[];
|
@@ -3047,6 +3094,7 @@ export interface components {
|
|
3047
3094
|
movedToTrashDate: string | null;
|
3048
3095
|
created_at: string;
|
3049
3096
|
updated_at: string;
|
3097
|
+
referralCode: string;
|
3050
3098
|
residenceLocation: {
|
3051
3099
|
id: string;
|
3052
3100
|
latitude: number;
|
@@ -3106,6 +3154,7 @@ export interface components {
|
|
3106
3154
|
movedToTrashDate: string | null;
|
3107
3155
|
created_at: string;
|
3108
3156
|
updated_at: string;
|
3157
|
+
referralCode: string;
|
3109
3158
|
};
|
3110
3159
|
UpdateProfileDto: {
|
3111
3160
|
alternativeNames?: string[];
|
@@ -3248,6 +3297,7 @@ export interface components {
|
|
3248
3297
|
dni: string;
|
3249
3298
|
profileId?: string;
|
3250
3299
|
ticketGroupId?: string;
|
3300
|
+
referralCode?: string | null;
|
3251
3301
|
};
|
3252
3302
|
CreateTicketResponseDto: {
|
3253
3303
|
id: string;
|
@@ -3260,6 +3310,7 @@ export interface components {
|
|
3260
3310
|
scanned: boolean;
|
3261
3311
|
scannedAt: string | null;
|
3262
3312
|
ticketGroupId: string | null;
|
3313
|
+
referralCode: string | null;
|
3263
3314
|
created_at: string;
|
3264
3315
|
updated_at: string;
|
3265
3316
|
event: {
|
@@ -3290,6 +3341,7 @@ export interface components {
|
|
3290
3341
|
dni: string;
|
3291
3342
|
ticketGroupId: string | null;
|
3292
3343
|
profileId?: string;
|
3344
|
+
referralCode?: string | null;
|
3293
3345
|
}[];
|
3294
3346
|
};
|
3295
3347
|
CreateManyTicketResponseDto: {
|
@@ -3303,6 +3355,7 @@ export interface components {
|
|
3303
3355
|
scanned: boolean;
|
3304
3356
|
scannedAt: string | null;
|
3305
3357
|
ticketGroupId: string | null;
|
3358
|
+
referralCode: string | null;
|
3306
3359
|
created_at: string;
|
3307
3360
|
updated_at: string;
|
3308
3361
|
event: {
|
@@ -3342,6 +3395,7 @@ export interface components {
|
|
3342
3395
|
scanned: boolean;
|
3343
3396
|
scannedAt: string | null;
|
3344
3397
|
ticketGroupId: string | null;
|
3398
|
+
referralCode: string | null;
|
3345
3399
|
created_at: string;
|
3346
3400
|
updated_at: string;
|
3347
3401
|
event: {
|
@@ -3363,6 +3417,7 @@ export interface components {
|
|
3363
3417
|
scanned: boolean;
|
3364
3418
|
scannedAt: string | null;
|
3365
3419
|
ticketGroupId: string | null;
|
3420
|
+
referralCode: string | null;
|
3366
3421
|
created_at: string;
|
3367
3422
|
updated_at: string;
|
3368
3423
|
event: {
|
@@ -3408,6 +3463,7 @@ export interface components {
|
|
3408
3463
|
movedToTrashDate: string | null;
|
3409
3464
|
created_at: string;
|
3410
3465
|
updated_at: string;
|
3466
|
+
referralCode: string;
|
3411
3467
|
} | null;
|
3412
3468
|
profileId: string | null;
|
3413
3469
|
};
|
@@ -3424,6 +3480,7 @@ export interface components {
|
|
3424
3480
|
scanned: boolean;
|
3425
3481
|
scannedAt: string | null;
|
3426
3482
|
ticketGroupId: string | null;
|
3483
|
+
referralCode: string | null;
|
3427
3484
|
created_at: string;
|
3428
3485
|
updated_at: string;
|
3429
3486
|
event: {
|
@@ -3456,6 +3513,7 @@ export interface components {
|
|
3456
3513
|
movedToTrashDate: string | null;
|
3457
3514
|
created_at: string;
|
3458
3515
|
updated_at: string;
|
3516
|
+
referralCode: string;
|
3459
3517
|
} | null;
|
3460
3518
|
}[];
|
3461
3519
|
};
|
@@ -3471,6 +3529,7 @@ export interface components {
|
|
3471
3529
|
scanned: boolean;
|
3472
3530
|
scannedAt: string | null;
|
3473
3531
|
ticketGroupId: string | null;
|
3532
|
+
referralCode: string | null;
|
3474
3533
|
created_at: string;
|
3475
3534
|
updated_at: string;
|
3476
3535
|
event: {
|
@@ -3503,6 +3562,7 @@ export interface components {
|
|
3503
3562
|
movedToTrashDate: string | null;
|
3504
3563
|
created_at: string;
|
3505
3564
|
updated_at: string;
|
3565
|
+
referralCode: string;
|
3506
3566
|
} | null;
|
3507
3567
|
}[];
|
3508
3568
|
};
|
@@ -3518,6 +3578,7 @@ export interface components {
|
|
3518
3578
|
scanned: boolean;
|
3519
3579
|
scannedAt: string | null;
|
3520
3580
|
ticketGroupId: string | null;
|
3581
|
+
referralCode: string | null;
|
3521
3582
|
created_at: string;
|
3522
3583
|
updated_at: string;
|
3523
3584
|
event: {
|
@@ -3558,6 +3619,7 @@ export interface components {
|
|
3558
3619
|
scanned: boolean;
|
3559
3620
|
scannedAt: string | null;
|
3560
3621
|
ticketGroupId: string | null;
|
3622
|
+
referralCode: string | null;
|
3561
3623
|
created_at: string;
|
3562
3624
|
updated_at: string;
|
3563
3625
|
};
|
@@ -3572,6 +3634,7 @@ export interface components {
|
|
3572
3634
|
scanned: boolean;
|
3573
3635
|
scannedAt: string | null;
|
3574
3636
|
ticketGroupId: string | null;
|
3637
|
+
referralCode: string | null;
|
3575
3638
|
created_at: string;
|
3576
3639
|
updated_at: string;
|
3577
3640
|
};
|
@@ -3586,6 +3649,7 @@ export interface components {
|
|
3586
3649
|
scanned: boolean;
|
3587
3650
|
scannedAt: string | null;
|
3588
3651
|
ticketGroupId: string | null;
|
3652
|
+
referralCode: string | null;
|
3589
3653
|
created_at: string;
|
3590
3654
|
updated_at: string;
|
3591
3655
|
};
|
@@ -3604,6 +3668,7 @@ export interface components {
|
|
3604
3668
|
scanned: boolean;
|
3605
3669
|
scannedAt: string | null;
|
3606
3670
|
ticketGroupId: string | null;
|
3671
|
+
referralCode: string | null;
|
3607
3672
|
created_at: string;
|
3608
3673
|
updated_at: string;
|
3609
3674
|
};
|
@@ -3619,6 +3684,7 @@ export interface components {
|
|
3619
3684
|
amountTickets: number;
|
3620
3685
|
status: "BOOKED" | "PAID" | "FREE";
|
3621
3686
|
eventId: string;
|
3687
|
+
referralCode: string | null;
|
3622
3688
|
created_at: string;
|
3623
3689
|
updated_at: string;
|
3624
3690
|
tickets: {
|
@@ -3632,6 +3698,7 @@ export interface components {
|
|
3632
3698
|
scanned: boolean;
|
3633
3699
|
scannedAt: string | null;
|
3634
3700
|
ticketGroupId: string | null;
|
3701
|
+
referralCode: string | null;
|
3635
3702
|
created_at: string;
|
3636
3703
|
updated_at: string;
|
3637
3704
|
}[];
|
@@ -3662,17 +3729,20 @@ export interface components {
|
|
3662
3729
|
amountTickets: number;
|
3663
3730
|
status: "BOOKED" | "PAID" | "FREE";
|
3664
3731
|
eventId: string;
|
3732
|
+
referralCode: string | null;
|
3665
3733
|
created_at: string;
|
3666
3734
|
updated_at: string;
|
3667
3735
|
};
|
3668
3736
|
UpdateTicketGroupDto: {
|
3669
3737
|
status?: "BOOKED" | "PAID" | "FREE";
|
3738
|
+
referralCode?: string | null;
|
3670
3739
|
};
|
3671
3740
|
UpdateTicketGroupResponseDto: {
|
3672
3741
|
id: string;
|
3673
3742
|
amountTickets: number;
|
3674
3743
|
status: "BOOKED" | "PAID" | "FREE";
|
3675
3744
|
eventId: string;
|
3745
|
+
referralCode: string | null;
|
3676
3746
|
created_at: string;
|
3677
3747
|
updated_at: string;
|
3678
3748
|
};
|
@@ -3681,6 +3751,7 @@ export interface components {
|
|
3681
3751
|
amountTickets: number;
|
3682
3752
|
status: "BOOKED" | "PAID" | "FREE";
|
3683
3753
|
eventId: string;
|
3754
|
+
referralCode: string | null;
|
3684
3755
|
created_at: string;
|
3685
3756
|
updated_at: string;
|
3686
3757
|
};
|
@@ -3730,6 +3801,7 @@ export interface components {
|
|
3730
3801
|
movedToTrashDate: string | null;
|
3731
3802
|
created_at: string;
|
3732
3803
|
updated_at: string;
|
3804
|
+
referralCode: string;
|
3733
3805
|
residenceLocation: {
|
3734
3806
|
city: string;
|
3735
3807
|
country: string;
|
@@ -3777,6 +3849,7 @@ export interface components {
|
|
3777
3849
|
movedToTrashDate: string | null;
|
3778
3850
|
created_at: string;
|
3779
3851
|
updated_at: string;
|
3852
|
+
referralCode: string;
|
3780
3853
|
};
|
3781
3854
|
};
|
3782
3855
|
GetMiExpoMeResponseDto: {
|
@@ -3803,6 +3876,7 @@ export interface components {
|
|
3803
3876
|
movedToTrashDate: string | null;
|
3804
3877
|
created_at: string;
|
3805
3878
|
updated_at: string;
|
3879
|
+
referralCode: string;
|
3806
3880
|
residenceLocation: {
|
3807
3881
|
id: string;
|
3808
3882
|
latitude: number;
|
@@ -3890,6 +3964,7 @@ export interface components {
|
|
3890
3964
|
movedToTrashDate: string | null;
|
3891
3965
|
created_at: string;
|
3892
3966
|
updated_at: string;
|
3967
|
+
referralCode: string;
|
3893
3968
|
};
|
3894
3969
|
backendTokens: {
|
3895
3970
|
accessToken: string;
|
@@ -3957,6 +4032,7 @@ export interface components {
|
|
3957
4032
|
movedToTrashDate: string | null;
|
3958
4033
|
created_at: string;
|
3959
4034
|
updated_at: string;
|
4035
|
+
referralCode: string;
|
3960
4036
|
} | null;
|
3961
4037
|
}[];
|
3962
4038
|
};
|
@@ -4027,6 +4103,7 @@ export interface components {
|
|
4027
4103
|
movedToTrashDate: string | null;
|
4028
4104
|
created_at: string;
|
4029
4105
|
updated_at: string;
|
4106
|
+
referralCode: string;
|
4030
4107
|
};
|
4031
4108
|
};
|
4032
4109
|
FindByProductionAffiliationRequestResponseDto: {
|
@@ -4069,6 +4146,7 @@ export interface components {
|
|
4069
4146
|
movedToTrashDate: string | null;
|
4070
4147
|
created_at: string;
|
4071
4148
|
updated_at: string;
|
4149
|
+
referralCode: string;
|
4072
4150
|
};
|
4073
4151
|
}[];
|
4074
4152
|
};
|
@@ -5650,6 +5728,48 @@ export interface operations {
|
|
5650
5728
|
};
|
5651
5729
|
};
|
5652
5730
|
};
|
5731
|
+
ProfileController_findReferralCodeUsage: {
|
5732
|
+
parameters: {
|
5733
|
+
query?: never;
|
5734
|
+
header?: never;
|
5735
|
+
path: {
|
5736
|
+
code: string;
|
5737
|
+
};
|
5738
|
+
cookie?: never;
|
5739
|
+
};
|
5740
|
+
requestBody?: never;
|
5741
|
+
responses: {
|
5742
|
+
200: {
|
5743
|
+
headers: {
|
5744
|
+
[name: string]: unknown;
|
5745
|
+
};
|
5746
|
+
content: {
|
5747
|
+
"application/json": components["schemas"]["FindReferralCodeUsageResponseDto"];
|
5748
|
+
};
|
5749
|
+
};
|
5750
|
+
};
|
5751
|
+
};
|
5752
|
+
ProfileController_findReferralCodeExists: {
|
5753
|
+
parameters: {
|
5754
|
+
query?: never;
|
5755
|
+
header?: never;
|
5756
|
+
path: {
|
5757
|
+
code: string;
|
5758
|
+
};
|
5759
|
+
cookie?: never;
|
5760
|
+
};
|
5761
|
+
requestBody?: never;
|
5762
|
+
responses: {
|
5763
|
+
200: {
|
5764
|
+
headers: {
|
5765
|
+
[name: string]: unknown;
|
5766
|
+
};
|
5767
|
+
content: {
|
5768
|
+
"application/json": components["schemas"]["FindReferralCodeExistsResponseDto"];
|
5769
|
+
};
|
5770
|
+
};
|
5771
|
+
};
|
5772
|
+
};
|
5653
5773
|
ProfileController_create: {
|
5654
5774
|
parameters: {
|
5655
5775
|
query?: never;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.54.0-EXPO-366-EB-Schema-codigo-referido.2",
|
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
|
+
"an-array-of-spanish-words": "^2.0.0",
|
38
39
|
"i18n-js": "^4.4.3",
|
39
40
|
"libphonenumber-js": "^1.12.6",
|
40
41
|
"mercadopago": "^2.4.0",
|