@cparra/apexdocs 3.4.1 → 3.4.2
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/generate.js +1 -1
- package/dist/index.d.ts +8 -5
- package/dist/index.js +1 -1
- package/dist/{logger-BJXlA0YD.js → logger-D84qiac7.js} +405 -400
- package/package.json +1 -1
package/dist/cli/generate.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -11,9 +11,8 @@ type LinkingStrategy =
|
|
|
11
11
|
// No logic will be applied, the reference path will be used as is.
|
|
12
12
|
| 'none';
|
|
13
13
|
|
|
14
|
-
type
|
|
14
|
+
type CliConfigurableMarkdownConfig = {
|
|
15
15
|
sourceDir: string;
|
|
16
|
-
targetGenerator: 'markdown';
|
|
17
16
|
targetDir: string;
|
|
18
17
|
scope: string[];
|
|
19
18
|
namespace?: string;
|
|
@@ -22,11 +21,15 @@ type UserDefinedMarkdownConfig = {
|
|
|
22
21
|
sortAlphabetically: boolean;
|
|
23
22
|
includeMetadata: boolean;
|
|
24
23
|
linkingStrategy: LinkingStrategy;
|
|
25
|
-
excludeTags: string[];
|
|
26
24
|
referenceGuideTitle: string;
|
|
27
|
-
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
type UserDefinedMarkdownConfig = {
|
|
28
|
+
targetGenerator: 'markdown' /** Glob patterns to exclude files from the documentation. */;
|
|
29
|
+
excludeTags: string[];
|
|
28
30
|
exclude: string[];
|
|
29
|
-
} &
|
|
31
|
+
} & CliConfigurableMarkdownConfig &
|
|
32
|
+
Partial<ConfigurableHooks>;
|
|
30
33
|
|
|
31
34
|
type UserDefinedOpenApiConfig = {
|
|
32
35
|
targetGenerator: 'openapi';
|