@nexushub/client 0.7.4 → 0.7.6
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/cli.cjs +165 -99
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/dist/react.cjs +1 -0
- package/dist/react.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1517,6 +1517,7 @@ var ContentEngine = class {
|
|
|
1517
1517
|
tags = [],
|
|
1518
1518
|
revalidate,
|
|
1519
1519
|
...fetchOptions
|
|
1520
|
+
// 🚀 RESOLVED: Destructure with safe default to prevent undefined spreads
|
|
1520
1521
|
} = options;
|
|
1521
1522
|
const controller = new AbortController();
|
|
1522
1523
|
const id = setTimeout(() => controller.abort(), timeout);
|
package/dist/index.js
CHANGED
|
@@ -1471,6 +1471,7 @@ var ContentEngine = class {
|
|
|
1471
1471
|
tags = [],
|
|
1472
1472
|
revalidate,
|
|
1473
1473
|
...fetchOptions
|
|
1474
|
+
// 🚀 RESOLVED: Destructure with safe default to prevent undefined spreads
|
|
1474
1475
|
} = options;
|
|
1475
1476
|
const controller = new AbortController();
|
|
1476
1477
|
const id = setTimeout(() => controller.abort(), timeout);
|
package/dist/react.cjs
CHANGED
|
@@ -1116,6 +1116,7 @@ var ContentEngine = class {
|
|
|
1116
1116
|
tags = [],
|
|
1117
1117
|
revalidate,
|
|
1118
1118
|
...fetchOptions
|
|
1119
|
+
// 🚀 RESOLVED: Destructure with safe default to prevent undefined spreads
|
|
1119
1120
|
} = options;
|
|
1120
1121
|
const controller = new AbortController();
|
|
1121
1122
|
const id = setTimeout(() => controller.abort(), timeout);
|
package/dist/react.js
CHANGED
|
@@ -1116,6 +1116,7 @@ var ContentEngine = class {
|
|
|
1116
1116
|
tags = [],
|
|
1117
1117
|
revalidate,
|
|
1118
1118
|
...fetchOptions
|
|
1119
|
+
// 🚀 RESOLVED: Destructure with safe default to prevent undefined spreads
|
|
1119
1120
|
} = options;
|
|
1120
1121
|
const controller = new AbortController();
|
|
1121
1122
|
const id = setTimeout(() => controller.abort(), timeout);
|