agentmall 0.1.13 → 0.1.14

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.js CHANGED
@@ -320,6 +320,7 @@ var STATUS_COLORS = {
320
320
  shipped: c.cyan,
321
321
  delivered: c.green,
322
322
  completed: c.green,
323
+ ordered: c.green,
323
324
  failed: c.red,
324
325
  cancelled: c.red,
325
326
  approved: c.yellow,
package/dist/index.d.cts CHANGED
@@ -65,7 +65,7 @@ type CreatePurchaseRequest = {
65
65
  idempotency_key?: string;
66
66
  metadata?: unknown;
67
67
  };
68
- type PurchaseLifecycleStatus = "payment_received" | "submitted" | "pending" | "completed" | "failed";
68
+ type PurchaseLifecycleStatus = "payment_received" | "submitted" | "pending" | "ordered" | "failed";
69
69
  type CreatePurchaseResponse = {
70
70
  id: string;
71
71
  status: PurchaseLifecycleStatus;
package/dist/index.d.ts CHANGED
@@ -65,7 +65,7 @@ type CreatePurchaseRequest = {
65
65
  idempotency_key?: string;
66
66
  metadata?: unknown;
67
67
  };
68
- type PurchaseLifecycleStatus = "payment_received" | "submitted" | "pending" | "completed" | "failed";
68
+ type PurchaseLifecycleStatus = "payment_received" | "submitted" | "pending" | "ordered" | "failed";
69
69
  type CreatePurchaseResponse = {
70
70
  id: string;
71
71
  status: PurchaseLifecycleStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentmall",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "SDK and CLI for the AgentMall API — let AI agents buy physical products from US retailers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",