create-confluence-sync 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/sync.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-confluence-sync",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Bidirectional Confluence Server documentation sync via Git. Edit XHTML locally, commit, auto-sync with Confluence.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/sync.js CHANGED
@@ -201,6 +201,7 @@ export async function push(apiClient, tree, projectRoot, spaceKey, changedFiles,
201
201
  path: toNorm,
202
202
  parentId: parentChanged ? newParentId : existing.parentId,
203
203
  version: result.version,
204
+ hidden: false,
204
205
  });
205
206
  moved++;
206
207
  }