@namiml/web-sdk 1.5.5 → 1.5.6

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.5.6 (Feb 19, 2025)
4
+
5
+ ## Bugfixes
6
+ - Resolve type issue encountered with certain initial onfig files
7
+
3
8
  ## 1.5.5 (January 16, 2025)
4
9
 
5
10
  ## Enhancements
@@ -23,10 +23,10 @@ declare class ContextProvider implements ReactiveController {
23
23
  getCurrentGroupId(): string;
24
24
  getCurrentGroupName(): string;
25
25
  setSelectedProdcuts(products: {
26
- [currentGroupId: string]: string;
26
+ [currentGroupId: string]: string | null;
27
27
  }): void;
28
28
  selectedProducts(): {
29
- [currentGroupId: string]: string;
29
+ [currentGroupId: string]: string | null;
30
30
  };
31
31
  setPaywall(paywall: IPaywall, context?: TPaywallLaunchContext, campaign?: NamiCampaign): void;
32
32
  getSelectedPaywall(): IPaywall | undefined;