Skip to content

Commit ab13de5

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (132.0.20240920165843)
1 parent 4d1545d commit ab13de5

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
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 = "fa64b7a32bb81c1d44aaad6a5aac27f0317362f58d2988c6bac160af7b443d4f"
5-
let version = "132.0.20240920050326"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240920050326/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "5e7112c8a2fa2310bf118917966974fb8e25cb8245f4a7e7b435e05261a97676"
5+
let version = "132.0.20240920165843"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240920165843/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "51591becdd6d54c5d0bc2f78513817844fd9bcb7324e059af4f526077a386fee"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240920050326/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "4afb56307ffff45ff22b22e54daa1117eeaf8abd39f50cfc3385f38a1413cf44"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240920165843/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: 2024, month: 9, day: 20, hour: 5, minute: 16, second: 4))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 9, day: 20, hour: 17, minute: 24, second: 32))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ open class SuggestStore:
651651
/**
652652
* Creates a Suggest store.
653653
*/
654-
public convenience init(path: String, settingsConfig: RemoteSettingsConfig?)throws {
654+
public convenience init(path: String, settingsConfig: RemoteSettingsConfig? = nil)throws {
655655
let pointer =
656656
try rustCallWithError(FfiConverterTypeSuggestApiError.lift) {
657657
uniffi_suggest_fn_constructor_suggeststore_new(
@@ -738,7 +738,7 @@ open func ingest(constraints: SuggestIngestionConstraints)throws -> SuggestInge
738738
* bar, to ensure that they see fresh suggestions as they type. This
739739
* method does not interrupt any ongoing ingests.
740740
*/
741-
open func interrupt(kind: InterruptKind?) {try! rustCall() {
741+
open func interrupt(kind: InterruptKind? = nil) {try! rustCall() {
742742
uniffi_suggest_fn_method_suggeststore_interrupt(self.uniffiClonePointer(),
743743
FfiConverterOptionTypeInterruptKind.lower(kind),$0
744744
)
@@ -1199,11 +1199,11 @@ public struct SuggestIngestionConstraints {
11991199

12001200
// Default memberwise initializers are never public by default, so we
12011201
// declare one manually.
1202-
public init(providers: [SuggestionProvider]?, providerConstraints: SuggestionProviderConstraints?,
1202+
public init(providers: [SuggestionProvider]? = nil, providerConstraints: SuggestionProviderConstraints? = nil,
12031203
/**
12041204
* Only run ingestion if the table `suggestions` is empty
12051205

1206-
*/emptyOnly: Bool) {
1206+
*/emptyOnly: Bool = false) {
12071207
self.providers = providers
12081208
self.providerConstraints = providerConstraints
12091209
self.emptyOnly = emptyOnly
@@ -1354,7 +1354,7 @@ public struct SuggestionProviderConstraints {
13541354
* `Exposure` provider - For each desired exposure suggestion type, this
13551355
* should contain the value of the `suggestion_type` field of its remote
13561356
* settings record(s).
1357-
*/exposureSuggestionTypes: [String]?) {
1357+
*/exposureSuggestionTypes: [String]? = nil) {
13581358
self.exposureSuggestionTypes = exposureSuggestionTypes
13591359
}
13601360
}
@@ -1409,7 +1409,7 @@ public struct SuggestionQuery {
14091409

14101410
// Default memberwise initializers are never public by default, so we
14111411
// declare one manually.
1412-
public init(keyword: String, providers: [SuggestionProvider], providerConstraints: SuggestionProviderConstraints?, limit: Int32?) {
1412+
public init(keyword: String, providers: [SuggestionProvider], providerConstraints: SuggestionProviderConstraints? = nil, limit: Int32? = nil) {
14131413
self.keyword = keyword
14141414
self.providers = providers
14151415
self.providerConstraints = providerConstraints
@@ -2313,7 +2313,7 @@ private var initializationResult: InitializationResult = {
23132313
if (uniffi_suggest_checksum_method_suggeststore_ingest() != 35498) {
23142314
return InitializationResult.apiChecksumMismatch
23152315
}
2316-
if (uniffi_suggest_checksum_method_suggeststore_interrupt() != 39926) {
2316+
if (uniffi_suggest_checksum_method_suggeststore_interrupt() != 26986) {
23172317
return InitializationResult.apiChecksumMismatch
23182318
}
23192319
if (uniffi_suggest_checksum_method_suggeststore_query() != 856) {
@@ -2340,7 +2340,7 @@ private var initializationResult: InitializationResult = {
23402340
if (uniffi_suggest_checksum_method_suggeststorebuilder_remote_settings_server() != 19990) {
23412341
return InitializationResult.apiChecksumMismatch
23422342
}
2343-
if (uniffi_suggest_checksum_constructor_suggeststore_new() != 1459) {
2343+
if (uniffi_suggest_checksum_constructor_suggeststore_new() != 9768) {
23442344
return InitializationResult.apiChecksumMismatch
23452345
}
23462346
if (uniffi_suggest_checksum_constructor_suggeststorebuilder_new() != 1218) {

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: 2024, month: 9, day: 20, hour: 5, minute: 16, second: 7))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 9, day: 20, hour: 17, minute: 24, second: 35))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)