@imtbl/sdk 2.12.5-alpha.20 → 2.12.5-alpha.22

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
@@ -9,6 +9,8 @@ var x_client_star = require('@imtbl/x-client');
9
9
  var x_provider_star = require('@imtbl/x-provider');
10
10
  var webhook_star = require('@imtbl/webhook');
11
11
  var minting_backend_star = require('@imtbl/minting-backend');
12
+ var auth_star = require('@imtbl/auth');
13
+ var wallet_star = require('@imtbl/wallet');
12
14
 
13
15
  function _interopNamespace(e) {
14
16
  if (e && e.__esModule) return e;
@@ -37,6 +39,8 @@ var x_client_star__namespace = /*#__PURE__*/_interopNamespace(x_client_star);
37
39
  var x_provider_star__namespace = /*#__PURE__*/_interopNamespace(x_provider_star);
38
40
  var webhook_star__namespace = /*#__PURE__*/_interopNamespace(webhook_star);
39
41
  var minting_backend_star__namespace = /*#__PURE__*/_interopNamespace(minting_backend_star);
42
+ var auth_star__namespace = /*#__PURE__*/_interopNamespace(auth_star);
43
+ var wallet_star__namespace = /*#__PURE__*/_interopNamespace(wallet_star);
40
44
 
41
45
  var __defProp = Object.defineProperty;
42
46
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -85,11 +89,21 @@ __reExport(webhook_exports, webhook_star__namespace);
85
89
  var minting_backend_exports = {};
86
90
  __reExport(minting_backend_exports, minting_backend_star__namespace);
87
91
 
92
+ // src/auth.ts
93
+ var auth_exports = {};
94
+ __reExport(auth_exports, auth_star__namespace);
95
+
96
+ // src/wallet.ts
97
+ var wallet_exports = {};
98
+ __reExport(wallet_exports, wallet_star__namespace);
99
+
100
+ exports.auth = auth_exports;
88
101
  exports.blockchainData = blockchain_data_exports;
89
102
  exports.checkout = checkout_exports;
90
103
  exports.config = config_exports;
91
104
  exports.mintingBackend = minting_backend_exports;
92
105
  exports.orderbook = orderbook_exports;
93
106
  exports.passport = passport_exports;
107
+ exports.wallet = wallet_exports;
94
108
  exports.webhook = webhook_exports;
95
109
  exports.x = x_exports;
package/dist/index.d.ts CHANGED
@@ -6,3 +6,5 @@ export * as checkout from './checkout';
6
6
  export * as x from './x';
7
7
  export * as webhook from './webhook';
8
8
  export * as mintingBackend from './minting_backend';
9
+ export * as auth from './auth';
10
+ export * as wallet from './wallet';
package/dist/index.js CHANGED
@@ -7,6 +7,8 @@ import * as x_client_star from '@imtbl/x-client';
7
7
  import * as x_provider_star from '@imtbl/x-provider';
8
8
  import * as webhook_star from '@imtbl/webhook';
9
9
  import * as minting_backend_star from '@imtbl/minting-backend';
10
+ import * as auth_star from '@imtbl/auth';
11
+ import * as wallet_star from '@imtbl/wallet';
10
12
 
11
13
  var __defProp = Object.defineProperty;
12
14
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -55,4 +57,12 @@ __reExport(webhook_exports, webhook_star);
55
57
  var minting_backend_exports = {};
56
58
  __reExport(minting_backend_exports, minting_backend_star);
57
59
 
58
- export { 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, webhook_exports as webhook, x_exports as x };
60
+ // src/auth.ts
61
+ var auth_exports = {};
62
+ __reExport(auth_exports, auth_star);
63
+
64
+ // src/wallet.ts
65
+ var wallet_exports = {};
66
+ __reExport(wallet_exports, wallet_star);
67
+
68
+ 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, x_exports as x };
@@ -0,0 +1,12 @@
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, {
9
+ enumerable: true,
10
+ get: function () { return wallet[k]; }
11
+ });
12
+ });
@@ -0,0 +1 @@
1
+ export * from '@imtbl/wallet';
package/dist/wallet.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@imtbl/wallet';
package/package.json CHANGED
@@ -1,27 +1,45 @@
1
1
  {
2
2
  "name": "@imtbl/sdk",
3
3
  "description": "Immutable Typescript SDK",
4
- "version": "2.12.5-alpha.20",
4
+ "version": "2.12.5-alpha.22",
5
5
  "author": "Immutable",
6
6
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
7
7
  "dependencies": {
8
- "@imtbl/auth": "2.12.5-alpha.20",
9
- "@imtbl/blockchain-data": "2.12.5-alpha.20",
10
- "@imtbl/checkout-sdk": "2.12.5-alpha.20",
11
- "@imtbl/config": "2.12.5-alpha.20",
12
- "@imtbl/minting-backend": "2.12.5-alpha.20",
13
- "@imtbl/orderbook": "2.12.5-alpha.20",
14
- "@imtbl/passport": "2.12.5-alpha.20",
15
- "@imtbl/wallet": "2.12.5-alpha.20",
16
- "@imtbl/webhook": "2.12.5-alpha.20",
17
- "@imtbl/x-client": "2.12.5-alpha.20",
18
- "@imtbl/x-provider": "2.12.5-alpha.20"
8
+ "@imtbl/auth": "2.12.5-alpha.22",
9
+ "@imtbl/auth-next-client": "2.12.5-alpha.22",
10
+ "@imtbl/auth-next-server": "2.12.5-alpha.22",
11
+ "@imtbl/blockchain-data": "2.12.5-alpha.22",
12
+ "@imtbl/checkout-sdk": "2.12.5-alpha.22",
13
+ "@imtbl/config": "2.12.5-alpha.22",
14
+ "@imtbl/minting-backend": "2.12.5-alpha.22",
15
+ "@imtbl/orderbook": "2.12.5-alpha.22",
16
+ "@imtbl/passport": "2.12.5-alpha.22",
17
+ "@imtbl/wallet": "2.12.5-alpha.22",
18
+ "@imtbl/webhook": "2.12.5-alpha.22",
19
+ "@imtbl/x-client": "2.12.5-alpha.22",
20
+ "@imtbl/x-provider": "2.12.5-alpha.22"
19
21
  },
20
22
  "devDependencies": {
21
- "eslint": "^8.40.0",
23
+ "eslint": "^8.56.0",
22
24
  "tsup": "^8.3.0",
23
25
  "typescript": "^5.6.2"
24
26
  },
27
+ "peerDependencies": {
28
+ "next": "^14.2.0 || ^15.0.0",
29
+ "next-auth": "^5.0.0-beta.25",
30
+ "react": "^18.2.0 || ^19.0.0"
31
+ },
32
+ "peerDependenciesMeta": {
33
+ "next": {
34
+ "optional": true
35
+ },
36
+ "next-auth": {
37
+ "optional": true
38
+ },
39
+ "react": {
40
+ "optional": true
41
+ }
42
+ },
25
43
  "engines": {
26
44
  "node": ">=20.0.0"
27
45
  },
@@ -148,6 +166,60 @@
148
166
  "require": "./dist/minting_backend.cjs",
149
167
  "default": "./dist/minting_backend.js"
150
168
  }
