Skip to content

Commit 57f34dd

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (141.0.20250621050419)
1 parent 274204a commit 57f34dd

File tree

5 files changed

+78
-7
lines changed

5 files changed

+78
-7
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// swift-tools-version:5.4
22
import PackageDescription
33

4-
let checksum = "745af9a86017d2ff5979d9078ebe9dece95aa6b8a29ad2e7d1da8d7f872ea1ea"
5-
let version = "141.0.20250620050336"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250620050336/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "9f86b76d51c2d1f617a8a6846a14e8bfc032744694ddf593bee131848aa1252c"
5+
let version = "141.0.20250621050419"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250621050419/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "ea0b60aa67c427ea99e5fd40ed7e073d03cfe6b835b4fab90ce12ca2961e4506"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250620050336/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "beb9a56513e8ff6b6792edffd8a8cef1874803eca38893d86a7855a77b12e66f"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250621050419/artifacts/public/build/FocusRustComponents.xcframework.zip"
1111
let package = Package(
1212
name: "MozillaRustComponentsSwift",
1313
platforms: [.iOS(.v14)],

swift-source/all/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 20, hour: 5, minute: 31, second: 52))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 21, hour: 5, minute: 23, second: 13))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/logins.swift

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -893,6 +893,12 @@ public protocol LoginStoreProtocol: AnyObject {
893893

894894
func addWithMeta(entryWithMeta: LoginEntryWithMeta) throws -> Login
895895

896+
func count() throws -> Int64
897+
898+
func countByFormActionOrigin(formActionOrigin: String) throws -> Int64
899+
900+
func countByOrigin(origin: String) throws -> Int64
901+
896902
func delete(id: String) throws -> Bool
897903

898904
func deleteMany(ids: [String]) throws -> [Bool]
@@ -1053,6 +1059,29 @@ open func addWithMeta(entryWithMeta: LoginEntryWithMeta)throws -> Login {
10531059
})
10541060
}
10551061

1062+
open func count()throws -> Int64 {
1063+
return try FfiConverterInt64.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1064+
uniffi_logins_fn_method_loginstore_count(self.uniffiClonePointer(),$0
1065+
)
1066+
})
1067+
}
1068+
1069+
open func countByFormActionOrigin(formActionOrigin: String)throws -> Int64 {
1070+
return try FfiConverterInt64.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1071+
uniffi_logins_fn_method_loginstore_count_by_form_action_origin(self.uniffiClonePointer(),
1072+
FfiConverterString.lower(formActionOrigin),$0
1073+
)
1074+
})
1075+
}
1076+
1077+
open func countByOrigin(origin: String)throws -> Int64 {
1078+
return try FfiConverterInt64.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1079+
uniffi_logins_fn_method_loginstore_count_by_origin(self.uniffiClonePointer(),
1080+
FfiConverterString.lower(origin),$0
1081+
)
1082+
})
1083+
}
1084+
10561085
open func delete(id: String)throws -> Bool {
10571086
return try FfiConverterBool.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
10581087
uniffi_logins_fn_method_loginstore_delete(self.uniffiClonePointer(),
@@ -2620,6 +2649,15 @@ private let initializationResult: InitializationResult = {
26202649
if (uniffi_logins_checksum_method_loginstore_add_with_meta() != 34738) {
26212650
return InitializationResult.apiChecksumMismatch
26222651
}
2652+
if (uniffi_logins_checksum_method_loginstore_count() != 59175) {
2653+
return InitializationResult.apiChecksumMismatch
2654+
}
2655+
if (uniffi_logins_checksum_method_loginstore_count_by_form_action_origin() != 11815) {
2656+
return InitializationResult.apiChecksumMismatch
2657+
}
2658+
if (uniffi_logins_checksum_method_loginstore_count_by_origin() != 37630) {
2659+
return InitializationResult.apiChecksumMismatch
2660+
}
26232661
if (uniffi_logins_checksum_method_loginstore_delete() != 44678) {
26242662
return InitializationResult.apiChecksumMismatch
26252663
}

swift-source/all/Generated/loginsFFI.h

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,21 @@ RustBuffer uniffi_logins_fn_method_loginstore_add_or_update(void*_Nonnull ptr, R
374374
RustBuffer uniffi_logins_fn_method_loginstore_add_with_meta(void*_Nonnull ptr, RustBuffer entry_with_meta, RustCallStatus *_Nonnull out_status
375375
);
376376
#endif
377+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT
378+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT
379+
int64_t uniffi_logins_fn_method_loginstore_count(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
380+
);
381+
#endif
382+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT_BY_FORM_ACTION_ORIGIN
383+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT_BY_FORM_ACTION_ORIGIN
384+
int64_t uniffi_logins_fn_method_loginstore_count_by_form_action_origin(void*_Nonnull ptr, RustBuffer form_action_origin, RustCallStatus *_Nonnull out_status
385+
);
386+
#endif
387+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT_BY_ORIGIN
388+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_COUNT_BY_ORIGIN
389+
int64_t uniffi_logins_fn_method_loginstore_count_by_origin(void*_Nonnull ptr, RustBuffer origin, RustCallStatus *_Nonnull out_status
390+
);
391+
#endif
377392
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_DELETE
378393
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_DELETE
379394
int8_t uniffi_logins_fn_method_loginstore_delete(void*_Nonnull ptr, RustBuffer id, RustCallStatus *_Nonnull out_status
@@ -882,6 +897,24 @@ uint16_t uniffi_logins_checksum_method_loginstore_add_or_update(void
882897
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_ADD_WITH_META
883898
uint16_t uniffi_logins_checksum_method_loginstore_add_with_meta(void
884899

900+
);
901+
#endif
902+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT
903+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT
904+
uint16_t uniffi_logins_checksum_method_loginstore_count(void
905+
906+
);
907+
#endif
908+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT_BY_FORM_ACTION_ORIGIN
909+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT_BY_FORM_ACTION_ORIGIN
910+
uint16_t uniffi_logins_checksum_method_loginstore_count_by_form_action_origin(void
911+
912+
);
913+
#endif
914+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT_BY_ORIGIN
915+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_COUNT_BY_ORIGIN
916+
uint16_t uniffi_logins_checksum_method_loginstore_count_by_origin(void
917+
885918
);
886919
#endif
887920
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_DELETE

swift-source/focus/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 20, hour: 5, minute: 31, second: 55))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 21, hour: 5, minute: 23, second: 15))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)