@@ -500,6 +500,11 @@ public protocol ClientProtocol : AnyObject {
500
500
501
501
func platform( ) -> ClientPlatform
502
502
503
+ /**
504
+ * Sends operations
505
+ */
506
+ func sends( ) -> ClientSends
507
+
503
508
/**
504
509
* Vault item operations
505
510
*/
@@ -615,6 +620,16 @@ open func platform() -> ClientPlatform {
615
620
uniffi_bitwarden_uniffi_fn_method_client_platform ( self . uniffiClonePointer ( ) , $0
616
621
)
617
622
} )
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
+ } )
618
633
}
619
634
620
635
/**
@@ -3357,11 +3372,6 @@ public protocol ClientVaultProtocol : AnyObject {
3357
3372
*/
3358
3373
func passwordHistory( ) -> ClientPasswordHistory
3359
3374
3360
- /**
3361
- * Sends operations
3362
- */
3363
- func sends( ) -> ClientSends
3364
-
3365
3375
}
3366
3376
3367
3377
open class ClientVault :
@@ -3480,16 +3490,6 @@ open func passwordHistory() -> ClientPasswordHistory {
3480
3490
} )
3481
3491
}
3482
3492
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
-
3493
3493
3494
3494
}
3495
3495
@@ -4877,6 +4877,9 @@ private var initializationResult: InitializationResult {
4877
4877
if ( uniffi_bitwarden_uniffi_checksum_method_client_platform ( ) != 32492 ) {
4878
4878
return InitializationResult . apiChecksumMismatch
4879
4879
}
4880
+ if ( uniffi_bitwarden_uniffi_checksum_method_client_sends ( ) != 47933 ) {
4881
+ return InitializationResult . apiChecksumMismatch
4882
+ }
4880
4883
if ( uniffi_bitwarden_uniffi_checksum_method_client_vault ( ) != 54396 ) {
4881
4884
return InitializationResult . apiChecksumMismatch
4882
4885
}
@@ -5063,9 +5066,6 @@ private var initializationResult: InitializationResult {
5063
5066
if ( uniffi_bitwarden_uniffi_checksum_method_clientvault_password_history ( ) != 59154 ) {
5064
5067
return InitializationResult . apiChecksumMismatch
5065
5068
}
5066
- if ( uniffi_bitwarden_uniffi_checksum_method_clientvault_sends ( ) != 7895 ) {
5067
- return InitializationResult . apiChecksumMismatch
5068
- }
5069
5069
if ( uniffi_bitwarden_uniffi_checksum_method_credentialstore_find_credentials ( ) != 26220 ) {
5070
5070
return InitializationResult . apiChecksumMismatch
5071
5071
}
0 commit comments