@scalekit-sdk/node 1.0.1 → 1.0.2
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 +3 -3
- package/package.json +1 -1
- package/src/core.ts +1 -1
package/README.md
CHANGED
|
@@ -22,11 +22,11 @@ This Node SDK is a wrapper around Scalekit's REST API to help you integrate Scal
|
|
|
22
22
|
## Installation
|
|
23
23
|
|
|
24
24
|
```sh
|
|
25
|
-
npm install @scalekit-sdk/node
|
|
25
|
+
npm install @scalekit-sdk/node
|
|
26
26
|
#or
|
|
27
|
-
yarn add @scalekit-sdk/node
|
|
27
|
+
yarn add @scalekit-sdk/node
|
|
28
28
|
#or
|
|
29
|
-
pnpm add @scalekit-sdk/node
|
|
29
|
+
pnpm add @scalekit-sdk/node
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Usage
|
package/package.json
CHANGED
package/src/core.ts
CHANGED
|
@@ -12,7 +12,7 @@ export default class CoreClient {
|
|
|
12
12
|
public keys: JWK[] = [];
|
|
13
13
|
public accessToken: string | null = null;
|
|
14
14
|
public axios: Axios;
|
|
15
|
-
public sdkVersion = `Scalekit-Node/1.0.
|
|
15
|
+
public sdkVersion = `Scalekit-Node/1.0.2`;
|
|
16
16
|
public apiVersion = "20240430";
|
|
17
17
|
public userAgent = `${this.sdkVersion} Node/${process.version} (${process.platform}; ${os.arch()})`;
|
|
18
18
|
constructor(
|