@rapidrest/core 1.1.0 → 1.2.0

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.
Files changed (83) hide show
  1. package/dist/lib/AlertUtils.js +0 -6
  2. package/dist/lib/AlertUtils.js.map +1 -1
  3. package/dist/lib/ApiError.js +0 -4
  4. package/dist/lib/ApiError.js.map +1 -1
  5. package/dist/lib/ClassLoader.js +9 -9
  6. package/dist/lib/ClassLoader.js.map +1 -1
  7. package/dist/lib/JWTUtils.js +11 -8
  8. package/dist/lib/JWTUtils.js.map +1 -1
  9. package/dist/lib/MessagingUtils.js +6 -7
  10. package/dist/lib/MessagingUtils.js.map +1 -1
  11. package/dist/lib/NotificationsUtils.js +0 -2
  12. package/dist/lib/NotificationsUtils.js.map +1 -1
  13. package/dist/lib/ObjectFactory.js +40 -16
  14. package/dist/lib/ObjectFactory.js.map +1 -1
  15. package/dist/lib/TelemetryUtils.js +6 -30
  16. package/dist/lib/TelemetryUtils.js.map +1 -1
  17. package/dist/lib/UserUtils.js +0 -32
  18. package/dist/lib/UserUtils.js.map +1 -1
  19. package/dist/lib/decorators/ObjectDecorators.js +1 -5
  20. package/dist/lib/decorators/ObjectDecorators.js.map +1 -1
  21. package/dist/lib/threads/ThreadPool.js +6 -14
  22. package/dist/lib/threads/ThreadPool.js.map +1 -1
  23. package/dist/lib/threads/ThreadWorker.js +0 -1
  24. package/dist/lib/threads/ThreadWorker.js.map +1 -1
  25. package/dist/types/ObjectFactory.d.ts +5 -4
  26. package/dist/types/UserUtils.d.ts +0 -12
  27. package/dist/types/decorators/ObjectDecorators.d.ts +1 -5
  28. package/dist/types/threads/ThreadPool.d.ts +0 -1
  29. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Config.md +4 -18
  30. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Destroy.md +1 -1
  31. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Init.md +3 -3
  32. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Inject.md +6 -18
  33. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Logger.md +2 -2
  34. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Nullable.md +2 -2
  35. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Validator.md +2 -16
  36. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/type-aliases/ValidatorFunction.md +2 -2
  37. package/docs/reference/classes/AlertUtils.md +10 -10
  38. package/docs/reference/classes/ApiError.md +10 -22
  39. package/docs/reference/classes/ClassLoader.md +17 -17
  40. package/docs/reference/classes/Event.md +8 -8
  41. package/docs/reference/classes/EventUtils.md +4 -4
  42. package/docs/reference/classes/FileUtils.md +17 -17
  43. package/docs/reference/classes/JWTUtils.md +5 -5
  44. package/docs/reference/classes/MessagingUtils.md +12 -12
  45. package/docs/reference/classes/OASUtils.md +8 -8
  46. package/docs/reference/classes/ObjectFactory.md +25 -23
  47. package/docs/reference/classes/ObjectUtils.md +2 -2
  48. package/docs/reference/classes/StringUtils.md +8 -8
  49. package/docs/reference/classes/ThreadPool.md +25 -25
  50. package/docs/reference/classes/ThreadWorker.md +6 -6
  51. package/docs/reference/classes/UserUtils.md +10 -64
  52. package/docs/reference/classes/ValidationUtils.md +14 -14
  53. package/docs/reference/enumerations/AlertPriority.md +6 -6
  54. package/docs/reference/enumerations/JWTUtilsCompressionMethods.md +2 -2
  55. package/docs/reference/enumerations/WorkerMessageType.md +5 -5
  56. package/docs/reference/functions/sleep.md +3 -3
  57. package/docs/reference/interfaces/Alert.md +14 -14
  58. package/docs/reference/interfaces/AlertAttachment.md +6 -6
  59. package/docs/reference/interfaces/AlertClose.md +5 -5
  60. package/docs/reference/interfaces/AlertUtilsAttachmentOptions.md +6 -6
  61. package/docs/reference/interfaces/AlertUtilsOptions.md +5 -5
  62. package/docs/reference/interfaces/InstanceOptions.md +13 -7
  63. package/docs/reference/interfaces/JWTPayload.md +15 -15
  64. package/docs/reference/interfaces/JWTUser.md +6 -6
  65. package/docs/reference/interfaces/JWTUtilsConfig.md +6 -6
  66. package/docs/reference/interfaces/JWTUtilsPayloadKeyOptions.md +8 -8
  67. package/docs/reference/interfaces/JWTUtilsPayloadOptions.md +5 -5
  68. package/docs/reference/interfaces/JWTUtilsPayloadPasswordOptions.md +9 -9
  69. package/docs/reference/interfaces/NewEvent.md +2 -2
  70. package/docs/reference/interfaces/OriginSettings.md +3 -3
  71. package/docs/reference/interfaces/SlackConfig.md +4 -4
  72. package/docs/reference/interfaces/SmtpAuth.md +3 -3
  73. package/docs/reference/interfaces/SmtpConfig.md +6 -6
  74. package/docs/reference/interfaces/Template.md +24 -24
  75. package/docs/reference/interfaces/TemplateMapBase.md +2 -2
  76. package/docs/reference/interfaces/TwilioConfig.md +5 -5
  77. package/docs/reference/interfaces/WorkerMessage.md +4 -4
  78. package/docs/reference/interfaces/WorkerOptions.md +11 -11
  79. package/docs/reference/type-aliases/BooleanFunc.md +2 -2
  80. package/docs/reference/type-aliases/TemplateMap.md +1 -1
  81. package/docs/reference/type-aliases/WorkerCallback.md +2 -2
  82. package/docs/reference/variables/Logger.md +5 -1
  83. package/package.json +96 -96
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: Alert
8
8
 
