UNPKG

n8n-nodes-zid

Version:

BETA; n8n custom nodes for integrating with the Zid API (orders, products, customers, etc.)

8 lines (7 loc) 288 B
import { AxiosRequestConfig } from 'axios'; export declare class GenericZidApi { private client; constructor(baseURL: string, accessToken: string); request<T = any>(config: AxiosRequestConfig): Promise<T>; getPaginated<T = any>(url: string, params?: any): Promise<T[]>; }