nextemos 5.1.8 → 5.1.9

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.
@@ -68,7 +68,7 @@ const fetchRequest = () => {
68
68
  // Cache seçeneği varsa onu kullan
69
69
  if (options.cache)
70
70
  requestOptions.cache = options.cache;
71
- if (["debug", "info", "trace"].includes(FETCH_OPTIONS.LOG_LEVEL))
71
+ if (["debug", "info"].includes(FETCH_OPTIONS.LOG_LEVEL))
72
72
  console.log(`Fetch Request: ${method}`, apiURL.toString(), FETCH_OPTIONS.LOG_LEVEL === "debug" ? requestOptions : "");
73
73
  try {
74
74
  const response = yield fetch(apiURL.toString(), requestOptions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "5.1.8",
3
+ "version": "5.1.9",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",