@ar.io/sdk 3.22.0-alpha.6 → 3.22.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
@@ -120,8 +120,8 @@ const gateways = await ario.getGateways();
120
120
 
121
121
  ```html
122
122
  <script type="module">
123
- // replace <@version> with a pinned version (e.g. @3.8.4) or @latest, if you're risky :)
124
- import { ARIO } from 'https://unpkg.com/@ar.io/sdk<@version>';
123
+ // replace <version> with a release version (e.g. 3.8.4)
124
+ import { ARIO } from 'https://github.com/ar-io/ar-io-sdk/releases/download/v<version>/web.bundle.min.js';
125
125
 
126
126
  // set up client
127
127
  const ario = ARIO.mainnet();
@@ -17,4 +17,4 @@
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.version = void 0;
19
19
  // AUTOMATICALLY GENERATED FILE - DO NOT TOUCH
20
- exports.version = '3.22.0-alpha.6';
20
+ exports.version = '3.22.0';
@@ -14,4 +14,4 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  // AUTOMATICALLY GENERATED FILE - DO NOT TOUCH
17
- export const version = '3.22.0-alpha.6';
17
+ export const version = '3.22.0';
@@ -13,4 +13,4 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- export declare const version = "3.22.0-alpha.5";
16
+ export declare const version = "3.22.0-alpha.7";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ar.io/sdk",
3
- "version": "3.22.0-alpha.6",
3
+ "version": "3.22.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/ar-io/ar-io-sdk.git"
@@ -8,7 +8,6 @@
8
8
  "main": "./lib/cjs/node/index.js",
9
9
  "module": "./lib/esm/node/index.js",
10
10
  "types": "./lib/types/node/index.d.ts",
11
- "browser": "./bundles/web.bundle.min.js",
12
11
  "type": "module",
13
12
  "engines": {
14
13
  "node": ">=18"
@@ -16,7 +15,6 @@
16
15
  "license": "Apache-2.0",
17
16
  "files": [
18
17
  "lib",
19
- "bundles",
20
18
  "LICENSE",
21
19
  "README.md",
22
20
  "package.json"
@@ -39,7 +37,6 @@
39
37
  "exports": {
40
38
  ".": {
41
39
  "types": "./lib/types/node/index.d.ts",
42
- "browser": "./bundles/web.bundle.min.js",
43
40
  "import": "./lib/esm/node/index.js",
44
41
  "require": "./lib/cjs/node/index.js"
45
42
  },
@@ -50,7 +47,6 @@
50
47
  },
51
48
  "./web": {
52
49
  "types": "./lib/types/web/index.d.ts",
53
- "browser": "./bundles/web.bundle.min.js",
54
50
  "import": "./lib/esm/web/index.js",
55
51
  "require": "./lib/cjs/web/index.js"
56
52
  }