@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types 0.0.34 → 0.0.36

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.
Files changed (3) hide show
  1. package/enum.ts +2 -0
  2. package/package.json +1 -1
  3. package/types.d.ts +2 -0
package/enum.ts CHANGED
@@ -14,6 +14,8 @@ export enum EOrderStatus {
14
14
  export enum EProductType {
15
15
  TIMBER = "TIMBER",
16
16
  PLYWOOD = "PLYWOOD",
17
+ CEILING_BEADING_LAYOUT = 'CEILING BEADING LAYOUT',
18
+
17
19
  }
18
20
 
19
21
  export enum EProductUnitOfMeasurement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.d.ts CHANGED
@@ -11,6 +11,7 @@ import {
11
11
  export type TJwtTokenObject = {
12
12
  id: string;
13
13
  username: string;
14
+ tenantCode: string;
14
15
  };
15
16
 
16
17
  export type TJwtToken = {
@@ -58,6 +59,7 @@ export type TPostRemarkCreateResponse = {
58
59
 
59
60
  export type TAdmin = {
60
61
  _id: string;
62
+ tenantCode: string;
61
63
  username: string;
62
64
  password: string;
63
65
  isDeleted: boolean;