@imtbl/sdk 2.23.0 → 2.24.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/dist/index.cjs CHANGED
@@ -1,99 +1,64 @@
1
- 'use strict';
2
-
3
- var config_star = require('@imtbl/config');
4
- var blockchain_data_star = require('@imtbl/blockchain-data');
5
- var passport_star = require('@imtbl/passport');
6
- var orderbook_star = require('@imtbl/orderbook');
7
- var checkout_sdk_star = require('@imtbl/checkout-sdk');
8
- var webhook_star = require('@imtbl/webhook');
9
- var minting_backend_star = require('@imtbl/minting-backend');
10
- var auth_star = require('@imtbl/auth');
11
- var wallet_star = require('@imtbl/wallet');
12
-
13
- function _interopNamespace(e) {
14
- if (e && e.__esModule) return e;
15
- var n = Object.create(null);
16
- if (e) {
17
- Object.keys(e).forEach(function (k) {
18
- if (k !== 'default') {
19
- var d = Object.getOwnPropertyDescriptor(e, k);
20
- Object.defineProperty(n, k, d.get ? d : {
21
- enumerable: true,
22
- get: function () { return e[k]; }
23
- });
24
- }
25
- });
26
- }
27
- n.default = e;
28
- return Object.freeze(n);
29
- }
30
-
31
- var config_star__namespace = /*#__PURE__*/_interopNamespace(config_star);
32
- var blockchain_data_star__namespace = /*#__PURE__*/_interopNamespace(blockchain_data_star);
33
- var passport_star__namespace = /*#__PURE__*/_interopNamespace(passport_star);
34
- var orderbook_star__namespace = /*#__PURE__*/_interopNamespace(orderbook_star);
35
- var checkout_sdk_star__namespace = /*#__PURE__*/_interopNamespace(checkout_sdk_star);
36
- var webhook_star__namespace = /*#__PURE__*/_interopNamespace(webhook_star);
37
- var minting_backend_star__namespace = /*#__PURE__*/_interopNamespace(minting_backend_star);
38
- var auth_star__namespace = /*#__PURE__*/_interopNamespace(auth_star);
39
- var wallet_star__namespace = /*#__PURE__*/_interopNamespace(wallet_star);
40
-
41
- var __defProp = Object.defineProperty;
42
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
43
- var __getOwnPropNames = Object.getOwnPropertyNames;
44
- var __hasOwnProp = Object.prototype.hasOwnProperty;
45
- var __copyProps = (to, from, except, desc) => {
46
- if (from && typeof from === "object" || typeof from === "function") {
47
- for (let key of __getOwnPropNames(from))
48
- if (!__hasOwnProp.call(to, key) && key !== except)
49
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
50
- }
51
- return to;
52
- };
53
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget);
54
-
55
- // src/config.ts
56
- var config_exports = {};
57
- __reExport(config_exports, config_star__namespace);
58
-
59
- // src/blockchain_data.ts
60
- var blockchain_data_exports = {};
61
- __reExport(blockchain_data_exports, blockchain_data_star__namespace);
62
-
63
- // src/passport.ts
64
- var passport_exports = {};
65
- __reExport(passport_exports, passport_star__namespace);
66
-
67
- // src/orderbook.ts
68
- var orderbook_exports = {};
69
- __reExport(orderbook_exports, orderbook_star__namespace);
70
-
71
- // src/checkout.ts
72
- var checkout_exports = {};
73
- __reExport(checkout_exports, checkout_sdk_star__namespace);
74
-
75
- // src/webhook.ts
76
- var webhook_exports = {};
77
- __reExport(webhook_exports, webhook_star__namespace);
78
-
79
- // src/minting_backend.ts
80
- var minting_backend_exports = {};
81
- __reExport(minting_backend_exports, minting_backend_star__namespace);
82
-
83
- // src/auth.ts
84
- var auth_exports = {};
85
- __reExport(auth_exports, auth_star__namespace);
86
-
87
- // src/wallet.ts
88
- var wallet_exports = {};
89
- __reExport(wallet_exports, wallet_star__namespace);
90
-
91
- exports.auth = auth_exports;
92
- exports.blockchainData = blockchain_data_exports;
93
- exports.checkout = checkout_exports;
94
- exports.config = config_exports;
95
- exports.mintingBackend = minting_backend_exports;
96
- exports.orderbook = orderbook_exports;
97
- exports.passport = passport_exports;
98
- exports.wallet = wallet_exports;
99
- exports.webhook = webhook_exports;
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_auth = require("./auth.cjs");
3
+ const require_blockchain_data = require("./blockchain_data.cjs");
4
+ const require_checkout = require("./checkout.cjs");
5
+ const require_config = require("./config.cjs");
6
+ const require_passport = require("./passport.cjs");
7
+ const require_orderbook = require("./orderbook.cjs");
8
+ const require_webhook = require("./webhook.cjs");
9
+ const require_minting_backend = require("./minting_backend.cjs");
10
+ const require_wallet = require("./wallet.cjs");
11
+ Object.defineProperty(exports, "auth", {
12
+ enumerable: true,
13
+ get: function() {
14
+ return require_auth.auth_exports;
15
+ }
16
+ });
17
+ Object.defineProperty(exports, "blockchainData", {
18
+ enumerable: true,
19
+ get: function() {
20
+ return require_blockchain_data.blockchain_data_exports;
21
+ }
22
+ });
23
+ Object.defineProperty(exports, "checkout", {
24
+ enumerable: true,
25
+ get: function() {
26
+ return require_checkout.checkout_exports;
27
+ }
28
+ });
29
+ Object.defineProperty(exports, "config", {
30
+ enumerable: true,
31
+ get: function() {
32
+ return require_config.config_exports;
33
+ }
34
+ });
35
+ Object.defineProperty(exports, "mintingBackend", {
36
+ enumerable: true,
37
+ get: function() {
38
+ return require_minting_backend.minting_backend_exports;
39
+ }
40
+ });
41
+ Object.defineProperty(exports, "orderbook", {
42
+ enumerable: true,
43
+ get: function() {
44
+ return require_orderbook.orderbook_exports;
45
+ }
46
+ });
47
+ Object.defineProperty(exports, "passport", {
48
+ enumerable: true,
49
+ get: function() {
50
+ return require_passport.passport_exports;
51
+ }
52
+ });
53
+ Object.defineProperty(exports, "wallet", {
54
+ enumerable: true,
55
+ get: function() {
56
+ return require_wallet.wallet_exports;
57
+ }
58
+ });
59
+ Object.defineProperty(exports, "webhook", {
60
+ enumerable: true,
61
+ get: function() {
62
+ return require_webhook.webhook_exports;
63
+ }
64
+ });
package/dist/index.js CHANGED
@@ -1,61 +1,10 @@
1
- import * as config_star from '@imtbl/config';
2
- import * as blockchain_data_star from '@imtbl/blockchain-data';
3
- import * as passport_star from '@imtbl/passport';
4
- import * as orderbook_star from '@imtbl/orderbook';
5
- import * as checkout_sdk_star from '@imtbl/checkout-sdk';
6
- import * as webhook_star from '@imtbl/webhook';
7
- import * as minting_backend_star from '@imtbl/minting-backend';
8
- import * as auth_star from '@imtbl/auth';
9
- import * as wallet_star from '@imtbl/wallet';
10
-
11
- var __defProp = Object.defineProperty;
12
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13
- var __getOwnPropNames = Object.getOwnPropertyNames;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __copyProps = (to, from, except, desc) => {
16
- if (from && typeof from === "object" || typeof from === "function") {
17
- for (let key of __getOwnPropNames(from))
18
- if (!__hasOwnProp.call(to, key) && key !== except)
19
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
20
- }
21
- return to;
22
- };
23
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget);
24
-
25
- // src/config.ts
26
- var config_exports = {};
27
- __reExport(config_exports, config_star);
28
-
29
- // src/blockchain_data.ts
30
- var blockchain_data_exports = {};
31
- __reExport(blockchain_data_exports, blockchain_data_star);
32
-
33
- // src/passport.ts
34
- var passport_exports = {};
35
- __reExport(passport_exports, passport_star);
36
-
37
- // src/orderbook.ts
38
- var orderbook_exports = {};
39
- __reExport(orderbook_exports, orderbook_star);
40
-
41
- // src/checkout.ts
42
- var checkout_exports = {};
43
- __reExport(checkout_exports, checkout_sdk_star);
44
-
45
- // src/webhook.ts
46
- var webhook_exports = {};
47
- __reExport(webhook_exports, webhook_star);
48
-
49
- // src/minting_backend.ts
50
- var minting_backend_exports = {};
51
- __reExport(minting_backend_exports, minting_backend_star);
52
-
53
- // src/auth.ts
54
- var auth_exports = {};
55
- __reExport(auth_exports, auth_star);
56
-
57
- // src/wallet.ts
58
- var wallet_exports = {};
59
- __reExport(wallet_exports, wallet_star);
60
-
1
+ import { t as auth_exports } from "./auth.js";
2
+ import { t as blockchain_data_exports } from "./blockchain_data.js";
3
+ import { t as checkout_exports } from "./checkout.js";
4
+ import { t as config_exports } from "./config.js";
5
+ import { t as passport_exports } from "./passport.js";
6
+ import { t as orderbook_exports } from "./orderbook.js";
7
+ import { t as webhook_exports } from "./webhook.js";
8
+ import { t as minting_backend_exports } from "./minting_backend.js";
9
+ import { t as wallet_exports } from "./wallet.js";
61
10
  export { auth_exports as auth, blockchain_data_exports as blockchainData, checkout_exports as checkout, config_exports as config, minting_backend_exports as mintingBackend, orderbook_exports as orderbook, passport_exports as passport, wallet_exports as wallet, webhook_exports as webhook };
