ole-magnus aker

Results 2 issues of ole-magnus aker

Using the filter options `is`, `in`, etc, I run into problems: ```typescript const entitlements = await this.chargebee?.entitlement .list({ feature_id: { is: featureId }, entity_type: { in: ['plan_price'] }, }) .request();...

## Context A typical use case for me is to check the `value` when fetching `SubscriptionEntitlement`. One example API call: ```typescript import { ChargeBee } from 'chargebee-typescript'; const chargebee =...