I'm finishing my FlutterFlow app and want to protect content based on user subscriptions. I'll handle the protection with Supabase since there are certain situations where blocked content doesn't depend on whether the user is paying or not.
To do this, I'll use webhooks to send RevenueCat changes to Supabase. The only thing I need to know is how RevenueCat registers users. Researching online, I found the following:
Status: Active / period_type: Normal, Promotional, Intro, Trial
Status: Expired / period_type: Normal, Promotional, Intro, Trial
Status: Non-subscription
I also need to know if these words are registered with the first letter capitalized or not.
I'm asking this because in test environments I can't see how a real user behaves.
Thanks