@openscreen/internal-sdk 1.9.8 → 1.9.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openscreen/internal-sdk",
3
- "version": "1.9.8",
3
+ "version": "1.9.9",
4
4
  "description": "Openscreen Software Development Kit (SDK)",
5
5
  "keywords": [
6
6
  "qr",
package/typings/sdk.d.ts CHANGED
@@ -690,13 +690,15 @@ export interface AccountInvitation {
690
690
  sendersFirstName: string;
691
691
  sendersLastName: string;
692
692
  sendersUserId?: string | null;
693
- userRole: AccountUserRole;
693
+ userRole?: AccountUserRole | null;
694
+ userRoleIds?: Array<any>;
694
695
  }
695
696
  export interface AccountInvitationRequestBody {
696
697
  email: string;
697
698
  firstName: string;
698
699
  lastName: string;
699
- userRole: AccountUserRole;
700
+ userRole?: AccountUserRole | null;
701
+ userRoleIds?: Array<any>;
700
702
  }
701
703
  export interface AccountPhoneContact {
702
704
  accountId: string;
@@ -2960,7 +2962,8 @@ export interface ResponseBodyUser {
2960
2962
  lastName: string;
2961
2963
  middleName: string;
2962
2964
  userId?: string | null;
2963
- userRole: AccountUserRole;
2965
+ userRole?: AccountUserRole | null;
2966
+ userRoleIds?: Array<any>;
2964
2967
  }
2965
2968
  export interface ResponseQrCode {
2966
2969
  appAccountId?: string | null;
@@ -3568,7 +3571,8 @@ export interface CreateInvitationByAccountIdRequestBody extends AccountInvitatio
3568
3571
  email: string;
3569
3572
  firstName: string;
3570
3573
  lastName: string;
3571
- userRole: AccountUserRole;
3574
+ userRole?: AccountUserRole | null;
3575
+ userRoleIds?: Array<any>;
3572
3576
  }
3573
3577
  export interface CreateInvitationByAccountIdResponseBody {
3574
3578
  accountInvitation: AccountInvitation;
@@ -4326,7 +4330,8 @@ export interface GetUserByAccountIdResponseBody extends ResponseBodyUser {
4326
4330
  lastName: string;
4327
4331
  middleName: string;
4328
4332
  userId?: string | null;
4329
- userRole: AccountUserRole;
4333
+ userRole?: AccountUserRole | null;
4334
+ userRoleIds?: Array<any>;
4330
4335
  }
4331
4336
  export interface GetUserMediasByAccountIdPathParameters {
4332
4337
  accountId: string;
@@ -4508,7 +4513,8 @@ export interface UpdateUserByAccountIdPathParameters {
4508
4513
  userId: string;
4509
4514
  }
4510
4515
  export interface UpdateUserByAccountIdRequestBody {
4511
- userRole: AccountUserRole;
4516
+ userRole?: AccountUserRole | null;
4517
+ userRoleIds?: Array<any>;
4512
4518
  }
4513
4519
  export interface UpdateUserByAccountIdResponseBody {
4514
4520
  accountUser: AccountUser;