9
- Defined in: [src/AlertUtils.ts:40](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L40)
9
+ Defined in: [src/AlertUtils.ts:40](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L40)
10
10
 
11
11
  Describes a single system failure or other similar critical event that requires immediate attention.
12
12
 
@@ -16,7 +16,7 @@ Describes a single system failure or other similar critical event that requires
16
16
 
17
17
  > **alias**: `string`
18
18
 
19
- Defined in: [src/AlertUtils.ts:42](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L42)
19
+ Defined in: [src/AlertUtils.ts:42](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L42)
20
20
 
21
21
  The name of the alert that uniquely identifies the report for purposes of de-duplication.
22
22
 
@@ -26,7 +26,7 @@ The name of the alert that uniquely identifies the report for purposes of de-dup
26
26
 
27
27
  > **description**: `string`
28
28
 
29
- Defined in: [src/AlertUtils.ts:44](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L44)
29
+ Defined in: [src/AlertUtils.ts:44](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L44)
30
30
 
31
31
  The detailed information about the event that has occurred.
32
32
 
@@ -34,9 +34,9 @@ The detailed information about the event that has occurred.
34
34
 
35
35
  ### details?
36
36
 
37
- > `optional` **details**: `any`
37
+ > `optional` **details?**: `any`
38
38
 
39
- Defined in: [src/AlertUtils.ts:46](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L46)
39
+ Defined in: [src/AlertUtils.ts:46](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L46)
40
40
 
41
41
  A key-value map of custom information about the alert.
42
42
 
@@ -44,9 +44,9 @@ A key-value map of custom information about the alert.
44
44
 
45
45
  ### entity?
46
46
 
47
- > `optional` **entity**: `string`
47
+ > `optional` **entity?**: `string`
48
48
 
49
- Defined in: [src/AlertUtils.ts:48](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L48)
49
+ Defined in: [src/AlertUtils.ts:48](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L48)
50
50
 
51
51
  Used to specify a category or problem domain for filtering.
52
52
 
@@ -56,7 +56,7 @@ Used to specify a category or problem domain for filtering.
56
56
 
57
57
  > **message**: `string`
58
58
 
59
- Defined in: [src/AlertUtils.ts:50](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L50)
59
+ Defined in: [src/AlertUtils.ts:50](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L50)
60
60
 
61
61
  The basic summary of the alert that describes the event.
