@unchainedshop/ticketing 2.14.2 → 2.15.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/package.json +11 -11
- package/readme.md +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/ticketing",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.1",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -41,20 +41,20 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/unchainedshop/unchained#readme",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@unchainedshop/api": "^2.
|
|
45
|
-
"@unchainedshop/core-files": "^2.
|
|
46
|
-
"@unchainedshop/core-warehousing": "^2.
|
|
47
|
-
"@unchainedshop/core-worker": "^2.
|
|
48
|
-
"@unchainedshop/events": "^2.
|
|
49
|
-
"@unchainedshop/logger": "^2.
|
|
50
|
-
"@unchainedshop/mongodb": "^2.
|
|
44
|
+
"@unchainedshop/api": "^2.15.1",
|
|
45
|
+
"@unchainedshop/core-files": "^2.15.1",
|
|
46
|
+
"@unchainedshop/core-warehousing": "^2.15.1",
|
|
47
|
+
"@unchainedshop/core-worker": "^2.15.1",
|
|
48
|
+
"@unchainedshop/events": "^2.15.1",
|
|
49
|
+
"@unchainedshop/logger": "^2.15.1",
|
|
50
|
+
"@unchainedshop/mongodb": "^2.15.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@hyperlink/node-apn": "^5.1.4",
|
|
54
|
-
"express": "^4.
|
|
54
|
+
"express": "^4.21.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@types/node": "^
|
|
58
|
-
"@unchainedshop/types": "^2.
|
|
57
|
+
"@types/node": "^22.7.5",
|
|
58
|
+
"@unchainedshop/types": "^2.15.1"
|
|
59
59
|
}
|
|
60
60
|
}
|
package/readme.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Unchained Ticketing Extension
|
|
2
2
|
|
|
3
|
+
## Prepare Apple Certificate
|
|
4
|
+
|
|
5
|
+
1. Add a new Pass Type ID on [developer.apple.com](https://developer.apple.com/account), then gernerate fresh production certificate. Download the Certificate and import it into your Keychain.
|
|
6
|
+
|
|
7
|
+
2. Export with Keychain: Select the "Certificates" Tab, then the Pass Type ID, then select both the ID and the key, export in p12 format.
|
|
8
|
+
|
|
9
|
+
3. Convert to PEM
|
|
10
|
+
It's important you set a PEM passphrase as it is required for Unchained Ticketing
|
|
11
|
+
```
|
|
12
|
+
openssl pkcs12 -in Zertifikate.p12 -legacy -clcerts -out cert_and_key.pem
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
4. Configure the path and your Team ID by Env:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
PASS_CERTIFICATE_PATH=./cert_and_key.pem
|
|
19
|
+
PASS_CERTIFICATE_SECRET=YOUR_PEM_PASSPHRASE
|
|
20
|
+
PASS_TEAM_ID=SSCB95CV6U
|
|
21
|
+
```
|
|
22
|
+
|
|
3
23
|
## Setup Example
|
|
4
24
|
|
|
5
25
|
boot.js:
|