@n8n/i18n 1.16.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.cts CHANGED
@@ -3467,7 +3467,11 @@ var englishBaseText = {
3467
3467
 
3468
3468
  type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
3469
3469
  type BaseTextKey = GetBaseTextKey<keyof typeof englishBaseText>;
3470
- type LocaleMessages = typeof englishBaseText;
3470
+ type LocaleMessages = typeof englishBaseText & {
3471
+ numberFormats: {
3472
+ [key: string]: Intl.NumberFormatOptions;
3473
+ };
3474
+ };
3471
3475
  interface INodeTranslationHeaders {
3472
3476
  data: {
3473
3477
  [key: string]: {
package/dist/types.d.ts CHANGED
@@ -3467,7 +3467,11 @@ var englishBaseText = {
3467
3467
 
3468
3468
  type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
3469
3469
  type BaseTextKey = GetBaseTextKey<keyof typeof englishBaseText>;
3470
- type LocaleMessages = typeof englishBaseText;
3470
+ type LocaleMessages = typeof englishBaseText & {
3471
+ numberFormats: {
3472
+ [key: string]: Intl.NumberFormatOptions;
3473
+ };
3474
+ };
3471
3475
  interface INodeTranslationHeaders {
3472
3476
  data: {
3473
3477
  [key: string]: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@n8n/i18n",
3
3
  "type": "module",
4
- "version": "1.16.0",
4
+ "version": "1.16.1",
5
5
  "files": [
6
6
  "dist",
7
7
  "LICENSE.md",
@@ -40,8 +40,8 @@
40
40
  "vitest": "^3.1.3",
41
41
  "vue-tsc": "^2.2.8",
42
42
  "@n8n/eslint-config": "0.0.1",
43
- "@n8n/typescript-config": "1.3.0",
44
- "@n8n/vitest-config": "1.5.0"
43
+ "@n8n/vitest-config": "1.5.0",
44
+ "@n8n/typescript-config": "1.3.0"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "vue": "^3.5.13"