UNPKG

@kadam-net/n8n-nodes-kadam

Version:

Kadam node for n8n to manage campaigns, creatives, and more.

8 lines (7 loc) 879 B
import { IExecuteFunctions } from 'n8n-workflow'; export declare function createCreative(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>; export declare function updateCreative(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>; export declare function deleteCreative(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>; export declare function getCreatives(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<any>; export declare function getBannerSizes(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<any[]>; export declare function uploadMedia(this: IExecuteFunctions, i: number, baseUrl: string, headers: any, appId: string): Promise<unknown>;