@chipi-stack/chipi-expo 13.8.0 → 13.10.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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +19 -4
- package/dist/index.mjs +2 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chipiReact = require('@chipi-stack/chipi-react');
|
|
4
|
+
var types = require('@chipi-stack/types');
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
|
|
8
|
+
Object.defineProperty(exports, "Chain", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return types.Chain; }
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "ChainToken", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return types.ChainToken; }
|
|
15
|
+
});
|
|
7
16
|
Object.keys(chipiReact).forEach(function (k) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
17
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return chipiReact[k]; }
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
Object.keys(types).forEach(function (k) {
|
|
23
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return types[k]; }
|
|
26
|
+
});
|
|
12
27
|
});
|
|
13
28
|
//# sourceMappingURL=index.js.map
|
|
14
29
|
//# sourceMappingURL=index.js.map
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chipi-stack/chipi-expo",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.10.0",
|
|
4
4
|
"description": "Chipi SDK for React Native and Expo applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chipi",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@tanstack/react-query": "^5.85.0",
|
|
58
|
-
"@chipi-stack/
|
|
59
|
-
"@chipi-stack/shared": "^13.
|
|
60
|
-
"@chipi-stack/
|
|
61
|
-
"@chipi-stack/types": "^13.
|
|
58
|
+
"@chipi-stack/backend": "^13.9.0",
|
|
59
|
+
"@chipi-stack/shared": "^13.9.0",
|
|
60
|
+
"@chipi-stack/chipi-react": "^13.9.0",
|
|
61
|
+
"@chipi-stack/types": "^13.10.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"react": ">=16.8.0",
|