UNPKG

@qonversion/capacitor-plugin

Version:

Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and co

13 lines 685 B
import { EntitlementsCacheLifetime, Environment } from './dto/enums'; export class QonversionConfig { constructor(projectKey, launchMode, environment = Environment.PRODUCTION, entitlementsCacheLifetime = EntitlementsCacheLifetime.MONTH, entitlementsUpdateListener = undefined, proxyUrl, kidsMode = false) { this.projectKey = projectKey; this.launchMode = launchMode; this.environment = environment; this.entitlementsCacheLifetime = entitlementsCacheLifetime; this.entitlementsUpdateListener = entitlementsUpdateListener; this.proxyUrl = proxyUrl; this.kidsMode = kidsMode; } } //# sourceMappingURL=QonversionConfig.js.map