@odla-ai/chapter 0.27.0 → 0.27.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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1312,9 +1312,9 @@ function createChapterIntegration(chapter, options = {}) {
|
|
|
1312
1312
|
// The snapshot route is deliberately private. A credential-free smoke
|
|
1313
1313
|
// request must prove that the route is mounted and closed.
|
|
1314
1314
|
{ path: "/api/network/snapshot", expectedStatus: 401 },
|
|
1315
|
-
...chapter.network.readers.length > 0 ? [{ path: "/api/network/records
|
|
1315
|
+
...chapter.network.readers.length > 0 ? [{ path: "/api/network/records", expectedStatus: 401 }] : [],
|
|
1316
1316
|
...chapter.network.readers.some((reader) => reader.sharedNotes.length > 0) ? [{
|
|
1317
|
-
path: "/api/network/shared-notes
|
|
1317
|
+
path: "/api/network/shared-notes",
|
|
1318
1318
|
expectedStatus: 401
|
|
1319
1319
|
}] : [],
|
|
1320
1320
|
// Formation metadata is public only when the host explicitly enables
|