expo-backend-types 0.14.0-EXPO-249-EB-Modelo.1 → 0.14.0-EXPO-249-EB-Modelo.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/types/schema.d.ts +156 -138
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -780,20 +780,20 @@ export interface components {
|
|
780
780
|
id: string;
|
781
781
|
shortId: number;
|
782
782
|
phoneNumber: string;
|
783
|
-
secondaryPhoneNumber: null;
|
783
|
+
secondaryPhoneNumber: string | null;
|
784
784
|
fullName: string;
|
785
|
-
firstName: null;
|
786
|
-
gender: null;
|
787
|
-
birthDate: null;
|
788
|
-
profilePictureUrl: null;
|
789
|
-
instagram: null;
|
790
|
-
mail: null;
|
791
|
-
dni: null;
|
785
|
+
firstName: string | null;
|
786
|
+
gender: string | null;
|
787
|
+
birthDate: string | null;
|
788
|
+
profilePictureUrl: string | null;
|
789
|
+
instagram: string | null;
|
790
|
+
mail: string | null;
|
791
|
+
dni: string | null;
|
792
792
|
alternativeNames: string[];
|
793
|
-
birthLocationId: null;
|
794
|
-
residenceLocationId: null;
|
793
|
+
birthLocationId: string | null;
|
794
|
+
residenceLocationId: string | null;
|
795
795
|
isInTrash: boolean;
|
796
|
-
movedToTrashDate: null;
|
796
|
+
movedToTrashDate: string | null;
|
797
797
|
created_at: string;
|
798
798
|
updated_at: string;
|
799
799
|
}[];
|
@@ -807,20 +807,20 @@ export interface components {
|
|
807
807
|
id: string;
|
808
808
|
shortId: number;
|
809
809
|
phoneNumber: string;
|
810
|
-
secondaryPhoneNumber: null;
|
810
|
+
secondaryPhoneNumber: string | null;
|
811
811
|
fullName: string;
|
812
|
-
firstName: null;
|
813
|
-
gender: null;
|
814
|
-
birthDate: null;
|
815
|
-
profilePictureUrl: null;
|
816
|
-
instagram: null;
|
817
|
-
mail: null;
|
818
|
-
dni: null;
|
812
|
+
firstName: string | null;
|
813
|
+
gender: string | null;
|
814
|
+
birthDate: string | null;
|
815
|
+
profilePictureUrl: string | null;
|
816
|
+
instagram: string | null;
|
817
|
+
mail: string | null;
|
818
|
+
dni: string | null;
|
819
819
|
alternativeNames: string[];
|
820
|
-
birthLocationId: null;
|
821
|
-
residenceLocationId: null;
|
820
|
+
birthLocationId: string | null;
|
821
|
+
residenceLocationId: string | null;
|
822
822
|
isInTrash: boolean;
|
823
|
-
movedToTrashDate: null;
|
823
|
+
movedToTrashDate: string | null;
|
824
824
|
created_at: string;
|
825
825
|
updated_at: string;
|
826
826
|
}[];
|
@@ -1001,7 +1001,7 @@ export interface components {
|
|
1001
1001
|
profileId: string;
|
1002
1002
|
isSolvable: boolean;
|
1003
1003
|
isSolved: boolean;
|
1004
|
-
solvedAt: null;
|
1004
|
+
solvedAt: string | null;
|
1005
1005
|
solvedBy?: string;
|
1006
1006
|
created_at: string;
|
1007
1007
|
updated_at: string;
|
@@ -1014,7 +1014,7 @@ export interface components {
|
|
1014
1014
|
profileId: string;
|
1015
1015
|
isSolvable: boolean;
|
1016
1016
|
isSolved: boolean;
|
1017
|
-
solvedAt: null;
|
1017
|
+
solvedAt: string | null;
|
1018
1018
|
solvedBy?: string;
|
1019
1019
|
created_at: string;
|
1020
1020
|
updated_at: string;
|
@@ -1030,7 +1030,7 @@ export interface components {
|
|
1030
1030
|
profileId: string;
|
1031
1031
|
isSolvable: boolean;
|
1032
1032
|
isSolved: boolean;
|
1033
|
-
solvedAt: null;
|
1033
|
+
solvedAt: string | null;
|
1034
1034
|
solvedBy?: string;
|
1035
1035
|
created_at: string;
|
1036
1036
|
updated_at: string;
|
@@ -1078,8 +1078,8 @@ export interface components {
|
|
1078
1078
|
isoCode: string;
|
1079
1079
|
countryCode: string;
|
1080
1080
|
countryName: string;
|
1081
|
-
latitude?: null;
|
1082
|
-
longitude?: null;
|
1081
|
+
latitude?: string | null;
|
1082
|
+
longitude?: string | null;
|
1083
1083
|
}[];
|
1084
1084
|
};
|
1085
1085
|
CreateCannedResponseDto: {
|
@@ -1143,10 +1143,10 @@ export interface components {
|
|
1143
1143
|
name: string;
|
1144
1144
|
date: string;
|
1145
1145
|
location: string;
|
1146
|
-
folderId: null;
|
1146
|
+
folderId: string | null;
|
1147
1147
|
tagAssistedId: string;
|
1148
1148
|
tagConfirmedId: string;
|
1149
|
-
supraEventId: null;
|
1149
|
+
supraEventId: string | null;
|
1150
1150
|
created_at: string;
|
1151
1151
|
updated_at: string;
|
1152
1152
|
}[];
|
@@ -1163,10 +1163,10 @@ export interface components {
|
|
1163
1163
|
name: string;
|
1164
1164
|
date: string;
|
1165
1165
|
location: string;
|
1166
|
-
folderId: null;
|
1166
|
+
folderId: string | null;
|
1167
1167
|
tagAssistedId: string;
|
1168
1168
|
tagConfirmedId: string;
|
1169
|
-
supraEventId: null;
|
1169
|
+
supraEventId: string | null;
|
1170
1170
|
created_at: string;
|
1171
1171
|
updated_at: string;
|
1172
1172
|
}[];
|
@@ -1194,20 +1194,20 @@ export interface components {
|
|
1194
1194
|
id: string;
|
1195
1195
|
shortId: number;
|
1196
1196
|
phoneNumber: string;
|
1197
|
-
secondaryPhoneNumber: null;
|
1197
|
+
secondaryPhoneNumber: string | null;
|
1198
1198
|
fullName: string;
|
1199
|
-
firstName: null;
|
1200
|
-
gender: null;
|
1201
|
-
birthDate: null;
|
1202
|
-
profilePictureUrl: null;
|
1203
|
-
instagram: null;
|
1204
|
-
mail: null;
|
1205
|
-
dni: null;
|
1199
|
+
firstName: string | null;
|
1200
|
+
gender: string | null;
|
1201
|
+
birthDate: string | null;
|
1202
|
+
profilePictureUrl: string | null;
|
1203
|
+
instagram: string | null;
|
1204
|
+
mail: string | null;
|
1205
|
+
dni: string | null;
|
1206
1206
|
alternativeNames: string[];
|
1207
|
-
birthLocationId: null;
|
1208
|
-
residenceLocationId: null;
|
1207
|
+
birthLocationId: string | null;
|
1208
|
+
residenceLocationId: string | null;
|
1209
1209
|
isInTrash: boolean;
|
1210
|
-
movedToTrashDate: null;
|
1210
|
+
movedToTrashDate: string | null;
|
1211
1211
|
created_at: string;
|
1212
1212
|
updated_at: string;
|
1213
1213
|
tags: {
|
@@ -1229,20 +1229,20 @@ export interface components {
|
|
1229
1229
|
id: string;
|
1230
1230
|
shortId: number;
|
1231
1231
|
phoneNumber: string;
|
1232
|
-
secondaryPhoneNumber: null;
|
1232
|
+
secondaryPhoneNumber: string | null;
|
1233
1233
|
fullName: string;
|
1234
|
-
firstName: null;
|
1235
|
-
gender: null;
|
1236
|
-
birthDate: null;
|
1237
|
-
profilePictureUrl: null;
|
1238
|
-
instagram: null;
|
1239
|
-
mail: null;
|
1240
|
-
dni: null;
|
1234
|
+
firstName: string | null;
|
1235
|
+
gender: string | null;
|
1236
|
+
birthDate: string | null;
|
1237
|
+
profilePictureUrl: string | null;
|
1238
|
+
instagram: string | null;
|
1239
|
+
mail: string | null;
|
1240
|
+
dni: string | null;
|
1241
1241
|
alternativeNames: string[];
|
1242
|
-
birthLocationId: null;
|
1243
|
-
residenceLocationId: null;
|
1242
|
+
birthLocationId: string | null;
|
1243
|
+
residenceLocationId: string | null;
|
1244
1244
|
isInTrash: boolean;
|
1245
|
-
movedToTrashDate: null;
|
1245
|
+
movedToTrashDate: string | null;
|
1246
1246
|
created_at: string;
|
1247
1247
|
updated_at: string;
|
1248
1248
|
tags: {
|
@@ -1282,20 +1282,20 @@ export interface components {
|
|
1282
1282
|
id: string;
|
1283
1283
|
shortId: number;
|
1284
1284
|
phoneNumber: string;
|
1285
|
-
secondaryPhoneNumber: null;
|
1285
|
+
secondaryPhoneNumber: string | null;
|
1286
1286
|
fullName: string;
|
1287
|
-
firstName: null;
|
1288
|
-
gender: null;
|
1289
|
-
birthDate: null;
|
1290
|
-
profilePictureUrl: null;
|
1291
|
-
instagram: null;
|
1292
|
-
mail: null;
|
1293
|
-
dni: null;
|
1287
|
+
firstName: string | null;
|
1288
|
+
gender: string | null;
|
1289
|
+
birthDate: string | null;
|
1290
|
+
profilePictureUrl: string | null;
|
1291
|
+
instagram: string | null;
|
1292
|
+
mail: string | null;
|
1293
|
+
dni: string | null;
|
1294
1294
|
alternativeNames: string[];
|
1295
|
-
birthLocationId: null;
|
1296
|
-
residenceLocationId: null;
|
1295
|
+
birthLocationId: string | null;
|
1296
|
+
residenceLocationId: string | null;
|
1297
1297
|
isInTrash: boolean;
|
1298
|
-
movedToTrashDate: null;
|
1298
|
+
movedToTrashDate: string | null;
|
1299
1299
|
created_at: string;
|
1300
1300
|
updated_at: string;
|
1301
1301
|
tags: {
|
@@ -1316,20 +1316,20 @@ export interface components {
|
|
1316
1316
|
id: string;
|
1317
1317
|
shortId: number;
|
1318
1318
|
phoneNumber: string;
|
1319
|
-
secondaryPhoneNumber: null;
|
1319
|
+
secondaryPhoneNumber: string | null;
|
1320
1320
|
fullName: string;
|
1321
|
-
firstName: null;
|
1322
|
-
gender: null;
|
1323
|
-
birthDate: null;
|
1324
|
-
profilePictureUrl: null;
|
1325
|
-
instagram: null;
|
1326
|
-
mail: null;
|
1327
|
-
dni: null;
|
1321
|
+
firstName: string | null;
|
1322
|
+
gender: string | null;
|
1323
|
+
birthDate: string | null;
|
1324
|
+
profilePictureUrl: string | null;
|
1325
|
+
instagram: string | null;
|
1326
|
+
mail: string | null;
|
1327
|
+
dni: string | null;
|
1328
1328
|
alternativeNames: string[];
|
1329
|
-
birthLocationId: null;
|
1330
|
-
residenceLocationId: null;
|
1329
|
+
birthLocationId: string | null;
|
1330
|
+
residenceLocationId: string | null;
|
1331
1331
|
isInTrash: boolean;
|
1332
|
-
movedToTrashDate: null;
|
1332
|
+
movedToTrashDate: string | null;
|
1333
1333
|
created_at: string;
|
1334
1334
|
updated_at: string;
|
1335
1335
|
tags: {
|
@@ -1347,20 +1347,20 @@ export interface components {
|
|
1347
1347
|
id: string;
|
1348
1348
|
shortId: number;
|
1349
1349
|
phoneNumber: string;
|
1350
|
-
secondaryPhoneNumber: null;
|
1350
|
+
secondaryPhoneNumber: string | null;
|
1351
1351
|
fullName: string;
|
1352
|
-
firstName: null;
|
1353
|
-
gender: null;
|
1354
|
-
birthDate: null;
|
1355
|
-
profilePictureUrl: null;
|
1356
|
-
instagram: null;
|
1357
|
-
mail: null;
|
1358
|
-
dni: null;
|
1352
|
+
firstName: string | null;
|
1353
|
+
gender: string | null;
|
1354
|
+
birthDate: string | null;
|
1355
|
+
profilePictureUrl: string | null;
|
1356
|
+
instagram: string | null;
|
1357
|
+
mail: string | null;
|
1358
|
+
dni: string | null;
|
1359
1359
|
alternativeNames: string[];
|
1360
|
-
birthLocationId: null;
|
1361
|
-
residenceLocationId: null;
|
1360
|
+
birthLocationId: string | null;
|
1361
|
+
residenceLocationId: string | null;
|
1362
1362
|
isInTrash: boolean;
|
1363
|
-
movedToTrashDate: null;
|
1363
|
+
movedToTrashDate: string | null;
|
1364
1364
|
created_at: string;
|
1365
1365
|
updated_at: string;
|
1366
1366
|
tags: {
|
@@ -1380,20 +1380,20 @@ export interface components {
|
|
1380
1380
|
id: string;
|
1381
1381
|
shortId: number;
|
1382
1382
|
phoneNumber: string;
|
1383
|
-
secondaryPhoneNumber: null;
|
1383
|
+
secondaryPhoneNumber: string | null;
|
1384
1384
|
fullName: string;
|
1385
|
-
firstName: null;
|
1386
|
-
gender: null;
|
1387
|
-
birthDate: null;
|
1388
|
-
profilePictureUrl: null;
|
1389
|
-
instagram: null;
|
1390
|
-
mail: null;
|
1391
|
-
dni: null;
|
1385
|
+
firstName: string | null;
|
1386
|
+
gender: string | null;
|
1387
|
+
birthDate: string | null;
|
1388
|
+
profilePictureUrl: string | null;
|
1389
|
+
instagram: string | null;
|
1390
|
+
mail: string | null;
|
1391
|
+
dni: string | null;
|
1392
1392
|
alternativeNames: string[];
|
1393
|
-
birthLocationId: null;
|
1394
|
-
residenceLocationId: null;
|
1393
|
+
birthLocationId: string | null;
|
1394
|
+
residenceLocationId: string | null;
|
1395
1395
|
isInTrash: boolean;
|
1396
|
-
movedToTrashDate: null;
|
1396
|
+
movedToTrashDate: string | null;
|
1397
1397
|
created_at: string;
|
1398
1398
|
updated_at: string;
|
1399
1399
|
};
|
@@ -1401,25 +1401,25 @@ export interface components {
|
|
1401
1401
|
profiles: {
|
1402
1402
|
id: string;
|
1403
1403
|
fullName: string;
|
1404
|
-
profilePictureUrl: null;
|
1404
|
+
profilePictureUrl: string | null;
|
1405
1405
|
created_at: string;
|
1406
1406
|
isInTrash: boolean;
|
1407
1407
|
phoneNumber: string;
|
1408
|
-
movedToTrashDate: null;
|
1408
|
+
movedToTrashDate: string | null;
|
1409
1409
|
}[];
|
1410
1410
|
};
|
1411
1411
|
CreateProfileDto: {
|
1412
1412
|
profile: {
|
1413
1413
|
alternativeNames: string[];
|
1414
|
-
birthDate: null;
|
1415
|
-
dni: null;
|
1414
|
+
birthDate: string | null;
|
1415
|
+
dni: string | null;
|
1416
1416
|
fullName: string;
|
1417
|
-
gender: null;
|
1418
|
-
instagram: null;
|
1419
|
-
mail: null;
|
1417
|
+
gender: string | null;
|
1418
|
+
instagram: string | null;
|
1419
|
+
mail: string | null;
|
1420
1420
|
phoneNumber: string;
|
1421
|
-
profilePictureUrl: null;
|
1422
|
-
secondaryPhoneNumber: null;
|
1421
|
+
profilePictureUrl: string | null;
|
1422
|
+
secondaryPhoneNumber: string | null;
|
1423
1423
|
comments?: {
|
1424
1424
|
content: string;
|
1425
1425
|
isSolvable: boolean;
|
@@ -1463,24 +1463,42 @@ export interface components {
|
|
1463
1463
|
id: string;
|
1464
1464
|
shortId: number;
|
1465
1465
|
phoneNumber: string;
|
1466
|
-
secondaryPhoneNumber: null;
|
1466
|
+
secondaryPhoneNumber: string | null;
|
1467
1467
|
fullName: string;
|
1468
|
-
firstName: null;
|
1469
|
-
gender: null;
|
1470
|
-
birthDate: null;
|
1471
|
-
profilePictureUrl: null;
|
1472
|
-
instagram: null;
|
1473
|
-
mail: null;
|
1474
|
-
dni: null;
|
1468
|
+
firstName: string | null;
|
1469
|
+
gender: string | null;
|
1470
|
+
birthDate: string | null;
|
1471
|
+
profilePictureUrl: string | null;
|
1472
|
+
instagram: string | null;
|
1473
|
+
mail: string | null;
|
1474
|
+
dni: string | null;
|
1475
1475
|
alternativeNames: string[];
|
1476
|
-
birthLocationId: null;
|
1477
|
-
residenceLocationId: null;
|
1476
|
+
birthLocationId: string | null;
|
1477
|
+
residenceLocationId: string | null;
|
1478
1478
|
isInTrash: boolean;
|
1479
|
-
movedToTrashDate: null;
|
1479
|
+
movedToTrashDate: string | null;
|
1480
1480
|
created_at: string;
|
1481
1481
|
updated_at: string;
|
1482
|
-
residenceLocation:
|
1483
|
-
|
1482
|
+
residenceLocation: {
|
1483
|
+
id: string;
|
1484
|
+
latitude: number;
|
1485
|
+
longitude: number;
|
1486
|
+
country: string;
|
1487
|
+
state: string;
|
1488
|
+
city: string;
|
1489
|
+
created_at: string;
|
1490
|
+
updated_at: string;
|
1491
|
+
} | null;
|
1492
|
+
birthLocation: {
|
1493
|
+
id: string;
|
1494
|
+
latitude: number;
|
1495
|
+
longitude: number;
|
1496
|
+
country: string;
|
1497
|
+
state: string;
|
1498
|
+
city: string;
|
1499
|
+
created_at: string;
|
1500
|
+
updated_at: string;
|
1501
|
+
} | null;
|
1484
1502
|
tags: {
|
1485
1503
|
id: string;
|
1486
1504
|
name: string;
|
@@ -1499,36 +1517,36 @@ export interface components {
|
|
1499
1517
|
id: string;
|
1500
1518
|
shortId: number;
|
1501
1519
|
phoneNumber: string;
|
1502
|
-
secondaryPhoneNumber: null;
|
1520
|
+
secondaryPhoneNumber: string | null;
|
1503
1521
|
fullName: string;
|
1504
|
-
firstName: null;
|
1505
|
-
gender: null;
|
1506
|
-
birthDate: null;
|
1507
|
-
profilePictureUrl: null;
|
1508
|
-
instagram: null;
|
1509
|
-
mail: null;
|
1510
|
-
dni: null;
|
1522
|
+
firstName: string | null;
|
1523
|
+
gender: string | null;
|
1524
|
+
birthDate: string | null;
|
1525
|
+
profilePictureUrl: string | null;
|
1526
|
+
instagram: string | null;
|
1527
|
+
mail: string | null;
|
1528
|
+
dni: string | null;
|
1511
1529
|
alternativeNames: string[];
|
1512
|
-
birthLocationId: null;
|
1513
|
-
residenceLocationId: null;
|
1530
|
+
birthLocationId: string | null;
|
1531
|
+
residenceLocationId: string | null;
|
1514
1532
|
isInTrash: boolean;
|
1515
|
-
movedToTrashDate: null;
|
1533
|
+
movedToTrashDate: string | null;
|
1516
1534
|
created_at: string;
|
1517
1535
|
updated_at: string;
|
1518
1536
|
};
|
1519
1537
|
UpdateProfileDto: {
|
1520
1538
|
alternativeNames?: string[];
|
1521
|
-
birthDate?: null;
|
1522
|
-
dni?: null;
|
1539
|
+
birthDate?: string | null;
|
1540
|
+
dni?: string | null;
|
1523
1541
|
fullName?: string;
|
1524
|
-
gender?: null;
|
1525
|
-
instagram?: null;
|
1526
|
-
mail?: null;
|
1542
|
+
gender?: string | null;
|
1543
|
+
instagram?: string | null;
|
1544
|
+
mail?: string | null;
|
1527
1545
|
phoneNumber?: string;
|
1528
|
-
profilePictureUrl?: null;
|
1529
|
-
secondaryPhoneNumber?: null;
|
1546
|
+
profilePictureUrl?: string | null;
|
1547
|
+
secondaryPhoneNumber?: string | null;
|
1530
1548
|
isInTrash?: boolean;
|
1531
|
-
movedToTrashDate?: null;
|
1549
|
+
movedToTrashDate?: string | null;
|
1532
1550
|
residence?: {
|
1533
1551
|
city: string;
|
1534
1552
|
country: string;
|