We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4beb6ac commit 17a965cCopy full SHA for 17a965c
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- [node] HTTP(S) Proxy support
6
+- [npde] Expose lastEventId method
7
8
## 4.3.4
9
packages/node/src/sdk.ts
@@ -75,3 +75,12 @@ export function init(options: NodeOptions = {}): void {
75
76
initAndBind(NodeClient, options);
77
}
78
+
79
+/**
80
+ * This is the getter for lastEventId.
81
+ *
82
+ * @returns The last event id of a captured event.
83
+ */
84
+export function lastEventId(): string | undefined {
85
+ return getCurrentHub().lastEventId();
86
+}
0 commit comments