Skip to content

Commit 2e199ce

Browse files
committed
Fix build
1 parent 37bf7c4 commit 2e199ce

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/adapter/BaseGraphRequestAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from "@microsoft/kiota-abstractions";
88
import { HttpClient, type ObservabilityOptions, ObservabilityOptionsImpl } from "@microsoft/kiota-http-fetchlibrary";
99
import { DefaultRequestAdapter } from "@microsoft/kiota-bundle";
10-
import { createGraphClientFactory } from "../http/GraphClientFactory";
10+
import { createGraphClientFactory } from "../http/GraphClientFactory.js";
1111

1212
/**
1313
* Base request adapter for graph clients. Bootstraps telemetry and other aspects.

src/http/GraphClientFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BaseBearerTokenAuthenticationProvider } from "@microsoft/kiota-abstractions";
22
import { Middleware } from "@microsoft/kiota-http-fetchlibrary";
3-
import { GraphHttpClient } from "./GraphHttpClient";
3+
import { GraphHttpClient } from "./GraphHttpClient.js";
44
import { getDefaultMiddlewares, GraphTelemetryOption } from "../middleware";
55

66
/**

src/http/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
export * from "./GraphClientFactory.js";
12
export * from "./GraphHttpClient.js";

0 commit comments

Comments
 (0)