Skip to content

Commit

Permalink
fix: update customer portal sessions imports (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
danbillson authored Nov 25, 2024
1 parent a3a192d commit 2cd078d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ When we make [non-breaking changes](https://developer.paddle.com/api-reference/a

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.

## 2.1.1 - 2024-11-25

### Fixed

- Updated imports to use `.js` extension

## 2.1.0 - 2024-11-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@paddle/paddle-node-sdk",
"version": "2.1.0",
"version": "2.1.1",
"description": "A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.",
"main": "dist/cjs/index.cjs.node.js",
"module": "dist/esm/index.esm.node.js",
Expand Down
4 changes: 2 additions & 2 deletions src/resources/customer-portal-sessions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import { CustomerPortalSession } from '../../entities/index.js';
import { type ICustomerPortalSessionResponse } from '../../types/index.js';
import { type ErrorResponse, type Response } from '../../internal';
import { BaseResource, PathParameters } from '../../internal/base';
import { type ErrorResponse, type Response } from '../../internal/index.js';
import { BaseResource, PathParameters } from '../../internal/base/index.js';
import { type CreateCustomerPortalSessionRequestBody } from './operations/index.js';

const CustomerPortalSessionPaths = {
Expand Down

0 comments on commit 2cd078d

Please sign in to comment.