cloud-ide-core 2.0.78 → 2.0.83
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/fesm2022/cloud-ide-core-workflow-registry-list.component-B453QJwg.mjs +323 -0
- package/fesm2022/cloud-ide-core-workflow-registry-list.component-B453QJwg.mjs.map +1 -0
- package/fesm2022/cloud-ide-core.mjs +119 -9
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1924,7 +1924,12 @@ declare class CideCoreUserCreateComponent {
|
|
|
1924
1924
|
private findExistingException;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* Process exceptions for each entity mapping based on modified vs actual permissions
|
|
1927
|
-
* This method should be called during save to create core_user_role_exceptions
|
|
1927
|
+
* This method should be called during save to create/update/delete core_user_role_exceptions
|
|
1928
|
+
*
|
|
1929
|
+
* Logic:
|
|
1930
|
+
* - If modified !== actual: create/update exception
|
|
1931
|
+
* - If modified === actual BUT exception exists in DB: delete exception
|
|
1932
|
+
* - If modified === actual AND no exception exists: do nothing
|
|
1928
1933
|
*/
|
|
1929
1934
|
processRoleExceptions(): CoreUserRoleExceptions[];
|
|
1930
1935
|
/**
|