n8n-nodes-fatture-in-cloud
Version:
n8n community node for Fatture in Cloud integration using the official TypeScript SDK
63 lines • 2.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CompaniesProperties = exports.CompaniesResource = void 0;
exports.CompaniesResource = {
name: 'company',
displayName: 'Company',
properties: [
{
displayName: 'Company ID',
name: 'companyId',
type: 'number',
required: true,
default: 0,
description: 'The company ID for the operation',
},
],
operations: [
{
name: 'Get Info',
value: 'getInfo',
displayName: 'Get Info',
description: 'Get company information',
action: 'Get company information',
},
{
name: 'Get Plan Usage',
value: 'getPlanUsage',
displayName: 'Get Plan Usage',
description: 'Get company plan usage',
action: 'Get company plan usage',
properties: [
{
displayName: 'Category',
name: 'category',
type: 'options',
required: true,
options: [
{
name: 'Clients',
value: 'clients',
},
{
name: 'Documents',
value: 'documents',
},
{
name: 'Products',
value: 'products',
},
{
name: 'Suppliers',
value: 'suppliers',
},
],
default: 'clients',
description: 'The category to get usage information for',
},
],
},
],
};
exports.CompaniesProperties = [];
//# sourceMappingURL=CompaniesResource.js.map