@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.
Files changed (2) hide show
  1. package/README.md +3 -5
  2. 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 Saved card payment](#62-saved-card-payment)
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`, all fields return `value: ''` except `card_number`, which returns a masked value (first digits only). In `stage`, `development`, and `sandbox`, `value` is fully populated for all fields. Use `isValid` and `isEmpty` for UI state logic — never depend on `value` 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 Saved card payment
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonder.io/ionic-lite-sdk",
3
- "version": "0.0.69-beta.TEC-192.64cba56",
3
+ "version": "0.0.69-beta.develop.24b2121",
4
4
  "description": "Tonder ionic lite SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",