169
+ },
170
+ "./auth": {
171
+ "development": {
172
+ "types": "./src/auth.ts",
173
+ "browser": "./dist/auth.js",
174
+ "require": "./dist/auth.cjs",
175
+ "default": "./dist/auth.js"
176
+ },
177
+ "default": {
178
+ "types": "./dist/auth.d.ts",
179
+ "browser": "./dist/auth.js",
180
+ "require": "./dist/auth.cjs",
181
+ "default": "./dist/auth.js"
182
+ }
183
+ },
184
+ "./wallet": {
185
+ "development": {
186
+ "types": "./src/wallet.ts",
187
+ "browser": "./dist/wallet.js",
188
+ "require": "./dist/wallet.cjs",
189
+ "default": "./dist/wallet.js"
190
+ },
191
+ "default": {
192
+ "types": "./dist/wallet.d.ts",
193
+ "browser": "./dist/wallet.js",
194
+ "require": "./dist/wallet.cjs",
195
+ "default": "./dist/wallet.js"
196
+ }
197
+ },
198
+ "./auth-next-client": {
199
+ "development": {
200
+ "types": "./src/auth-next-client.ts",
201
+ "browser": "./dist/auth-next-client.js",
202
+ "require": "./dist/auth-next-client.cjs",
203
+ "default": "./dist/auth-next-client.js"
204
+ },
205
+ "default": {
206
+ "types": "./dist/auth-next-client.d.ts",
207
+ "browser": "./dist/auth-next-client.js",
208
+ "require": "./dist/auth-next-client.cjs",
209
+ "default": "./dist/auth-next-client.js"
210
+ }
211
+ },
212
+ "./auth-next-server": {
213
+ "development": {
214
+ "types": "./src/auth-next-server.ts",
215
+ "require": "./dist/auth-next-server.cjs",
216
+ "default": "./dist/auth-next-server.js"
217
+ },
218
+ "default": {
219
+ "types": "./dist/auth-next-server.d.ts",
220
+ "require": "./dist/auth-next-server.cjs",
221
+ "default": "./dist/auth-next-server.js"
222
+ }
151
223
  }
152
224
  },
153
225
  "files": [