@namiml/web-sdk 1.0.0 → 1.1.0
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/CHANGELOG.md +20 -2
- package/dist/nami-web.cjs +12 -12
- package/dist/nami-web.d.ts +12 -3
- package/dist/nami-web.js +14 -14
- package/dist/nami-web.mjs +14 -14
- package/dist/nami-web.umd.js +15 -15
- package/package.json +10 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 1.1.0 (June 24, 2024)
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
- **NamiCustomerManager.setAnonymousMode** - Method to enable anonymous mode for the customer, concealing their identity from system tracking for privacy.
|
|
7
|
+
- **NamiCampaignManager.launch** - Implemented the `paywallActionHandler` to allow registering a callback to receive paywall-related events.
|
|
8
|
+
- **NamiPaywallManager.registerBuySkuHandler** - Method to register a callback invoked when the user initiates a purchase action.
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
- Resolved compatibility issues with the Lit web component library and server-side rendering.
|
|
12
|
+
- Fixed rendering issues with subscription periods and pricing in paywalls.
|
|
13
|
+
- Fixed connectivity issues related to custom API hosts.
|
|
14
|
+
- Enhanced the display for different icons.
|
|
15
|
+
|
|
16
|
+
### Known Issues
|
|
17
|
+
- `NamiPaywallManager`'s `buySkuComplete` and `buySkuCancel` methods are not fully implemented.
|
|
18
|
+
- Impression or conversion reporting not yet implemented.
|
|
19
|
+
- Launch context is not yet implemented.
|
|
20
|
+
|
|
21
|
+
## 1.0.0 (June 13, 2024)
|
|
4
22
|
|
|
5
23
|
### New Features
|
|
6
24
|
- **Nami** - Introduced `Nami` to provide core functionality to initialize the SDK.
|