@parra/parra-js-sdk 0.3.411 → 0.3.413
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 +7 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -436,6 +436,10 @@ export interface TenantUserEntitlement {
|
|
436
436
|
entitlement_id: string;
|
437
437
|
key: string;
|
438
438
|
title: string;
|
439
|
+
is_consumable: boolean;
|
440
|
+
is_free: boolean;
|
441
|
+
quantity_available?: number | null;
|
442
|
+
quantity_consumed?: number | null;
|
439
443
|
}
|
440
444
|
export interface TenantUserRoleStub {
|
441
445
|
id: string;
|
@@ -772,7 +776,8 @@ export interface UserEntitlement {
|
|
772
776
|
entitlement_id: string;
|
773
777
|
key: string;
|
774
778
|
title: string;
|
775
|
-
|
779
|
+
is_consumable: boolean;
|
780
|
+
is_free: boolean;
|
776
781
|
quantity_available?: number | null;
|
777
782
|
quantity_consumed?: number | null;
|
778
783
|
}
|
@@ -920,6 +925,7 @@ export interface CreateProductEntitlementRequestBody {
|
|
920
925
|
}
|
921
926
|
export interface UpdateProductEntitlementRequestBody {
|
922
927
|
consumable_quantity?: number | null;
|
928
|
+
update_for_all_existing_entitlements?: boolean | null;
|
923
929
|
}
|
924
930
|
export interface AppFaq {
|
925
931
|
id: string;
|