@feardread/feature-factory 4.0.7 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.min.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/factory/thunk.js +1 -1
- package/src/index.js +3 -1
package/package.json
CHANGED
package/src/factory/thunk.js
CHANGED
|
@@ -171,7 +171,7 @@ export const ThunkFactory = {
|
|
|
171
171
|
|
|
172
172
|
const operation = STANDARD_OPERATIONS[prefix];
|
|
173
173
|
if (operation) {
|
|
174
|
-
return createGenericThunk(entity, prefix
|
|
174
|
+
return createGenericThunk(entity, prefix);
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
// Fallback to original behavior for custom prefixes
|
package/src/index.js
CHANGED
|
@@ -6,4 +6,6 @@ export { default as ApiFactory } from "./factory/service.js";
|
|
|
6
6
|
|
|
7
7
|
export { default as StateFactory } from "./factory/state.js";
|
|
8
8
|
|
|
9
|
-
export { default as CacheFactory } from "./factory/cache.js";
|
|
9
|
+
export { default as CacheFactory } from "./factory/cache.js";
|
|
10
|
+
|
|
11
|
+
export { default as API } from "./factory/api.js";
|