- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
|
|
import { googleApiRequest } from '../../transport';
|
|
import { sharedDriveRLC } from '../common.descriptions';
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
|
|
const properties: INodeProperties[] = [
|
|
{
|
|
...sharedDriveRLC,
|
|
description: 'The shared drive to delete',
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['drive'],
|
|
operation: ['deleteDrive'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
const returnData: INodeExecutionData[] = [];
|
|
|
|
const driveId = this.getNodeParameter('driveId', i, undefined, {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
await googleApiRequest.call(this, 'DELETE', `/drive/v3/drives/${driveId}`);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ success: true }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
|
|
return returnData;
|
|
}
|