fix(Microsoft Excel 365 Node): Upsert append new rows at the end of used range, option to append at the end of selected range (#8461)

This commit is contained in:
Michael Kret
2024-02-01 10:46:34 +00:00
committed by GitHub
parent 3128dca1fa
commit 1e02d73ad7
3 changed files with 55 additions and 4 deletions

View File

@@ -13,12 +13,13 @@ export class MicrosoftExcel extends VersionedNodeType {
group: ['input'],
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
description: 'Consume Microsoft Excel API',
defaultVersion: 2,
defaultVersion: 2.1,
};
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
1: new MicrosoftExcelV1(baseDescription),
2: new MicrosoftExcelV2(baseDescription),
2.1: new MicrosoftExcelV2(baseDescription),
};
super(nodeVersions, baseDescription);