62
62
 
@@ -64,9 +64,9 @@ The basic summary of the alert that describes the event.
64
64
 
65
65
  ### note?
66
66
 
67
- > `optional` **note**: `string`
67
+ > `optional` **note?**: `string`
68
68
 
69
- Defined in: [src/AlertUtils.ts:52](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L52)
69
+ Defined in: [src/AlertUtils.ts:52](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L52)
70
70
 
71
71
  Additional detail about the event.
72
72
 
@@ -76,7 +76,7 @@ Additional detail about the event.
76
76
 
77
77
  > **priority**: [`AlertPriority`](../enumerations/AlertPriority.md)
78
78
 
79
- Defined in: [src/AlertUtils.ts:54](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L54)
79
+ Defined in: [src/AlertUtils.ts:54](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L54)
80
80
 
81
81
  The priority level of the alert.
82
82
 
@@ -86,7 +86,7 @@ The priority level of the alert.
86
86
 
87
87
  > **source**: `string`
88
88
 
89
- Defined in: [src/AlertUtils.ts:56](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L56)
89
+ Defined in: [src/AlertUtils.ts:56](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L56)
90
90
 
91
91
  The source of the alert. Can be a pod/service name, IP address or other unique identifier.
92
92
 
@@ -94,8 +94,8 @@ The source of the alert. Can be a pod/service name, IP address or other unique i
94
94
 
95
95
  ### tags?
96
96
 
97
- > `optional` **tags**: `string`[]
97
+ > `optional` **tags?**: `string`[]
98
98
 
99
- Defined in: [src/AlertUtils.ts:58](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L58)
99
+ Defined in: [src/AlertUtils.ts:58](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L58)
100
100
 
101
101
  A list of unique tags to associate with the event.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: AlertAttachment
8
8
 
9
- Defined in: [src/AlertUtils.ts:64](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L64)
9
+ Defined in: [src/AlertUtils.ts:64](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L64)
10
10
 
11
11
  Describes a single attachment that can be added to an alert.
12
12
 
@@ -16,7 +16,7 @@ Describes a single attachment that can be added to an alert.
16
16
 
17
17
  > **contentType**: `string`
18
18
 
19
- Defined in: [src/AlertUtils.ts:66](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L66)
19
+ Defined in: [src/AlertUtils.ts:66](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L66)
20
20
 
21
21
  The content-type of the attachment.
22
22
 
@@ -26,7 +26,7 @@ The content-type of the attachment.
26
26
 
27
27
  > **data**: `Buffer`\<`ArrayBufferLike`\> \| `ReadStream`
28
28
 
29
- Defined in: [src/AlertUtils.ts:68](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L68)
29
+ Defined in: [src/AlertUtils.ts:68](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L68)
30
30
 
31
31
  The contents of the attachment.
32
32
 
@@ -36,7 +36,7 @@ The contents of the attachment.
36
36
 
37
37
  > **filename**: `string`
38
38
 
39
- Defined in: [src/AlertUtils.ts:70](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L70)
39
+ Defined in: [src/AlertUtils.ts:70](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L70)
40
40
 
41
41
  The name of the attachment.
42
42
 
@@ -44,8 +44,8 @@ The name of the attachment.
44
44
 
45
45
  ### size?
46
46
 
47
- > `optional` **size**: `number`
47
+ > `optional` **size?**: `number`
48
48
 
49
- Defined in: [src/AlertUtils.ts:72](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L72)
49
+ Defined in: [src/AlertUtils.ts:72](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L72)
50
50
 
51
51
  The size of the attachment.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: AlertClose
8
8
 
9
- Defined in: [src/AlertUtils.ts:78](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L78)
9
+ Defined in: [src/AlertUtils.ts:78](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L78)
10
10
 
11
11
  Describes a request to close an alert.
12
12
 
@@ -14,9 +14,9 @@ Describes a request to close an alert.
14
14
 
15
15
  ### note?
16
16
 
17
- > `optional` **note**: `string`
17
+ > `optional` **note?**: `string`
18
18
 
19
- Defined in: [src/AlertUtils.ts:82](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L82)
19
+ Defined in: [src/AlertUtils.ts:82](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L82)
20
20
 
