Skip to content

Commit

Permalink
⚗️ enable plugins as a beta feature (#2872)
Browse files Browse the repository at this point in the history
* ⚗️ enable plugins as a beta feature

* update sandbox app

* fix tests and lints
  • Loading branch information
BenoitZugmeyer authored and RomanGaignault committed Jul 24, 2024
1 parent 75ad3a4 commit 9eb6f84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rum-core/src/domain/configuration/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export interface RumInitConfiguration extends InitConfiguration {
* A list of request URLs used to inject tracing headers.
* See [Connect RUM and Traces](https://docs.datadoghq.com/real_user_monitoring/platform/connect_rum_and_traces/?tab=browserrum) for further information.
*/
allowedTracingUrls?: Array<MatchOption | TracingOption> | undefined
allowedTracingUrls?: Array | undefined

/**
* The percentage of requests to trace: 100 for all, 0 for none.
Expand Down Expand Up @@ -132,7 +132,7 @@ export interface RumInitConfiguration extends InitConfiguration {
betaPlugins?: RumPlugin[] | undefined
}

export type HybridInitConfiguration = Omit<RumInitConfiguration, 'applicationId' | 'clientToken'>
export type HybridInitConfiguration = Omit

export interface RumConfiguration extends Configuration {
// Built from init configuration
Expand Down

0 comments on commit 9eb6f84

Please sign in to comment.