You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Requirements**
- [x] I have added test coverage for new or changed functionality
- [x] I have followed the repository's [pull request submission
guidelines](../blob/main/CONTRIBUTING.md#submitting-pull-requests)
- [x] I have validated my changes against all supported platform
versions
**Related issues**
https://launchdarkly.atlassian.net/browse/SDK-1117
**Describe the solution you've provided**
Implemented OpenFeature Provider method `track()` in
LaunchDarklyProvider. It makes a call under the hood to
`LDClient.track()`. The `value` attribute will be pulled out of the
TrackingEventDetails param and passed to `LDClient.track()` as
metricValue. The remaining object (without value) will be passed to
`LDClient.track()` as data. If the remaining object is empty then
undefined will be passed.
**Describe alternatives you've considered**
N/A
**Additional context**
N/A
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ We encourage pull requests and other contributions from the community. Before su
14
14
15
15
### Prerequisites
16
16
17
-
The project should be built and tested against the lowest compatible version, Node 16. It uses `npm`, which is bundled in all supported versions of Node.
17
+
The project should be built and tested against the lowest compatible version, Node 18. It uses `npm`, which is bundled in all supported versions of Node.
0 commit comments