2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, INodeProperties } from 'n8n-workflow';
|
2020-12-19 09:22:41 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { groups } from './Json/Groups';
|
2020-12-19 09:22:41 -08:00
|
|
|
|
|
|
|
const finalGroups = {
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'group',
|
|
|
|
type: 'options',
|
|
|
|
default: 'communication',
|
|
|
|
options: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
const options = [];
|
|
|
|
|
2021-02-25 01:47:36 -08:00
|
|
|
for (const group of (groups as IDataObject).groups as IDataObject[]) {
|
2020-12-19 09:22:41 -08:00
|
|
|
const item = {
|
|
|
|
name: group.translated,
|
|
|
|
value: group.name,
|
2023-01-13 09:11:56 -08:00
|
|
|
description:
|
|
|
|
'The ' +
|
|
|
|
(group.translated as string) +
|
|
|
|
' Resource allows you to get tools from this resource',
|
2020-12-19 09:22:41 -08:00
|
|
|
};
|
|
|
|
options.push(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
finalGroups.options = options;
|
|
|
|
const mappedGroups = [finalGroups];
|
|
|
|
|
|
|
|
export const groupOptions = mappedGroups as INodeProperties[];
|