@pafi-dev/issuer 0.15.1 → 0.16.0
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
|
@@ -4698,7 +4698,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
4698
4698
|
};
|
|
4699
4699
|
|
|
4700
4700
|
// src/index.ts
|
|
4701
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.
|
|
4701
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.16.0" : "dev";
|
|
4702
4702
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4703
4703
|
0 && (module.exports = {
|
|
4704
4704
|
AdapterMisconfiguredError,
|
package/dist/index.js
CHANGED
|
@@ -4517,7 +4517,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
4517
4517
|
};
|
|
4518
4518
|
|
|
4519
4519
|
// src/index.ts
|
|
4520
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.
|
|
4520
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.16.0" : "dev";
|
|
4521
4521
|
export {
|
|
4522
4522
|
AdapterMisconfiguredError,
|
|
4523
4523
|
AuthError,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pafi-dev/issuer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Issuer backend API and services for the PAFI point token system",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -60,16 +60,9 @@
|
|
|
60
60
|
"files": [
|
|
61
61
|
"dist"
|
|
62
62
|
],
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "tsup",
|
|
65
|
-
"test": "vitest run --passWithNoTests",
|
|
66
|
-
"test:watch": "vitest",
|
|
67
|
-
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
68
|
-
"typecheck": "tsc --noEmit"
|
|
69
|
-
},
|
|
70
63
|
"dependencies": {
|
|
71
|
-
"
|
|
72
|
-
"
|
|
64
|
+
"jose": "^5.9.0",
|
|
65
|
+
"@pafi-dev/core": "0.15.0"
|
|
73
66
|
},
|
|
74
67
|
"peerDependencies": {
|
|
75
68
|
"@nestjs/common": "^10.0.0",
|
|
@@ -88,5 +81,12 @@
|
|
|
88
81
|
"viem": "^2.21.0",
|
|
89
82
|
"vitest": "^2.0.0"
|
|
90
83
|
},
|
|
91
|
-
"license": "Apache-2.0"
|
|
92
|
-
|
|
84
|
+
"license": "Apache-2.0",
|
|
85
|
+
"scripts": {
|
|
86
|
+
"build": "tsup",
|
|
87
|
+
"test": "vitest run --passWithNoTests",
|
|
88
|
+
"test:watch": "vitest",
|
|
89
|
+
"test:cov": "vitest run --coverage --passWithNoTests",
|
|
90
|
+
"typecheck": "tsc --noEmit"
|
|
91
|
+
}
|
|
92
|
+
}
|