@flexbe/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 +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -5,13 +5,13 @@ A TypeScript SDK for interacting with the Flexbe API. Works in both Node.js and
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @flexbe/sdk
|
|
8
|
+
npm install @flexbe/sdk
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { FlexbeClient } from '@flexbe/sdk
|
|
14
|
+
import { FlexbeClient } from '@flexbe/sdk';
|
|
15
15
|
|
|
16
16
|
// Initialize the client
|
|
17
17
|
const client = new FlexbeClient({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flexbe/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript SDK for Flexbe API",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
24
24
|
"prepare": "npm run build",
|
|
25
25
|
"prepublishOnly": "npm test && npm run lint",
|
|
26
|
+
"version": "npm version",
|
|
26
27
|
"publish": "npm publish --access public"
|
|
27
28
|
},
|
|
28
29
|
"keywords": [
|
|
@@ -64,4 +65,4 @@
|
|
|
64
65
|
"publishConfig": {
|
|
65
66
|
"access": "public"
|
|
66
67
|
}
|
|
67
|
-
}
|
|
68
|
+
}
|