@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types 0.0.12 → 0.0.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.
Files changed (3) hide show
  1. package/enum.ts +1 -1
  2. package/package.json +1 -1
  3. package/types.d.ts +13 -2
package/enum.ts CHANGED
@@ -11,7 +11,7 @@ export enum EOrderStatus {
11
11
  }
12
12
 
13
13
  export enum EProductType {
14
- LUMBER = "LUMBER",
14
+ TIMBER = "TIMBER",
15
15
  PLYWOOD = "PLYWOOD",
16
16
  }
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.d.ts CHANGED
@@ -41,6 +41,17 @@ export type TGetRemarkResponse = {
41
41
  };
42
42
  };
43
43
 
44
+ export type TPostRemarkCreateBody = {
45
+ referenceType: ERemarkReferenceType;
46
+ referenceId: string;
47
+ description: string;
48
+ images: string[];
49
+ };
50
+
51
+ export type TPostRemarkCreateResponse = {
52
+ id: string;
53
+ };
54
+
44
55
  export type TAdmin = {
45
56
  _id: string;
46
57
  username: string;
@@ -153,11 +164,11 @@ export type TPostCustomerUpdateResponse = {
153
164
 
154
165
  export type TProduct = {
155
166
  productType: EProductType;
167
+ productName: string;
156
168
  width: number;
157
169
  height: number;
158
170
  feet: number;
159
171
  isFeetUp: boolean;
160
- thickness: number;
161
172
  unitOfMeasurement: EProductUnitOfMeasurement;
162
173
  quantity: number;
163
174
  };
@@ -242,7 +253,7 @@ export type TLength = {
242
253
  quantity: number;
243
254
  };
244
255
 
245
- export type TLumber = {
256
+ export type TTimber = {
246
257
  _id: string;
247
258
  no: string;
248
259
  status: EProductStatus;