You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Breaking Change**: Refactored `createAddCardFormRequest` to internalize signature calculation and authentication parameters. This aligns the method with the rest of the SDK patterns and simplifies usage for developers. The `AddCardFormRequest` model no longer requires `checkoutAccount`, `checkoutMethod`, `checkoutNonce`, `checkoutTimestamp`, `checkoutAlgorithm`, or `signature` to be populated manually.
6
+
7
+
### Features
8
+
- Internalized signature calculation for `createAddCardFormRequest` (matches `createPayment` pattern).
9
+
- Implemented Form Post style authentication (Body Auth) for add-card requests.
10
+
11
+
### Refactoring
12
+
- Removed manual authentication fields from `AddCardFormRequest` model.
13
+
- Automatically injects merchant credentials and generates HMAC signature within the SDK.
14
+
15
+
### Testing
16
+
- Added unit tests to verify signature generation and payload structure for card form requests.
0 commit comments