@@ -1,12 +1,21 @@
1
- 'use strict';
2
-
3
- var mintingBackend = require('@imtbl/minting-backend');
4
-
5
-
6
-
7
- Object.keys(mintingBackend).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_rolldown_runtime = require("./rolldown-runtime.cjs");
3
+ //#region src/minting_backend.ts
4
+ var minting_backend_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({});
5
+ require_rolldown_runtime.__reExport(minting_backend_exports, require("@imtbl/minting-backend"));
6
+ //#endregion
7
+ Object.defineProperty(exports, "minting_backend_exports", {
8
+ enumerable: true,
9
+ get: function() {
10
+ return minting_backend_exports;
11
+ }
12
+ });
13
+ var _imtbl_minting_backend = require("@imtbl/minting-backend");
14
+ Object.keys(_imtbl_minting_backend).forEach(function(k) {
15
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
16
  enumerable: true,
10
- get: function () { return mintingBackend[k]; }
17
+ get: function() {
18
+ return _imtbl_minting_backend[k];
19
+ }
11
20
  });
12
21
  });
@@ -1 +1,8 @@
1
- export * from '@imtbl/minting-backend';
1
+ import { n as __reExport, t as __exportAll } from "./rolldown-runtime.js";
2
+ export * from "@imtbl/minting-backend";
3
+ //#region src/minting_backend.ts
4
+ var minting_backend_exports = /* @__PURE__ */ __exportAll({});
5
+ import * as import__imtbl_minting_backend from "@imtbl/minting-backend";
6
+ __reExport(minting_backend_exports, import__imtbl_minting_backend);
7
+ //#endregion
8
+ export { minting_backend_exports as t };
@@ -1,12 +1,21 @@
1
- 'use strict';
2
-
3
- var orderbook = require('@imtbl/orderbook');
4
-
5
-
6
-
7
- Object.keys(orderbook).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_rolldown_runtime = require("./rolldown-runtime.cjs");
3
+ //#region src/orderbook.ts
4
+ var orderbook_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({});
5
+ require_rolldown_runtime.__reExport(orderbook_exports, require("@imtbl/orderbook"));
6
+ //#endregion
7
+ Object.defineProperty(exports, "orderbook_exports", {
8
+ enumerable: true,
9
+ get: function() {
10
+ return orderbook_exports;
11
+ }
12
+ });
13
+ var _imtbl_orderbook = require("@imtbl/orderbook");
14
+ Object.keys(_imtbl_orderbook).forEach(function(k) {
15
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
16
  enumerable: true,
10
- get: function () { return orderbook[k]; }
17
+ get: function() {
18
+ return _imtbl_orderbook[k];
19
+ }
11
20
  });
