generaltranslation 7.7.0 → 7.7.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # generaltranslation
2
2
 
3
+ ## 7.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#751](https://github.com/generaltranslation/gt/pull/751) [`7114780`](https://github.com/generaltranslation/gt/commit/71147803bf3e4cf21556ffb9b5f77756e283a32a) Thanks [@SamEggert](https://github.com/SamEggert)! - transform for yaml files -- retrieve file format in downloadFileBatch
8
+
3
9
  ## 7.7.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -191,6 +191,7 @@ type File = {
191
191
  fileName: string;
192
192
  data: string;
193
193
  metadata: any;
194
+ fileFormat: FileFormat;
194
195
  };
195
196
  type DownloadFileBatchResult = {
196
197
  files: File[];
@@ -1,3 +1,4 @@
1
+ import { FileFormat } from './file';
1
2
  export type DownloadFileBatchOptions = {
2
3
  timeout?: number;
3
4
  };
@@ -14,6 +15,7 @@ type File = {
14
15
  fileName: string;
15
16
  data: string;
16
17
  metadata: any;
18
+ fileFormat: FileFormat;
17
19
  };
18
20
  export type DownloadFileBatchResult = {
19
21
  files: File[];
package/dist/types.d.ts CHANGED
@@ -162,6 +162,7 @@ type File = {
162
162
  fileName: string;
163
163
  data: string;
164
164
  metadata: any;
165
+ fileFormat: FileFormat;
165
166
  };
166
167
  type DownloadFileBatchResult = {
167
168
  files: File[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "7.7.0",
3
+ "version": "7.7.1",
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",