@kadam-net/n8n-nodes-kadam
Version:
Kadam node for n8n to manage campaigns, creatives, and more.
10 lines (9 loc) • 1.16 kB
TypeScript
import { IExecuteFunctions } from 'n8n-workflow';
export declare function createClient(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function updateClient(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function getClients(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<any>;
export declare function deleteClient(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function bindClient(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function unbindClient(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function depositClientBalance(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;
export declare function transferFunds(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;