@adhdev/mesh-shared 0.9.82-rc.327 → 0.9.82-rc.329
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.
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
- package/src/types.ts +8 -0
package/dist/types.d.ts
CHANGED
|
@@ -52,6 +52,14 @@ export interface DaemonBuildBehind {
|
|
|
52
52
|
isDaemonAffecting: boolean;
|
|
53
53
|
/** Distinct package names changed between buildCommit..HEAD (best-effort). */
|
|
54
54
|
affectedPackages?: string[];
|
|
55
|
+
/**
|
|
56
|
+
* Stable Change-Impact action key for the detected classification.
|
|
57
|
+
* 'daemon' → rebuild/redeploy + restart required; 'web' → web redeploy only;
|
|
58
|
+
* 'none' → no action. Derived from the (config-driven) impact classification.
|
|
59
|
+
*/
|
|
60
|
+
recommendedAction?: 'daemon' | 'web' | 'none';
|
|
61
|
+
/** Human-facing recommended command/recipe to act on the impact. */
|
|
62
|
+
recommendedCommand?: string;
|
|
55
63
|
warning: string;
|
|
56
64
|
}
|
|
57
65
|
export interface GitRepoStatus extends GitRepoIdentity {
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -66,6 +66,14 @@ export interface DaemonBuildBehind {
|
|
|
66
66
|
isDaemonAffecting: boolean
|
|
67
67
|
/** Distinct package names changed between buildCommit..HEAD (best-effort). */
|
|
68
68
|
affectedPackages?: string[]
|
|
69
|
+
/**
|
|
70
|
+
* Stable Change-Impact action key for the detected classification.
|
|
71
|
+
* 'daemon' → rebuild/redeploy + restart required; 'web' → web redeploy only;
|
|
72
|
+
* 'none' → no action. Derived from the (config-driven) impact classification.
|
|
73
|
+
*/
|
|
74
|
+
recommendedAction?: 'daemon' | 'web' | 'none'
|
|
75
|
+
/** Human-facing recommended command/recipe to act on the impact. */
|
|
76
|
+
recommendedCommand?: string
|
|
69
77
|
warning: string
|
|
70
78
|
}
|
|
71
79
|
|