UNPKG

n8n-nodes-quipu

Version:

Quipu integration for n8n - invoice and taxes software for freelancers and companies

58 lines 1.82 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QuipuApi = void 0; class QuipuApi { constructor() { this.name = "quipuApi"; this.displayName = "Quipu API"; this.documentationUrl = "https://getquipu.com/en/integrations"; this.extends = ["oAuth2Api"]; this.properties = [ { displayName: "Grant Type", name: "grantType", type: "hidden", default: "clientCredentials", }, { displayName: "Access Token URL", name: "accessTokenUrl", type: "hidden", default: "https://getquipu.com/oauth/token", }, { displayName: "Scope", name: "scope", type: "hidden", default: "ecommerce", }, { displayName: "Authentication", name: "authentication", type: "hidden", default: "header", }, { displayName: "App ID", name: "clientId", type: "string", default: "", required: true, description: "The App ID from your Quipu account", }, { displayName: "App Secret", name: "clientSecret", type: "string", default: "", required: true, typeOptions: { password: true, }, description: "The App Secret from your Quipu account", }, ]; } } exports.QuipuApi = QuipuApi; //# sourceMappingURL=QuipuApi.credentials.js.map