Skip to content

Commit bff310f

Browse files
committed
fix: corrected the imports for observability options
1 parent f75a663 commit bff310f

File tree

3 files changed

+46
-46
lines changed

3 files changed

+46
-46
lines changed

package-lock.json

+44-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/authentication/AzureIdentityAccessTokenProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { GetTokenOptions, TokenCredential } from "@azure/core-auth";
2-
import { AzureIdentityAccessTokenProvider } from "@microsoft/kiota-authentication-azure";
3-
import { ObservabilityOptions } from "@microsoft/kiota-authentication-azure/dist/es/src/observabilityOptions";
2+
import { AzureIdentityAccessTokenProvider, type ObservabilityOptions } from "@microsoft/kiota-authentication-azure";
43

54
export class GraphAzureIdentityAccessTokenProvider extends AzureIdentityAccessTokenProvider {
65
public constructor(

src/authentication/AzureIdentityAuthenticationProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { GetTokenOptions, TokenCredential } from "@azure/core-auth";
2-
import { AzureIdentityAuthenticationProvider } from "@microsoft/kiota-authentication-azure";
3-
import { ObservabilityOptions } from "@microsoft/kiota-authentication-azure/dist/es/src/observabilityOptions";
2+
import { AzureIdentityAuthenticationProvider, type ObservabilityOptions } from "@microsoft/kiota-authentication-azure";
43

54
export class GraphAzureIdentityAuthenticationProvider extends AzureIdentityAuthenticationProvider {
65
// create a constructor with TokenCredential

0 commit comments

Comments
 (0)