vectie/moonfish/export does not have a README file
pub(all) struct ExportItem {
run_id : String
kind : ExportItemKind
path : String
schema_id : String
public : Bool
required : Bool
purpose : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct ExportManifest {
run_id : String
profile : ExportProfile
destination_path : String
includes_raw_model_exchange : Bool
item_count : Int
items : Array[ExportItem]
} derive(Eq, ToJson, Debug, FromJson)fn export_item(run_id : String, kind : ExportItemKind, path : String, schema_id : String, purpose : String, public? : Bool, required? : Bool) -> ExportItemDependencies