n8n-nodes-aliexpress-affiliate
Version:
n8n node for AliExpress Affiliate API
31 lines (30 loc) • 874 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AliExpressAffiliateApi = void 0;
class AliExpressAffiliateApi {
constructor() {
this.name = 'aliExpressAffiliateApi';
this.displayName = 'AliExpress Affiliate API';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'API Secret',
name: 'apiSecret',
type: 'string',
default: '',
},
{
displayName: 'Tracking ID',
name: 'trackingId',
type: 'string',
default: '',
},
];
}
}
exports.AliExpressAffiliateApi = AliExpressAffiliateApi;