@intlayer/core 8.1.3-canary.0 → 8.1.3

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.
@@ -23,7 +23,7 @@ type TranslationContent<Content = unknown, RecordContent extends StrictModeLocal
23
23
  * - If a locale is missing, it will make each existing locale optional and raise an error if the locale is not found.
24
24
  */
25
25
  declare const translation: <Content = unknown, ContentRecord extends StrictModeLocaleMap<Content> = StrictModeLocaleMap<Content>>(content: ContentRecord) => TypedNodeModel<NodeType.Translation, ContentRecord, {
26
- nodeType: NodeType.Translation | "translation";
26
+ nodeType: "translation" | NodeType.Translation;
27
27
  } & {
28
28
  translation: ContentRecord;
29
29
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/core",
3
- "version": "8.1.3-canary.0",
3
+ "version": "8.1.3",
4
4
  "private": false,
5
5
  "description": "Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.",
6
6
  "keywords": [
@@ -169,11 +169,11 @@
169
169
  "typecheck": "tsc --noEmit --project tsconfig.types.json"
170
170
  },
171
171
  "dependencies": {
172
- "@intlayer/api": "8.1.3-canary.0",
173
- "@intlayer/config": "8.1.3-canary.0",
174
- "@intlayer/dictionaries-entry": "8.1.3-canary.0",
175
- "@intlayer/types": "8.1.3-canary.0",
176
- "@intlayer/unmerged-dictionaries-entry": "8.1.3-canary.0",
172
+ "@intlayer/api": "8.1.3",
173
+ "@intlayer/config": "8.1.3",
174
+ "@intlayer/dictionaries-entry": "8.1.3",
175
+ "@intlayer/types": "8.1.3",
176
+ "@intlayer/unmerged-dictionaries-entry": "8.1.3",
177
177
  "defu": "6.1.4"
178
178
  },
179
179
  "devDependencies": {