@cat-factory/contracts 0.274.0 → 0.276.0
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/accountSettings.d.ts +156 -22
- package/dist/accountSettings.d.ts.map +1 -1
- package/dist/accountSettings.js +48 -5
- package/dist/accountSettings.js.map +1 -1
- package/dist/errors.d.ts +16 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +16 -0
- package/dist/errors.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/notification-routing.d.ts +100 -0
- package/dist/notification-routing.d.ts.map +1 -0
- package/dist/notification-routing.js +155 -0
- package/dist/notification-routing.js.map +1 -0
- package/dist/public-api.d.ts +137 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +74 -0
- package/dist/public-api.js.map +1 -1
- package/dist/public-board.d.ts +276 -0
- package/dist/public-board.d.ts.map +1 -0
- package/dist/public-board.js +215 -0
- package/dist/public-board.js.map +1 -0
- package/dist/public-evidence.d.ts +30 -3
- package/dist/public-evidence.d.ts.map +1 -1
- package/dist/public-evidence.js +27 -3
- package/dist/public-evidence.js.map +1 -1
- package/dist/requests.d.ts +19 -2
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +18 -1
- package/dist/requests.js.map +1 -1
- package/dist/routes/accounts.d.ts +81 -15
- package/dist/routes/accounts.d.ts.map +1 -1
- package/dist/routes/board.d.ts +6 -2
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/notifications.d.ts +76 -0
- package/dist/routes/notifications.d.ts.map +1 -1
- package/dist/routes/notifications.js +15 -0
- package/dist/routes/notifications.js.map +1 -1
- package/dist/routes/public-api.d.ts +18 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/public-board.d.ts +369 -0
- package/dist/routes/public-board.d.ts.map +1 -0
- package/dist/routes/public-board.js +112 -0
- package/dist/routes/public-board.js.map +1 -0
- package/dist/routes/public-evidence.d.ts +1 -0
- package/dist/routes/public-evidence.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/gate-parking.d.ts +0 -30
- package/dist/gate-parking.d.ts.map +0 -1
- package/dist/gate-parking.js +0 -58
- package/dist/gate-parking.js.map +0 -1
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
import { type NotificationType } from './notifications.js';
|
|
3
|
+
/**
|
|
4
|
+
* A channel the notification manager routes. See the module comment for why the
|
|
5
|
+
* destination-configured transports (Slack, outbound webhooks) are deliberately absent.
|
|
6
|
+
*/
|
|
7
|
+
export declare const notificationDeliveryChannelSchema: v.PicklistSchema<["in_app", "email"], undefined>;
|
|
8
|
+
export type NotificationDeliveryChannel = v.InferOutput<typeof notificationDeliveryChannelSchema>;
|
|
9
|
+
/** Every routed channel, in the order the settings UI renders its columns. */
|
|
10
|
+
export declare const NOTIFICATION_DELIVERY_CHANNELS: readonly ["in_app", "email"];
|
|
11
|
+
/**
|
|
12
|
+
* The types email is ON for by default: the ones where something is STOPPED and stays
|
|
13
|
+
* stopped until a human acts, or where the deployment itself is degraded. Email is the
|
|
14
|
+
* channel that reaches someone who is not looking at the board, so its default has to be
|
|
15
|
+
* the set worth interrupting them over.
|
|
16
|
+
*
|
|
17
|
+
* Deliberately EXCLUDED, though they are human-actionable: the per-step review parks
|
|
18
|
+
* (`requirement_review`, `human_review`, `judge_review`, `pr_review_ready`,
|
|
19
|
+
* `fork_decision_pending`, `followup_pending`, …). Several of them arrive on nearly every
|
|
20
|
+
* task, so mailing them by default is the firehose that gets a sender's domain filtered and
|
|
21
|
+
* teaches people to ignore the channel. A workspace that wants them turns them on per type,
|
|
22
|
+
* which is what the manager is for.
|
|
23
|
+
*
|
|
24
|
+
* `budget_threshold` is out for the same reason `budget_paused` is in: the warning is
|
|
25
|
+
* proactive and recurring, the pause has already stopped work.
|
|
26
|
+
*/
|
|
27
|
+
export declare const HIGH_IMPACT_NOTIFICATION_TYPES: readonly ["merge_review", "decision_required", "ci_failed", "test_failed", "release_regression", "platform_health", "infra_unreachable", "budget_paused", "key_drift"];
|
|
28
|
+
/** Whether a type is one of the high-impact events email carries by default (see above). */
|
|
29
|
+
export declare function isHighImpactNotificationType(type: NotificationType): boolean;
|
|
30
|
+
/**
|
|
31
|
+
* One type's routing OVERRIDES. Every cell is optional and absent means "never chosen",
|
|
32
|
+
* which resolves to {@link defaultNotificationRoute}. Adding a channel to the union
|
|
33
|
+
* therefore leaves every stored row valid, and the new channel arrives on its default
|
|
34
|
+
* rather than as a `false` no human picked.
|
|
35
|
+
*/
|
|
36
|
+
export declare const notificationChannelOverridesSchema: v.ObjectSchema<{
|
|
37
|
+
readonly in_app: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
38
|
+
readonly email: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
39
|
+
}, undefined>;
|
|
40
|
+
export type NotificationChannelOverrides = v.InferOutput<typeof notificationChannelOverridesSchema>;
|
|
41
|
+
/** A workspace's per-type routing overrides. Types absent from the map are fully default. */
|
|
42
|
+
export declare const notificationRoutingMatrixSchema: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "budget_threshold", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
43
|
+
readonly in_app: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
44
|
+
readonly email: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
45
|
+
}, undefined>, undefined>;
|
|
46
|
+
export type NotificationRoutingMatrix = v.InferOutput<typeof notificationRoutingMatrixSchema>;
|
|
47
|
+
/** A workspace's notification manager settings, as served. */
|
|
48
|
+
export declare const notificationSettingsSchema: v.ObjectSchema<{
|
|
49
|
+
readonly matrix: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "budget_threshold", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
50
|
+
readonly in_app: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
51
|
+
readonly email: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
52
|
+
}, undefined>, undefined>;
|
|
53
|
+
/** Epoch ms of the last write; `0` when the workspace has never configured routing. */
|
|
54
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
55
|
+
}, undefined>;
|
|
56
|
+
export type NotificationSettings = v.InferOutput<typeof notificationSettingsSchema>;
|
|
57
|
+
/** Replace a workspace's routing matrix (a full replace, like the Slack routing write). */
|
|
58
|
+
export declare const updateNotificationSettingsSchema: v.ObjectSchema<{
|
|
59
|
+
readonly matrix: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "fork_decision_pending", "judge_review", "pr_review_ready", "initiative", "platform_health", "infra_unreachable", "budget_paused", "budget_threshold", "key_drift", "merge_tag_request"], undefined>, v.ObjectSchema<{
|
|
60
|
+
readonly in_app: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
61
|
+
readonly email: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
62
|
+
}, undefined>, undefined>;
|
|
63
|
+
}, undefined>;
|
|
64
|
+
export type UpdateNotificationSettingsInput = v.InferOutput<typeof updateNotificationSettingsSchema>;
|
|
65
|
+
/**
|
|
66
|
+
* The shipped default for one (type, channel) — what applies until a workspace overrides it.
|
|
67
|
+
*
|
|
68
|
+
* `in_app` is ON for every type: the inbox is where a human-actionable card lives, and the
|
|
69
|
+
* push is what makes it appear without a reload. Turning it off is a legitimate "stop
|
|
70
|
+
* interrupting me about this kind" choice, and it never hides anything: the card is persisted
|
|
71
|
+
* either way and is still in the inbox on the next snapshot.
|
|
72
|
+
*
|
|
73
|
+
* `email` is ON only for {@link HIGH_IMPACT_NOTIFICATION_TYPES}, so a deployment that connects
|
|
74
|
+
* a sender does not start mailing its members about every step of every run.
|
|
75
|
+
*/
|
|
76
|
+
export declare function defaultNotificationRoute(type: NotificationType, channel: NotificationDeliveryChannel): boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Whether a workspace delivers `type` on `channel`: its override when it has one, else the
|
|
79
|
+
* shipped default. THE routing decision — the engine gates delivery on it and the settings UI
|
|
80
|
+
* renders the toggle from it, so neither can state something the other does not do.
|
|
81
|
+
*/
|
|
82
|
+
export declare function isNotificationRouted(matrix: NotificationRoutingMatrix | null | undefined, type: NotificationType, channel: NotificationDeliveryChannel): boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Decode a persisted routing matrix, dropping only what this build cannot read.
|
|
85
|
+
*
|
|
86
|
+
* Per TYPE rather than through {@link notificationRoutingMatrixSchema}, because a row written by
|
|
87
|
+
* an older build can name a notification type (or a channel) that has since been retired, and a
|
|
88
|
+
* single strict parse would then discard EVERY override in the row — silently unmuting every
|
|
89
|
+
* other type at once. Dropping the one unreadable cell leaves the workspace's other choices
|
|
90
|
+
* standing, and the dropped one falls back to the shipped default, which is what an un-overridden
|
|
91
|
+
* cell already means. Nothing renders a retired name, so there is none to state.
|
|
92
|
+
*
|
|
93
|
+
* A value that is not an object at all resolves to "no overrides" rather than throwing: the
|
|
94
|
+
* caller is on the delivery path, where a throw could only cost the human the notification they
|
|
95
|
+
* are waiting for.
|
|
96
|
+
*/
|
|
97
|
+
export declare function decodeNotificationRoutingMatrix(raw: unknown): NotificationRoutingMatrix;
|
|
98
|
+
/** The resolved routing for one type across every channel (the settings UI's row). */
|
|
99
|
+
export declare function resolveNotificationRouting(matrix: NotificationRoutingMatrix | null | undefined, type: NotificationType): Record<NotificationDeliveryChannel, boolean>;
|
|
100
|
+
//# sourceMappingURL=notification-routing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification-routing.d.ts","sourceRoot":"","sources":["../src/notification-routing.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EAA0B,KAAK,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAwBlF;;;GAGG;AACH,eAAO,MAAM,iCAAiC,kDAAkC,CAAA;AAChF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,iCAAiC,CAAC,CAAA;AAEjG,8EAA8E;AAC9E,eAAO,MAAM,8BAA8B,8BAGgB,CAAA;AAE3D;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,8BAA8B,wKAkBK,CAAA;AAIhD,4FAA4F;AAC5F,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAE5E;AAED;;;;;GAKG;AACH,eAAO,MAAM,kCAAkC;;;aAG7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,6FAA6F;AAC7F,eAAO,MAAM,+BAA+B;;;yBAG3C,CAAA;AACD,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAE7F,8DAA8D;AAC9D,eAAO,MAAM,0BAA0B;;;;;IAErC,uFAAuF;;aAEvF,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAEnF,2FAA2F;AAC3F,eAAO,MAAM,gCAAgC;;;;;aAE3C,CAAA;AACF,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,gCAAgC,CAAC,CAAA;AAEpG;;;;;;;;;;GAUG;AACH,wBAAgB,wBAAwB,CACtC,IAAI,EAAE,gBAAgB,EACtB,OAAO,EAAE,2BAA2B,GACnC,OAAO,CAET;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,MAAM,EAAE,yBAAyB,GAAG,IAAI,GAAG,SAAS,EACpD,IAAI,EAAE,gBAAgB,EACtB,OAAO,EAAE,2BAA2B,GACnC,OAAO,CAET;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,+BAA+B,CAAC,GAAG,EAAE,OAAO,GAAG,yBAAyB,CAYvF;AAED,sFAAsF;AACtF,wBAAgB,0BAA0B,CACxC,MAAM,EAAE,yBAAyB,GAAG,IAAI,GAAG,SAAS,EACpD,IAAI,EAAE,gBAAgB,GACrB,MAAM,CAAC,2BAA2B,EAAE,OAAO,CAAC,CAK9C"}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
import { notificationTypeSchema } from './notifications.js';
|
|
3
|
+
// ---------------------------------------------------------------------------
|
|
4
|
+
// The notification MANAGER: which notification types a workspace delivers on which
|
|
5
|
+
// channel. The routing rule lives here, in contracts, because both sides have to
|
|
6
|
+
// AGREE about the same answer — the engine decides whether to deliver, and the
|
|
7
|
+
// settings UI has to render the very same resolved state (including the shipped
|
|
8
|
+
// default a workspace has never overridden). A rule restated on each side drifts,
|
|
9
|
+
// and here the drift is silent: the toggle says "on" while nothing is sent.
|
|
10
|
+
//
|
|
11
|
+
// Scope, and why these two channels and not the others:
|
|
12
|
+
// - `in_app` and `email` are workspace-wide YES/NO per type: there is nothing to
|
|
13
|
+
// configure beyond "send it or don't", so a matrix is the whole story.
|
|
14
|
+
// - Slack and the outbound webhooks are DESTINATION-configured — a Slack route
|
|
15
|
+
// carries the channel it posts to, a webhook endpoint carries its own `types`
|
|
16
|
+
// filter — so "which types" is answered where the destination is declared. A
|
|
17
|
+
// second switch here would be a place to look that does not decide.
|
|
18
|
+
//
|
|
19
|
+
// A cell is an OVERRIDE, not the value: absent means "this workspace has never said",
|
|
20
|
+
// which resolves to the shipped default for that (type, channel). That is what lets a
|
|
21
|
+
// new notification type, or a new channel, arrive with a sensible default instead of
|
|
22
|
+
// reading as an explicit `false` nobody chose.
|
|
23
|
+
// ---------------------------------------------------------------------------
|
|
24
|
+
/**
|
|
25
|
+
* A channel the notification manager routes. See the module comment for why the
|
|
26
|
+
* destination-configured transports (Slack, outbound webhooks) are deliberately absent.
|
|
27
|
+
*/
|
|
28
|
+
export const notificationDeliveryChannelSchema = v.picklist(['in_app', 'email']);
|
|
29
|
+
/** Every routed channel, in the order the settings UI renders its columns. */
|
|
30
|
+
export const NOTIFICATION_DELIVERY_CHANNELS = [
|
|
31
|
+
'in_app',
|
|
32
|
+
'email',
|
|
33
|
+
];
|
|
34
|
+
/**
|
|
35
|
+
* The types email is ON for by default: the ones where something is STOPPED and stays
|
|
36
|
+
* stopped until a human acts, or where the deployment itself is degraded. Email is the
|
|
37
|
+
* channel that reaches someone who is not looking at the board, so its default has to be
|
|
38
|
+
* the set worth interrupting them over.
|
|
39
|
+
*
|
|
40
|
+
* Deliberately EXCLUDED, though they are human-actionable: the per-step review parks
|
|
41
|
+
* (`requirement_review`, `human_review`, `judge_review`, `pr_review_ready`,
|
|
42
|
+
* `fork_decision_pending`, `followup_pending`, …). Several of them arrive on nearly every
|
|
43
|
+
* task, so mailing them by default is the firehose that gets a sender's domain filtered and
|
|
44
|
+
* teaches people to ignore the channel. A workspace that wants them turns them on per type,
|
|
45
|
+
* which is what the manager is for.
|
|
46
|
+
*
|
|
47
|
+
* `budget_threshold` is out for the same reason `budget_paused` is in: the warning is
|
|
48
|
+
* proactive and recurring, the pause has already stopped work.
|
|
49
|
+
*/
|
|
50
|
+
export const HIGH_IMPACT_NOTIFICATION_TYPES = [
|
|
51
|
+
// A run finished but its PR needs a human merge decision.
|
|
52
|
+
'merge_review',
|
|
53
|
+
// An iterative gate spent its budget and parked on a human decision — the run waits
|
|
54
|
+
// indefinitely, so nobody learns it stopped unless they are watching the board.
|
|
55
|
+
'decision_required',
|
|
56
|
+
// The machine gave up: CI is still red / the tester still withholds its greenlight.
|
|
57
|
+
'ci_failed',
|
|
58
|
+
'test_failed',
|
|
59
|
+
// Production regressed after a deploy.
|
|
60
|
+
'release_regression',
|
|
61
|
+
// Deployment-level: aggregate run health, a dead infrastructure connection, runs paused
|
|
62
|
+
// by the spend safeguard, credentials that no longer decrypt. Each stops (or is about to
|
|
63
|
+
// stop) work for everyone, and none of them has anyone watching a board.
|
|
64
|
+
'platform_health',
|
|
65
|
+
'infra_unreachable',
|
|
66
|
+
'budget_paused',
|
|
67
|
+
'key_drift',
|
|
68
|
+
];
|
|
69
|
+
const HIGH_IMPACT_SET = new Set(HIGH_IMPACT_NOTIFICATION_TYPES);
|
|
70
|
+
/** Whether a type is one of the high-impact events email carries by default (see above). */
|
|
71
|
+
export function isHighImpactNotificationType(type) {
|
|
72
|
+
return HIGH_IMPACT_SET.has(type);
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* One type's routing OVERRIDES. Every cell is optional and absent means "never chosen",
|
|
76
|
+
* which resolves to {@link defaultNotificationRoute}. Adding a channel to the union
|
|
77
|
+
* therefore leaves every stored row valid, and the new channel arrives on its default
|
|
78
|
+
* rather than as a `false` no human picked.
|
|
79
|
+
*/
|
|
80
|
+
export const notificationChannelOverridesSchema = v.object({
|
|
81
|
+
in_app: v.optional(v.boolean()),
|
|
82
|
+
email: v.optional(v.boolean()),
|
|
83
|
+
});
|
|
84
|
+
/** A workspace's per-type routing overrides. Types absent from the map are fully default. */
|
|
85
|
+
export const notificationRoutingMatrixSchema = v.record(notificationTypeSchema, notificationChannelOverridesSchema);
|
|
86
|
+
/** A workspace's notification manager settings, as served. */
|
|
87
|
+
export const notificationSettingsSchema = v.object({
|
|
88
|
+
matrix: notificationRoutingMatrixSchema,
|
|
89
|
+
/** Epoch ms of the last write; `0` when the workspace has never configured routing. */
|
|
90
|
+
updatedAt: v.number(),
|
|
91
|
+
});
|
|
92
|
+
/** Replace a workspace's routing matrix (a full replace, like the Slack routing write). */
|
|
93
|
+
export const updateNotificationSettingsSchema = v.object({
|
|
94
|
+
matrix: notificationRoutingMatrixSchema,
|
|
95
|
+
});
|
|
96
|
+
/**
|
|
97
|
+
* The shipped default for one (type, channel) — what applies until a workspace overrides it.
|
|
98
|
+
*
|
|
99
|
+
* `in_app` is ON for every type: the inbox is where a human-actionable card lives, and the
|
|
100
|
+
* push is what makes it appear without a reload. Turning it off is a legitimate "stop
|
|
101
|
+
* interrupting me about this kind" choice, and it never hides anything: the card is persisted
|
|
102
|
+
* either way and is still in the inbox on the next snapshot.
|
|
103
|
+
*
|
|
104
|
+
* `email` is ON only for {@link HIGH_IMPACT_NOTIFICATION_TYPES}, so a deployment that connects
|
|
105
|
+
* a sender does not start mailing its members about every step of every run.
|
|
106
|
+
*/
|
|
107
|
+
export function defaultNotificationRoute(type, channel) {
|
|
108
|
+
return channel === 'in_app' ? true : isHighImpactNotificationType(type);
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Whether a workspace delivers `type` on `channel`: its override when it has one, else the
|
|
112
|
+
* shipped default. THE routing decision — the engine gates delivery on it and the settings UI
|
|
113
|
+
* renders the toggle from it, so neither can state something the other does not do.
|
|
114
|
+
*/
|
|
115
|
+
export function isNotificationRouted(matrix, type, channel) {
|
|
116
|
+
return matrix?.[type]?.[channel] ?? defaultNotificationRoute(type, channel);
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Decode a persisted routing matrix, dropping only what this build cannot read.
|
|
120
|
+
*
|
|
121
|
+
* Per TYPE rather than through {@link notificationRoutingMatrixSchema}, because a row written by
|
|
122
|
+
* an older build can name a notification type (or a channel) that has since been retired, and a
|
|
123
|
+
* single strict parse would then discard EVERY override in the row — silently unmuting every
|
|
124
|
+
* other type at once. Dropping the one unreadable cell leaves the workspace's other choices
|
|
125
|
+
* standing, and the dropped one falls back to the shipped default, which is what an un-overridden
|
|
126
|
+
* cell already means. Nothing renders a retired name, so there is none to state.
|
|
127
|
+
*
|
|
128
|
+
* A value that is not an object at all resolves to "no overrides" rather than throwing: the
|
|
129
|
+
* caller is on the delivery path, where a throw could only cost the human the notification they
|
|
130
|
+
* are waiting for.
|
|
131
|
+
*/
|
|
132
|
+
export function decodeNotificationRoutingMatrix(raw) {
|
|
133
|
+
if (!raw || typeof raw !== 'object')
|
|
134
|
+
return {};
|
|
135
|
+
const matrix = {};
|
|
136
|
+
for (const [type, cell] of Object.entries(raw)) {
|
|
137
|
+
const parsedType = v.safeParse(notificationTypeSchema, type);
|
|
138
|
+
if (!parsedType.success)
|
|
139
|
+
continue;
|
|
140
|
+
// `v.object` drops unknown entries, so a retired CHANNEL costs its own cell and nothing else.
|
|
141
|
+
const parsedCell = v.safeParse(notificationChannelOverridesSchema, cell);
|
|
142
|
+
if (!parsedCell.success)
|
|
143
|
+
continue;
|
|
144
|
+
matrix[parsedType.output] = parsedCell.output;
|
|
145
|
+
}
|
|
146
|
+
return matrix;
|
|
147
|
+
}
|
|
148
|
+
/** The resolved routing for one type across every channel (the settings UI's row). */
|
|
149
|
+
export function resolveNotificationRouting(matrix, type) {
|
|
150
|
+
return {
|
|
151
|
+
in_app: isNotificationRouted(matrix, type, 'in_app'),
|
|
152
|
+
email: isNotificationRouted(matrix, type, 'email'),
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
//# sourceMappingURL=notification-routing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification-routing.js","sourceRoot":"","sources":["../src/notification-routing.ts"],"names":[],"mappings":"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"}
|
package/dist/public-api.d.ts
CHANGED
|
@@ -199,6 +199,22 @@ export declare const publicTaskSchema: v.ObjectSchema<{
|
|
|
199
199
|
readonly runId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
200
200
|
/** The web URL of the PR the run opened, once one exists; null otherwise. */
|
|
201
201
|
readonly pullRequestUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
202
|
+
/**
|
|
203
|
+
* Task ids this task WAITS FOR: it cannot start until every one of them is `done`, and the
|
|
204
|
+
* engine's start gate refuses it until they are.
|
|
205
|
+
*
|
|
206
|
+
* Served so a caller that declared an ordering can read back what the board holds, which is what
|
|
207
|
+
* makes `POST /api/v1/tasks/{taskId}/dependencies` verifiable rather than fire-and-forget. Empty
|
|
208
|
+
* for a task nothing blocks, which is the normal state.
|
|
209
|
+
*/
|
|
210
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
211
|
+
/**
|
|
212
|
+
* Whether merging this task's pull request STARTS the tasks that depend on it.
|
|
213
|
+
*
|
|
214
|
+
* The other half of an ordering, and the one that makes a declared chain run itself: without it a
|
|
215
|
+
* dependent is merely refused until its blocker lands, and something has to notice and start it.
|
|
216
|
+
*/
|
|
217
|
+
readonly autoStartDependents: v.BooleanSchema<undefined>;
|
|
202
218
|
}, undefined>;
|
|
203
219
|
export type PublicTask = v.InferOutput<typeof publicTaskSchema>;
|
|
204
220
|
export declare const publicTaskListSchema: v.ObjectSchema<{
|
|
@@ -220,6 +236,22 @@ export declare const publicTaskListSchema: v.ObjectSchema<{
|
|
|
220
236
|
readonly runId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
221
237
|
/** The web URL of the PR the run opened, once one exists; null otherwise. */
|
|
222
238
|
readonly pullRequestUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
239
|
+
/**
|
|
240
|
+
* Task ids this task WAITS FOR: it cannot start until every one of them is `done`, and the
|
|
241
|
+
* engine's start gate refuses it until they are.
|
|
242
|
+
*
|
|
243
|
+
* Served so a caller that declared an ordering can read back what the board holds, which is what
|
|
244
|
+
* makes `POST /api/v1/tasks/{taskId}/dependencies` verifiable rather than fire-and-forget. Empty
|
|
245
|
+
* for a task nothing blocks, which is the normal state.
|
|
246
|
+
*/
|
|
247
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
248
|
+
/**
|
|
249
|
+
* Whether merging this task's pull request STARTS the tasks that depend on it.
|
|
250
|
+
*
|
|
251
|
+
* The other half of an ordering, and the one that makes a declared chain run itself: without it a
|
|
252
|
+
* dependent is merely refused until its blocker lands, and something has to notice and start it.
|
|
253
|
+
*/
|
|
254
|
+
readonly autoStartDependents: v.BooleanSchema<undefined>;
|
|
223
255
|
}, undefined>, undefined>;
|
|
224
256
|
/**
|
|
225
257
|
* Cursor to pass as `?cursor=` for the next page, or null when this was the last page.
|
|
@@ -500,6 +532,17 @@ export declare const updatePublicTaskSchema: v.ObjectSchema<{
|
|
|
500
532
|
* run does not review; send the description you want alongside the new target to resolve it.
|
|
501
533
|
*/
|
|
502
534
|
readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
535
|
+
/**
|
|
536
|
+
* Whether merging this task's pull request STARTS the tasks that depend on it (the toggle
|
|
537
|
+
* {@link publicTaskSchema} reports).
|
|
538
|
+
*
|
|
539
|
+
* Here rather than on the create call because it is a property of the ORDERING, and an ordering
|
|
540
|
+
* is declared after both ends exist: a caller filing a batch of related tasks creates them all,
|
|
541
|
+
* links them with `POST /api/v1/tasks/{taskId}/dependencies`, and then decides which blockers
|
|
542
|
+
* pull their dependents along. Offering it at creation would ask for the answer at the one moment
|
|
543
|
+
* the caller cannot have it.
|
|
544
|
+
*/
|
|
545
|
+
readonly autoStartDependents: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
503
546
|
}, undefined>;
|
|
504
547
|
export type UpdatePublicTaskInput = v.InferOutput<typeof updatePublicTaskSchema>;
|
|
505
548
|
/**
|
|
@@ -525,6 +568,53 @@ export declare const publicRunStepSchema: v.ObjectSchema<{
|
|
|
525
568
|
readonly inProgress: v.NumberSchema<undefined>;
|
|
526
569
|
readonly total: v.NumberSchema<undefined>;
|
|
527
570
|
}, undefined>, undefined>;
|
|
571
|
+
/**
|
|
572
|
+
* The step's prose output (the agent's final reply), or null while it has produced none.
|
|
573
|
+
*
|
|
574
|
+
* This is what a board task running an INLINE-only pipeline delivers, and until it was served
|
|
575
|
+
* here the API could not read it: `publicJob` carries a `result` because a headless job is a
|
|
576
|
+
* one-step inline run, while a board run's deliverable had to be inferred from the pull request
|
|
577
|
+
* the pipeline opened. A pipeline that opens none (a research pass, an estimate, a written
|
|
578
|
+
* assessment) produced a result readable only in the app.
|
|
579
|
+
*
|
|
580
|
+
* Served WHOLE by the POINT READ (`GET /api/v1/tasks/{taskId}/run`), which is deliberate:
|
|
581
|
+
* `publicJobResult.output` already serves the same class of content whole, and two surfaces that
|
|
582
|
+
* disagree about the same fact are worse than a large response. The size is a step's own output
|
|
583
|
+
* budget, not a log tail (`GET /api/v1/debug/runs/:runId` is where raw diagnostics live, and it
|
|
584
|
+
* reports `outputChars` for exactly this reason).
|
|
585
|
+
*
|
|
586
|
+
* The SSE stream is the one place it is not, and {@link publicRunStepSchema} `truncated` says so
|
|
587
|
+
* per step. See that field for why.
|
|
588
|
+
*/
|
|
589
|
+
readonly output: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
590
|
+
/**
|
|
591
|
+
* The step's STRUCTURED result (`step.custom`), when the agent produced one; null otherwise.
|
|
592
|
+
*
|
|
593
|
+
* The counterpart of {@link publicJobResultSchema}'s `data`, and the same rule applies: what a
|
|
594
|
+
* step puts here is decided by its agent kind, so it is `unknown` on the wire rather than a
|
|
595
|
+
* shape this contract would have to keep in step with every kind a deployment registers.
|
|
596
|
+
*
|
|
597
|
+
* Null and an empty object are DIFFERENT facts: null means the step produced no structured
|
|
598
|
+
* result at all, which is the normal state for an agent whose deliverable is its prose.
|
|
599
|
+
*/
|
|
600
|
+
readonly data: v.NullableSchema<v.UnknownSchema, undefined>;
|
|
601
|
+
/**
|
|
602
|
+
* True when THIS PROJECTION reduced the step's deliverable for size: {@link output} is clipped
|
|
603
|
+
* to a leading preview and {@link data} is withheld as null. Absent/false ⇒ both are whole.
|
|
604
|
+
*
|
|
605
|
+
* Set only on the SSE stream (`GET /api/v1/tasks/{taskId}/events`), never on a point read. The
|
|
606
|
+
* stream re-sends the WHOLE run on every change, so carrying every step's output in every frame
|
|
607
|
+
* is quadratic in the run's own length: a late frame repeats every output produced so far, and a
|
|
608
|
+
* long pipeline turns a progress channel into a repeated bulk transfer. The platform already
|
|
609
|
+
* settles this trade the same way for the run's own `detail` JSON, which is re-serialized on
|
|
610
|
+
* every step-progress write and clips a recorded output with a `truncated` flag for it.
|
|
611
|
+
*
|
|
612
|
+
* A caller that needs the whole deliverable reads `GET /api/v1/tasks/{taskId}/run`, which serves
|
|
613
|
+
* it and every step's `data` untouched. The flag exists so a clipped preview can never be
|
|
614
|
+
* mistaken for the output itself: an absent tail and a step that wrote nothing more are
|
|
615
|
+
* different facts, and only the flag distinguishes them.
|
|
616
|
+
*/
|
|
617
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
528
618
|
}, undefined>;
|
|
529
619
|
export type PublicRunStep = v.InferOutput<typeof publicRunStepSchema>;
|
|
530
620
|
/**
|
|
@@ -553,6 +643,53 @@ export declare const publicRunSchema: v.ObjectSchema<{
|
|
|
553
643
|
readonly inProgress: v.NumberSchema<undefined>;
|
|
554
644
|
readonly total: v.NumberSchema<undefined>;
|
|
555
645
|
}, undefined>, undefined>;
|
|
646
|
+
/**
|
|
647
|
+
* The step's prose output (the agent's final reply), or null while it has produced none.
|
|
648
|
+
*
|
|
649
|
+
* This is what a board task running an INLINE-only pipeline delivers, and until it was served
|
|
650
|
+
* here the API could not read it: `publicJob` carries a `result` because a headless job is a
|
|
651
|
+
* one-step inline run, while a board run's deliverable had to be inferred from the pull request
|
|
652
|
+
* the pipeline opened. A pipeline that opens none (a research pass, an estimate, a written
|
|
653
|
+
* assessment) produced a result readable only in the app.
|
|
654
|
+
*
|
|
655
|
+
* Served WHOLE by the POINT READ (`GET /api/v1/tasks/{taskId}/run`), which is deliberate:
|
|
656
|
+
* `publicJobResult.output` already serves the same class of content whole, and two surfaces that
|
|
657
|
+
* disagree about the same fact are worse than a large response. The size is a step's own output
|
|
658
|
+
* budget, not a log tail (`GET /api/v1/debug/runs/:runId` is where raw diagnostics live, and it
|
|
659
|
+
* reports `outputChars` for exactly this reason).
|
|
660
|
+
*
|
|
661
|
+
* The SSE stream is the one place it is not, and {@link publicRunStepSchema} `truncated` says so
|
|
662
|
+
* per step. See that field for why.
|
|
663
|
+
*/
|
|
664
|
+
readonly output: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
665
|
+
/**
|
|
666
|
+
* The step's STRUCTURED result (`step.custom`), when the agent produced one; null otherwise.
|
|
667
|
+
*
|
|
668
|
+
* The counterpart of {@link publicJobResultSchema}'s `data`, and the same rule applies: what a
|
|
669
|
+
* step puts here is decided by its agent kind, so it is `unknown` on the wire rather than a
|
|
670
|
+
* shape this contract would have to keep in step with every kind a deployment registers.
|
|
671
|
+
*
|
|
672
|
+
* Null and an empty object are DIFFERENT facts: null means the step produced no structured
|
|
673
|
+
* result at all, which is the normal state for an agent whose deliverable is its prose.
|
|
674
|
+
*/
|
|
675
|
+
readonly data: v.NullableSchema<v.UnknownSchema, undefined>;
|
|
676
|
+
/**
|
|
677
|
+
* True when THIS PROJECTION reduced the step's deliverable for size: {@link output} is clipped
|
|
678
|
+
* to a leading preview and {@link data} is withheld as null. Absent/false ⇒ both are whole.
|
|
679
|
+
*
|
|
680
|
+
* Set only on the SSE stream (`GET /api/v1/tasks/{taskId}/events`), never on a point read. The
|
|
681
|
+
* stream re-sends the WHOLE run on every change, so carrying every step's output in every frame
|
|
682
|
+
* is quadratic in the run's own length: a late frame repeats every output produced so far, and a
|
|
683
|
+
* long pipeline turns a progress channel into a repeated bulk transfer. The platform already
|
|
684
|
+
* settles this trade the same way for the run's own `detail` JSON, which is re-serialized on
|
|
685
|
+
* every step-progress write and clips a recorded output with a `truncated` flag for it.
|
|
686
|
+
*
|
|
687
|
+
* A caller that needs the whole deliverable reads `GET /api/v1/tasks/{taskId}/run`, which serves
|
|
688
|
+
* it and every step's `data` untouched. The flag exists so a clipped preview can never be
|
|
689
|
+
* mistaken for the output itself: an absent tail and a step that wrote nothing more are
|
|
690
|
+
* different facts, and only the flag distinguishes them.
|
|
691
|
+
*/
|
|
692
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
556
693
|
}, undefined>, undefined>;
|
|
557
694
|
/** Who this run was started for ({@link publicRunExternalIdentitySchema}). */
|
|
558
695
|
readonly externalIdentity: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
package/dist/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AA8D5B,4EAA4E;AAC5E,eAAO,MAAM,qBAAqB;IAChC,wEAAwE;;IAExE,+EAA+E;;IAE/E,kFAAkF;;aAElF,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE9E;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,iEAAiD,CAAA;AACnF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE,2EAA2E;AAC3E,eAAO,MAAM,qBAAqB;IAChC,kDAAkD;;IAElD,iFAAiF;;aAEjF,CAAA;AACF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,+BAA+B,wDAAyB,CAAA;AAErE;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,uCAAuC,4BAAc,CAAA;AAElE,4EAA4E;AAC5E,eAAO,MAAM,eAAe;;;;;IAK1B,8EAA8E;;IAE9E;6DACyD;;IAEzD,kFAAkF;;QA3DlF,kDAAkD;;QAElD,iFAAiF;;;IA2DjF,yDAAyD;;;;;aAEzD,CAAA;AACF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,eAAe,CAAC,CAAA;AAE7D;;;;;;;GAOG;AACH,eAAO,MAAM,mBAAmB;;;;;;QApB9B,8EAA8E;;QAE9E;iEACyD;;QAEzD,kFAAkF;;YA3DlF,kDAAkD;;YAElD,iFAAiF;;;QA2DjF,yDAAyD;;;;;;IAezD,iGAAiG;;aAEjG,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAErE;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB;IACpC,4CAA4C;;IAE5C,yDAAyD;;IAEzD,8CAA8C;;IAE9C,8FAA8F;;aAE9F,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAEjF,2EAA2E;AAC3E,eAAO,MAAM,uBAAuB;;;;;;;aAIlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAM7E;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,iGAOjC,CAAA;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE3E,uGAAuG;AACvG,eAAO,MAAM,mBAAmB;;;;IAI9B,qFAAqF;;;aAGrF,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAErE,eAAO,MAAM,uBAAuB;;;;;QANlC,qFAAqF;;;;aAMI,CAAA;AAC3F,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,iFAAiF;AACjF,eAAO,MAAM,gBAAgB;;IAE3B,wDAAwD;;;;;;IAMxD,mEAAmE;;IAEnE;;;;OAIG;;IAEH,6EAA6E;;
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
|
package/dist/public-api.js
CHANGED
|
@@ -197,6 +197,22 @@ export const publicTaskSchema = v.object({
|
|
|
197
197
|
runId: v.nullable(v.string()),
|
|
198
198
|
/** The web URL of the PR the run opened, once one exists; null otherwise. */
|
|
199
199
|
pullRequestUrl: v.nullable(v.string()),
|
|
200
|
+
/**
|
|
201
|
+
* Task ids this task WAITS FOR: it cannot start until every one of them is `done`, and the
|
|
202
|
+
* engine's start gate refuses it until they are.
|
|
203
|
+
*
|
|
204
|
+
* Served so a caller that declared an ordering can read back what the board holds, which is what
|
|
205
|
+
* makes `POST /api/v1/tasks/{taskId}/dependencies` verifiable rather than fire-and-forget. Empty
|
|
206
|
+
* for a task nothing blocks, which is the normal state.
|
|
207
|
+
*/
|
|
208
|
+
dependsOn: v.array(v.string()),
|
|
209
|
+
/**
|
|
210
|
+
* Whether merging this task's pull request STARTS the tasks that depend on it.
|
|
211
|
+
*
|
|
212
|
+
* The other half of an ordering, and the one that makes a declared chain run itself: without it a
|
|
213
|
+
* dependent is merely refused until its blocker lands, and something has to notice and start it.
|
|
214
|
+
*/
|
|
215
|
+
autoStartDependents: v.boolean(),
|
|
200
216
|
});
|
|
201
217
|
export const publicTaskListSchema = v.object({
|
|
202
218
|
tasks: v.array(publicTaskSchema),
|
|
@@ -425,6 +441,17 @@ export const updatePublicTaskSchema = v.object({
|
|
|
425
441
|
* run does not review; send the description you want alongside the new target to resolve it.
|
|
426
442
|
*/
|
|
427
443
|
fields: v.optional(descriptorFieldValuesSchema),
|
|
444
|
+
/**
|
|
445
|
+
* Whether merging this task's pull request STARTS the tasks that depend on it (the toggle
|
|
446
|
+
* {@link publicTaskSchema} reports).
|
|
447
|
+
*
|
|
448
|
+
* Here rather than on the create call because it is a property of the ORDERING, and an ordering
|
|
449
|
+
* is declared after both ends exist: a caller filing a batch of related tasks creates them all,
|
|
450
|
+
* links them with `POST /api/v1/tasks/{taskId}/dependencies`, and then decides which blockers
|
|
451
|
+
* pull their dependents along. Offering it at creation would ask for the answer at the one moment
|
|
452
|
+
* the caller cannot have it.
|
|
453
|
+
*/
|
|
454
|
+
autoStartDependents: v.optional(v.boolean()),
|
|
428
455
|
});
|
|
429
456
|
// ---------------------------------------------------------------------------
|
|
430
457
|
// Richer run projection + live stream (the task-lifecycle surface).
|
|
@@ -447,6 +474,53 @@ export const publicRunStepSchema = v.object({
|
|
|
447
474
|
progress: v.number(),
|
|
448
475
|
/** Live subtask counts while an async (container) step runs; null when none. */
|
|
449
476
|
subtasks: v.nullable(v.object({ completed: v.number(), inProgress: v.number(), total: v.number() })),
|
|
477
|
+
/**
|
|
478
|
+
* The step's prose output (the agent's final reply), or null while it has produced none.
|
|
479
|
+
*
|
|
480
|
+
* This is what a board task running an INLINE-only pipeline delivers, and until it was served
|
|
481
|
+
* here the API could not read it: `publicJob` carries a `result` because a headless job is a
|
|
482
|
+
* one-step inline run, while a board run's deliverable had to be inferred from the pull request
|
|
483
|
+
* the pipeline opened. A pipeline that opens none (a research pass, an estimate, a written
|
|
484
|
+
* assessment) produced a result readable only in the app.
|
|
485
|
+
*
|
|
486
|
+
* Served WHOLE by the POINT READ (`GET /api/v1/tasks/{taskId}/run`), which is deliberate:
|
|
487
|
+
* `publicJobResult.output` already serves the same class of content whole, and two surfaces that
|
|
488
|
+
* disagree about the same fact are worse than a large response. The size is a step's own output
|
|
489
|
+
* budget, not a log tail (`GET /api/v1/debug/runs/:runId` is where raw diagnostics live, and it
|
|
490
|
+
* reports `outputChars` for exactly this reason).
|
|
491
|
+
*
|
|
492
|
+
* The SSE stream is the one place it is not, and {@link publicRunStepSchema} `truncated` says so
|
|
493
|
+
* per step. See that field for why.
|
|
494
|
+
*/
|
|
495
|
+
output: v.nullable(v.string()),
|
|
496
|
+
/**
|
|
497
|
+
* The step's STRUCTURED result (`step.custom`), when the agent produced one; null otherwise.
|
|
498
|
+
*
|
|
499
|
+
* The counterpart of {@link publicJobResultSchema}'s `data`, and the same rule applies: what a
|
|
500
|
+
* step puts here is decided by its agent kind, so it is `unknown` on the wire rather than a
|
|
501
|
+
* shape this contract would have to keep in step with every kind a deployment registers.
|
|
502
|
+
*
|
|
503
|
+
* Null and an empty object are DIFFERENT facts: null means the step produced no structured
|
|
504
|
+
* result at all, which is the normal state for an agent whose deliverable is its prose.
|
|
505
|
+
*/
|
|
506
|
+
data: v.nullable(v.unknown()),
|
|
507
|
+
/**
|
|
508
|
+
* True when THIS PROJECTION reduced the step's deliverable for size: {@link output} is clipped
|
|
509
|
+
* to a leading preview and {@link data} is withheld as null. Absent/false ⇒ both are whole.
|
|
510
|
+
*
|
|
511
|
+
* Set only on the SSE stream (`GET /api/v1/tasks/{taskId}/events`), never on a point read. The
|
|
512
|
+
* stream re-sends the WHOLE run on every change, so carrying every step's output in every frame
|
|
513
|
+
* is quadratic in the run's own length: a late frame repeats every output produced so far, and a
|
|
514
|
+
* long pipeline turns a progress channel into a repeated bulk transfer. The platform already
|
|
515
|
+
* settles this trade the same way for the run's own `detail` JSON, which is re-serialized on
|
|
516
|
+
* every step-progress write and clips a recorded output with a `truncated` flag for it.
|
|
517
|
+
*
|
|
518
|
+
* A caller that needs the whole deliverable reads `GET /api/v1/tasks/{taskId}/run`, which serves
|
|
519
|
+
* it and every step's `data` untouched. The flag exists so a clipped preview can never be
|
|
520
|
+
* mistaken for the output itself: an absent tail and a step that wrote nothing more are
|
|
521
|
+
* different facts, and only the flag distinguishes them.
|
|
522
|
+
*/
|
|
523
|
+
truncated: v.optional(v.boolean()),
|
|
450
524
|
});
|
|
451
525
|
/**
|
|
452
526
|
* The rich external view of a task's run — per-step status/progress/subtasks, the failure
|
package/dist/public-api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
|