refactor: Stop using .d.ts files for type-collection files (no-changelog) (#6634)

refactor: Stop using `.d.ts` files for type-collection files
This commit is contained in:
Iván Ovejero
2023-07-10 19:35:34 +02:00
committed by GitHub
parent 07744986ea
commit d6b2ae0255
31 changed files with 44 additions and 35 deletions

View File

@@ -11,8 +11,7 @@ import type {
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
import type { Address, Filter, FilterGroup, ProductAttribute, Search } from './Types';
import type { Filter, Address, Search, FilterGroup, ProductAttribute } from './types';
export async function magentoApiRequest(
this: IWebhookFunctions | IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,

View File

@@ -35,7 +35,7 @@ import type {
NewCustomer,
NewProduct,
Search,
} from './Types';
} from './types';
import { capitalCase } from 'change-case';