Skip to content

Commit 2cd078d

Browse files
author
Dan Billson
authored
fix: update customer portal sessions imports (#77)
1 parent a3a192d commit 2cd078d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ When we make [non-breaking changes](https://developer.paddle.com/api-reference/a
1212

1313
This means when upgrading minor versions of the SDK, you may notice type errors. You can safely ignore these or fix by adding additional type guards.
1414

15+
## 2.1.1 - 2024-11-25
16+
17+
### Fixed
18+
19+
- Updated imports to use `.js` extension
20+
1521
## 2.1.0 - 2024-11-21
1622

1723
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@paddle/paddle-node-sdk",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.",
55
"main": "dist/cjs/index.cjs.node.js",
66
"module": "dist/esm/index.esm.node.js",

src/resources/customer-portal-sessions/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
import { CustomerPortalSession } from '../../entities/index.js';
88
import { type ICustomerPortalSessionResponse } from '../../types/index.js';
9-
import { type ErrorResponse, type Response } from '../../internal';
10-
import { BaseResource, PathParameters } from '../../internal/base';
9+
import { type ErrorResponse, type Response } from '../../internal/index.js';
10+
import { BaseResource, PathParameters } from '../../internal/base/index.js';
1111
import { type CreateCustomerPortalSessionRequestBody } from './operations/index.js';
1212

1313
const CustomerPortalSessionPaths = {

0 commit comments

Comments
 (0)