Skip to content

Commit

Permalink
Merge pull request #7296 from pavinduLakshan/fix_circular_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pavinduLakshan authored Jan 10, 2025
2 parents 17228b2 + 5ba1dee commit 8bc2c01
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/slow-rules-relax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/admin.organizations.v1": patch
---

Fix incorrect imports
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
* under the License.
*/

import { CreateGroupMemberInterface, GroupsInterface, getGroupList } from "@wso2is/admin.groups.v1";
import { getGroupList } from "@wso2is/admin.groups.v1/api";
import { CreateGroupMemberInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models/groups";
import { AssignGroupsUsers } from "@wso2is/admin.roles.v2/components/wizard/assign-groups-users";
import { getRolesWizardStepIcons } from "@wso2is/admin.roles.v2/configs/ui";
import { TreeNode } from "@wso2is/admin.roles.v2/models/permission";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import { AppState, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1";
import { getGroupList } from "@wso2is/admin.groups.v1/api";
import { GroupListInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models";
import { GroupListInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models/groups";
import { PRIMARY_USERSTORE } from "@wso2is/admin.userstores.v1/constants";
import {
AlertLevels,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
UIConstants,
history
} from "@wso2is/admin.core.v1";
import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models";
import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models/groups";
import { CreateRoleInterface, CreateRoleMemberInterface } from "@wso2is/admin.roles.v2/models/roles";
import { IdentityAppsError } from "@wso2is/core/errors";
import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models";
Expand Down

0 comments on commit 8bc2c01

Please sign in to comment.