@parra/parra-js-sdk 0.3.409 → 0.3.410
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ParraAPI.d.ts +4 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -864,6 +864,8 @@ export interface ProductEntitlementProductStub {
|
|
864
864
|
key: string;
|
865
865
|
product_id: string;
|
866
866
|
entitlement_id: string;
|
867
|
+
is_consumable: boolean;
|
868
|
+
is_free: boolean;
|
867
869
|
consumable_quantity?: number | null;
|
868
870
|
}
|
869
871
|
export interface Entitlement {
|
@@ -896,6 +898,8 @@ export interface ProductEntitlement {
|
|
896
898
|
key: string;
|
897
899
|
product_id: string;
|
898
900
|
entitlement_id: string;
|
901
|
+
is_consumable: boolean;
|
902
|
+
is_free: boolean;
|
899
903
|
consumable_quantity?: number | null;
|
900
904
|
}
|
901
905
|
export interface Product {
|