Skip to content

Commit bd03389

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (125.0.20240226160923)
1 parent e8697f9 commit bd03389

File tree

4 files changed

+21
-53
lines changed

4 files changed

+21
-53
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 = "4806c5a3d2f1f31cc3487028eff49d8e81fdf459c8c83ff182ed8158aa142219"
5-
let version = "125.0.20240222050253"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240222050253/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "9933556677d584404c87d3ad28f14e8aafbcc824b209a944e9a122d2b39d9590"
5+
let version = "125.0.20240226160923"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240226160923/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "0d199bbaa077d8f843ad7dcd0781907b3c6d3c6a4795cc90212d331fd03bd9d7"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240222050253/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "9be71e9b50e0819ea7f5e27a7531f78be20119be2adc78a13fbac1bf5c253ba9"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240226160923/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
@@ -25,7 +25,7 @@ extension GleanMetrics {
2525
// Intentionally left private, no external user can instantiate a new global object.
2626
}
2727

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 22, hour: 5, minute: 12, second: 56))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 26, hour: 16, minute: 27, second: 20))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/autofill.swift

Lines changed: 14 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -568,9 +568,7 @@ public func FfiConverterTypeStore_lower(_ value: Store) -> UnsafeMutableRawPoint
568568

569569
public struct Address {
570570
public var guid: String
571-
public var givenName: String
572-
public var additionalName: String
573-
public var familyName: String
571+
public var name: String
574572
public var organization: String
575573
public var streetAddress: String
576574
public var addressLevel3: String
@@ -587,11 +585,9 @@ public struct Address {
587585

588586
// Default memberwise initializers are never public by default, so we
589587
// declare one manually.
590-
public init(guid: String, givenName: String, additionalName: String, familyName: String, organization: String, streetAddress: String, addressLevel3: String, addressLevel2: String, addressLevel1: String, postalCode: String, country: String, tel: String, email: String, timeCreated: Int64, timeLastUsed: Int64?, timeLastModified: Int64, timesUsed: Int64) {
588+
public init(guid: String, name: String, organization: String, streetAddress: String, addressLevel3: String, addressLevel2: String, addressLevel1: String, postalCode: String, country: String, tel: String, email: String, timeCreated: Int64, timeLastUsed: Int64?, timeLastModified: Int64, timesUsed: Int64) {
591589
self.guid = guid
592-
self.givenName = givenName
593-
self.additionalName = additionalName
594-
self.familyName = familyName
590+
self.name = name
595591
self.organization = organization
596592
self.streetAddress = streetAddress
597593
self.addressLevel3 = addressLevel3
@@ -613,13 +609,7 @@ extension Address: Equatable, Hashable {
613609
if lhs.guid != rhs.guid {
614610
return false
615611
}
616-
if lhs.givenName != rhs.givenName {
617-
return false
618-
}
619-
if lhs.additionalName != rhs.additionalName {
620-
return false
621-
}
622-
if lhs.familyName != rhs.familyName {
612+
if lhs.name != rhs.name {
623613
return false
624614
}
625615
if lhs.organization != rhs.organization {
@@ -666,9 +656,7 @@ extension Address: Equatable, Hashable {
666656

667657
public func hash(into hasher: inout Hasher) {
668658
hasher.combine(guid)
669-
hasher.combine(givenName)
670-
hasher.combine(additionalName)
671-
hasher.combine(familyName)
659+
hasher.combine(name)
672660
hasher.combine(organization)
673661
hasher.combine(streetAddress)
674662
hasher.combine(addressLevel3)
@@ -689,9 +677,7 @@ public struct FfiConverterTypeAddress: FfiConverterRustBuffer {
689677
public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Address {
690678
return try Address(
691679
guid: FfiConverterString.read(from: &buf),
692-
givenName: FfiConverterString.read(from: &buf),
693-
additionalName: FfiConverterString.read(from: &buf),
694-
familyName: FfiConverterString.read(from: &buf),
680+
name: FfiConverterString.read(from: &buf),
695681
organization: FfiConverterString.read(from: &buf),
696682
streetAddress: FfiConverterString.read(from: &buf),
697683
addressLevel3: FfiConverterString.read(from: &buf),
@@ -710,9 +696,7 @@ public struct FfiConverterTypeAddress: FfiConverterRustBuffer {
710696

711697
public static func write(_ value: Address, into buf: inout [UInt8]) {
712698
FfiConverterString.write(value.guid, into: &buf)
713-
FfiConverterString.write(value.givenName, into: &buf)
714-
FfiConverterString.write(value.additionalName, into: &buf)
715-
FfiConverterString.write(value.familyName, into: &buf)
699+
FfiConverterString.write(value.name, into: &buf)
716700
FfiConverterString.write(value.organization, into: &buf)
717701
FfiConverterString.write(value.streetAddress, into: &buf)
718702
FfiConverterString.write(value.addressLevel3, into: &buf)
@@ -861,9 +845,7 @@ public func FfiConverterTypeCreditCard_lower(_ value: CreditCard) -> RustBuffer
861845
}
862846

863847
public struct UpdatableAddressFields {
864-
public var givenName: String
865-
public var additionalName: String
866-
public var familyName: String
848+
public var name: String
867849
public var organization: String
868850
public var streetAddress: String
869851
public var addressLevel3: String
@@ -876,10 +858,8 @@ public struct UpdatableAddressFields {
876858

877859
// Default memberwise initializers are never public by default, so we
878860
// declare one manually.
879-
public init(givenName: String, additionalName: String, familyName: String, organization: String, streetAddress: String, addressLevel3: String, addressLevel2: String, addressLevel1: String, postalCode: String, country: String, tel: String, email: String) {
880-
self.givenName = givenName
881-
self.additionalName = additionalName
882-
self.familyName = familyName
861+
public init(name: String, organization: String, streetAddress: String, addressLevel3: String, addressLevel2: String, addressLevel1: String, postalCode: String, country: String, tel: String, email: String) {
862+
self.name = name
883863
self.organization = organization
884864
self.streetAddress = streetAddress
885865
self.addressLevel3 = addressLevel3
@@ -894,13 +874,7 @@ public struct UpdatableAddressFields {
894874

895875
extension UpdatableAddressFields: Equatable, Hashable {
896876
public static func == (lhs: UpdatableAddressFields, rhs: UpdatableAddressFields) -> Bool {
897-
if lhs.givenName != rhs.givenName {
898-
return false
899-
}
900-
if lhs.additionalName != rhs.additionalName {
901-
return false
902-
}
903-
if lhs.familyName != rhs.familyName {
877+
if lhs.name != rhs.name {
904878
return false
905879
}
906880
if lhs.organization != rhs.organization {
@@ -934,9 +908,7 @@ extension UpdatableAddressFields: Equatable, Hashable {
934908
}
935909

936910
public func hash(into hasher: inout Hasher) {
937-
hasher.combine(givenName)
938-
hasher.combine(additionalName)
939-
hasher.combine(familyName)
911+
hasher.combine(name)
940912
hasher.combine(organization)
941913
hasher.combine(streetAddress)
942914
hasher.combine(addressLevel3)
@@ -952,9 +924,7 @@ extension UpdatableAddressFields: Equatable, Hashable {
952924
public struct FfiConverterTypeUpdatableAddressFields: FfiConverterRustBuffer {
953925
public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> UpdatableAddressFields {
954926
return try UpdatableAddressFields(
955-
givenName: FfiConverterString.read(from: &buf),
956-
additionalName: FfiConverterString.read(from: &buf),
957-
familyName: FfiConverterString.read(from: &buf),
927+
name: FfiConverterString.read(from: &buf),
958928
organization: FfiConverterString.read(from: &buf),
959929
streetAddress: FfiConverterString.read(from: &buf),
960930
addressLevel3: FfiConverterString.read(from: &buf),
@@ -968,9 +938,7 @@ public struct FfiConverterTypeUpdatableAddressFields: FfiConverterRustBuffer {
968938
}
969939

970940
public static func write(_ value: UpdatableAddressFields, into buf: inout [UInt8]) {
971-
FfiConverterString.write(value.givenName, into: &buf)
972-
FfiConverterString.write(value.additionalName, into: &buf)
973-
FfiConverterString.write(value.familyName, into: &buf)
941+
FfiConverterString.write(value.name, into: &buf)
974942
FfiConverterString.write(value.organization, into: &buf)
975943
FfiConverterString.write(value.streetAddress, into: &buf)
976944
FfiConverterString.write(value.addressLevel3, into: &buf)

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

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

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 22, hour: 5, minute: 12, second: 59))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 26, hour: 16, minute: 27, second: 23))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)