mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
ci: Run pnpm format and pnpm lintfix (no-changelog) (#5265)
This commit is contained in:
parent
266c50fb1e
commit
277bed2a5c
|
@ -893,4 +893,4 @@
|
|||
|
||||
return result;
|
||||
}
|
||||
}.call(typeof window !== 'undefined' ? window : this));
|
||||
}).call(typeof window !== 'undefined' ? window : this);
|
||||
|
|
|
@ -122,7 +122,7 @@ export const regions = [
|
|||
},
|
||||
] as const;
|
||||
|
||||
export type AWSRegion = typeof regions[number]['name'];
|
||||
export type AWSRegion = (typeof regions)[number]['name'];
|
||||
|
||||
export class Aws implements ICredentialType {
|
||||
name = 'aws';
|
||||
|
|
|
@ -14,7 +14,7 @@ export type Resource =
|
|||
export type Operation = 'create' | 'delete' | 'get' | 'getAll' | 'update' | 'add' | 'remove';
|
||||
|
||||
// @ts-ignore
|
||||
export type LanguageCodes = typeof LanguageOptions[number]['value'];
|
||||
export type LanguageCodes = (typeof LanguageOptions)[number]['value'];
|
||||
|
||||
// ----------------------------------------
|
||||
// UI fields
|
||||
|
|
|
@ -538,7 +538,7 @@ export class Airtable implements INodeType {
|
|||
if (addAllFields) {
|
||||
// Add all the fields the item has
|
||||
row.fields = { ...items[i].json };
|
||||
delete (row.fields! as any).id;
|
||||
delete (row.fields as any).id;
|
||||
} else {
|
||||
// Add only the specified fields
|
||||
row.fields = {} as IDataObject;
|
||||
|
@ -739,7 +739,7 @@ export class Airtable implements INodeType {
|
|||
// Update all the fields the item has
|
||||
row.fields = { ...items[i].json };
|
||||
// remove id field
|
||||
delete (row.fields! as any).id;
|
||||
delete (row.fields as any).id;
|
||||
|
||||
if (options.ignoreFields && options.ignoreFields !== '') {
|
||||
const ignoreFields = (options.ignoreFields as string)
|
||||
|
|
Loading…
Reference in a new issue