ugcinc 4.1.64 → 4.1.66

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.
@@ -253,6 +253,7 @@ export declare const nodeDefinitions: {
253
253
  }, import("./output").OutputNodeInputs, import("./output").OutputNodeOutputs, false> & {
254
254
  __TInputs: import("./output").OutputNodeInputs;
255
255
  __TOutputs: import("./output").OutputNodeOutputs;
256
+ __TExecutorOutput: import("./output").OutputNodeInputs;
256
257
  };
257
258
  readonly random: NodeDefinition<"generator", {
258
259
  mode: import("./random").RandomNodeMode;
@@ -13,6 +13,7 @@ declare const definition: import("./types").NodeDefinition<"terminal", {
13
13
  declare const _default: typeof definition & {
14
14
  __TInputs: OutputNodeInputs;
15
15
  __TOutputs: OutputNodeOutputs;
16
+ __TExecutorOutput: OutputNodeInputs;
16
17
  };
17
18
  export default _default;
18
19
  export type OutputNodeConfig = typeof definition.defaults;
package/dist/index.d.ts CHANGED
@@ -55,7 +55,7 @@ export type { IfNodeConfig, IfLogicOperator, IfBooleanInput, } from './automatio
55
55
  export { IfLogicOperators, applyLogicOperator } from './automations/nodes/if';
56
56
  export type { LLMNodeConfig, LLMNodeOutputs, LLMProvider, LLMApiKeys, } from './automations/nodes/llm';
57
57
  export { LLMProviders, outputFieldToZod, outputFieldsToZod } from './automations/nodes/llm';
58
- export type { ManualTriggerNodeConfig } from './automations/nodes/manual-trigger';
58
+ export type { ManualTriggerNodeConfig, ManualTriggerNodeOutputs } from './automations/nodes/manual-trigger';
59
59
  export type { MediaNodeConfig, MediaNodeOutput } from './automations/nodes/media';
60
60
  export type { NotNodeConfig } from './automations/nodes/not';
61
61
  export type { OutputNodeConfig } from './automations/nodes/output';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.1.64",
3
+ "version": "4.1.66",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",