Skip to content

Commit

Permalink
fix: Fix import of jsonwebtoken types (#4888)
Browse files Browse the repository at this point in the history
  • Loading branch information
deekshas8 authored Aug 5, 2024
1 parent d9489db commit c23ccfd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/chatty-parrots-dream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sap-cloud-sdk/connectivity': patch
---

[Fixed Issue] Fix the JwtPayload import.
2 changes: 1 addition & 1 deletion packages/connectivity/src/scp-cf/connectivity-service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createLogger, ErrorWithCause } from '@sap-cloud-sdk/util';
import { JwtPayload } from 'jsonwebtoken';
import { JwtPayload } from './jsonwebtoken-type';
import { Protocol } from './protocol';
import {
ProxyConfiguration,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createLogger } from '@sap-cloud-sdk/util';
import { JwtPayload } from 'jsonwebtoken';
import { JwtPayload } from '../jsonwebtoken-type';
import {
decodeJwt,
getJwtPair,
Expand Down

0 comments on commit c23ccfd

Please sign in to comment.