21
21
  Additional alert note to add.
22
22
 
@@ -24,8 +24,8 @@ Additional alert note to add.
24
24
 
25
25
  ### source?
26
26
 
27
- > `optional` **source**: `string`
27
+ > `optional` **source?**: `string`
28
28
 
29
- Defined in: [src/AlertUtils.ts:80](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L80)
29
+ Defined in: [src/AlertUtils.ts:80](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L80)
30
30
 
31
31
  Display name of the request source.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: AlertUtilsAttachmentOptions
8
8
 
9
- Defined in: [src/AlertUtils.ts:100](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L100)
9
+ Defined in: [src/AlertUtils.ts:100](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L100)
10
10
 
11
11
  Describes the alert attachment options to use when creating an alert.
12
12
 
@@ -16,7 +16,7 @@ Describes the alert attachment options to use when creating an alert.
16
16
 
17
17
  > **files**: [`AlertAttachment`](AlertAttachment.md)[]
18
18
 
19
- Defined in: [src/AlertUtils.ts:102](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L102)
19
+ Defined in: [src/AlertUtils.ts:102](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L102)
20
20
 
21
21
  The attachment files to upload with the alert.
22
22
 
@@ -24,9 +24,9 @@ The attachment files to upload with the alert.
24
24
 
25
25
  ### indexFile?
26
26
 
27
- > `optional` **indexFile**: `string`
27
+ > `optional` **indexFile?**: `string`
28
28
 
29
- Defined in: [src/AlertUtils.ts:104](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L104)
29
+ Defined in: [src/AlertUtils.ts:104](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L104)
30
30
 
31
31
  The name of the index file when the attachment is a zip file.
32
32
 
@@ -34,9 +34,9 @@ The name of the index file when the attachment is a zip file.
34
34
 
35
35
  ### zip?
36
36
 
37
- > `optional` **zip**: `boolean`
37
+ > `optional` **zip?**: `boolean`
38
38
 
39
- Defined in: [src/AlertUtils.ts:109](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L109)
39
+ Defined in: [src/AlertUtils.ts:109](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L109)
40
40
 
41
41
  Set to `true` to to package all files into a single zip before being uploaded, otherwise set to `false` to
42
42
  upload each file individually.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: AlertUtilsOptions
8
8
 
9
- Defined in: [src/AlertUtils.ts:88](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L88)
9
+ Defined in: [src/AlertUtils.ts:88](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L88)
10
10
 
11
11
  The set of configuration options to pass to AlertUtils when creating an instance.
12
12
 
@@ -16,7 +16,7 @@ The set of configuration options to pass to AlertUtils when creating an instance
16
16
 
17
17
  > **auth**: `string`
18
18
 
19
- Defined in: [src/AlertUtils.ts:90](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L90)
19
+ Defined in: [src/AlertUtils.ts:90](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L90)
20
20
 
21
21
  The value of the Authorization header to apply to all outgoing HTTP requests.
22
22
 
@@ -24,9 +24,9 @@ The value of the Authorization header to apply to all outgoing HTTP requests.
24
24
 
25
25
  ### logger?
26
26
 
27
- > `optional` **logger**: `any`
27
+ > `optional` **logger?**: `any`
28
28
 
29
- Defined in: [src/AlertUtils.ts:94](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L94)
29
+ Defined in: [src/AlertUtils.ts:94](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L94)
30
30
 
31
31
  The logging utility to use.
32
32
 
@@ -36,6 +36,6 @@ The logging utility to use.
36
36
 
37
37
  > **serviceUrl**: `string`
38
38
 
