@adbjs/sdk 2.0.1 → 2.1.0

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 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,27 +300,27 @@ import type { GetLinkUnlockResponse, GetMagnetStatusResponse, GetUserResponse }
298
300
 
299
301
  ```bash
300
302
  # Install dependencies
301
- pnpm install
303
+ bun install
302
304
 
303
305
  # Generate types from OpenAPI spec
304
- pnpm generate
306
+ bun run generate
305
307
 
306
308
  # Build
307
- pnpm build
309
+ bun run build
308
310
 
309
311
  # Run tests
310
- pnpm test
312
+ bun test
311
313
 
312
314
  # Type check
313
- pnpm typecheck
315
+ bun run typecheck
314
316
  ```
315
317
 
316
318
  ## 📝 License
317
319
 
318
320
  MIT
319
321
 
320
- ## 🔗 Links
322
+ ## 🔗 Related
321
323
 
324
+ - [@adbjs/cli](https://www.npmjs.com/package/@adbjs/cli) - Command-line interface for AllDebrid
322
325
  - [AllDebrid API Documentation](https://docs.alldebrid.com/)
323
326
  - [GitHub Repository](https://github.com/Trisard/alldebrid-ts)
324
- - [NPM Package](https://www.npmjs.com/package/@adbjs/sdk)