@girardmedia/bootspring 2.0.36 → 2.0.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Bootspring Planning Module
3
+ *
4
+ * Exports all planning components.
5
+ *
6
+ * @package bootspring
7
+ * @module core/planning
8
+ */
9
+
10
+ const {
11
+ FeatureDecomposer,
12
+ FEATURE_PATTERNS,
13
+ EFFORT_ESTIMATES
14
+ } = require('./feature-decomposer');
15
+
16
+ const {
17
+ StagePlanner,
18
+ PLANNING_STAGES
19
+ } = require('./stage-planner');
20
+
21
+ const {
22
+ AdaptivePlanningEngine,
23
+ REFRESH_TRIGGERS,
24
+ PLANNING_LAYERS,
25
+ DRIFT_SEVERITY
26
+ } = require('./adaptive-engine');
27
+
28
+ const {
29
+ PlanningSimulator,
30
+ SCENARIO_TYPES,
31
+ IMPACT_LEVELS,
32
+ COMPLEXITY_MULTIPLIERS
33
+ } = require('./simulator');
34
+
35
+ module.exports = {
36
+ FeatureDecomposer,
37
+ FEATURE_PATTERNS,
38
+ EFFORT_ESTIMATES,
39
+ StagePlanner,
40
+ PLANNING_STAGES,
41
+ AdaptivePlanningEngine,
42
+ REFRESH_TRIGGERS,
43
+ PLANNING_LAYERS,
44
+ DRIFT_SEVERITY,
45
+ PlanningSimulator,
46
+ SCENARIO_TYPES,
47
+ IMPACT_LEVELS,
48
+ COMPLEXITY_MULTIPLIERS
49
+ };