n8n-nodes-smartsuite
Version:
n8n community node for SmartSuite
19 lines (18 loc) • 686 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* SmartSuite Org Management → Get Current User
*/
export declare const description: readonly [{
readonly displayName: "Operation";
readonly name: "operation";
readonly type: "hidden";
readonly default: "getCurrentUser";
readonly displayOptions: {
readonly show: {
readonly resource: readonly ["orgManagement"];
readonly operation: readonly ["getCurrentUser"];
};
};
readonly description: "Retrieve details of the current authenticated user";
}];
export declare function execute(this: IExecuteFunctions): Promise<INodeExecutionData[]>;