@pafi-dev/issuer 0.28.0 → 0.28.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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +12 -12
package/dist/index.cjs
CHANGED
|
@@ -5213,7 +5213,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
5213
5213
|
};
|
|
5214
5214
|
|
|
5215
5215
|
// src/index.ts
|
|
5216
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.28.
|
|
5216
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.28.1" : "dev";
|
|
5217
5217
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5218
5218
|
0 && (module.exports = {
|
|
5219
5219
|
AdapterMisconfiguredError,
|
package/dist/index.js
CHANGED
|
@@ -5029,7 +5029,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
5029
5029
|
};
|
|
5030
5030
|
|
|
5031
5031
|
// src/index.ts
|
|
5032
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.28.
|
|
5032
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.28.1" : "dev";
|
|
5033
5033
|
export {
|
|
5034
5034
|
AdapterMisconfiguredError,
|
|
5035
5035
|
AuthError,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pafi-dev/issuer",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.1",
|
|
4
4
|
"description": "Issuer backend API and services for the PAFI point token system",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -73,16 +73,9 @@
|
|
|
73
73
|
"files": [
|
|
74
74
|
"dist"
|
|
75
75
|
],
|
|
76
|
-
"scripts": {
|
|
77
|
-
"build": "tsup",
|
|
78
|
-
"test": "vitest run --passWithNoTests",
|
|
79
|
-
"test:watch": "vitest",
|
|
80
|
-
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
81
|
-
"typecheck": "tsc --noEmit"
|
|
82
|
-
},
|
|
83
76
|
"dependencies": {
|
|
84
|
-
"
|
|
85
|
-
"
|
|
77
|
+
"jose": "^5.9.0",
|
|
78
|
+
"@pafi-dev/core": "0.23.0"
|
|
86
79
|
},
|
|
87
80
|
"peerDependencies": {
|
|
88
81
|
"@nestjs/common": "^10.0.0",
|
|
@@ -101,5 +94,12 @@
|
|
|
101
94
|
"viem": "^2.21.0",
|
|
102
95
|
"vitest": "^2.0.0"
|
|
103
96
|
},
|
|
104
|
-
"license": "Apache-2.0"
|
|
105
|
-
|
|
97
|
+
"license": "Apache-2.0",
|
|
98
|
+
"scripts": {
|
|
99
|
+
"build": "tsup",
|
|
100
|
+
"test": "vitest run --passWithNoTests",
|
|
101
|
+
"test:watch": "vitest",
|
|
102
|
+
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
103
|
+
"typecheck": "tsc --noEmit"
|
|
104
|
+
}
|
|
105
|
+
}
|