@adbjs/sdk 2.0.2 → 2.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 +7 -5
- package/dist/index.cjs +315 -763
- package/dist/index.d.cts +1266 -1275
- package/dist/index.d.ts +1266 -1275
- package/dist/index.js +318 -748
- package/package.json +10 -8
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ Modern TypeScript SDK for the AllDebrid API v4.1.
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install @adbjs/sdk
|
|
20
20
|
# or
|
|
21
|
+
bun add @adbjs/sdk
|
|
22
|
+
# or
|
|
21
23
|
pnpm add @adbjs/sdk
|
|
22
24
|
# or
|
|
23
25
|
yarn add @adbjs/sdk
|
|
@@ -298,19 +300,19 @@ import type { GetLinkUnlockResponse, GetMagnetStatusResponse, GetUserResponse }
|
|
|
298
300
|
|
|
299
301
|
```bash
|
|
300
302
|
# Install dependencies
|
|
301
|
-
|
|
303
|
+
bun install
|
|
302
304
|
|
|
303
305
|
# Generate types from OpenAPI spec
|
|
304
|
-
|
|
306
|
+
bun run generate
|
|
305
307
|
|
|
306
308
|
# Build
|
|
307
|
-
|
|
309
|
+
bun run build
|
|
308
310
|
|
|
309
311
|
# Run tests
|
|
310
|
-
|
|
312
|
+
bun test
|
|
311
313
|
|
|
312
314
|
# Type check
|
|
313
|
-
|
|
315
|
+
bun run typecheck
|
|
314
316
|
```
|
|
315
317
|
|
|
316
318
|
## 📝 License
|