@@ -651,7 +651,7 @@ open class SuggestStore:
651651    /**
652652     * Creates a Suggest store.
653653     */
654- public  convenience init ( path:  String ,  settingsConfig:  RemoteSettingsConfig ? ) throws   { 
654+ public  convenience init ( path:  String ,  settingsConfig:  RemoteSettingsConfig ?   =   nil ) throws   { 
655655    let  pointer  = 
656656        try rustCallWithError ( FfiConverterTypeSuggestApiError . lift)  { 
657657    uniffi_suggest_fn_constructor_suggeststore_new ( 
@@ -738,7 +738,7 @@ open func ingest(constraints: SuggestIngestionConstraints)throws  -> SuggestInge
738738     * bar, to ensure that they see fresh suggestions as they type. This
739739     * method does not interrupt any ongoing ingests.
740740     */
741- open  func  interrupt( kind:  InterruptKind ? )  { try ! rustCall ( )  { 
741+ open  func  interrupt( kind:  InterruptKind ?   =   nil )  { try ! rustCall ( )  { 
742742    uniffi_suggest_fn_method_suggeststore_interrupt ( self . uniffiClonePointer ( ) , 
743743        FfiConverterOptionTypeInterruptKind . lower ( kind) , $0
744744    ) 
@@ -1199,11 +1199,11 @@ public struct SuggestIngestionConstraints {
11991199
12001200    // Default memberwise initializers are never public by default, so we
12011201    // declare one manually.
1202-     public  init ( providers:  [ SuggestionProvider ] ? ,  providerConstraints:  SuggestionProviderConstraints ? ,  
1202+     public  init ( providers:  [ SuggestionProvider ] ?   =   nil ,  providerConstraints:  SuggestionProviderConstraints ?   =   nil ,  
12031203        /**
12041204         * Only run ingestion if the table `suggestions` is empty
12051205
1206-          */emptyOnly:  Bool )  { 
1206+          */emptyOnly:  Bool   =   false )  { 
12071207        self . providers =  providers
12081208        self . providerConstraints =  providerConstraints
12091209        self . emptyOnly =  emptyOnly
@@ -1354,7 +1354,7 @@ public struct SuggestionProviderConstraints {
13541354         * `Exposure` provider - For each desired exposure suggestion type, this
13551355         * should contain the value of the `suggestion_type` field of its remote
13561356         * settings record(s).
1357-          */exposureSuggestionTypes:  [ String ] ? )  { 
1357+          */exposureSuggestionTypes:  [ String ] ?   =   nil )  { 
13581358        self . exposureSuggestionTypes =  exposureSuggestionTypes
13591359    } 
13601360} 
@@ -1409,7 +1409,7 @@ public struct SuggestionQuery {
14091409
14101410    // Default memberwise initializers are never public by default, so we
14111411    // declare one manually.
1412-     public  init ( keyword:  String ,  providers:  [ SuggestionProvider ] ,  providerConstraints:  SuggestionProviderConstraints ? ,  limit:  Int32 ? )  { 
1412+     public  init ( keyword:  String ,  providers:  [ SuggestionProvider ] ,  providerConstraints:  SuggestionProviderConstraints ?   =   nil ,  limit:  Int32 ?   =   nil )  { 
14131413        self . keyword =  keyword
14141414        self . providers =  providers
14151415        self . providerConstraints =  providerConstraints
@@ -2313,7 +2313,7 @@ private var initializationResult: InitializationResult = {
23132313    if  ( uniffi_suggest_checksum_method_suggeststore_ingest ( )  !=  35498 )  { 
23142314        return  InitializationResult . apiChecksumMismatch
23152315    } 
2316-     if  ( uniffi_suggest_checksum_method_suggeststore_interrupt ( )  !=  39926 )  { 
2316+     if  ( uniffi_suggest_checksum_method_suggeststore_interrupt ( )  !=  26986 )  { 
23172317        return  InitializationResult . apiChecksumMismatch
23182318    } 
23192319    if  ( uniffi_suggest_checksum_method_suggeststore_query ( )  !=  856 )  { 
@@ -2340,7 +2340,7 @@ private var initializationResult: InitializationResult = {
23402340    if  ( uniffi_suggest_checksum_method_suggeststorebuilder_remote_settings_server ( )  !=  19990 )  { 
23412341        return  InitializationResult . apiChecksumMismatch
23422342    } 
2343-     if  ( uniffi_suggest_checksum_constructor_suggeststore_new ( )  !=  1459 )  { 
2343+     if  ( uniffi_suggest_checksum_constructor_suggeststore_new ( )  !=  9768 )  { 
23442344        return  InitializationResult . apiChecksumMismatch
23452345    } 
23462346    if  ( uniffi_suggest_checksum_constructor_suggeststorebuilder_new ( )  !=  1218 )  { 
0 commit comments