UNPKG
n8n-nodes-zid
Version:
latest (0.1.0)
0.1.0
BETA; n8n custom nodes for integrating with the Zid API (orders, products, customers, etc.)
n8n-nodes-zid
/
dist
/
GenericZidApi.d.ts
8 lines
(7 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
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[]>; }