@nomalism-com/types 0.31.2 → 0.31.3

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/dist/main.d.ts CHANGED
@@ -56,8 +56,8 @@ import * as EventHistoryRoutes from './modules/view/eventStore/route.schema';
56
56
  import * as Favorites from './modules/user/favorites/interfaces';
57
57
  import * as FavoritesRoutes from './modules/user/favorites/route.schema';
58
58
  import * as Field from './modules/integration/field/interfaces';
59
- import * as File from './modules/integration/file/interface';
60
- import * as FileRoutes from './modules/integration/file/route.schema';
59
+ import * as File from './modules/stock/file/interface';
60
+ import * as FileRoutes from './modules/stock/file/route.schema';
61
61
  import * as GroupPermissions from './modules/user/groupPermissions/interface';
62
62
  import * as GroupPermissionsRoutes from './modules/user/groupPermissions/route.schema';
63
63
  import * as GoogleSheets from './modules/integration/googleSheets/interfaces';
@@ -54,7 +54,7 @@ export import Vehicles = User.Vehicles;
54
54
  export import ZipCode = User.ZipCode;
55
55
  export import DocumentSet = Stock.DocumentSet;
56
56
  export import ExternalDocumentType = Stock.ExternalDocumentType;
57
- export import File = Integration.File;
57
+ export import File = Stock.File;
58
58
  export import DocumentLineBaseVirtuals = Stock.DocumentLineBaseVirtuals;
59
59
  export import DocumentLineVirtuals = Stock.DocumentLineVirtuals;
60
60
  export import StartDocumentHeaderVirtuals = Stock.StartDocumentHeaderVirtuals;
@@ -18,21 +18,6 @@ export type ObservationType = {
18
18
  created_at: Date;
19
19
  updated_at: Date;
20
20
  };
21
- export type File = {
22
- id: string;
23
- title: string;
24
- owner_id: string;
25
- document_header_id: string | null;
26
- multimedia_id: string;
27
- filename: string;
28
- is_customer: boolean;
29
- is_private: boolean;
30
- tags: string;
31
- created_by: string;
32
- updated_by: string;
33
- created_at: Date;
34
- updated_at: Date;
35
- };
36
21
  export type GoogleFilePermission = {
37
22
  id: string;
38
23
  file_id: string;
@@ -971,3 +971,18 @@ export type ChatRapidMessage = {
971
971
  created_by: string;
972
972
  updated_by: string;
973
973
  };
974
+ export type File = {
975
+ id: string;
976
+ title: string;
977
+ owner_id: string;
978
+ document_header_id: string | null;
979
+ multimedia_id: string;
980
+ filename: string;
981
+ is_customer: boolean;
982
+ is_private: boolean;
983
+ tags: string;
984
+ created_by: string;
985
+ updated_by: string;
986
+ created_at: Date;
987
+ updated_at: Date;
988
+ };
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript",
10
10
  "helper"
11
11
  ],
12
- "version": "0.31.2",
12
+ "version": "0.31.3",
13
13
  "main": "./dist/index.min.js",
14
14
  "types": "./dist/index.d.ts",
15
15
  "files": [
@@ -46,7 +46,7 @@
46
46
  "eslint-config-prettier": "^10.0.1",
47
47
  "eslint-import-resolver-typescript": "^3.7.0",
48
48
  "eslint-plugin-prettier": "^5.2.3",
49
- "prettier": "^3.5.0",
49
+ "prettier": "^3.5.1",
50
50
  "rollup": "^4.34.6",
51
51
  "tslib": "^2.8.1"
52
52
  }