Change Log
1.1.0
Minor Changes
- ADDED Implemented the Routes manager. You can now add the
routes
field to your root schema.
import type { Operations } from '@vsf-enterprise/bloomreach-content-manager';
export default {
resourceBundle: {
createOrUpdate: [],
remove: []
},
contentType: {
createOrUpdate: [],
rename: [],
remove: []
},
folder: {
createOrUpdate: [],
remove: [],
moveOrRename: []
},
channelsOperations: {
'en': {
componentGroup: {
createOrUpdate: [],
remove: []
},
component: {
createOrUpdate: [],
remove: []
},
layout: {
createOrUpdate: [],
remove: []
},
menu: {
createOrUpdate: [],
remove: []
},
+ route: {
+ createOrUpdate: [],
+ remove: []
+ }
}
}
} as Operations;
- FIXED Cryptic error messages containing only error codes and not the actual error cause.
1.0.2
Patch Changes
- FIXED Fixed updating existing menu.
1.0.1
Patch Changes
Update axios to ^0.28.0 to mitigate security vulnerability CVE-2023-45857
1.0.0
Minor Changes
- CHANGED Changed minimum Node version from 16 to 18. The condition that was forcing the Node version to be lower than 19 is also removed.
1.0.0
Initial release