@datadog/esbuild-plugin 3.2.2 → 3.2.3

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.
@@ -5079,8 +5079,9 @@ interface PrivacyOptions {
5079
5079
  helperCodeExpression?: string;
5080
5080
  }
5081
5081
  type SourceCodeContextOptions = {
5082
- service: string;
5082
+ service?: string;
5083
5083
  version?: string;
5084
+ debugId?: boolean;
5084
5085
  };
5085
5086
  type RumOptions = {
5086
5087
  enable?: boolean;
@@ -5213,7 +5214,7 @@ type BundlerReport = GlobalData["bundler"] & {
5213
5214
  outDir: string;
5214
5215
  rawConfig?: any;
5215
5216
  };
5216
- type InjectedValue = string | (() => Promise<string>);
5217
+ type InjectedValue = string | (() => Promise<string>) | ((sourceOrHash?: string) => string);
5217
5218
  declare enum InjectPosition {
5218
5219
  BEFORE = 0,
5219
5220
  MIDDLE = 1,