@beyondplusmm/doehpos-sdk 0.1.0 → 0.1.1
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/README.md +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,22 @@ validated [golden client](../../README.md#provenance) — the SDK exists so the
|
|
|
5
5
|
public integration surface can never drift from the contract that was proven
|
|
6
6
|
live (14/14) against the sandbox.
|
|
7
7
|
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @beyondplusmm/doehpos-sdk
|
|
12
|
+
# or
|
|
13
|
+
pnpm add @beyondplusmm/doehpos-sdk
|
|
14
|
+
# or
|
|
15
|
+
yarn add @beyondplusmm/doehpos-sdk
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
- **npm:** https://www.npmjs.com/package/@beyondplusmm/doehpos-sdk
|
|
19
|
+
- **GitHub:** https://github.com/beyondplusmyanmar-lab/doeh-sdk
|
|
20
|
+
- Download the raw tarball: `npm pack @beyondplusmm/doehpos-sdk`
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
8
24
|
```ts
|
|
9
25
|
import { DoehClient } from "@beyondplusmm/doehpos-sdk";
|
|
10
26
|
|
package/package.json
CHANGED