expo-backend-types 0.30.0-EXPO-308-auth.21 → 0.30.0-EXPO-308-auth.22
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/types/schema.d.ts +59 -0
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -991,6 +991,22 @@ export interface paths {
|
|
991
991
|
patch?: never;
|
992
992
|
trace?: never;
|
993
993
|
};
|
994
|
+
"/mi-expo/me": {
|
995
|
+
parameters: {
|
996
|
+
query?: never;
|
997
|
+
header?: never;
|
998
|
+
path?: never;
|
999
|
+
cookie?: never;
|
1000
|
+
};
|
1001
|
+
get: operations["MiExpoController_me"];
|
1002
|
+
put?: never;
|
1003
|
+
post?: never;
|
1004
|
+
delete?: never;
|
1005
|
+
options?: never;
|
1006
|
+
head?: never;
|
1007
|
+
patch?: never;
|
1008
|
+
trace?: never;
|
1009
|
+
};
|
994
1010
|
}
|
995
1011
|
export type webhooks = Record<string, never>;
|
996
1012
|
export interface components {
|
@@ -2340,6 +2356,30 @@ export interface components {
|
|
2340
2356
|
updated_at: string;
|
2341
2357
|
};
|
2342
2358
|
};
|
2359
|
+
MeResponseDto: {
|
2360
|
+
id: string;
|
2361
|
+
shortId: number;
|
2362
|
+
firstTimeMiExpo: boolean;
|
2363
|
+
username: string | null;
|
2364
|
+
phoneNumber: string;
|
2365
|
+
isPhoneVerified: boolean;
|
2366
|
+
secondaryPhoneNumber: string | null;
|
2367
|
+
fullName: string;
|
2368
|
+
firstName: string | null;
|
2369
|
+
gender: string | null;
|
2370
|
+
birthDate: string | null;
|
2371
|
+
profilePictureUrl: string | null;
|
2372
|
+
instagram: string | null;
|
2373
|
+
mail: string | null;
|
2374
|
+
dni: string | null;
|
2375
|
+
alternativeNames: string[];
|
2376
|
+
birthLocationId: string | null;
|
2377
|
+
residenceLocationId: string | null;
|
2378
|
+
isInTrash: boolean;
|
2379
|
+
movedToTrashDate: string | null;
|
2380
|
+
created_at: string;
|
2381
|
+
updated_at: string;
|
2382
|
+
};
|
2343
2383
|
};
|
2344
2384
|
responses: never;
|
2345
2385
|
parameters: never;
|
@@ -4365,4 +4405,23 @@ export interface operations {
|
|
4365
4405
|
};
|
4366
4406
|
};
|
4367
4407
|
};
|
4408
|
+
MiExpoController_me: {
|
4409
|
+
parameters: {
|
4410
|
+
query?: never;
|
4411
|
+
header?: never;
|
4412
|
+
path?: never;
|
4413
|
+
cookie?: never;
|
4414
|
+
};
|
4415
|
+
requestBody?: never;
|
4416
|
+
responses: {
|
4417
|
+
200: {
|
4418
|
+
headers: {
|
4419
|
+
[name: string]: unknown;
|
4420
|
+
};
|
4421
|
+
content: {
|
4422
|
+
"application/json": components["schemas"]["MeResponseDto"];
|
4423
|
+
};
|
4424
|
+
};
|
4425
|
+
};
|
4426
|
+
};
|
4368
4427
|
}
|