@yaotoshi/ginee-sdk
v0.2.3
Published
implementation SDK of https://doc.ginee.com/index.html
Downloads
23
Readme
ginee-sdk
implementation SDK of https://doc.ginee.com/index.html
INSTALL
npm install @yaotoshi/ginee-sdkHOW TO USE
(async () => {
const { GineeClient } = await import("@yaotoshi/ginee-sdk");
const client = new GineeClient({ accessKey: "YOUR_ACCESS_KEY", secretKey: "YOUR_SECRET_KEY" });
const res = await client.orders.listAllByDateWIB("2025-10-01");
console.log("TOTAL:", res.length);
})();HOW TO RUN EXAMPLES
npx tsx ./examples/order.ts 