@intlayer/types 7.0.0-canary.3 → 7.0.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.
@@ -1,5 +1,5 @@
1
1
  import { Locale } from "./locales.js";
2
- import { Fill } from "./dictionary.js";
2
+ import { Dictionary } from "./dictionary.js";
3
3
  import { Plugin } from "./plugin.js";
4
4
 
5
5
  //#region src/config.d.ts
@@ -114,16 +114,14 @@ type CookiesAttributes = {
114
114
  */
115
115
  expires?: Date | number | undefined;
116
116
  };
117
- type LocaleStorageAttributes = {
117
+ type StorageAttributes = {
118
118
  /**
119
119
  * Storage type where the locale is stored
120
120
  *
121
- * Default: 'localStorage'
122
- *
123
121
  * Determines whether the locale is persisted in `localStorage` (across sessions)
124
- * or `sessionStorage` (cleared when the browser session ends).
122
+ * or `sessionStorage` (cleared when the browser session ends) or `header` (from the request header).
125
123
  */
126
- type: 'localStorage' | 'sessionStorage';
124
+ type: 'localStorage' | 'sessionStorage' | 'header';
127
125
  /**
128
126
  * Storage key to store the locale information
129
127
  *
@@ -163,7 +161,7 @@ type RoutingConfig = {
163
161
  * If false, the locale will not be stored by the middleware.
164
162
  * If true, the locale storage will consider all default values.
165
163
  *
166
- * Default: 'cookie'
164
+ * Default: ['cookie', 'header]
167
165
  *
168
166
  * Note: Check out GDPR compliance for cookies. See https://gdpr.eu/cookies/
169
167
  * Note: useLocale hook includes a prop to disable the cookie storage.
@@ -173,15 +171,7 @@ type RoutingConfig = {
173
171
  * - Config both localStorage and cookies for the storage of the locale if you want to support GDPR compliance.
174
172
  * - Disable the cookie storage by default on the useLocale hook by waiting for the user to consent to the cookie storage.
175
173
  */
176
- storage: false | 'cookie' | 'localStorage' | 'sessionStorage' | CookiesAttributes | LocaleStorageAttributes | ('cookie' | 'localStorage' | 'sessionStorage' | CookiesAttributes | LocaleStorageAttributes)[];
177
- /**
178
- * Header name to get the locale from the request
179
- *
180
- * Default: 'x-intlayer-locale'
181
- *
182
- * The HTTP header key used to determine the current locale.
183
- */
184
- headerName: string;
174
+ storage: false | 'cookie' | 'localStorage' | 'sessionStorage' | 'header' | CookiesAttributes | StorageAttributes | ('cookie' | 'localStorage' | 'sessionStorage' | 'header' | CookiesAttributes | StorageAttributes)[];
185
175
  /**
186
176
  * Base path for application URLs
187
177
  *
@@ -190,38 +180,6 @@ type RoutingConfig = {
190
180
  * Defines the base path where the application is accessible from.
191
181
  */
192
182
  basePath: string;
193
- /**
194
- * Controls whether locale detection occurs during Next.js prefetch requests
195
- * - true: Detect and apply locale during prefetch
196
- * - false: Use default locale during prefetch (recommended)
197
- *
198
- * This setting affects how Next.js handles locale prefetching:
199
- *
200
- * Example scenario:
201
- * - User's browser language is 'fr'
202
- * - Current page is /fr/about
203
- * - Link prefetches /about
204
- *
205
- * With `detectLocaleOnPrefetchNoPrefix:true`
206
- * - Prefetch detects 'fr' locale from browser
207
- * - Redirects prefetch to /fr/about
208
- *
209
- * With `detectLocaleOnPrefetchNoPrefix:false` (default)
210
- * - Prefetch uses default locale
211
- * - Redirects prefetch to /en/about (assuming 'en' is default)
212
- *
213
- * When to use true:
214
- * - Your app uses non-localized internal links (e.g. <a href="/about">)
215
- * - You want consistent locale detection behavior between regular and prefetch requests
216
- *
217
- * When to use false (default):
218
- * - Your app uses locale-prefixed links (e.g. <a href="/fr/about">)
219
- * - You want to optimize prefetching performance
220
- * - You want to avoid potential redirect loops
221
- *
222
- * Default: false
223
- */
224
- detectLocaleOnPrefetchNoPrefix: boolean;
225
183
  };
226
184
  /**
227
185
  * Configuration for intlayer editor
@@ -334,32 +292,6 @@ type EditorConfig = {
334
292
  * Default: `http://localhost:${liveSyncPort}`
335
293
  */
336
294
  liveSyncURL: string;
337
- /**
338
- * Command to format the content. When intlayer write your .content files locally, this command will be used to format the content.
339
- *
340
- * Example:
341
- *
342
- * ```bash
343
- * npx prettier --write {{file}}
344
- * ```
345
- *
346
- * ```bash
347
- * bunx biome format {{file}}
348
- * ```
349
- *
350
- * ```bash
351
- * bun format {{file}}
352
- * ```
353
- *
354
- * ```bash
355
- * npx eslint --fix {{file}}
356
- * ```
357
- *
358
- * Intlayer will replace the {{file}} with the path of the file to format.
359
- *
360
- * Default: undefined
361
- */
362
- formatCommand: string | undefined;
363
295
  };
