Skip to content

Commit

Permalink
Tutanota V77
Browse files Browse the repository at this point in the history
  • Loading branch information
ganthern committed Oct 25, 2024
1 parent f478004 commit 79e2a61
Show file tree
Hide file tree
Showing 20 changed files with 1,626 additions and 859 deletions.
3 changes: 1 addition & 2 deletions packages/node-mimimi/src/importer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use tutasdk::crypto::aes::Iv;
use tutasdk::crypto::key::{GenericAesKey, VersionedAesKey};
use tutasdk::crypto::randomizer_facade::RandomizerFacade;
use tutasdk::entities::tutanota::DraftCreateData;
use tutasdk::services::tutanota::DraftService;
use tutasdk::services::ExtraServiceParams;
use tutasdk::{ApiCallError, LoggedInSdk};

Expand Down Expand Up @@ -180,7 +179,7 @@ impl ImporterInner {
let draft_return_data = self
.logged_in_sdk
.get_service_executor()
.post::<DraftService>(create_draft_data, service_params)
.post::<ImportService>(create_draft_data, service_params)
.await
.expect("Cannot execute DraftService");

Expand Down
2 changes: 1 addition & 1 deletion src/common/api/entities/tutanota/ModelInfo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const modelInfo = {
version: 76,
version: 77,
compatibleSince: 76,
}

Expand Down
9 changes: 9 additions & 0 deletions src/common/api/entities/tutanota/Services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,15 @@ export const GroupInvitationService = Object.freeze({
delete: {data: GroupInvitationDeleteDataTypeRef, return: null},
} as const)

export const ImportMailService = Object.freeze({
app: "tutanota",
name: "ImportMailService",
get: null,
post: null,
put: null,
delete: null,
} as const)

export const ListUnsubscribeService = Object.freeze({
app: "tutanota",
name: "ListUnsubscribeService",
Expand Down
Loading

0 comments on commit 79e2a61

Please sign in to comment.