@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.
Files changed (2) hide show
  1. package/dist/index.js +2 -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?.('listMyAuditEntries', { limit: limit ? Number(limit) : 50, beforeSeq: before ? Number(before) : null });
516
- console.log(JSON.stringify(r ?? { note: 'invoke listMyAuditEntries via SDK raw' }, null, 2));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ujexdev/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Command-line client for Ujex Postbox, approvals, Recall/Memory, Gateway, tools, and audit exports.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Ujex <hello@ujex.dev>",