n8n-nodes-orderful
Version:
N8N nodes for Orderful EDI platform integration
48 lines • 1.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderfulApi = void 0;
class OrderfulApi {
constructor() {
this.name = 'orderfulApi';
this.displayName = 'Orderful API';
this.documentationUrl = 'https://docs.orderful.com/reference/authentication';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Your Orderful API key. You can find this in your Orderful organization settings.',
required: true,
},
{
displayName: 'Environment',
name: 'environment',
type: 'options',
options: [
{
name: 'Production',
value: 'production',
},
{
name: 'Sandbox',
value: 'sandbox',
},
],
default: 'sandbox',
description: 'Choose the Orderful environment to connect to',
},
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'string',
default: 'https://api.orderful.com',
description: 'The base URL for Orderful API (usually https://api.orderful.com)',
required: true,
},
];
}
}
exports.OrderfulApi = OrderfulApi;
//# sourceMappingURL=OrderfulApi.credentials.js.map