vectie/moonfish/config does not have a README file
pub(all) struct LegacySettingsRef {
source_path : String
provider_model : String
provider_base_url : String
provider_api_key_present : Bool
data_source_label : String
symbol : String
timeframe : String
analysis_bar_count : Int
retry_max : Int
retry_max_semantic : Int
retry_stage2 : Bool
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct MigratedSetting {
source_path : String
target_path : String
disposition : LegacySettingDisposition
message : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct SuiteSettingsPlan {
source_path : String
suite_status : SuiteStatusRef
market_request : MarketSourceRequest
retry_policy : RetryPolicy
provider_snapshot_path : String
provider_secret_redacted : Bool
settings : Array[MigratedSetting]
review_count : Int
summary : String
} derive(Eq, ToJson, Debug, FromJson)fn legacy_settings_ref(source_path : String, provider_model : String, provider_base_url : String, data_source_label : String, symbol : String, timeframe : String, provider_api_key_present? : Bool, analysis_bar_count? : Int, retry_max? : Int, retry_max_semantic? : Int, retry_stage2? : Bool) -> LegacySettingsReffn prepare_suite_settings_plan(legacy : LegacySettingsRef, status_path? : String) -> SuiteSettingsPlanDependencies