@digitaldefiance/suite-core-lib 1.0.5 → 1.0.7

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/README.md CHANGED
@@ -327,6 +327,17 @@ MIT © [Digital Defiance](https://github.com/digitaldefiance)
327
327
 
328
328
  ## ChangeLog
329
329
 
330
+ ## v1.0.7: ITokenUser
331
+
332
+ - Wed Oct 15 2025 14:22:00 GMT-0700 (Pacific Daylight Time)
333
+ - Add missing ITokenUser
334
+
335
+ ## v1.0.6: Version bump/hotfix
336
+
337
+ - Sun Oct 12 2025 17:52:00 GMT-0700 (Pacific Daylight Time)
338
+ - Actually include failable result
339
+ - Version bump of libraries
340
+
330
341
  ## v1.0.3: Add failable-result
331
342
 
332
343
  - Sun Oct 12 2025 15:48:00 GMT-0700 (Pacific Daylight Time)
@@ -0,0 +1,9 @@
1
+ import { ITokenRoleDTO } from './dto/token-role';
2
+ /**
3
+ * Interface for the user object stored in the JWT token
4
+ */
5
+ export interface ITokenUser {
6
+ userId: string;
7
+ roles: ITokenRoleDTO[];
8
+ }
9
+ //# sourceMappingURL=token-user.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"token-user.d.ts","sourceRoot":"","sources":["../../src/interfaces/token-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,aAAa,EAAE,CAAC;CACxB"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=token-user.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"token-user.js","sourceRoot":"","sources":["../../src/interfaces/token-user.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/suite-core-lib",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Generic user system and document system common core for applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,8 +16,8 @@
16
16
  "publish:public": "npm publish --access public"
17
17
  },
18
18
  "dependencies": {
19
- "@digitaldefiance/ecies-lib": "1.0.27",
20
- "@digitaldefiance/i18n-lib": "1.1.5",
19
+ "@digitaldefiance/ecies-lib": "1.0.28",
20
+ "@digitaldefiance/i18n-lib": "1.1.6",
21
21
  "@digitaldefiance/node-ecies-lib": "1.0.9"
22
22
  },
23
23
  "devDependencies": {