@dynatrace/rum-javascript-sdk 1.329.4 → 1.329.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/README.md +4 -4
- package/docs/types.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ This package provides two main API approaches for interacting with the Dynatrace
|
|
|
14
14
|
|
|
15
15
|
- **Synchronous API**: Safe wrapper functions that gracefully handle cases where the RUM JavaScript is not available
|
|
16
16
|
- **Asynchronous API**: Promise-based functions that wait for the RUM JavaScript to become available
|
|
17
|
-
- **User Actions API**: Manual control over user action creation and lifecycle (see [USERACTIONS.md](
|
|
17
|
+
- **User Actions API**: Manual control over user action creation and lifecycle (see [USERACTIONS.md](docs/USERACTIONS.md))
|
|
18
18
|
- **TypeScript Support**: Comprehensive type definitions for all RUM API functions
|
|
19
19
|
- **Testing Framework**: Playwright-based utilities for testing RUM integration
|
|
20
20
|
|
|
@@ -284,7 +284,7 @@ Only available if the Errors module is enabled.
|
|
|
284
284
|
|
|
285
285
|
### User Actions API
|
|
286
286
|
|
|
287
|
-
Both synchronous and asynchronous wrappers are available for the User Actions API. For detailed documentation and examples, see [USERACTIONS.md](
|
|
287
|
+
Both synchronous and asynchronous wrappers are available for the User Actions API. For detailed documentation and examples, see [USERACTIONS.md](docs/USERACTIONS.md).
|
|
288
288
|
|
|
289
289
|
**Synchronous API:**
|
|
290
290
|
```typescript
|
|
@@ -333,7 +333,7 @@ try {
|
|
|
333
333
|
|
|
334
334
|
## TypeScript Support
|
|
335
335
|
|
|
336
|
-
For detailed type information and usage examples, see [types.md](
|
|
336
|
+
For detailed type information and usage examples, see [types.md](docs/types.md).
|
|
337
337
|
|
|
338
338
|
```typescript
|
|
339
339
|
import type {
|
|
@@ -347,7 +347,7 @@ import type {
|
|
|
347
347
|
|
|
348
348
|
## Testing
|
|
349
349
|
|
|
350
|
-
For testing applications that use this RUM API, see the testing framework documentation in [testing.md](
|
|
350
|
+
For testing applications that use this RUM API, see the testing framework documentation in [testing.md](docs/testing.md).
|
|
351
351
|
|
|
352
352
|
The testing framework provides Playwright fixtures for:
|
|
353
353
|
- Waiting for and validating RUM events
|
package/docs/types.md
CHANGED