@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types 0.0.21 → 0.0.23
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/package.json +1 -1
- package/types.d.ts +3 -3
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -181,7 +181,6 @@ export type TOrder = {
|
|
|
181
181
|
customerId: string;
|
|
182
182
|
adminId: string;
|
|
183
183
|
products: TProduct[];
|
|
184
|
-
addOn: string | null;
|
|
185
184
|
isOwnCollect: boolean;
|
|
186
185
|
isUrgent: boolean;
|
|
187
186
|
deliveryAddress: string | null;
|
|
@@ -224,7 +223,6 @@ export type TPostOrderCreateBody = {
|
|
|
224
223
|
customerId: string | null;
|
|
225
224
|
purchaseOrderNo: string;
|
|
226
225
|
purchaseOrderAt: Date | null;
|
|
227
|
-
addOn: string;
|
|
228
226
|
isOwnCollect: boolean;
|
|
229
227
|
isUrgent: boolean;
|
|
230
228
|
deliveryAddress: string;
|
|
@@ -241,7 +239,6 @@ export type TPostOrderUpdateBody = {
|
|
|
241
239
|
customerId: string | null;
|
|
242
240
|
purchaseOrderNo: string;
|
|
243
241
|
purchaseOrderAt: Date | null;
|
|
244
|
-
addOn: string;
|
|
245
242
|
isOwnCollect: boolean;
|
|
246
243
|
isUrgent: boolean;
|
|
247
244
|
deliveryAddress: string;
|
|
@@ -256,6 +253,9 @@ export type PartialTOrder = Partial<TOrder>;
|
|
|
256
253
|
|
|
257
254
|
export type TDashboardProduct = {
|
|
258
255
|
status: EOrderStatus;
|
|
256
|
+
TON: number;
|
|
257
|
+
BUNDLE: number;
|
|
258
|
+
PIECES: number;
|
|
259
259
|
products: {
|
|
260
260
|
width: number;
|
|
261
261
|
height: number;
|