starti.app 1.0.1 → 1.0.2

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.
@@ -0,0 +1,2 @@
1
+ import QrScanner from './qrscanner';
2
+ export { QrScanner };
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const qrscanner_1 = require("./qrscanner");
4
+ exports.QrScanner = qrscanner_1.default;
package/dist/qrscanner.js CHANGED
@@ -20,7 +20,7 @@ class QrScanner {
20
20
  try {
21
21
  const qrScannerIntegration = window.QrScannerIntegration;
22
22
  if (!qrScannerIntegration) {
23
- resolve('scanner virker kun i start-i-app');
23
+ resolve('Scanner virker kun i starti.app');
24
24
  return;
25
25
  }
26
26
  qrScannerIntegration.startQrCodeScanner();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starti.app",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Use this package for easy communication with the starti.app API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",