@burgan-tech/vnext-meta 0.0.61 → 0.0.63

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/features.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "runtimeVersion": "0.0.58",
2
+ "runtimeVersion": "0.0.61",
3
3
  "engine": {
4
4
  "customScriptHelpers": {
5
5
  "since": "0.0.58",
@@ -14,6 +14,15 @@
14
14
  "Scripting:Sandbox:PluginDirectory",
15
15
  "Scripting:Sandbox:AllowUnsafe"
16
16
  ]
17
+ },
18
+ "longPollTermination": {
19
+ "since": "0.0.62",
20
+ "status": "stable",
21
+ "description": "Declarative long-poll termination on state entry. A state may declare interaction.longPoll.terminate=true (with optional interaction.longPoll.roles[] role grants and interaction.longPoll.fallbackTimeoutSeconds, default 60). When the pipeline enters such a state it runs ChangeState + OnEntry, then pauses before the epilogue (Schedule/Auto/Finish); the instance stays Busy. The State (long-poll) function returns HTTP 200 with an interaction object { terminateLongPoll: true, ack: { href } } for callers whose role is granted, telling the client to stop polling and render the entered-state screen. The client then POSTs to the acknowledge endpoint (instances/{instance}/longpoll/ack), which resumes the pipeline from where it paused; a fallback schedule auto-resumes if the client never acknowledges. The 'interaction' object is a generic, extensible container for client-workflow-manager directives.",
22
+ "schemaPath": "state.interaction.longPoll",
23
+ "apiEndpoints": [
24
+ "POST {domain}/workflows/{workflow}/instances/{instance}/longpoll/ack"
25
+ ]
17
26
  }
18
27
  }
19
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burgan-tech/vnext-meta",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "description": "vNext Runtime metadata package — version manifest, feature catalog, deprecation registry, and component metadata for offline consumption by Forge Studio, CLI, and domain packages.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "versions": {
3
+ "0.0.62": {
4
+ "schemaVersion": "0.0.47",
5
+ "releasedAt": "2026-06-18",
6
+ "releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-62"
7
+ },
3
8
  "0.0.61": {
4
9
  "schemaVersion": "0.0.46",
5
10
  "releasedAt": "2026-06-15",