@sanity/document-internationalization 3.3.0 → 3.3.2
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/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/index.esm.js +142 -2941
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +130 -2932
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +142 -2941
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/constants.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/document-internationalization",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Create unique translations of a document based on its language, joined by a shared reference document.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@sanity/icons": "^3.5.3",
|
|
51
51
|
"@sanity/incompatible-plugin": "^1.0.5",
|
|
52
|
+
"@sanity/mutator": "^3.67.1",
|
|
52
53
|
"@sanity/ui": "^2.10.11",
|
|
53
54
|
"@sanity/uuid": "^3.0.2",
|
|
54
55
|
"sanity-plugin-internationalized-array": "^3.0.3",
|
package/src/constants.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type {PluginConfigContext} from './types'
|
|
|
2
2
|
|
|
3
3
|
export const METADATA_SCHEMA_NAME = `translation.metadata`
|
|
4
4
|
export const TRANSLATIONS_ARRAY_NAME = `translations`
|
|
5
|
-
export const API_VERSION = `
|
|
5
|
+
export const API_VERSION = `2025-02-19`
|
|
6
6
|
export const DEFAULT_CONFIG: PluginConfigContext = {
|
|
7
7
|
supportedLanguages: [],
|
|
8
8
|
schemaTypes: [],
|