mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
✨ Add Freshservice node (#2090)
* ✨ Create Freshservice node * 👕 Fix lintings * ⚡ Adjust from agent to department * ⚡ Adjust from location to ticket * 👕 Fix lintings * ✏️ Improve descriptions * 🔥 Remove logging * 🔥 Remove unused helper * ✏️ Fix helper documentation * ⚡ Simplify roles in agent:create * 🔥 Remove logging * ⚡ Minor improvements * ✏️ Adjust dynamic lists descriptions * ⚡ Set default values for problem:create * ⚡ Set default values for change:create * ⚡ Handle deletion with empty response * ⚡ Update getCredentials call to new style * ✏️ Reword multiOptions descriptions * ⚡ Add special handling for validation errors * 🔥 Remove concatenated name from filters * ⚡ Fix additional params in announcement:create * ✏️ Clarify asset display ID vs asset ID * ⚡ Fix asset:update arg typo * ⚡ Fix predefined filters in change:getAll * ⚡ Fix software status options * ✏️ Reword created_at in ticket:getAll * ⚡ Add status to ticket:update * 👕 Fix lint * ⚡ Improvements * ⚡ Minor improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
44
packages/nodes-base/nodes/Freshservice/constants.ts
Normal file
44
packages/nodes-base/nodes/Freshservice/constants.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
// https://support.freshservice.com/support/solutions/articles/232303-list-of-languages-supported-in-freshservice
|
||||
|
||||
const RAW_LANGUAGES: { [key: string]: string } = {
|
||||
en: 'English',
|
||||
ar: 'Arabic',
|
||||
ca: 'Catalan',
|
||||
cs: 'Czech',
|
||||
'cy-GB': 'Welsh',
|
||||
da: 'Danish',
|
||||
de: 'German',
|
||||
es: 'Spanish',
|
||||
'es-LA': 'Spanish (Latin America)',
|
||||
et: 'Estonian',
|
||||
fi: 'Finnish',
|
||||
fr: 'French',
|
||||
he: 'Hebrew',
|
||||
hu: 'Hungarian',
|
||||
id: 'Indonesian',
|
||||
it: 'Italian',
|
||||
'ja-JP': 'Japanese',
|
||||
ko: 'Korean',
|
||||
LV: 'Latvian',
|
||||
'nb-NO': 'Norwegian',
|
||||
nl: 'Dutch',
|
||||
pl: 'Polish',
|
||||
pt: 'Portuguese',
|
||||
'pt-BR': 'Portuguese (Brazil)',
|
||||
'pt-PT': 'Portuguese (Portugal)',
|
||||
'ru-RU': 'Russian',
|
||||
sk: 'Slovak',
|
||||
'sk-SK': 'Slovak',
|
||||
sl: 'Slovenian',
|
||||
'sv-SE': 'Swedish',
|
||||
th: 'Thai',
|
||||
tr: 'Turkish',
|
||||
UK: 'Ukrainian',
|
||||
vi: 'Vietnamese',
|
||||
'zh-CN': 'Chinese (Simplified)',
|
||||
'zh-TW': 'Chinese (Traditional)',
|
||||
};
|
||||
|
||||
export const LANGUAGES = Object.keys(RAW_LANGUAGES).map((key) => {
|
||||
return ({ value: key, name: RAW_LANGUAGES[key] });
|
||||
});
|
||||
Reference in New Issue
Block a user