@voxgig/apidef 5.10.0 → 5.11.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/src/types.ts CHANGED
@@ -117,6 +117,10 @@ type KitModel = {
117
117
 
118
118
  type ApiDefResult = {
119
119
  ok: boolean
120
+ // True when apidef wrote model source files (e.g. entity / flow jsonics).
121
+ // Producer host (voxgig-model) uses this to re-resolve the unified model
122
+ // before downstream actions run, so they see the freshly written sources.
123
+ reload?: boolean
120
124
  start: number
121
125
  end: number
122
126
  steps: string[]
@@ -291,7 +295,7 @@ export type {
291
295
  ModelFieldOp,
292
296
  ModelField,
293
297
  ModelArg,
294
- ModelTarget,
298
+ ModelPoint,
295
299
  ModelOp,
296
300
  ModelEntity,
297
301
  } from './model'