@nomalism-com/types 0.45.65 → 0.45.68

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.
@@ -57,6 +57,7 @@ export declare const DocumentTypeCodeTypeEnum: {
57
57
  FTO: 'FTO';
58
58
  FRO: 'FRO';
59
59
  REO: 'REO';
60
+ CAT: 'CAT';
60
61
  };
61
62
  export type IDocumentTypeCodeType = (typeof DocumentTypeCodeTypeEnum)[keyof typeof DocumentTypeCodeTypeEnum];
62
63
  export declare const documentTypeCodeTypes: string[];
@@ -2,8 +2,6 @@ import * as IShared from '../../../shared/interface';
2
2
  import { ExternalDocumentHeader } from '../../../shared/entities/stock';
3
3
  export type Entity = ExternalDocumentHeader;
4
4
  export declare const Route = "external_document_header";
5
- export declare const UpperName = "ExternalDocumentHeader";
6
- export declare const LowerName: string;
7
5
  export interface IFindByOwnerIdItem {
8
6
  external_document_header_id: string | null;
9
7
  document_header_id: string;
@@ -39,48 +39,6 @@ export type Favorites = {
39
39
  created_at: Date;
40
40
  updated_at: Date;
41
41
  };
42
- /**
43
- * Model Permissions
44
- *
45
- */
46
- export type Permissions = {
47
- id: number;
48
- code: string;
49
- description: string;
50
- enable: boolean;
51
- created_at: Date;
52
- updated_at: Date;
53
- created_by: string;
54
- updated_by: string;
55
- };
56
- /**
57
- * Model GroupPermissions
58
- *
59
- */
60
- export type GroupPermissions = {
61
- id: number;
62
- code: string;
63
- description: string;
64
- enable: boolean;
65
- created_at: Date;
66
- updated_at: Date;
67
- created_by: string;
68
- updated_by: string;
69
- };
70
- /**
71
- * Model UserPermissions
72
- *
73
- */
74
- export type UserPermissions = {
75
- id: number;
76
- user_id: string;
77
- group_id: number;
78
- permission_id: number;
79
- created_at: Date;
80
- updated_at: Date;
81
- created_by: string;
82
- updated_by: string;
83
- };
84
42
  /**
85
43
  * Model Providers
86
44
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/types",
3
3
  "description": "A nomalism package with all necessary types and validations for developing APIs",
4
- "version": "0.45.65",
4
+ "version": "0.45.68",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",