the factory being used to create store modules
the http service for communication with the API
The store service response middleware checks if any of the known modulenames is in the data of the response When there is a modulename in the response it dispatches an action to that module to set the response data in the store
get the store seperator
Checks if requested module exists in the store If not, throws a StoreModuleNotFoundError
dispatch an action to the store, which creates an item on the server
the store module for which an item must be created
the item to be created
create a new action to add to the store which sends a get request
api endpoint
create a new action to add to the store which sends a post request
api endpoint
the last part of the url
dispatch an action to the store, which deletes an item on the server
the store module for which an item must be deleted
the id of the item to be deleted
dispatch an action to the store
the name of the module to dispatch the action to
the name of the action
the payload to sent to the action
generate and set the default store module in the store
the name of the module
get something from the store
the name of the module to get something from
the name of the getter
Get all from data from the given store module
the module from which to get all
get the all data in store state name with or without seperator
Get all data from the given store module by id
the module from which to get all
the id of the data object to get
get the update store action with or without seperator
get the delete store action with or without seperator
get the delete mutation name with or without seperator
get the read store action with or without seperator
get the read all from store getter with or without seperator
get the read by id from store getter with or without seperator
get the set all in store action with or without seperator
get the set all mutation name with or without seperator
get the update store action with or without seperator
dispatch an action to the store, which reads all items on the server
the store module for which all items must be read
set the store module in the store
the name of the module
the module to add to the store
Set the factory name
dispatch an action to the store, which reads an item on the server
the store module for which the item must be read
the id to be read
dispatch an action to the store, which updates an item on the server
the store module for which an item must be updated
the item to be updated
Generated using TypeDoc