commerce.js
commerce.js copied to clipboard
Type definitions are not updated with the latest version
Your typescript definitions are not updated with the latest version; for example, per the 2022-07-21's change logs, the live object was removed. However, when I examine the type definitions file, it shows that the object still exists on the CheckoutToken object, as demonstrated here:
export interface CheckoutToken {
// truncated for simplicity
shipping_methods: ShippingMethod[];
live: Live;
}