@nomalism-com/types 0.36.28 → 0.36.29

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/index.cjs CHANGED
@@ -5804,7 +5804,8 @@ var updateKeys2 = {
5804
5804
  mt_order_date: joi110.date().optional().allow(null),
5805
5805
  mt_execution_by: joi110.string().uuid().optional().allow(null),
5806
5806
  mt_execution_date: joi110.date().optional().allow(null),
5807
- mt_execution_when: joi110.date().optional().allow(null)
5807
+ mt_execution_when: joi110.date().optional().allow(null),
5808
+ mt_order_with_notification: joi110.boolean().optional().default(false)
5808
5809
  };
5809
5810
  var updateBody60 = joi110.object().keys(updateKeys2).messages(messages);
5810
5811
 
package/dist/index.js CHANGED
@@ -5804,7 +5804,8 @@ var updateKeys2 = {
5804
5804
  mt_order_date: joi110.date().optional().allow(null),
5805
5805
  mt_execution_by: joi110.string().uuid().optional().allow(null),
5806
5806
  mt_execution_date: joi110.date().optional().allow(null),
5807
- mt_execution_when: joi110.date().optional().allow(null)
5807
+ mt_execution_when: joi110.date().optional().allow(null),
5808
+ mt_order_with_notification: joi110.boolean().optional().default(false)
5808
5809
  };
5809
5810
  var updateBody60 = joi110.object().keys(updateKeys2).messages(messages);
5810
5811
 
@@ -11,6 +11,7 @@ export interface IUpdateRequest {
11
11
  mt_execution_by?: string | null;
12
12
  mt_execution_date?: Date | null;
13
13
  mt_execution_when?: Date | null;
14
+ mt_order_with_notification?: boolean;
14
15
  }
15
16
  export interface IRepository {
16
17
  update(data: IUpdateRequest): Promise<void>;
@@ -1213,6 +1213,7 @@ export type DocumentLineMT = {
1213
1213
  mt_execution_by: string | null;
1214
1214
  mt_execution_date: Date | null;
1215
1215
  mt_execution_when: Date | null;
1216
+ mt_order_with_notification: boolean;
1216
1217
  created_by: string;
1217
1218
  updated_by: string;
1218
1219
  created_at: Date;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript",
10
10
  "helper"
11
11
  ],
12
- "version": "0.36.28",
12
+ "version": "0.36.29",
13
13
  "type": "module",
14
14
  "module": "./dist/index.js",
15
15
  "main": "./dist/index.cjs",
@@ -14,6 +14,8 @@ export interface IUpdateRequest {
14
14
  mt_execution_by?: string | null;
15
15
  mt_execution_date?: Date | null;
16
16
  mt_execution_when?: Date | null;
17
+
18
+ mt_order_with_notification?: boolean;
17
19
  }
18
20
 
19
21
  export interface IRepository {
@@ -11,6 +11,8 @@ const updateKeys: IShared.IRouteRequest<IUpdateRequest> = {
11
11
  mt_execution_by: joi.string().uuid().optional().allow(null),
12
12
  mt_execution_date: joi.date().optional().allow(null),
13
13
  mt_execution_when: joi.date().optional().allow(null),
14
+
15
+ mt_order_with_notification: joi.boolean().optional().default(false),
14
16
  };
15
17
 
16
18
  export const updateBody = joi.object().keys(updateKeys).messages(messages);
@@ -1311,6 +1311,7 @@ export type DocumentLineMT = {
1311
1311
  mt_execution_by: string | null;
1312
1312
  mt_execution_date: Date | null;
1313
1313
  mt_execution_when: Date | null;
1314
+ mt_order_with_notification: boolean;
1314
1315
 
1315
1316
  created_by: string;
1316
1317
  updated_by: string;