@diplodoc/cli 4.16.0 → 4.16.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/build/index.js CHANGED
@@ -205916,7 +205916,7 @@ import_yargs.default.command(build).command(publish).command(translate).option("
205916
205916
  default: false,
205917
205917
  describe: "Run in quiet mode. Don't write logs to stdout",
205918
205918
  type: "boolean"
205919
- }).group(["config", "strict", "quiet", "help", "version"], "Common options:").version(true ? "4.16.0" : "").help().parse((0, import_helpers.hideBin)(process.argv), {}, (err, { strict }, output) => {
205919
+ }).group(["config", "strict", "quiet", "help", "version"], "Common options:").version(true ? "4.16.1" : "").help().parse((0, import_helpers.hideBin)(process.argv), {}, (err, { strict }, output) => {
205920
205920
  console.timeEnd(MAIN_TIMER_ID);
205921
205921
  if (err) {
205922
205922
  console.error(err);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Yandex Data UI Team <data-ui@yandex-team.ru>",
4
4
  "description": "Make documentation using yfm-docs in Markdown and HTML formats",
5
5
  "license": "MIT",
6
- "version": "4.16.0",
6
+ "version": "4.16.1",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git@github.com:diplodoc-platform/cli.git"
@@ -15,6 +15,7 @@
15
15
  "files": [
16
16
  "build",
17
17
  "assets",
18
+ "schemas",
18
19
  "src"
19
20
  ],
20
21
  "scripts": {
@@ -0,0 +1,56 @@
1
+ $schema: 'http://json-schema.org/draft-07/schema#'
2
+ $id: 'https://diplodoc.com/schemas/leading/draft-01/schema#'
3
+ title: Leading page file schema
4
+ type: object
5
+ properties:
6
+ title:
7
+ $ref: '#/definitions/TextItems'
8
+
9
+ description:
10
+ $ref: '#/definitions/TextItems'
11
+
12
+ meta:
13
+ type: object
14
+ properties:
15
+ title:
16
+ $ref: '#/definitions/TextItems'
17
+ description:
18
+ $ref: '#/definitions/TextItems'
19
+ noIndex:
20
+ type: boolean
21
+ additionalProperties: false
22
+
23
+ nav:
24
+ type: object
25
+ properties:
26
+ title:
27
+ $ref: '#/definitions/TextItems'
28
+ additionalProperties: false
29
+
30
+ links:
31
+ type: array
32
+ items:
33
+ type: object
34
+ properties:
35
+ title:
36
+ type: string
37
+ translate: md
38
+ description:
39
+ type: string
40
+ translate: md
41
+ href:
42
+ type: string
43
+ format: url
44
+ additionalProperties: false
45
+
46
+ additionalProperties: false
47
+
48
+ definitions:
49
+ TextItems:
50
+ oneOf:
51
+ - type: string
52
+ - type: array
53
+ items:
54
+ type: string
55
+ translate: md
56
+
@@ -0,0 +1,31 @@
1
+ $schema: 'http://json-schema.org/draft-07/schema#'
2
+ $id: 'https://diplodoc.com/schemas/presets/draft-01/schema#'
3
+ title: Presets file schema
4
+ type: object
5
+ properties:
6
+ default:
7
+ $ref: '#/definitions/preset'
8
+ patternProperties:
9
+ '^[a-zA-Z0-9\.\-_]+$':
10
+ $ref: '#/definitions/preset'
11
+
12
+ definitions:
13
+ preset:
14
+ type: object
15
+ properties:
16
+ i18n:
17
+ type: object
18
+ patternProperties:
19
+ '^[a-zA-Z0-9\.\-_]+$':
20
+ $ref: '#/definitions/property'
21
+ additionalProperties: true
22
+
23
+ property:
24
+ oneOf:
25
+ - type: string
26
+ translate: md
27
+ - type: number
28
+ - type: object
29
+ patternProperties:
30
+ '^[a-zA-Z0-9\.\-_]+$':
31
+ $ref: '#/definitions/property'
@@ -0,0 +1,302 @@
1
+ $schema: 'http://json-schema.org/draft-07/schema#'
2
+ $id: 'https://diplodoc.com/schemas/toc/draft-01/schema#'
3
+ title: Table of content file schema
4
+ type: object
5
+ properties:
6
+ title:
7
+ type: string
8
+ translate: md
9
+ href:
10
+ type: string
11
+ format: url
12
+ stage:
13
+ type: string
14
+ base:
15
+ type: string
16
+ singlePage:
17
+ type: boolean
18
+ when:
19
+ type:
20
+ - string
21
+ - boolean
22
+ navigation:
23
+ $ref: '#/definitions/Navigation'
24
+ items:
25
+ $ref: '#/definitions/TocItems'
26
+
27
+ definitions:
28
+ TocItems:
29
+ type: array
30
+ items:
31
+ $ref: '#/definitions/TocItem'
32
+
33
+ TocItem:
34
+ type: object
35
+ properties:
36
+ name:
37
+ type: string
38
+ translate: md
39
+ expanded:
40
+ type: boolean
41
+ hidden:
42
+ type:
43
+ - boolean
44
+ - string
45
+ items:
46
+ $ref: '#/definitions/TocItems'
47
+ oneOf:
48
+ - $ref: '#/definitions/TocItemWithLink'
49
+ - $ref: '#/definitions/TocItemWithInclude'
50
+
51
+ TocItemWithLink:
52
+ required: ['name']
53
+ properties:
54
+ name:
55
+ type: string
56
+ translate: md
57
+ href:
58
+ type: string
59
+
60
+ TocItemWithInclude:
61
+ required: ['include']
62
+ properties:
63
+ name:
64
+ type: string
65
+ translate: md
66
+ include:
67
+ $ref: '#/definitions/Include'
68
+
69
+ Include:
70
+ type: object
71
+ properties:
72
+ mode:
73
+ type: string
74
+ enum: ['link', 'merge', 'root_merge']
75
+ path:
76
+ type: string
77
+ includers:
78
+ type: array
79
+ items:
80
+ $ref: '#/definitions/Includer'
81
+ additionalProperties: false
82
+
83
+ Includer:
84
+ type: object
85
+ required: ['name']
86
+ properties:
87
+ name:
88
+ type: string
89
+ additionalProperties: true
90
+
91
+ OpenApiIncluder:
92
+ type: object
93
+ required: ['input']
94
+ properties:
95
+ input:
96
+ type: string
97
+ filter:
98
+ $ref: '#/definitions/OpenApiIncluderFilter'
99
+ noindex:
100
+ $ref: '#/definitions/OpenApiIncluderFilter'
101
+ hidden:
102
+ $ref: '#/definitions/OpenApiIncluderFilter'
103
+ sandbox:
104
+ type: object
105
+ properties:
106
+ tabName:
107
+ type: string
108
+ translate: text
109
+ host:
110
+ type: string
111
+ format: url
112
+ leadingPage:
113
+ type: object
114
+ properties:
115
+ name:
116
+ type: string
117
+ mode:
118
+ type: string
119
+ enum: ['section', 'leaf']
120
+ spec:
121
+ type: object
122
+ properties:
123
+ renderMode:
124
+ type: string
125
+ enum: ['inline', 'hidden']
126
+
127
+ OpenApiIncluderFilter:
128
+ type: object
129
+ properties:
130
+ endpoint:
131
+ type: string
132
+ tag:
133
+ type: string
134
+
135
+ Navigation:
136
+ type: object
137
+ properties:
138
+ logo:
139
+ $ref: '#/definitions/NavigationLogo'
140
+ header:
141
+ $ref: '#/definitions/NavigationHeader'
142
+
143
+ NavigationLogo:
144
+ type: object
145
+ properties:
146
+ text:
147
+ type: string
148
+ url:
149
+ type: string
150
+ format: url
151
+ urlTitle:
152
+ type: string
153
+ icon:
154
+ type: string
155
+ format: url
156
+ dark:
157
+ $ref: '#/definitions/NavigationLogo'
158
+ light:
159
+ $ref: '#/definitions/NavigationLogo'
160
+
161
+ NavigationHeader:
162
+ type: object
163
+ properties:
164
+ leftItems:
165
+ $ref: '#/definitions/NavigationItems'
166
+ rightItems:
167
+ $ref: '#/definitions/NavigationItems'
168
+ iconSize:
169
+ type: number
170
+
171
+ NavigationItems:
172
+ type: array
173
+ items:
174
+ $ref: '#/definitions/NavigationItem'
175
+
176
+ NavigationItem:
177
+ type: object
178
+ required: ['type']
179
+ properties:
180
+ type:
181
+ type: string
182
+ allOf:
183
+ - $ref: '#/definitions/NavigationBaseItem'
184
+ - oneOf:
185
+ - $ref: '#/definitions/NavigationLinkItem'
186
+ - $ref: '#/definitions/NavigationButtonItem'
187
+ - $ref: '#/definitions/NavigationDropdownItem'
188
+ - $ref: '#/definitions/NavigationControlsItem'
189
+
190
+ NavigationBaseItem:
191
+ type: object
192
+ properties:
193
+ text:
194
+ type: string
195
+ translate: md
196
+ url:
197
+ type: string
198
+ format: url
199
+ icon:
200
+ type: string
201
+ format: url
202
+ iconSize:
203
+ type: number
204
+
205
+ NavigationLinkItem:
206
+ type: object
207
+ properties:
208
+ type:
209
+ type: string
210
+ pattern: '^link$'
211
+ target:
212
+ $ref: '#/definitions/NavigationLinkTarget'
213
+ arrow:
214
+ type: boolean
215
+ required: ['type', 'text']
216
+
217
+ NavigationButtonItem:
218
+ properties:
219
+ type:
220
+ type: string
221
+ pattern: '^button$'
222
+ urlTitle:
223
+ type: string
224
+ translate: md
225
+ primary:
226
+ type: boolean
227
+ size:
228
+ type: string
229
+ theme:
230
+ type: string
231
+ img:
232
+ oneOf:
233
+ - type: string
234
+ - type: object
235
+ required: ['data']
236
+ properties:
237
+ data:
238
+ type: string
239
+ position:
240
+ type: string
241
+ enum: ['left', 'right']
242
+ alt:
243
+ type: string
244
+ translate: md
245
+ analyticsEvents:
246
+ oneOf:
247
+ - $ref: '#/definitions/NavigationAnalyticsEvent'
248
+ - type: array
249
+ items:
250
+ $ref: '#/definitions/NavigationAnalyticsEvent'
251
+ target:
252
+ $ref: '#/definitions/NavigationLinkTarget'
253
+ width:
254
+ type: string
255
+ enum: ['auto', 'max']
256
+ required: ['type', 'text', 'url']
257
+
258
+ NavigationDropdownItem:
259
+ type: object
260
+ properties:
261
+ type:
262
+ type: string
263
+ pattern: '^dropdown$'
264
+ items:
265
+ type: array
266
+ items:
267
+ $ref: '#/definitions/NavigationLinkItem'
268
+ required: ['type', 'items']
269
+
270
+ NavigationControlsItem:
271
+ type: object
272
+ properties:
273
+ type:
274
+ type: string
275
+ pattern: '^controls$'
276
+ required: ['type']
277
+
278
+ NavigationLinkTarget:
279
+ type: string
280
+ enum: ['_self', '_blank', '_parent', '_top']
281
+
282
+ NavigationAnalyticsEvent:
283
+ type: object
284
+ required: ['name']
285
+ properties:
286
+ name:
287
+ type: string
288
+ type:
289
+ type: string
290
+ counters:
291
+ type: object
292
+ properties:
293
+ include:
294
+ type: array
295
+ items:
296
+ type: string
297
+ exclude:
298
+ type: array
299
+ items:
300
+ type: string
301
+ context:
302
+ type: string