File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ When we make [non-breaking changes](https://developer.paddle.com/api-reference/a
12
12
13
13
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.
14
14
15
+ ## 1.2.0 - 2024-03-19
16
+
17
+ ### Changed
18
+
19
+ - Updated ` ErrorCode ` enum in ` TransactionPaymentAttempt ` to include a new error code ` declined_not_retryable `
20
+
21
+ ---
15
22
16
23
## 1.1.0 - 2024-03-13
17
24
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @paddle/paddle-node-sdk" ,
3
- "version" : " 1.1 .0" ,
3
+ "version" : " 1.2 .0" ,
4
4
"description" : " A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript." ,
5
5
"main" : " ./dist/index.js" ,
6
6
"types" : " ./dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export type ErrorCode =
11
11
| 'blocked_card'
12
12
| 'canceled'
13
13
| 'declined'
14
+ | 'declined_not_retryable'
14
15
| 'expired_card'
15
16
| 'fraud'
16
17
| 'invalid_amount'
You can’t perform that action at this time.
0 commit comments