@qrauth/node 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -19,7 +19,7 @@ const qrauth = new QRAuth({
19
19
 
20
20
  // Generate a verified QR code
21
21
  const qr = await qrauth.create({
22
- destination: 'https://parking.gr/pay',
22
+ destination: 'https://municipal-parking.com/pay',
23
23
  location: { lat: 40.63, lng: 22.94 },
24
24
  expiresIn: '1y',
25
25
  });
package/dist/client.d.ts CHANGED
@@ -9,7 +9,7 @@ import type { QRAuthOptions, CreateQRCodeOptions, QRCodeResponse, ListQRCodesOpt
9
9
  * const qrauth = new QRAuth({ apiKey: process.env.QRAUTH_API_KEY! });
10
10
  *
11
11
  * const qr = await qrauth.create({
12
- * destination: 'https://parking.gr/pay',
12
+ * destination: 'https://municipal-parking.com/pay',
13
13
  * location: { lat: 40.63, lng: 22.94 },
14
14
  * expiresIn: '1y',
15
15
  * });
package/dist/client.js CHANGED
@@ -10,7 +10,7 @@ const DEFAULT_BASE_URL = 'https://qrauth.io';
10
10
  * const qrauth = new QRAuth({ apiKey: process.env.QRAUTH_API_KEY! });
11
11
  *
12
12
  * const qr = await qrauth.create({
13
- * destination: 'https://parking.gr/pay',
13
+ * destination: 'https://municipal-parking.com/pay',
14
14
  * location: { lat: 40.63, lng: 22.94 },
15
15
  * expiresIn: '1y',
16
16
  * });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrauth/node",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Official Node.js SDK for QRAuth — cryptographic QR code verification",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,10 +28,19 @@
28
28
  "ecdsa",
29
29
  "anti-fraud"
30
30
  ],
31
+ "author": {
32
+ "name": "Gernard Cerma",
33
+ "email": "aris@progressnet.gr",
34
+ "url": "https://github.com/aristech"
35
+ },
31
36
  "license": "MIT",
37
+ "homepage": "https://qrauth.io",
38
+ "bugs": {
39
+ "url": "https://github.com/qrauth-io/qrauth/issues"
40
+ },
32
41
  "repository": {
33
42
  "type": "git",
34
- "url": "https://github.com/qrauth/qrauth"
43
+ "url": "https://github.com/qrauth-io/qrauth"
35
44
  },
36
45
  "engines": {
37
46
  "node": ">=18"