@axionquant/sdk 1.0.2 → 1.0.3
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/package.json +1 -1
- package/readme.md +2 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -11,7 +11,7 @@ npm install @axionquant/sdk
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { Axion } from '
|
|
14
|
+
import { Axion } from '@axionquant/sdk';
|
|
15
15
|
|
|
16
16
|
// Initialize with API key
|
|
17
17
|
const client = new Axion('your-api-key');
|
|
@@ -276,7 +276,7 @@ try {
|
|
|
276
276
|
This SDK is written in TypeScript and includes type definitions. Import types as needed:
|
|
277
277
|
|
|
278
278
|
```typescript
|
|
279
|
-
import { Axion, ApiResponse } from '
|
|
279
|
+
import { Axion, ApiResponse } from '@axionquant/sdk';
|
|
280
280
|
```
|
|
281
281
|
|
|
282
282
|
## Base URL
|