39
- Defined in: [src/AlertUtils.ts:92](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/AlertUtils.ts#L92)
39
+ Defined in: [src/AlertUtils.ts:92](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/AlertUtils.ts#L92)
40
40
 
41
41
  The full url of the REST API service that alerts will be sent to.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: InstanceOptions
8
8
 
9
- Defined in: [src/ObjectFactory.ts:11](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/ObjectFactory.ts#L11)
9
+ Defined in: [src/ObjectFactory.ts:11](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/ObjectFactory.ts#L11)
10
10
 
11
11
  The set of options to use when creating new instances of objects.
12
12
 
@@ -14,22 +14,28 @@ The set of options to use when creating new instances of objects.
14
14
 
15
15
  ### args?
16
16
 
17
- > `optional` **args**: `any`[]
17
+ > `optional` **args?**: `any`[]
18
18
 
19
- Defined in: [src/ObjectFactory.ts:12](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/ObjectFactory.ts#L12)
19
+ Defined in: [src/ObjectFactory.ts:13](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/ObjectFactory.ts#L13)
20
+
21
+ The list of arguments to pass to the class constructor.
20
22
 
21
23
  ***
22
24
 
23
25
  ### initialize?
24
26
 
25
- > `optional` **initialize**: `boolean`
27
+ > `optional` **initialize?**: `boolean`
28
+
29
+ Defined in: [src/ObjectFactory.ts:17](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/ObjectFactory.ts#L17)
26
30
 
27
- Defined in: [src/ObjectFactory.ts:14](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/ObjectFactory.ts#L14)
31
+ Set to `true` to perform initialization of the object after creation, otherwise set to `false`. Default is `true`.
28
32
 
29
33
  ***
30
34
 
31
35
  ### name?
32
36
 
33
- > `optional` **name**: `string`
37
+ > `optional` **name?**: `string`
38
+
39
+ Defined in: [src/ObjectFactory.ts:15](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/ObjectFactory.ts#L15)
34
40
 
35
- Defined in: [src/ObjectFactory.ts:13](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/ObjectFactory.ts#L13)
41
+ The unique name of the object instance.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: JWTPayload
8
8
 
9
- Defined in: [src/JWTUtils.ts:38](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L38)
9
+ Defined in: [src/JWTUtils.ts:38](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L38)
10
10
 
11
11
  Describes the payload data structure of signed JWT tokens.
12
12
 
@@ -16,13 +16,13 @@ Describes the payload data structure of signed JWT tokens.
16
16
 
17
17
  ## Indexable
18
18
 
19
- \[`key`: `string`\]: `any`
19
+ > \[`key`: `string`\]: `any`
20
20
 
21
21
  ## Properties
22
22
 
23
23
  ### aud?
24
24
 
25
- > `optional` **aud**: `string` \| `string`[]
25
+ > `optional` **aud?**: `string` \| `string`[]
26
26
 
27
27
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:115
28
28
 
@@ -34,9 +34,9 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:115
34
34
 
35
35
  ### compression?
36
36
 
37
- > `optional` **compression**: `"zlib"`
37
+ > `optional` **compression?**: `"zlib"`
38
38
 
39
- Defined in: [src/JWTUtils.ts:40](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L40)
39
+ Defined in: [src/JWTUtils.ts:40](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L40)
40
40
 
41
41
  Indicates if the payload profile has been compressed and with what method.
42
42
 
@@ -44,9 +44,9 @@ Indicates if the payload profile has been compressed and with what method.
44
44
 
45
45
  ### encryption?
46
46
 
47
- > `optional` **encryption**: `boolean`
47
+ > `optional` **encryption?**: `boolean`
48
48
 
49
- Defined in: [src/JWTUtils.ts:43](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L43)
49
+ Defined in: [src/JWTUtils.ts:43](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L43)
50
50
 
51
51
  Indicates if the payload profile has been encrypted.
52
52
 
@@ -54,7 +54,7 @@ Indicates if the payload profile has been encrypted.
54
54
 
55
55
  ### exp?
56
56
 
57
- > `optional` **exp**: `number`
57
+ > `optional` **exp?**: `number`
58
58
 
59
59
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:116
60
60
 
@@ -66,7 +66,7 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:116
66
66
 
67
67
  ### iat?
68
68
 
69
- > `optional` **iat**: `number`
69
+ > `optional` **iat?**: `number`
70
70
 
71
71
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:118
72
72
 
@@ -78,7 +78,7 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:118
78
78
 
79
79
  ### iss?
80
80
 
81
- > `optional` **iss**: `string`
81
+ > `optional` **iss?**: `string`
82
82
 
83
83
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:113
84
84
 
@@ -90,7 +90,7 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:113
90
90
 
91
91
  ### jti?
92
92
 
93
- > `optional` **jti**: `string`
93
+ > `optional` **jti?**: `string`
94
94
 
95
95
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:119
96
96
 
@@ -102,7 +102,7 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:119
102
102
 
103
103
  ### nbf?
104
104
 
105
- > `optional` **nbf**: `number`
105
+ > `optional` **nbf?**: `number`
106
106
 
107
107
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:117
108
108
 
@@ -116,7 +116,7 @@ Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:117
116
116
 
117
117
  > **profile**: `string` \| [`JWTUser`](JWTUser.md)
118
118
 
119
- Defined in: [src/JWTUtils.ts:46](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L46)
119
+ Defined in: [src/JWTUtils.ts:46](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L46)
120
120
 
121
121
  The user profile of the authenticated user the token is valid for.
122
122
 
@@ -126,7 +126,7 @@ The user profile of the authenticated user the token is valid for.
126
126
 
127
127
  > **sessionUid**: `string`
128
128
 
129
- Defined in: [src/JWTUtils.ts:49](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L49)
129
+ Defined in: [src/JWTUtils.ts:49](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L49)
130
130
 
131
131
  The unique identifier of the user's authentication session.
132
132
 
@@ -134,7 +134,7 @@ The unique identifier of the user's authentication session.
134
134
 
135
135
  ### sub?
136
136
 
137
- > `optional` **sub**: `string`
137
+ > `optional` **sub?**: `string`
138
138
 
139
139
  Defined in: node\_modules/@types/jsonwebtoken/index.d.ts:114
140
140
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: JWTUser
8
8
 
9
- Defined in: [src/JWTUtils.ts:13](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L13)
9
+ Defined in: [src/JWTUtils.ts:13](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L13)
10
10
 
11
11
  Describes user data that is encoded in the payload of a JWT token.
12
12
 
@@ -20,7 +20,7 @@ Jean-Philippe Steinmetz <rapidrests@gmail.com>
20
20
 
21
21
  > **name**: `string`
22
22
 
23
- Defined in: [src/JWTUtils.ts:22](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L22)
23
+ Defined in: [src/JWTUtils.ts:22](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L22)
24
24
 
25
25
  The unique name of the user.
26
26
 
@@ -30,7 +30,7 @@ The unique name of the user.
30
30
 
31
31
  > **roles**: `string`[]
32
32
 
33
- Defined in: [src/JWTUtils.ts:27](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L27)
33
+ Defined in: [src/JWTUtils.ts:27](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L27)
34
34
 
35
35
  The list of roles (by name) that the user is apart of and will assume privileges for.
36
36
 
@@ -40,7 +40,7 @@ The list of roles (by name) that the user is apart of and will assume privileges
40
40
 
41
41
  > **uid**: `string`
42
42
 
43
- Defined in: [src/JWTUtils.ts:17](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L17)
43
+ Defined in: [src/JWTUtils.ts:17](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L17)
44
44
 
45
45
  The universally unique identifier of the user.
46
46
 
@@ -48,8 +48,8 @@ The universally unique identifier of the user.
48
48
 
49
49
  ### verified?
50
50
 
51
- > `optional` **verified**: `boolean`
51
+ > `optional` **verified?**: `boolean`
52
52
 
53
- Defined in: [src/JWTUtils.ts:32](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L32)
53
+ Defined in: [src/JWTUtils.ts:32](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L32)
54
54
 
55
55
  Indicates if the user's e-mail address has been verified.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: JWTUtilsConfig
8
8
 
9
- Defined in: [src/JWTUtils.ts:123](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L123)
9
+ Defined in: [src/JWTUtils.ts:123](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L123)
10
10
 
11
11
  Describes the configuration options to be used with `JWTUtils` functions.
12
12
 
@@ -18,9 +18,9 @@ Jean-Philippe Steinmetz <rapidrests@gmail.com>
18
18
 
19
19
  ### options?
20
20
 
21
- > `optional` **options**: `VerifyOptions`
21
+ > `optional` **options?**: `VerifyOptions`
22
22
 
23
- Defined in: [src/JWTUtils.ts:132](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L132)
23
+ Defined in: [src/JWTUtils.ts:132](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L132)
24
24
 
25
25
  The options to use when performing JWT signing or verification.
26
26
 
@@ -28,9 +28,9 @@ The options to use when performing JWT signing or verification.
28
28
 
29
29
  ### payload?
30
30
 
31
- > `optional` **payload**: [`JWTUtilsPayloadOptions`](JWTUtilsPayloadOptions.md) \| [`JWTUtilsPayloadPasswordOptions`](JWTUtilsPayloadPasswordOptions.md) \| [`JWTUtilsPayloadKeyOptions`](JWTUtilsPayloadKeyOptions.md)
31
+ > `optional` **payload?**: [`JWTUtilsPayloadOptions`](JWTUtilsPayloadOptions.md) \| [`JWTUtilsPayloadPasswordOptions`](JWTUtilsPayloadPasswordOptions.md) \| [`JWTUtilsPayloadKeyOptions`](JWTUtilsPayloadKeyOptions.md)
32
32
 
33
- Defined in: [src/JWTUtils.ts:137](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L137)
33
+ Defined in: [src/JWTUtils.ts:137](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L137)
34
34
 
35
35
  The options that determine how JWT token payloads will be handled.
36
36
 
@@ -40,6 +40,6 @@ The options that determine how JWT token payloads will be handled.
40
40
 
41
41
  > **secret**: `Secret`
42
42
 
43
- Defined in: [src/JWTUtils.ts:127](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L127)
43
+ Defined in: [src/JWTUtils.ts:127](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L127)
44
44
 
45
45
  The secret to use for signing and verifying JWT tokens.
@@ -6,9 +6,9 @@
6
6
 
7
7
  # Interface: JWTUtilsPayloadKeyOptions
8
8
 
9
- Defined in: [src/JWTUtils.ts:106](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L106)
9
+ Defined in: [src/JWTUtils.ts:106](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L106)
10
10
 
11
- Describes the configuration options to be used with the `JWTUtilsConfig.payload` property when performing
11
+ Describes the configuration options to be used with the `JWTUtilsConfig.payload` property when performing
12
12
  key-based encryption.
13
13
 
14
14
  ## Author
@@ -23,9 +23,9 @@ Jean-Philippe Steinmetz <rapidrests@gmail.com>
23
23
 
24
24
  ### compress?
25
25
 
26
- > `optional` **compress**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
26
+ > `optional` **compress?**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
27
27
 
28
- Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L69)
28
+ Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L69)
29
29
 
30
30
  Set the method to use for compressing the payload profile, otherwise set to `null` for no compression.
31
31
 
@@ -37,9 +37,9 @@ Set the method to use for compressing the payload profile, otherwise set to `nul
37
37
 
38
38
  ### encrypt?
39
39
 
40
- > `optional` **encrypt**: `boolean`
40
+ > `optional` **encrypt?**: `boolean`
41
41
 
42
- Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L74)
42
+ Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L74)
43
43
 
44
44
  Set to `true` to indicate that the JWT token payload is encrypted, otherwise set to `false`.
45
45
 
@@ -53,7 +53,7 @@ Set to `true` to indicate that the JWT token payload is encrypted, otherwise set
53
53
 
54
54
  > **private\_key**: `string`
55
55
 
56
- Defined in: [src/JWTUtils.ts:110](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L110)
56
+ Defined in: [src/JWTUtils.ts:110](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L110)
57
57
 
58
58
  The private key used to encrypt JWT token payloads.
59
59
 
@@ -63,6 +63,6 @@ The private key used to encrypt JWT token payloads.
63
63
 
64
64
  > **public\_key**: `string`
65
65
 
66
- Defined in: [src/JWTUtils.ts:115](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L115)
66
+ Defined in: [src/JWTUtils.ts:115](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L115)
67
67
 
68
68
  The public key used to decrypt JWT token payloads.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: JWTUtilsPayloadOptions
8
8
 
9
- Defined in: [src/JWTUtils.ts:65](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L65)
9
+ Defined in: [src/JWTUtils.ts:65](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L65)
10
10
 
11
11
  Describes the configuration options to be used with the `JWTUtilsConfig.payload` property.
12
12
 
@@ -23,9 +23,9 @@ Jean-Philippe Steinmetz <rapidrests@gmail.com>
23
23
 
24
24
  ### compress?
25
25
 
26
- > `optional` **compress**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
26
+ > `optional` **compress?**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
27
27
 
28
- Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L69)
28
+ Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L69)
29
29
 
30
30
  Set the method to use for compressing the payload profile, otherwise set to `null` for no compression.
31
31
 
@@ -33,8 +33,8 @@ Set the method to use for compressing the payload profile, otherwise set to `nul
33
33
 
34
34
  ### encrypt?
35
35
 
36
- > `optional` **encrypt**: `boolean`
36
+ > `optional` **encrypt?**: `boolean`
37
37
 
38
- Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L74)
38
+ Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L74)
39
39
 
40
40
  Set to `true` to indicate that the JWT token payload is encrypted, otherwise set to `false`.
@@ -6,9 +6,9 @@
6
6
 
7
7
  # Interface: JWTUtilsPayloadPasswordOptions
8
8
 
9
- Defined in: [src/JWTUtils.ts:83](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L83)
9
+ Defined in: [src/JWTUtils.ts:83](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L83)
10
10
 
11
- Describes the configuration options to be used with the `JWTUtilsConfig.payload` property when performing password
11
+ Describes the configuration options to be used with the `JWTUtilsConfig.payload` property when performing password
12
12
  based encryption.
13
13
 
14
14
  ## Author
@@ -25,7 +25,7 @@ Jean-Philippe Steinmetz <rapidrests@gmail.com>
25
25
 
26
26
  > **algorithm**: `string`
27
27
 
28
- Defined in: [src/JWTUtils.ts:87](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L87)
28
+ Defined in: [src/JWTUtils.ts:87](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L87)
29
29
 
30
30
  The cryptographic cipher algorithm to use during encryption/decryption of a JWT token payload.
31
31
 
@@ -33,9 +33,9 @@ The cryptographic cipher algorithm to use during encryption/decryption of a JWT
33
33
 
34
34
  ### compress?
35
35
 
36
- > `optional` **compress**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
36
+ > `optional` **compress?**: [`ZLIB`](../enumerations/JWTUtilsCompressionMethods.md#zlib)
37
37
 
38
- Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L69)
38
+ Defined in: [src/JWTUtils.ts:69](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L69)
39
39
 
40
40
  Set the method to use for compressing the payload profile, otherwise set to `null` for no compression.
41
41
 
@@ -47,9 +47,9 @@ Set the method to use for compressing the payload profile, otherwise set to `nul
47
47
 
48
48
  ### encrypt?
49
49
 
50
- > `optional` **encrypt**: `boolean`
50
+ > `optional` **encrypt?**: `boolean`
51
51
 
52
- Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L74)
52
+ Defined in: [src/JWTUtils.ts:74](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L74)
53
53
 
54
54
  Set to `true` to indicate that the JWT token payload is encrypted, otherwise set to `false`.
55
55
 
@@ -63,7 +63,7 @@ Set to `true` to indicate that the JWT token payload is encrypted, otherwise set
63
63
 
64
64
  > **iv**: `Buffer`
65
65
 
66
- Defined in: [src/JWTUtils.ts:92](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L92)
66
+ Defined in: [src/JWTUtils.ts:92](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L92)
67
67
 
68
68
  The initialization vector to use during encryption and decryption.
69
69
 
@@ -73,6 +73,6 @@ The initialization vector to use during encryption and decryption.
73
73
 
74
74
  > **password**: `string`
75
75
 
76
- Defined in: [src/JWTUtils.ts:97](https://github.com/rapidrest/core/blob/23a4f312bccd7ea3a0598e320bd5d984466027e5/src/JWTUtils.ts#L97)
76
+ Defined in: [src/JWTUtils.ts:97](https://github.com/rapidrest/core/blob/0eb0ed1163d4555240daccc189ac59a2ba35179a/src/JWTUtils.ts#L97)
77
77
 
78
78
  The password to use when encrypting or decrypting JWT token payloads.