@bitblit/ratchet-common 6.1.168-alpha → 6.1.170-alpha

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.
@@ -6,4 +6,5 @@ export interface JwtTokenBase {
6
6
  nbf?: number;
7
7
  iat?: number;
8
8
  jti?: string;
9
+ scope?: string;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-common",
3
- "version": "6.1.168-alpha",
3
+ "version": "6.1.170-alpha",
4
4
  "description": "Common tools for general use",
5
5
  "type": "module",
6
6
  "files": [
@@ -11,4 +11,5 @@ export interface JwtTokenBase {
11
11
  nbf?: number; // Not Before
12
12
  iat?: number; // Issued at (time of creation)
13
13
  jti?: string; // Unique ID for the token
14
+ scope?: string; // Space separated string of scopes
14
15
  }