What problem does your feature request address?
I'd like custom fields on entities to be strongly typed natively in the SDK, without me needing to create my own supertypes like this
export type SubscriptionWithCustomFields = Subscription & {
cf_myCustomField: string;
};
const result = await chargebee.subscription.retrieve(subscriptionId);
return result.subscription as SubscriptionWithCustomFields;
Describe the desired solution
No response
Alternatives considered
No response
Additional context
No response
What problem does your feature request address?
I'd like custom fields on entities to be strongly typed natively in the SDK, without me needing to create my own supertypes like this
Describe the desired solution
No response
Alternatives considered
No response
Additional context
No response