dtamind-components
Version:
Apps integration for Dtamind. Contain Nodes and Credentials.
20 lines • 705 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class NotionApi {
constructor() {
this.label = 'Notion API';
this.name = 'notionApi';
this.version = 1.0;
this.description =
'You can find integration token <a target="_blank" href="https://developers.notion.com/docs/create-a-notion-integration#step-1-create-an-integration">here</a>';
this.inputs = [
{
label: 'Notion Integration Token',
name: 'notionIntegrationToken',
type: 'password'
}
];
}
}
module.exports = { credClass: NotionApi };
//# sourceMappingURL=NotionApi.credential.js.map