|
1 | 1 | """QuantPlatformKit public package surface.""" |
2 | 2 |
|
3 | | -__version__ = "0.7.3" |
| 3 | +__version__ = "0.7.4" |
4 | 4 |
|
5 | 5 | from .common.models import ( |
6 | 6 | ExecutionReport, |
|
21 | 21 | StrategyEntrypoint, |
22 | 22 | StrategyManifest, |
23 | 23 | StrategyRuntimeAdapter, |
| 24 | + ValueTargetExecutionAnnotations, |
| 25 | + ValueTargetExecutionPlan, |
| 26 | + ValueTargetPortfolioPlan, |
| 27 | + build_value_target_execution_annotations, |
| 28 | + build_value_target_portfolio_plan, |
| 29 | + build_strategy_context_from_available_inputs, |
| 30 | + build_value_target_execution_plan, |
24 | 31 | validate_strategy_decision, |
25 | 32 | validate_strategy_manifest, |
26 | 33 | validate_strategy_runtime_adapter, |
27 | 34 | ) |
28 | 35 | from .common.strategies import ( |
29 | 36 | CRYPTO_DOMAIN, |
| 37 | + PlatformCapabilityMatrix, |
30 | 38 | PlatformStrategyPolicy, |
| 39 | + StrategyArtifactPaths, |
31 | 40 | StrategyCatalog, |
32 | 41 | StrategyDefinition, |
33 | 42 | StrategyEntrypointDefinition, |
34 | 43 | StrategyMetadata, |
35 | 44 | US_EQUITY_DOMAIN, |
36 | 45 | build_platform_profile_matrix, |
| 46 | + build_platform_profile_status_matrix, |
37 | 47 | build_profile_aliases, |
38 | 48 | build_strategy_catalog, |
| 49 | + derive_eligible_profiles_for_platform, |
| 50 | + derive_enabled_profiles_for_platform, |
| 51 | + derive_strategy_artifact_paths, |
39 | 52 | build_strategy_index_rows, |
40 | 53 | build_strategy_manifest, |
41 | 54 | get_catalog_compatible_platforms, |
42 | 55 | get_catalog_strategy_definition, |
43 | 56 | get_catalog_strategy_metadata, |
| 57 | + get_catalog_target_mode, |
44 | 58 | get_enabled_profiles_for_platform, |
45 | 59 | load_strategy_entrypoint, |
46 | 60 | normalize_profile_name, |
|
53 | 67 | "BudgetIntent", |
54 | 68 | "CRYPTO_DOMAIN", |
55 | 69 | "ExecutionReport", |
| 70 | + "PlatformCapabilityMatrix", |
56 | 71 | "PlatformStrategyPolicy", |
57 | 72 | "OrderIntent", |
58 | 73 | "PortfolioSnapshot", |
|
61 | 76 | "PricePoint", |
62 | 77 | "PriceSeries", |
63 | 78 | "QuoteSnapshot", |
| 79 | + "StrategyArtifactPaths", |
64 | 80 | "StrategyCatalog", |
65 | 81 | "StrategyContext", |
66 | 82 | "StrategyContractDecision", |
|
72 | 88 | "StrategyManifest", |
73 | 89 | "StrategyMetadata", |
74 | 90 | "StrategyRuntimeAdapter", |
| 91 | + "ValueTargetExecutionAnnotations", |
| 92 | + "ValueTargetExecutionPlan", |
| 93 | + "ValueTargetPortfolioPlan", |
| 94 | + "build_value_target_execution_annotations", |
75 | 95 | "US_EQUITY_DOMAIN", |
| 96 | + "build_value_target_portfolio_plan", |
| 97 | + "build_strategy_context_from_available_inputs", |
| 98 | + "build_value_target_execution_plan", |
76 | 99 | "build_platform_profile_matrix", |
| 100 | + "build_platform_profile_status_matrix", |
77 | 101 | "build_profile_aliases", |
78 | 102 | "build_strategy_catalog", |
| 103 | + "derive_eligible_profiles_for_platform", |
| 104 | + "derive_enabled_profiles_for_platform", |
| 105 | + "derive_strategy_artifact_paths", |
79 | 106 | "build_strategy_index_rows", |
80 | 107 | "build_strategy_manifest", |
81 | 108 | "get_catalog_compatible_platforms", |
82 | 109 | "get_catalog_strategy_definition", |
83 | 110 | "get_catalog_strategy_metadata", |
| 111 | + "get_catalog_target_mode", |
84 | 112 | "get_enabled_profiles_for_platform", |
85 | 113 | "load_strategy_entrypoint", |
86 | 114 | "normalize_profile_name", |
|
0 commit comments