Skip to content

Commit

Permalink
include binaryPropertyOutput
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy committed Jan 6, 2023
1 parent 0c3154f commit 8f2218a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Compression/Compression.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class Compression implements INodeType {
if (outputFormat === 'zip') {
const fileName = this.getNodeParameter('fileName', 0) as string;

const binaryPropertyOutput = this.getNodeParameter('binaryPropertyOutput', 0) as string;
const binaryPropertyOutput = this.getNodeParameter('binaryPropertyOutput', 0);

const buffer = await zip(zipData);

Expand Down
1 change: 1 addition & 0 deletions packages/workflow/src/Interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,7 @@ namespace ExecuteFunctions {
export type NodeParameter =
| 'binaryProperty'
| 'binaryPropertyName'
| 'binaryPropertyOutput'
| 'dataPropertyName'
| 'dataBinaryProperty'
| 'resource'
Expand Down

0 comments on commit 8f2218a

Please sign in to comment.