mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
90 lines
3.5 KiB
TypeScript
90 lines
3.5 KiB
TypeScript
export const currencies = [
|
||
{ name: 'US Dollar', value: 'USD' },
|
||
{ name: 'Euro', value: 'EUR' },
|
||
{ name: 'UAE Dirham', value: 'AED' },
|
||
{ name: 'Afghani', value: 'AFN' },
|
||
{ name: 'Lek', value: 'ALL' },
|
||
{ name: 'Argentine Peso', value: 'ARS' },
|
||
{ name: 'Australian Dollar', value: 'AUD' },
|
||
{ name: 'Azerbaijan Manat', value: 'AZN' },
|
||
{ name: 'Barbados Dollar', value: 'BBD' },
|
||
{ name: 'Taka', value: 'BDT' },
|
||
{ name: 'Bulgarian Lev', value: 'BGN' },
|
||
{ name: 'Bermudian Dollar', value: 'BMD' },
|
||
{ name: 'Brunei Dollar', value: 'BND' },
|
||
{ name: 'Boliviano', value: 'BOB' },
|
||
{ name: 'Brazilian Real', value: 'BRL' },
|
||
{ name: 'Bahamian Dollar', value: 'BSD' },
|
||
{ name: 'Pula', value: 'BWP' },
|
||
{ name: 'Belize Dollar', value: 'BZD' },
|
||
{ name: 'Canadian Dollar', value: 'CAD' },
|
||
{ name: 'Swiss Franc', value: 'CHF' },
|
||
{ name: 'Chilean Peso', value: 'CLP' },
|
||
{ name: 'Yuan Renminbi', value: 'CNY' },
|
||
{ name: 'Colombian Peso', value: 'COP' },
|
||
{ name: 'Costa Rican Colon', value: 'CRC' },
|
||
{ name: 'Czech Koruna', value: 'CZK' },
|
||
{ name: 'Danish Krone', value: 'DKK' },
|
||
{ name: 'Dominican Peso', value: 'DOP' },
|
||
{ name: 'Algerian Dinar', value: 'DZD' },
|
||
{ name: 'Egyptian Pound', value: 'EGP' },
|
||
{ name: 'Fiji Dollar', value: 'FJD' },
|
||
{ name: 'Pound Sterling', value: 'GBP' },
|
||
{ name: 'Quetzal', value: 'GTQ' },
|
||
{ name: 'Hong Kong Dollar', value: 'HKD' },
|
||
{ name: 'Lempira', value: 'HNL' },
|
||
{ name: 'Kuna', value: 'HRK' },
|
||
{ name: 'Forint', value: 'HUF' },
|
||
{ name: 'Rupiah', value: 'IDR' },
|
||
{ name: 'New Israeli Sheqel', value: 'ILS' },
|
||
{ name: 'Indian Rupee', value: 'INR' },
|
||
{ name: 'Jamaican Dollar', value: 'JMD' },
|
||
{ name: 'Yen', value: 'JPY' },
|
||
{ name: 'Kenyan Shilling', value: 'KES' },
|
||
{ name: 'Won', value: 'KRW' },
|
||
{ name: 'Tenge', value: 'KZT' },
|
||
{ name: 'Lao Kip', value: 'LAK' },
|
||
{ name: 'Lebanese Pound', value: 'LBP' },
|
||
{ name: 'Sri Lanka Rupee', value: 'LKR' },
|
||
{ name: 'Liberian Dollar', value: 'LRD' },
|
||
{ name: 'Moroccan Dirham', value: 'MAD' },
|
||
{ name: 'Kyat', value: 'MMK' },
|
||
{ name: 'Pataca', value: 'MOP' },
|
||
{ name: 'Ouguiya', value: 'MRO' },
|
||
{ name: 'Mauritius Rupee', value: 'MUR' },
|
||
{ name: 'Rufiyaa', value: 'MVR' },
|
||
{ name: 'Mexican Peso', value: 'MXN' },
|
||
{ name: 'Malaysian Ringgit', value: 'MYR' },
|
||
{ name: 'Cordoba Oro', value: 'NIO' },
|
||
{ name: 'Norwegian Krone', value: 'NOK' },
|
||
{ name: 'Nepalese Rupee', value: 'NPR' },
|
||
{ name: 'New Zealand Dollar', value: 'NZD' },
|
||
{ name: 'Sol', value: 'PEN' },
|
||
{ name: 'Kina', value: 'PGK' },
|
||
{ name: 'Philippine Peso', value: 'PHP' },
|
||
{ name: 'Pakistan Rupee', value: 'PKR' },
|
||
{ name: 'Zloty', value: 'PLN' },
|
||
{ name: 'Qatari Rial', value: 'QAR' },
|
||
{ name: 'Romanian Leu', value: 'RON' },
|
||
{ name: 'Russian Ruble', value: 'RUB' },
|
||
{ name: 'Saudi Riyal', value: 'SAR' },
|
||
{ name: 'Solomon Islands Dollar', value: 'SBD' },
|
||
{ name: 'Seychelles Rupee', value: 'SCR' },
|
||
{ name: 'Swedish Krona', value: 'SEK' },
|
||
{ name: 'Singapore Dollar', value: 'SGD' },
|
||
{ name: 'Syrian Pound', value: 'SYP' },
|
||
{ name: 'Baht', value: 'THB' },
|
||
{ name: 'Pa’anga', value: 'TOP' },
|
||
{ name: 'Turkish Lira', value: 'TRY' },
|
||
{ name: 'Trinidad and Tobago Dollar', value: 'TTD' },
|
||
{ name: 'New Taiwan Dollar', value: 'TWD' },
|
||
{ name: 'Hryvnia', value: 'UAH' },
|
||
{ name: 'Dong', value: 'VND' },
|
||
{ name: 'Vatu', value: 'VUV' },
|
||
{ name: 'Tala', value: 'WST' },
|
||
{ name: 'East Caribbean Dollar', value: 'XCD' },
|
||
{ name: 'West African CFA Franc', value: 'XOF' },
|
||
{ name: 'Yemeni Rial', value: 'YER' },
|
||
{ name: 'Rand', value: 'ZAR' },
|
||
];
|