@secrecy/lib 1.0.0-dev.34 → 1.0.0-dev.37

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.
@@ -515,13 +515,13 @@ export declare type ValueTypes = {
515
515
  }>;
516
516
  ["ErrorBase"]: AliasType<{
517
517
  message?: boolean;
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"]>;
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"]>;
525
525
  __typename?: boolean;
526
526
  }>;
527
527
  ["ErrorBasic"]: AliasType<{
@@ -601,9 +601,9 @@ export declare type ValueTypes = {
601
601
  md5Encrypted?: boolean;
602
602
  totalSize?: boolean;
603
603
  type?: boolean;
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"]>;
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"]>;
607
607
  __typename?: boolean;
608
608
  }>;
609
609
  ["FileContentCloud"]: AliasType<{
@@ -1305,18 +1305,27 @@ export declare type ValueTypes = {
1305
1305
  dbConfig?: [{
1306
1306
  appCode: string;
1307
1307
  }, ValueTypes["DbConfigResult"]];
1308
- dbGet?: [{
1309
- field: string;
1310
- userId?: string | null;
1311
- }, ValueTypes["DbGetResult"]];
1312
- dbSearch?: [{
1313
- search: string;
1314
- field: string;
1315
- }, ValueTypes["DbSearchResult"]];
1308
+ dbGet?: [
1309
+ {
1310
+ field: string;
1311
+ userId?: string | null;
1312
+ },
1313
+ ValueTypes["DbGetResult"]
1314
+ ];
1315
+ dbSearch?: [
1316
+ {
1317
+ search: string;
1318
+ field: string;
1319
+ },
1320
+ ValueTypes["DbSearchResult"]
1321
+ ];
1316
1322
  deletedFolders?: ValueTypes["DeletedFoldersResult"];
1317
- deletedMails?: [{
1318
- mailType: ValueTypes["MailType"];
1319
- }, ValueTypes["DeletedMailsResult"]];
1323
+ deletedMails?: [
1324
+ {
1325
+ mailType: ValueTypes["MailType"];
1326
+ },
1327
+ ValueTypes["DeletedMailsResult"]
1328
+ ];
1320
1329
  deletedVFiles?: ValueTypes["DeletedVFilesResult"];
1321
1330
  faq?: [{
1322
1331
  lang?: ValueTypes["Lang"] | null;
@@ -1327,13 +1336,19 @@ export declare type ValueTypes = {
1327
1336
  fileContent?: [{
1328
1337
  fileId: string;
1329
1338
  }, ValueTypes["FileContentResult"]];
1330
- filesSharedWithMe?: [{
1331
- accepted?: boolean | null;
1332
- }, ValueTypes["FileSharedContent"]];
1333
- folder?: [{
1334
- id?: string | null;
1335
- deleted?: boolean | null;
1336
- }, ValueTypes["FolderResult"]];
1339
+ filesSharedWithMe?: [
1340
+ {
1341
+ accepted?: boolean | null;
1342
+ },
1343
+ ValueTypes["FileSharedContent"]
1344
+ ];
1345
+ folder?: [
1346
+ {
1347
+ id?: string | null;
1348
+ deleted?: boolean | null;
1349
+ },
1350
+ ValueTypes["FolderResult"]
1351
+ ];
1337
1352
  folderSize?: [{
1338
1353
  folderId?: string | null;
1339
1354
  }, ValueTypes["FolderSizeResult"]];
@@ -1361,56 +1376,86 @@ export declare type ValueTypes = {
1361
1376
  __typename?: boolean;
1362
1377
  }>;
1363
1378
  ["Mutation"]: AliasType<{
1364
- addFileToHistory?: [{
1365
- vFileId: string;
1366
- fileId: string;
1367
- }, ValueTypes["AddFileToHistoryResult"]];
1379
+ addFileToHistory?: [
1380
+ {
1381
+ vFileId: string;
1382
+ fileId: string;
1383
+ },
1384
+ ValueTypes["AddFileToHistoryResult"]
1385
+ ];
1368
1386
  cancelPayment?: ValueTypes["CancelPaymentResult"];
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"]];
1387
+ createApplication?: [
1388
+ {
1389
+ name: string;
1390
+ origin: string;
1391
+ developerId: string;
1392
+ },
1393
+ ValueTypes["CreateApplicationResult"]
1394
+ ];
1395
+ createDraftMail?: [
1396
+ {
1397
+ hash: string;
1398
+ hashKey: string;
1399
+ body: string;
1400
+ subject: string;
1401
+ replyTo?: string | null;
1402
+ senderFiles: ValueTypes["MailFileInput"][];
1403
+ recipients: string[];
1404
+ },
1405
+ ValueTypes["CreateDraftMailResult"]
1406
+ ];
1407
+ createFolder?: [
1408
+ {
1409
+ name: string;
1410
+ key: string;
1411
+ parentFolderId?: string | null;
1412
+ },
1413
+ ValueTypes["CreateFolderResult"]
1414
+ ];
1415
+ dbConfigMutation?: [
1416
+ {
1417
+ appCode: string;
1418
+ config: string;
1419
+ },
1420
+ ValueTypes["DbConfigMutationResult"]
1421
+ ];
1422
+ dbSet?: [
1423
+ {
1424
+ value: string;
1425
+ userId?: string | null;
1426
+ },
1427
+ ValueTypes["DbSetResult"]
1428
+ ];
1396
1429
  deleteAllData?: boolean;
1397
- deleteDraftMail?: [{
1398
- draftId: string;
1399
- }, ValueTypes["DeleteDraftMailResult"]];
1400
- deleteFile?: [{
1401
- fileId: string;
1402
- vFileId: string;
1403
- }, ValueTypes["DeleteFileResult"]];
1430
+ deleteDraftMail?: [
1431
+ {
1432
+ draftId: string;
1433
+ },
1434
+ ValueTypes["DeleteDraftMailResult"]
1435
+ ];
1436
+ deleteFile?: [
1437
+ {
1438
+ fileId: string;
1439
+ vFileId: string;
1440
+ },
1441
+ ValueTypes["DeleteFileResult"]
1442
+ ];
1404
1443
  deleteFolder?: [{
1405
1444
  id: string;
1406
1445
  }, ValueTypes["DeleteFolderResult"]];
1407
- deleteFolderCloudTrash?: [{
1408
- ids: string[];
1409
- }, ValueTypes["DeleteFolderCloudTrashResult"]];
1410
- deleteFolderSharing?: [{
1411
- folderId: string;
1412
- userId: string;
1413
- }, ValueTypes["DeleteFolderSharingResult"]];
1446
+ deleteFolderCloudTrash?: [
1447
+ {
1448
+ ids: string[];
1449
+ },
1450
+ ValueTypes["DeleteFolderCloudTrashResult"]
1451
+ ];
1452
+ deleteFolderSharing?: [
1453
+ {
1454
+ folderId: string;
1455
+ userId: string;
1456
+ },
1457
+ ValueTypes["DeleteFolderSharingResult"]
1458
+ ];
1414
1459
  deleteMail?: [{
1415
1460
  mailId: string;
1416
1461
  }, ValueTypes["DeleteMailResult"]];
@@ -1423,36 +1468,54 @@ export declare type ValueTypes = {
1423
1468
  deleteVFile?: [{
1424
1469
  fileId: string;
1425
1470
  }, ValueTypes["DeleteVFileResult"]];
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"]];
1471
+ deleteVFileCloudTrash?: [
1472
+ {
1473
+ ids: string[];
1474
+ },
1475
+ ValueTypes["DeleteVFileCloudTrashResult"]
1476
+ ];
1477
+ deleteVFileSharing?: [
1478
+ {
1479
+ vFileId: string;
1480
+ userId: string;
1481
+ },
1482
+ ValueTypes["DeleteVFileSharingResult"]
1483
+ ];
1484
+ duplicateVFile?: [
1485
+ {
1486
+ vFileId: string;
1487
+ folderId?: string | null;
1488
+ customName?: string | null;
1489
+ },
1490
+ ValueTypes["DuplicateVFileResult"]
1491
+ ];
1438
1492
  emptyCloudTrash?: ValueTypes["EmptyCloudTrashResult"];
1439
1493
  emptyMailTrash?: ValueTypes["EmptyMailTrashResult"];
1440
1494
  logout?: [{
1441
1495
  sessionId?: string | null;
1442
1496
  }, ValueTypes["LogoutResult"]];
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"]];
1497
+ moveFiles?: [
1498
+ {
1499
+ filesId: string[];
1500
+ parentFolderId?: string | null;
1501
+ },
1502
+ ValueTypes["MoveFilesResult"]
1503
+ ];
1504
+ moveFolders?: [
1505
+ {
1506
+ foldersId: string[];
1507
+ parentFolderId?: string | null;
1508
+ },
1509
+ ValueTypes["MoveFoldersResult"]
1510
+ ];
1511
+ pay?: [
1512
+ {
1513
+ planCode: string;
1514
+ input: ValueTypes["PayInput"];
1515
+ autoRenew?: boolean | null;
1516
+ },
1517
+ ValueTypes["PayResult"]
1518
+ ];
1456
1519
  readMail?: [{
1457
1520
  mailId: string;
1458
1521
  }, ValueTypes["ReadMailResult"]];
@@ -1465,120 +1528,177 @@ export declare type ValueTypes = {
1465
1528
  recoverVFile?: [{
1466
1529
  vFileId: string;
1467
1530
  }, ValueTypes["RecoverVFileResult"]];
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"]];
1531
+ saveInCloud?: [
1532
+ {
1533
+ fileId: string;
1534
+ key: string;
1535
+ folderId?: string | null;
1536
+ filename: string;
1537
+ nameKey: string;
1538
+ },
1539
+ ValueTypes["SaveInCloudResult"]
1540
+ ];
1541
+ sendDraftMail?: [
1542
+ {
1543
+ draftMailId: string;
1544
+ temporaryRecipients: string[];
1545
+ recipients: ValueTypes["MailRecipientInput"][];
1546
+ customMessage?: string | null;
1547
+ },
1548
+ ValueTypes["SendDraftMailResult"]
1549
+ ];
1550
+ sendOneMail?: [
1551
+ {
1552
+ mailIntegrityId: string;
1553
+ recipient: ValueTypes["MailRecipientInput"];
1554
+ },
1555
+ ValueTypes["SendOneMailResult"]
1556
+ ];
1557
+ sendReport?: [
1558
+ {
1559
+ reportedUserId: string;
1560
+ customMessage?: string | null;
1561
+ },
1562
+ ValueTypes["SendReportResult"]
1563
+ ];
1564
+ shareFileInHistory?: [
1565
+ {
1566
+ input: ValueTypes["ShareFileInHistoryInput"];
1567
+ vFileId: string;
1568
+ },
1569
+ ValueTypes["ShareFileInHistoryResult"]
1570
+ ];
1571
+ shareFolder?: [
1572
+ {
1573
+ folderId: string;
1574
+ userId: string;
1575
+ },
1576
+ ValueTypes["ShareFolderResult"]
1577
+ ];
1578
+ shareFolderFinish?: [
1579
+ {
1580
+ shareFolders: ValueTypes["ShareFoldersInput"];
1581
+ userId: string;
1582
+ rights: ValueTypes["Rights"];
1583
+ },
1584
+ ValueTypes["ShareFolderFinishResult"]
1585
+ ];
1586
+ shareVFile?: [
1587
+ {
1588
+ vFileId: string;
1589
+ userId: string;
1590
+ nameKey: string;
1591
+ rights: ValueTypes["Rights"];
1592
+ history: ValueTypes["ShareFileKeyInput"][];
1593
+ },
1594
+ ValueTypes["ShareVFileResult"]
1595
+ ];
1509
1596
  unreadMail?: [{
1510
1597
  mailId: string;
1511
1598
  }, ValueTypes["UnreadMailResult"]];
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"]];
1599
+ updateAppNotifications?: [
1600
+ {
1601
+ enableAll?: boolean | null;
1602
+ mail?: boolean | null;
1603
+ cloud?: boolean | null;
1604
+ disableAllUntil?: ValueTypes["DateTime"] | null;
1605
+ },
1606
+ ValueTypes["UpdateAppNotificationsResult"]
1607
+ ];
1608
+ updateAppSettings?: [
1609
+ {
1610
+ cloudFileDaysForDelete?: number | null;
1611
+ cloudFolderDaysForDelete?: number | null;
1612
+ historyFileDaysForDelete?: number | null;
1613
+ historyMaxFileCount?: number | null;
1614
+ },
1615
+ ValueTypes["UpdateAppSettingsResult"]
1616
+ ];
1617
+ updateAutoDisconnectDelay?: [
1618
+ {
1619
+ userId?: string | null;
1620
+ delay?: number | null;
1621
+ },
1622
+ ValueTypes["UpdateAutoDisconnectDelayResult"]
1623
+ ];
1624
+ updateDraftMail?: [
1625
+ {
1626
+ draftId: string;
1627
+ hash?: string | null;
1628
+ hashKey?: string | null;
1629
+ body?: string | null;
1630
+ subject?: string | null;
1631
+ replyTo?: string | null;
1632
+ senderFiles?: ValueTypes["MailFileInput"][];
1633
+ recipients?: string[];
1634
+ },
1635
+ ValueTypes["UpdateDraftMailResult"]
1636
+ ];
1637
+ updateFile?: [
1638
+ {
1639
+ fileId: string;
1640
+ isFavorite?: boolean | null;
1641
+ filename?: string | null;
1642
+ deletedAt?: ValueTypes["DateTime"] | null;
1643
+ },
1644
+ ValueTypes["UpdateFileResult"]
1645
+ ];
1646
+ updateFolder?: [
1647
+ {
1648
+ folderId: string;
1649
+ name?: string | null;
1650
+ isFavorite?: boolean | null;
1651
+ deletedAt?: ValueTypes["DateTime"] | null;
1652
+ },
1653
+ ValueTypes["UpdateFolderResult"]
1654
+ ];
1655
+ updateProfile?: [
1656
+ {
1657
+ firstname?: string | null;
1658
+ lastname?: string | null;
1659
+ lang?: ValueTypes["Lang"] | null;
1660
+ },
1661
+ ValueTypes["UpdateProfileResult"]
1662
+ ];
1663
+ uploadAnonymous?: [
1664
+ {
1665
+ fileName: string;
1666
+ fileSize: number;
1667
+ fileSizeBefore: number;
1668
+ message?: string | null;
1669
+ pubKey: string;
1670
+ token: string;
1671
+ },
1672
+ ValueTypes["FileResponse"]
1673
+ ];
1674
+ uploadFile?: [
1675
+ {
1676
+ fileSize: ValueTypes["BigInt"];
1677
+ fileSizeBefore: ValueTypes["BigInt"];
1678
+ fileKey: string;
1679
+ md5: string;
1680
+ md5Encrypted: string;
1681
+ },
1682
+ ValueTypes["UploadFileResult"]
1683
+ ];
1570
1684
  uploadFileEnd?: [{
1571
1685
  fileId: string;
1572
1686
  }, ValueTypes["UploadFileEndResult"]];
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"]];
1687
+ uploadFilePartEnd?: [
1688
+ {
1689
+ fileId: string;
1690
+ md5: string;
1691
+ order: number;
1692
+ },
1693
+ ValueTypes["UploadFilePartEndResult"]
1694
+ ];
1695
+ changeUserPlan?: [
1696
+ {
1697
+ userId: string;
1698
+ plan: ValueTypes["PlanKind"];
1699
+ },
1700
+ ValueTypes["ChangeUserPlanResult"]
1701
+ ];
1582
1702
  __typename?: boolean;
1583
1703
  }>;
1584
1704
  ["Subscription"]: AliasType<{
@@ -2036,7 +2156,7 @@ export declare type ModelTypes = {
2036
2156
  deleteFolder?: boolean;
2037
2157
  };
2038
2158
  ["DeleteFolderCloudTrashResponse"]: {
2039
- deleteFolderCloudTrash?: boolean;
2159
+ deleteFolderCloudTrash: boolean;
2040
2160
  };
2041
2161
  ["DeleteFolderSharingResponse"]: {
2042
2162
  deleteFolderSharing: boolean;
@@ -2435,423 +2555,423 @@ export declare type GraphQLTypes = {
2435
2555
  ["Rights"]: Rights;
2436
2556
  ["AppNotificationsResult"]: {
2437
2557
  __typename: "UserAppNotifications" | "ErrorAccessDenied" | "ErrorNotFound";
2438
- ['...on UserAppNotifications']: '__union' & GraphQLTypes["UserAppNotifications"];
2439
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2440
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2558
+ ["...on UserAppNotifications"]: "__union" & GraphQLTypes["UserAppNotifications"];
2559
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2560
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2441
2561
  };
2442
2562
  ["BlogResult"]: {
2443
2563
  __typename: "BlogResponse" | "ErrorLangNotExist";
2444
- ['...on BlogResponse']: '__union' & GraphQLTypes["BlogResponse"];
2445
- ['...on ErrorLangNotExist']: '__union' & GraphQLTypes["ErrorLangNotExist"];
2564
+ ["...on BlogResponse"]: "__union" & GraphQLTypes["BlogResponse"];
2565
+ ["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
2446
2566
  };
2447
2567
  ["DbConfigResult"]: {
2448
2568
  __typename: "DbConfigResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorNotFound";
2449
- ['...on DbConfigResponse']: '__union' & GraphQLTypes["DbConfigResponse"];
2450
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2451
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2452
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2569
+ ["...on DbConfigResponse"]: "__union" & GraphQLTypes["DbConfigResponse"];
2570
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2571
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2572
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2453
2573
  };
2454
2574
  ["DbGetResult"]: {
2455
2575
  __typename: "DbGetResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist";
2456
- ['...on DbGetResponse']: '__union' & GraphQLTypes["DbGetResponse"];
2457
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2458
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2459
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2576
+ ["...on DbGetResponse"]: "__union" & GraphQLTypes["DbGetResponse"];
2577
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2578
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2579
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2460
2580
  };
2461
2581
  ["DbSearchResult"]: {
2462
2582
  __typename: "DbSearchResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
2463
- ['...on DbSearchResponse']: '__union' & GraphQLTypes["DbSearchResponse"];
2464
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2465
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2466
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2583
+ ["...on DbSearchResponse"]: "__union" & GraphQLTypes["DbSearchResponse"];
2584
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2585
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2586
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2467
2587
  };
2468
2588
  ["DeletedFoldersResult"]: {
2469
2589
  __typename: "DeletedFoldersResponse" | "ErrorAccessDenied";
2470
- ['...on DeletedFoldersResponse']: '__union' & GraphQLTypes["DeletedFoldersResponse"];
2471
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2590
+ ["...on DeletedFoldersResponse"]: "__union" & GraphQLTypes["DeletedFoldersResponse"];
2591
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2472
2592
  };
2473
2593
  ["DeletedMailsResult"]: {
2474
2594
  __typename: "DeletedMailsResponse" | "ErrorAccessDenied";
2475
- ['...on DeletedMailsResponse']: '__union' & GraphQLTypes["DeletedMailsResponse"];
2476
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2595
+ ["...on DeletedMailsResponse"]: "__union" & GraphQLTypes["DeletedMailsResponse"];
2596
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2477
2597
  };
2478
2598
  ["DeletedVFilesResult"]: {
2479
2599
  __typename: "DeletedVFilesResponse" | "ErrorAccessDenied";
2480
- ['...on DeletedVFilesResponse']: '__union' & GraphQLTypes["DeletedVFilesResponse"];
2481
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2600
+ ["...on DeletedVFilesResponse"]: "__union" & GraphQLTypes["DeletedVFilesResponse"];
2601
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2482
2602
  };
2483
2603
  ["FaqResult"]: {
2484
2604
  __typename: "FaqResponse" | "ErrorAccessDenied";
2485
- ['...on FaqResponse']: '__union' & GraphQLTypes["FaqResponse"];
2486
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2605
+ ["...on FaqResponse"]: "__union" & GraphQLTypes["FaqResponse"];
2606
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2487
2607
  };
2488
2608
  ["FileResult"]: {
2489
2609
  __typename: "FileQueryResponse" | "ErrorAccessDenied";
2490
- ['...on FileQueryResponse']: '__union' & GraphQLTypes["FileQueryResponse"];
2491
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2610
+ ["...on FileQueryResponse"]: "__union" & GraphQLTypes["FileQueryResponse"];
2611
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2492
2612
  };
2493
2613
  ["FileContentResult"]: {
2494
2614
  __typename: "FileContentResponse" | "ErrorAccessDenied" | "ErrorBasic";
2495
- ['...on FileContentResponse']: '__union' & GraphQLTypes["FileContentResponse"];
2496
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2497
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2615
+ ["...on FileContentResponse"]: "__union" & GraphQLTypes["FileContentResponse"];
2616
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2617
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2498
2618
  };
2499
2619
  ["FolderResult"]: {
2500
2620
  __typename: "FolderResponse" | "ErrorAccessDenied";
2501
- ['...on FolderResponse']: '__union' & GraphQLTypes["FolderResponse"];
2502
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2621
+ ["...on FolderResponse"]: "__union" & GraphQLTypes["FolderResponse"];
2622
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2503
2623
  };
2504
2624
  ["FolderSizeResult"]: {
2505
2625
  __typename: "FolderSizeResponse" | "ErrorAccessDenied";
2506
- ['...on FolderSizeResponse']: '__union' & GraphQLTypes["FolderSizeResponse"];
2507
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2626
+ ["...on FolderSizeResponse"]: "__union" & GraphQLTypes["FolderSizeResponse"];
2627
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2508
2628
  };
2509
2629
  ["FoldersSharedWithMeResult"]: {
2510
2630
  __typename: "FolderSharedWithMeResponse" | "ErrorAccessDenied";
2511
- ['...on FolderSharedWithMeResponse']: '__union' & GraphQLTypes["FolderSharedWithMeResponse"];
2512
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2631
+ ["...on FolderSharedWithMeResponse"]: "__union" & GraphQLTypes["FolderSharedWithMeResponse"];
2632
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2513
2633
  };
2514
2634
  ["LimitsResult"]: {
2515
2635
  __typename: "QueryLimits" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorNotExist" | "ErrorLimit";
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"];
2636
+ ["...on QueryLimits"]: "__union" & GraphQLTypes["QueryLimits"];
2637
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2638
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2639
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2640
+ ["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
2521
2641
  };
2522
2642
  ["MailResult"]: {
2523
2643
  __typename: "QueryMailResponse" | "ErrorAccessDenied";
2524
- ['...on QueryMailResponse']: '__union' & GraphQLTypes["QueryMailResponse"];
2525
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2644
+ ["...on QueryMailResponse"]: "__union" & GraphQLTypes["QueryMailResponse"];
2645
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2526
2646
  };
2527
2647
  ["PaymentInfosResult"]: {
2528
2648
  __typename: "PaymentInfosResponse" | "ErrorAccessDenied";
2529
- ['...on PaymentInfosResponse']: '__union' & GraphQLTypes["PaymentInfosResponse"];
2530
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2649
+ ["...on PaymentInfosResponse"]: "__union" & GraphQLTypes["PaymentInfosResponse"];
2650
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2531
2651
  };
2532
2652
  ["PlansResult"]: {
2533
2653
  __typename: "PlanResponse";
2534
- ['...on PlanResponse']: '__union' & GraphQLTypes["PlanResponse"];
2654
+ ["...on PlanResponse"]: "__union" & GraphQLTypes["PlanResponse"];
2535
2655
  };
2536
2656
  ["SharedFoldersResult"]: {
2537
2657
  __typename: "SharedFoldersResponse" | "ErrorAccessDenied";
2538
- ['...on SharedFoldersResponse']: '__union' & GraphQLTypes["SharedFoldersResponse"];
2539
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2658
+ ["...on SharedFoldersResponse"]: "__union" & GraphQLTypes["SharedFoldersResponse"];
2659
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2540
2660
  };
2541
2661
  ["SharedVFilesResult"]: {
2542
2662
  __typename: "SharedVFilesResponse" | "ErrorAccessDenied";
2543
- ['...on SharedVFilesResponse']: '__union' & GraphQLTypes["SharedVFilesResponse"];
2544
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2663
+ ["...on SharedVFilesResponse"]: "__union" & GraphQLTypes["SharedVFilesResponse"];
2664
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2545
2665
  };
2546
2666
  ["UnreadReceivedMailsCountResult"]: {
2547
2667
  __typename: "UnreadReceivedMailsCountResponse" | "ErrorAccessDenied";
2548
- ['...on UnreadReceivedMailsCountResponse']: '__union' & GraphQLTypes["UnreadReceivedMailsCountResponse"];
2549
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2668
+ ["...on UnreadReceivedMailsCountResponse"]: "__union" & GraphQLTypes["UnreadReceivedMailsCountResponse"];
2669
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2550
2670
  };
2551
2671
  ["UserResult"]: {
2552
2672
  __typename: "UserResponse" | "ErrorNotFound";
2553
- ['...on UserResponse']: '__union' & GraphQLTypes["UserResponse"];
2554
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2673
+ ["...on UserResponse"]: "__union" & GraphQLTypes["UserResponse"];
2674
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2555
2675
  };
2556
2676
  ["VFileResult"]: {
2557
2677
  __typename: "VFileResponse" | "ErrorAccessDenied";
2558
- ['...on VFileResponse']: '__union' & GraphQLTypes["VFileResponse"];
2559
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2678
+ ["...on VFileResponse"]: "__union" & GraphQLTypes["VFileResponse"];
2679
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2560
2680
  };
2561
2681
  ["VFilesSharedWithMeResult"]: {
2562
2682
  __typename: "VFilesSharedWithMeResponse" | "ErrorAccessDenied";
2563
- ['...on VFilesSharedWithMeResponse']: '__union' & GraphQLTypes["VFilesSharedWithMeResponse"];
2564
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2683
+ ["...on VFilesSharedWithMeResponse"]: "__union" & GraphQLTypes["VFilesSharedWithMeResponse"];
2684
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2565
2685
  };
2566
2686
  ["UserListResult"]: {
2567
2687
  __typename: "UserListResponse" | "ErrorAccessDenied";
2568
- ['...on UserListResponse']: '__union' & GraphQLTypes["UserListResponse"];
2569
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2688
+ ["...on UserListResponse"]: "__union" & GraphQLTypes["UserListResponse"];
2689
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2570
2690
  };
2571
2691
  ["AddFileToHistoryResult"]: {
2572
2692
  __typename: "AddFileToHistoryResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2573
- ['...on AddFileToHistoryResponse']: '__union' & GraphQLTypes["AddFileToHistoryResponse"];
2574
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2575
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2693
+ ["...on AddFileToHistoryResponse"]: "__union" & GraphQLTypes["AddFileToHistoryResponse"];
2694
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2695
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2576
2696
  };
2577
2697
  ["CancelPaymentResult"]: {
2578
2698
  __typename: "CancelPaymentResponse" | "ErrorAccessDenied";
2579
- ['...on CancelPaymentResponse']: '__union' & GraphQLTypes["CancelPaymentResponse"];
2580
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2699
+ ["...on CancelPaymentResponse"]: "__union" & GraphQLTypes["CancelPaymentResponse"];
2700
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2581
2701
  };
2582
2702
  ["CreateApplicationResult"]: {
2583
2703
  __typename: "CreateApplicationResponse" | "ErrorNotExist";
2584
- ['...on CreateApplicationResponse']: '__union' & GraphQLTypes["CreateApplicationResponse"];
2585
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2704
+ ["...on CreateApplicationResponse"]: "__union" & GraphQLTypes["CreateApplicationResponse"];
2705
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2586
2706
  };
2587
2707
  ["CreateDraftMailResult"]: {
2588
2708
  __typename: "CreateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
2589
- ['...on CreateDraftMailResponse']: '__union' & GraphQLTypes["CreateDraftMailResponse"];
2590
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2591
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2709
+ ["...on CreateDraftMailResponse"]: "__union" & GraphQLTypes["CreateDraftMailResponse"];
2710
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2711
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2592
2712
  };
2593
2713
  ["CreateFolderResult"]: {
2594
2714
  __typename: "CreateFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2595
- ['...on CreateFolderResponse']: '__union' & GraphQLTypes["CreateFolderResponse"];
2596
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2597
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2715
+ ["...on CreateFolderResponse"]: "__union" & GraphQLTypes["CreateFolderResponse"];
2716
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2717
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2598
2718
  };
2599
2719
  ["DbConfigMutationResult"]: {
2600
2720
  __typename: "DbConfigMutationResponse" | "ErrorAccessDenied";
2601
- ['...on DbConfigMutationResponse']: '__union' & GraphQLTypes["DbConfigMutationResponse"];
2602
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2721
+ ["...on DbConfigMutationResponse"]: "__union" & GraphQLTypes["DbConfigMutationResponse"];
2722
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2603
2723
  };
2604
2724
  ["DbSetResult"]: {
2605
2725
  __typename: "DbSetResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2606
- ['...on DbSetResponse']: '__union' & GraphQLTypes["DbSetResponse"];
2607
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2608
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2726
+ ["...on DbSetResponse"]: "__union" & GraphQLTypes["DbSetResponse"];
2727
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2728
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2609
2729
  };
2610
2730
  ["DeleteDraftMailResult"]: {
2611
2731
  __typename: "DeleteDraftMailResponse" | "ErrorAccessDenied";
2612
- ['...on DeleteDraftMailResponse']: '__union' & GraphQLTypes["DeleteDraftMailResponse"];
2613
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2732
+ ["...on DeleteDraftMailResponse"]: "__union" & GraphQLTypes["DeleteDraftMailResponse"];
2733
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2614
2734
  };
2615
2735
  ["DeleteFileResult"]: {
2616
2736
  __typename: "DeleteFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2617
- ['...on DeleteFileResponse']: '__union' & GraphQLTypes["DeleteFileResponse"];
2618
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2619
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2737
+ ["...on DeleteFileResponse"]: "__union" & GraphQLTypes["DeleteFileResponse"];
2738
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2739
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2620
2740
  };
2621
2741
  ["DeleteFolderResult"]: {
2622
2742
  __typename: "DeleteFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2623
- ['...on DeleteFolderResponse']: '__union' & GraphQLTypes["DeleteFolderResponse"];
2624
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2625
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2743
+ ["...on DeleteFolderResponse"]: "__union" & GraphQLTypes["DeleteFolderResponse"];
2744
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2745
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2626
2746
  };
2627
2747
  ["DeleteFolderCloudTrashResult"]: {
2628
2748
  __typename: "DeleteFolderCloudTrashResponse" | "ErrorAccessDenied";
2629
- ['...on DeleteFolderCloudTrashResponse']: '__union' & GraphQLTypes["DeleteFolderCloudTrashResponse"];
2630
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2749
+ ["...on DeleteFolderCloudTrashResponse"]: "__union" & GraphQLTypes["DeleteFolderCloudTrashResponse"];
2750
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2631
2751
  };
2632
2752
  ["DeleteFolderSharingResult"]: {
2633
2753
  __typename: "DeleteFolderSharingResponse" | "ErrorAccessDenied";
2634
- ['...on DeleteFolderSharingResponse']: '__union' & GraphQLTypes["DeleteFolderSharingResponse"];
2635
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2754
+ ["...on DeleteFolderSharingResponse"]: "__union" & GraphQLTypes["DeleteFolderSharingResponse"];
2755
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2636
2756
  };
2637
2757
  ["DeleteMailResult"]: {
2638
2758
  __typename: "DeleteMailResponse" | "ErrorAccessDenied";
2639
- ['...on DeleteMailResponse']: '__union' & GraphQLTypes["DeleteMailResponse"];
2640
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2759
+ ["...on DeleteMailResponse"]: "__union" & GraphQLTypes["DeleteMailResponse"];
2760
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2641
2761
  };
2642
2762
  ["DeleteMailTrashResult"]: {
2643
2763
  __typename: "DeleteMailTrashResponse" | "ErrorAccessDenied";
2644
- ['...on DeleteMailTrashResponse']: '__union' & GraphQLTypes["DeleteMailTrashResponse"];
2645
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2764
+ ["...on DeleteMailTrashResponse"]: "__union" & GraphQLTypes["DeleteMailTrashResponse"];
2765
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2646
2766
  };
2647
2767
  ["DeleteUserResult"]: {
2648
2768
  __typename: "DeleteUserResponse" | "ErrorAccessDenied";
2649
- ['...on DeleteUserResponse']: '__union' & GraphQLTypes["DeleteUserResponse"];
2650
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2769
+ ["...on DeleteUserResponse"]: "__union" & GraphQLTypes["DeleteUserResponse"];
2770
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2651
2771
  };
2652
2772
  ["DeleteVFileResult"]: {
2653
2773
  __typename: "DeleteVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2654
- ['...on DeleteVFileResponse']: '__union' & GraphQLTypes["DeleteVFileResponse"];
2655
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2656
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2774
+ ["...on DeleteVFileResponse"]: "__union" & GraphQLTypes["DeleteVFileResponse"];
2775
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2776
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2657
2777
  };
2658
2778
  ["DeleteVFileCloudTrashResult"]: {
2659
2779
  __typename: "DeleteVFileCloudTrashResponse" | "ErrorAccessDenied";
2660
- ['...on DeleteVFileCloudTrashResponse']: '__union' & GraphQLTypes["DeleteVFileCloudTrashResponse"];
2661
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2780
+ ["...on DeleteVFileCloudTrashResponse"]: "__union" & GraphQLTypes["DeleteVFileCloudTrashResponse"];
2781
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2662
2782
  };
2663
2783
  ["DeleteVFileSharingResult"]: {
2664
2784
  __typename: "DeleteVFileSharingResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2665
- ['...on DeleteVFileSharingResponse']: '__union' & GraphQLTypes["DeleteVFileSharingResponse"];
2666
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2667
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2785
+ ["...on DeleteVFileSharingResponse"]: "__union" & GraphQLTypes["DeleteVFileSharingResponse"];
2786
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2787
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2668
2788
  };
2669
2789
  ["DuplicateVFileResult"]: {
2670
2790
  __typename: "DuplicateVFileResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2671
- ['...on DuplicateVFileResponse']: '__union' & GraphQLTypes["DuplicateVFileResponse"];
2672
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2673
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2791
+ ["...on DuplicateVFileResponse"]: "__union" & GraphQLTypes["DuplicateVFileResponse"];
2792
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2793
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2674
2794
  };
2675
2795
  ["EmptyCloudTrashResult"]: {
2676
2796
  __typename: "DeleteMailResponse" | "ErrorAccessDenied";
2677
- ['...on DeleteMailResponse']: '__union' & GraphQLTypes["DeleteMailResponse"];
2678
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2797
+ ["...on DeleteMailResponse"]: "__union" & GraphQLTypes["DeleteMailResponse"];
2798
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2679
2799
  };
2680
2800
  ["EmptyMailTrashResult"]: {
2681
2801
  __typename: "EmptyMailTrashResponse" | "ErrorAccessDenied";
2682
- ['...on EmptyMailTrashResponse']: '__union' & GraphQLTypes["EmptyMailTrashResponse"];
2683
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2802
+ ["...on EmptyMailTrashResponse"]: "__union" & GraphQLTypes["EmptyMailTrashResponse"];
2803
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2684
2804
  };
2685
2805
  ["LogoutResult"]: {
2686
2806
  __typename: "LogoutResponse" | "ErrorAccessDenied" | "ErrorBasic";
2687
- ['...on LogoutResponse']: '__union' & GraphQLTypes["LogoutResponse"];
2688
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2689
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2807
+ ["...on LogoutResponse"]: "__union" & GraphQLTypes["LogoutResponse"];
2808
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2809
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2690
2810
  };
2691
2811
  ["MoveFilesResult"]: {
2692
2812
  __typename: "MoveFilesResponse" | "ErrorAccessDenied";
2693
- ['...on MoveFilesResponse']: '__union' & GraphQLTypes["MoveFilesResponse"];
2694
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2813
+ ["...on MoveFilesResponse"]: "__union" & GraphQLTypes["MoveFilesResponse"];
2814
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2695
2815
  };
2696
2816
  ["MoveFoldersResult"]: {
2697
2817
  __typename: "MoveFoldersResponse" | "ErrorAccessDenied";
2698
- ['...on MoveFoldersResponse']: '__union' & GraphQLTypes["MoveFoldersResponse"];
2699
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2818
+ ["...on MoveFoldersResponse"]: "__union" & GraphQLTypes["MoveFoldersResponse"];
2819
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2700
2820
  };
2701
2821
  ["PayResult"]: {
2702
2822
  __typename: "PayResponse" | "ErrorAccessDenied";
2703
- ['...on PayResponse']: '__union' & GraphQLTypes["PayResponse"];
2704
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2823
+ ["...on PayResponse"]: "__union" & GraphQLTypes["PayResponse"];
2824
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2705
2825
  };
2706
2826
  ["ReadMailResult"]: {
2707
2827
  __typename: "ReadMailResponse" | "ErrorAccessDenied" | "ErrorBasic" | "ErrorNotFound";
2708
- ['...on ReadMailResponse']: '__union' & GraphQLTypes["ReadMailResponse"];
2709
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2710
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2711
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2828
+ ["...on ReadMailResponse"]: "__union" & GraphQLTypes["ReadMailResponse"];
2829
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2830
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2831
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2712
2832
  };
2713
2833
  ["RecoverFolderResult"]: {
2714
2834
  __typename: "RecoverFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2715
- ['...on RecoverFolderResponse']: '__union' & GraphQLTypes["RecoverFolderResponse"];
2716
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2717
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2835
+ ["...on RecoverFolderResponse"]: "__union" & GraphQLTypes["RecoverFolderResponse"];
2836
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2837
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2718
2838
  };
2719
2839
  ["RecoverMailResult"]: {
2720
2840
  __typename: "RecoverMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
2721
- ['...on RecoverMailResponse']: '__union' & GraphQLTypes["RecoverMailResponse"];
2722
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2723
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2841
+ ["...on RecoverMailResponse"]: "__union" & GraphQLTypes["RecoverMailResponse"];
2842
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2843
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2724
2844
  };
2725
2845
  ["RecoverVFileResult"]: {
2726
2846
  __typename: "RecoverVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2727
- ['...on RecoverVFileResponse']: '__union' & GraphQLTypes["RecoverVFileResponse"];
2728
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2729
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2847
+ ["...on RecoverVFileResponse"]: "__union" & GraphQLTypes["RecoverVFileResponse"];
2848
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2849
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2730
2850
  };
2731
2851
  ["SaveInCloudResult"]: {
2732
2852
  __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"];
2853
+ ["...on SaveInCloudResponse"]: "__union" & GraphQLTypes["SaveInCloudResponse"];
2854
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2855
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2856
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2857
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2858
+ ["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
2739
2859
  };
2740
2860
  ["SendDraftMailResult"]: {
2741
2861
  __typename: "SendDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
2742
- ['...on SendDraftMailResponse']: '__union' & GraphQLTypes["SendDraftMailResponse"];
2743
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2744
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2862
+ ["...on SendDraftMailResponse"]: "__union" & GraphQLTypes["SendDraftMailResponse"];
2863
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2864
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2745
2865
  };
2746
2866
  ["SendOneMailResult"]: {
2747
2867
  __typename: "RecoverFolderResponse" | "ErrorAccessDenied" | "ErrorBasic";
2748
- ['...on RecoverFolderResponse']: '__union' & GraphQLTypes["RecoverFolderResponse"];
2749
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2750
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2868
+ ["...on RecoverFolderResponse"]: "__union" & GraphQLTypes["RecoverFolderResponse"];
2869
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2870
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2751
2871
  };
2752
2872
  ["SendReportResult"]: {
2753
2873
  __typename: "SendReportResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2754
- ['...on SendReportResponse']: '__union' & GraphQLTypes["SendReportResponse"];
2755
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2756
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2874
+ ["...on SendReportResponse"]: "__union" & GraphQLTypes["SendReportResponse"];
2875
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2876
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2757
2877
  };
2758
2878
  ["ShareFileInHistoryResult"]: {
2759
2879
  __typename: "ShareFileInHistoryResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2760
- ['...on ShareFileInHistoryResponse']: '__union' & GraphQLTypes["ShareFileInHistoryResponse"];
2761
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2762
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2880
+ ["...on ShareFileInHistoryResponse"]: "__union" & GraphQLTypes["ShareFileInHistoryResponse"];
2881
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2882
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2763
2883
  };
2764
2884
  ["ShareFolderResult"]: {
2765
2885
  __typename: "ShareFolderResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2766
- ['...on ShareFolderResponse']: '__union' & GraphQLTypes["ShareFolderResponse"];
2767
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2768
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2886
+ ["...on ShareFolderResponse"]: "__union" & GraphQLTypes["ShareFolderResponse"];
2887
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2888
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2769
2889
  };
2770
2890
  ["ShareFolderFinishResult"]: {
2771
2891
  __typename: "ShareFolderFinishResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2772
- ['...on ShareFolderFinishResponse']: '__union' & GraphQLTypes["ShareFolderFinishResponse"];
2773
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2774
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2892
+ ["...on ShareFolderFinishResponse"]: "__union" & GraphQLTypes["ShareFolderFinishResponse"];
2893
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2894
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2775
2895
  };
2776
2896
  ["ShareVFileResult"]: {
2777
2897
  __typename: "ShareVFileResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorNotFound";
2778
- ['...on ShareVFileResponse']: '__union' & GraphQLTypes["ShareVFileResponse"];
2779
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2780
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2781
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2898
+ ["...on ShareVFileResponse"]: "__union" & GraphQLTypes["ShareVFileResponse"];
2899
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2900
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2901
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2782
2902
  };
2783
2903
  ["UnreadMailResult"]: {
2784
2904
  __typename: "UnreadMailResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorBasic";
2785
- ['...on UnreadMailResponse']: '__union' & GraphQLTypes["UnreadMailResponse"];
2786
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2787
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2788
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2905
+ ["...on UnreadMailResponse"]: "__union" & GraphQLTypes["UnreadMailResponse"];
2906
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2907
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2908
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2789
2909
  };
2790
2910
  ["UpdateAppNotificationsResult"]: {
2791
2911
  __typename: "UpdateAppNotificationsResponse" | "ErrorAccessDenied";
2792
- ['...on UpdateAppNotificationsResponse']: '__union' & GraphQLTypes["UpdateAppNotificationsResponse"];
2793
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2912
+ ["...on UpdateAppNotificationsResponse"]: "__union" & GraphQLTypes["UpdateAppNotificationsResponse"];
2913
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2794
2914
  };
2795
2915
  ["UpdateAppSettingsResult"]: {
2796
2916
  __typename: "UpdateAppSettingsResponse" | "ErrorAccessDenied" | "ErrorBasic";
2797
- ['...on UpdateAppSettingsResponse']: '__union' & GraphQLTypes["UpdateAppSettingsResponse"];
2798
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2799
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2917
+ ["...on UpdateAppSettingsResponse"]: "__union" & GraphQLTypes["UpdateAppSettingsResponse"];
2918
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2919
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2800
2920
  };
2801
2921
  ["UpdateAutoDisconnectDelayResult"]: {
2802
2922
  __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"];
2923
+ ["...on UpdateAutoDisconnectDelayResponse"]: "__union" & GraphQLTypes["UpdateAutoDisconnectDelayResponse"];
2924
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2925
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2926
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2807
2927
  };
2808
2928
  ["UpdateDraftMailResult"]: {
2809
2929
  __typename: "UpdateDraftMailResponse" | "ErrorAccessDenied" | "ErrorBasic";
2810
- ['...on UpdateDraftMailResponse']: '__union' & GraphQLTypes["UpdateDraftMailResponse"];
2811
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2812
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2930
+ ["...on UpdateDraftMailResponse"]: "__union" & GraphQLTypes["UpdateDraftMailResponse"];
2931
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2932
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2813
2933
  };
2814
2934
  ["UpdateFileResult"]: {
2815
2935
  __typename: "UpdateFileResponse" | "ErrorAccessDenied" | "ErrorNotExist" | "ErrorBasic";
2816
- ['...on UpdateFileResponse']: '__union' & GraphQLTypes["UpdateFileResponse"];
2817
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2818
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2819
- ['...on ErrorBasic']: '__union' & GraphQLTypes["ErrorBasic"];
2936
+ ["...on UpdateFileResponse"]: "__union" & GraphQLTypes["UpdateFileResponse"];
2937
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2938
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2939
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2820
2940
  };
2821
2941
  ["UpdateFolderResult"]: {
2822
2942
  __typename: "UpdateFolderResponse" | "ErrorAccessDenied" | "ErrorNotExist";
2823
- ['...on UpdateFolderResponse']: '__union' & GraphQLTypes["UpdateFolderResponse"];
2824
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2825
- ['...on ErrorNotExist']: '__union' & GraphQLTypes["ErrorNotExist"];
2943
+ ["...on UpdateFolderResponse"]: "__union" & GraphQLTypes["UpdateFolderResponse"];
2944
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2945
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
2826
2946
  };
2827
2947
  ["UpdateProfileResult"]: {
2828
2948
  __typename: "UpdateProfileResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2829
- ['...on UpdateProfileResponse']: '__union' & GraphQLTypes["UpdateProfileResponse"];
2830
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2831
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2949
+ ["...on UpdateProfileResponse"]: "__union" & GraphQLTypes["UpdateProfileResponse"];
2950
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2951
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2832
2952
  };
2833
2953
  ["UploadFileResult"]: {
2834
2954
  __typename: "UploadFileResponse" | "ErrorAccessDenied" | "ErrorNotFound" | "ErrorLimit";
2835
- ['...on UploadFileResponse']: '__union' & GraphQLTypes["UploadFileResponse"];
2836
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2837
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2838
- ['...on ErrorLimit']: '__union' & GraphQLTypes["ErrorLimit"];
2955
+ ["...on UploadFileResponse"]: "__union" & GraphQLTypes["UploadFileResponse"];
2956
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2957
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2958
+ ["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
2839
2959
  };
2840
2960
  ["UploadFileEndResult"]: {
2841
2961
  __typename: "UploadFileEndResponse" | "ErrorAccessDenied" | "ErrorNotFound";
2842
- ['...on UploadFileEndResponse']: '__union' & GraphQLTypes["UploadFileEndResponse"];
2843
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2844
- ['...on ErrorNotFound']: '__union' & GraphQLTypes["ErrorNotFound"];
2962
+ ["...on UploadFileEndResponse"]: "__union" & GraphQLTypes["UploadFileEndResponse"];
2963
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2964
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
2845
2965
  };
2846
2966
  ["UploadFilePartEndResult"]: {
2847
2967
  __typename: "UploadFilePartEndResponse" | "ErrorAccessDenied";
2848
- ['...on UploadFilePartEndResponse']: '__union' & GraphQLTypes["UploadFilePartEndResponse"];
2849
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2968
+ ["...on UploadFilePartEndResponse"]: "__union" & GraphQLTypes["UploadFilePartEndResponse"];
2969
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2850
2970
  };
2851
2971
  ["ChangeUserPlanResult"]: {
2852
2972
  __typename: "ChangeUserPlanResponse" | "ErrorAccessDenied";
2853
- ['...on ChangeUserPlanResponse']: '__union' & GraphQLTypes["ChangeUserPlanResponse"];
2854
- ['...on ErrorAccessDenied']: '__union' & GraphQLTypes["ErrorAccessDenied"];
2973
+ ["...on ChangeUserPlanResponse"]: "__union" & GraphQLTypes["ChangeUserPlanResponse"];
2974
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
2855
2975
  };
2856
2976
  ["AppKeyPair"]: {
2857
2977
  __typename: "AppKeyPair";
@@ -2923,13 +3043,13 @@ export declare type GraphQLTypes = {
2923
3043
  };
2924
3044
  ["Error"]: {
2925
3045
  __typename: "ErrorAccessDenied" | "ErrorNotFound" | "ErrorUpgradePlan" | "ErrorLangNotExist" | "ErrorNotExist" | "ErrorLimit" | "ErrorBasic";
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"];
3046
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
3047
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
3048
+ ["...on ErrorUpgradePlan"]: "__union" & GraphQLTypes["ErrorUpgradePlan"];
3049
+ ["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
3050
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
3051
+ ["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
3052
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
2933
3053
  };
2934
3054
  ["ErrorAccessDenied"]: {
2935
3055
  __typename: "ErrorAccessDenied";
@@ -2938,13 +3058,13 @@ export declare type GraphQLTypes = {
2938
3058
  ["ErrorBase"]: {
2939
3059
  __typename: "ErrorAccessDenied" | "ErrorBasic" | "ErrorLangNotExist" | "ErrorLimit" | "ErrorNotExist" | "ErrorNotFound" | "ErrorUpgradePlan";
2940
3060
  message: string;
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"];
3061
+ ["...on ErrorAccessDenied"]: "__union" & GraphQLTypes["ErrorAccessDenied"];
3062
+ ["...on ErrorBasic"]: "__union" & GraphQLTypes["ErrorBasic"];
3063
+ ["...on ErrorLangNotExist"]: "__union" & GraphQLTypes["ErrorLangNotExist"];
3064
+ ["...on ErrorLimit"]: "__union" & GraphQLTypes["ErrorLimit"];
3065
+ ["...on ErrorNotExist"]: "__union" & GraphQLTypes["ErrorNotExist"];
3066
+ ["...on ErrorNotFound"]: "__union" & GraphQLTypes["ErrorNotFound"];
3067
+ ["...on ErrorUpgradePlan"]: "__union" & GraphQLTypes["ErrorUpgradePlan"];
2948
3068
  };
2949
3069
  ["ErrorBasic"]: {
2950
3070
  __typename: "ErrorBasic";
@@ -3012,9 +3132,9 @@ export declare type GraphQLTypes = {
3012
3132
  };
3013
3133
  ["FileContent"]: {
3014
3134
  __typename: "FileContentCloud" | "FileContentReceivedMail" | "FileContentSentMail";
3015
- ['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
3016
- ['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
3017
- ['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
3135
+ ["...on FileContentCloud"]: "__union" & GraphQLTypes["FileContentCloud"];
3136
+ ["...on FileContentReceivedMail"]: "__union" & GraphQLTypes["FileContentReceivedMail"];
3137
+ ["...on FileContentSentMail"]: "__union" & GraphQLTypes["FileContentSentMail"];
3018
3138
  };
3019
3139
  ["FileContentBase"]: {
3020
3140
  __typename: "FileContentCloud" | "FileContentReceivedMail" | "FileContentSentMail";
@@ -3024,9 +3144,9 @@ export declare type GraphQLTypes = {
3024
3144
  md5Encrypted: string;
3025
3145
  totalSize: GraphQLTypes["BigInt"];
3026
3146
  type: GraphQLTypes["FileContentType"];
3027
- ['...on FileContentCloud']: '__union' & GraphQLTypes["FileContentCloud"];
3028
- ['...on FileContentReceivedMail']: '__union' & GraphQLTypes["FileContentReceivedMail"];
3029
- ['...on FileContentSentMail']: '__union' & GraphQLTypes["FileContentSentMail"];
3147
+ ["...on FileContentCloud"]: "__union" & GraphQLTypes["FileContentCloud"];
3148
+ ["...on FileContentReceivedMail"]: "__union" & GraphQLTypes["FileContentReceivedMail"];
3149
+ ["...on FileContentSentMail"]: "__union" & GraphQLTypes["FileContentSentMail"];
3030
3150
  };
3031
3151
  ["FileContentCloud"]: {
3032
3152
  __typename: "FileContentCloud";
@@ -3347,7 +3467,7 @@ export declare type GraphQLTypes = {
3347
3467
  };
3348
3468
  ["DeleteFolderCloudTrashResponse"]: {
3349
3469
  __typename: "DeleteFolderCloudTrashResponse";
3350
- deleteFolderCloudTrash?: boolean;
3470
+ deleteFolderCloudTrash: boolean;
3351
3471
  };
3352
3472
  ["DeleteFolderSharingResponse"]: {
3353
3473
  __typename: "DeleteFolderSharingResponse";
@@ -3880,13 +4000,13 @@ declare type IsPayLoad<T> = T extends [any, infer PayLoad] ? PayLoad : T;
3880
4000
  declare type IsArray<T, U> = T extends Array<infer R> ? InputType<R, U>[] : InputType<T, U>;
3881
4001
  declare type FlattenArray<T> = T extends Array<infer R> ? R : T;
3882
4002
  declare type IsInterfaced<SRC extends DeepAnify<DST>, DST> = FlattenArray<SRC> extends ZEUS_INTERFACES | ZEUS_UNIONS ? {
3883
- [P in keyof SRC]: SRC[P] extends '__union' & infer R ? P extends keyof DST ? IsArray<R, '__typename' extends keyof DST ? DST[P] & {
4003
+ [P in keyof SRC]: SRC[P] extends "__union" & infer R ? P extends keyof DST ? IsArray<R, "__typename" extends keyof DST ? DST[P] & {
3884
4004
  __typename: true;
3885
4005
  } : DST[P]> : {} : never;
3886
4006
  }[keyof DST] & {
3887
4007
  [P in keyof Omit<Pick<SRC, {
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]>;
4008
+ [P in keyof DST]: SRC[P] extends "__union" ? never : P;
4009
+ }[keyof DST]>, "__typename">]: IsPayLoad<DST[P]> extends boolean ? SRC[P] : IsArray<SRC[P], DST[P]>;
3890
4010
  } : {
3891
4011
  [P in keyof Pick<SRC, keyof DST>]: IsPayLoad<DST[P]> extends boolean ? SRC[P] : IsArray<SRC[P], DST[P]>;
3892
4012
  };
@@ -3895,7 +4015,7 @@ export declare type InputType<SRC, DST> = IsPayLoad<DST> extends {
3895
4015
  __alias: infer R;
3896
4016
  } ? {
3897
4017
  [P in keyof R]: MapType<SRC, R[P]>;
3898
- } & MapType<SRC, Omit<IsPayLoad<DST>, '__alias'>> : MapType<SRC, IsPayLoad<DST>>;
4018
+ } & MapType<SRC, Omit<IsPayLoad<DST>, "__alias">> : MapType<SRC, IsPayLoad<DST>>;
3899
4019
  declare type Func<P extends any[], R> = (...args: P) => R;
3900
4020
  declare type AnyFunc = Func<any, any>;
3901
4021
  export declare type ArgsType<F extends AnyFunc> = F extends Func<infer P, any> ? P : never;
@@ -3937,9 +4057,9 @@ export declare const TypesPropsResolver: ({ value, type, name, key, blockArrays
3937
4057
  key?: string | undefined;
3938
4058
  blockArrays?: boolean | undefined;
3939
4059
  }) => string;
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;
4060
+ export declare const queryConstruct: (t: "query" | "mutation" | "subscription", tName: string, operationName?: string | undefined) => (o: Record<any, any>) => string;
4061
+ export declare const fullChainConstruct: (fn: FetchFunction) => (t: "query" | "mutation" | "subscription", tName: string) => (o: Record<any, any>, options?: OperationOptions | undefined) => Promise<any>;
4062
+ export declare const fullSubscriptionConstruct: (fn: SubscriptionFunction) => (t: "query" | "mutation" | "subscription", tName: string) => (o: Record<any, any>, options?: OperationOptions | undefined) => any;
3943
4063
  export declare const $: (t: TemplateStringsArray) => any;
3944
4064
  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;
3945
4065
  export declare const apiFetch: (options: [input: RequestInfo, init?: RequestInit | undefined]) => (query: string, variables?: Record<string, any>) => Promise<Record<string, any> | undefined>;
@@ -3950,7 +4070,7 @@ export declare const apiSubscription: (options: chainOptions) => (query: string)
3950
4070
  error: (e: (args: any) => void) => void;
3951
4071
  open: (e: () => void) => void;
3952
4072
  };
3953
- export declare type GenericOperation<O> = O extends 'query' ? "Query" : O extends 'mutation' ? "Mutation" : "Subscription";
4073
+ export declare type GenericOperation<O> = O extends "query" ? "Query" : O extends "mutation" ? "Mutation" : "Subscription";
3954
4074
  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>>;
3955
4075
  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>>;
3956
4076
  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]>;