document360-writer 0.4.95 → 0.4.96
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 +1 -1
|
@@ -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 look already-published-but-unlinked (adopt candidates), so the /publish flows can
|
|
14
|
+
tell the user why they were left out instead of silently dropping them. */
|
|
15
|
+
export declare function adoptCandidateCount(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