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