@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.
- package/esm2020/app/eo-client/about-state/about-state.component.mjs +3 -3
- package/esm2020/app/eo-framework/actions/actions/share-object-action/share-object-action.mjs +2 -2
- package/esm2020/app/eo-framework/object-details/object-details.component.mjs +2 -2
- package/esm2020/app/eo-framework/result-list/result-list.component.mjs +2 -2
- package/esm2020/projects/eo-sdk/core/lib/model/dms-object.model.mjs +5 -3
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs +4 -2
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
- package/fesm2015/eo-sdk-client.mjs +5 -5
- package/fesm2015/eo-sdk-client.mjs.map +1 -1
- package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs +4 -2
- package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
- package/fesm2020/eo-sdk-client.mjs +5 -5
- package/fesm2020/eo-sdk-client.mjs.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/model/dms-object.model.d.ts.map +1 -1
|
@@ -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) {
|