zigap-utils 0.0.39 → 0.0.42

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.es.js CHANGED
@@ -14165,11 +14165,9 @@ const m1 = new g1(), w1 = ({
14165
14165
  ...x
14166
14166
  }
14167
14167
  ) : /* @__PURE__ */ vr.jsx("div", { children: "QR loading error" });
14168
- }, B1 = () => {
14169
- console.log("TEST..");
14170
14168
  };
14171
14169
  export {
14172
14170
  w1 as AddressProvideQR,
14173
14171
  E1 as LoginQR,
14174
- B1 as test
14172
+ oa as qrService
14175
14173
  };
@@ -1,2 +1 @@
1
- export * from './test';
2
- export * from './test2';
1
+ export * from './qrService';
@@ -0,0 +1 @@
1
+ export { default as qrService } from './qrService';
@@ -1,4 +1,4 @@
1
- import { QrType } from './types';
1
+ import { QrType } from '../types';
2
2
 
3
3
  declare class QrService {
4
4
  generateQrCode(type: string, dapp: string, url: string, network: string[]): QrType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigap-utils",
3
- "version": "0.0.39",
3
+ "version": "0.0.42",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +0,0 @@
1
- export { default as test } from './test';
@@ -1,2 +0,0 @@
1
- declare const test: () => void;
2
- export default test;
@@ -1,2 +0,0 @@
1
- declare const test2: () => void;
2
- export default test2;