@codemation/core-nodes 0.4.0 → 0.4.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.d.cts CHANGED
@@ -1353,6 +1353,7 @@ declare class Aggregate<TIn = unknown, TOut = unknown> implements RunnableNodeCo
1353
1353
  readonly execution: {
1354
1354
  readonly hint: "local";
1355
1355
  };
1356
+ readonly keepBinaries: true;
1356
1357
  readonly icon: "lucide:layers";
1357
1358
  constructor(name: string, aggregate: (items: Items<TIn>, ctx: NodeExecutionContext<Aggregate<TIn, TOut>>) => TOut | Promise<TOut>, id?: string | undefined);
1358
1359
  }
@@ -1449,6 +1450,7 @@ declare class Split<TIn = unknown, TElem = unknown> implements RunnableNodeConfi
1449
1450
  readonly execution: {
1450
1451
  readonly hint: "local";
1451
1452
  };
1453
+ readonly keepBinaries: true;
1452
1454
  /**
1453
1455
  * When splitting yields zero items for a batch, downstream single-input nodes still run once with an empty batch.
1454
1456
  * Mirrors {@link MapData}'s empty-output behavior.
package/dist/index.d.ts CHANGED
@@ -1353,6 +1353,7 @@ declare class Aggregate<TIn = unknown, TOut = unknown> implements RunnableNodeCo
1353
1353
  readonly execution: {
1354
1354
  readonly hint: "local";
1355
1355
  };
1356
+ readonly keepBinaries: true;
1356
1357
  readonly icon: "lucide:layers";
1357
1358
  constructor(name: string, aggregate: (items: Items<TIn>, ctx: NodeExecutionContext<Aggregate<TIn, TOut>>) => TOut | Promise<TOut>, id?: string | undefined);
1358
1359
  }
@@ -1449,6 +1450,7 @@ declare class Split<TIn = unknown, TElem = unknown> implements RunnableNodeConfi
1449
1450
  readonly execution: {
1450
1451
  readonly hint: "local";
1451
1452
  };
1453
+ readonly keepBinaries: true;
1452
1454
  /**
1453
1455
  * When splitting yields zero items for a batch, downstream single-input nodes still run once with an empty batch.
1454
1456
  * Mirrors {@link MapData}'s empty-output behavior.
package/dist/index.js CHANGED
@@ -3428,6 +3428,7 @@ var Aggregate = class {
3428
3428
  kind = "node";
3429
3429
  type = AggregateNode;
3430
3430
  execution = { hint: "local" };
3431
+ keepBinaries = true;
3431
3432
  icon = "lucide:layers";
3432
3433
  constructor(name, aggregate, id) {
3433
3434
  this.name = name;
@@ -3582,6 +3583,7 @@ var Split = class {
3582
3583
  kind = "node";
3583
3584
  type = SplitNode;
3584
3585
  execution = { hint: "local" };
3586
+ keepBinaries = true;
3585
3587
  /**
3586
3588
  * When splitting yields zero items for a batch, downstream single-input nodes still run once with an empty batch.
3587
3589
  * Mirrors {@link MapData}'s empty-output behavior.