@companix/utils-js 0.0.35 → 0.0.37

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.
@@ -2,7 +2,7 @@ export type FileStages = 'assigned' | 'evaluated' | 'empthy';
2
2
  export type FileFormat<T extends FileStages = FileStages> = T extends 'assigned' ? FileAssigned : T extends 'evaluated' ? FileEvaluated : T extends 'empthy' ? FileEmpthy : never;
3
3
  export interface FileAssigned {
4
4
  stage: 'assigned';
5
- meta: MetaFile;
5
+ meta: FilesTypes;
6
6
  }
7
7
  export interface FileEvaluated {
8
8
  stage: 'evaluated';
@@ -25,7 +25,7 @@ export declare namespace FileType {
25
25
  }
26
26
  interface Video extends MetaFile {
27
27
  type: 'video';
28
- firstframe: string;
28
+ thumbnail: string;
29
29
  }
30
30
  interface Document extends MetaFile {
31
31
  type: 'document';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@companix/utils-js",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "main": "dist/bundle.cjs.js",
5
5
  "module": "dist/bundle.esm.js",
6
6
  "types": "./dist/index.d.ts",