generaltranslation 8.0.1-alpha.2 → 8.0.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.
@@ -1,5 +1,4 @@
1
- import { Content } from '../../types-dir/jsx/content';
2
- import { DataFormat } from '../../types-dir/jsx/content';
1
+ import { Content, DataFormat } from '../../types';
3
2
  /**
4
3
  * ActionType is the type of action to perform on the request.
5
4
  *
@@ -1,4 +1,4 @@
1
- import { DataFormat } from '../jsx/content';
1
+ import { DataFormat } from 'src/types';
2
2
  import { Entry } from './entry';
3
3
  export type FileFormat = 'GTJSON' | 'JSON' | 'YAML' | 'MDX' | 'MD' | 'TS' | 'JS' | 'HTML';
4
4
  export type FileMetadata = {
package/dist/types.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import { DataFormat as DataFormat$1 } from 'src/types';
2
+
1
3
  type CustomMapping = Record<string, string | Partial<LocaleProperties>>;
2
4
 
3
5
  type LocaleProperties = {
@@ -169,7 +171,7 @@ type FileReference = {
169
171
  branchId: string;
170
172
  fileName: string;
171
173
  fileFormat: FileFormat;
172
- dataFormat?: DataFormat;
174
+ dataFormat?: DataFormat$1;
173
175
  };
174
176
 
175
177
  type DownloadFileBatchOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "8.0.1-alpha.2",
3
+ "version": "8.0.2",
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",