@pafi-dev/issuer 0.9.0 → 0.9.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 +11 -1
package/dist/index.cjs
CHANGED
|
@@ -4572,7 +4572,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
4572
4572
|
};
|
|
4573
4573
|
|
|
4574
4574
|
// src/index.ts
|
|
4575
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.9.
|
|
4575
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.9.1" : "dev";
|
|
4576
4576
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4577
4577
|
0 && (module.exports = {
|
|
4578
4578
|
AdapterMisconfiguredError,
|
package/dist/index.js
CHANGED
|
@@ -4391,7 +4391,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
4391
4391
|
};
|
|
4392
4392
|
|
|
4393
4393
|
// src/index.ts
|
|
4394
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.9.
|
|
4394
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.9.1" : "dev";
|
|
4395
4395
|
export {
|
|
4396
4396
|
AdapterMisconfiguredError,
|
|
4397
4397
|
AuthError,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pafi-dev/issuer",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Issuer backend API and services for the PAFI point token system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -38,6 +38,16 @@
|
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
+
"typesVersions": {
|
|
42
|
+
"*": {
|
|
43
|
+
"http": [
|
|
44
|
+
"./dist/http/index.d.ts"
|
|
45
|
+
],
|
|
46
|
+
"nestjs": [
|
|
47
|
+
"./dist/nestjs/index.d.ts"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
41
51
|
"files": [
|
|
42
52
|
"dist"
|
|
43
53
|
],
|