@namiml/web-sdk 3.4.0-dev.202603232321 → 3.4.0-dev.202603250027
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/dist/nami/namiRefs.d.ts +2 -0
- package/dist/nami-web.cjs +22 -22
- package/dist/nami-web.mjs +2 -2
- package/dist/nami-web.umd.js +9 -9
- package/dist/repositories/campaignRule.repository.d.ts +5 -0
- package/dist/repositories/paywall.repository.d.ts +2 -0
- package/dist/types/externals/campaign.d.ts +3 -0
- package/package.json +1 -1
package/dist/nami/namiRefs.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { NamiConfiguration } from "../types/externals/config";
|
|
2
|
+
import { NamiCampaign } from "../types/externals/campaign";
|
|
2
3
|
export declare class NamiRefs {
|
|
3
4
|
static instance: NamiRefs;
|
|
4
5
|
private inMemoryAnonymousMode;
|
|
@@ -11,5 +12,6 @@ export declare class NamiRefs {
|
|
|
11
12
|
private initAnonymousDevice;
|
|
12
13
|
private initIdentifiedDevice;
|
|
13
14
|
private initAndFetchRequiredData;
|
|
15
|
+
fetchCampaignsAndPaywalls(): Promise<NamiCampaign[]>;
|
|
14
16
|
private reRenderPaywall;
|
|
15
17
|
}
|