@datadog/rspack-plugin 3.1.8-dev.1 → 3.1.8-dev.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.
@@ -5119,9 +5119,6 @@ declare const SITES: readonly [
5119
5119
  "datad0g.com"
5120
5120
  ];
5121
5121
  type Assign<A, B> = Omit<A, keyof B> & B;
5122
- type WithRequired<T, K extends keyof T> = T & {
5123
- [P in K]-?: T[P];
5124
- };
5125
5122
  interface RepositoryData {
5126
5123
  commit: {
5127
5124
  hash: string;
@@ -5329,9 +5326,11 @@ type Site$1 = (typeof SITES)[number];
5329
5326
  type AuthOptions = {
5330
5327
  apiKey?: string;
5331
5328
  appKey?: string;
5332
- site?: Site$1;
5329
+ site?: string;
5330
+ };
5331
+ type AuthOptionsWithDefaults = Omit<AuthOptions, "site"> & {
5332
+ site: Site$1;
5333
5333
  };
5334
- type AuthOptionsWithDefaults = WithRequired<AuthOptions, "site">;
5335
5334
  interface BaseOptions {
5336
5335
  auth?: AuthOptions;
5337
5336
  metadata?: BuildMetadata;