@tc-libs/user 0.45.0 → 0.47.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.
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tc-libs/user",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0",
|
|
6
|
-
"@tc-libs/authentication": "0.
|
|
7
|
-
"@tc-libs/service": "0.
|
|
8
|
-
"@tc-libs/database": "0.
|
|
6
|
+
"@tc-libs/authentication": "0.47.0",
|
|
7
|
+
"@tc-libs/service": "0.47.0",
|
|
8
|
+
"@tc-libs/database": "0.47.0",
|
|
9
9
|
"@nestjs/common": "^10.0.2"
|
|
10
10
|
},
|
|
11
11
|
"type": "commonjs",
|
|
@@ -17,13 +17,13 @@ export declare enum AUTH_PROVIDERS {
|
|
|
17
17
|
* @interface IFlagAcceptance
|
|
18
18
|
*
|
|
19
19
|
* @property {boolean} enabled - Indicates whether the flag is enabled.
|
|
20
|
-
* @property {Date} ts - The timestamp when the flag was accepted.
|
|
21
|
-
* @property {string} version - The version of the flag acceptance.
|
|
20
|
+
* @property {Date} [ts] - The timestamp when the flag was accepted.
|
|
21
|
+
* @property {string} [version] - The version of the flag acceptance.
|
|
22
22
|
*/
|
|
23
23
|
export interface IFlagAcceptance {
|
|
24
24
|
enabled: boolean;
|
|
25
|
-
ts
|
|
26
|
-
version
|
|
25
|
+
ts?: Date;
|
|
26
|
+
version?: string;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* Interface representing user notifications settings.
|