@nomalism-com/types 0.37.13 → 0.37.14

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.
@@ -10,7 +10,7 @@ export declare const IProjectInfoTypeEnum: {
10
10
  };
11
11
  export type IProjectInfoType = (typeof IProjectInfoTypeEnum)[keyof typeof IProjectInfoTypeEnum];
12
12
  export declare const projectInfoTypes: string[];
13
- export type ISendEmail = Omit<Entity, 'created_at' | 'updated_at' | 'document_header_id' | 'id'>;
13
+ export type ISendEmail = Omit<Entity, 'created_at' | 'updated_at' | 'document_header_id' | 'id' | 'email_log'>;
14
14
  export interface IController {
15
15
  sendEmail(data: ISendEmail): Promise<void>;
16
16
  }
@@ -60,7 +60,8 @@ export type ProjectInfo = {
60
60
  email: string;
61
61
  telephone: string;
62
62
  description: string;
63
- document_header_id: string | null;
63
+ document_header_id: string;
64
+ email_log: string;
64
65
  created_at: Date;
65
66
  updated_at: Date;
66
67
  };
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.37.13",
4
+ "version": "0.37.14",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",