@tonder.io/ionic-lite-sdk 0.0.69-beta.TEC-192.64cba56 → 0.0.69-beta.develop.24b2121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Card data is collected through **Skyflow secure iframes** — raw card values ne
|
|
|
18
18
|
- [5.3 Unmounting fields](#53-unmounting-fields)
|
|
19
19
|
6. [Processing Payments](#6-processing-payments)
|
|
20
20
|
- [6.1 New card payment](#61-new-card-payment)
|
|
21
|
-
- [6.2
|
|
21
|
+
- [6.2 Pay with a saved card](#62-pay-with-a-saved-card)
|
|
22
22
|
- [6.3 Alternative Payment Method (APM)](#63-alternative-payment-method-apm)
|
|
23
23
|
- [6.4 Payment response reference](#64-payment-response-reference)
|
|
24
24
|
7. [3DS Handling](#7-3ds-handling)
|
|
@@ -256,7 +256,7 @@ interface IEventSecureInput {
|
|
|
256
256
|
}
|
|
257
257
|
```
|
|
258
258
|
|
|
259
|
-
> **PCI note:** In `production`,
|
|
259
|
+
> **PCI note:** In `production`, `card_number` returns a **partially masked** value (first 8 digits for non-AMEX, first 6 for AMEX, rest masked). All other fields — including `cvv` — return `value: ''`. In `stage`, `development`, and `sandbox`, all fields return the actual value. Use `isValid` and `isEmpty` for UI state logic — never depend on `value` for business logic in production.
|
|
260
260
|
|
|
261
261
|
**Example — live card form validation:**
|
|
262
262
|
|
|
@@ -627,7 +627,7 @@ async pay() {
|
|
|
627
627
|
|
|
628
628
|
---
|
|
629
629
|
|
|
630
|
-
### 6.2
|
|
630
|
+
### 6.2 Pay with a saved card
|
|
631
631
|
|
|
632
632
|
**Prerequisites:** Fetch saved cards ([Section 8.1](#81-list-saved-cards)). Conditionally mount the CVV field ([Section 5.2](#52-saved-card-cvv-only)).
|
|
633
633
|
|
|
@@ -1280,8 +1280,6 @@ customization: {
|
|
|
1280
1280
|
| `registerCustomerCard(secureToken, customerToken, data)` | `saveCustomerCard()` | Signature changed; call `mountCardFields()` first |
|
|
1281
1281
|
| `deleteCustomerCard(customerToken, skyflowId)` | `removeCustomerCard(skyflowId)` | Signature simplified |
|
|
1282
1282
|
| `getActiveAPMs()` | `getCustomerPaymentMethods()` | Renamed |
|
|
1283
|
-
| `getSkyflowTokens(...)` | (auto-handled) | No longer needed |
|
|
1284
|
-
| `getOpenpayDeviceSessionID(...)` | (auto-handled) | No longer needed |
|
|
1285
1283
|
|
|
1286
1284
|
### Deprecated data patterns
|
|
1287
1285
|
|