@worldcoin/minikit-js 0.0.31-internal-alpha → 0.0.32-internal-alpha

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/build/index.d.cts CHANGED
@@ -261,6 +261,7 @@ type MiniAppSendTransactionSuccessPayload = {
261
261
  type MiniAppSendTransactionErrorPayload = {
262
262
  status: "error";
263
263
  error_code: SendTransactionErrorCodes;
264
+ debugUrl?: string;
264
265
  version: number;
265
266
  };
266
267
  type MiniAppSendTransactionPayload = MiniAppSendTransactionSuccessPayload | MiniAppSendTransactionErrorPayload;
@@ -273,6 +274,7 @@ type MiniAppSignMessageSuccessPayload = {
273
274
  type MiniAppSignMessageErrorPayload = {
274
275
  status: "error";
275
276
  error_code: SignMessageErrorCodes;
277
+ debugUrl?: string;
276
278
  version: number;
277
279
  };
278
280
  type MiniAppSignMessagePayload = MiniAppSignMessageSuccessPayload | MiniAppSignMessageErrorPayload;
@@ -285,6 +287,7 @@ type MiniAppSignTypedDataSuccessPayload = {
285
287
  type MiniAppSignTypedDataErrorPayload = {
286
288
  status: "error";
287
289
  error_code: SignTypedDataErrorCodes;
290
+ debugUrl?: string;
288
291
  version: number;
289
292
  };
290
293
  type MiniAppSignTypedDataPayload = MiniAppSignTypedDataSuccessPayload | MiniAppSignTypedDataErrorPayload;
package/build/index.d.ts CHANGED
@@ -261,6 +261,7 @@ type MiniAppSendTransactionSuccessPayload = {
261
261
  type MiniAppSendTransactionErrorPayload = {
262
262
  status: "error";
263
263
  error_code: SendTransactionErrorCodes;
264
+ debugUrl?: string;
264
265
  version: number;
265
266
  };
266
267
  type MiniAppSendTransactionPayload = MiniAppSendTransactionSuccessPayload | MiniAppSendTransactionErrorPayload;
@@ -273,6 +274,7 @@ type MiniAppSignMessageSuccessPayload = {
273
274
  type MiniAppSignMessageErrorPayload = {
274
275
  status: "error";
275
276
  error_code: SignMessageErrorCodes;
277
+ debugUrl?: string;
276
278
  version: number;
277
279
  };
278
280
  type MiniAppSignMessagePayload = MiniAppSignMessageSuccessPayload | MiniAppSignMessageErrorPayload;
@@ -285,6 +287,7 @@ type MiniAppSignTypedDataSuccessPayload = {
285
287
  type MiniAppSignTypedDataErrorPayload = {
286
288
  status: "error";
287
289
  error_code: SignTypedDataErrorCodes;
290
+ debugUrl?: string;
288
291
  version: number;
289
292
  };
290
293
  type MiniAppSignTypedDataPayload = MiniAppSignTypedDataSuccessPayload | MiniAppSignTypedDataErrorPayload;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worldcoin/minikit-js",
3
- "version": "0.0.31-internal-alpha",
3
+ "version": "0.0.32-internal-alpha",
4
4
  "homepage": "https://docs.worldcoin.org/id/minikit",
5
5
  "description": "Internal Alpha: Mini-kit JS is a lightweight sdk for building mini-apps compatible with World App",
6
6
  "license": "MIT",
@@ -8,8 +8,8 @@
8
8
  "type": "module",
9
9
  "exports": {
10
10
  ".": {
11
- "import": "./build/index.js",
12
11
  "types": "./build/index.d.ts",
12
+ "import": "./build/index.js",
13
13
  "require": "./build/index.cjs"
14
14
  }
15
15
  },