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