@nodaro/shared 2.21.0 → 2.21.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/index.js CHANGED
@@ -407,6 +407,7 @@ var IMAGE_MODELS = {
407
407
  label: "GPT Image 2 (I2I)",
408
408
  series: "GPT Image",
409
409
  description: "Image-to-image with GPT Image 2.",
410
+ safetyFilter: { stochastic: true, fallback: "nano-banana-pro" },
410
411
  useCases: ["edit", "high-res"],
411
412
  features: ["reference-image"],
412
413
  aspectRatios: GPT_IMAGE_2_RATIOS,
@@ -10149,6 +10150,13 @@ var EXECUTION_DATA_KEYS = /* @__PURE__ */ new Set([
10149
10150
  // lifecycle as errorMessage: a RESULT the user expects to survive reload,
10150
10151
  // never user-edited config.
10151
10152
  "errorHint",
10153
+ // A job policy registered by the deployment held this node's result for a
10154
+ // human reviewer (`jobs.status = "pending_review"`). Pure run state, like
10155
+ // executionStatus: the node is still "running" and the flag disappears the
10156
+ // moment the review resolves — so it is ALSO in TRANSIENT_RUNTIME_KEYS
10157
+ // below. Without the transient half, a flip into review marks a passive tab
10158
+ // dirty and a preset captures "awaiting review".
10159
+ "jobAwaitingReview",
10152
10160
  "isStreaming",
10153
10161
  "generatedImageUrl",
10154
10162
  "generatedVideoUrl",
@@ -10196,6 +10204,7 @@ var TRANSIENT_RUNTIME_KEYS = /* @__PURE__ */ new Set([
10196
10204
  "executionStatus",
10197
10205
  "currentJobId",
10198
10206
  "currentJobProgress",
10207
+ "jobAwaitingReview",
10199
10208
  "isStreaming",
10200
10209
  "subWorkflowProgress",
10201
10210
  "__listTotal",