@ujexdev/cli 0.2.0 → 0.2.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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -512,8 +512,8 @@ async function main() {
|
|
|
512
512
|
const limit = flagValue(args, '--limit=');
|
|
513
513
|
const before = flagValue(args, '--before=');
|
|
514
514
|
const r = await ap.raw
|
|
515
|
-
?.call?.('
|
|
516
|
-
console.log(JSON.stringify(r ?? { note: 'invoke
|
|
515
|
+
?.call?.('listAgentAuditEntries', { limit: limit ? Number(limit) : 50, beforeSeq: before ? Number(before) : null });
|
|
516
|
+
console.log(JSON.stringify(r ?? { note: 'invoke listAgentAuditEntries via SDK raw' }, null, 2));
|
|
517
517
|
}
|
|
518
518
|
else
|
|
519
519
|
throw new Error('audit verify|export-aat|export-iso42005|list');
|
package/package.json
CHANGED