generaltranslation 7.1.3 → 7.1.5

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.
@@ -19,12 +19,12 @@ export type Updates = ({
19
19
  * @param fileFormat - The format of the file (JSON, MDX, MD, etc.)
20
20
  * @param dataFormat - The format of the data within the file
21
21
  */
22
- export interface FileToTranslate {
22
+ export type FileToTranslate = {
23
23
  content: string;
24
24
  fileName: string;
25
25
  fileFormat: FileFormat;
26
26
  dataFormat?: DataFormat;
27
- }
27
+ };
28
28
  export type EnqueueFilesOptions = {
29
29
  publish: boolean;
30
30
  description?: string;
package/dist/types.d.ts CHANGED
@@ -194,12 +194,12 @@ type Updates = ({
194
194
  * @param fileFormat - The format of the file (JSON, MDX, MD, etc.)
195
195
  * @param dataFormat - The format of the data within the file
196
196
  */
197
- interface FileToTranslate {
197
+ type FileToTranslate = {
198
198
  content: string;
199
199
  fileName: string;
200
200
  fileFormat: FileFormat;
201
201
  dataFormat?: DataFormat;
202
- }
202
+ };
203
203
  type EnqueueFilesOptions = {
204
204
  publish: boolean;
205
205
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "7.1.3",
3
+ "version": "7.1.5",
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",