@dereekb/firebase 13.11.4 → 13.11.5
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.5",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"exports": {
|
|
6
6
|
"./test": {
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@dereekb/util": "13.11.
|
|
22
|
-
"@dereekb/date": "13.11.
|
|
23
|
-
"@dereekb/model": "13.11.
|
|
24
|
-
"@dereekb/rxjs": "13.11.
|
|
21
|
+
"@dereekb/util": "13.11.5",
|
|
22
|
+
"@dereekb/date": "13.11.5",
|
|
23
|
+
"@dereekb/model": "13.11.5",
|
|
24
|
+
"@dereekb/rxjs": "13.11.5",
|
|
25
25
|
"@firebase/rules-unit-testing": "5.0.0",
|
|
26
26
|
"arktype": "^2.2.0",
|
|
27
27
|
"date-fns": "^4.1.0",
|
|
@@ -61,6 +61,28 @@ export interface OAuthInteractionConsentRequest {
|
|
|
61
61
|
* When `false`, the backend returns `access_denied` to the OAuth client.
|
|
62
62
|
*/
|
|
63
63
|
readonly approved: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Optional subset of OIDC scopes to grant. Must be a subset of
|
|
66
|
+
* `prompt.details.missingOIDCScope`.
|
|
67
|
+
*
|
|
68
|
+
* `openid` is always added by the server when it was requested,
|
|
69
|
+
* regardless of whether it appears here. When omitted, every
|
|
70
|
+
* missing OIDC scope is granted (back-compat with the all-or-nothing flow).
|
|
71
|
+
*/
|
|
72
|
+
readonly grantedOIDCScopes?: readonly OidcScope[];
|
|
73
|
+
/**
|
|
74
|
+
* Optional subset of OIDC claims to grant. Must be a subset of
|
|
75
|
+
* `prompt.details.missingOIDCClaims`. When omitted, every missing claim is granted.
|
|
76
|
+
*/
|
|
77
|
+
readonly grantedOIDCClaims?: readonly string[];
|
|
78
|
+
/**
|
|
79
|
+
* Optional subset of resource scopes to grant per resource indicator.
|
|
80
|
+
* Each entry's array must be a subset of the corresponding entry in
|
|
81
|
+
* `prompt.details.missingResourceScopes`. When omitted, every missing
|
|
82
|
+
* resource scope is granted. When an indicator is omitted, that
|
|
83
|
+
* indicator's resource scopes are granted in full.
|
|
84
|
+
*/
|
|
85
|
+
readonly grantedResourceScopes?: Readonly<Record<string, readonly string[]>>;
|
|
64
86
|
}
|
|
65
87
|
/**
|
|
66
88
|
* Response from the server after a successful interaction submission.
|
package/test/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase/test",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@dereekb/date": "13.11.
|
|
6
|
-
"@dereekb/firebase": "13.11.
|
|
7
|
-
"@dereekb/model": "13.11.
|
|
8
|
-
"@dereekb/rxjs": "13.11.
|
|
9
|
-
"@dereekb/util": "13.11.
|
|
5
|
+
"@dereekb/date": "13.11.5",
|
|
6
|
+
"@dereekb/firebase": "13.11.5",
|
|
7
|
+
"@dereekb/model": "13.11.5",
|
|
8
|
+
"@dereekb/rxjs": "13.11.5",
|
|
9
|
+
"@dereekb/util": "13.11.5",
|
|
10
10
|
"@firebase/rules-unit-testing": "5.0.0",
|
|
11
11
|
"date-fns": "^4.1.0",
|
|
12
12
|
"firebase": "^12.12.1",
|