UNPKG

@jacobwoodward/n8n-nodes-smartsuite

Version:

n8n community node for SmartSuite - Interact with SmartSuite's API to manage records, search data, and perform operations on your SmartSuite solutions

39 lines 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SmartSuiteApi = void 0; class SmartSuiteApi { constructor() { this.name = "smartSuiteApi"; this.displayName = "SmartSuite API"; this.documentationUrl = ""; this.properties = [ { displayName: "API Key", name: "apiKey", type: "string", typeOptions: { password: true }, default: "", required: true, description: "Your SmartSuite API key", }, { displayName: "Account ID", name: "accountId", type: "string", default: "", required: true, description: "Your SmartSuite Account ID", }, { displayName: "Base URL", name: "baseUrl", type: "string", default: "https://app.smartsuite.com/api/v1", required: true, description: "The base URL for the SmartSuite API", }, ]; } } exports.SmartSuiteApi = SmartSuiteApi; //# sourceMappingURL=SmartSuiteApi.credentials.js.map