ugcinc 4.1.10 → 4.1.11

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.
@@ -177,6 +177,7 @@ export declare const nodeDefinitions: {
177
177
  objectSchema?: import("./types").ObjectSchemaField[];
178
178
  enumOptions?: import("../types").EnumOption[];
179
179
  }>;
180
+ assignedValues: Record<string, string> | undefined;
180
181
  outputMode: null;
181
182
  selectionMode: null;
182
183
  }, false>;
@@ -8,6 +8,7 @@ declare const definition: import("./types").NodeDefinition<"trigger", {
8
8
  objectSchema?: ObjectSchemaField[];
9
9
  enumOptions?: EnumOption[];
10
10
  }>;
11
+ assignedValues: Record<string, string> | undefined;
11
12
  outputMode: null;
12
13
  selectionMode: null;
13
14
  }, false>;
@@ -11,6 +11,8 @@ const definition = (0, types_1.defineNode)({
11
11
  selectionModes: null,
12
12
  defaults: {
13
13
  outputs: [{ id: 'input-1', type: 'image' }],
14
+ // Runtime-assigned values set by controller from variableInputs
15
+ assignedValues: undefined,
14
16
  outputMode: null,
15
17
  selectionMode: null,
16
18
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.1.10",
3
+ "version": "4.1.11",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",