generaltranslation 7.6.2 → 7.6.3-alpha.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.
@@ -1,7 +1,8 @@
1
1
  import { CompletedFileTranslationData } from './file';
2
2
  export type FileTranslationQuery = {
3
3
  versionId: string;
4
- fileName: string;
4
+ fileName?: string;
5
+ fileId?: string;
5
6
  locale: string;
6
7
  };
7
8
  export type CheckFileTranslationsOptions = {
package/dist/types.d.ts CHANGED
@@ -143,7 +143,8 @@ type CompletedFileTranslationData = {
143
143
 
144
144
  type FileTranslationQuery = {
145
145
  versionId: string;
146
- fileName: string;
146
+ fileName?: string;
147
+ fileId?: string;
147
148
  locale: string;
148
149
  };
149
150
  type CheckFileTranslationsOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "7.6.2",
3
+ "version": "7.6.3-alpha.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",