@digitaldefiance/suite-core-lib 1.0.6 → 1.0.8

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,16 @@ MIT © [Digital Defiance](https://github.com/digitaldefiance)
327
327
 
328
328
  ## ChangeLog
329
329
 
330
+ ## v1.0.8: ITokenUser HotFix
331
+
332
+ - Wed Oct 15 2025 14:26:00 GMT-0700 (Pacific Daylight Time)
333
+ - Export ITokenUser
334
+
335
+ ## v1.0.7: ITokenUser
336
+
337
+ - Wed Oct 15 2025 14:22:00 GMT-0700 (Pacific Daylight Time)
338
+ - Add missing ITokenUser
339
+
330
340
  ## v1.0.6: Version bump/hotfix
331
341
 
332
342
  - Sun Oct 12 2025 17:52:00 GMT-0700 (Pacific Daylight Time)
@@ -15,4 +15,5 @@ export * from './has-timestamps';
15
15
  export * from './has-updater';
16
16
  export * from './has-updates';
17
17
  export * from './models';
18
+ export * from './token-user';
18
19
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC"}
@@ -31,4 +31,5 @@ __exportStar(require("./has-timestamps"), exports);
31
31
  __exportStar(require("./has-updater"), exports);
32
32
  __exportStar(require("./has-updates"), exports);
33
33
  __exportStar(require("./models"), exports);
34
+ __exportStar(require("./token-user"), exports);
34
35
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,uDAAqC;AACrC,0CAAwB;AACxB,8CAA4B;AAC5B,gDAA8B;AAC9B,wCAAsB;AACtB,oDAAkC;AAClC,iDAA+B;AAC/B,gDAA8B;AAC9B,2CAAyB;AACzB,oDAAkC;AAClC,qDAAmC;AACnC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,gDAA8B;AAC9B,2CAAyB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,uDAAqC;AACrC,0CAAwB;AACxB,8CAA4B;AAC5B,gDAA8B;AAC9B,wCAAsB;AACtB,oDAAkC;AAClC,iDAA+B;AAC/B,gDAA8B;AAC9B,2CAAyB;AACzB,oDAAkC;AAClC,qDAAmC;AACnC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,gDAA8B;AAC9B,2CAAyB;AACzB,+CAA6B"}
@@ -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.6",
3
+ "version": "1.0.8",
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",