mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
fbdb5eb0fa
* added odoo scaffolding * update getting data from odoo instance * added scaffolding for main loop and request functions * added functions for CRUD opperations * improoved error handling for odooJSONRPCRequest * updated odoo node and fixing nodelinter issues * fixed alpabetical order * fixed types in odoo node * fixing linter errors * fixing linter errors * fixed data shape returned from man loop * updated node input types, added fields list to models * update when custom resource is selected options for fields list will be populated dynamicly * minor fixes * 🔨 fixed credential test, updating CRUD methods * 🔨 added additional fields to crm resource * 🔨 added descriptions, fixed credentials test bug * 🔨 standardize node and descriptions design * 🔨 removed comments * 🔨 added pagination to getAll operation * ⚡ removed leftover function from previous implementation, removed required from optional fields * ⚡ fixed id field, added indication of type and if required to field description, replaced string input in filters to fetched list of fields * 🔨 fetching list of models from odoo, added selection of fields to be returned to predefined models, fixes accordingly to review * ⚡ Small improvements * 🔨 extracted adress fields into collection, changed fields to include in descriptions, minor tweaks * ⚡ Improvements * 🔨 working on review * 🔨 fixed linter errors * 🔨 review wip * 🔨 review wip * 🔨 review wip * ⚡ updated display name for URL in credentials * 🔨 added checks for valid id to delete and update * ⚡ Minor improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
42 lines
898 B
TypeScript
42 lines
898 B
TypeScript
import { ICredentialType, INodeProperties, NodePropertyTypes } from 'n8n-workflow';
|
|
|
|
export class OdooApi implements ICredentialType {
|
|
name = 'odooApi';
|
|
displayName = 'Odoo API';
|
|
documentationUrl = 'odoo';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Site URL',
|
|
name: 'url',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'https://my-organization.odoo.com',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'user@email.com',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Password or API Key',
|
|
name: 'password',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Database Name',
|
|
name: 'db',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|