@dereekb/firebase 9.20.9 → 9.20.11
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [9.20.11](https://github.com/dereekb/dbx-components/compare/v9.20.10-dev...v9.20.11) (2023-01-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [9.20.10](https://github.com/dereekb/dbx-components/compare/v9.20.9-dev...v9.20.10) (2023-01-03)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## [9.20.9](https://github.com/dereekb/dbx-components/compare/v9.20.8-dev...v9.20.9) (2023-01-01)
|
|
6
14
|
|
|
7
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase",
|
|
3
|
-
"version": "9.20.
|
|
3
|
+
"version": "9.20.11",
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@firebase/rules-unit-testing": "^2.0.0"
|
|
6
6
|
},
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"rxjs": "^7.5.0",
|
|
26
26
|
"firebase": "^9.9.2",
|
|
27
|
-
"@dereekb/util": "9.20.
|
|
27
|
+
"@dereekb/util": "9.20.11",
|
|
28
28
|
"lodash.isequal": "^4.5.0",
|
|
29
29
|
"make-error": "^1.3.0",
|
|
30
30
|
"class-validator": "^0.13.2",
|
|
31
31
|
"ts-essentials": "^9.1.2",
|
|
32
32
|
"extra-set": "^2.2.11",
|
|
33
33
|
"class-transformer": "^0.5.1",
|
|
34
|
-
"@dereekb/rxjs": "9.20.
|
|
34
|
+
"@dereekb/rxjs": "9.20.11",
|
|
35
35
|
"ms": "^3.0.0-canary.1",
|
|
36
|
-
"@dereekb/model": "9.20.
|
|
37
|
-
"@dereekb/date": "9.20.
|
|
36
|
+
"@dereekb/model": "9.20.11",
|
|
37
|
+
"@dereekb/date": "9.20.11",
|
|
38
38
|
"date-fns": "^2.29.0",
|
|
39
39
|
"date-fns-tz": "^1.3.0",
|
|
40
40
|
"rrule": "git+https://git@github.com/dereekb/rrule#2b13b1ea881059ba2ecfec380e12ef244ef54570",
|
|
@@ -26,9 +26,11 @@ export interface FirebaseAuthDetails extends FirebaseAuthToken, FirebaseAuthUser
|
|
|
26
26
|
*/
|
|
27
27
|
export declare type FirebaseAuthOwnershipKey = string;
|
|
28
28
|
/**
|
|
29
|
-
* Password used for completing setup.
|
|
29
|
+
* Password used for completing setup or resetting a user.
|
|
30
30
|
*/
|
|
31
31
|
export declare type FirebaseAuthSetupPassword = PasswordString;
|
|
32
|
+
export declare const FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY = "setupPassword";
|
|
33
|
+
export declare const FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY = "setupCommunicationAt";
|
|
32
34
|
export interface FirebaseAuthNewUserClaimsData {
|
|
33
35
|
/**
|
|
34
36
|
* Setup password
|
|
@@ -39,3 +41,15 @@ export interface FirebaseAuthNewUserClaimsData {
|
|
|
39
41
|
*/
|
|
40
42
|
readonly setupCommunicationAt: ISO8601DateString;
|
|
41
43
|
}
|
|
44
|
+
export declare const FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY = "resetPassword";
|
|
45
|
+
export declare const FIREBASE_SERVER_AUTH_CLAIMS_RESET_LAST_COM_DATE_KEY = "resetCommunicationAt";
|
|
46
|
+
export interface FirebaseAuthResetUserPasswordClaimsData {
|
|
47
|
+
/**
|
|
48
|
+
* Reset password
|
|
49
|
+
*/
|
|
50
|
+
readonly resetPassword: FirebaseAuthSetupPassword;
|
|
51
|
+
/**
|
|
52
|
+
* Last reset communication time.
|
|
53
|
+
*/
|
|
54
|
+
readonly resetCommunicationAt: ISO8601DateString;
|
|
55
|
+
}
|
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FIREBASE_SERVER_AUTH_CLAIMS_RESET_LAST_COM_DATE_KEY = exports.FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY = exports.FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY = exports.FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY = void 0;
|
|
4
|
+
exports.FIREBASE_SERVER_AUTH_CLAIMS_SETUP_PASSWORD_KEY = 'setupPassword';
|
|
5
|
+
exports.FIREBASE_SERVER_AUTH_CLAIMS_SETUP_LAST_COM_DATE_KEY = 'setupCommunicationAt';
|
|
6
|
+
exports.FIREBASE_SERVER_AUTH_CLAIMS_RESET_PASSWORD_KEY = 'resetPassword';
|
|
7
|
+
exports.FIREBASE_SERVER_AUTH_CLAIMS_RESET_LAST_COM_DATE_KEY = 'resetCommunicationAt';
|
|
3
8
|
//# sourceMappingURL=auth.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../../../../../packages/firebase/src/lib/common/auth/auth.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../../../../../packages/firebase/src/lib/common/auth/auth.ts"],"names":[],"mappings":";;;AAsCa,QAAA,8CAA8C,GAAG,eAAe,CAAC;AACjE,QAAA,mDAAmD,GAAG,sBAAsB,CAAC;AAa7E,QAAA,8CAA8C,GAAG,eAAe,CAAC;AACjE,QAAA,mDAAmD,GAAG,sBAAsB,CAAC"}
|
package/test/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [9.20.11](https://github.com/dereekb/dbx-components/compare/v9.20.10-dev...v9.20.11) (2023-01-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [9.20.10](https://github.com/dereekb/dbx-components/compare/v9.20.9-dev...v9.20.10) (2023-01-03)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## [9.20.9](https://github.com/dereekb/dbx-components/compare/v9.20.8-dev...v9.20.9) (2023-01-01)
|
|
6
14
|
|
|
7
15
|
|
package/test/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase/test",
|
|
3
|
-
"version": "9.20.
|
|
3
|
+
"version": "9.20.11",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@dereekb/util/test": "9.20.
|
|
10
|
-
"@dereekb/util": "9.20.
|
|
9
|
+
"@dereekb/util/test": "9.20.11",
|
|
10
|
+
"@dereekb/util": "9.20.11",
|
|
11
11
|
"lodash.isequal": "^4.5.0",
|
|
12
12
|
"make-error": "^1.3.0",
|
|
13
13
|
"class-validator": "^0.13.2",
|
|
14
14
|
"ts-essentials": "^9.1.2",
|
|
15
15
|
"extra-set": "^2.2.11",
|
|
16
|
-
"@dereekb/firebase": "9.20.
|
|
16
|
+
"@dereekb/firebase": "9.20.11",
|
|
17
17
|
"rxjs": "^7.5.0",
|
|
18
18
|
"firebase": "^9.9.2",
|
|
19
19
|
"class-transformer": "^0.5.1",
|
|
20
|
-
"@dereekb/rxjs": "9.20.
|
|
20
|
+
"@dereekb/rxjs": "9.20.11",
|
|
21
21
|
"ms": "^3.0.0-canary.1",
|
|
22
|
-
"@dereekb/model": "9.20.
|
|
23
|
-
"@dereekb/date": "9.20.
|
|
22
|
+
"@dereekb/model": "9.20.11",
|
|
23
|
+
"@dereekb/date": "9.20.11",
|
|
24
24
|
"date-fns": "^2.29.0",
|
|
25
25
|
"date-fns-tz": "^1.3.0",
|
|
26
26
|
"rrule": "git+https://git@github.com/dereekb/rrule#2b13b1ea881059ba2ecfec380e12ef244ef54570",
|