aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-android
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-android')
-rw-r--r--packages/taler-wallet-android/package.json8
-rw-r--r--packages/taler-wallet-android/src/index.ts14
-rw-r--r--packages/taler-wallet-android/tsconfig.json2
3 files changed, 12 insertions, 12 deletions
diff --git a/packages/taler-wallet-android/package.json b/packages/taler-wallet-android/package.json
index b7f0eee24..8a0c4048c 100644
--- a/packages/taler-wallet-android/package.json
+++ b/packages/taler-wallet-android/package.json
@@ -34,13 +34,13 @@
"@types/node": "^14.14.22",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
- "rollup": "^2.37.1",
+ "rollup": "^2.43.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
- "typescript": "^4.1.3"
+ "typescript": "^4.2.3"
},
"dependencies": {
- "@gnu-taler/taler-wallet-core": "workspace:*",
- "tslib": "^2.1.0"
+ "@gnu-taler/taler-wallet-core": "workspace:*",
+ "tslib": "^2.1.0"
}
}
diff --git a/packages/taler-wallet-android/src/index.ts b/packages/taler-wallet-android/src/index.ts
index 6f6fa9915..0be45ae7c 100644
--- a/packages/taler-wallet-android/src/index.ts
+++ b/packages/taler-wallet-android/src/index.ts
@@ -22,7 +22,6 @@ import {
getDefaultNodeWallet,
DefaultNodeWalletArgs,
NodeHttpLib,
- TalerErrorCode,
makeErrorDetails,
handleWorkerError,
handleWorkerMessage,
@@ -32,17 +31,18 @@ import {
HttpRequestOptions,
openPromise,
Headers,
- CoreApiEnvelope,
- CoreApiResponse,
- CoreApiResponseSuccess,
- WalletNotification,
WALLET_EXCHANGE_PROTOCOL_VERSION,
WALLET_MERCHANT_PROTOCOL_VERSION,
- bytesToString,
- stringToBytes,
} from "@gnu-taler/taler-wallet-core";
import fs from "fs";
+import { WalletNotification } from "../../taler-wallet-core/node_modules/@gnu-taler/taler-util/lib/notifications.js";
+import { TalerErrorCode } from "../../taler-wallet-core/node_modules/@gnu-taler/taler-util/lib/taler-error-codes.js";
+import {
+ CoreApiEnvelope,
+ CoreApiResponse,
+ CoreApiResponseSuccess,
+} from "../../taler-wallet-core/node_modules/@gnu-taler/taler-util/lib/walletTypes.js";
export { handleWorkerError, handleWorkerMessage };
diff --git a/packages/taler-wallet-android/tsconfig.json b/packages/taler-wallet-android/tsconfig.json
index 37fda3c38..62be133ef 100644
--- a/packages/taler-wallet-android/tsconfig.json
+++ b/packages/taler-wallet-android/tsconfig.json
@@ -8,7 +8,7 @@
"module": "ESNext",
"moduleResolution": "node",
"sourceMap": true,
- "lib": ["es6",],
+ "lib": ["es6"],
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true,