generaltranslation 8.1.2 → 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.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/types-dir/api/uploadFiles.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# generaltranslation
|
|
2
2
|
|
|
3
|
+
## 8.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#883](https://github.com/generaltranslation/gt/pull/883) [`e113d8d`](https://github.com/generaltranslation/gt/commit/e113d8d8fb5e37f45a4aa77544e8f4666519bfe8) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Send file paths in translation metadata
|
|
8
|
+
|
|
3
9
|
## 8.1.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ type Metadata = {
|
|
|
425
425
|
id?: string;
|
|
426
426
|
sourceLocale?: string;
|
|
427
427
|
actionType?: 'standard' | 'fast' | string;
|
|
428
|
+
filePaths?: string[];
|
|
428
429
|
[key: string]: any;
|
|
429
430
|
};
|
|
430
431
|
type FormatVariables = Record<string, string | number | boolean | null | undefined | Date>;
|