@imtbl/sdk 2.12.5-alpha.14 → 2.12.5-alpha.15
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.browser.cdn.js +4 -4
- package/dist/index.browser.js +48 -0
- package/package.json +16 -14
- /package/dist/{auth_nextjs_client.cjs → auth-next-client.cjs} +0 -0
- /package/dist/{auth_nextjs_client.d.ts → auth-next-client.d.ts} +0 -0
- /package/dist/{auth_nextjs_client.js → auth-next-client.js} +0 -0
- /package/dist/{auth_nextjs_server.cjs → auth-next-server.cjs} +0 -0
- /package/dist/{auth_nextjs_server.d.ts → auth-next-server.d.ts} +0 -0
- /package/dist/{auth_nextjs_server.js → auth-next-server.js} +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
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 x_client_star from '@imtbl/x-client';
|
|
7
|
+
import * as x_provider_star from '@imtbl/x-provider';
|
|
8
|
+
|
|
9
|
+
var __defProp = Object.defineProperty;
|
|
10
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
11
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
12
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from))
|
|
16
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
17
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
18
|
+
}
|
|
19
|
+
return to;
|
|
20
|
+
};
|
|
21
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget);
|
|
22
|
+
|
|
23
|
+
// src/config.ts
|
|
24
|
+
var config_exports = {};
|
|
25
|
+
__reExport(config_exports, config_star);
|
|
26
|
+
|
|
27
|
+
// src/blockchain_data.ts
|
|
28
|
+
var blockchain_data_exports = {};
|
|
29
|
+
__reExport(blockchain_data_exports, blockchain_data_star);
|
|
30
|
+
|
|
31
|
+
// src/passport.ts
|
|
32
|
+
var passport_exports = {};
|
|
33
|
+
__reExport(passport_exports, passport_star);
|
|
34
|
+
|
|
35
|
+
// src/orderbook.ts
|
|
36
|
+
var orderbook_exports = {};
|
|
37
|
+
__reExport(orderbook_exports, orderbook_star);
|
|
38
|
+
|
|
39
|
+
// src/checkout.ts
|
|
40
|
+
var checkout_exports = {};
|
|
41
|
+
__reExport(checkout_exports, checkout_sdk_star);
|
|
42
|
+
|
|
43
|
+
// src/x.ts
|
|
44
|
+
var x_exports = {};
|
|
45
|
+
__reExport(x_exports, x_client_star);
|
|
46
|
+
__reExport(x_exports, x_provider_star);
|
|
47
|
+
|
|
48
|
+
export { blockchain_data_exports as blockchainData, checkout_exports as checkout, config_exports as config, orderbook_exports as orderbook, passport_exports as passport, x_exports as x };
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtbl/sdk",
|
|
3
3
|
"description": "Immutable Typescript SDK",
|
|
4
|
-
"version": "2.12.5-alpha.
|
|
4
|
+
"version": "2.12.5-alpha.15",
|
|
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.
|
|
9
|
-
"@imtbl/auth-next-client": "2.12.5-alpha.
|
|
10
|
-
"@imtbl/auth-next-server": "2.12.5-alpha.
|
|
11
|
-
"@imtbl/blockchain-data": "2.12.5-alpha.
|
|
12
|
-
"@imtbl/checkout-sdk": "2.12.5-alpha.
|
|
13
|
-
"@imtbl/config": "2.12.5-alpha.
|
|
14
|
-
"@imtbl/minting-backend": "2.12.5-alpha.
|
|
15
|
-
"@imtbl/orderbook": "2.12.5-alpha.
|
|
16
|
-
"@imtbl/passport": "2.12.5-alpha.
|
|
17
|
-
"@imtbl/wallet": "2.12.5-alpha.
|
|
18
|
-
"@imtbl/webhook": "2.12.5-alpha.
|
|
19
|
-
"@imtbl/x-client": "2.12.5-alpha.
|
|
20
|
-
"@imtbl/x-provider": "2.12.5-alpha.
|
|
8
|
+
"@imtbl/auth": "2.12.5-alpha.15",
|
|
9
|
+
"@imtbl/auth-next-client": "2.12.5-alpha.15",
|
|
10
|
+
"@imtbl/auth-next-server": "2.12.5-alpha.15",
|
|
11
|
+
"@imtbl/blockchain-data": "2.12.5-alpha.15",
|
|
12
|
+
"@imtbl/checkout-sdk": "2.12.5-alpha.15",
|
|
13
|
+
"@imtbl/config": "2.12.5-alpha.15",
|
|
14
|
+
"@imtbl/minting-backend": "2.12.5-alpha.15",
|
|
15
|
+
"@imtbl/orderbook": "2.12.5-alpha.15",
|
|
16
|
+
"@imtbl/passport": "2.12.5-alpha.15",
|
|
17
|
+
"@imtbl/wallet": "2.12.5-alpha.15",
|
|
18
|
+
"@imtbl/webhook": "2.12.5-alpha.15",
|
|
19
|
+
"@imtbl/x-client": "2.12.5-alpha.15",
|
|
20
|
+
"@imtbl/x-provider": "2.12.5-alpha.15"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"eslint": "^8.56.0",
|
|
@@ -198,11 +198,13 @@
|
|
|
198
198
|
"./auth-next-client": {
|
|
199
199
|
"development": {
|
|
200
200
|
"types": "./src/auth-next-client.ts",
|
|
201
|
+
"browser": "./dist/auth-next-client.js",
|
|
201
202
|
"require": "./dist/auth-next-client.cjs",
|
|
202
203
|
"default": "./dist/auth-next-client.js"
|
|
203
204
|
},
|
|
204
205
|
"default": {
|
|
205
206
|
"types": "./dist/auth-next-client.d.ts",
|
|
207
|
+
"browser": "./dist/auth-next-client.js",
|
|
206
208
|
"require": "./dist/auth-next-client.cjs",
|
|
207
209
|
"default": "./dist/auth-next-client.js"
|
|
208
210
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|