@parra/parra-js-sdk 0.3.105 → 0.3.107

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.
@@ -35,6 +35,8 @@ export interface UserResponse {
35
35
  email_verified?: boolean;
36
36
  locale?: string | null;
37
37
  type: string;
38
+ role?: string | null;
39
+ role_other_description?: string | null;
38
40
  avatar?: ImageAssetStub;
39
41
  }
40
42
  export interface TenantUserStub {
@@ -1416,6 +1418,7 @@ export interface UpdateApplicationRequestBody {
1416
1418
  export interface Entitlement {
1417
1419
  }
1418
1420
  export interface TenantMetrics {
1421
+ application_count: number;
1419
1422
  child_tenant_count: number;
1420
1423
  question_count: number;
1421
1424
  answer_count: number;
@@ -1681,6 +1684,8 @@ export interface TenantUserCollectionResponse {
1681
1684
  }
1682
1685
  export interface UpdateTenantRequestBody {
1683
1686
  name?: string;
1687
+ new_project?: boolean;
1688
+ skipped_onboarding?: boolean;
1684
1689
  logo?: ImageAssetStub | null;
1685
1690
  }
1686
1691
  export interface CreateTenantForUserRequestBody {
@@ -1691,7 +1696,7 @@ export interface UpdateUserRequestBody {
1691
1696
  first_name: string;
1692
1697
  last_name: string;
1693
1698
  name: string;
1694
- role?: string;
1699
+ role?: string | null;
1695
1700
  role_other_description?: string | null;
1696
1701
  }
1697
1702
  export interface CreateIdentityRequestBody {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.105",
3
+ "version": "0.3.107",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",