@parra/parra-js-sdk 0.3.412 → 0.3.414

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.
@@ -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
- note?: string | null;
779
+ is_consumable: boolean;
780
+ is_free: boolean;
776
781
  quantity_available?: number | null;
777
782
  quantity_consumed?: number | null;
778
783
  }
@@ -2167,6 +2172,7 @@ export interface CreateTicketRequestBody {
2167
2172
  export interface TeamMemberStub {
2168
2173
  id: string;
2169
2174
  tenant_id: string;
2175
+ user_id?: string | null;
2170
2176
  name: string;
2171
2177
  avatar?: ImageAssetStub | null;
2172
2178
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.412",
3
+ "version": "0.3.414",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",