👕 Fix lint issue
This commit is contained in:
@@ -17,7 +17,7 @@ export async function microsoftApiRequest(this: IExecuteFunctions | IExecuteSing
|
||||
body,
|
||||
qs,
|
||||
uri: uri || `https://graph.microsoft.com/v1.0/me${resource}`,
|
||||
json: true
|
||||
json: true,
|
||||
};
|
||||
try {
|
||||
if (Object.keys(headers).length !== 0) {
|
||||
|
||||
@@ -146,7 +146,7 @@ export class MicrosoftExcel implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
|
||||
@@ -16,7 +16,7 @@ export const tableOperations = [
|
||||
{
|
||||
name: 'Add Row',
|
||||
value: 'addRow',
|
||||
description: 'Adds rows to the end of the table'
|
||||
description: 'Adds rows to the end of the table',
|
||||
},
|
||||
{
|
||||
name: 'Get Columns',
|
||||
@@ -31,7 +31,7 @@ export const tableOperations = [
|
||||
{
|
||||
name: 'Lookup',
|
||||
value: 'lookup',
|
||||
description: 'Looks for a specific column value and then returns the matching row'
|
||||
description: 'Looks for a specific column value and then returns the matching row',
|
||||
},
|
||||
],
|
||||
default: 'addRow',
|
||||
@@ -273,7 +273,7 @@ export const tableFields = [
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'getRows'
|
||||
'getRows',
|
||||
],
|
||||
resource: [
|
||||
'table',
|
||||
@@ -312,7 +312,7 @@ export const tableFields = [
|
||||
default: '',
|
||||
description: `Fields the response will containt. Multiple can be added separated by ,.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* table:getColumns */
|
||||
@@ -448,7 +448,7 @@ export const tableFields = [
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'getColumns'
|
||||
'getColumns',
|
||||
],
|
||||
resource: [
|
||||
'table',
|
||||
@@ -475,7 +475,7 @@ export const tableFields = [
|
||||
'table',
|
||||
],
|
||||
rawData: [
|
||||
true
|
||||
true,
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -487,7 +487,7 @@ export const tableFields = [
|
||||
default: '',
|
||||
description: `Fields the response will containt. Multiple can be added separated by ,.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* table:lookup */
|
||||
@@ -571,7 +571,7 @@ export const tableFields = [
|
||||
'table',
|
||||
],
|
||||
operation: [
|
||||
'lookup'
|
||||
'lookup',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -590,7 +590,7 @@ export const tableFields = [
|
||||
'table',
|
||||
],
|
||||
operation: [
|
||||
'lookup'
|
||||
'lookup',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -621,5 +621,5 @@ export const tableFields = [
|
||||
description: 'By default only the first result gets returned. If options gets set all found matches get returned.',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
@@ -79,7 +79,7 @@ export const workbookFields = [
|
||||
description: `The name of the worksheet to be added. If specified, name should be unqiue. </BR>
|
||||
If not specified, Excel determines the name of the new worksheet.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* workbook:getAll */
|
||||
@@ -149,6 +149,6 @@ export const workbookFields = [
|
||||
default: '',
|
||||
description: `Fields the response will containt. Multiple can be added separated by ,.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
@@ -118,7 +118,7 @@ export const worksheetFields = [
|
||||
default: '',
|
||||
description: `Fields the response will containt. Multiple can be added separated by ,.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* worksheet:getContent */
|
||||
@@ -209,7 +209,7 @@ export const worksheetFields = [
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'getContent'
|
||||
'getContent',
|
||||
],
|
||||
resource: [
|
||||
'worksheet',
|
||||
@@ -240,7 +240,7 @@ export const worksheetFields = [
|
||||
},
|
||||
hide: {
|
||||
rawData: [
|
||||
true
|
||||
true,
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -264,7 +264,7 @@ export const worksheetFields = [
|
||||
},
|
||||
hide: {
|
||||
rawData: [
|
||||
true
|
||||
true,
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -298,6 +298,6 @@ export const worksheetFields = [
|
||||
default: '',
|
||||
description: `Fields the response will containt. Multiple can be added separated by ,.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
Reference in New Issue
Block a user