@isardsat/editorial-server 6.18.0 → 6.18.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/routes/data.js +4 -4
- package/package.json +3 -3
package/dist/routes/data.js
CHANGED
|
@@ -463,11 +463,11 @@ export function createDataRoutes(config, storage) {
|
|
|
463
463
|
},
|
|
464
464
|
tags: ["Data"],
|
|
465
465
|
}), async (c) => {
|
|
466
|
-
// Fetch both preview and production content
|
|
466
|
+
// Fetch both preview and production content (not cached to ensure real-time diff)
|
|
467
467
|
const [previewContent, productionContent, schema] = await Promise.all([
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
468
|
+
storage.getContent({ production: false }),
|
|
469
|
+
storage.getContent({ production: true }),
|
|
470
|
+
storage.getSchema(),
|
|
471
471
|
]);
|
|
472
472
|
const result = {
|
|
473
473
|
collections: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isardsat/editorial-server",
|
|
3
|
-
"version": "6.18.
|
|
3
|
+
"version": "6.18.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"jose": "^6.1.3",
|
|
16
16
|
"yaml": "^2.8.1",
|
|
17
17
|
"zod": "^4.1.11",
|
|
18
|
-
"@isardsat/editorial-admin": "^6.18.
|
|
19
|
-
"@isardsat/editorial-common": "^6.18.
|
|
18
|
+
"@isardsat/editorial-admin": "^6.18.1",
|
|
19
|
+
"@isardsat/editorial-common": "^6.18.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@tsconfig/node22": "^22.0.0",
|