@bloque/sdk 0.0.8 → 0.0.11

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.
Files changed (2) hide show
  1. package/README.md +26 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  The official TypeScript/JavaScript SDK for integrating [Bloque](https://www.bloque.app) into your applications.
4
4
 
5
+ > **⚠️ Development Notice**
6
+ >
7
+ > This SDK is currently under active development. Breaking changes may occur between versions.
8
+ > We strongly recommend pinning to a specific version in your `package.json` to avoid unexpected issues.
9
+ >
10
+ > ```json
11
+ > {
12
+ > "dependencies": {
13
+ > "@bloque/sdk": "x.x.x"
14
+ > }
15
+ > }
16
+ > ```
17
+ >
18
+ > Replace `x.x.x` with the latest version from [npm](https://www.npmjs.com/package/@bloque/sdk).
19
+
20
+ ## Platform Support
21
+
22
+ This SDK is compatible with multiple JavaScript runtimes:
23
+
24
+ - **Node.js** 22.x or higher
25
+ - **Bun** 1.x or higher
26
+ - **Deno** Latest version
27
+ - **Web/Browsers** Modern browsers with ES2020+ support
28
+
5
29
  ## Features
6
30
 
7
31
  - **TypeScript First**: Built with TypeScript for complete type safety
@@ -773,8 +797,8 @@ bun run check
773
797
 
774
798
  ## Requirements
775
799
 
776
- - Node.js 22.x or higher / Bun 1.x or higher
777
- - TypeScript 5.x or higher (for TypeScript projects)
800
+ - One of the supported runtimes: Node.js 22.x+, Bun 1.x+, Deno, or modern browsers
801
+ - TypeScript 5.x or higher (for TypeScript projects, optional)
778
802
 
779
803
  ## Links
780
804
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloque/sdk",
3
- "version": "0.0.8",
3
+ "version": "0.0.11",
4
4
  "description": "Official Bloque SDK",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -69,11 +69,11 @@
69
69
  "typecheck": "tsgo --noEmit"
70
70
  },
71
71
  "dependencies": {
72
- "@bloque/sdk-accounts": "0.0.2",
73
- "@bloque/sdk-compliance": "0.0.2",
74
- "@bloque/sdk-core": "0.0.2",
75
- "@bloque/sdk-identity": "0.0.2",
76
- "@bloque/sdk-orgs": "0.0.2"
72
+ "@bloque/sdk-accounts": "0.0.11",
73
+ "@bloque/sdk-compliance": "0.0.11",
74
+ "@bloque/sdk-core": "0.0.11",
75
+ "@bloque/sdk-identity": "0.0.11",
76
+ "@bloque/sdk-orgs": "0.0.11"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@rslib/core": "^0.18.4",