12
21
  });
package/dist/orderbook.js CHANGED
@@ -1 +1,8 @@
1
- export * from '@imtbl/orderbook';
1
+ import { n as __reExport, t as __exportAll } from "./rolldown-runtime.js";
2
+ export * from "@imtbl/orderbook";
3
+ //#region src/orderbook.ts
4
+ var orderbook_exports = /* @__PURE__ */ __exportAll({});
5
+ import * as import__imtbl_orderbook from "@imtbl/orderbook";
6
+ __reExport(orderbook_exports, import__imtbl_orderbook);
7
+ //#endregion
8
+ export { orderbook_exports as t };
package/dist/passport.cjs CHANGED
@@ -1,12 +1,21 @@
1
- 'use strict';
2
-
3
- var passport = require('@imtbl/passport');
4
-
5
-
6
-
7
- Object.keys(passport).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_rolldown_runtime = require("./rolldown-runtime.cjs");
3
+ //#region src/passport.ts
4
+ var passport_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({});
5
+ require_rolldown_runtime.__reExport(passport_exports, require("@imtbl/passport"));
6
+ //#endregion
7
+ Object.defineProperty(exports, "passport_exports", {
8
+ enumerable: true,
9
+ get: function() {
10
+ return passport_exports;
11
+ }
12
+ });
13
+ var _imtbl_passport = require("@imtbl/passport");
14
+ Object.keys(_imtbl_passport).forEach(function(k) {
15
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
16
  enumerable: true,
10
- get: function () { return passport[k]; }
17
+ get: function() {
18
+ return _imtbl_passport[k];
19
+ }
11
20
  });
