@secrecy/lib 1.0.0-dev.30 → 1.0.0-dev.33
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/README.md +1 -1
- package/dist/BaseClient.d.ts +4 -0
- package/dist/BaseClient.js +113 -15
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +53 -15
- package/dist/client/types/UserAppSettings.d.ts +0 -1
- package/dist/zeus/const.js +25 -5
- package/dist/zeus/index.d.ts +466 -548
- package/dist/zeus/index.js +44 -44
- package/package.json +11 -11
package/dist/zeus/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare type ZEUS_INTERFACES = GraphQLTypes["ErrorBase"] | GraphQLTypes["FileContentBase"];
|
|
2
|
-
declare type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedFoldersResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedVFilesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FolderResult"] | GraphQLTypes["FolderSizeResult"] | GraphQLTypes["FoldersSharedWithMeResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedFoldersResult"] | GraphQLTypes["SharedVFilesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["VFileResult"] | GraphQLTypes["VFilesSharedWithMeResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["CreateDraftMailResult"] | GraphQLTypes["CreateFolderResult"] | GraphQLTypes["DbConfigMutationResult"] | GraphQLTypes["DbSetResult"] | GraphQLTypes["DeleteDraftMailResult"] | GraphQLTypes["DeleteFileResult"] | GraphQLTypes["DeleteFolderResult"] | GraphQLTypes["DeleteFolderCloudTrashResult"] | GraphQLTypes["DeleteFolderSharingResult"] | GraphQLTypes["DeleteMailResult"] | GraphQLTypes["DeleteMailTrashResult"] | GraphQLTypes["DeleteUserResult"] | GraphQLTypes["DeleteVFileResult"] | GraphQLTypes["DeleteVFileCloudTrashResult"] | GraphQLTypes["DeleteVFileSharingResult"] | GraphQLTypes["DuplicateVFileResult"] | GraphQLTypes["EmptyCloudTrashResult"] | GraphQLTypes["EmptyMailTrashResult"] | GraphQLTypes["LogoutResult"] | GraphQLTypes["MoveFilesResult"] | GraphQLTypes["MoveFoldersResult"] | GraphQLTypes["PayResult"] | GraphQLTypes["ReadMailResult"] | GraphQLTypes["RecoverFolderResult"] | GraphQLTypes["RecoverMailResult"] | GraphQLTypes["RecoverVFileResult"] | GraphQLTypes["SaveInCloudResult"] | GraphQLTypes["SendDraftMailResult"] | GraphQLTypes["SendOneMailResult"] | GraphQLTypes["SendReportResult"] | GraphQLTypes["ShareFileInHistoryResult"] | GraphQLTypes["ShareFolderResult"] | GraphQLTypes["ShareFolderFinishResult"] | GraphQLTypes["ShareVFileResult"] | GraphQLTypes["UnreadMailResult"] | GraphQLTypes["UpdateAppNotificationsResult"] | GraphQLTypes["UpdateAppSettingsResult"] | GraphQLTypes["UpdateDraftMailResult"] | GraphQLTypes["UpdateFileResult"] | GraphQLTypes["UpdateFolderResult"] | GraphQLTypes["UpdateProfileResult"] | GraphQLTypes["UploadFileResult"] | GraphQLTypes["UploadFileEndResult"] | GraphQLTypes["UploadFilePartEndResult"] | GraphQLTypes["ChangeUserPlanResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
|
|
2
|
+
declare type ZEUS_UNIONS = GraphQLTypes["AppNotificationsResult"] | GraphQLTypes["BlogResult"] | GraphQLTypes["DbConfigResult"] | GraphQLTypes["DbGetResult"] | GraphQLTypes["DbSearchResult"] | GraphQLTypes["DeletedFoldersResult"] | GraphQLTypes["DeletedMailsResult"] | GraphQLTypes["DeletedVFilesResult"] | GraphQLTypes["FaqResult"] | GraphQLTypes["FileResult"] | GraphQLTypes["FileContentResult"] | GraphQLTypes["FolderResult"] | GraphQLTypes["FolderSizeResult"] | GraphQLTypes["FoldersSharedWithMeResult"] | GraphQLTypes["LimitsResult"] | GraphQLTypes["MailResult"] | GraphQLTypes["PaymentInfosResult"] | GraphQLTypes["PlansResult"] | GraphQLTypes["SharedFoldersResult"] | GraphQLTypes["SharedVFilesResult"] | GraphQLTypes["UnreadReceivedMailsCountResult"] | GraphQLTypes["UserResult"] | GraphQLTypes["VFileResult"] | GraphQLTypes["VFilesSharedWithMeResult"] | GraphQLTypes["UserListResult"] | GraphQLTypes["AddFileToHistoryResult"] | GraphQLTypes["CancelPaymentResult"] | GraphQLTypes["CreateApplicationResult"] | GraphQLTypes["CreateDraftMailResult"] | GraphQLTypes["CreateFolderResult"] | GraphQLTypes["DbConfigMutationResult"] | GraphQLTypes["DbSetResult"] | GraphQLTypes["DeleteDraftMailResult"] | GraphQLTypes["DeleteFileResult"] | GraphQLTypes["DeleteFolderResult"] | GraphQLTypes["DeleteFolderCloudTrashResult"] | GraphQLTypes["DeleteFolderSharingResult"] | GraphQLTypes["DeleteMailResult"] | GraphQLTypes["DeleteMailTrashResult"] | GraphQLTypes["DeleteUserResult"] | GraphQLTypes["DeleteVFileResult"] | GraphQLTypes["DeleteVFileCloudTrashResult"] | GraphQLTypes["DeleteVFileSharingResult"] | GraphQLTypes["DuplicateVFileResult"] | GraphQLTypes["EmptyCloudTrashResult"] | GraphQLTypes["EmptyMailTrashResult"] | GraphQLTypes["LogoutResult"] | GraphQLTypes["MoveFilesResult"] | GraphQLTypes["MoveFoldersResult"] | GraphQLTypes["PayResult"] | GraphQLTypes["ReadMailResult"] | GraphQLTypes["RecoverFolderResult"] | GraphQLTypes["RecoverMailResult"] | GraphQLTypes["RecoverVFileResult"] | GraphQLTypes["SaveInCloudResult"] | GraphQLTypes["SendDraftMailResult"] | GraphQLTypes["SendOneMailResult"] | GraphQLTypes["SendReportResult"] | GraphQLTypes["ShareFileInHistoryResult"] | GraphQLTypes["ShareFolderResult"] | GraphQLTypes["ShareFolderFinishResult"] | GraphQLTypes["ShareVFileResult"] | GraphQLTypes["UnreadMailResult"] | GraphQLTypes["UpdateAppNotificationsResult"] | GraphQLTypes["UpdateAppSettingsResult"] | GraphQLTypes["UpdateAutoDisconnectDelayResult"] | GraphQLTypes["UpdateDraftMailResult"] | GraphQLTypes["UpdateFileResult"] | GraphQLTypes["UpdateFolderResult"] | GraphQLTypes["UpdateProfileResult"] | GraphQLTypes["UploadFileResult"] | GraphQLTypes["UploadFileEndResult"] | GraphQLTypes["UploadFilePartEndResult"] | GraphQLTypes["ChangeUserPlanResult"] | GraphQLTypes["Error"] | GraphQLTypes["FileContent"];
|
|
3
3
|
export declare type ValueTypes = {
|
|
4
4
|
["BigInt"]: unknown;
|
|
5
5
|
["Bytes"]: unknown;
|
|
@@ -311,6 +311,8 @@ export declare type ValueTypes = {
|
|
|
311
311
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
312
312
|
["...on ErrorNotExist"]: ValueTypes["ErrorNotExist"];
|
|
313
313
|
["...on ErrorBasic"]: ValueTypes["ErrorBasic"];
|
|
314
|
+
["...on ErrorNotFound"]: ValueTypes["ErrorNotFound"];
|
|
315
|
+
["...on ErrorLimit"]: ValueTypes["ErrorLimit"];
|
|
314
316
|
__typename?: boolean;
|
|
315
317
|
}>;
|
|
316
318
|
["SendDraftMailResult"]: AliasType<{
|
|
@@ -374,6 +376,13 @@ export declare type ValueTypes = {
|
|
|
374
376
|
["...on ErrorBasic"]: ValueTypes["ErrorBasic"];
|
|
375
377
|
__typename?: boolean;
|
|
376
378
|
}>;
|
|
379
|
+
["UpdateAutoDisconnectDelayResult"]: AliasType<{
|
|
380
|
+
["...on UpdateAutoDisconnectDelayResponse"]: ValueTypes["UpdateAutoDisconnectDelayResponse"];
|
|
381
|
+
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
382
|
+
["...on ErrorNotFound"]: ValueTypes["ErrorNotFound"];
|
|
383
|
+
["...on ErrorBasic"]: ValueTypes["ErrorBasic"];
|
|
384
|
+
__typename?: boolean;
|
|
385
|
+
}>;
|
|
377
386
|
["UpdateDraftMailResult"]: AliasType<{
|
|
378
387
|
["...on UpdateDraftMailResponse"]: ValueTypes["UpdateDraftMailResponse"];
|
|
379
388
|
["...on ErrorAccessDenied"]: ValueTypes["ErrorAccessDenied"];
|
|
@@ -506,13 +515,13 @@ export declare type ValueTypes = {
|
|
|
506
515
|
}>;
|
|
507
516
|
["ErrorBase"]: AliasType<{
|
|
508
517
|
message?: boolean;
|
|
509
|
-
[
|
|
510
|
-
[
|
|
511
|
-
[
|
|
512
|
-
[
|
|
513
|
-
[
|
|
514
|
-
[
|
|
515
|
-
[
|
|
518
|
+
['...on ErrorAccessDenied']?: Omit<ValueTypes["ErrorAccessDenied"], keyof ValueTypes["ErrorBase"]>;
|
|
519
|
+
['...on ErrorBasic']?: Omit<ValueTypes["ErrorBasic"], keyof ValueTypes["ErrorBase"]>;
|
|
520
|
+
['...on ErrorLangNotExist']?: Omit<ValueTypes["ErrorLangNotExist"], keyof ValueTypes["ErrorBase"]>;
|
|
521
|
+
['...on ErrorLimit']?: Omit<ValueTypes["ErrorLimit"], keyof ValueTypes["ErrorBase"]>;
|
|
522
|
+
['...on ErrorNotExist']?: Omit<ValueTypes["ErrorNotExist"], keyof ValueTypes["ErrorBase"]>;
|
|
523
|
+
['...on ErrorNotFound']?: Omit<ValueTypes["ErrorNotFound"], keyof ValueTypes["ErrorBase"]>;
|
|
524
|
+
['...on ErrorUpgradePlan']?: Omit<ValueTypes["ErrorUpgradePlan"], keyof ValueTypes["ErrorBase"]>;
|
|
516
525
|
__typename?: boolean;
|
|
517
526
|
}>;
|
|
518
527
|
["ErrorBasic"]: AliasType<{
|
|
@@ -592,9 +601,9 @@ export declare type ValueTypes = {
|
|
|
592
601
|
md5Encrypted?: boolean;
|
|
593
602
|
totalSize?: boolean;
|
|
594
603
|
type?: boolean;
|
|
595
|
-
[
|
|
596
|
-
[
|
|
597
|
-
[
|
|
604
|
+
['...on FileContentCloud']?: Omit<ValueTypes["FileContentCloud"], keyof ValueTypes["FileContentBase"]>;
|
|
605
|
+
['...on FileContentReceivedMail']?: Omit<ValueTypes["FileContentReceivedMail"], keyof ValueTypes["FileContentBase"]>;
|
|
606
|
+
['...on FileContentSentMail']?: Omit<ValueTypes["FileContentSentMail"], keyof ValueTypes["FileContentBase"]>;
|
|
598
607
|
__typename?: boolean;
|
|
599
608
|
}>;
|
|
600
609
|
["FileContentCloud"]: AliasType<{
|
|
@@ -1030,6 +1039,10 @@ export declare type ValueTypes = {
|
|
|
1030
1039
|
updateAppSettings?: ValueTypes["UserAppSettings"];
|
|
1031
1040
|
__typename?: boolean;
|
|
1032
1041
|
}>;
|
|
1042
|
+
["UpdateAutoDisconnectDelayResponse"]: AliasType<{
|
|
1043
|
+
updateAutoDisconnectDelay?: boolean;
|
|
1044
|
+
__typename?: boolean;
|
|
1045
|
+
}>;
|
|
1033
1046
|
["UpdateDraftMailResponse"]: AliasType<{
|
|
1034
1047
|
updateDraftMail?: ValueTypes["Mail"];
|
|
1035
1048
|
__typename?: boolean;
|
|
@@ -1200,7 +1213,6 @@ export declare type ValueTypes = {
|
|
|
1200
1213
|
cloudFolderDaysForDelete?: boolean;
|
|
1201
1214
|
historyFileDaysForDelete?: boolean;
|
|
1202
1215
|
historyMaxFileCount?: boolean;
|
|
1203
|
-
autoDisconnectDelay?: boolean;
|
|
1204
1216
|
__typename?: boolean;
|
|
1205
1217
|
}>;
|
|
1206
1218
|
["UserSession"]: AliasType<{
|
|
@@ -1293,27 +1305,18 @@ export declare type ValueTypes = {
|
|
|
1293
1305
|
dbConfig?: [{
|
|
1294
1306
|
appCode: string;
|
|
1295
1307
|
}, ValueTypes["DbConfigResult"]];
|
|
1296
|
-
dbGet?: [
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
{
|
|
1305
|
-
search: string;
|
|
1306
|
-
field: string;
|
|
1307
|
-
},
|
|
1308
|
-
ValueTypes["DbSearchResult"]
|
|
1309
|
-
];
|
|
1308
|
+
dbGet?: [{
|
|
1309
|
+
field: string;
|
|
1310
|
+
userId?: string | null;
|
|
1311
|
+
}, ValueTypes["DbGetResult"]];
|
|
1312
|
+
dbSearch?: [{
|
|
1313
|
+
search: string;
|
|
1314
|
+
field: string;
|
|
1315
|
+
}, ValueTypes["DbSearchResult"]];
|
|
1310
1316
|
deletedFolders?: ValueTypes["DeletedFoldersResult"];
|
|
1311
|
-
deletedMails?: [
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
},
|
|
1315
|
-
ValueTypes["DeletedMailsResult"]
|
|
1316
|
-
];
|
|
1317
|
+
deletedMails?: [{
|
|
1318
|
+
mailType: ValueTypes["MailType"];
|
|
1319
|
+
}, ValueTypes["DeletedMailsResult"]];
|
|
1317
1320
|
deletedVFiles?: ValueTypes["DeletedVFilesResult"];
|
|
1318
1321
|
faq?: [{
|
|
1319
1322
|
lang?: ValueTypes["Lang"] | null;
|
|
@@ -1324,19 +1327,13 @@ export declare type ValueTypes = {
|
|
|
1324
1327
|
fileContent?: [{
|
|
1325
1328
|
fileId: string;
|
|
1326
1329
|
}, ValueTypes["FileContentResult"]];
|
|
1327
|
-
filesSharedWithMe?: [
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
{
|
|
1335
|
-
id?: string | null;
|
|
1336
|
-
deleted?: boolean | null;
|
|
1337
|
-
},
|
|
1338
|
-
ValueTypes["FolderResult"]
|
|
1339
|
-
];
|
|
1330
|
+
filesSharedWithMe?: [{
|
|
1331
|
+
accepted?: boolean | null;
|
|
1332
|
+
}, ValueTypes["FileSharedContent"]];
|
|
1333
|
+
folder?: [{
|
|
1334
|
+
id?: string | null;
|
|
1335
|
+
deleted?: boolean | null;
|
|
1336
|
+
}, ValueTypes["FolderResult"]];
|
|
1340
1337
|
folderSize?: [{
|
|
1341
1338
|
folderId?: string | null;
|
|
1342
1339
|
}, ValueTypes["FolderSizeResult"]];
|
|
@@ -1364,85 +1361,56 @@ export declare type ValueTypes = {
|
|
|
1364
1361
|
__typename?: boolean;
|
|
1365
1362
|
}>;
|
|
1366
1363
|
["Mutation"]: AliasType<{
|
|
1367
|
-
addFileToHistory?: [
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
},
|
|
1372
|
-
ValueTypes["AddFileToHistoryResult"]
|
|
1373
|
-
];
|
|
1364
|
+
addFileToHistory?: [{
|
|
1365
|
+
vFileId: string;
|
|
1366
|
+
fileId: string;
|
|
1367
|
+
}, ValueTypes["AddFileToHistoryResult"]];
|
|
1374
1368
|
cancelPayment?: ValueTypes["CancelPaymentResult"];
|
|
1375
|
-
createApplication?: [
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
];
|
|
1410
|
-
dbSet?: [
|
|
1411
|
-
{
|
|
1412
|
-
value: string;
|
|
1413
|
-
userId?: string | null;
|
|
1414
|
-
},
|
|
1415
|
-
ValueTypes["DbSetResult"]
|
|
1416
|
-
];
|
|
1417
|
-
deleteDraftMail?: [
|
|
1418
|
-
{
|
|
1419
|
-
draftId: string;
|
|
1420
|
-
},
|
|
1421
|
-
ValueTypes["DeleteDraftMailResult"]
|
|
1422
|
-
];
|
|
1423
|
-
deleteFile?: [
|
|
1424
|
-
{
|
|
1425
|
-
fileId: string;
|
|
1426
|
-
vFileId: string;
|
|
1427
|
-
},
|
|
1428
|
-
ValueTypes["DeleteFileResult"]
|
|
1429
|
-
];
|
|
1369
|
+
createApplication?: [{
|
|
1370
|
+
name: string;
|
|
1371
|
+
origin: string;
|
|
1372
|
+
developerId: string;
|
|
1373
|
+
}, ValueTypes["CreateApplicationResult"]];
|
|
1374
|
+
createDraftMail?: [{
|
|
1375
|
+
hash: string;
|
|
1376
|
+
hashKey: string;
|
|
1377
|
+
body: string;
|
|
1378
|
+
subject: string;
|
|
1379
|
+
replyTo?: string | null;
|
|
1380
|
+
senderFiles: ValueTypes["MailFileInput"][];
|
|
1381
|
+
recipients: string[];
|
|
1382
|
+
}, ValueTypes["CreateDraftMailResult"]];
|
|
1383
|
+
createFolder?: [{
|
|
1384
|
+
name: string;
|
|
1385
|
+
key: string;
|
|
1386
|
+
parentFolderId?: string | null;
|
|
1387
|
+
}, ValueTypes["CreateFolderResult"]];
|
|
1388
|
+
dbConfigMutation?: [{
|
|
1389
|
+
appCode: string;
|
|
1390
|
+
config: string;
|
|
1391
|
+
}, ValueTypes["DbConfigMutationResult"]];
|
|
1392
|
+
dbSet?: [{
|
|
1393
|
+
value: string;
|
|
1394
|
+
userId?: string | null;
|
|
1395
|
+
}, ValueTypes["DbSetResult"]];
|
|
1396
|
+
deleteAllData?: boolean;
|
|
1397
|
+
deleteDraftMail?: [{
|
|
1398
|
+
draftId: string;
|
|
1399
|
+
}, ValueTypes["DeleteDraftMailResult"]];
|
|
1400
|
+
deleteFile?: [{
|
|
1401
|
+
fileId: string;
|
|
1402
|
+
vFileId: string;
|
|
1403
|
+
}, ValueTypes["DeleteFileResult"]];
|
|
1430
1404
|
deleteFolder?: [{
|
|
1431
1405
|
id: string;
|
|
1432
1406
|
}, ValueTypes["DeleteFolderResult"]];
|
|
1433
|
-
deleteFolderCloudTrash?: [
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
{
|
|
1441
|
-
folderId: string;
|
|
1442
|
-
userId: string;
|
|
1443
|
-
},
|
|
1444
|
-
ValueTypes["DeleteFolderSharingResult"]
|
|
1445
|
-
];
|
|
1407
|
+
deleteFolderCloudTrash?: [{
|
|
1408
|
+
ids: string[];
|
|
1409
|
+
}, ValueTypes["DeleteFolderCloudTrashResult"]];
|
|
1410
|
+
deleteFolderSharing?: [{
|
|
1411
|
+
folderId: string;
|
|
1412
|
+
userId: string;
|
|
1413
|
+
}, ValueTypes["DeleteFolderSharingResult"]];
|
|
1446
1414
|
deleteMail?: [{
|
|
1447
1415
|
mailId: string;
|
|
1448
1416
|
}, ValueTypes["DeleteMailResult"]];
|
|
@@ -1455,54 +1423,36 @@ export declare type ValueTypes = {
|
|
|
1455
1423
|
deleteVFile?: [{
|
|
1456
1424
|
fileId: string;
|
|
1457
1425
|
}, ValueTypes["DeleteVFileResult"]];
|
|
1458
|
-
deleteVFileCloudTrash?: [
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
];
|
|
1471
|
-
duplicateVFile?: [
|
|
1472
|
-
{
|
|
1473
|
-
vFileId: string;
|
|
1474
|
-
folderId?: string | null;
|
|
1475
|
-
customName?: string | null;
|
|
1476
|
-
},
|
|
1477
|
-
ValueTypes["DuplicateVFileResult"]
|
|
1478
|
-
];
|
|
1426
|
+
deleteVFileCloudTrash?: [{
|
|
1427
|
+
ids: string[];
|
|
1428
|
+
}, ValueTypes["DeleteVFileCloudTrashResult"]];
|
|
1429
|
+
deleteVFileSharing?: [{
|
|
1430
|
+
vFileId: string;
|
|
1431
|
+
userId: string;
|
|
1432
|
+
}, ValueTypes["DeleteVFileSharingResult"]];
|
|
1433
|
+
duplicateVFile?: [{
|
|
1434
|
+
vFileId: string;
|
|
1435
|
+
folderId?: string | null;
|
|
1436
|
+
customName?: string | null;
|
|
1437
|
+
}, ValueTypes["DuplicateVFileResult"]];
|
|
1479
1438
|
emptyCloudTrash?: ValueTypes["EmptyCloudTrashResult"];
|
|
1480
1439
|
emptyMailTrash?: ValueTypes["EmptyMailTrashResult"];
|
|
1481
1440
|
logout?: [{
|
|
1482
1441
|
sessionId?: string | null;
|
|
1483
1442
|
}, ValueTypes["LogoutResult"]];
|
|
1484
|
-
moveFiles?: [
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
];
|
|
1498
|
-
pay?: [
|
|
1499
|
-
{
|
|
1500
|
-
planCode: string;
|
|
1501
|
-
input: ValueTypes["PayInput"];
|
|
1502
|
-
autoRenew?: boolean | null;
|
|
1503
|
-
},
|
|
1504
|
-
ValueTypes["PayResult"]
|
|
1505
|
-
];
|
|
1443
|
+
moveFiles?: [{
|
|
1444
|
+
filesId: string[];
|
|
1445
|
+
parentFolderId?: string | null;
|
|
1446
|
+
}, ValueTypes["MoveFilesResult"]];
|
|
1447
|
+
moveFolders?: [{
|
|
1448
|
+
foldersId: string[];
|
|
1449
|
+
parentFolderId?: string | null;
|
|
1450
|
+
}, ValueTypes["MoveFoldersResult"]];
|
|
1451
|
+
pay?: [{
|
|
1452
|
+
planCode: string;
|
|
1453
|
+
input: ValueTypes["PayInput"];
|
|
1454
|
+
autoRenew?: boolean | null;
|
|
1455
|
+
}, ValueTypes["PayResult"]];
|
|
1506
1456
|
readMail?: [{
|
|
1507
1457
|
mailId: string;
|
|
1508
1458
|
}, ValueTypes["ReadMailResult"]];
|
|
@@ -1515,171 +1465,120 @@ export declare type ValueTypes = {
|
|
|
1515
1465
|
recoverVFile?: [{
|
|
1516
1466
|
vFileId: string;
|
|
1517
1467
|
}, ValueTypes["RecoverVFileResult"]];
|
|
1518
|
-
saveInCloud?: [
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
ValueTypes["
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
{
|
|
1560
|
-
folderId: string;
|
|
1561
|
-
userId: string;
|
|
1562
|
-
},
|
|
1563
|
-
ValueTypes["ShareFolderResult"]
|
|
1564
|
-
];
|
|
1565
|
-
shareFolderFinish?: [
|
|
1566
|
-
{
|
|
1567
|
-
shareFolders: ValueTypes["ShareFoldersInput"];
|
|
1568
|
-
userId: string;
|
|
1569
|
-
rights: ValueTypes["Rights"];
|
|
1570
|
-
},
|
|
1571
|
-
ValueTypes["ShareFolderFinishResult"]
|
|
1572
|
-
];
|
|
1573
|
-
shareVFile?: [
|
|
1574
|
-
{
|
|
1575
|
-
vFileId: string;
|
|
1576
|
-
userId: string;
|
|
1577
|
-
nameKey: string;
|
|
1578
|
-
rights: ValueTypes["Rights"];
|
|
1579
|
-
history: ValueTypes["ShareFileKeyInput"][];
|
|
1580
|
-
},
|
|
1581
|
-
ValueTypes["ShareVFileResult"]
|
|
1582
|
-
];
|
|
1468
|
+
saveInCloud?: [{
|
|
1469
|
+
fileId: string;
|
|
1470
|
+
key: string;
|
|
1471
|
+
folderId?: string | null;
|
|
1472
|
+
filename: string;
|
|
1473
|
+
nameKey: string;
|
|
1474
|
+
}, ValueTypes["SaveInCloudResult"]];
|
|
1475
|
+
sendDraftMail?: [{
|
|
1476
|
+
draftMailId: string;
|
|
1477
|
+
temporaryRecipients: string[];
|
|
1478
|
+
recipients: ValueTypes["MailRecipientInput"][];
|
|
1479
|
+
customMessage?: string | null;
|
|
1480
|
+
}, ValueTypes["SendDraftMailResult"]];
|
|
1481
|
+
sendOneMail?: [{
|
|
1482
|
+
mailIntegrityId: string;
|
|
1483
|
+
recipient: ValueTypes["MailRecipientInput"];
|
|
1484
|
+
}, ValueTypes["SendOneMailResult"]];
|
|
1485
|
+
sendReport?: [{
|
|
1486
|
+
reportedUserId: string;
|
|
1487
|
+
customMessage?: string | null;
|
|
1488
|
+
}, ValueTypes["SendReportResult"]];
|
|
1489
|
+
shareFileInHistory?: [{
|
|
1490
|
+
input: ValueTypes["ShareFileInHistoryInput"];
|
|
1491
|
+
vFileId: string;
|
|
1492
|
+
}, ValueTypes["ShareFileInHistoryResult"]];
|
|
1493
|
+
shareFolder?: [{
|
|
1494
|
+
folderId: string;
|
|
1495
|
+
userId: string;
|
|
1496
|
+
}, ValueTypes["ShareFolderResult"]];
|
|
1497
|
+
shareFolderFinish?: [{
|
|
1498
|
+
shareFolders: ValueTypes["ShareFoldersInput"];
|
|
1499
|
+
userId: string;
|
|
1500
|
+
rights: ValueTypes["Rights"];
|
|
1501
|
+
}, ValueTypes["ShareFolderFinishResult"]];
|
|
1502
|
+
shareVFile?: [{
|
|
1503
|
+
vFileId: string;
|
|
1504
|
+
userId: string;
|
|
1505
|
+
nameKey: string;
|
|
1506
|
+
rights: ValueTypes["Rights"];
|
|
1507
|
+
history: ValueTypes["ShareFileKeyInput"][];
|
|
1508
|
+
}, ValueTypes["ShareVFileResult"]];
|
|
1583
1509
|
unreadMail?: [{
|
|
1584
1510
|
mailId: string;
|
|
1585
1511
|
}, ValueTypes["UnreadMailResult"]];
|
|
1586
|
-
updateAppNotifications?: [
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
ValueTypes["
|
|
1617
|
-
];
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
];
|
|
1644
|
-
uploadAnonymous?: [
|
|
1645
|
-
{
|
|
1646
|
-
fileName: string;
|
|
1647
|
-
fileSize: number;
|
|
1648
|
-
fileSizeBefore: number;
|
|
1649
|
-
message?: string | null;
|
|
1650
|
-
pubKey: string;
|
|
1651
|
-
token: string;
|
|
1652
|
-
},
|
|
1653
|
-
ValueTypes["FileResponse"]
|
|
1654
|
-
];
|
|
1655
|
-
uploadFile?: [
|
|
1656
|
-
{
|
|
1657
|
-
fileSize: ValueTypes["BigInt"];
|
|
1658
|
-
fileSizeBefore: ValueTypes["BigInt"];
|
|
1659
|
-
fileKey: string;
|
|
1660
|
-
md5: string;
|
|
1661
|
-
md5Encrypted: string;
|
|
1662
|
-
},
|
|
1663
|
-
ValueTypes["UploadFileResult"]
|
|
1664
|
-
];
|
|
1512
|
+
updateAppNotifications?: [{
|
|
1513
|
+
enableAll?: boolean | null;
|
|
1514
|
+
mail?: boolean | null;
|
|
1515
|
+
cloud?: boolean | null;
|
|
1516
|
+
disableAllUntil?: ValueTypes["DateTime"] | null;
|
|
1517
|
+
}, ValueTypes["UpdateAppNotificationsResult"]];
|
|
1518
|
+
updateAppSettings?: [{
|
|
1519
|
+
cloudFileDaysForDelete?: number | null;
|
|
1520
|
+
cloudFolderDaysForDelete?: number | null;
|
|
1521
|
+
historyFileDaysForDelete?: number | null;
|
|
1522
|
+
historyMaxFileCount?: number | null;
|
|
1523
|
+
}, ValueTypes["UpdateAppSettingsResult"]];
|
|
1524
|
+
updateAutoDisconnectDelay?: [{
|
|
1525
|
+
userId?: string | null;
|
|
1526
|
+
delay?: number | null;
|
|
1527
|
+
}, ValueTypes["UpdateAutoDisconnectDelayResult"]];
|
|
1528
|
+
updateDraftMail?: [{
|
|
1529
|
+
draftId: string;
|
|
1530
|
+
hash?: string | null;
|
|
1531
|
+
hashKey?: string | null;
|
|
1532
|
+
body?: string | null;
|
|
1533
|
+
subject?: string | null;
|
|
1534
|
+
replyTo?: string | null;
|
|
1535
|
+
senderFiles?: ValueTypes["MailFileInput"][];
|
|
1536
|
+
recipients?: string[];
|
|
1537
|
+
}, ValueTypes["UpdateDraftMailResult"]];
|
|
1538
|
+
updateFile?: [{
|
|
1539
|
+
fileId: string;
|
|
1540
|
+
isFavorite?: boolean | null;
|
|
1541
|
+
filename?: string | null;
|
|
1542
|
+
deletedAt?: ValueTypes["DateTime"] | null;
|
|
1543
|
+
}, ValueTypes["UpdateFileResult"]];
|
|
1544
|
+
updateFolder?: [{
|
|
1545
|
+
folderId: string;
|
|
1546
|
+
name?: string | null;
|
|
1547
|
+
isFavorite?: boolean | null;
|
|
1548
|
+
deletedAt?: ValueTypes["DateTime"] | null;
|
|
1549
|
+
}, ValueTypes["UpdateFolderResult"]];
|
|
1550
|
+
updateProfile?: [{
|
|
1551
|
+
firstname?: string | null;
|
|
1552
|
+
lastname?: string | null;
|
|
1553
|
+
lang?: ValueTypes["Lang"] | null;
|
|
1554
|
+
}, ValueTypes["UpdateProfileResult"]];
|
|
1555
|
+
uploadAnonymous?: [{
|
|
1556
|
+
fileName: string;
|
|
1557
|
+
fileSize: number;
|
|
1558
|
+
fileSizeBefore: number;
|
|
1559
|
+
message?: string | null;
|
|
1560
|
+
pubKey: string;
|
|
1561
|
+
token: string;
|
|
1562
|
+
}, ValueTypes["FileResponse"]];
|
|
1563
|
+
uploadFile?: [{
|
|
1564
|
+
fileSize: ValueTypes["BigInt"];
|
|
1565
|
+
fileSizeBefore: ValueTypes["BigInt"];
|
|
1566
|
+
fileKey: string;
|
|
1567
|
+
md5: string;
|
|
1568
|
+
md5Encrypted: string;
|
|
1569
|
+
}, ValueTypes["UploadFileResult"]];
|
|
1665
1570
|
uploadFileEnd?: [{
|
|
1666
1571
|
fileId: string;
|
|
1667
1572
|
}, ValueTypes["UploadFileEndResult"]];
|
|
1668
|
-
uploadFilePartEnd?: [
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
{
|
|
1678
|
-
userId: string;
|
|
1679
|
-
plan: ValueTypes["PlanKind"];
|
|
1680
|
-
},
|
|
1681
|
-
ValueTypes["ChangeUserPlanResult"]
|
|
1682
|
-
];
|
|
1573
|
+
uploadFilePartEnd?: [{
|
|
1574
|
+
fileId: string;
|
|
1575
|
+
md5: string;
|
|
1576
|
+
order: number;
|
|
1577
|
+
}, ValueTypes["UploadFilePartEndResult"]];
|
|
1578
|
+
changeUserPlan?: [{
|
|
1579
|
+
userId: string;
|
|
1580
|
+
plan: ValueTypes["PlanKind"];
|
|
1581
|
+
}, ValueTypes["ChangeUserPlanResult"]];
|
|
1683
1582
|
__typename?: boolean;
|
|
1684
1583
|
}>;
|
|
1685
1584
|
["Subscription"]: AliasType<{
|
|
@@ -1752,7 +1651,7 @@ export declare type ModelTypes = {
|
|
|
1752
1651
|
["RecoverFolderResult"]: ModelTypes["RecoverFolderResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
|
|
1753
1652
|
["RecoverMailResult"]: ModelTypes["RecoverMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
|
|
1754
1653
|
["RecoverVFileResult"]: ModelTypes["RecoverVFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
|
|
1755
|
-
["SaveInCloudResult"]: ModelTypes["SaveInCloudResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"];
|
|
1654
|
+
["SaveInCloudResult"]: ModelTypes["SaveInCloudResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorLimit"];
|
|
1756
1655
|
["SendDraftMailResult"]: ModelTypes["SendDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
|
|
1757
1656
|
["SendOneMailResult"]: ModelTypes["RecoverFolderResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
|
|
1758
1657
|
["SendReportResult"]: ModelTypes["SendReportResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"];
|
|
@@ -1763,6 +1662,7 @@ export declare type ModelTypes = {
|
|
|
1763
1662
|
["UnreadMailResult"]: ModelTypes["UnreadMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
|
|
1764
1663
|
["UpdateAppNotificationsResult"]: ModelTypes["UpdateAppNotificationsResponse"] | ModelTypes["ErrorAccessDenied"];
|
|
1765
1664
|
["UpdateAppSettingsResult"]: ModelTypes["UpdateAppSettingsResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
|
|
1665
|
+
["UpdateAutoDisconnectDelayResult"]: ModelTypes["UpdateAutoDisconnectDelayResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotFound"] | ModelTypes["ErrorBasic"];
|
|
1766
1666
|
["UpdateDraftMailResult"]: ModelTypes["UpdateDraftMailResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorBasic"];
|
|
1767
1667
|
["UpdateFileResult"]: ModelTypes["UpdateFileResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"] | ModelTypes["ErrorBasic"];
|
|
1768
1668
|
["UpdateFolderResult"]: ModelTypes["UpdateFolderResponse"] | ModelTypes["ErrorAccessDenied"] | ModelTypes["ErrorNotExist"];
|
|
@@ -2222,6 +2122,9 @@ export declare type ModelTypes = {
|
|
|
2222
2122
|
["UpdateAppSettingsResponse"]: {
|
|
2223
2123
|
updateAppSettings: ModelTypes["UserAppSettings"];
|
|
2224
2124
|
};
|
|
2125
|
+
["UpdateAutoDisconnectDelayResponse"]: {
|
|
2126
|
+
updateAutoDisconnectDelay?: boolean;
|
|
2127
|
+
};
|
|
2225
2128
|
["UpdateDraftMailResponse"]: {
|
|
2226
2129
|
updateDraftMail?: ModelTypes["Mail"];
|
|
2227
2130
|
};
|
|
@@ -2256,7 +2159,7 @@ export declare type ModelTypes = {
|
|
|
2256
2159
|
json?: ModelTypes["Json"];
|
|
2257
2160
|
};
|
|
2258
2161
|
["DbSearchResponse"]: {
|
|
2259
|
-
json
|
|
2162
|
+
json: ModelTypes["Json"][];
|
|
2260
2163
|
};
|
|
2261
2164
|
["DeletedFoldersResponse"]: {
|
|
2262
2165
|
deletedFolders: ModelTypes["Folder"][];
|
|
@@ -2358,7 +2261,6 @@ export declare type ModelTypes = {
|
|
|
2358
2261
|
cloudFolderDaysForDelete: number;
|
|
2359
2262
|
historyFileDaysForDelete?: number;
|
|
2360
2263
|
historyMaxFileCount: number;
|
|
2361
|
-
autoDisconnectDelay?: number;
|
|
2362
2264
|
};
|
|
2363
2265
|
["UserSession"]: {
|
|
2364
2266
|
id: string;
|
|
@@ -2471,6 +2373,7 @@ export declare type ModelTypes = {
|
|
|
2471
2373
|
createFolder?: ModelTypes["CreateFolderResult"];
|
|
2472
2374
|
dbConfigMutation?: ModelTypes["DbConfigMutationResult"];
|
|
2473
2375
|
dbSet?: ModelTypes["DbSetResult"];
|
|
2376
|
+
deleteAllData: boolean;
|
|
2474
2377
|
deleteDraftMail?: ModelTypes["DeleteDraftMailResult"];
|
|
2475
2378
|
deleteFile?: ModelTypes["DeleteFileResult"];
|
|
2476
2379
|
deleteFolder?: ModelTypes["DeleteFolderResult"];
|
|
@@ -2504,6 +2407,7 @@ export declare type ModelTypes = {
|
|
|
2504
2407
|
unreadMail?: ModelTypes["UnreadMailResult"];
|
|
2505
2408
|
updateAppNotifications?: ModelTypes["UpdateAppNotificationsResult"];
|
|
2506
2409
|
updateAppSettings?: ModelTypes["UpdateAppSettingsResult"];
|
|
2410
|
+
updateAutoDisconnectDelay?: ModelTypes["UpdateAutoDisconnectDelayResult"];
|
|
2507
2411
|
updateDraftMail?: ModelTypes["UpdateDraftMailResult"];
|
|
2508
2412
|
updateFile?: ModelTypes["UpdateFileResult"];
|
|
2509
2413
|
updateFolder?: ModelTypes["UpdateFolderResult"];
|
|
@@ -2531,414 +2435,423 @@ export declare type GraphQLTypes = {
|
|
|
2531
2435
|
["Rights"]: Rights;
|
|
2532
2436
|
["AppNotificationsResult"]: {
|
|
2533
2437
|
__typename: "UserAppNotifications" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2534
|
-
[
|
|
2535
|
-
[
|
|
2536
|
-
[
|
|
2438
|
+
['...on UserAppNotifications']: '__union' & GraphQLTypes["UserAppNotifications"];
|
|
2439
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2440
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2537
2441
|
};
|
|
2538
2442
|
["BlogResult"]: {
|
|
2539
2443
|
__typename: "BlogResponse" | "ErrorLangNotExist";
|
|
2540
|
-
[
|
|
2541
|
-
[
|
|
2444
|
+
['...on BlogResponse']: '__union' & GraphQLTypes["BlogResponse"];
|
|
2445
|
+
['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
|
|
2542
2446
|
};
|
|
2543
2447
|
["DbConfigResult"]: {
|
|
2544
2448
|
__typename: "DbConfigResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorNotFound";
|
|
2545
|
-
[
|
|
2546
|
-
[
|
|
2547
|
-
[
|
|
2548
|
-
[
|
|
2449
|
+
['...on DbConfigResponse']: '__union' & GraphQLTypes["DbConfigResponse"];
|
|
2450
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2451
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2452
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2549
2453
|
};
|
|
2550
2454
|
["DbGetResult"]: {
|
|
2551
2455
|
__typename: "DbGetResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist";
|
|
2552
|
-
[
|
|
2553
|
-
[
|
|
2554
|
-
[
|
|
2555
|
-
[
|
|
2456
|
+
['...on DbGetResponse']: '__union' & GraphQLTypes["DbGetResponse"];
|
|
2457
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2458
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2459
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2556
2460
|
};
|
|
2557
2461
|
["DbSearchResult"]: {
|
|
2558
2462
|
__typename: "DbSearchResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
|
|
2559
|
-
[
|
|
2560
|
-
[
|
|
2561
|
-
[
|
|
2562
|
-
[
|
|
2463
|
+
['...on DbSearchResponse']: '__union' & GraphQLTypes["DbSearchResponse"];
|
|
2464
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2465
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2466
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2563
2467
|
};
|
|
2564
2468
|
["DeletedFoldersResult"]: {
|
|
2565
2469
|
__typename: "DeletedFoldersResponse" | "ErrorAccessDenied";
|
|
2566
|
-
[
|
|
2567
|
-
[
|
|
2470
|
+
['...on DeletedFoldersResponse']: '__union' & GraphQLTypes["DeletedFoldersResponse"];
|
|
2471
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2568
2472
|
};
|
|
2569
2473
|
["DeletedMailsResult"]: {
|
|
2570
2474
|
__typename: "DeletedMailsResponse" | "ErrorAccessDenied";
|
|
2571
|
-
[
|
|
2572
|
-
[
|
|
2475
|
+
['...on DeletedMailsResponse']: '__union' & GraphQLTypes["DeletedMailsResponse"];
|
|
2476
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2573
2477
|
};
|
|
2574
2478
|
["DeletedVFilesResult"]: {
|
|
2575
2479
|
__typename: "DeletedVFilesResponse" | "ErrorAccessDenied";
|
|
2576
|
-
[
|
|
2577
|
-
[
|
|
2480
|
+
['...on DeletedVFilesResponse']: '__union' & GraphQLTypes["DeletedVFilesResponse"];
|
|
2481
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2578
2482
|
};
|
|
2579
2483
|
["FaqResult"]: {
|
|
2580
2484
|
__typename: "FaqResponse" | "ErrorAccessDenied";
|
|
2581
|
-
[
|
|
2582
|
-
[
|
|
2485
|
+
['...on FaqResponse']: '__union' & GraphQLTypes["FaqResponse"];
|
|
2486
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2583
2487
|
};
|
|
2584
2488
|
["FileResult"]: {
|
|
2585
2489
|
__typename: "FileQueryResponse" | "ErrorAccessDenied";
|
|
2586
|
-
[
|
|
2587
|
-
[
|
|
2490
|
+
['...on FileQueryResponse']: '__union' & GraphQLTypes["FileQueryResponse"];
|
|
2491
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2588
2492
|
};
|
|
2589
2493
|
["FileContentResult"]: {
|
|
2590
2494
|
__typename: "FileContentResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2591
|
-
[
|
|
2592
|
-
[
|
|
2593
|
-
[
|
|
2495
|
+
['...on FileContentResponse']: '__union' & GraphQLTypes["FileContentResponse"];
|
|
2496
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2497
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2594
2498
|
};
|
|
2595
2499
|
["FolderResult"]: {
|
|
2596
2500
|
__typename: "FolderResponse" | "ErrorAccessDenied";
|
|
2597
|
-
[
|
|
2598
|
-
[
|
|
2501
|
+
['...on FolderResponse']: '__union' & GraphQLTypes["FolderResponse"];
|
|
2502
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2599
2503
|
};
|
|
2600
2504
|
["FolderSizeResult"]: {
|
|
2601
2505
|
__typename: "FolderSizeResponse" | "ErrorAccessDenied";
|
|
2602
|
-
[
|
|
2603
|
-
[
|
|
2506
|
+
['...on FolderSizeResponse']: '__union' & GraphQLTypes["FolderSizeResponse"];
|
|
2507
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2604
2508
|
};
|
|
2605
2509
|
["FoldersSharedWithMeResult"]: {
|
|
2606
2510
|
__typename: "FolderSharedWithMeResponse" | "ErrorAccessDenied";
|
|
2607
|
-
[
|
|
2608
|
-
[
|
|
2511
|
+
['...on FolderSharedWithMeResponse']: '__union' & GraphQLTypes["FolderSharedWithMeResponse"];
|
|
2512
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2609
2513
|
};
|
|
2610
2514
|
["LimitsResult"]: {
|
|
2611
2515
|
__typename: "QueryLimits" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist" | "ErrorLimit";
|
|
2612
|
-
[
|
|
2613
|
-
[
|
|
2614
|
-
[
|
|
2615
|
-
[
|
|
2616
|
-
[
|
|
2516
|
+
['...on QueryLimits']: '__union' & GraphQLTypes["QueryLimits"];
|
|
2517
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2518
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2519
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2520
|
+
['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
|
|
2617
2521
|
};
|
|
2618
2522
|
["MailResult"]: {
|
|
2619
2523
|
__typename: "QueryMailResponse" | "ErrorAccessDenied";
|
|
2620
|
-
[
|
|
2621
|
-
[
|
|
2524
|
+
['...on QueryMailResponse']: '__union' & GraphQLTypes["QueryMailResponse"];
|
|
2525
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2622
2526
|
};
|
|
2623
2527
|
["PaymentInfosResult"]: {
|
|
2624
2528
|
__typename: "PaymentInfosResponse" | "ErrorAccessDenied";
|
|
2625
|
-
[
|
|
2626
|
-
[
|
|
2529
|
+
['...on PaymentInfosResponse']: '__union' & GraphQLTypes["PaymentInfosResponse"];
|
|
2530
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2627
2531
|
};
|
|
2628
2532
|
["PlansResult"]: {
|
|
2629
2533
|
__typename: "PlanResponse";
|
|
2630
|
-
[
|
|
2534
|
+
['...on PlanResponse']: '__union' & GraphQLTypes["PlanResponse"];
|
|
2631
2535
|
};
|
|
2632
2536
|
["SharedFoldersResult"]: {
|
|
2633
2537
|
__typename: "SharedFoldersResponse" | "ErrorAccessDenied";
|
|
2634
|
-
[
|
|
2635
|
-
[
|
|
2538
|
+
['...on SharedFoldersResponse']: '__union' & GraphQLTypes["SharedFoldersResponse"];
|
|
2539
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2636
2540
|
};
|
|
2637
2541
|
["SharedVFilesResult"]: {
|
|
2638
2542
|
__typename: "SharedVFilesResponse" | "ErrorAccessDenied";
|
|
2639
|
-
[
|
|
2640
|
-
[
|
|
2543
|
+
['...on SharedVFilesResponse']: '__union' & GraphQLTypes["SharedVFilesResponse"];
|
|
2544
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2641
2545
|
};
|
|
2642
2546
|
["UnreadReceivedMailsCountResult"]: {
|
|
2643
2547
|
__typename: "UnreadReceivedMailsCountResponse" | "ErrorAccessDenied";
|
|
2644
|
-
[
|
|
2645
|
-
[
|
|
2548
|
+
['...on UnreadReceivedMailsCountResponse']: '__union' & GraphQLTypes["UnreadReceivedMailsCountResponse"];
|
|
2549
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2646
2550
|
};
|
|
2647
2551
|
["UserResult"]: {
|
|
2648
2552
|
__typename: "UserResponse" | "ErrorNotFound";
|
|
2649
|
-
[
|
|
2650
|
-
[
|
|
2553
|
+
['...on UserResponse']: '__union' & GraphQLTypes["UserResponse"];
|
|
2554
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2651
2555
|
};
|
|
2652
2556
|
["VFileResult"]: {
|
|
2653
2557
|
__typename: "VFileResponse" | "ErrorAccessDenied";
|
|
2654
|
-
[
|
|
2655
|
-
[
|
|
2558
|
+
['...on VFileResponse']: '__union' & GraphQLTypes["VFileResponse"];
|
|
2559
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2656
2560
|
};
|
|
2657
2561
|
["VFilesSharedWithMeResult"]: {
|
|
2658
2562
|
__typename: "VFilesSharedWithMeResponse" | "ErrorAccessDenied";
|
|
2659
|
-
[
|
|
2660
|
-
[
|
|
2563
|
+
['...on VFilesSharedWithMeResponse']: '__union' & GraphQLTypes["VFilesSharedWithMeResponse"];
|
|
2564
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2661
2565
|
};
|
|
2662
2566
|
["UserListResult"]: {
|
|
2663
2567
|
__typename: "UserListResponse" | "ErrorAccessDenied";
|
|
2664
|
-
[
|
|
2665
|
-
[
|
|
2568
|
+
['...on UserListResponse']: '__union' & GraphQLTypes["UserListResponse"];
|
|
2569
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2666
2570
|
};
|
|
2667
2571
|
["AddFileToHistoryResult"]: {
|
|
2668
2572
|
__typename: "AddFileToHistoryResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2669
|
-
[
|
|
2670
|
-
[
|
|
2671
|
-
[
|
|
2573
|
+
['...on AddFileToHistoryResponse']: '__union' & GraphQLTypes["AddFileToHistoryResponse"];
|
|
2574
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2575
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2672
2576
|
};
|
|
2673
2577
|
["CancelPaymentResult"]: {
|
|
2674
2578
|
__typename: "CancelPaymentResponse" | "ErrorAccessDenied";
|
|
2675
|
-
[
|
|
2676
|
-
[
|
|
2579
|
+
['...on CancelPaymentResponse']: '__union' & GraphQLTypes["CancelPaymentResponse"];
|
|
2580
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2677
2581
|
};
|
|
2678
2582
|
["CreateApplicationResult"]: {
|
|
2679
2583
|
__typename: "CreateApplicationResponse" | "ErrorNotExist";
|
|
2680
|
-
[
|
|
2681
|
-
[
|
|
2584
|
+
['...on CreateApplicationResponse']: '__union' & GraphQLTypes["CreateApplicationResponse"];
|
|
2585
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2682
2586
|
};
|
|
2683
2587
|
["CreateDraftMailResult"]: {
|
|
2684
2588
|
__typename: "CreateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2685
|
-
[
|
|
2686
|
-
[
|
|
2687
|
-
[
|
|
2589
|
+
['...on CreateDraftMailResponse']: '__union' & GraphQLTypes["CreateDraftMailResponse"];
|
|
2590
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2591
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2688
2592
|
};
|
|
2689
2593
|
["CreateFolderResult"]: {
|
|
2690
2594
|
__typename: "CreateFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2691
|
-
[
|
|
2692
|
-
[
|
|
2693
|
-
[
|
|
2595
|
+
['...on CreateFolderResponse']: '__union' & GraphQLTypes["CreateFolderResponse"];
|
|
2596
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2597
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2694
2598
|
};
|
|
2695
2599
|
["DbConfigMutationResult"]: {
|
|
2696
2600
|
__typename: "DbConfigMutationResponse" | "ErrorAccessDenied";
|
|
2697
|
-
[
|
|
2698
|
-
[
|
|
2601
|
+
['...on DbConfigMutationResponse']: '__union' & GraphQLTypes["DbConfigMutationResponse"];
|
|
2602
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2699
2603
|
};
|
|
2700
2604
|
["DbSetResult"]: {
|
|
2701
2605
|
__typename: "DbSetResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2702
|
-
[
|
|
2703
|
-
[
|
|
2704
|
-
[
|
|
2606
|
+
['...on DbSetResponse']: '__union' & GraphQLTypes["DbSetResponse"];
|
|
2607
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2608
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2705
2609
|
};
|
|
2706
2610
|
["DeleteDraftMailResult"]: {
|
|
2707
2611
|
__typename: "DeleteDraftMailResponse" | "ErrorAccessDenied";
|
|
2708
|
-
[
|
|
2709
|
-
[
|
|
2612
|
+
['...on DeleteDraftMailResponse']: '__union' & GraphQLTypes["DeleteDraftMailResponse"];
|
|
2613
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2710
2614
|
};
|
|
2711
2615
|
["DeleteFileResult"]: {
|
|
2712
2616
|
__typename: "DeleteFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2713
|
-
[
|
|
2714
|
-
[
|
|
2715
|
-
[
|
|
2617
|
+
['...on DeleteFileResponse']: '__union' & GraphQLTypes["DeleteFileResponse"];
|
|
2618
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2619
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2716
2620
|
};
|
|
2717
2621
|
["DeleteFolderResult"]: {
|
|
2718
2622
|
__typename: "DeleteFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2719
|
-
[
|
|
2720
|
-
[
|
|
2721
|
-
[
|
|
2623
|
+
['...on DeleteFolderResponse']: '__union' & GraphQLTypes["DeleteFolderResponse"];
|
|
2624
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2625
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2722
2626
|
};
|
|
2723
2627
|
["DeleteFolderCloudTrashResult"]: {
|
|
2724
2628
|
__typename: "DeleteFolderCloudTrashResponse" | "ErrorAccessDenied";
|
|
2725
|
-
[
|
|
2726
|
-
[
|
|
2629
|
+
['...on DeleteFolderCloudTrashResponse']: '__union' & GraphQLTypes["DeleteFolderCloudTrashResponse"];
|
|
2630
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2727
2631
|
};
|
|
2728
2632
|
["DeleteFolderSharingResult"]: {
|
|
2729
2633
|
__typename: "DeleteFolderSharingResponse" | "ErrorAccessDenied";
|
|
2730
|
-
[
|
|
2731
|
-
[
|
|
2634
|
+
['...on DeleteFolderSharingResponse']: '__union' & GraphQLTypes["DeleteFolderSharingResponse"];
|
|
2635
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2732
2636
|
};
|
|
2733
2637
|
["DeleteMailResult"]: {
|
|
2734
2638
|
__typename: "DeleteMailResponse" | "ErrorAccessDenied";
|
|
2735
|
-
[
|
|
2736
|
-
[
|
|
2639
|
+
['...on DeleteMailResponse']: '__union' & GraphQLTypes["DeleteMailResponse"];
|
|
2640
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2737
2641
|
};
|
|
2738
2642
|
["DeleteMailTrashResult"]: {
|
|
2739
2643
|
__typename: "DeleteMailTrashResponse" | "ErrorAccessDenied";
|
|
2740
|
-
[
|
|
2741
|
-
[
|
|
2644
|
+
['...on DeleteMailTrashResponse']: '__union' & GraphQLTypes["DeleteMailTrashResponse"];
|
|
2645
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2742
2646
|
};
|
|
2743
2647
|
["DeleteUserResult"]: {
|
|
2744
2648
|
__typename: "DeleteUserResponse" | "ErrorAccessDenied";
|
|
2745
|
-
[
|
|
2746
|
-
[
|
|
2649
|
+
['...on DeleteUserResponse']: '__union' & GraphQLTypes["DeleteUserResponse"];
|
|
2650
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2747
2651
|
};
|
|
2748
2652
|
["DeleteVFileResult"]: {
|
|
2749
2653
|
__typename: "DeleteVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2750
|
-
[
|
|
2751
|
-
[
|
|
2752
|
-
[
|
|
2654
|
+
['...on DeleteVFileResponse']: '__union' & GraphQLTypes["DeleteVFileResponse"];
|
|
2655
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2656
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2753
2657
|
};
|
|
2754
2658
|
["DeleteVFileCloudTrashResult"]: {
|
|
2755
2659
|
__typename: "DeleteVFileCloudTrashResponse" | "ErrorAccessDenied";
|
|
2756
|
-
[
|
|
2757
|
-
[
|
|
2660
|
+
['...on DeleteVFileCloudTrashResponse']: '__union' & GraphQLTypes["DeleteVFileCloudTrashResponse"];
|
|
2661
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2758
2662
|
};
|
|
2759
2663
|
["DeleteVFileSharingResult"]: {
|
|
2760
2664
|
__typename: "DeleteVFileSharingResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2761
|
-
[
|
|
2762
|
-
[
|
|
2763
|
-
[
|
|
2665
|
+
['...on DeleteVFileSharingResponse']: '__union' & GraphQLTypes["DeleteVFileSharingResponse"];
|
|
2666
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2667
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2764
2668
|
};
|
|
2765
2669
|
["DuplicateVFileResult"]: {
|
|
2766
2670
|
__typename: "DuplicateVFileResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2767
|
-
[
|
|
2768
|
-
[
|
|
2769
|
-
[
|
|
2671
|
+
['...on DuplicateVFileResponse']: '__union' & GraphQLTypes["DuplicateVFileResponse"];
|
|
2672
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2673
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2770
2674
|
};
|
|
2771
2675
|
["EmptyCloudTrashResult"]: {
|
|
2772
2676
|
__typename: "DeleteMailResponse" | "ErrorAccessDenied";
|
|
2773
|
-
[
|
|
2774
|
-
[
|
|
2677
|
+
['...on DeleteMailResponse']: '__union' & GraphQLTypes["DeleteMailResponse"];
|
|
2678
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2775
2679
|
};
|
|
2776
2680
|
["EmptyMailTrashResult"]: {
|
|
2777
2681
|
__typename: "EmptyMailTrashResponse" | "ErrorAccessDenied";
|
|
2778
|
-
[
|
|
2779
|
-
[
|
|
2682
|
+
['...on EmptyMailTrashResponse']: '__union' & GraphQLTypes["EmptyMailTrashResponse"];
|
|
2683
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2780
2684
|
};
|
|
2781
2685
|
["LogoutResult"]: {
|
|
2782
2686
|
__typename: "LogoutResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2783
|
-
[
|
|
2784
|
-
[
|
|
2785
|
-
[
|
|
2687
|
+
['...on LogoutResponse']: '__union' & GraphQLTypes["LogoutResponse"];
|
|
2688
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2689
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2786
2690
|
};
|
|
2787
2691
|
["MoveFilesResult"]: {
|
|
2788
2692
|
__typename: "MoveFilesResponse" | "ErrorAccessDenied";
|
|
2789
|
-
[
|
|
2790
|
-
[
|
|
2693
|
+
['...on MoveFilesResponse']: '__union' & GraphQLTypes["MoveFilesResponse"];
|
|
2694
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2791
2695
|
};
|
|
2792
2696
|
["MoveFoldersResult"]: {
|
|
2793
2697
|
__typename: "MoveFoldersResponse" | "ErrorAccessDenied";
|
|
2794
|
-
[
|
|
2795
|
-
[
|
|
2698
|
+
['...on MoveFoldersResponse']: '__union' & GraphQLTypes["MoveFoldersResponse"];
|
|
2699
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2796
2700
|
};
|
|
2797
2701
|
["PayResult"]: {
|
|
2798
2702
|
__typename: "PayResponse" | "ErrorAccessDenied";
|
|
2799
|
-
[
|
|
2800
|
-
[
|
|
2703
|
+
['...on PayResponse']: '__union' & GraphQLTypes["PayResponse"];
|
|
2704
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2801
2705
|
};
|
|
2802
2706
|
["ReadMailResult"]: {
|
|
2803
2707
|
__typename: "ReadMailResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound";
|
|
2804
|
-
[
|
|
2805
|
-
[
|
|
2806
|
-
[
|
|
2807
|
-
[
|
|
2708
|
+
['...on ReadMailResponse']: '__union' & GraphQLTypes["ReadMailResponse"];
|
|
2709
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2710
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2711
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2808
2712
|
};
|
|
2809
2713
|
["RecoverFolderResult"]: {
|
|
2810
2714
|
__typename: "RecoverFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2811
|
-
[
|
|
2812
|
-
[
|
|
2813
|
-
[
|
|
2715
|
+
['...on RecoverFolderResponse']: '__union' & GraphQLTypes["RecoverFolderResponse"];
|
|
2716
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2717
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2814
2718
|
};
|
|
2815
2719
|
["RecoverMailResult"]: {
|
|
2816
2720
|
__typename: "RecoverMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2817
|
-
[
|
|
2818
|
-
[
|
|
2819
|
-
[
|
|
2721
|
+
['...on RecoverMailResponse']: '__union' & GraphQLTypes["RecoverMailResponse"];
|
|
2722
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2723
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2820
2724
|
};
|
|
2821
2725
|
["RecoverVFileResult"]: {
|
|
2822
2726
|
__typename: "RecoverVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2823
|
-
[
|
|
2824
|
-
[
|
|
2825
|
-
[
|
|
2727
|
+
['...on RecoverVFileResponse']: '__union' & GraphQLTypes["RecoverVFileResponse"];
|
|
2728
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2729
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2826
2730
|
};
|
|
2827
2731
|
["SaveInCloudResult"]: {
|
|
2828
|
-
__typename: "SaveInCloudResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
|
|
2829
|
-
[
|
|
2830
|
-
[
|
|
2831
|
-
[
|
|
2832
|
-
[
|
|
2732
|
+
__typename: "SaveInCloudResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic" | "ErrorNotFound" | "ErrorLimit";
|
|
2733
|
+
['...on SaveInCloudResponse']: '__union' & GraphQLTypes["SaveInCloudResponse"];
|
|
2734
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2735
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2736
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2737
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2738
|
+
['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
|
|
2833
2739
|
};
|
|
2834
2740
|
["SendDraftMailResult"]: {
|
|
2835
2741
|
__typename: "SendDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2836
|
-
[
|
|
2837
|
-
[
|
|
2838
|
-
[
|
|
2742
|
+
['...on SendDraftMailResponse']: '__union' & GraphQLTypes["SendDraftMailResponse"];
|
|
2743
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2744
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2839
2745
|
};
|
|
2840
2746
|
["SendOneMailResult"]: {
|
|
2841
2747
|
__typename: "RecoverFolderResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2842
|
-
[
|
|
2843
|
-
[
|
|
2844
|
-
[
|
|
2748
|
+
['...on RecoverFolderResponse']: '__union' & GraphQLTypes["RecoverFolderResponse"];
|
|
2749
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2750
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2845
2751
|
};
|
|
2846
2752
|
["SendReportResult"]: {
|
|
2847
2753
|
__typename: "SendReportResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2848
|
-
[
|
|
2849
|
-
[
|
|
2850
|
-
[
|
|
2754
|
+
['...on SendReportResponse']: '__union' & GraphQLTypes["SendReportResponse"];
|
|
2755
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2756
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2851
2757
|
};
|
|
2852
2758
|
["ShareFileInHistoryResult"]: {
|
|
2853
2759
|
__typename: "ShareFileInHistoryResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2854
|
-
[
|
|
2855
|
-
[
|
|
2856
|
-
[
|
|
2760
|
+
['...on ShareFileInHistoryResponse']: '__union' & GraphQLTypes["ShareFileInHistoryResponse"];
|
|
2761
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2762
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2857
2763
|
};
|
|
2858
2764
|
["ShareFolderResult"]: {
|
|
2859
2765
|
__typename: "ShareFolderResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2860
|
-
[
|
|
2861
|
-
[
|
|
2862
|
-
[
|
|
2766
|
+
['...on ShareFolderResponse']: '__union' & GraphQLTypes["ShareFolderResponse"];
|
|
2767
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2768
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2863
2769
|
};
|
|
2864
2770
|
["ShareFolderFinishResult"]: {
|
|
2865
2771
|
__typename: "ShareFolderFinishResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2866
|
-
[
|
|
2867
|
-
[
|
|
2868
|
-
[
|
|
2772
|
+
['...on ShareFolderFinishResponse']: '__union' & GraphQLTypes["ShareFolderFinishResponse"];
|
|
2773
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2774
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2869
2775
|
};
|
|
2870
2776
|
["ShareVFileResult"]: {
|
|
2871
2777
|
__typename: "ShareVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorNotFound";
|
|
2872
|
-
[
|
|
2873
|
-
[
|
|
2874
|
-
[
|
|
2875
|
-
[
|
|
2778
|
+
['...on ShareVFileResponse']: '__union' & GraphQLTypes["ShareVFileResponse"];
|
|
2779
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2780
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2781
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2876
2782
|
};
|
|
2877
2783
|
["UnreadMailResult"]: {
|
|
2878
2784
|
__typename: "UnreadMailResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorBasic";
|
|
2879
|
-
[
|
|
2880
|
-
[
|
|
2881
|
-
[
|
|
2882
|
-
[
|
|
2785
|
+
['...on UnreadMailResponse']: '__union' & GraphQLTypes["UnreadMailResponse"];
|
|
2786
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2787
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2788
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2883
2789
|
};
|
|
2884
2790
|
["UpdateAppNotificationsResult"]: {
|
|
2885
2791
|
__typename: "UpdateAppNotificationsResponse" | "ErrorAccessDenied";
|
|
2886
|
-
[
|
|
2887
|
-
[
|
|
2792
|
+
['...on UpdateAppNotificationsResponse']: '__union' & GraphQLTypes["UpdateAppNotificationsResponse"];
|
|
2793
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2888
2794
|
};
|
|
2889
2795
|
["UpdateAppSettingsResult"]: {
|
|
2890
2796
|
__typename: "UpdateAppSettingsResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2891
|
-
[
|
|
2892
|
-
[
|
|
2893
|
-
[
|
|
2797
|
+
['...on UpdateAppSettingsResponse']: '__union' & GraphQLTypes["UpdateAppSettingsResponse"];
|
|
2798
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2799
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2800
|
+
};
|
|
2801
|
+
["UpdateAutoDisconnectDelayResult"]: {
|
|
2802
|
+
__typename: "UpdateAutoDisconnectDelayResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorBasic";
|
|
2803
|
+
['...on UpdateAutoDisconnectDelayResponse']: '__union' & GraphQLTypes["UpdateAutoDisconnectDelayResponse"];
|
|
2804
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2805
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2806
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2894
2807
|
};
|
|
2895
2808
|
["UpdateDraftMailResult"]: {
|
|
2896
2809
|
__typename: "UpdateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
|
|
2897
|
-
[
|
|
2898
|
-
[
|
|
2899
|
-
[
|
|
2810
|
+
['...on UpdateDraftMailResponse']: '__union' & GraphQLTypes["UpdateDraftMailResponse"];
|
|
2811
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2812
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2900
2813
|
};
|
|
2901
2814
|
["UpdateFileResult"]: {
|
|
2902
2815
|
__typename: "UpdateFileResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
|
|
2903
|
-
[
|
|
2904
|
-
[
|
|
2905
|
-
[
|
|
2906
|
-
[
|
|
2816
|
+
['...on UpdateFileResponse']: '__union' & GraphQLTypes["UpdateFileResponse"];
|
|
2817
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2818
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2819
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2907
2820
|
};
|
|
2908
2821
|
["UpdateFolderResult"]: {
|
|
2909
2822
|
__typename: "UpdateFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
|
|
2910
|
-
[
|
|
2911
|
-
[
|
|
2912
|
-
[
|
|
2823
|
+
['...on UpdateFolderResponse']: '__union' & GraphQLTypes["UpdateFolderResponse"];
|
|
2824
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2825
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2913
2826
|
};
|
|
2914
2827
|
["UpdateProfileResult"]: {
|
|
2915
2828
|
__typename: "UpdateProfileResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2916
|
-
[
|
|
2917
|
-
[
|
|
2918
|
-
[
|
|
2829
|
+
['...on UpdateProfileResponse']: '__union' & GraphQLTypes["UpdateProfileResponse"];
|
|
2830
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2831
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2919
2832
|
};
|
|
2920
2833
|
["UploadFileResult"]: {
|
|
2921
2834
|
__typename: "UploadFileResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorLimit";
|
|
2922
|
-
[
|
|
2923
|
-
[
|
|
2924
|
-
[
|
|
2925
|
-
[
|
|
2835
|
+
['...on UploadFileResponse']: '__union' & GraphQLTypes["UploadFileResponse"];
|
|
2836
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2837
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2838
|
+
['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
|
|
2926
2839
|
};
|
|
2927
2840
|
["UploadFileEndResult"]: {
|
|
2928
2841
|
__typename: "UploadFileEndResponse" | "ErrorAccessDenied" | "ErrorNotFound";
|
|
2929
|
-
[
|
|
2930
|
-
[
|
|
2931
|
-
[
|
|
2842
|
+
['...on UploadFileEndResponse']: '__union' & GraphQLTypes["UploadFileEndResponse"];
|
|
2843
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2844
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2932
2845
|
};
|
|
2933
2846
|
["UploadFilePartEndResult"]: {
|
|
2934
2847
|
__typename: "UploadFilePartEndResponse" | "ErrorAccessDenied";
|
|
2935
|
-
[
|
|
2936
|
-
[
|
|
2848
|
+
['...on UploadFilePartEndResponse']: '__union' & GraphQLTypes["UploadFilePartEndResponse"];
|
|
2849
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2937
2850
|
};
|
|
2938
2851
|
["ChangeUserPlanResult"]: {
|
|
2939
2852
|
__typename: "ChangeUserPlanResponse" | "ErrorAccessDenied";
|
|
2940
|
-
[
|
|
2941
|
-
[
|
|
2853
|
+
['...on ChangeUserPlanResponse']: '__union' & GraphQLTypes["ChangeUserPlanResponse"];
|
|
2854
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2942
2855
|
};
|
|
2943
2856
|
["AppKeyPair"]: {
|
|
2944
2857
|
__typename: "AppKeyPair";
|
|
@@ -3010,13 +2923,13 @@ export declare type GraphQLTypes = {
|
|
|
3010
2923
|
};
|
|
3011
2924
|
["Error"]: {
|
|
3012
2925
|
__typename: "ErrorAccessDenied" | "ErrorNotFound" | "ErrorUpgradePlan" | "ErrorLangNotExist" | "ErrorNotExist" | "ErrorLimit" | "ErrorBasic";
|
|
3013
|
-
[
|
|
3014
|
-
[
|
|
3015
|
-
[
|
|
3016
|
-
[
|
|
3017
|
-
[
|
|
3018
|
-
[
|
|
3019
|
-
[
|
|
2926
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2927
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2928
|
+
['...on ErrorUpgradePlan']: '__union' & GraphQLTypes["ErrorUpgradePlan"];
|
|
2929
|
+
['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
|
|
2930
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2931
|
+
['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
|
|
2932
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
3020
2933
|
};
|
|
3021
2934
|
["ErrorAccessDenied"]: {
|
|
3022
2935
|
__typename: "ErrorAccessDenied";
|
|
@@ -3025,13 +2938,13 @@ export declare type GraphQLTypes = {
|
|
|
3025
2938
|
["ErrorBase"]: {
|
|
3026
2939
|
__typename: "ErrorAccessDenied" | "ErrorBasic" | "ErrorLangNotExist" | "ErrorLimit" | "ErrorNotExist" | "ErrorNotFound" | "ErrorUpgradePlan";
|
|
3027
2940
|
message: string;
|
|
3028
|
-
[
|
|
3029
|
-
[
|
|
3030
|
-
[
|
|
3031
|
-
[
|
|
3032
|
-
[
|
|
3033
|
-
[
|
|
3034
|
-
[
|
|
2941
|
+
['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
|
|
2942
|
+
['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
|
|
2943
|
+
['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
|
|
2944
|
+
['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
|
|
2945
|
+
['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
|
|
2946
|
+
['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
|
|
2947
|
+
['...on ErrorUpgradePlan']: '__union' & GraphQLTypes["ErrorUpgradePlan"];
|
|
3035
2948
|
};
|
|
3036
2949
|
["ErrorBasic"]: {
|
|
3037
2950
|
__typename: "ErrorBasic";
|
|
@@ -3099,9 +3012,9 @@ export declare type GraphQLTypes = {
|
|
|
3099
3012
|
};
|
|
3100
3013
|
["FileContent"]: {
|
|
3101
3014
|
__typename: "FileContentCloud" | "FileContentReceivedMail" | "FileContentSentMail";
|
|
3102
|
-
[
|
|
3103
|
-
[
|
|
3104
|
-
[
|
|
3015
|
+
['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
|
|
3016
|
+
['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
|
|
3017
|
+
['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
|
|
3105
3018
|
};
|
|
3106
3019
|
["FileContentBase"]: {
|
|
3107
3020
|
__typename: "FileContentCloud" | "FileContentReceivedMail" | "FileContentSentMail";
|
|
@@ -3111,9 +3024,9 @@ export declare type GraphQLTypes = {
|
|
|
3111
3024
|
md5Encrypted: string;
|
|
3112
3025
|
totalSize: GraphQLTypes["BigInt"];
|
|
3113
3026
|
type: GraphQLTypes["FileContentType"];
|
|
3114
|
-
[
|
|
3115
|
-
[
|
|
3116
|
-
[
|
|
3027
|
+
['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
|
|
3028
|
+
['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
|
|
3029
|
+
['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
|
|
3117
3030
|
};
|
|
3118
3031
|
["FileContentCloud"]: {
|
|
3119
3032
|
__typename: "FileContentCloud";
|
|
@@ -3548,6 +3461,10 @@ export declare type GraphQLTypes = {
|
|
|
3548
3461
|
__typename: "UpdateAppSettingsResponse";
|
|
3549
3462
|
updateAppSettings: GraphQLTypes["UserAppSettings"];
|
|
3550
3463
|
};
|
|
3464
|
+
["UpdateAutoDisconnectDelayResponse"]: {
|
|
3465
|
+
__typename: "UpdateAutoDisconnectDelayResponse";
|
|
3466
|
+
updateAutoDisconnectDelay?: boolean;
|
|
3467
|
+
};
|
|
3551
3468
|
["UpdateDraftMailResponse"]: {
|
|
3552
3469
|
__typename: "UpdateDraftMailResponse";
|
|
3553
3470
|
updateDraftMail?: GraphQLTypes["Mail"];
|
|
@@ -3594,7 +3511,7 @@ export declare type GraphQLTypes = {
|
|
|
3594
3511
|
};
|
|
3595
3512
|
["DbSearchResponse"]: {
|
|
3596
3513
|
__typename: "DbSearchResponse";
|
|
3597
|
-
json
|
|
3514
|
+
json: Array<GraphQLTypes["Json"]>;
|
|
3598
3515
|
};
|
|
3599
3516
|
["DeletedFoldersResponse"]: {
|
|
3600
3517
|
__typename: "DeletedFoldersResponse";
|
|
@@ -3719,7 +3636,6 @@ export declare type GraphQLTypes = {
|
|
|
3719
3636
|
cloudFolderDaysForDelete: number;
|
|
3720
3637
|
historyFileDaysForDelete?: number;
|
|
3721
3638
|
historyMaxFileCount: number;
|
|
3722
|
-
autoDisconnectDelay?: number;
|
|
3723
3639
|
};
|
|
3724
3640
|
["UserSession"]: {
|
|
3725
3641
|
__typename: "UserSession";
|
|
@@ -3842,6 +3758,7 @@ export declare type GraphQLTypes = {
|
|
|
3842
3758
|
createFolder?: GraphQLTypes["CreateFolderResult"];
|
|
3843
3759
|
dbConfigMutation?: GraphQLTypes["DbConfigMutationResult"];
|
|
3844
3760
|
dbSet?: GraphQLTypes["DbSetResult"];
|
|
3761
|
+
deleteAllData: boolean;
|
|
3845
3762
|
deleteDraftMail?: GraphQLTypes["DeleteDraftMailResult"];
|
|
3846
3763
|
deleteFile?: GraphQLTypes["DeleteFileResult"];
|
|
3847
3764
|
deleteFolder?: GraphQLTypes["DeleteFolderResult"];
|
|
@@ -3875,6 +3792,7 @@ export declare type GraphQLTypes = {
|
|
|
3875
3792
|
unreadMail?: GraphQLTypes["UnreadMailResult"];
|
|
3876
3793
|
updateAppNotifications?: GraphQLTypes["UpdateAppNotificationsResult"];
|
|
3877
3794
|
updateAppSettings?: GraphQLTypes["UpdateAppSettingsResult"];
|
|
3795
|
+
updateAutoDisconnectDelay?: GraphQLTypes["UpdateAutoDisconnectDelayResult"];
|
|
3878
3796
|
updateDraftMail?: GraphQLTypes["UpdateDraftMailResult"];
|
|
3879
3797
|
updateFile?: GraphQLTypes["UpdateFileResult"];
|
|
3880
3798
|
updateFolder?: GraphQLTypes["UpdateFolderResult"];
|
|
@@ -3962,13 +3880,13 @@ declare type IsPayLoad<T> = T extends [any, infer PayLoad] ? PayLoad : T;
|
|
|
3962
3880
|
declare type IsArray<T, U> = T extends Array<infer R> ? InputType<R, U>[] : InputType<T, U>;
|
|
3963
3881
|
declare type FlattenArray<T> = T extends Array<infer R> ? R : T;
|
|
3964
3882
|
declare type IsInterfaced<SRC extends DeepAnify<DST>, DST> = FlattenArray<SRC> extends ZEUS_INTERFACES | ZEUS_UNIONS ? {
|
|
3965
|
-
[P in keyof SRC]: SRC[P] extends
|
|
3883
|
+
[P in keyof SRC]: SRC[P] extends '__union' & infer R ? P extends keyof DST ? IsArray<R, '__typename' extends keyof DST ? DST[P] & {
|
|
3966
3884
|
__typename: true;
|
|
3967
3885
|
} : DST[P]> : {} : never;
|
|
3968
3886
|
}[keyof DST] & {
|
|
3969
3887
|
[P in keyof Omit<Pick<SRC, {
|
|
3970
|
-
[P in keyof DST]: SRC[P] extends
|
|
3971
|
-
}[keyof DST]>,
|
|
3888
|
+
[P in keyof DST]: SRC[P] extends '__union' ? never : P;
|
|
3889
|
+
}[keyof DST]>, '__typename'>]: IsPayLoad<DST[P]> extends boolean ? SRC[P] : IsArray<SRC[P], DST[P]>;
|
|
3972
3890
|
} : {
|
|
3973
3891
|
[P in keyof Pick<SRC, keyof DST>]: IsPayLoad<DST[P]> extends boolean ? SRC[P] : IsArray<SRC[P], DST[P]>;
|
|
3974
3892
|
};
|
|
@@ -3977,7 +3895,7 @@ export declare type InputType<SRC, DST> = IsPayLoad<DST> extends {
|
|
|
3977
3895
|
__alias: infer R;
|
|
3978
3896
|
} ? {
|
|
3979
3897
|
[P in keyof R]: MapType<SRC, R[P]>;
|
|
3980
|
-
} & MapType<SRC, Omit<IsPayLoad<DST>,
|
|
3898
|
+
} & MapType<SRC, Omit<IsPayLoad<DST>, '__alias'>> : MapType<SRC, IsPayLoad<DST>>;
|
|
3981
3899
|
declare type Func<P extends any[], R> = (...args: P) => R;
|
|
3982
3900
|
declare type AnyFunc = Func<any, any>;
|
|
3983
3901
|
export declare type ArgsType<F extends AnyFunc> = F extends Func<infer P, any> ? P : never;
|
|
@@ -4019,9 +3937,9 @@ export declare const TypesPropsResolver: ({ value, type, name, key, blockArrays
|
|
|
4019
3937
|
key?: string | undefined;
|
|
4020
3938
|
blockArrays?: boolean | undefined;
|
|
4021
3939
|
}) => string;
|
|
4022
|
-
export declare const queryConstruct: (t:
|
|
4023
|
-
export declare const fullChainConstruct: (fn: FetchFunction) => (t:
|
|
4024
|
-
export declare const fullSubscriptionConstruct: (fn: SubscriptionFunction) => (t:
|
|
3940
|
+
export declare const queryConstruct: (t: 'query' | 'mutation' | 'subscription', tName: string, operationName?: string | undefined) => (o: Record<any, any>) => string;
|
|
3941
|
+
export declare const fullChainConstruct: (fn: FetchFunction) => (t: 'query' | 'mutation' | 'subscription', tName: string) => (o: Record<any, any>, options?: OperationOptions | undefined) => Promise<any>;
|
|
3942
|
+
export declare const fullSubscriptionConstruct: (fn: SubscriptionFunction) => (t: 'query' | 'mutation' | 'subscription', tName: string) => (o: Record<any, any>, options?: OperationOptions | undefined) => any;
|
|
4025
3943
|
export declare const $: (t: TemplateStringsArray) => any;
|
|
4026
3944
|
export declare const resolverFor: <X, T extends keyof ValueTypes, Z extends keyof ValueTypes[T]>(_type: T, _field: Z, fn: (args: Required<ValueTypes[T]>[Z] extends [infer Input, any] ? Input : any, source: any) => Z extends keyof ModelTypes[T] ? X | ModelTypes[T][Z] | Promise<ModelTypes[T][Z]> : any) => (args?: any, source?: any) => any;
|
|
4027
3945
|
export declare const apiFetch: (options: [input: RequestInfo, init?: RequestInit | undefined]) => (query: string, variables?: Record<string, any>) => Promise<Record<string, any> | undefined>;
|
|
@@ -4032,7 +3950,7 @@ export declare const apiSubscription: (options: chainOptions) => (query: string)
|
|
|
4032
3950
|
error: (e: (args: any) => void) => void;
|
|
4033
3951
|
open: (e: () => void) => void;
|
|
4034
3952
|
};
|
|
4035
|
-
export declare type GenericOperation<O> = O extends
|
|
3953
|
+
export declare type GenericOperation<O> = O extends 'query' ? "Query" : O extends 'mutation' ? "Mutation" : "Subscription";
|
|
4036
3954
|
export declare const Thunder: (fn: FetchFunction) => <O extends "query" | "mutation" | "subscription", R extends keyof ValueTypes = GenericOperation<O>>(operation: O) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions | undefined) => Promise<InputType<GraphQLTypes[R], Z>>;
|
|
4037
3955
|
export declare const Chain: (...options: chainOptions) => <O extends "query" | "mutation" | "subscription", R extends keyof ValueTypes = GenericOperation<O>>(operation: O) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions | undefined) => Promise<InputType<GraphQLTypes[R], Z>>;
|
|
4038
3956
|
export declare const SubscriptionThunder: (fn: SubscriptionFunction) => <O extends "query" | "mutation" | "subscription", R extends keyof ValueTypes = GenericOperation<O>>(operation: O) => <Z extends ValueTypes[R]>(o: Z | ValueTypes[R], ops?: OperationOptions | undefined) => SubscriptionToGraphQL<Z, GraphQLTypes[R]>;
|