Add subscription support + license extension on renewal

This commit is contained in:
Krystie
2026-08-19 12:45:06 -07:00
parent 14d0eaa2b3
commit ff722aa4d8
2075 changed files with 357707 additions and 63 deletions
@@ -0,0 +1,20 @@
import { ActiveEntitlement } from './ActiveEntitlements.js';
import { ApiList } from '../../lib.js';
export interface ActiveEntitlementSummary {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'entitlements.active_entitlement_summary';
/**
* The customer that is entitled to this feature.
*/
customer: string;
/**
* The list of entitlements this customer has.
*/
entitlements: ApiList<ActiveEntitlement>;
/**
* If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
*/
livemode: boolean;
}