Skip to content

Commit 7c161df

Browse files
authored
Release 9eb423757e0849cb4fa600c9ded7c31ef199cc6c (#9)
1 parent e43a06f commit 7c161df

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ let package = Package(
2727
swiftSettings: [.unsafeFlags(["-suppress-warnings"])]),
2828
.binaryTarget(
2929
name: "BitwardenFFI",
30-
url: "https://bwlivefronttest.blob.core.windows.net/sdk/57fa7fa-BitwardenFFI.xcframework.zip",
31-
checksum: "3149f9060ebc66313f91bcd67303ad41272407fa51b56b19fb999e6500ef83ab"),
30+
url: "https://bwlivefronttest.blob.core.windows.net/sdk/9eb4237-BitwardenFFI.xcframework.zip",
31+
checksum: "5c35b49df5ec54709cc90b61748b48b8f0d3d890b19dfdb2760a330bcc540eea"),
3232
.testTarget(
3333
name: "BitwardenSdkTests",
3434
dependencies: ["BitwardenSdk"])

Sources/BitwardenSdk/BitwardenSDK.swift

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,11 @@ public protocol ClientProtocol : AnyObject {
500500

501501
func platform() -> ClientPlatform
502502

503+
/**
504+
* Sends operations
505+
*/
506+
func sends() -> ClientSends
507+
503508
/**
504509
* Vault item operations
505510
*/
@@ -615,6 +620,16 @@ open func platform() -> ClientPlatform {
615620
uniffi_bitwarden_uniffi_fn_method_client_platform(self.uniffiClonePointer(),$0
616621
)
617622
})
623+
}
624+
625+
/**
626+
* Sends operations
627+
*/
628+
open func sends() -> ClientSends {
629+
return try! FfiConverterTypeClientSends.lift(try! rustCall() {
630+
uniffi_bitwarden_uniffi_fn_method_client_sends(self.uniffiClonePointer(),$0
631+
)
632+
})
618633
}
619634

620635
/**
@@ -3357,11 +3372,6 @@ public protocol ClientVaultProtocol : AnyObject {
33573372
*/
33583373
func passwordHistory() -> ClientPasswordHistory
33593374

3360-
/**
3361-
* Sends operations
3362-
*/
3363-
func sends() -> ClientSends
3364-
33653375
}
33663376

33673377
open class ClientVault:
@@ -3480,16 +3490,6 @@ open func passwordHistory() -> ClientPasswordHistory {
34803490
})
34813491
}
34823492

3483-
/**
3484-
* Sends operations
3485-
*/
3486-
open func sends() -> ClientSends {
3487-
return try! FfiConverterTypeClientSends.lift(try! rustCall() {
3488-
uniffi_bitwarden_uniffi_fn_method_clientvault_sends(self.uniffiClonePointer(),$0
3489-
)
3490-
})
3491-
}
3492-
34933493

34943494
}
34953495

@@ -4877,6 +4877,9 @@ private var initializationResult: InitializationResult {
48774877
if (uniffi_bitwarden_uniffi_checksum_method_client_platform() != 32492) {
48784878
return InitializationResult.apiChecksumMismatch
48794879
}
4880+
if (uniffi_bitwarden_uniffi_checksum_method_client_sends() != 47933) {
4881+
return InitializationResult.apiChecksumMismatch
4882+
}
48804883
if (uniffi_bitwarden_uniffi_checksum_method_client_vault() != 54396) {
48814884
return InitializationResult.apiChecksumMismatch
48824885
}
@@ -5063,9 +5066,6 @@ private var initializationResult: InitializationResult {
50635066
if (uniffi_bitwarden_uniffi_checksum_method_clientvault_password_history() != 59154) {
50645067
return InitializationResult.apiChecksumMismatch
50655068
}
5066-
if (uniffi_bitwarden_uniffi_checksum_method_clientvault_sends() != 7895) {
5067-
return InitializationResult.apiChecksumMismatch
5068-
}
50695069
if (uniffi_bitwarden_uniffi_checksum_method_credentialstore_find_credentials() != 26220) {
50705070
return InitializationResult.apiChecksumMismatch
50715071
}

0 commit comments

Comments
 (0)