expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.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/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/find-by-event-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -0
- package/dist/types/prisma-schema/edge.js +5 -3
- package/dist/types/prisma-schema/index-browser.js +2 -0
- package/dist/types/prisma-schema/index.d.ts +118 -2
- package/dist/types/prisma-schema/index.js +5 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +4 -0
- package/dist/types/prisma-schema/wasm.js +2 -0
- package/dist/types/schema.d.ts +20 -0
- package/package.json +1 -1
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: {
|
@@ -2736,6 +2738,7 @@ export interface components {
|
|
2736
2738
|
movedToTrashDate: string | null;
|
2737
2739
|
created_at: string;
|
2738
2740
|
updated_at: string;
|
2741
|
+
referralCode: string | null;
|
2739
2742
|
tags: {
|
2740
2743
|
id: string;
|
2741
2744
|
name: string;
|
@@ -2776,6 +2779,7 @@ export interface components {
|
|
2776
2779
|
movedToTrashDate: string | null;
|
2777
2780
|
created_at: string;
|
2778
2781
|
updated_at: string;
|
2782
|
+
referralCode: string | null;
|
2779
2783
|
tags: {
|
2780
2784
|
id: string;
|
2781
2785
|
name: string;
|
@@ -2834,6 +2838,7 @@ export interface components {
|
|
2834
2838
|
movedToTrashDate: string | null;
|
2835
2839
|
created_at: string;
|
2836
2840
|
updated_at: string;
|
2841
|
+
referralCode: string | null;
|
2837
2842
|
tags: {
|
2838
2843
|
id: string;
|
2839
2844
|
name: string;
|
@@ -2875,6 +2880,7 @@ export interface components {
|
|
2875
2880
|
movedToTrashDate: string | null;
|
2876
2881
|
created_at: string;
|
2877
2882
|
updated_at: string;
|
2883
|
+
referralCode: string | null;
|
2878
2884
|
tags: {
|
2879
2885
|
id: string;
|
2880
2886
|
name: string;
|
@@ -2911,6 +2917,7 @@ export interface components {
|
|
2911
2917
|
movedToTrashDate: string | null;
|
2912
2918
|
created_at: string;
|
2913
2919
|
updated_at: string;
|
2920
|
+
referralCode: string | null;
|
2914
2921
|
tags: {
|
2915
2922
|
id: string;
|
2916
2923
|
name: string;
|
@@ -2949,6 +2956,7 @@ export interface components {
|
|
2949
2956
|
movedToTrashDate: string | null;
|
2950
2957
|
created_at: string;
|
2951
2958
|
updated_at: string;
|
2959
|
+
referralCode: string | null;
|
2952
2960
|
};
|
2953
2961
|
FindTrashResponseDto: {
|
2954
2962
|
profiles: {
|
@@ -3047,6 +3055,7 @@ export interface components {
|
|
3047
3055
|
movedToTrashDate: string | null;
|
3048
3056
|
created_at: string;
|
3049
3057
|
updated_at: string;
|
3058
|
+
referralCode: string | null;
|
3050
3059
|
residenceLocation: {
|
3051
3060
|
id: string;
|
3052
3061
|
latitude: number;
|
@@ -3106,6 +3115,7 @@ export interface components {
|
|
3106
3115
|
movedToTrashDate: string | null;
|
3107
3116
|
created_at: string;
|
3108
3117
|
updated_at: string;
|
3118
|
+
referralCode: string | null;
|
3109
3119
|
};
|
3110
3120
|
UpdateProfileDto: {
|
3111
3121
|
alternativeNames?: string[];
|
@@ -3408,6 +3418,7 @@ export interface components {
|
|
3408
3418
|
movedToTrashDate: string | null;
|
3409
3419
|
created_at: string;
|
3410
3420
|
updated_at: string;
|
3421
|
+
referralCode: string | null;
|
3411
3422
|
} | null;
|
3412
3423
|
profileId: string | null;
|
3413
3424
|
};
|
@@ -3456,6 +3467,7 @@ export interface components {
|
|
3456
3467
|
movedToTrashDate: string | null;
|
3457
3468
|
created_at: string;
|
3458
3469
|
updated_at: string;
|
3470
|
+
referralCode: string | null;
|
3459
3471
|
} | null;
|
3460
3472
|
}[];
|
3461
3473
|
};
|
@@ -3503,6 +3515,7 @@ export interface components {
|
|
3503
3515
|
movedToTrashDate: string | null;
|
3504
3516
|
created_at: string;
|
3505
3517
|
updated_at: string;
|
3518
|
+
referralCode: string | null;
|
3506
3519
|
} | null;
|
3507
3520
|
}[];
|
3508
3521
|
};
|
@@ -3730,6 +3743,7 @@ export interface components {
|
|
3730
3743
|
movedToTrashDate: string | null;
|
3731
3744
|
created_at: string;
|
3732
3745
|
updated_at: string;
|
3746
|
+
referralCode: string | null;
|
3733
3747
|
residenceLocation: {
|
3734
3748
|
city: string;
|
3735
3749
|
country: string;
|
@@ -3777,6 +3791,7 @@ export interface components {
|
|
3777
3791
|
movedToTrashDate: string | null;
|
3778
3792
|
created_at: string;
|
3779
3793
|
updated_at: string;
|
3794
|
+
referralCode: string | null;
|
3780
3795
|
};
|
3781
3796
|
};
|
3782
3797
|
GetMiExpoMeResponseDto: {
|
@@ -3803,6 +3818,7 @@ export interface components {
|
|
3803
3818
|
movedToTrashDate: string | null;
|
3804
3819
|
created_at: string;
|
3805
3820
|
updated_at: string;
|
3821
|
+
referralCode: string | null;
|
3806
3822
|
residenceLocation: {
|
3807
3823
|
id: string;
|
3808
3824
|
latitude: number;
|
@@ -3890,6 +3906,7 @@ export interface components {
|
|
3890
3906
|
movedToTrashDate: string | null;
|
3891
3907
|
created_at: string;
|
3892
3908
|
updated_at: string;
|
3909
|
+
referralCode: string | null;
|
3893
3910
|
};
|
3894
3911
|
backendTokens: {
|
3895
3912
|
accessToken: string;
|
@@ -3957,6 +3974,7 @@ export interface components {
|
|
3957
3974
|
movedToTrashDate: string | null;
|
3958
3975
|
created_at: string;
|
3959
3976
|
updated_at: string;
|
3977
|
+
referralCode: string | null;
|
3960
3978
|
} | null;
|
3961
3979
|
}[];
|
3962
3980
|
};
|
@@ -4027,6 +4045,7 @@ export interface components {
|
|
4027
4045
|
movedToTrashDate: string | null;
|
4028
4046
|
created_at: string;
|
4029
4047
|
updated_at: string;
|
4048
|
+
referralCode: string | null;
|
4030
4049
|
};
|
4031
4050
|
};
|
4032
4051
|
FindByProductionAffiliationRequestResponseDto: {
|
@@ -4069,6 +4088,7 @@ export interface components {
|
|
4069
4088
|
movedToTrashDate: string | null;
|
4070
4089
|
created_at: string;
|
4071
4090
|
updated_at: string;
|
4091
|
+
referralCode: string | null;
|
4072
4092
|
};
|
4073
4093
|
}[];
|
4074
4094
|
};
|