From 32b3122457453e0e7c321351d340223244509e9a Mon Sep 17 00:00:00 2001 From: boris Date: Wed, 26 Aug 2026 23:37:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=BB=9F=E4=B8=80=E7=AD=96?= =?UTF-8?q?=E7=95=A5=E8=A7=84=E6=A0=BC=E5=85=83=E6=95=B0=E6=8D=AE=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/fidc-core/src/platform_strategy_spec.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/fidc-core/src/platform_strategy_spec.rs b/crates/fidc-core/src/platform_strategy_spec.rs index cf0947b..633be0f 100644 --- a/crates/fidc-core/src/platform_strategy_spec.rs +++ b/crates/fidc-core/src/platform_strategy_spec.rs @@ -36,6 +36,14 @@ pub struct StrategyRuntimeSpec { pub engine_config: Option, #[serde(default, alias = "runtime_expressions")] pub runtime_expressions: Option, + #[serde(default, alias = "factor_refs")] + pub factor_refs: Vec, + #[serde(default)] + pub metadata: Option, + #[serde(default, alias = "factor_value_bindings")] + pub factor_value_bindings: Vec, + #[serde(default)] + pub parameters: Option, #[serde(default)] pub environment: Option, }