aws-xray-sdk-fastify 3.4.1 → 3.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/lib/plugin.d.ts +2 -2
- package/package.json +3 -3
package/lib/plugin.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as AWSXRay from 'aws-xray-sdk-core';
|
2
|
-
import {
|
2
|
+
import { FastifyLoggerInstance } from 'fastify';
|
3
3
|
|
4
4
|
declare module 'fastify' {
|
5
5
|
interface FastifyRequest {
|
@@ -12,7 +12,7 @@ export interface XRayFastifyPluginOptions {
|
|
12
12
|
captureAWS: boolean;
|
13
13
|
captureHTTP: boolean;
|
14
14
|
capturePromises: boolean;
|
15
|
-
logger:
|
15
|
+
logger: FastifyLoggerInstance;
|
16
16
|
automaticMode: boolean;
|
17
17
|
plugins: AWSXRay.plugins.Plugin[];
|
18
18
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "aws-xray-sdk-fastify",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.5.1",
|
4
4
|
"description": "AWS X-Ray plugin for Fastify",
|
5
5
|
"author": "Amazon Web Services",
|
6
6
|
"contributors": [
|
@@ -22,7 +22,7 @@
|
|
22
22
|
"node": ">= 14.x"
|
23
23
|
},
|
24
24
|
"peerDependencies": {
|
25
|
-
"aws-xray-sdk-core": "^3.
|
25
|
+
"aws-xray-sdk-core": "^3.5.1",
|
26
26
|
"fastify": "^3.29.0",
|
27
27
|
"fastify-plugin": "^4.2.0"
|
28
28
|
},
|
@@ -40,5 +40,5 @@
|
|
40
40
|
},
|
41
41
|
"license": "Apache-2.0",
|
42
42
|
"repository": "https://github.com/aws/aws-xray-sdk-node/tree/sdk_contrib/fastify",
|
43
|
-
"gitHead": "
|
43
|
+
"gitHead": "e32dd9580def3556ddee50b0090e2c9b97bcf361"
|
44
44
|
}
|