@@ -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
33673377open 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