expo-backend-types 0.56.0 → 0.57.0-EXPO-379-EB-Rutas-necesarias.1
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/update-me-first-time.dto.d.ts +382 -0
- package/dist/src/mi-expo/dto/update-me-first-time.dto.js +35 -0
- package/dist/src/mi-expo/exports.d.ts +1 -0
- package/dist/src/mi-expo/exports.js +1 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +141 -2
- package/dist/src/profile/dto/find-by-phone-number.dto.js +21 -1
- 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 +51 -1
- 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 +2 -1
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +80 -0
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1471,6 +1471,22 @@ export interface paths {
|
|
1471
1471
|
patch: operations["MiExpoController_updateMe"];
|
1472
1472
|
trace?: never;
|
1473
1473
|
};
|
1474
|
+
"/mi-expo/me-first-time": {
|
1475
|
+
parameters: {
|
1476
|
+
query?: never;
|
1477
|
+
header?: never;
|
1478
|
+
path?: never;
|
1479
|
+
cookie?: never;
|
1480
|
+
};
|
1481
|
+
get?: never;
|
1482
|
+
put?: never;
|
1483
|
+
post?: never;
|
1484
|
+
delete?: never;
|
1485
|
+
options?: never;
|
1486
|
+
head?: never;
|
1487
|
+
patch: operations["MiExpoController_updateMeWithoutLogin"];
|
1488
|
+
trace?: never;
|
1489
|
+
};
|
1474
1490
|
"/mi-expo/invitations": {
|
1475
1491
|
parameters: {
|
1476
1492
|
query?: never;
|
@@ -2989,6 +3005,20 @@ export interface components {
|
|
2989
3005
|
created_at: string;
|
2990
3006
|
updated_at: string;
|
2991
3007
|
referralCode: string;
|
3008
|
+
residenceLocation: {
|
3009
|
+
city: string;
|
3010
|
+
state: string;
|
3011
|
+
country: string;
|
3012
|
+
latitude: number;
|
3013
|
+
longitude: number;
|
3014
|
+
} | null;
|
3015
|
+
birthLocation: {
|
3016
|
+
city: string;
|
3017
|
+
state: string;
|
3018
|
+
country: string;
|
3019
|
+
latitude: number;
|
3020
|
+
longitude: number;
|
3021
|
+
} | null;
|
2992
3022
|
};
|
2993
3023
|
FindTrashResponseDto: {
|
2994
3024
|
profiles: {
|
@@ -3932,6 +3962,33 @@ export interface components {
|
|
3932
3962
|
state: string;
|
3933
3963
|
};
|
3934
3964
|
};
|
3965
|
+
UpdateMiExpoMeFirstTimeDto: {
|
3966
|
+
birthDate: string | null;
|
3967
|
+
dni: string | null;
|
3968
|
+
fullName: string;
|
3969
|
+
gender: string | null;
|
3970
|
+
instagram: string | null;
|
3971
|
+
mail: string | null;
|
3972
|
+
password: string | null;
|
3973
|
+
phoneNumber: string;
|
3974
|
+
secondaryPhoneNumber: string | null;
|
3975
|
+
username: string | null;
|
3976
|
+
birth: {
|
3977
|
+
city: string;
|
3978
|
+
country: string;
|
3979
|
+
latitude: number;
|
3980
|
+
longitude: number;
|
3981
|
+
state: string;
|
3982
|
+
};
|
3983
|
+
residence: {
|
3984
|
+
city: string;
|
3985
|
+
country: string;
|
3986
|
+
latitude: number;
|
3987
|
+
longitude: number;
|
3988
|
+
state: string;
|
3989
|
+
};
|
3990
|
+
id: string;
|
3991
|
+
};
|
3935
3992
|
GetInvitationsResponseDto: {
|
3936
3993
|
events: {
|
3937
3994
|
date: string;
|
@@ -7175,6 +7232,29 @@ export interface operations {
|
|
7175
7232
|
};
|
7176
7233
|
};
|
7177
7234
|
};
|
7235
|
+
MiExpoController_updateMeWithoutLogin: {
|
7236
|
+
parameters: {
|
7237
|
+
query?: never;
|
7238
|
+
header?: never;
|
7239
|
+
path?: never;
|
7240
|
+
cookie?: never;
|
7241
|
+
};
|
7242
|
+
requestBody: {
|
7243
|
+
content: {
|
7244
|
+
"application/json": components["schemas"]["UpdateMiExpoMeFirstTimeDto"];
|
7245
|
+
};
|
7246
|
+
};
|
7247
|
+
responses: {
|
7248
|
+
200: {
|
7249
|
+
headers: {
|
7250
|
+
[name: string]: unknown;
|
7251
|
+
};
|
7252
|
+
content: {
|
7253
|
+
"application/json": components["schemas"]["GetMiExpoMeResponseDto"];
|
7254
|
+
};
|
7255
|
+
};
|
7256
|
+
};
|
7257
|
+
};
|
7178
7258
|
MiExpoController_invitations: {
|
7179
7259
|
parameters: {
|
7180
7260
|
query?: never;
|