@imtbl/sdk 2.12.5-alpha.9 → 2.12.6-alpha.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/{auth_nextjs.cjs → auth-next-client.cjs} +3 -3
- package/dist/auth-next-client.d.ts +1 -0
- package/dist/auth-next-client.js +1 -0
- package/dist/{auth_nextjs_server.cjs → auth-next-server.cjs} +3 -3
- package/dist/auth-next-server.d.ts +1 -0
- package/dist/auth-next-server.js +1 -0
- package/dist/index.browser.cdn.js +18700 -96
- package/dist/index.cjs +0 -7
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -6
- package/package.json +31 -40
- package/dist/auth_nextjs.d.ts +0 -1
- package/dist/auth_nextjs.js +0 -1
- package/dist/auth_nextjs_client.cjs +0 -12
- package/dist/auth_nextjs_client.d.ts +0 -1
- package/dist/auth_nextjs_client.js +0 -1
- package/dist/auth_nextjs_server.d.ts +0 -1
- package/dist/auth_nextjs_server.js +0 -1
package/dist/index.cjs
CHANGED
|
@@ -11,7 +11,6 @@ var webhook_star = require('@imtbl/webhook');
|
|
|
11
11
|
var minting_backend_star = require('@imtbl/minting-backend');
|
|
12
12
|
var auth_star = require('@imtbl/auth');
|
|
13
13
|
var wallet_star = require('@imtbl/wallet');
|
|
14
|
-
var auth_nextjs_star = require('@imtbl/auth-nextjs');
|
|
15
14
|
|
|
16
15
|
function _interopNamespace(e) {
|
|
17
16
|
if (e && e.__esModule) return e;
|
|
@@ -42,7 +41,6 @@ var webhook_star__namespace = /*#__PURE__*/_interopNamespace(webhook_star);
|
|
|
42
41
|
var minting_backend_star__namespace = /*#__PURE__*/_interopNamespace(minting_backend_star);
|
|
43
42
|
var auth_star__namespace = /*#__PURE__*/_interopNamespace(auth_star);
|
|
44
43
|
var wallet_star__namespace = /*#__PURE__*/_interopNamespace(wallet_star);
|
|
45
|
-
var auth_nextjs_star__namespace = /*#__PURE__*/_interopNamespace(auth_nextjs_star);
|
|
46
44
|
|
|
47
45
|
var __defProp = Object.defineProperty;
|
|
48
46
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -99,12 +97,7 @@ __reExport(auth_exports, auth_star__namespace);
|
|
|
99
97
|
var wallet_exports = {};
|
|
100
98
|
__reExport(wallet_exports, wallet_star__namespace);
|
|
101
99
|
|
|
102
|
-
// src/auth_nextjs.ts
|
|
103
|
-
var auth_nextjs_exports = {};
|
|
104
|
-
__reExport(auth_nextjs_exports, auth_nextjs_star__namespace);
|
|
105
|
-
|
|
106
100
|
exports.auth = auth_exports;
|
|
107
|
-
exports.authNextjs = auth_nextjs_exports;
|
|
108
101
|
exports.blockchainData = blockchain_data_exports;
|
|
109
102
|
exports.checkout = checkout_exports;
|
|
110
103
|
exports.config = config_exports;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import * as webhook_star from '@imtbl/webhook';
|
|
|
9
9
|
import * as minting_backend_star from '@imtbl/minting-backend';
|
|
10
10
|
import * as auth_star from '@imtbl/auth';
|
|
11
11
|
import * as wallet_star from '@imtbl/wallet';
|
|
12
|
-
import * as auth_nextjs_star from '@imtbl/auth-nextjs';
|
|
13
12
|
|
|
14
13
|
var __defProp = Object.defineProperty;
|
|
15
14
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -66,8 +65,4 @@ __reExport(auth_exports, auth_star);
|
|
|
66
65
|
var wallet_exports = {};
|
|
67
66
|
__reExport(wallet_exports, wallet_star);
|
|
68
67
|
|
|
69
|
-
|
|
70
|
-
var auth_nextjs_exports = {};
|
|
71
|
-
__reExport(auth_nextjs_exports, auth_nextjs_star);
|
|
72
|
-
|
|
73
|
-
export { auth_exports as auth, auth_nextjs_exports as authNextjs, 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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtbl/sdk",
|
|
3
3
|
"description": "Immutable Typescript SDK",
|
|
4
|
-
"version": "2.12.
|
|
4
|
+
"version": "2.12.6-alpha.0",
|
|
5
5
|
"author": "Immutable",
|
|
6
6
|
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@imtbl/auth": "2.12.
|
|
9
|
-
"@imtbl/auth-
|
|
10
|
-
"@imtbl/
|
|
11
|
-
"@imtbl/
|
|
12
|
-
"@imtbl/
|
|
13
|
-
"@imtbl/
|
|
14
|
-
"@imtbl/
|
|
15
|
-
"@imtbl/
|
|
16
|
-
"@imtbl/
|
|
17
|
-
"@imtbl/
|
|
18
|
-
"@imtbl/
|
|
19
|
-
"@imtbl/x-
|
|
8
|
+
"@imtbl/auth": "2.12.6-alpha.0",
|
|
9
|
+
"@imtbl/auth-next-client": "2.12.6-alpha.0",
|
|
10
|
+
"@imtbl/auth-next-server": "2.12.6-alpha.0",
|
|
11
|
+
"@imtbl/blockchain-data": "2.12.6-alpha.0",
|
|
12
|
+
"@imtbl/checkout-sdk": "2.12.6-alpha.0",
|
|
13
|
+
"@imtbl/config": "2.12.6-alpha.0",
|
|
14
|
+
"@imtbl/minting-backend": "2.12.6-alpha.0",
|
|
15
|
+
"@imtbl/orderbook": "2.12.6-alpha.0",
|
|
16
|
+
"@imtbl/passport": "2.12.6-alpha.0",
|
|
17
|
+
"@imtbl/wallet": "2.12.6-alpha.0",
|
|
18
|
+
"@imtbl/webhook": "2.12.6-alpha.0",
|
|
19
|
+
"@imtbl/x-client": "2.12.6-alpha.0",
|
|
20
|
+
"@imtbl/x-provider": "2.12.6-alpha.0"
|
|
20
21
|
},
|
|
21
22
|
"devDependencies": {
|
|
22
|
-
"eslint": "^8.
|
|
23
|
+
"eslint": "^8.56.0",
|
|
23
24
|
"tsup": "^8.3.0",
|
|
24
25
|
"typescript": "^5.6.2"
|
|
25
26
|
},
|
|
@@ -194,40 +195,30 @@
|
|
|
194
195
|
"default": "./dist/wallet.js"
|
|
195
196
|
}
|
|
196
197
|
},
|
|
197
|
-
"./
|
|
198
|
+
"./auth-next-client": {
|
|
198
199
|
"development": {
|
|
199
|
-
"types": "./src/
|
|
200
|
-
"
|
|
201
|
-
"
|
|
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"
|
|
202
204
|
},
|
|
203
205
|
"default": {
|
|
204
|
-
"types": "./dist/
|
|
205
|
-
"
|
|
206
|
-
"
|
|
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"
|
|
207
210
|
}
|
|
208
211
|
},
|
|
209
|
-
"./
|
|
212
|
+
"./auth-next-server": {
|
|
210
213
|
"development": {
|
|
211
|
-
"types": "./src/
|
|
212
|
-
"require": "./dist/
|
|
213
|
-
"default": "./dist/
|
|
214
|
+
"types": "./src/auth-next-server.ts",
|
|
215
|
+
"require": "./dist/auth-next-server.cjs",
|
|
216
|
+
"default": "./dist/auth-next-server.js"
|
|
214
217
|
},
|
|
215
218
|
"default": {
|
|
216
|
-
"types": "./dist/
|
|
217
|
-
"require": "./dist/
|
|
218
|
-
"default": "./dist/
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"./auth_nextjs/server": {
|
|
222
|
-
"development": {
|
|
223
|
-
"types": "./src/auth_nextjs_server.ts",
|
|
224
|
-
"require": "./dist/auth_nextjs_server.cjs",
|
|
225
|
-
"default": "./dist/auth_nextjs_server.js"
|
|
226
|
-
},
|
|
227
|
-
"default": {
|
|
228
|
-
"types": "./dist/auth_nextjs_server.d.ts",
|
|
229
|
-
"require": "./dist/auth_nextjs_server.cjs",
|
|
230
|
-
"default": "./dist/auth_nextjs_server.js"
|
|
219
|
+
"types": "./dist/auth-next-server.d.ts",
|
|
220
|
+
"require": "./dist/auth-next-server.cjs",
|
|
221
|
+
"default": "./dist/auth-next-server.js"
|
|
231
222
|
}
|
|
232
223
|
}
|
|
233
224
|
},
|
package/dist/auth_nextjs.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs';
|
package/dist/auth_nextjs.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs';
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var client = require('@imtbl/auth-nextjs/client');
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Object.keys(client).forEach(function (k) {
|
|
8
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
9
|
-
enumerable: true,
|
|
10
|
-
get: function () { return client[k]; }
|
|
11
|
-
});
|
|
12
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs/client';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs/client';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs/server';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@imtbl/auth-nextjs/server';
|