@pafi-dev/issuer 0.38.0 → 0.38.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
|
@@ -5421,7 +5421,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
5421
5421
|
};
|
|
5422
5422
|
|
|
5423
5423
|
// src/index.ts
|
|
5424
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.38.
|
|
5424
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.38.1" : "dev";
|
|
5425
5425
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5426
5426
|
0 && (module.exports = {
|
|
5427
5427
|
AdapterMisconfiguredError,
|
package/dist/index.js
CHANGED
|
@@ -5237,7 +5237,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
5237
5237
|
};
|
|
5238
5238
|
|
|
5239
5239
|
// src/index.ts
|
|
5240
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.38.
|
|
5240
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.38.1" : "dev";
|
|
5241
5241
|
export {
|
|
5242
5242
|
AdapterMisconfiguredError,
|
|
5243
5243
|
AuthError,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pafi-dev/issuer",
|
|
3
|
-
"version": "0.38.
|
|
3
|
+
"version": "0.38.1",
|
|
4
4
|
"description": "Issuer backend API and services for the PAFI point token system",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -86,16 +86,9 @@
|
|
|
86
86
|
"files": [
|
|
87
87
|
"dist"
|
|
88
88
|
],
|
|
89
|
-
"scripts": {
|
|
90
|
-
"build": "tsup",
|
|
91
|
-
"test": "vitest run --passWithNoTests",
|
|
92
|
-
"test:watch": "vitest",
|
|
93
|
-
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
94
|
-
"typecheck": "tsc --noEmit"
|
|
95
|
-
},
|
|
96
89
|
"dependencies": {
|
|
97
|
-
"
|
|
98
|
-
"
|
|
90
|
+
"jose": "^5.9.0",
|
|
91
|
+
"@pafi-dev/core": "0.24.0"
|
|
99
92
|
},
|
|
100
93
|
"peerDependencies": {
|
|
101
94
|
"@nestjs/common": "^10.0.0",
|
|
@@ -114,5 +107,12 @@
|
|
|
114
107
|
"viem": "^2.21.0",
|
|
115
108
|
"vitest": "^2.0.0"
|
|
116
109
|
},
|
|
117
|
-
"license": "Apache-2.0"
|
|
118
|
-
|
|
110
|
+
"license": "Apache-2.0",
|
|
111
|
+
"scripts": {
|
|
112
|
+
"build": "tsup",
|
|
113
|
+
"test": "vitest run --passWithNoTests",
|
|
114
|
+
"test:watch": "vitest",
|
|
115
|
+
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
116
|
+
"typecheck": "tsc --noEmit"
|
|
117
|
+
}
|
|
118
|
+
}
|