ci: Run pnpm format and pnpm lintfix (no-changelog) (#5265)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-01-27 11:01:31 +01:00
committed by GitHub
parent 266c50fb1e
commit 277bed2a5c
4 changed files with 5 additions and 5 deletions

View File

@@ -893,4 +893,4 @@
return result;
}
}.call(typeof window !== 'undefined' ? window : this));
}).call(typeof window !== 'undefined' ? window : this);

View File

@@ -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';

View File

@@ -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

View File

@@ -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)