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