@eo-sdk/client 10.7.0-rc.1 → 10.7.0-rc.2

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.
@@ -4499,7 +4499,8 @@ class DmsObject {
4499
4499
  edit: json.rights[0].privileges.edit && !(this.lock && this.lock.by.other),
4500
4500
  delete: json.rights[0].privileges.delete && !(this.lock && this.lock.by.other),
4501
4501
  finalize: json.rights[0].privileges.finalize && !(this.lock && this.lock.by.other),
4502
- recycle: json.rights[0].privileges.recycle && !(this.lock && this.lock.by.other)
4502
+ recycle: json.rights[0].privileges.recycle && !(this.lock && this.lock.by.other),
4503
+ share: json.rights[0].privileges.share && !(this.lock && this.lock.by.other),
4503
4504
  };
4504
4505
  }
4505
4506
  else {
@@ -4508,7 +4509,8 @@ class DmsObject {
4508
4509
  edit: false,
4509
4510
  delete: false,
4510
4511
  finalize: false,
4511
- recycle: false
4512
+ recycle: false,
4513
+ share: false
4512
4514
  };
4513
4515
  }
4514
4516
  if (json.shares) {