cloud-ide-core 2.0.79 → 2.0.84

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/index.d.ts CHANGED
@@ -58,7 +58,7 @@ declare class MenuListComponent implements OnInit {
58
58
  quickAddForm: _angular_forms.FormGroup<{
59
59
  syme_title: _angular_forms.FormControl<string>;
60
60
  syme_desc: _angular_forms.FormControl<string>;
61
- syme_type: _angular_forms.FormControl<"module" | "section" | "menu" | "title">;
61
+ syme_type: _angular_forms.FormControl<"title" | "module" | "section" | "menu">;
62
62
  syme_id_syme: _angular_forms.FormControl<string>;
63
63
  syme_path: _angular_forms.FormControl<string>;
64
64
  syme_icon: _angular_forms.FormControl<string>;
@@ -1924,7 +1924,13 @@ 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
1933
+ * - Also process all existing exceptions from DB to ensure nothing is missed
1928
1934
  */
1929
1935
  processRoleExceptions(): CoreUserRoleExceptions[];
1930
1936
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-core",
3
- "version": "2.0.79",
3
+ "version": "2.0.84",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"