12
21
  });
package/dist/passport.js CHANGED
@@ -1 +1,8 @@
1
- export * from '@imtbl/passport';
1
+ import { n as __reExport, t as __exportAll } from "./rolldown-runtime.js";
2
+ export * from "@imtbl/passport";
3
+ //#region src/passport.ts
4
+ var passport_exports = /* @__PURE__ */ __exportAll({});
5
+ import * as import__imtbl_passport from "@imtbl/passport";
6
+ __reExport(passport_exports, import__imtbl_passport);
7
+ //#endregion
8
+ export { passport_exports as t };
@@ -0,0 +1,38 @@
1
+ //#region \0rolldown/runtime.js
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __exportAll = (all, no_symbols) => {
7
+ let target = {};
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true
11
+ });
12
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
13
+ return target;
14
+ };
15
+ var __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
17
+ key = keys[i];
18
+ if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: ((k) => from[k]).bind(null, key),
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
24
+ };
25
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
26
+ //#endregion
27
+ Object.defineProperty(exports, "__exportAll", {
28
+ enumerable: true,
29
+ get: function() {
30
+ return __exportAll;
31
+ }
32
+ });
33
+ Object.defineProperty(exports, "__reExport", {
34
+ enumerable: true,
35
+ get: function() {
36
+ return __reExport;
37
+ }
38
+ });
@@ -0,0 +1,27 @@
1
+ //#region \0rolldown/runtime.js
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __exportAll = (all, no_symbols) => {
7
+ let target = {};
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true
11
+ });
12
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
13
+ return target;
14
+ };
15
+ var __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
17
+ key = keys[i];
18
+ if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
19
+ get: ((k) => from[k]).bind(null, key),
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ return to;
24
+ };
25
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
26
+ //#endregion
27
+ export { __reExport as n, __exportAll as t };
package/dist/wallet.cjs CHANGED
@@ -1,12 +1,21 @@
1
- 'use strict';
2
-
3
- var wallet = require('@imtbl/wallet');
4
-
5
-
6
-
7
- Object.keys(wallet).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_rolldown_runtime = require("./rolldown-runtime.cjs");
3
+ //#region src/wallet.ts
4
+ var wallet_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({});
5
+ require_rolldown_runtime.__reExport(wallet_exports, require("@imtbl/wallet"));
6
+ //#endregion
7
+ Object.defineProperty(exports, "wallet_exports", {
8
+ enumerable: true,
9
+ get: function() {
10
+ return wallet_exports;
11
+ }
12
+ });
13
+ var _imtbl_wallet = require("@imtbl/wallet");
14
+ Object.keys(_imtbl_wallet).forEach(function(k) {
15
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
16
  enumerable: true,
10
- get: function () { return wallet[k]; }
17
+ get: function() {
18
+ return _imtbl_wallet[k];
19
+ }
11
20
  });
