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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)