@kiminix/tp-client 2.8.3 → 2.8.4
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/enum.d.ts +6 -0
- package/dist/enum.js +7 -0
- package/dist/menus/index.d.ts +1 -0
- package/dist/menus/index.js +1 -0
- package/dist/menus/user/guest-apis.d.ts +2 -0
- package/dist/menus/user/guest-apis.js +23 -0
- package/dist/menus/user/types/get-orders.d.ts +17 -0
- package/dist/menus/user/types/get-orders.js +1 -0
- package/package.json +1 -1
package/dist/enum.d.ts
CHANGED
package/dist/enum.js
CHANGED
|
@@ -52,3 +52,10 @@ export var VoucherStatus;
|
|
|
52
52
|
VoucherStatus["Succeeded"] = "succeeded";
|
|
53
53
|
VoucherStatus["Failed"] = "failed";
|
|
54
54
|
})(VoucherStatus || (VoucherStatus = {}));
|
|
55
|
+
export var OrderStatus;
|
|
56
|
+
(function (OrderStatus) {
|
|
57
|
+
OrderStatus["Pending"] = "pending";
|
|
58
|
+
OrderStatus["InProgress"] = "in_progress";
|
|
59
|
+
OrderStatus["Completed"] = "completed";
|
|
60
|
+
OrderStatus["Canceled"] = "canceled";
|
|
61
|
+
})(OrderStatus || (OrderStatus = {}));
|
package/dist/menus/index.d.ts
CHANGED
package/dist/menus/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
export * from "./user/types/get-menu-response";
|
|
3
3
|
export * from './user/types/get-qrcode-response';
|
|
4
4
|
export * from "./user/types/post-order";
|
|
5
|
+
export * from "./user/types/get-orders";
|
|
5
6
|
export { MenuGuestAPIs } from './user/guest-apis';
|
|
6
7
|
// admin module
|
|
7
8
|
// shared module
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { OrderRequest, OrderResponse } from "./types/post-order";
|
|
2
2
|
import { QrCode } from "./types/get-qrcode-response";
|
|
3
3
|
import { Menu } from "./types/get-menu-response";
|
|
4
|
+
import { Order } from "./types/get-orders";
|
|
4
5
|
export declare class MenuGuestAPIs {
|
|
6
|
+
static getOrders(businessId: string, deviceId: string, timestamp: number, page?: number, size?: number): Promise<Order[]>;
|
|
5
7
|
/**
|
|
6
8
|
*
|
|
7
9
|
* @param props
|
|
@@ -41,6 +41,29 @@ import { RequestUtils } from "../../utils/request-utils";
|
|
|
41
41
|
var MenuGuestAPIs = /** @class */ (function () {
|
|
42
42
|
function MenuGuestAPIs() {
|
|
43
43
|
}
|
|
44
|
+
MenuGuestAPIs.getOrders = function (businessId, deviceId, timestamp, page, size) {
|
|
45
|
+
if (page === void 0) { page = 1; }
|
|
46
|
+
if (size === void 0) { size = 12; }
|
|
47
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
48
|
+
return __generator(this, function (_a) {
|
|
49
|
+
return [2 /*return*/, RequestUtils.send(function () {
|
|
50
|
+
var queryParams = [
|
|
51
|
+
"timestamp=".concat(timestamp),
|
|
52
|
+
"page=".concat(page),
|
|
53
|
+
"size=".concat(size),
|
|
54
|
+
"business_id=".concat(businessId),
|
|
55
|
+
"device_id=".concat(deviceId),
|
|
56
|
+
]
|
|
57
|
+
.filter(function (value) { return value; })
|
|
58
|
+
.join("&");
|
|
59
|
+
return axios.get(base + "/menus/guest/orders?".concat(queryParams), {
|
|
60
|
+
headers: {}
|
|
61
|
+
})
|
|
62
|
+
.then(function (response) { return response.data; });
|
|
63
|
+
})];
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
};
|
|
44
67
|
/**
|
|
45
68
|
*
|
|
46
69
|
* @param props
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OrderStatus } from "../../../enum";
|
|
2
|
+
export interface Order {
|
|
3
|
+
qrCodeLabel: string;
|
|
4
|
+
deviceId: string;
|
|
5
|
+
status: OrderStatus;
|
|
6
|
+
price: number;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
items: {
|
|
9
|
+
productId: string;
|
|
10
|
+
productLabel: string;
|
|
11
|
+
variantId: string;
|
|
12
|
+
variantLabel?: string;
|
|
13
|
+
quantity: number;
|
|
14
|
+
price: number;
|
|
15
|
+
discount?: number;
|
|
16
|
+
}[];
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|