Skip to content

Commit 274d27d

Browse files
Merge pull request #158 from internxt/release/2.6.0-cleaner
Release/2.6.0 cleaner
2 parents aa55609 + 5fede1d commit 274d27d

80 files changed

Lines changed: 6924 additions & 268 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/macos-build-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
SLACK_WEBHOOK_MAC_TEAM: ${{secrets.SLACK_WEBHOOK_MAC_TEAM}}
1010
jobs:
1111
build:
12-
runs-on: macos-14
12+
runs-on: macos-15
1313
steps:
1414

1515
- name: Checkout code
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
//
2+
// CleanerHelperXPCProtocol.swift
3+
// Helper
4+
//
5+
// Created by Patricio Tovar on 28/8/25.
6+
//
7+
8+
import Foundation
9+
10+
@objc protocol CleanerHelperXPCProtocol {
11+
func scanCategories(categoriesData: Data,
12+
optionsData: Data?,
13+
reply: @escaping (Data?, NSError?) -> Void)
14+
15+
16+
func startCleanupWithProgress(categoriesData: Data,
17+
optionsData: Data?,
18+
reply: @escaping (String, NSError?) -> Void)
19+
20+
func getCleanupProgress(operationId: String,
21+
reply: @escaping (Data?, NSError?) -> Void)
22+
23+
func getCleanupResult(operationId: String,
24+
reply: @escaping (Data?, NSError?) -> Void)
25+
26+
27+
28+
func startCleanupWithSpecificFilesProgress(cleanupData: Data,
29+
optionsData: Data?,
30+
reply: @escaping (String, NSError?) -> Void)
31+
32+
func getFilesForCategory(categoryData: Data,
33+
optionsData: Data?,
34+
reply: @escaping (Data?, NSError?) -> Void)
35+
36+
func cancelOperation(reply: @escaping () -> Void)
37+
}

0 commit comments

Comments
 (0)