364
296
  type AiConfig = {
365
297
  /**
@@ -520,6 +452,10 @@ type CustomIntlayerConfig = {
520
452
  * Custom internationalization configuration
521
453
  */
522
454
  internationalization?: Partial<InternationalizationConfig>;
455
+ /**
456
+ * Custom dictionary configuration
457
+ */
458
+ dictionary?: Partial<DictionaryConfig>;
523
459
  /**
524
460
  * Custom routing configuration
525
461
  */
@@ -549,6 +485,7 @@ type CustomIntlayerConfig = {
549
485
  */
550
486
  plugins?: Plugin[];
551
487
  };
488
+ type DictionaryConfig = Pick<Dictionary, 'fill' | 'description' | 'locale' | 'priority' | 'live' | 'title' | 'tags' | 'version'>;
552
489
  /**
553
490
  * Combined configuration for internationalization, middleware, and content
554
491
  */
@@ -557,6 +494,10 @@ type IntlayerConfig = {
557
494
  * Internationalization configuration
558
495
  */
559
496
  internationalization: InternationalizationConfig;
497
+ /**
498
+ * Default dictionary configuration
499
+ */
500
+ dictionary?: Partial<DictionaryConfig>;
560
501
  /**
561
502
  * Routing configuration
562
503
  */
@@ -621,12 +562,31 @@ type BaseContentConfig = {
621
562
  */
622
563
  watch: boolean;
623
564
  /**
624
- * Indicate how the content should be automatically filled using AI.
565
+ * Command to format the content. When intlayer write your .content files locally, this command will be used to format the content.
625
566
  *
626
- * Default: undefined
567
+ * Example:
568
+ *
569
+ * ```bash
570
+ * npx prettier --write {{file}}
571
+ * ```
627
572
  *
573
+ * ```bash
574
+ * bunx biome format {{file}}
575
+ * ```
576
+ *
577
+ * ```bash
578
+ * bun format {{file}}
579
+ * ```
580
+ *
581
+ * ```bash
582
+ * npx eslint --fix {{file}}
583
+ * ```
584
+ *
585
+ * Intlayer will replace the {{file}} with the path of the file to format.
586
+ *
587
+ * Default: undefined
628
588
  */
629
- fill: Fill;
589
+ formatCommand: string | undefined;
630
590
  };
631
591
  /**
632
592
  * Configuration derived based on the base content configuration
@@ -789,5 +749,5 @@ type LogConfig = {
789
749
  debug?: typeof console.debug;
790
750
  };
791
751
  //#endregion
792
- export { AiConfig, BaseContentConfig, BaseDerivedConfig, BuildConfig, ContentConfig, CookiesAttributes, CustomIntlayerConfig, EditorConfig, InternationalizationConfig, IntlayerConfig, LocaleStorageAttributes, LogConfig, LogFunctions, PatternsContentConfig, RoutingConfig, StrictMode };
752
+ export { AiConfig, BaseContentConfig, BaseDerivedConfig, BuildConfig, ContentConfig, CookiesAttributes, CustomIntlayerConfig, DictionaryConfig, EditorConfig, InternationalizationConfig, IntlayerConfig, LogConfig, LogFunctions, PatternsContentConfig, RoutingConfig, StorageAttributes, StrictMode };
793
753
  //# sourceMappingURL=config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","names":[],"sources":["../../src/config.ts"],"sourcesContent":[],"mappings":";;;;;KAIY,UAAA;;AAAZ;AAKA;AAQW,KARC,0BAAA,GAQD;EAWQ;;;;AAsBnB;AAwEA;AAwBA;EA2CM,OAAA,EA5KK,MA4KL,EAAA;EACA;;;;AAgEN;AAoJA;AAyDA;AA4GA;;EAIyB,eAAA,EA/hBN,MA+hBM,EAAA;EAKL;;;;;;;;EAoBL,UAAA,EA9iBD,UA8iBC;EAAR;;;;;AAgBP;;EASW,aAAA,EA9jBM,MA8jBN;CAKA;AAKD,KArkBE,iBAAA,GAqkBF;EAKH;;;;;EAeW,IAAA,EAAA,QAAA;EAMN;AA+CZ;AAwGA;AAiCA;;;;EAEuB,IAAA,CAAA,EAAA,MAAA;EAEX;;;;;;AAOZ;;EAyBe,MAAQ,CAAA,EAAA,MAAA;EACP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAvvBJ;;KAGA,uBAAA;;;;;;;;;;;;;;;;;;;;;;KAwBA,aAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kEA2CN,oBACA,0EAKI,oBACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA0DE,YAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAoJA,QAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAyDA,WAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAsGA,MAAA,CAAO;;;;;KAMP,oBAAA;;;;yBAIa,QAAQ;;;;YAKrB,QAAQ;;;;YAKR,QAAQ;;;;WAKT,QAAQ;;;;QAKX,QAAQ;;;;OAKT,QAAQ;;;;UAKL,QAAQ;;;;YAKN;;;;;KAMA,cAAA;;;;wBAIY;;;;WAKb;;;;WAKA;;;;UAKD;;;;OAKH;;;;OAKA,QAAQ;;;;SAKN;;;;YAKG;;;;;KAMA,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAyCJ;;;;;KAMI,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAwGA,qBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiCA,aAAA,GAAgB,oBAC1B,oBACA;KAEU,YAAA;iBACK,OAAA,CAAQ;eACV,OAAA,CAAQ;gBACP,OAAA,CAAQ;gBACR,OAAA,CAAQ;;KAGZ,SAAA;;;;;;;;;;;;;;;;;;;;;;iBAwBK,OAAA,CAAQ;eACV,OAAA,CAAQ;gBACP,OAAA,CAAQ;gBACR,OAAA,CAAQ;iBACP,OAAA,CAAQ"}
1
+ {"version":3,"file":"config.d.ts","names":[],"sources":["../../src/config.ts"],"sourcesContent":[],"mappings":";;;;;KAIY,UAAA;;AAAZ;AAKA;AAQW,KARC,0BAAA,GAQD;EAWQ;;;;AAsBnB;AAwEA;AAsBA;EA4CM,OAAA,EA3KK,MA2KL,EAAA;EACA;;;;AAuBN;AAyHA;AAyDA;AA4GA;;EAIyB,eAAA,EA1dN,MA0dM,EAAA;EAKF;;;;;;;;EAoBP,UAAA,EAzeF,UAyeE;EAAR;;;;;;;EAkBI,aAAA,EAlfK,MAkfW;AAe5B,CAAA;AAIwB,KAlgBZ,iBAAA,GAkgBY;EAKD;;;;;EAoBhB,IAAA,EAAA,QAAA;EAKQ;;;;;AAgBf;AAkEA;EAwGY,IAAA,CAAA,EAAA,MAAA;EAiCA;;;;;AAIZ;;;EAGgB,MAAQ,CAAA,EAAA,MAAA;EACR;;AAGhB;;;;;EA4BiB,IAAA,CAAQ,EAAA,MAAA;EAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA7tBlB;;KAGA,iBAAA;;;;;;;;;;;;;;;;;;;;KAsBA,aAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EA4CN,oBACA,+EAMI,oBACA;;;;;;;;;;;;;KAgBE,YAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAyHA,QAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAyDA,WAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAsGA,MAAA,CAAO;;;;;KAMP,oBAAA;;;;yBAIa,QAAQ;;;;eAKlB,QAAQ;;;;YAKX,QAAQ;;;;YAKR,QAAQ;;;;WAKT,QAAQ;;;;QAKX,QAAQ;;;;OAKT,QAAQ;;;;UAKL,QAAQ;;;;YAKN;;KAGA,gBAAA,GAAmB,KAC7B;;;;KAcU,cAAA;;;;wBAIY;;;;eAKT,QAAQ;;;;WAKZ;;;;WAKA;;;;UAKD;;;;OAKH;;;;OAKA,QAAQ;;;;SAKN;;;;YAKG;;;;;KAMA,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAkEA,iBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAwGA,qBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiCA,aAAA,GAAgB,oBAC1B,oBACA;KAEU,YAAA;iBACK,OAAA,CAAQ;eACV,OAAA,CAAQ;gBACP,OAAA,CAAQ;gBACR,OAAA,CAAQ;;KAGZ,SAAA;;;;;;;;;;;;;;;;;;;;;;iBAwBK,OAAA,CAAQ;eACV,OAAA,CAAQ;gBACP,OAAA,CAAQ;gBACR,OAAA,CAAQ;iBACP,OAAA,CAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"dictionary.d.ts","names":[],"sources":["../../src/dictionary.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"dictionary.d.ts","names":[],"sources":["../../src/dictionary.ts"],"sourcesContent":[],"mappings":"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"}
@@ -1,8 +1,8 @@
1
1
  import { Locale, locales_d_exports } from "./locales.js";
2
- import { DeclaredLocales, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, LocalesValues, RequiredLocales, StrictModeLocaleMap, StringFallback } from "./module_augmentation.js";
2
+ import { DeclaredLocales, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, LocalesValues, RequiredLocales, StrictModeLocaleMap } from "./module_augmentation.js";
3
3
  import { NodeType, TypedNodeModel, formatNodeType } from "./nodeType.js";
4
4
  import { ContentNode, Dictionary, Fill, GetSubPath, LocalDictionaryId, TypedNode } from "./dictionary.js";
5
5
  import { MergedDictionaryOutput, MergedDictionaryResult, Plugin, UnmergedDictionaryOutput, UnmergedDictionaryResult } from "./plugin.js";
6
- import { AiConfig, BaseContentConfig, BaseDerivedConfig, BuildConfig, ContentConfig, CookiesAttributes, CustomIntlayerConfig, EditorConfig, InternationalizationConfig, IntlayerConfig, LocaleStorageAttributes, LogConfig, LogFunctions, PatternsContentConfig, RoutingConfig, StrictMode } from "./config.js";
6
+ import { AiConfig, BaseContentConfig, BaseDerivedConfig, BuildConfig, ContentConfig, CookiesAttributes, CustomIntlayerConfig, DictionaryConfig, EditorConfig, InternationalizationConfig, IntlayerConfig, LogConfig, LogFunctions, PatternsContentConfig, RoutingConfig, StorageAttributes, StrictMode } from "./config.js";
7
7
  import { ArrayNode, ConditionNode, EnumerationNode, FileNode, GenderNode, InsertionNode, KeyPath, MarkdownNode, NestedNode, ObjectNode, ReactNode, TranslationNode } from "./keyPath.js";
8
- export { AiConfig, ArrayNode, BaseContentConfig, BaseDerivedConfig, BuildConfig, ConditionNode, ContentConfig, ContentNode, CookiesAttributes, CustomIntlayerConfig, DeclaredLocales, Dictionary, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, EditorConfig, EnumerationNode, FileNode, Fill, GenderNode, GetSubPath, InsertionNode, InternationalizationConfig, IntlayerConfig, KeyPath, LocalDictionaryId, type Locale, LocaleStorageAttributes, locales_d_exports as Locales, LocalesValues, LogConfig, LogFunctions, MarkdownNode, MergedDictionaryOutput, MergedDictionaryResult, NestedNode, NodeType, ObjectNode, PatternsContentConfig, Plugin, ReactNode, RequiredLocales, RoutingConfig, StrictMode, StrictModeLocaleMap, StringFallback, TranslationNode, TypedNode, TypedNodeModel, UnmergedDictionaryOutput, UnmergedDictionaryResult, formatNodeType };
8
+ export { AiConfig, ArrayNode, BaseContentConfig, BaseDerivedConfig, BuildConfig, ConditionNode, ContentConfig, ContentNode, CookiesAttributes, CustomIntlayerConfig, DeclaredLocales, Dictionary, DictionaryConfig, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, EditorConfig, EnumerationNode, FileNode, Fill, GenderNode, GetSubPath, InsertionNode, InternationalizationConfig, IntlayerConfig, KeyPath, LocalDictionaryId, type Locale, locales_d_exports as Locales, LocalesValues, LogConfig, LogFunctions, MarkdownNode, MergedDictionaryOutput, MergedDictionaryResult, NestedNode, NodeType, ObjectNode, PatternsContentConfig, Plugin, ReactNode, RequiredLocales, RoutingConfig, StorageAttributes, StrictMode, StrictModeLocaleMap, TranslationNode, TypedNode, TypedNodeModel, UnmergedDictionaryOutput, UnmergedDictionaryResult, formatNodeType };
@@ -4,27 +4,21 @@ import { StrictMode } from "./config.js";
4
4
  import { __DeclaredLocalesRegistry, __DictionaryRegistry, __RequiredLocalesRegistry, __StrictModeRegistry } from "intlayer";
5
5
 
6
6
  //#region src/module_augmentation.d.ts
7
-
8
- /**
9
- * Provides a fallback to string type if the generic type T is undefined,
10
- * otherwise returns T. This is useful for handling cases where no keys are found.
11
- * Example: StringFallback<undefined> -> string; StringFallback<'key'> -> 'key'
12
- */
13
- type StringFallback<T> = T extends never ? string : T;
14
7
  type DictionaryKeys = keyof __DictionaryRegistry extends never ? string : keyof __DictionaryRegistry;
15
8
  type DictionaryRegistry = __DictionaryRegistry[keyof __DictionaryRegistry] extends never ? Record<string, Dictionary> : __DictionaryRegistry;
16
9
  type DictionaryRegistryElement<T extends DictionaryKeys> = [string] extends [T] ? Dictionary : __DictionaryRegistry[T] extends Dictionary ? __DictionaryRegistry[T] : Dictionary;
17
10
  type DictionaryRegistryContent<T extends PropertyKey> = [T] extends [keyof __DictionaryRegistry] ? __DictionaryRegistry[T] extends {
18
11
  content: infer C;
19
12
  } ? C : any : any;
20
- type DeclaredLocales = keyof __DeclaredLocalesRegistry extends never ? Locale : keyof __DeclaredLocalesRegistry;
21
- type RequiredLocales = keyof __RequiredLocalesRegistry extends never ? never : keyof __RequiredLocalesRegistry;
13
+ type NarrowStringKeys<T> = string extends keyof T ? never : Extract<keyof T, string>;
14
+ type DeclaredLocales = [NarrowStringKeys<__DeclaredLocalesRegistry>] extends [never] ? Locale : NarrowStringKeys<__DeclaredLocalesRegistry>;
15
+ type RequiredLocales = [NarrowStringKeys<__RequiredLocalesRegistry>] extends [never] ? never : NarrowStringKeys<__RequiredLocalesRegistry>;
22
16
  /** Define MyType using the ValueOf utility type on Locales */
23
- type LocalesValues = keyof __DeclaredLocalesRegistry extends never ? Locale | (string & {}) : DeclaredLocales | (string & {});
17
+ type LocalesValues = DeclaredLocales | (string & {});
24
18
  type ResolvedStrictMode = __StrictModeRegistry extends {
25
19
  mode: infer M;
26
20
  } ? M : 'inclusive';
27
21
  type StrictModeLocaleMap<Content = unknown, Mode extends StrictMode = ResolvedStrictMode> = RequiredLocales extends never ? Partial<Record<Locale, Content>> : Mode extends 'strict' ? Required<Record<RequiredLocales, Content>> & Partial<Record<DeclaredLocales, Content>> : Mode extends 'inclusive' ? Required<Record<RequiredLocales, Content>> & Partial<Record<Locale, Content>> : Partial<Record<Locale, Content>>;
28
22
  //#endregion
29
- export { DeclaredLocales, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, LocalesValues, RequiredLocales, StrictModeLocaleMap, StringFallback };
23
+ export { DeclaredLocales, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, LocalesValues, RequiredLocales, StrictModeLocaleMap };
30
24
  //# sourceMappingURL=module_augmentation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"module_augmentation.d.ts","names":[],"sources":["../../src/module_augmentation.ts"],"sourcesContent":[],"mappings":";;;;;;;;;AAeA;AAEA;AAKA;AACE,KARU,cAQV,CAAA,CAAA,CAAA,GAR8B,CAQ9B,SAAA,KAAA,GAAA,MAAA,GARyD,CAQzD;AAA2B,KANjB,cAAA,GAMiB,MANM,oBAMN,SAAA,KAAA,GAAA,MAAA,GAAA,MAJnB,oBAImB;AACR,KAFT,kBAAA,GACV,oBACmB,CAAA,MADQ,oBACR,CAAA,SAAA,KAAA,GAAf,MAAe,CAAA,MAAA,EAAA,UAAA,CAAA,GACf,oBADe;AAAf,KAGM,yBAHN,CAAA,UAG0C,cAH1C,CAAA,GAAA,CACA,MAAA,CAAoB,SAAA,CAIf,CAJe,CAAA,GAKtB,UALsB,GAMtB,oBANsB,CAMD,CANC,CAAA,SAMU,UANV,GAOpB,oBAPoB,CAOC,CAPD,CAAA,GAQpB,UARoB;AAEd,KAQA,yBARyB,CAAA,UAQW,WARX,CAAA,GAAA,CAQ2B,CAR3B,CAAA,SAAA,CAAW,MASxC,oBATwC,CAErC,GASP,oBATO,CASc,CATd,CAAA,SAAA;EACP,OAAA,EAAA,KAAA,EAAA;CACA,GAQE,CARF,GAAA,GAAA,GAAA,GAAA;AAAqB,KAab,eAAA,GAba,MAaW,yBAbX,SAAA,KAAA,GAcrB,MAdqB,GAAA,MAef,yBAfe;AAAW,KAiBxB,eAAA,GAjBwB,MAiBA,yBAjBA,SAAA,KAAA,GAAA,KAAA,GAAA,MAmB1B,yBAnB0B;;AACT,KAqBf,aAAA,GArBe,MAqBO,yBArBP,SAAA,KAAA,GAsBvB,MAtBuB,GAAA,CAAA,MAAA,GAAA,CAAA,CAAA,CAAA,GAuBvB,eAvBuB,GAAA,CAAA,MAAA,GAAA,CAAA,CAAA,CAAA;KA0BtB,kBAAA,GAAqB,oBAzBpB,SAAA;EAAU,IAAA,EAAA,KAAA,EAAA;AAEhB,CAAA,GAwBI,CAxBQ,GAAA,WAAA;AAAoC,KA4BpC,mBA5BoC,CAAA,UAAA,OAAA,EAAA,aA8BjC,UA9BiC,GA8BpB,kBA9BoB,CAAA,GA+B5C,eA/B4C,SAAA,KAAA,GAgC5C,OAhC4C,CAgCpC,MAhCoC,CAgC7B,MAhC6B,EAgCrB,OAhCqB,CAAA,CAAA,GAiC5C,IAjC4C,SAAA,QAAA,GAkC1C,QAlC0C,CAkCjC,MAlCiC,CAkC1B,eAlC0B,EAkCT,OAlCS,CAAA,CAAA,GAmCxC,OAnCwC,CAmChC,MAnCgC,CAmCzB,eAnCyB,EAmCR,OAnCQ,CAAA,CAAA,GAoC1C,IApC0C,SAAA,WAAA,GAqCxC,QArCwC,CAqC/B,MArC+B,CAqCxB,eArCwB,EAqCP,OArCO,CAAA,CAAA,GAsCtC,OAtCsC,CAsC9B,MAtC8B,CAsCvB,MAtCuB,EAsCf,OAtCe,CAAA,CAAA,GAuCxC,OAvCwC,CAuChC,MAvCgC,CAuCzB,MAvCyB,EAuCjB,OAvCiB,CAAA,CAAA"}
1
+ {"version":3,"file":"module_augmentation.d.ts","names":[],"sources":["../../src/module_augmentation.ts"],"sourcesContent":[],"mappings":";;;;;;KAUY,cAAA,SAAuB,oDAEzB;KAGE,kBAAA,GACV,2BAA2B,sCACvB,eAAe,cACf;AARM,KAUA,yBAVuB,CAAA,UAUa,cARtC,CAAA,GAAA,CAGE,MAAA,CACV,SAAA,CAMS,CANT,CAAA,GAOE,UAPF,GAQE,oBARF,CAQuB,CARvB,CAAA,SAQkC,UARlC,GASI,oBATJ,CASyB,CATzB,CAAA,GAUI,UAVJ;AAA2B,KAYjB,yBAZiB,CAAA,UAYmB,WAZnB,CAAA,GAAA,CAYmC,CAZnC,CAAA,SAAA,CACR,MAYb,oBAZa,CAAf,GAcF,oBAdE,CAcmB,CAdnB,CAAA,SAAA;EACA,OAAA,EAAA,KAAA,EAAA;CAAoB,GAcpB,CAdoB,GAAA,GAAA,GAAA,GAAA;AAE1B,KAkBK,gBAlBO,CAAA,CAAA,CAAA,GAAA,MAAyB,SAAA,MAkBW,CAlBX,GAAA,KAAA,GAoBjC,OApBiC,CAAA,MAoBnB,CApBmB,EAAA,MAAA,CAAA;AAAW,KAsBpC,eAAA,GAtBoC,CAuB9C,gBArBS,CAqBQ,yBArBR,CAAA,CACP,SAAA,CAAA,KAAA,CAAA,GAsBA,MAtBA,GAuBA,gBAvBA,CAuBiB,yBAvBjB,CAAA;AACA,KAwBQ,eAAA,GAxBR,CAyBF,gBAzBuB,CAyBN,yBAzBM,CAAA,CAAW,SAAA,CAAA,KAAA,CAAA,GAAA,KAAA,GA4BhC,gBA5BgC,CA4Bf,yBA5Be,CAAA;;AACT,KA8Bf,aAAA,GAAgB,eA9BD,GAAA,CAAA,MAAA,GAAA,CAAA,CAAA,CAAA;KAiCtB,kBAAA,GAAqB,oBAhCpB,SAAA;EAAU,IAAA,EAAA,KAAA,EAAA;AAEhB,CAAA,GA+BI,CA/BQ,GAAA,WAAA;AAAoC,KAmCpC,mBAnCoC,CAAA,UAAA,OAAA,EAAA,aAqCjC,UArCiC,GAqCpB,kBArCoB,CAAA,GAsC5C,eAtC4C,SAAA,KAAA,GAuC5C,OAvC4C,CAuCpC,MAvCoC,CAuC7B,MAvC6B,EAuCrB,OAvCqB,CAAA,CAAA,GAwC5C,IAxC4C,SAAA,QAAA,GAyC1C,QAzC0C,CAyCjC,MAzCiC,CAyC1B,eAzC0B,EAyCT,OAzCS,CAAA,CAAA,GA0CxC,OA1CwC,CA0ChC,MA1CgC,CA0CzB,eA1CyB,EA0CR,OA1CQ,CAAA,CAAA,GA2C1C,IA3C0C,SAAA,WAAA,GA4CxC,QA5CwC,CA4C/B,MA5C+B,CA4CxB,eA5CwB,EA4CP,OA5CO,CAAA,CAAA,GA6CtC,OA7CsC,CA6C9B,MA7C8B,CA6CvB,MA7CuB,EA6Cf,OA7Ce,CAAA,CAAA,GA8CxC,OA9CwC,CA8ChC,MA9CgC,CA8CzB,MA9CyB,EA8CjB,OA9CiB,CAAA,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/types",
3
- "version": "7.0.0-canary.3",
3
+ "version": "7.0.1",
4
4
  "private": false,
5
5
  "description": "Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.",
6
6
  "keywords": [
@@ -76,9 +76,9 @@
76
76
  },
77
77
  "devDependencies": {
78
78
  "@types/node": "24.9.1",
79
- "@utils/ts-config": "7.0.0-canary.3",
80
- "@utils/ts-config-types": "7.0.0-canary.3",
81
- "@utils/tsdown-config": "7.0.0-canary.3",
79
+ "@utils/ts-config": "7.0.1",
80
+ "@utils/ts-config-types": "7.0.1",
81
+ "@utils/tsdown-config": "7.0.1",
82
82
  "rimraf": "6.0.1",
83
83
  "tsdown": "0.15.9",
84
84
  "typescript": "5.9.3",
File without changes
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.cjs","names":["LocalesList"],"sources":["../../src/index.ts"],"sourcesContent":["import type { Locale } from './locales';\nimport * as LocalesList from './locales';\n\nexport const Locales = LocalesList as unknown as Locale;\nexport type { Locale };\n\nexport * from './config';\nexport * from './dictionary';\nexport * from './keyPath';\nexport * from './module_augmentation';\nexport * from './nodeType';\nexport * from './plugin';\nexport * from './translation';\n"],"mappings":";;;;AAGA,MAAa,UAAUA"}
@@ -1 +0,0 @@
1
- require("intlayer");