Skip to content

Commit c692e6c

Browse files
chore: wip
1 parent d99c8e6 commit c692e6c

File tree

1 file changed

+35
-0
lines changed
  • storage/framework/core/commerce/src/categories

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Export all functions from fetch.ts
2+
export {
3+
fetchAll,
4+
fetchById,
5+
fetchByName,
6+
fetchActive,
7+
fetchRootCategories,
8+
fetchChildCategories,
9+
fetchByDisplayOrder,
10+
fetchStats,
11+
compareCategoryGrowth,
12+
fetchCategoryTree,
13+
} from './fetch'
14+
15+
// Export all functions from store.ts
16+
export {
17+
store,
18+
} from './store'
19+
20+
// Export all functions from destroy.ts
21+
export {
22+
remove,
23+
bulkRemove,
24+
removeChildCategories,
25+
deactivate,
26+
deactivateChildCategories,
27+
} from './destroy'
28+
29+
// Export all functions from update.ts
30+
export {
31+
update,
32+
updateDisplayOrder,
33+
updateActiveStatus,
34+
updateParent,
35+
} from './update'

0 commit comments

Comments
 (0)