@groundnuty/macf-core 0.2.5 → 0.2.7
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 +42 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +49 -0
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare const NotifyTypeSchema: z.ZodEnum<{
|
|
|
5
5
|
startup_check: "startup_check";
|
|
6
6
|
ci_completion: "ci_completion";
|
|
7
7
|
peer_notification: "peer_notification";
|
|
8
|
+
pr_review_state: "pr_review_state";
|
|
8
9
|
}>;
|
|
9
10
|
export type NotifyType = z.infer<typeof NotifyTypeSchema>;
|
|
10
11
|
export declare const CheckSuiteConclusionSchema: z.ZodEnum<{
|
|
@@ -21,6 +22,7 @@ export declare const NotifyPayloadSchema: z.ZodObject<{
|
|
|
21
22
|
startup_check: "startup_check";
|
|
22
23
|
ci_completion: "ci_completion";
|
|
23
24
|
peer_notification: "peer_notification";
|
|
25
|
+
pr_review_state: "pr_review_state";
|
|
24
26
|
}>;
|
|
25
27
|
issue_number: z.ZodOptional<z.ZodNumber>;
|
|
26
28
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -43,6 +45,12 @@ export declare const NotifyPayloadSchema: z.ZodObject<{
|
|
|
43
45
|
"session-end": "session-end";
|
|
44
46
|
"turn-complete": "turn-complete";
|
|
45
47
|
}>>;
|
|
48
|
+
review_state: z.ZodOptional<z.ZodEnum<{
|
|
49
|
+
approved: "approved";
|
|
50
|
+
changes_requested: "changes_requested";
|
|
51
|
+
}>>;
|
|
52
|
+
reviewer_login: z.ZodOptional<z.ZodString>;
|
|
53
|
+
review_url: z.ZodOptional<z.ZodString>;
|
|
46
54
|
}, z.core.$strip>;
|
|
47
55
|
export type NotifyPayload = z.infer<typeof NotifyPayloadSchema>;
|
|
48
56
|
/**
|
|
@@ -98,6 +106,40 @@ export declare const PeerNotificationPayloadSchema: z.ZodObject<{
|
|
|
98
106
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
99
107
|
}, z.core.$strip>;
|
|
100
108
|
export type PeerNotificationPayload = z.infer<typeof PeerNotificationPayloadSchema>;
|
|
109
|
+
/**
|
|
110
|
+
* Narrower schema for `pr_review_state` payloads (macf-actions#39, v3.3.0).
|
|
111
|
+
* Producers (the route-by-pr-review-state job) construct + validate against
|
|
112
|
+
* this before POST. Receivers parse via the wider `NotifyPayloadSchema`
|
|
113
|
+
* (backward-compat) and narrow via the `type === 'pr_review_state'`
|
|
114
|
+
* discriminator.
|
|
115
|
+
*
|
|
116
|
+
* `review_state` discriminates the actionable verb at the receiver:
|
|
117
|
+
* - `approved` → PR author can react with merge
|
|
118
|
+
* - `changes_requested` → PR author can react with fix
|
|
119
|
+
*
|
|
120
|
+
* `reviewer_login` is the reviewer's bot login (e.g., `cv-architect[bot]`)
|
|
121
|
+
* so the rendered notification surfaces who acted. `pr_number` + `pr_url`
|
|
122
|
+
* locate the work unit. `review_url` deep-links to the review comment for
|
|
123
|
+
* receivers that want to fetch the body programmatically (optional —
|
|
124
|
+
* cheap to include, free at the receiver if unused).
|
|
125
|
+
*
|
|
126
|
+
* The job filters at the workflow layer to action=submitted only (per
|
|
127
|
+
* issue#39 design Q3 disposition — dismissed reviews are out-of-scope at
|
|
128
|
+
* v3.3.0). State filter is workflow-side too; the schema only carries the
|
|
129
|
+
* narrowed enum so receivers don't need to re-validate.
|
|
130
|
+
*/
|
|
131
|
+
export declare const PrReviewStatePayloadSchema: z.ZodObject<{
|
|
132
|
+
type: z.ZodLiteral<"pr_review_state">;
|
|
133
|
+
review_state: z.ZodEnum<{
|
|
134
|
+
approved: "approved";
|
|
135
|
+
changes_requested: "changes_requested";
|
|
136
|
+
}>;
|
|
137
|
+
reviewer_login: z.ZodString;
|
|
138
|
+
pr_number: z.ZodNumber;
|
|
139
|
+
pr_url: z.ZodString;
|
|
140
|
+
review_url: z.ZodOptional<z.ZodString>;
|
|
141
|
+
}, z.core.$strip>;
|
|
142
|
+
export type PrReviewStatePayload = z.infer<typeof PrReviewStatePayloadSchema>;
|
|
101
143
|
export declare const HealthResponseSchema: z.ZodObject<{
|
|
102
144
|
agent: z.ZodString;
|
|
103
145
|
status: z.ZodLiteral<"online">;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
CHANGED
|
@@ -19,6 +19,15 @@ export const NotifyTypeSchema = z.enum([
|
|
|
19
19
|
// Phase D / Claim 1b cell-effect measurements where conflating the
|
|
20
20
|
// two would muddy framework-induced traffic signal.
|
|
21
21
|
'peer_notification',
|
|
22
|
+
// `pr_review_state` landed with macf-actions#39 (v3.3.0) — routed by
|
|
23
|
+
// the route-by-pr-review-state job when a PR review is submitted
|
|
24
|
+
// (action=submitted) with state in {approved, changes_requested}.
|
|
25
|
+
// Receiver is the PR author's channel-server. Closes the LGTM→merge
|
|
26
|
+
// handoff gap that was the final cv-e2e-test cascade cause: routing-
|
|
27
|
+
// Action's pre-#39 event coverage didn't fire when reviewers approved
|
|
28
|
+
// without an explicit @<author>[bot] in the review body. The
|
|
29
|
+
// structural state-change IS the notification.
|
|
30
|
+
'pr_review_state',
|
|
22
31
|
]);
|
|
23
32
|
// Check suite conclusions reaching the receiver — match GitHub's
|
|
24
33
|
// terminal check_suite states that macf-actions treats as actionable
|
|
@@ -56,6 +65,16 @@ export const NotifyPayloadSchema = z.object({
|
|
|
56
65
|
// `notify_peer` MCP tool) construct + validate against the narrower
|
|
57
66
|
// PeerNotificationPayloadSchema below before POST.
|
|
58
67
|
event: z.enum(['session-end', 'turn-complete', 'error', 'custom']).optional(),
|
|
68
|
+
// pr_review_state variant fields (macf-actions#39, v3.3.0). Optional
|
|
69
|
+
// at the top level to preserve backward-compat. Producers (the
|
|
70
|
+
// route-by-pr-review-state job) construct + validate against the
|
|
71
|
+
// narrower PrReviewStatePayloadSchema below before POST. `pr_number`
|
|
72
|
+
// and `pr_url` reuse the ci_completion variant's fields (same
|
|
73
|
+
// semantic meaning); `review_state`, `reviewer_login`, `review_url`
|
|
74
|
+
// are review-specific.
|
|
75
|
+
review_state: z.enum(['approved', 'changes_requested']).optional(),
|
|
76
|
+
reviewer_login: z.string().optional(),
|
|
77
|
+
review_url: z.string().url().optional(),
|
|
59
78
|
});
|
|
60
79
|
/**
|
|
61
80
|
* Narrower schema for `ci_completion` payloads (#122). Producers
|
|
@@ -98,6 +117,36 @@ export const PeerNotificationPayloadSchema = z.object({
|
|
|
98
117
|
message: z.string().optional(),
|
|
99
118
|
context: z.record(z.string(), z.unknown()).optional(),
|
|
100
119
|
});
|
|
120
|
+
/**
|
|
121
|
+
* Narrower schema for `pr_review_state` payloads (macf-actions#39, v3.3.0).
|
|
122
|
+
* Producers (the route-by-pr-review-state job) construct + validate against
|
|
123
|
+
* this before POST. Receivers parse via the wider `NotifyPayloadSchema`
|
|
124
|
+
* (backward-compat) and narrow via the `type === 'pr_review_state'`
|
|
125
|
+
* discriminator.
|
|
126
|
+
*
|
|
127
|
+
* `review_state` discriminates the actionable verb at the receiver:
|
|
128
|
+
* - `approved` → PR author can react with merge
|
|
129
|
+
* - `changes_requested` → PR author can react with fix
|
|
130
|
+
*
|
|
131
|
+
* `reviewer_login` is the reviewer's bot login (e.g., `cv-architect[bot]`)
|
|
132
|
+
* so the rendered notification surfaces who acted. `pr_number` + `pr_url`
|
|
133
|
+
* locate the work unit. `review_url` deep-links to the review comment for
|
|
134
|
+
* receivers that want to fetch the body programmatically (optional —
|
|
135
|
+
* cheap to include, free at the receiver if unused).
|
|
136
|
+
*
|
|
137
|
+
* The job filters at the workflow layer to action=submitted only (per
|
|
138
|
+
* issue#39 design Q3 disposition — dismissed reviews are out-of-scope at
|
|
139
|
+
* v3.3.0). State filter is workflow-side too; the schema only carries the
|
|
140
|
+
* narrowed enum so receivers don't need to re-validate.
|
|
141
|
+
*/
|
|
142
|
+
export const PrReviewStatePayloadSchema = z.object({
|
|
143
|
+
type: z.literal('pr_review_state'),
|
|
144
|
+
review_state: z.enum(['approved', 'changes_requested']),
|
|
145
|
+
reviewer_login: z.string().min(1),
|
|
146
|
+
pr_number: z.number().int().positive(),
|
|
147
|
+
pr_url: z.string().url(),
|
|
148
|
+
review_url: z.string().url().optional(),
|
|
149
|
+
});
|
|
101
150
|
// --- Health response (GET /health body) ---
|
|
102
151
|
export const HealthResponseSchema = z.object({
|
|
103
152
|
agent: z.string(),
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,6CAA6C;AAE7C,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,IAAI,CAAC;IACrC,cAAc;IACd,SAAS;IACT,eAAe;IACf,kEAAkE;IAClE,oEAAoE;IACpE,oEAAoE;IACpE,0DAA0D;IAC1D,gDAAgD;IAChD,eAAe;IACf,iEAAiE;IACjE,kEAAkE;IAClE,qEAAqE;IACrE,gEAAgE;IAChE,iEAAiE;IACjE,gEAAgE;IAChE,mEAAmE;IACnE,oDAAoD;IACpD,mBAAmB;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groundnuty/macf-core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "Shared internals consumed by the MACF CLI and channel-server packages. Not intended for direct external use — will be marked deprecated-internal on first npm publish per DR-022 Amendment A.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|