@datadog/rspack-plugin 3.2.2 → 3.2.4
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/dist/src/index.d.ts +3 -2
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +1 -1
- package/dist/src/index.mjs.map +1 -1
- package/package.json +2 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -5078,8 +5078,9 @@ interface PrivacyOptions {
|
|
|
5078
5078
|
helperCodeExpression?: string;
|
|
5079
5079
|
}
|
|
5080
5080
|
type SourceCodeContextOptions = {
|
|
5081
|
-
service
|
|
5081
|
+
service?: string;
|
|
5082
5082
|
version?: string;
|
|
5083
|
+
debugId?: boolean;
|
|
5083
5084
|
};
|
|
5084
5085
|
type RumOptions = {
|
|
5085
5086
|
enable?: boolean;
|
|
@@ -5212,7 +5213,7 @@ type BundlerReport = GlobalData["bundler"] & {
|
|
|
5212
5213
|
outDir: string;
|
|
5213
5214
|
rawConfig?: any;
|
|
5214
5215
|
};
|
|
5215
|
-
type InjectedValue = string | (() => Promise<string>);
|
|
5216
|
+
type InjectedValue = string | (() => Promise<string>) | ((sourceOrHash?: string) => string);
|
|
5216
5217
|
declare enum InjectPosition {
|
|
5217
5218
|
BEFORE = 0,
|
|
5218
5219
|
MIDDLE = 1,
|