12
21
  });
package/dist/wallet.js CHANGED
@@ -1 +1,8 @@
1
- export * from '@imtbl/wallet';
1
+ import { n as __reExport, t as __exportAll } from "./rolldown-runtime.js";
2
+ export * from "@imtbl/wallet";
3
+ //#region src/wallet.ts
4
+ var wallet_exports = /* @__PURE__ */ __exportAll({});
5
+ import * as import__imtbl_wallet from "@imtbl/wallet";
6
+ __reExport(wallet_exports, import__imtbl_wallet);
7
+ //#endregion
8
+ export { wallet_exports as t };
package/dist/webhook.cjs CHANGED
@@ -1,12 +1,21 @@
1
- 'use strict';
2
-
3
- var webhook = require('@imtbl/webhook');
4
-
5
-
6
-
7
- Object.keys(webhook).forEach(function (k) {
8
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_rolldown_runtime = require("./rolldown-runtime.cjs");
3
+ //#region src/webhook.ts
4
+ var webhook_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({});
5
+ require_rolldown_runtime.__reExport(webhook_exports, require("@imtbl/webhook"));
6
+ //#endregion
7
+ Object.defineProperty(exports, "webhook_exports", {
8
+ enumerable: true,
9
+ get: function() {
10
+ return webhook_exports;
11
+ }
12
+ });
13
+ var _imtbl_webhook = require("@imtbl/webhook");
14
+ Object.keys(_imtbl_webhook).forEach(function(k) {
15
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
16
  enumerable: true,
10
- get: function () { return webhook[k]; }
17
+ get: function() {
18
+ return _imtbl_webhook[k];
19
+ }
11
20
  });
12
21
  });
