@getpaseo/protocol 0.6.1 → 0.7.0-beta.1
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/check-traits.d.ts +11 -0
- package/dist/check-traits.js +10 -0
- package/dist/client-capabilities.d.ts +1 -0
- package/dist/client-capabilities.js +3 -0
- package/dist/generated/validation/ws-outbound.aot.js +33775 -33330
- package/dist/gitea-status.d.ts +10 -0
- package/dist/gitea-status.js +23 -0
- package/dist/gitlab-pipeline.d.ts +10 -0
- package/dist/gitlab-pipeline.js +17 -0
- package/dist/messages.d.ts +579 -24
- package/dist/messages.js +150 -40
- package/dist/validation/ws-outbound-schema-metadata.d.ts +116 -4
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Forge-neutral check traits carried on the wire alongside the stable check
|
|
3
|
+
* status union. Traits are open-ended by design (unknown values must be
|
|
4
|
+
* ignored by consumers); these constants cover the traits the shipped forges
|
|
5
|
+
* emit today so producers and the presentation layer cannot drift apart.
|
|
6
|
+
*/
|
|
7
|
+
export declare const CHECK_TRAIT_MANUAL = "manual";
|
|
8
|
+
export declare const CHECK_TRAIT_ACTION_REQUIRED = "action_required";
|
|
9
|
+
export declare const CHECK_TRAIT_WARNING = "warning";
|
|
10
|
+
export type KnownCheckTrait = typeof CHECK_TRAIT_MANUAL | typeof CHECK_TRAIT_ACTION_REQUIRED | typeof CHECK_TRAIT_WARNING;
|
|
11
|
+
//# sourceMappingURL=check-traits.d.ts.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Forge-neutral check traits carried on the wire alongside the stable check
|
|
3
|
+
* status union. Traits are open-ended by design (unknown values must be
|
|
4
|
+
* ignored by consumers); these constants cover the traits the shipped forges
|
|
5
|
+
* emit today so producers and the presentation layer cannot drift apart.
|
|
6
|
+
*/
|
|
7
|
+
export const CHECK_TRAIT_MANUAL = "manual";
|
|
8
|
+
export const CHECK_TRAIT_ACTION_REQUIRED = "action_required";
|
|
9
|
+
export const CHECK_TRAIT_WARNING = "warning";
|
|
10
|
+
//# sourceMappingURL=check-traits.js.map
|
|
@@ -6,6 +6,7 @@ export declare const CLIENT_CAPS: {
|
|
|
6
6
|
readonly providerSubagents: "provider_subagents";
|
|
7
7
|
readonly projectUpdates: "project_updates";
|
|
8
8
|
readonly compactProviderSnapshots: "compact_provider_snapshots";
|
|
9
|
+
readonly timelineReplacementInvalidation: "timeline_replacement_invalidation";
|
|
9
10
|
readonly browserHost: "browser_host";
|
|
10
11
|
};
|
|
11
12
|
export type ClientCapability = (typeof CLIENT_CAPS)[keyof typeof CLIENT_CAPS];
|
|
@@ -24,6 +24,9 @@ export const CLIENT_CAPS = {
|
|
|
24
24
|
// provider catalogs with shared thinking sets and may revalidate by content hash.
|
|
25
25
|
// Remove the legacy snapshot encoding after 2027-02-04.
|
|
26
26
|
compactProviderSnapshots: "compact_provider_snapshots",
|
|
27
|
+
// COMPAT(timelineReplacementInvalidation): added in v0.5.0, remove legacy
|
|
28
|
+
// reconstructed timeline replay after 2027-02-21 once the client floor supports invalidation.
|
|
29
|
+
timelineReplacementInvalidation: "timeline_replacement_invalidation",
|
|
27
30
|
browserHost: "browser_host",
|
|
28
31
|
};
|
|
29
32
|
//# sourceMappingURL=client-capabilities.js.map
|