Add offeringId override to trackCustomPaywallImpression#1679
Merged
rickvdl merged 1 commit intoMar 18, 2026
Conversation
tonidero
approved these changes
Mar 18, 2026
912f952 to
8834d82
Compare
rickvdl
added a commit
to RevenueCat/purchases-unity
that referenced
this pull request
Mar 18, 2026
## Summary - Add optional `OfferingId` parameter to `CustomPaywallImpressionParams` - If not provided, the SDK uses the current offering identifier from the cache - Update Subtester with offering ID text field ## Related PRs - purchases-hybrid-common: RevenueCat/purchases-hybrid-common#1565 - react-native-purchases: RevenueCat/react-native-purchases#1679
This was referenced Mar 18, 2026
Merged
rickvdl
added a commit
to RevenueCat/purchases-capacitor
that referenced
this pull request
Mar 18, 2026
## Summary - Expose `trackCustomPaywallImpression` as a public API in Capacitor - Support optional `paywallId` and `offeringId` parameters via `TrackCustomPaywallImpressionOptions` - If `offeringId` is not provided, the SDK uses the current offering identifier from the cache - Add prompt-based UI in purchase tester for testing with custom paywall and offering IDs ## Changes - **TypeScript:** `TrackCustomPaywallImpressionOptions` with `paywallId` and `offeringId` in `definitions.ts` - **iOS bridge:** `trackCustomPaywallImpression` in `PurchasesPlugin.swift` - **Android bridge:** `trackCustomPaywallImpression` in `PurchasesPlugin.kt` - **Web:** Mock implementation in `web.ts` - **Purchase tester:** Prompt-based UI for entering paywall ID and offering ID ### Related PRs - purchases-hybrid-common: RevenueCat/purchases-hybrid-common#1565 - react-native-purchases: RevenueCat/react-native-purchases#1679 - purchases-unity: RevenueCat/purchases-unity#869
rickvdl
added a commit
to RevenueCat/purchases-flutter
that referenced
this pull request
Mar 18, 2026
## Summary - Expose `trackCustomPaywallImpression` as a public API in Flutter - Support optional `paywallId` and `offeringId` parameters via `CustomPaywallImpressionParams` - If `offeringId` is not provided, the SDK uses the current offering identifier from the cache - Pass full arguments dictionary to PHC on both iOS and Android instead of unpacking individual fields - Add purchase tester screen with text fields for paywall ID and offering ID ## Changes - **Dart:** `CustomPaywallImpressionParams` with `paywallId` and `offeringId` - **iOS bridge:** Pass arguments dictionary directly to `[RCCommonFunctionality trackCustomPaywallImpression:]` - **Android bridge:** Pass arguments map directly to `CommonKt.trackCustomPaywallImpression()` - **Tests:** Unit tests for all parameter combinations - **API tester:** Compile-time verification of all API shapes - **Purchase tester:** Screen with text fields for paywall ID and offering ID ### Related PRs - purchases-hybrid-common: RevenueCat/purchases-hybrid-common#1565 - react-native-purchases: RevenueCat/react-native-purchases#1679 - purchases-unity: RevenueCat/purchases-unity#869 - purchases-capacitor: RevenueCat/purchases-capacitor#725
This was referenced Mar 18, 2026
facumenzella
pushed a commit
that referenced
this pull request
Mar 18, 2026
**This is an automatic release.** ## RevenueCat SDK ### ✨ New Features * Add offeringId override to trackCustomPaywallImpression (#1679) via Rick (@rickvdl) ### 📦 Dependency Updates * [AUTOMATIC BUMP] Updates purchases-hybrid-common to 17.52.0 (#1680) via RevenueCat Git Bot (@RCGitBot) ## RevenueCatUI SDK ### ✨ New Features * Add number and boolean support for CustomVariable (#1675) via Facundo Menzella (@facumenzella) --------- Co-authored-by: RevenueCat CI <dev+ci@revenuecat.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
offeringIdparameter toTrackCustomPaywallImpressionOptionsRelated PRs