@lytjs/plugin-data 6.8.0 → 6.9.1
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/index.cjs +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -348,9 +348,7 @@ function createDataManager(globalOptions = {}) {
|
|
|
348
348
|
return instance.fetch();
|
|
349
349
|
},
|
|
350
350
|
addRequestInterceptor(interceptor) {
|
|
351
|
-
manager.addRequestInterceptor(
|
|
352
|
-
interceptor
|
|
353
|
-
);
|
|
351
|
+
manager.addRequestInterceptor(interceptor);
|
|
354
352
|
},
|
|
355
353
|
addResponseInterceptor(interceptor) {
|
|
356
354
|
manager.addResponseInterceptor(interceptor);
|
package/dist/index.mjs
CHANGED
|
@@ -323,9 +323,7 @@ function createDataManager(globalOptions = {}) {
|
|
|
323
323
|
return instance.fetch();
|
|
324
324
|
},
|
|
325
325
|
addRequestInterceptor(interceptor) {
|
|
326
|
-
manager.addRequestInterceptor(
|
|
327
|
-
interceptor
|
|
328
|
-
);
|
|
326
|
+
manager.addRequestInterceptor(interceptor);
|
|
329
327
|
},
|
|
330
328
|
addResponseInterceptor(interceptor) {
|
|
331
329
|
manager.addResponseInterceptor(interceptor);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@lytjs/plugin-data",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.9.1",
|
|
5
5
|
"description": "LytJS official enhanced data plugin with optimistic updates, deduplication, and store integration",
|
|
6
6
|
"author": "lytjs",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"clean": "rm -rf dist node_modules .turbo"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@lytjs/core": "
|
|
37
|
-
"@lytjs/reactivity": "
|
|
38
|
-
"@lytjs/plugin-data-fetch": "
|
|
36
|
+
"@lytjs/core": "workspace:*",
|
|
37
|
+
"@lytjs/reactivity": "workspace:*",
|
|
38
|
+
"@lytjs/plugin-data-fetch": "workspace:*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"tsup": "^8.3.6",
|