@memberjunction/cli 2.117.0 → 2.119.0
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/README.md +358 -55
- package/dist/commands/clean/index.js +2 -4
- package/dist/commands/dbdoc/analyze.d.ts +3 -3
- package/dist/commands/dbdoc/analyze.js +25 -48
- package/dist/commands/dbdoc/export.d.ts +11 -4
- package/dist/commands/dbdoc/export.js +72 -75
- package/dist/commands/dbdoc/generate-queries.d.ts +13 -0
- package/dist/commands/dbdoc/generate-queries.js +82 -0
- package/dist/commands/dbdoc/init.d.ts +1 -4
- package/dist/commands/dbdoc/init.js +7 -118
- package/dist/commands/dbdoc/reset.d.ts +9 -0
- package/dist/commands/dbdoc/reset.js +53 -0
- package/dist/commands/dbdoc/status.d.ts +9 -0
- package/dist/commands/dbdoc/status.js +52 -0
- package/dist/commands/migrate/index.js +3 -5
- package/dist/commands/sync/push.d.ts +2 -0
- package/dist/commands/sync/push.js +18 -1
- package/dist/commands/sync/status.d.ts +2 -0
- package/dist/commands/sync/status.js +14 -1
- package/dist/commands/test/compare.d.ts +18 -0
- package/dist/commands/test/compare.js +73 -0
- package/dist/commands/test/history.d.ts +15 -0
- package/dist/commands/test/history.js +66 -0
- package/dist/commands/test/index.d.ts +6 -0
- package/dist/commands/test/index.js +31 -0
- package/dist/commands/test/list.d.ts +16 -0
- package/dist/commands/test/list.js +73 -0
- package/dist/commands/test/run.d.ts +17 -0
- package/dist/commands/test/run.js +69 -0
- package/dist/commands/test/suite.d.ts +15 -0
- package/dist/commands/test/suite.js +58 -0
- package/dist/commands/test/validate.d.ts +17 -0
- package/dist/commands/test/validate.js +70 -0
- package/dist/config.d.ts +16 -12
- package/dist/config.js +45 -9
- package/oclif.manifest.json +791 -85
- package/package.json +12 -9
- package/dist/commands/dbdoc/review.d.ts +0 -10
- package/dist/commands/dbdoc/review.js +0 -81
package/oclif.manifest.json
CHANGED
|
@@ -22,6 +22,38 @@
|
|
|
22
22
|
"index.js"
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
|
+
"clean": {
|
|
26
|
+
"aliases": [],
|
|
27
|
+
"args": {},
|
|
28
|
+
"description": "Resets the MemberJunction database to a pre-installation state",
|
|
29
|
+
"examples": [
|
|
30
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
31
|
+
],
|
|
32
|
+
"flags": {
|
|
33
|
+
"verbose": {
|
|
34
|
+
"char": "v",
|
|
35
|
+
"description": "Enable additional logging",
|
|
36
|
+
"name": "verbose",
|
|
37
|
+
"allowNo": false,
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"hasDynamicHelp": false,
|
|
42
|
+
"hiddenAliases": [],
|
|
43
|
+
"id": "clean",
|
|
44
|
+
"pluginAlias": "@memberjunction/cli",
|
|
45
|
+
"pluginName": "@memberjunction/cli",
|
|
46
|
+
"pluginType": "core",
|
|
47
|
+
"strict": true,
|
|
48
|
+
"enableJsonFlag": false,
|
|
49
|
+
"isESM": false,
|
|
50
|
+
"relativePath": [
|
|
51
|
+
"dist",
|
|
52
|
+
"commands",
|
|
53
|
+
"clean",
|
|
54
|
+
"index.js"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
25
57
|
"bump": {
|
|
26
58
|
"aliases": [],
|
|
27
59
|
"args": {},
|
|
@@ -94,25 +126,24 @@
|
|
|
94
126
|
"index.js"
|
|
95
127
|
]
|
|
96
128
|
},
|
|
97
|
-
"
|
|
129
|
+
"codegen": {
|
|
98
130
|
"aliases": [],
|
|
99
131
|
"args": {},
|
|
100
|
-
"description": "
|
|
132
|
+
"description": "Run CodeGen to generate code and update metadata for MemberJunction",
|
|
101
133
|
"examples": [
|
|
102
134
|
"<%= config.bin %> <%= command.id %>\n"
|
|
103
135
|
],
|
|
104
136
|
"flags": {
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"name": "verbose",
|
|
137
|
+
"skipdb": {
|
|
138
|
+
"description": "Skip database migration",
|
|
139
|
+
"name": "skipdb",
|
|
109
140
|
"allowNo": false,
|
|
110
141
|
"type": "boolean"
|
|
111
142
|
}
|
|
112
143
|
},
|
|
113
144
|
"hasDynamicHelp": false,
|
|
114
145
|
"hiddenAliases": [],
|
|
115
|
-
"id": "
|
|
146
|
+
"id": "codegen",
|
|
116
147
|
"pluginAlias": "@memberjunction/cli",
|
|
117
148
|
"pluginName": "@memberjunction/cli",
|
|
118
149
|
"pluginType": "core",
|
|
@@ -122,28 +153,42 @@
|
|
|
122
153
|
"relativePath": [
|
|
123
154
|
"dist",
|
|
124
155
|
"commands",
|
|
125
|
-
"
|
|
156
|
+
"codegen",
|
|
126
157
|
"index.js"
|
|
127
158
|
]
|
|
128
159
|
},
|
|
129
|
-
"
|
|
160
|
+
"dbdoc:analyze": {
|
|
130
161
|
"aliases": [],
|
|
131
162
|
"args": {},
|
|
132
|
-
"description": "
|
|
163
|
+
"description": "Analyze database and generate documentation (delegates to db-auto-doc analyze)",
|
|
133
164
|
"examples": [
|
|
134
|
-
"<%= config.bin %> <%= command.id
|
|
165
|
+
"<%= config.bin %> <%= command.id %>",
|
|
166
|
+
"<%= config.bin %> <%= command.id %> --resume ./output/run-6/state.json",
|
|
167
|
+
"<%= config.bin %> <%= command.id %> --config ./my-config.json"
|
|
135
168
|
],
|
|
136
169
|
"flags": {
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
170
|
+
"resume": {
|
|
171
|
+
"char": "r",
|
|
172
|
+
"description": "Resume from an existing state file",
|
|
173
|
+
"name": "resume",
|
|
174
|
+
"required": false,
|
|
175
|
+
"hasDynamicHelp": false,
|
|
176
|
+
"multiple": false,
|
|
177
|
+
"type": "option"
|
|
178
|
+
},
|
|
179
|
+
"config": {
|
|
180
|
+
"char": "c",
|
|
181
|
+
"description": "Path to config file",
|
|
182
|
+
"name": "config",
|
|
183
|
+
"default": "./config.json",
|
|
184
|
+
"hasDynamicHelp": false,
|
|
185
|
+
"multiple": false,
|
|
186
|
+
"type": "option"
|
|
142
187
|
}
|
|
143
188
|
},
|
|
144
189
|
"hasDynamicHelp": false,
|
|
145
190
|
"hiddenAliases": [],
|
|
146
|
-
"id": "
|
|
191
|
+
"id": "dbdoc:analyze",
|
|
147
192
|
"pluginAlias": "@memberjunction/cli",
|
|
148
193
|
"pluginName": "@memberjunction/cli",
|
|
149
194
|
"pluginType": "core",
|
|
@@ -153,29 +198,92 @@
|
|
|
153
198
|
"relativePath": [
|
|
154
199
|
"dist",
|
|
155
200
|
"commands",
|
|
156
|
-
"
|
|
157
|
-
"
|
|
201
|
+
"dbdoc",
|
|
202
|
+
"analyze.js"
|
|
158
203
|
]
|
|
159
204
|
},
|
|
160
|
-
"dbdoc:
|
|
205
|
+
"dbdoc:export": {
|
|
161
206
|
"aliases": [],
|
|
162
207
|
"args": {},
|
|
163
|
-
"description": "
|
|
208
|
+
"description": "Export documentation in multiple formats (delegates to db-auto-doc export)",
|
|
164
209
|
"examples": [
|
|
165
|
-
"<%= config.bin %> <%= command.id %>",
|
|
166
|
-
"<%= config.bin %> <%= command.id %> --
|
|
167
|
-
"<%= config.bin %> <%= command.id %> --
|
|
210
|
+
"<%= config.bin %> <%= command.id %> --state-file=./db-doc-state.json",
|
|
211
|
+
"<%= config.bin %> <%= command.id %> --sql",
|
|
212
|
+
"<%= config.bin %> <%= command.id %> --markdown",
|
|
213
|
+
"<%= config.bin %> <%= command.id %> --html",
|
|
214
|
+
"<%= config.bin %> <%= command.id %> --csv",
|
|
215
|
+
"<%= config.bin %> <%= command.id %> --mermaid",
|
|
216
|
+
"<%= config.bin %> <%= command.id %> --sql --markdown --html --csv --mermaid --apply"
|
|
168
217
|
],
|
|
169
218
|
"flags": {
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
219
|
+
"state-file": {
|
|
220
|
+
"char": "s",
|
|
221
|
+
"description": "Path to state JSON file",
|
|
222
|
+
"name": "state-file",
|
|
223
|
+
"hasDynamicHelp": false,
|
|
224
|
+
"multiple": false,
|
|
225
|
+
"type": "option"
|
|
226
|
+
},
|
|
227
|
+
"output-dir": {
|
|
228
|
+
"char": "o",
|
|
229
|
+
"description": "Output directory for generated files",
|
|
230
|
+
"name": "output-dir",
|
|
231
|
+
"hasDynamicHelp": false,
|
|
232
|
+
"multiple": false,
|
|
233
|
+
"type": "option"
|
|
234
|
+
},
|
|
235
|
+
"sql": {
|
|
236
|
+
"description": "Generate SQL script",
|
|
237
|
+
"name": "sql",
|
|
238
|
+
"allowNo": false,
|
|
239
|
+
"type": "boolean"
|
|
240
|
+
},
|
|
241
|
+
"markdown": {
|
|
242
|
+
"description": "Generate Markdown documentation",
|
|
243
|
+
"name": "markdown",
|
|
244
|
+
"allowNo": false,
|
|
245
|
+
"type": "boolean"
|
|
246
|
+
},
|
|
247
|
+
"html": {
|
|
248
|
+
"description": "Generate interactive HTML documentation",
|
|
249
|
+
"name": "html",
|
|
250
|
+
"allowNo": false,
|
|
251
|
+
"type": "boolean"
|
|
252
|
+
},
|
|
253
|
+
"csv": {
|
|
254
|
+
"description": "Generate CSV exports (tables and columns)",
|
|
255
|
+
"name": "csv",
|
|
256
|
+
"allowNo": false,
|
|
257
|
+
"type": "boolean"
|
|
258
|
+
},
|
|
259
|
+
"mermaid": {
|
|
260
|
+
"description": "Generate Mermaid ERD diagram files",
|
|
261
|
+
"name": "mermaid",
|
|
262
|
+
"allowNo": false,
|
|
263
|
+
"type": "boolean"
|
|
264
|
+
},
|
|
265
|
+
"report": {
|
|
266
|
+
"description": "Generate analysis report",
|
|
267
|
+
"name": "report",
|
|
268
|
+
"allowNo": false,
|
|
269
|
+
"type": "boolean"
|
|
270
|
+
},
|
|
271
|
+
"apply": {
|
|
272
|
+
"description": "Apply SQL to database",
|
|
273
|
+
"name": "apply",
|
|
274
|
+
"allowNo": false,
|
|
275
|
+
"type": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"approved-only": {
|
|
278
|
+
"description": "Only export approved items",
|
|
279
|
+
"name": "approved-only",
|
|
173
280
|
"allowNo": false,
|
|
174
281
|
"type": "boolean"
|
|
175
282
|
},
|
|
176
|
-
"
|
|
177
|
-
"description": "
|
|
178
|
-
"name": "
|
|
283
|
+
"confidence-threshold": {
|
|
284
|
+
"description": "Minimum confidence threshold",
|
|
285
|
+
"name": "confidence-threshold",
|
|
286
|
+
"default": "0",
|
|
179
287
|
"hasDynamicHelp": false,
|
|
180
288
|
"multiple": false,
|
|
181
289
|
"type": "option"
|
|
@@ -183,7 +291,7 @@
|
|
|
183
291
|
},
|
|
184
292
|
"hasDynamicHelp": false,
|
|
185
293
|
"hiddenAliases": [],
|
|
186
|
-
"id": "dbdoc:
|
|
294
|
+
"id": "dbdoc:export",
|
|
187
295
|
"pluginAlias": "@memberjunction/cli",
|
|
188
296
|
"pluginName": "@memberjunction/cli",
|
|
189
297
|
"pluginType": "core",
|
|
@@ -194,57 +302,64 @@
|
|
|
194
302
|
"dist",
|
|
195
303
|
"commands",
|
|
196
304
|
"dbdoc",
|
|
197
|
-
"
|
|
305
|
+
"export.js"
|
|
198
306
|
]
|
|
199
307
|
},
|
|
200
|
-
"dbdoc:
|
|
308
|
+
"dbdoc:generate-queries": {
|
|
201
309
|
"aliases": [],
|
|
202
310
|
"args": {},
|
|
203
|
-
"description": "Generate
|
|
311
|
+
"description": "Generate sample SQL queries from existing analysis state (delegates to db-auto-doc generate-queries)",
|
|
204
312
|
"examples": [
|
|
205
|
-
"<%= config.bin %> <%= command.id %>",
|
|
206
|
-
"<%= config.bin %> <%= command.id %> --
|
|
207
|
-
"<%= config.bin %> <%= command.id %> --
|
|
208
|
-
"<%= config.bin %> <%= command.id %> --execute --approved-only"
|
|
313
|
+
"<%= config.bin %> <%= command.id %> --from-state ./output/run-1/state.json",
|
|
314
|
+
"<%= config.bin %> <%= command.id %> --from-state ./output/run-1/state.json --output-dir ./queries",
|
|
315
|
+
"<%= config.bin %> <%= command.id %> --from-state ./output/run-1/state.json --queries-per-table 10"
|
|
209
316
|
],
|
|
210
317
|
"flags": {
|
|
211
|
-
"
|
|
212
|
-
"description": "
|
|
213
|
-
"name": "
|
|
214
|
-
"
|
|
318
|
+
"from-state": {
|
|
319
|
+
"description": "Path to existing state.json file from previous analysis",
|
|
320
|
+
"name": "from-state",
|
|
321
|
+
"required": true,
|
|
215
322
|
"hasDynamicHelp": false,
|
|
216
323
|
"multiple": false,
|
|
217
|
-
"options": [
|
|
218
|
-
"sql",
|
|
219
|
-
"markdown",
|
|
220
|
-
"all"
|
|
221
|
-
],
|
|
222
324
|
"type": "option"
|
|
223
325
|
},
|
|
224
|
-
"output": {
|
|
225
|
-
"description": "Output directory",
|
|
226
|
-
"name": "output",
|
|
227
|
-
"
|
|
326
|
+
"output-dir": {
|
|
327
|
+
"description": "Output directory for generated queries",
|
|
328
|
+
"name": "output-dir",
|
|
329
|
+
"required": false,
|
|
228
330
|
"hasDynamicHelp": false,
|
|
229
331
|
"multiple": false,
|
|
230
332
|
"type": "option"
|
|
231
333
|
},
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
334
|
+
"config": {
|
|
335
|
+
"char": "c",
|
|
336
|
+
"description": "Path to config file (for database connection and AI settings)",
|
|
337
|
+
"name": "config",
|
|
338
|
+
"default": "./config.json",
|
|
339
|
+
"hasDynamicHelp": false,
|
|
340
|
+
"multiple": false,
|
|
341
|
+
"type": "option"
|
|
237
342
|
},
|
|
238
|
-
"
|
|
239
|
-
"description": "
|
|
240
|
-
"name": "
|
|
241
|
-
"
|
|
242
|
-
"
|
|
343
|
+
"queries-per-table": {
|
|
344
|
+
"description": "Number of queries to generate per table",
|
|
345
|
+
"name": "queries-per-table",
|
|
346
|
+
"required": false,
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"max-execution-time": {
|
|
352
|
+
"description": "Maximum execution time for query validation (ms)",
|
|
353
|
+
"name": "max-execution-time",
|
|
354
|
+
"required": false,
|
|
355
|
+
"hasDynamicHelp": false,
|
|
356
|
+
"multiple": false,
|
|
357
|
+
"type": "option"
|
|
243
358
|
}
|
|
244
359
|
},
|
|
245
360
|
"hasDynamicHelp": false,
|
|
246
361
|
"hiddenAliases": [],
|
|
247
|
-
"id": "dbdoc:
|
|
362
|
+
"id": "dbdoc:generate-queries",
|
|
248
363
|
"pluginAlias": "@memberjunction/cli",
|
|
249
364
|
"pluginName": "@memberjunction/cli",
|
|
250
365
|
"pluginType": "core",
|
|
@@ -255,7 +370,7 @@
|
|
|
255
370
|
"dist",
|
|
256
371
|
"commands",
|
|
257
372
|
"dbdoc",
|
|
258
|
-
"
|
|
373
|
+
"generate-queries.js"
|
|
259
374
|
]
|
|
260
375
|
},
|
|
261
376
|
"dbdoc": {
|
|
@@ -283,21 +398,47 @@
|
|
|
283
398
|
"dbdoc:init": {
|
|
284
399
|
"aliases": [],
|
|
285
400
|
"args": {},
|
|
286
|
-
"description": "Initialize
|
|
401
|
+
"description": "Initialize DBAutoDoc project (delegates to db-auto-doc init)",
|
|
287
402
|
"examples": [
|
|
288
403
|
"<%= config.bin %> <%= command.id %>"
|
|
289
404
|
],
|
|
405
|
+
"flags": {},
|
|
406
|
+
"hasDynamicHelp": false,
|
|
407
|
+
"hiddenAliases": [],
|
|
408
|
+
"id": "dbdoc:init",
|
|
409
|
+
"pluginAlias": "@memberjunction/cli",
|
|
410
|
+
"pluginName": "@memberjunction/cli",
|
|
411
|
+
"pluginType": "core",
|
|
412
|
+
"strict": true,
|
|
413
|
+
"enableJsonFlag": false,
|
|
414
|
+
"isESM": false,
|
|
415
|
+
"relativePath": [
|
|
416
|
+
"dist",
|
|
417
|
+
"commands",
|
|
418
|
+
"dbdoc",
|
|
419
|
+
"init.js"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
"dbdoc:reset": {
|
|
423
|
+
"aliases": [],
|
|
424
|
+
"args": {},
|
|
425
|
+
"description": "Reset analysis state (delegates to db-auto-doc reset)",
|
|
426
|
+
"examples": [
|
|
427
|
+
"<%= config.bin %> <%= command.id %>",
|
|
428
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
429
|
+
],
|
|
290
430
|
"flags": {
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"
|
|
431
|
+
"force": {
|
|
432
|
+
"char": "f",
|
|
433
|
+
"description": "Force reset without confirmation",
|
|
434
|
+
"name": "force",
|
|
294
435
|
"allowNo": false,
|
|
295
436
|
"type": "boolean"
|
|
296
437
|
}
|
|
297
438
|
},
|
|
298
439
|
"hasDynamicHelp": false,
|
|
299
440
|
"hiddenAliases": [],
|
|
300
|
-
"id": "dbdoc:
|
|
441
|
+
"id": "dbdoc:reset",
|
|
301
442
|
"pluginAlias": "@memberjunction/cli",
|
|
302
443
|
"pluginName": "@memberjunction/cli",
|
|
303
444
|
"pluginType": "core",
|
|
@@ -308,36 +449,30 @@
|
|
|
308
449
|
"dist",
|
|
309
450
|
"commands",
|
|
310
451
|
"dbdoc",
|
|
311
|
-
"
|
|
452
|
+
"reset.js"
|
|
312
453
|
]
|
|
313
454
|
},
|
|
314
|
-
"dbdoc:
|
|
455
|
+
"dbdoc:status": {
|
|
315
456
|
"aliases": [],
|
|
316
457
|
"args": {},
|
|
317
|
-
"description": "
|
|
458
|
+
"description": "Show analysis status and progress (delegates to db-auto-doc status)",
|
|
318
459
|
"examples": [
|
|
319
460
|
"<%= config.bin %> <%= command.id %>",
|
|
320
|
-
"<%= config.bin %> <%= command.id %> --
|
|
321
|
-
"<%= config.bin %> <%= command.id %> --unapproved-only"
|
|
461
|
+
"<%= config.bin %> <%= command.id %> --state-file ./custom-state.json"
|
|
322
462
|
],
|
|
323
463
|
"flags": {
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"
|
|
464
|
+
"state-file": {
|
|
465
|
+
"char": "s",
|
|
466
|
+
"description": "Path to state JSON file",
|
|
467
|
+
"name": "state-file",
|
|
327
468
|
"hasDynamicHelp": false,
|
|
328
469
|
"multiple": false,
|
|
329
470
|
"type": "option"
|
|
330
|
-
},
|
|
331
|
-
"unapproved-only": {
|
|
332
|
-
"description": "Only show unapproved items",
|
|
333
|
-
"name": "unapproved-only",
|
|
334
|
-
"allowNo": false,
|
|
335
|
-
"type": "boolean"
|
|
336
471
|
}
|
|
337
472
|
},
|
|
338
473
|
"hasDynamicHelp": false,
|
|
339
474
|
"hiddenAliases": [],
|
|
340
|
-
"id": "dbdoc:
|
|
475
|
+
"id": "dbdoc:status",
|
|
341
476
|
"pluginAlias": "@memberjunction/cli",
|
|
342
477
|
"pluginName": "@memberjunction/cli",
|
|
343
478
|
"pluginType": "core",
|
|
@@ -348,7 +483,7 @@
|
|
|
348
483
|
"dist",
|
|
349
484
|
"commands",
|
|
350
485
|
"dbdoc",
|
|
351
|
-
"
|
|
486
|
+
"status.js"
|
|
352
487
|
]
|
|
353
488
|
},
|
|
354
489
|
"install": {
|
|
@@ -694,6 +829,20 @@
|
|
|
694
829
|
"hasDynamicHelp": false,
|
|
695
830
|
"multiple": false,
|
|
696
831
|
"type": "option"
|
|
832
|
+
},
|
|
833
|
+
"include": {
|
|
834
|
+
"description": "Only process these directories (comma-separated, supports patterns)",
|
|
835
|
+
"name": "include",
|
|
836
|
+
"hasDynamicHelp": false,
|
|
837
|
+
"multiple": false,
|
|
838
|
+
"type": "option"
|
|
839
|
+
},
|
|
840
|
+
"exclude": {
|
|
841
|
+
"description": "Skip these directories (comma-separated, supports patterns)",
|
|
842
|
+
"name": "exclude",
|
|
843
|
+
"hasDynamicHelp": false,
|
|
844
|
+
"multiple": false,
|
|
845
|
+
"type": "option"
|
|
697
846
|
}
|
|
698
847
|
},
|
|
699
848
|
"hasDynamicHelp": false,
|
|
@@ -735,6 +884,20 @@
|
|
|
735
884
|
"name": "verbose",
|
|
736
885
|
"allowNo": false,
|
|
737
886
|
"type": "boolean"
|
|
887
|
+
},
|
|
888
|
+
"include": {
|
|
889
|
+
"description": "Only process these directories (comma-separated, supports patterns)",
|
|
890
|
+
"name": "include",
|
|
891
|
+
"hasDynamicHelp": false,
|
|
892
|
+
"multiple": false,
|
|
893
|
+
"type": "option"
|
|
894
|
+
},
|
|
895
|
+
"exclude": {
|
|
896
|
+
"description": "Skip these directories (comma-separated, supports patterns)",
|
|
897
|
+
"name": "exclude",
|
|
898
|
+
"hasDynamicHelp": false,
|
|
899
|
+
"multiple": false,
|
|
900
|
+
"type": "option"
|
|
738
901
|
}
|
|
739
902
|
},
|
|
740
903
|
"hasDynamicHelp": false,
|
|
@@ -863,6 +1026,549 @@
|
|
|
863
1026
|
"watch.js"
|
|
864
1027
|
]
|
|
865
1028
|
},
|
|
1029
|
+
"test:compare": {
|
|
1030
|
+
"aliases": [],
|
|
1031
|
+
"args": {
|
|
1032
|
+
"runId1": {
|
|
1033
|
+
"description": "First test run ID to compare",
|
|
1034
|
+
"name": "runId1",
|
|
1035
|
+
"required": false
|
|
1036
|
+
},
|
|
1037
|
+
"runId2": {
|
|
1038
|
+
"description": "Second test run ID to compare",
|
|
1039
|
+
"name": "runId2",
|
|
1040
|
+
"required": false
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"description": "Compare test runs for regression detection",
|
|
1044
|
+
"examples": [
|
|
1045
|
+
"<%= config.bin %> <%= command.id %> <run-id-1> <run-id-2>",
|
|
1046
|
+
"<%= config.bin %> <%= command.id %> --baseline=<run-id> --current=<run-id>",
|
|
1047
|
+
"<%= config.bin %> <%= command.id %> --suite=<suite-id> --since=\"2024-01-01\"",
|
|
1048
|
+
"<%= config.bin %> <%= command.id %> <run-id-1> <run-id-2> --format=json"
|
|
1049
|
+
],
|
|
1050
|
+
"flags": {
|
|
1051
|
+
"version": {
|
|
1052
|
+
"char": "v",
|
|
1053
|
+
"description": "Compare runs by version",
|
|
1054
|
+
"name": "version",
|
|
1055
|
+
"hasDynamicHelp": false,
|
|
1056
|
+
"multiple": true,
|
|
1057
|
+
"type": "option"
|
|
1058
|
+
},
|
|
1059
|
+
"commit": {
|
|
1060
|
+
"char": "c",
|
|
1061
|
+
"description": "Compare runs by git commit",
|
|
1062
|
+
"name": "commit",
|
|
1063
|
+
"hasDynamicHelp": false,
|
|
1064
|
+
"multiple": true,
|
|
1065
|
+
"type": "option"
|
|
1066
|
+
},
|
|
1067
|
+
"diff-only": {
|
|
1068
|
+
"description": "Show only differences",
|
|
1069
|
+
"name": "diff-only",
|
|
1070
|
+
"allowNo": false,
|
|
1071
|
+
"type": "boolean"
|
|
1072
|
+
},
|
|
1073
|
+
"format": {
|
|
1074
|
+
"char": "f",
|
|
1075
|
+
"description": "Output format",
|
|
1076
|
+
"name": "format",
|
|
1077
|
+
"default": "console",
|
|
1078
|
+
"hasDynamicHelp": false,
|
|
1079
|
+
"multiple": false,
|
|
1080
|
+
"options": [
|
|
1081
|
+
"console",
|
|
1082
|
+
"json",
|
|
1083
|
+
"markdown"
|
|
1084
|
+
],
|
|
1085
|
+
"type": "option"
|
|
1086
|
+
},
|
|
1087
|
+
"output": {
|
|
1088
|
+
"char": "o",
|
|
1089
|
+
"description": "Output file path",
|
|
1090
|
+
"name": "output",
|
|
1091
|
+
"hasDynamicHelp": false,
|
|
1092
|
+
"multiple": false,
|
|
1093
|
+
"type": "option"
|
|
1094
|
+
},
|
|
1095
|
+
"verbose": {
|
|
1096
|
+
"description": "Show detailed information",
|
|
1097
|
+
"name": "verbose",
|
|
1098
|
+
"allowNo": false,
|
|
1099
|
+
"type": "boolean"
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"hasDynamicHelp": false,
|
|
1103
|
+
"hiddenAliases": [],
|
|
1104
|
+
"id": "test:compare",
|
|
1105
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1106
|
+
"pluginName": "@memberjunction/cli",
|
|
1107
|
+
"pluginType": "core",
|
|
1108
|
+
"strict": true,
|
|
1109
|
+
"enableJsonFlag": false,
|
|
1110
|
+
"isESM": false,
|
|
1111
|
+
"relativePath": [
|
|
1112
|
+
"dist",
|
|
1113
|
+
"commands",
|
|
1114
|
+
"test",
|
|
1115
|
+
"compare.js"
|
|
1116
|
+
]
|
|
1117
|
+
},
|
|
1118
|
+
"test:history": {
|
|
1119
|
+
"aliases": [],
|
|
1120
|
+
"args": {},
|
|
1121
|
+
"description": "View test execution history",
|
|
1122
|
+
"examples": [
|
|
1123
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1124
|
+
"<%= config.bin %> <%= command.id %> --test=<test-id>",
|
|
1125
|
+
"<%= config.bin %> <%= command.id %> --suite=<suite-id>",
|
|
1126
|
+
"<%= config.bin %> <%= command.id %> --since=\"2024-01-01\"",
|
|
1127
|
+
"<%= config.bin %> <%= command.id %> --limit=50"
|
|
1128
|
+
],
|
|
1129
|
+
"flags": {
|
|
1130
|
+
"test": {
|
|
1131
|
+
"char": "t",
|
|
1132
|
+
"description": "Filter by test ID",
|
|
1133
|
+
"name": "test",
|
|
1134
|
+
"hasDynamicHelp": false,
|
|
1135
|
+
"multiple": false,
|
|
1136
|
+
"type": "option"
|
|
1137
|
+
},
|
|
1138
|
+
"recent": {
|
|
1139
|
+
"char": "r",
|
|
1140
|
+
"description": "Number of recent runs to show",
|
|
1141
|
+
"name": "recent",
|
|
1142
|
+
"hasDynamicHelp": false,
|
|
1143
|
+
"multiple": false,
|
|
1144
|
+
"type": "option"
|
|
1145
|
+
},
|
|
1146
|
+
"from": {
|
|
1147
|
+
"description": "Show history from date (YYYY-MM-DD)",
|
|
1148
|
+
"name": "from",
|
|
1149
|
+
"hasDynamicHelp": false,
|
|
1150
|
+
"multiple": false,
|
|
1151
|
+
"type": "option"
|
|
1152
|
+
},
|
|
1153
|
+
"status": {
|
|
1154
|
+
"char": "s",
|
|
1155
|
+
"description": "Filter by status",
|
|
1156
|
+
"name": "status",
|
|
1157
|
+
"hasDynamicHelp": false,
|
|
1158
|
+
"multiple": false,
|
|
1159
|
+
"type": "option"
|
|
1160
|
+
},
|
|
1161
|
+
"format": {
|
|
1162
|
+
"char": "f",
|
|
1163
|
+
"description": "Output format",
|
|
1164
|
+
"name": "format",
|
|
1165
|
+
"default": "console",
|
|
1166
|
+
"hasDynamicHelp": false,
|
|
1167
|
+
"multiple": false,
|
|
1168
|
+
"options": [
|
|
1169
|
+
"console",
|
|
1170
|
+
"json",
|
|
1171
|
+
"markdown"
|
|
1172
|
+
],
|
|
1173
|
+
"type": "option"
|
|
1174
|
+
},
|
|
1175
|
+
"output": {
|
|
1176
|
+
"char": "o",
|
|
1177
|
+
"description": "Output file path",
|
|
1178
|
+
"name": "output",
|
|
1179
|
+
"hasDynamicHelp": false,
|
|
1180
|
+
"multiple": false,
|
|
1181
|
+
"type": "option"
|
|
1182
|
+
},
|
|
1183
|
+
"verbose": {
|
|
1184
|
+
"char": "v",
|
|
1185
|
+
"description": "Show detailed information",
|
|
1186
|
+
"name": "verbose",
|
|
1187
|
+
"allowNo": false,
|
|
1188
|
+
"type": "boolean"
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
"hasDynamicHelp": false,
|
|
1192
|
+
"hiddenAliases": [],
|
|
1193
|
+
"id": "test:history",
|
|
1194
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1195
|
+
"pluginName": "@memberjunction/cli",
|
|
1196
|
+
"pluginType": "core",
|
|
1197
|
+
"strict": true,
|
|
1198
|
+
"enableJsonFlag": false,
|
|
1199
|
+
"isESM": false,
|
|
1200
|
+
"relativePath": [
|
|
1201
|
+
"dist",
|
|
1202
|
+
"commands",
|
|
1203
|
+
"test",
|
|
1204
|
+
"history.js"
|
|
1205
|
+
]
|
|
1206
|
+
},
|
|
1207
|
+
"test": {
|
|
1208
|
+
"aliases": [],
|
|
1209
|
+
"args": {},
|
|
1210
|
+
"description": "MemberJunction Testing Framework - Execute and manage tests",
|
|
1211
|
+
"examples": [
|
|
1212
|
+
"<%= config.bin %> <%= command.id %> run <test-id>",
|
|
1213
|
+
"<%= config.bin %> <%= command.id %> run --name=\"Active Members Count\"",
|
|
1214
|
+
"<%= config.bin %> <%= command.id %> suite <suite-id>",
|
|
1215
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
1216
|
+
"<%= config.bin %> <%= command.id %> list --suites",
|
|
1217
|
+
"<%= config.bin %> <%= command.id %> validate --all"
|
|
1218
|
+
],
|
|
1219
|
+
"flags": {},
|
|
1220
|
+
"hasDynamicHelp": false,
|
|
1221
|
+
"hiddenAliases": [],
|
|
1222
|
+
"id": "test",
|
|
1223
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1224
|
+
"pluginName": "@memberjunction/cli",
|
|
1225
|
+
"pluginType": "core",
|
|
1226
|
+
"strict": true,
|
|
1227
|
+
"enableJsonFlag": false,
|
|
1228
|
+
"isESM": false,
|
|
1229
|
+
"relativePath": [
|
|
1230
|
+
"dist",
|
|
1231
|
+
"commands",
|
|
1232
|
+
"test",
|
|
1233
|
+
"index.js"
|
|
1234
|
+
]
|
|
1235
|
+
},
|
|
1236
|
+
"test:list": {
|
|
1237
|
+
"aliases": [],
|
|
1238
|
+
"args": {},
|
|
1239
|
+
"description": "List available tests, suites, and types",
|
|
1240
|
+
"examples": [
|
|
1241
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1242
|
+
"<%= config.bin %> <%= command.id %> --suites",
|
|
1243
|
+
"<%= config.bin %> <%= command.id %> --types",
|
|
1244
|
+
"<%= config.bin %> <%= command.id %> --type=agent-eval",
|
|
1245
|
+
"<%= config.bin %> <%= command.id %> --tag=smoke",
|
|
1246
|
+
"<%= config.bin %> <%= command.id %> --status=active --verbose"
|
|
1247
|
+
],
|
|
1248
|
+
"flags": {
|
|
1249
|
+
"suites": {
|
|
1250
|
+
"description": "List test suites instead of tests",
|
|
1251
|
+
"name": "suites",
|
|
1252
|
+
"allowNo": false,
|
|
1253
|
+
"type": "boolean"
|
|
1254
|
+
},
|
|
1255
|
+
"types": {
|
|
1256
|
+
"description": "List test types",
|
|
1257
|
+
"name": "types",
|
|
1258
|
+
"allowNo": false,
|
|
1259
|
+
"type": "boolean"
|
|
1260
|
+
},
|
|
1261
|
+
"type": {
|
|
1262
|
+
"char": "t",
|
|
1263
|
+
"description": "Filter by test type",
|
|
1264
|
+
"name": "type",
|
|
1265
|
+
"hasDynamicHelp": false,
|
|
1266
|
+
"multiple": false,
|
|
1267
|
+
"type": "option"
|
|
1268
|
+
},
|
|
1269
|
+
"tag": {
|
|
1270
|
+
"description": "Filter by tag",
|
|
1271
|
+
"name": "tag",
|
|
1272
|
+
"hasDynamicHelp": false,
|
|
1273
|
+
"multiple": false,
|
|
1274
|
+
"type": "option"
|
|
1275
|
+
},
|
|
1276
|
+
"status": {
|
|
1277
|
+
"char": "s",
|
|
1278
|
+
"description": "Filter by status",
|
|
1279
|
+
"name": "status",
|
|
1280
|
+
"hasDynamicHelp": false,
|
|
1281
|
+
"multiple": false,
|
|
1282
|
+
"type": "option"
|
|
1283
|
+
},
|
|
1284
|
+
"format": {
|
|
1285
|
+
"char": "f",
|
|
1286
|
+
"description": "Output format",
|
|
1287
|
+
"name": "format",
|
|
1288
|
+
"default": "console",
|
|
1289
|
+
"hasDynamicHelp": false,
|
|
1290
|
+
"multiple": false,
|
|
1291
|
+
"options": [
|
|
1292
|
+
"console",
|
|
1293
|
+
"json",
|
|
1294
|
+
"markdown"
|
|
1295
|
+
],
|
|
1296
|
+
"type": "option"
|
|
1297
|
+
},
|
|
1298
|
+
"output": {
|
|
1299
|
+
"char": "o",
|
|
1300
|
+
"description": "Output file path",
|
|
1301
|
+
"name": "output",
|
|
1302
|
+
"hasDynamicHelp": false,
|
|
1303
|
+
"multiple": false,
|
|
1304
|
+
"type": "option"
|
|
1305
|
+
},
|
|
1306
|
+
"verbose": {
|
|
1307
|
+
"char": "v",
|
|
1308
|
+
"description": "Show detailed information",
|
|
1309
|
+
"name": "verbose",
|
|
1310
|
+
"allowNo": false,
|
|
1311
|
+
"type": "boolean"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"hasDynamicHelp": false,
|
|
1315
|
+
"hiddenAliases": [],
|
|
1316
|
+
"id": "test:list",
|
|
1317
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1318
|
+
"pluginName": "@memberjunction/cli",
|
|
1319
|
+
"pluginType": "core",
|
|
1320
|
+
"strict": true,
|
|
1321
|
+
"enableJsonFlag": false,
|
|
1322
|
+
"isESM": false,
|
|
1323
|
+
"relativePath": [
|
|
1324
|
+
"dist",
|
|
1325
|
+
"commands",
|
|
1326
|
+
"test",
|
|
1327
|
+
"list.js"
|
|
1328
|
+
]
|
|
1329
|
+
},
|
|
1330
|
+
"test:run": {
|
|
1331
|
+
"aliases": [],
|
|
1332
|
+
"args": {
|
|
1333
|
+
"testId": {
|
|
1334
|
+
"description": "Test ID to execute",
|
|
1335
|
+
"name": "testId",
|
|
1336
|
+
"required": false
|
|
1337
|
+
}
|
|
1338
|
+
},
|
|
1339
|
+
"description": "Execute a single test by ID or name",
|
|
1340
|
+
"examples": [
|
|
1341
|
+
"<%= config.bin %> <%= command.id %> <test-id>",
|
|
1342
|
+
"<%= config.bin %> <%= command.id %> --name=\"Active Members Count\"",
|
|
1343
|
+
"<%= config.bin %> <%= command.id %> <test-id> --environment=staging",
|
|
1344
|
+
"<%= config.bin %> <%= command.id %> <test-id> --format=json --output=results.json",
|
|
1345
|
+
"<%= config.bin %> <%= command.id %> <test-id> --dry-run"
|
|
1346
|
+
],
|
|
1347
|
+
"flags": {
|
|
1348
|
+
"name": {
|
|
1349
|
+
"char": "n",
|
|
1350
|
+
"description": "Test name to execute",
|
|
1351
|
+
"name": "name",
|
|
1352
|
+
"hasDynamicHelp": false,
|
|
1353
|
+
"multiple": false,
|
|
1354
|
+
"type": "option"
|
|
1355
|
+
},
|
|
1356
|
+
"environment": {
|
|
1357
|
+
"char": "e",
|
|
1358
|
+
"description": "Environment context (dev, staging, prod)",
|
|
1359
|
+
"name": "environment",
|
|
1360
|
+
"hasDynamicHelp": false,
|
|
1361
|
+
"multiple": false,
|
|
1362
|
+
"type": "option"
|
|
1363
|
+
},
|
|
1364
|
+
"format": {
|
|
1365
|
+
"char": "f",
|
|
1366
|
+
"description": "Output format",
|
|
1367
|
+
"name": "format",
|
|
1368
|
+
"default": "console",
|
|
1369
|
+
"hasDynamicHelp": false,
|
|
1370
|
+
"multiple": false,
|
|
1371
|
+
"options": [
|
|
1372
|
+
"console",
|
|
1373
|
+
"json",
|
|
1374
|
+
"markdown"
|
|
1375
|
+
],
|
|
1376
|
+
"type": "option"
|
|
1377
|
+
},
|
|
1378
|
+
"output": {
|
|
1379
|
+
"char": "o",
|
|
1380
|
+
"description": "Output file path",
|
|
1381
|
+
"name": "output",
|
|
1382
|
+
"hasDynamicHelp": false,
|
|
1383
|
+
"multiple": false,
|
|
1384
|
+
"type": "option"
|
|
1385
|
+
},
|
|
1386
|
+
"dry-run": {
|
|
1387
|
+
"description": "Validate without executing",
|
|
1388
|
+
"name": "dry-run",
|
|
1389
|
+
"allowNo": false,
|
|
1390
|
+
"type": "boolean"
|
|
1391
|
+
},
|
|
1392
|
+
"verbose": {
|
|
1393
|
+
"char": "v",
|
|
1394
|
+
"description": "Show detailed execution information",
|
|
1395
|
+
"name": "verbose",
|
|
1396
|
+
"allowNo": false,
|
|
1397
|
+
"type": "boolean"
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
"hasDynamicHelp": false,
|
|
1401
|
+
"hiddenAliases": [],
|
|
1402
|
+
"id": "test:run",
|
|
1403
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1404
|
+
"pluginName": "@memberjunction/cli",
|
|
1405
|
+
"pluginType": "core",
|
|
1406
|
+
"strict": true,
|
|
1407
|
+
"enableJsonFlag": false,
|
|
1408
|
+
"isESM": false,
|
|
1409
|
+
"relativePath": [
|
|
1410
|
+
"dist",
|
|
1411
|
+
"commands",
|
|
1412
|
+
"test",
|
|
1413
|
+
"run.js"
|
|
1414
|
+
]
|
|
1415
|
+
},
|
|
1416
|
+
"test:suite": {
|
|
1417
|
+
"aliases": [],
|
|
1418
|
+
"args": {
|
|
1419
|
+
"suiteId": {
|
|
1420
|
+
"description": "Test suite ID to execute",
|
|
1421
|
+
"name": "suiteId",
|
|
1422
|
+
"required": false
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"description": "Execute a test suite",
|
|
1426
|
+
"examples": [
|
|
1427
|
+
"<%= config.bin %> <%= command.id %> <suite-id>",
|
|
1428
|
+
"<%= config.bin %> <%= command.id %> --name=\"Agent Quality Suite\"",
|
|
1429
|
+
"<%= config.bin %> <%= command.id %> <suite-id> --format=json",
|
|
1430
|
+
"<%= config.bin %> <%= command.id %> <suite-id> --output=suite-results.json"
|
|
1431
|
+
],
|
|
1432
|
+
"flags": {
|
|
1433
|
+
"name": {
|
|
1434
|
+
"char": "n",
|
|
1435
|
+
"description": "Test suite name to execute",
|
|
1436
|
+
"name": "name",
|
|
1437
|
+
"hasDynamicHelp": false,
|
|
1438
|
+
"multiple": false,
|
|
1439
|
+
"type": "option"
|
|
1440
|
+
},
|
|
1441
|
+
"format": {
|
|
1442
|
+
"char": "f",
|
|
1443
|
+
"description": "Output format",
|
|
1444
|
+
"name": "format",
|
|
1445
|
+
"default": "console",
|
|
1446
|
+
"hasDynamicHelp": false,
|
|
1447
|
+
"multiple": false,
|
|
1448
|
+
"options": [
|
|
1449
|
+
"console",
|
|
1450
|
+
"json",
|
|
1451
|
+
"markdown"
|
|
1452
|
+
],
|
|
1453
|
+
"type": "option"
|
|
1454
|
+
},
|
|
1455
|
+
"output": {
|
|
1456
|
+
"char": "o",
|
|
1457
|
+
"description": "Output file path",
|
|
1458
|
+
"name": "output",
|
|
1459
|
+
"hasDynamicHelp": false,
|
|
1460
|
+
"multiple": false,
|
|
1461
|
+
"type": "option"
|
|
1462
|
+
},
|
|
1463
|
+
"verbose": {
|
|
1464
|
+
"char": "v",
|
|
1465
|
+
"description": "Show detailed execution information",
|
|
1466
|
+
"name": "verbose",
|
|
1467
|
+
"allowNo": false,
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"hasDynamicHelp": false,
|
|
1472
|
+
"hiddenAliases": [],
|
|
1473
|
+
"id": "test:suite",
|
|
1474
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1475
|
+
"pluginName": "@memberjunction/cli",
|
|
1476
|
+
"pluginType": "core",
|
|
1477
|
+
"strict": true,
|
|
1478
|
+
"enableJsonFlag": false,
|
|
1479
|
+
"isESM": false,
|
|
1480
|
+
"relativePath": [
|
|
1481
|
+
"dist",
|
|
1482
|
+
"commands",
|
|
1483
|
+
"test",
|
|
1484
|
+
"suite.js"
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1487
|
+
"test:validate": {
|
|
1488
|
+
"aliases": [],
|
|
1489
|
+
"args": {
|
|
1490
|
+
"testId": {
|
|
1491
|
+
"description": "Test ID to validate",
|
|
1492
|
+
"name": "testId",
|
|
1493
|
+
"required": false
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"description": "Validate test definitions without executing",
|
|
1497
|
+
"examples": [
|
|
1498
|
+
"<%= config.bin %> <%= command.id %> <test-id>",
|
|
1499
|
+
"<%= config.bin %> <%= command.id %> --all",
|
|
1500
|
+
"<%= config.bin %> <%= command.id %> --type=agent-eval",
|
|
1501
|
+
"<%= config.bin %> <%= command.id %> --all --save-report",
|
|
1502
|
+
"<%= config.bin %> <%= command.id %> --all --output=validation-report.md"
|
|
1503
|
+
],
|
|
1504
|
+
"flags": {
|
|
1505
|
+
"all": {
|
|
1506
|
+
"char": "a",
|
|
1507
|
+
"description": "Validate all tests",
|
|
1508
|
+
"name": "all",
|
|
1509
|
+
"allowNo": false,
|
|
1510
|
+
"type": "boolean"
|
|
1511
|
+
},
|
|
1512
|
+
"type": {
|
|
1513
|
+
"char": "t",
|
|
1514
|
+
"description": "Validate tests by type",
|
|
1515
|
+
"name": "type",
|
|
1516
|
+
"hasDynamicHelp": false,
|
|
1517
|
+
"multiple": false,
|
|
1518
|
+
"type": "option"
|
|
1519
|
+
},
|
|
1520
|
+
"save-report": {
|
|
1521
|
+
"description": "Save validation report to file",
|
|
1522
|
+
"name": "save-report",
|
|
1523
|
+
"allowNo": false,
|
|
1524
|
+
"type": "boolean"
|
|
1525
|
+
},
|
|
1526
|
+
"format": {
|
|
1527
|
+
"char": "f",
|
|
1528
|
+
"description": "Output format",
|
|
1529
|
+
"name": "format",
|
|
1530
|
+
"default": "console",
|
|
1531
|
+
"hasDynamicHelp": false,
|
|
1532
|
+
"multiple": false,
|
|
1533
|
+
"options": [
|
|
1534
|
+
"console",
|
|
1535
|
+
"json",
|
|
1536
|
+
"markdown"
|
|
1537
|
+
],
|
|
1538
|
+
"type": "option"
|
|
1539
|
+
},
|
|
1540
|
+
"output": {
|
|
1541
|
+
"char": "o",
|
|
1542
|
+
"description": "Output file path",
|
|
1543
|
+
"name": "output",
|
|
1544
|
+
"hasDynamicHelp": false,
|
|
1545
|
+
"multiple": false,
|
|
1546
|
+
"type": "option"
|
|
1547
|
+
},
|
|
1548
|
+
"verbose": {
|
|
1549
|
+
"char": "v",
|
|
1550
|
+
"description": "Show detailed information",
|
|
1551
|
+
"name": "verbose",
|
|
1552
|
+
"allowNo": false,
|
|
1553
|
+
"type": "boolean"
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"hasDynamicHelp": false,
|
|
1557
|
+
"hiddenAliases": [],
|
|
1558
|
+
"id": "test:validate",
|
|
1559
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1560
|
+
"pluginName": "@memberjunction/cli",
|
|
1561
|
+
"pluginType": "core",
|
|
1562
|
+
"strict": true,
|
|
1563
|
+
"enableJsonFlag": false,
|
|
1564
|
+
"isESM": false,
|
|
1565
|
+
"relativePath": [
|
|
1566
|
+
"dist",
|
|
1567
|
+
"commands",
|
|
1568
|
+
"test",
|
|
1569
|
+
"validate.js"
|
|
1570
|
+
]
|
|
1571
|
+
},
|
|
866
1572
|
"ai:actions:list": {
|
|
867
1573
|
"aliases": [],
|
|
868
1574
|
"args": {},
|
|
@@ -1255,5 +1961,5 @@
|
|
|
1255
1961
|
]
|
|
1256
1962
|
}
|
|
1257
1963
|
},
|
|
1258
|
-
"version": "2.
|
|
1964
|
+
"version": "2.119.0"
|
|
1259
1965
|
}
|