@parra/parra-js-sdk 0.3.104 → 0.3.106
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
|
@@ -35,6 +35,8 @@ export interface UserResponse {
|
|
|
35
35
|
email_verified?: boolean;
|
|
36
36
|
locale?: string | null;
|
|
37
37
|
type: string;
|
|
38
|
+
role?: string;
|
|
39
|
+
role_other_description?: string | null;
|
|
38
40
|
avatar?: ImageAssetStub;
|
|
39
41
|
}
|
|
40
42
|
export interface TenantUserStub {
|
|
@@ -1691,6 +1693,8 @@ export interface UpdateUserRequestBody {
|
|
|
1691
1693
|
first_name: string;
|
|
1692
1694
|
last_name: string;
|
|
1693
1695
|
name: string;
|
|
1696
|
+
role?: string;
|
|
1697
|
+
role_other_description?: string | null;
|
|
1694
1698
|
}
|
|
1695
1699
|
export interface CreateIdentityRequestBody {
|
|
1696
1700
|
provider: string;
|