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 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
@@ -383,6 +383,7 @@ type GTJsonFormatMetadata = Record<string, {
383
383
  approved_at?: string | null;
384
384
  approved_by?: string | null;
385
385
  hash?: string;
386
+ filePaths?: string[];
386
387
  }>;
387
388
  type FileUpload = {
388
389
  branchId?: string;
@@ -14,6 +14,7 @@ export type GTJsonFormatMetadata = Record<string, {
14
14
  approved_at?: string | null;
15
15
  approved_by?: string | null;
16
16
  hash?: string;
17
+ filePaths?: string[];
17
18
  }>;
18
19
  export type FileUpload = {
19
20
  branchId?: string;
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "8.1.2",
3
+ "version": "8.1.3",
4
4
  "description": "A language toolkit for AI developers",
5
5
  "main": "dist/index.cjs.min.cjs",
6
6
  "module": "dist/index.esm.min.mjs",