document360-writer 0.4.95 → 0.4.97
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.js +78 -78
- package/dist/commands/publish.d.ts +3 -0
- package/package.json +2 -2
|
@@ -10,6 +10,9 @@ export declare function publishCandidates(entries: SyncEntryState[]): {
|
|
|
10
10
|
path: string;
|
|
11
11
|
label: string;
|
|
12
12
|
}[];
|
|
13
|
+
/** Count of files that already exist on Document360 but aren't linked (link candidates), so the /publish
|
|
14
|
+
flows can tell the user why they were left out instead of silently dropping them. */
|
|
15
|
+
export declare function linkCandidateCount(entries: SyncEntryState[]): number;
|
|
13
16
|
/** A row in the grouped /publish picker: "all", a category (publishes all its candidates), or one
|
|
14
17
|
article. `paths` is what gets published when the row is chosen (one for an article, many otherwise). */
|
|
15
18
|
export type PublishRow = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "document360-writer",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.97",
|
|
4
4
|
"description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@inquirer/prompts": "^8.4.3",
|
|
35
35
|
"commander": "^14.0.3",
|
|
36
36
|
"diff": "^8.0.4",
|
|
37
|
-
"document360-engine": "^0.2.
|
|
37
|
+
"document360-engine": "^0.2.51",
|
|
38
38
|
"ink": "^5.2.1",
|
|
39
39
|
"picocolors": "^1.1.1",
|
|
40
40
|
"react": "^18.3.1",
|