@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.
- package/enum.ts +1 -1
- package/package.json +1 -1
- package/types.d.ts +13 -2
package/enum.ts
CHANGED
package/package.json
CHANGED
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
|
|
256
|
+
export type TTimber = {
|
|
246
257
|
_id: string;
|
|
247
258
|
no: string;
|
|
248
259
|
status: EProductStatus;
|