@@ -5248,6 +5248,9 @@ public func FfiConverterTypeSshClient_lower(_ value: SshClient) -> UnsafeMutable
5248
5248
5249
5249
public protocol StateClientProtocol : AnyObject , Sendable {
5250
5250
5251
+ /**
5252
+ * Initialize the database for SDK managed repositories.
5253
+ */
5251
5254
func initializeState( configuration: SqliteConfiguration ) async throws
5252
5255
5253
5256
func registerCipherRepository( repository: CipherRepository )
@@ -5305,6 +5308,9 @@ open class StateClient: StateClientProtocol, @unchecked Sendable {
5305
5308
5306
5309
5307
5310
5311
+ /**
5312
+ * Initialize the database for SDK managed repositories.
5313
+ */
5308
5314
open func initializeState( configuration: SqliteConfiguration ) async throws {
5309
5315
return
5310
5316
try await uniffiRustCallAsync (
@@ -7265,7 +7271,7 @@ private let initializationResult: InitializationResult = {
7265
7271
if ( uniffi_bitwarden_uniffi_checksum_method_sshclient_import_ssh_key ( ) != 34814 ) {
7266
7272
return InitializationResult . apiChecksumMismatch
7267
7273
}
7268
- if ( uniffi_bitwarden_uniffi_checksum_method_stateclient_initialize_state ( ) != 27371 ) {
7274
+ if ( uniffi_bitwarden_uniffi_checksum_method_stateclient_initialize_state ( ) != 46901 ) {
7269
7275
return InitializationResult . apiChecksumMismatch
7270
7276
}
7271
7277
if ( uniffi_bitwarden_uniffi_checksum_method_stateclient_register_cipher_repository ( ) != 63324 ) {
@@ -7299,16 +7305,16 @@ private let initializationResult: InitializationResult = {
7299
7305
uniffiCallbackInitCipherRepository ( )
7300
7306
uniffiCallbackInitFido2CredentialStore ( )
7301
7307
uniffiCallbackInitFido2UserInterface ( )
7302
- uniffiEnsureBitwardenCollectionsInitialized ( )
7303
- uniffiEnsureBitwardenFidoInitialized ( )
7304
- uniffiEnsureBitwardenCryptoInitialized ( )
7305
7308
uniffiEnsureBitwardenSendInitialized ( )
7309
+ uniffiEnsureBitwardenVaultInitialized ( )
7310
+ uniffiEnsureBitwardenCryptoInitialized ( )
7311
+ uniffiEnsureBitwardenFidoInitialized ( )
7312
+ uniffiEnsureBitwardenEncodingInitialized ( )
7306
7313
uniffiEnsureBitwardenExportersInitialized ( )
7307
- uniffiEnsureBitwardenSshInitialized ( )
7314
+ uniffiEnsureBitwardenCollectionsInitialized ( )
7308
7315
uniffiEnsureBitwardenCoreInitialized ( )
7309
7316
uniffiEnsureBitwardenGeneratorsInitialized ( )
7310
- uniffiEnsureBitwardenVaultInitialized ( )
7311
- uniffiEnsureBitwardenEncodingInitialized ( )
7317
+ uniffiEnsureBitwardenSshInitialized ( )
7312
7318
return InitializationResult . ok
7313
7319
} ( )
7314
7320
0 commit comments