@pristine-ts/jwt 1.0.411 → 1.0.416

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.
@@ -1,4 +1,16 @@
1
1
  /**
2
2
  * This decorator can be used to inject the decoded JWT payload of a request in a parameter of a method in a controller.
3
3
  */
4
- export declare const jwtPayload: () => (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
4
+ export declare const jwtPayload: () => (
5
+ /**
6
+ * The class on which the decorator is used.
7
+ */
8
+ target: any,
9
+ /**
10
+ * The method on which the decorator is used.
11
+ */
12
+ propertyKey: string | symbol,
13
+ /**
14
+ * The index of the parameter for which the decorator is used.
15
+ */
16
+ parameterIndex: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pristine-ts/jwt",
3
- "version": "1.0.411",
3
+ "version": "1.0.416",
4
4
  "description": "",
5
5
  "module": "dist/lib/esm/jwt.module.js",
6
6
  "main": "dist/lib/cjs/jwt.module.js",
@@ -20,9 +20,9 @@
20
20
  "access": "public"
21
21
  },
22
22
  "dependencies": {
23
- "@pristine-ts/common": "^1.0.411",
24
- "@pristine-ts/networking": "^1.0.411",
25
- "@pristine-ts/security": "^1.0.411",
23
+ "@pristine-ts/common": "^1.0.416",
24
+ "@pristine-ts/networking": "^1.0.416",
25
+ "@pristine-ts/security": "^1.0.416",
26
26
  "jsonwebtoken": "^9.0.2"
27
27
  },
28
28
  "devDependencies": {
@@ -62,5 +62,5 @@
62
62
  "src/*.{js,ts}"
63
63
  ]
64
64
  },
65
- "gitHead": "1f166fa8e3133649185756b404249dff51b59d79"
65
+ "gitHead": "8b89ec32581da344372c3da63edd87703e0690bf"
66
66
  }