@nanobpm/nano-workforce 0.39.0 → 0.39.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.39.1](https://github.com/nanobpm/nano-workforce/compare/v0.39.0...v0.39.1) (2026-08-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **openapi:** use 3.0 nullable idiom instead of 3.1 type-arrays ([#111](https://github.com/nanobpm/nano-workforce/issues/111)) ([28f40c8](https://github.com/nanobpm/nano-workforce/commit/28f40c891d48043ef7537158466bafdfb79b9792))
7
+
1
8
  # [0.39.0](https://github.com/nanobpm/nano-workforce/compare/v0.38.0...v0.39.0) (2026-08-10)
2
9
 
3
10
 
package/openapi.yaml CHANGED
@@ -63,36 +63,30 @@ components:
63
63
  url:
64
64
  type: string
65
65
  title:
66
- type:
67
- - string
68
- - "null"
66
+ type: string
67
+ nullable: true
69
68
  status:
70
69
  type: string
71
70
  round:
72
71
  type: integer
73
72
  processKey:
74
- type:
75
- - string
76
- - "null"
73
+ type: string
74
+ nullable: true
77
75
  description: The engine process instance key; also the keyField the pages processExplorer link uses.
78
76
  waitingSince:
79
- type:
80
- - string
81
- - "null"
77
+ type: string
78
+ nullable: true
82
79
  openEscalation:
83
- type:
84
- - string
85
- - "null"
80
+ type: string
81
+ nullable: true
86
82
  updatedAt:
87
83
  type: string
88
84
  activeWorker:
89
- type:
90
- - string
91
- - "null"
85
+ type: string
86
+ nullable: true
92
87
  leaseUntil:
93
- type:
94
- - string
95
- - "null"
88
+ type: string
89
+ nullable: true
96
90
  ActivePrList:
97
91
  type: object
98
92
  required:
@@ -123,27 +117,22 @@ components:
123
117
  name:
124
118
  type: string
125
119
  version:
126
- type:
127
- - string
128
- - "null"
120
+ type: string
121
+ nullable: true
129
122
  urbanVersion:
130
- type:
131
- - string
132
- - "null"
123
+ type: string
124
+ nullable: true
133
125
  gitSha:
134
- type:
135
- - string
136
- - "null"
126
+ type: string
127
+ nullable: true
137
128
  gitBranch:
138
- type:
139
- - string
140
- - "null"
129
+ type: string
130
+ nullable: true
141
131
  runtime:
142
132
  type: string
143
133
  pid:
144
- type:
145
- - integer
146
- - "null"
134
+ type: integer
135
+ nullable: true
147
136
  startedAt:
148
137
  type: string
149
138
  uptimeSeconds:
@@ -156,9 +145,8 @@ components:
156
145
  prKey:
157
146
  type: string
158
147
  processKey:
159
- type:
160
- - string
161
- - "null"
148
+ type: string
149
+ nullable: true
162
150
  description: The started convergence-loop instance key (null if the engine did not return one).
163
151
  alreadyRunning:
164
152
  type: boolean
@@ -172,9 +160,8 @@ components:
172
160
  planKey:
173
161
  type: string
174
162
  processKey:
175
- type:
176
- - string
177
- - "null"
163
+ type: string
164
+ nullable: true
178
165
  alreadyRunning:
179
166
  type: boolean
180
167
  description: True when a non-terminal plan for this issue already exists; no new instance was started.
@@ -257,9 +244,8 @@ components:
257
244
  body:
258
245
  type: string
259
246
  wave:
260
- type:
261
- - integer
262
- - "null"
247
+ type: integer
248
+ nullable: true
263
249
  created_at:
264
250
  type: string
265
251
  BlackboardPage:
@@ -276,9 +262,8 @@ components:
276
262
  items:
277
263
  $ref: "#/components/schemas/BlackboardEntry"
278
264
  cursor:
279
- type:
280
- - integer
281
- - "null"
265
+ type: integer
266
+ nullable: true
282
267
  description: The plan's current head id; pass it back as `since` on the next poll (Tier 2).
283
268
  BlackboardAppendRequest:
284
269
  type: object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-workforce",
3
- "version": "0.39.0",
3
+ "version": "0.39.1",
4
4
  "description": "Nano Workforce — an Agent Graph Orchestration application for Agentic SDLC: durable BPMN processes that coordinate a graph of AI agents across the software delivery lifecycle.",
5
5
  "type": "module",
6
6
  "main": "main.ts",