@dereekb/firebase-server 14.4.0 → 14.5.1
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/calcom/package.json +11 -10
- package/discord/package.json +14 -10
- package/index.esm.js +1295 -317
- package/mailgun/package.json +9 -9
- package/mcp/index.esm.js +483 -83
- package/mcp/package.json +12 -12
- package/mcp/src/lib/mcp.config.d.ts +73 -3
- package/mcp/src/lib/service/index.d.ts +1 -0
- package/mcp/src/lib/service/mcp.server.factory.d.ts +3 -2
- package/mcp/src/lib/service/mcp.tool-generator.d.ts +9 -0
- package/mcp/src/lib/service/tools/mcp.tool.cli-token.d.ts +62 -0
- package/model/package.json +13 -10
- package/oidc/index.esm.js +3186 -1456
- package/oidc/package.json +11 -11
- package/oidc/src/lib/controller/index.d.ts +3 -0
- package/oidc/src/lib/controller/oidc.cli-token.config.d.ts +323 -0
- package/oidc/src/lib/controller/oidc.cli-token.controller.d.ts +45 -0
- package/oidc/src/lib/controller/oidc.cli-token.service.d.ts +138 -0
- package/oidc/src/lib/controller/oidc.interaction.controller.d.ts +38 -0
- package/oidc/src/lib/middleware/oauth-auth.module.d.ts +8 -0
- package/oidc/src/lib/oidc.config.d.ts +9 -0
- package/oidc/src/lib/oidc.module.d.ts +1 -1
- package/oidc/src/lib/service/index.d.ts +1 -0
- package/oidc/src/lib/service/oidc.config.service.d.ts +8 -3
- package/oidc/src/lib/service/oidc.download-signer.d.ts +17 -0
- package/oidc/src/lib/service/oidc.jwt-signing.service.d.ts +35 -0
- package/package.json +13 -13
- package/src/lib/nest/controller/download/download.api.config.d.ts +203 -0
- package/src/lib/nest/controller/download/download.api.controller.d.ts +25 -0
- package/src/lib/nest/controller/download/download.api.module.d.ts +47 -0
- package/src/lib/nest/controller/download/download.api.service.d.ts +111 -0
- package/src/lib/nest/controller/download/index.d.ts +4 -0
- package/src/lib/nest/controller/index.d.ts +2 -0
- package/src/lib/nest/controller/request.ip.d.ts +60 -0
- package/test/index.esm.js +1 -0
- package/test/package.json +12 -12
- package/test/src/lib/oidc/oidc.test.flow.d.ts +10 -0
- package/twilio/package.json +8 -8
- package/zoho/package.json +14 -10
|
@@ -162,6 +162,16 @@ export interface OAuthTestFlowResult {
|
|
|
162
162
|
* The ID token the token endpoint issued. Undefined unless the flow ran to the `'token'` stage.
|
|
163
163
|
*/
|
|
164
164
|
readonly idToken?: string;
|
|
165
|
+
/**
|
|
166
|
+
* The refresh token the token endpoint issued.
|
|
167
|
+
*
|
|
168
|
+
* Only present when the flow requested `offline_access` — the provider issues a refresh token for
|
|
169
|
+
* no other reason. Undefined unless the flow ran to the `'token'` stage.
|
|
170
|
+
*
|
|
171
|
+
* This is what a revocation test spends: a refresh exchange is the one operation that keeps working
|
|
172
|
+
* against a still-live Grant and fails with `invalid_grant` the instant the Grant is destroyed.
|
|
173
|
+
*/
|
|
174
|
+
readonly refreshToken?: string;
|
|
165
175
|
/**
|
|
166
176
|
* The `token_type` the token endpoint reported for the access token.
|
|
167
177
|
*/
|
package/twilio/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase-server/twilio",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@dereekb/date": "14.
|
|
8
|
-
"@dereekb/firebase": "14.
|
|
9
|
-
"@dereekb/firebase-server": "14.
|
|
10
|
-
"@dereekb/model": "14.
|
|
11
|
-
"@dereekb/nestjs": "14.
|
|
12
|
-
"@dereekb/rxjs": "14.
|
|
13
|
-
"@dereekb/util": "14.
|
|
7
|
+
"@dereekb/date": "14.5.1",
|
|
8
|
+
"@dereekb/firebase": "14.5.1",
|
|
9
|
+
"@dereekb/firebase-server": "14.5.1",
|
|
10
|
+
"@dereekb/model": "14.5.1",
|
|
11
|
+
"@dereekb/nestjs": "14.5.1",
|
|
12
|
+
"@dereekb/rxjs": "14.5.1",
|
|
13
|
+
"@dereekb/util": "14.5.1"
|
|
14
14
|
},
|
|
15
15
|
"exports": {
|
|
16
16
|
"./package.json": "./package.json",
|
package/zoho/package.json
CHANGED
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/firebase-server/zoho",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@dereekb/analytics": "14.
|
|
8
|
-
"@dereekb/date": "14.
|
|
9
|
-
"@dereekb/
|
|
10
|
-
"@dereekb/
|
|
11
|
-
"@dereekb/
|
|
12
|
-
"@dereekb/
|
|
13
|
-
"@dereekb/
|
|
14
|
-
"@dereekb/util": "14.
|
|
15
|
-
"@dereekb/zoho": "14.
|
|
7
|
+
"@dereekb/analytics": "14.5.1",
|
|
8
|
+
"@dereekb/date": "14.5.1",
|
|
9
|
+
"@dereekb/firebase": "14.5.1",
|
|
10
|
+
"@dereekb/firebase-server": "14.5.1",
|
|
11
|
+
"@dereekb/model": "14.5.1",
|
|
12
|
+
"@dereekb/nestjs": "14.5.1",
|
|
13
|
+
"@dereekb/rxjs": "14.5.1",
|
|
14
|
+
"@dereekb/util": "14.5.1",
|
|
15
|
+
"@dereekb/zoho": "14.5.1",
|
|
16
16
|
"@nestjs/common": "^12.0.1",
|
|
17
17
|
"@nestjs/config": "^12.0.0",
|
|
18
18
|
"express": "^5.2.1"
|
|
19
19
|
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@nestjs/testing": "^12.0.1",
|
|
22
|
+
"date-fns": "^4.1.0"
|
|
23
|
+
},
|
|
20
24
|
"exports": {
|
|
21
25
|
"./package.json": "./package.json",
|
|
22
26
|
".": {
|