/** * Commonly used operations within data services. * * Each value represents a standard CRUD style method * that can be implemented by a service. */ export enum DyNTS_DSF { /** Retrieve all documents from the store. */ getAll = 'getAll', /** Load a single document by its identifier. */ getDataById = 'getDataById', /* checkIfDataExists = 'checkIfDataExists', createData = 'createNewData', */ /** Update an existing document. */ modifyData = 'modifyData', /** Remove a document. */ deleteData = 'deleteData', /** Return data supplied directly rather than fetched. */ getProvidedData = 'getProvidedData', }