package/dist/webhook.js CHANGED
@@ -1 +1,8 @@
1
- export * from '@imtbl/webhook';
1
+ import { n as __reExport, t as __exportAll } from "./rolldown-runtime.js";
2
+ export * from "@imtbl/webhook";
3
+ //#region src/webhook.ts
4
+ var webhook_exports = /* @__PURE__ */ __exportAll({});
5
+ import * as import__imtbl_webhook from "@imtbl/webhook";
6
+ __reExport(webhook_exports, import__imtbl_webhook);
7
+ //#endregion
8
+ export { webhook_exports as t };
package/package.json CHANGED
@@ -1,45 +1,29 @@
1
1
  {
2
2
  "name": "@imtbl/sdk",
3
3
  "description": "Immutable Typescript SDK",
4
- "version": "2.23.0",
4
+ "version": "2.24.0",
5
5
  "author": "Immutable",
6
+ "browser": "./dist/index.browser.js",
6
7
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
7
8
  "dependencies": {
8
- "@imtbl/auth": "2.23.0",
9
- "@imtbl/auth-next-client": "2.23.0",
10
- "@imtbl/auth-next-server": "2.23.0",
11
- "@imtbl/blockchain-data": "2.23.0",
12
- "@imtbl/checkout-sdk": "2.23.0",
13
- "@imtbl/config": "2.23.0",
14
- "@imtbl/minting-backend": "2.23.0",
15
- "@imtbl/orderbook": "2.23.0",
16
- "@imtbl/passport": "2.23.0",
17
- "@imtbl/wallet": "2.23.0",
18
- "@imtbl/webhook": "2.23.0"
9
+ "@imtbl/blockchain-data": "2.24.0",
10
+ "@imtbl/checkout-sdk": "2.24.0",
11
+ "@imtbl/auth": "2.24.0",
12
+ "@imtbl/auth-next-client": "2.24.0",
13
+ "@imtbl/config": "2.24.0",
14
+ "@imtbl/minting-backend": "2.24.0",
15
+ "@imtbl/orderbook": "2.24.0",
16
+ "@imtbl/passport": "2.24.0",
17
+ "@imtbl/wallet": "2.24.0",
18
+ "@imtbl/auth-next-server": "2.24.0",
19
+ "@imtbl/webhook": "2.24.0"
19
20
  },
20
21
  "devDependencies": {
21
- "eslint": "^8.56.0",
22
- "tsup": "^8.3.0",
23
- "typescript": "^5.6.2"
24
- },
25
- "peerDependencies": {
26
- "next": "^14.2.0 || ^15.0.0",
27
- "next-auth": "^5.0.0-beta.25",
28
- "react": "^18.2.0 || ^19.0.0"
29
- },
30
- "peerDependenciesMeta": {
31
- "next": {
32
- "optional": true
33
- },
34
- "next-auth": {
35
- "optional": true
36
- },
37
- "react": {
38
- "optional": true
39
- }
22
+ "@typescript/native": "npm:typescript@^7.0.2",
23
+ "typescript": "npm:@typescript/typescript6@^6.0.2"
40
24
  },
41
25
  "engines": {
42
- "node": ">=20.0.0"
26
+ "node": ">=24"
43
27
  },
44
28
  "exports": {
45
29
  "./package.json": "./package.json",
@@ -213,19 +197,36 @@
213
197
  "license": "Apache-2.0",
214
198
  "main": "./dist/index.cjs",
215
199
  "module": "./dist/index.js",
216
- "browser": "./dist/index.browser.js",
200
+ "peerDependencies": {
201
+ "next": "^14.2.0 || ^15.0.0 || ^16.0.0",
202
+ "next-auth": "^5.0.0-beta.25",
203
+ "react": "^18.2.0 || ^19.0.0"
204
+ },
205
+ "peerDependenciesMeta": {
206
+ "next": {
207
+ "optional": true
208
+ },
209
+ "next-auth": {
210
+ "optional": true
211
+ },
212
+ "react": {
213
+ "optional": true
214
+ }
215
+ },
217
216
  "publishConfig": {
218
217
  "access": "public"
219
218
  },
220
- "repository": "immutable/ts-immutable-sdk.git",
219
+ "repository": {
220
+ "type": "git",
221
+ "url": "immutable/ts-immutable-sdk.git"
222
+ },
221
223
  "type": "module",
222
224
  "types": "./dist/index.d.ts",
223
225
  "scripts": {
224
226
  "build": "pnpm transpile && pnpm typegen",
225
- "transpile": "tsup --config ./tsup.config.js",
226
- "typegen": "tsc --customConditions default --emitDeclarationOnly",
227
227
  "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
228
- "lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
229
- "typecheck": "tsc --customConditions default --noEmit --jsx preserve"
228
+ "transpile": "tsdown",
229
+ "typecheck": "tsc --customConditions default --noEmit --jsx preserve",
230
+ "typegen": "tsc --customConditions default --emitDeclarationOnly"
230
231
  }
231
232
  }