@visa/cli 4.1.0-rc.24 → 4.1.0-rc.241

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 (86) hide show
  1. package/README.md +262 -227
  2. package/dist/checkout-engine/adapters/generic.d.ts +69 -0
  3. package/dist/checkout-engine/adapters/generic.js +383 -58
  4. package/dist/checkout-engine/adapters/index.d.ts +4 -1
  5. package/dist/checkout-engine/adapters/index.js +10 -3
  6. package/dist/checkout-engine/adapters/shopify.d.ts +80 -0
  7. package/dist/checkout-engine/adapters/shopify.js +688 -0
  8. package/dist/checkout-engine/amount.d.ts +15 -0
  9. package/dist/checkout-engine/amount.js +72 -0
  10. package/dist/checkout-engine/browser-launch.d.ts +9 -4
  11. package/dist/checkout-engine/browser-launch.js +19 -4
  12. package/dist/checkout-engine/browserbase-browser.d.ts +24 -0
  13. package/dist/checkout-engine/browserbase-browser.js +186 -0
  14. package/dist/checkout-engine/cli-engine.d.ts +297 -4
  15. package/dist/checkout-engine/cli-engine.js +942 -48
  16. package/dist/checkout-engine/confirmed-merchants.d.ts +31 -0
  17. package/dist/checkout-engine/confirmed-merchants.js +165 -0
  18. package/dist/checkout-engine/detect.d.ts +1 -1
  19. package/dist/checkout-engine/detect.js +26 -0
  20. package/dist/checkout-engine/evidence.d.ts +4 -1
  21. package/dist/checkout-engine/evidence.js +51 -6
  22. package/dist/checkout-engine/executor.d.ts +64 -4
  23. package/dist/checkout-engine/executor.js +604 -145
  24. package/dist/checkout-engine/hosted-approval.d.ts +124 -7
  25. package/dist/checkout-engine/hosted-approval.js +384 -54
  26. package/dist/checkout-engine/index.d.ts +9 -2
  27. package/dist/checkout-engine/index.js +8 -1
  28. package/dist/checkout-engine/instrument.d.ts +7 -0
  29. package/dist/checkout-engine/instrument.js +4 -0
  30. package/dist/checkout-engine/known-merchants.d.ts +10 -0
  31. package/dist/checkout-engine/known-merchants.js +38 -0
  32. package/dist/checkout-engine/live-fill-approval.d.ts +5 -20
  33. package/dist/checkout-engine/live-fill-approval.js +20 -51
  34. package/dist/checkout-engine/mandate/card-mandate.d.ts +121 -0
  35. package/dist/checkout-engine/mandate/card-mandate.js +226 -0
  36. package/dist/checkout-engine/mandate/mandate-ledger.d.ts +174 -0
  37. package/dist/checkout-engine/mandate/mandate-ledger.js +410 -0
  38. package/dist/checkout-engine/outcome.d.ts +2 -2
  39. package/dist/checkout-engine/outcome.js +36 -1
  40. package/dist/checkout-engine/owner-only-file.d.ts +9 -0
  41. package/dist/checkout-engine/owner-only-file.js +20 -1
  42. package/dist/checkout-engine/receipt-dir.d.ts +6 -0
  43. package/dist/checkout-engine/receipt-dir.js +8 -0
  44. package/dist/checkout-engine/receipt.d.ts +56 -2
  45. package/dist/checkout-engine/receipt.js +55 -16
  46. package/dist/checkout-engine/trace-handles.d.ts +8 -0
  47. package/dist/checkout-engine/trace-handles.js +12 -0
  48. package/dist/checkout-engine/types.d.ts +28 -2
  49. package/dist/checkout-engine/unresolved-charges.d.ts +34 -0
  50. package/dist/checkout-engine/unresolved-charges.js +134 -0
  51. package/dist/checkout-engine/vgs-gateway/server-mint-client.d.ts +53 -1
  52. package/dist/checkout-engine/vgs-gateway/server-mint-client.js +78 -10
  53. package/dist/checkout-engine/vgs-live-instrument.d.ts +38 -35
  54. package/dist/checkout-engine/vgs-live-instrument.js +51 -74
  55. package/dist/checkout-engine/vic-confirmation.d.ts +18 -0
  56. package/dist/checkout-engine/vic-confirmation.js +9 -3
  57. package/dist/checkout-engine/web-bot-auth.d.ts +98 -0
  58. package/dist/checkout-engine/web-bot-auth.js +218 -0
  59. package/dist/cli.js +968 -505
  60. package/dist/mcp-apps/ucp-checkout.html +280 -0
  61. package/dist/mcp-server/index.js +807 -175
  62. package/dist/skills/pair-visa-agent/RUNTIMES.md +122 -79
  63. package/dist/skills/pair-visa-agent/SKILL.md +436 -248
  64. package/dist/skills/pair-visa-agent/scripts/__tests__/setup.test.mjs +407 -0
  65. package/dist/skills/pair-visa-agent/scripts/setup.mjs +310 -30
  66. package/dist/skills/visa-shopify-checkout/SKILL.md +122 -0
  67. package/dist/skills/visa-shopify-checkout/references/evidence-and-states.md +37 -0
  68. package/dist/skills/visa-ucp-shopping/SKILL.md +84 -0
  69. package/dist/subway-direct.mjs +1 -0
  70. package/install.ps1 +9 -46
  71. package/install.sh +5 -37
  72. package/native/bin/win32-x64/visa-keychain-win.exe +0 -0
  73. package/package.json +32 -28
  74. package/server.json +4 -4
  75. package/dist/checkout-engine/inline-target.d.ts +0 -13
  76. package/dist/checkout-engine/inline-target.js +0 -37
  77. package/dist/checkout-engine/pay-args.d.ts +0 -14
  78. package/dist/checkout-engine/pay-args.js +0 -44
  79. package/dist/checkout-engine/pay.d.ts +0 -1
  80. package/dist/checkout-engine/pay.js +0 -13
  81. package/dist/checkout-engine/repo-env.d.ts +0 -11
  82. package/dist/checkout-engine/repo-env.js +0 -23
  83. package/dist/checkout-engine/run-live-fill.d.ts +0 -1
  84. package/dist/checkout-engine/run-live-fill.js +0 -443
  85. package/dist/checkout-engine/vgs-gateway/fetch-credential.d.mts +0 -74
  86. package/dist/checkout-engine/vgs-gateway/fetch-credential.mjs +0 -248
@@ -1,11 +1,12 @@
1
1
  import { mkdir, writeFile } from 'node:fs/promises';
2
2
  import { join } from 'node:path';
3
+ import { KNOWN_MERCHANT_IDENTITIES } from './known-merchants.js';
3
4
  import { submitClickedWithoutConfirmation } from './live-fill-approval.js';
4
5
  /**
5
6
  * What the operator still owes after this run. Empty for a clean dry-run fill
6
7
  * and for a definitive submit outcome whose VIC confirmation posted.
7
8
  */
8
- function reconciliationFor(result, vicConfirmation) {
9
+ function reconciliationFor(result, vicConfirmation, mode) {
9
10
  const reasons = [];
10
11
  if (submitClickedWithoutConfirmation(result)) {
11
12
  reasons.push('the pay control was clicked but no definitive outcome was observed — ' +
@@ -21,7 +22,7 @@ function reconciliationFor(result, vicConfirmation) {
21
22
  reasons.push('confirmed without a merchant confirmation reference — ' +
22
23
  'record the order number from the merchant dashboard');
23
24
  }
24
- if (result.outcome === 'action-required') {
25
+ if (mode === 'submit' && result.outcome === 'action-required') {
25
26
  reasons.push('an issuer verification challenge was shown and not completed — ' +
26
27
  'finish the purchase manually if still wanted, or confirm with the merchant that no order exists');
27
28
  }
@@ -29,23 +30,60 @@ function reconciliationFor(result, vicConfirmation) {
29
30
  }
30
31
  export function buildReceipt(input) {
31
32
  const { result } = input;
33
+ const reconciliation = reconciliationFor(result, input.vicConfirmation, input.mode);
34
+ const fallbackAction = input.mode === 'dry-run'
35
+ ? 'Dry run only — nothing was submitted; safe to run again.'
36
+ : result.outcome === 'confirmed'
37
+ ? 'No action needed.'
38
+ : result.outcome === 'declined'
39
+ ? 'Review the decline before trying again.'
40
+ : result.outcome === 'unverified'
41
+ ? // Defensive: reconciliationFor() already pushes the richer
42
+ // submit-clicked reason for this outcome, so this line is only
43
+ // reached if that ever stops firing. It must still not invite a
44
+ // retry.
45
+ 'The charge may have gone through. Confirm with the merchant before retrying.'
46
+ : result.outcome === 'partial-fill'
47
+ ? // A v2 receipt carries no evidence log, so this line is the only
48
+ // place the CAUSE survives — which field refused and why. An
49
+ // operator opening this a week later can act on it; "could not
50
+ // be filled" alone means reproducing a live merchant to learn
51
+ // anything.
52
+ `${result.detail ?? 'Nothing was submitted and nothing was charged.'} Safe to try again once the checkout can be filled.`
53
+ : 'Review this outcome before retrying.';
54
+ const recoveryActions = reconciliation.reasons.length > 0 ? reconciliation.reasons : [fallbackAction];
55
+ const cardLast4 = input.cardLast4 && /^\d{4}$/.test(input.cardLast4) ? input.cardLast4 : null;
56
+ const checkoutUrl = input.merchant.url && KNOWN_MERCHANT_IDENTITIES[input.merchant.url] ? input.merchant.url : null;
57
+ const networkConfirmation = input.vicConfirmation?.posted === true ? input.vicConfirmation.transactionStatus : null;
58
+ const capability = result.failureCode || result.requiresAdapter.length > 0
59
+ ? {
60
+ failureCode: result.failureCode ?? null,
61
+ detectedRoles: Object.keys(result.fields).sort(),
62
+ requiresAdapter: [...result.requiresAdapter].sort(),
63
+ }
64
+ : null;
32
65
  return {
33
- schema: 'checkout-agent-receipt/v1',
66
+ schema: 'checkout-agent-receipt/v2',
34
67
  recordedAt: (input.recordedAt ?? new Date()).toISOString(),
35
- mode: input.mode,
36
- reviewId: input.reviewId,
37
- merchant: { name: input.merchant.name, host: input.merchant.host },
68
+ ...(input.observationId ? { observationId: input.observationId } : {}),
69
+ ...(input.observationId && input.reviewId === null ? { phase: 'review' } : {}),
70
+ merchant: { name: input.merchant.name, host: input.merchant.host, checkoutUrl },
38
71
  transaction: input.transaction,
39
72
  outcome: result.outcome,
40
- detail: result.detail ?? null,
41
- confirmationRef: result.confirmationRef ?? null,
42
- vicConfirmation: input.vicConfirmation,
43
- credentialLifecycle: result.credentialLifecycle,
44
- credentialTiming: result.credentialTiming,
45
- detectedRoles: Object.keys(result.fields),
46
- requiresAdapter: [...result.requiresAdapter],
47
- reconciliation: reconciliationFor(result, input.vicConfirmation),
48
- evidence: result.evidence.toObject(),
73
+ agent: input.agentName ? { name: input.agentName } : null,
74
+ rail: { type: 'card', cardLast4 },
75
+ network: { confirmation: networkConfirmation },
76
+ ...(capability ? { capability } : {}),
77
+ receiptId: input.reviewId,
78
+ reference: result.confirmationRef ?? null,
79
+ recovery: {
80
+ required: reconciliation.required,
81
+ // A clean dry-run did not submit anything, so repeating inspection is
82
+ // safe. Every submit outcome requires either no retry or owner review.
83
+ retrySafe: input.mode === 'dry-run' && !reconciliation.required,
84
+ action: recoveryActions[0],
85
+ actions: recoveryActions,
86
+ },
49
87
  };
50
88
  }
51
89
  function luhnValid(digits) {
@@ -88,7 +126,8 @@ export function serializeReceipt(receipt) {
88
126
  }
89
127
  export function receiptFileName(receipt) {
90
128
  const ts = receipt.recordedAt.replace(/[:.]/g, '-');
91
- const review = (receipt.reviewId ?? 'no-review').replace(/[^A-Za-z0-9-]/g, '');
129
+ const receiptId = receipt.schema === 'checkout-agent-receipt/v1' ? receipt.reviewId : receipt.receiptId;
130
+ const review = (receiptId ?? 'no-review').replace(/[^A-Za-z0-9-]/g, '');
92
131
  return `receipt-${ts}-${review || 'no-review'}.json`;
93
132
  }
94
133
  /**
@@ -0,0 +1,8 @@
1
+ export declare function safeTraceHandle(value: unknown): string | undefined;
2
+ export declare function traceHandleFields(value: {
3
+ vgsTraceId?: unknown;
4
+ networkCorrelationId?: unknown;
5
+ }): {
6
+ vgsTraceId?: string;
7
+ networkCorrelationId?: string;
8
+ };
@@ -0,0 +1,12 @@
1
+ const SAFE_TRACE_HANDLE_RE = /^[A-Za-z0-9._:-]{1,128}$/;
2
+ export function safeTraceHandle(value) {
3
+ return typeof value === 'string' && SAFE_TRACE_HANDLE_RE.test(value) ? value : undefined;
4
+ }
5
+ export function traceHandleFields(value) {
6
+ const vgsTraceId = safeTraceHandle(value.vgsTraceId);
7
+ const networkCorrelationId = safeTraceHandle(value.networkCorrelationId);
8
+ return {
9
+ ...(vgsTraceId ? { vgsTraceId } : {}),
10
+ ...(networkCorrelationId ? { networkCorrelationId } : {}),
11
+ };
12
+ }
@@ -1,5 +1,4 @@
1
- export type Contact = {
2
- email?: string;
1
+ export type PostalAddress = {
3
2
  firstName?: string;
4
3
  lastName?: string;
5
4
  fullName?: string;
@@ -10,6 +9,11 @@ export type Contact = {
10
9
  postalCode?: string;
11
10
  country?: string;
12
11
  };
12
+ export type Contact = PostalAddress & {
13
+ email?: string;
14
+ phone?: string;
15
+ billingAddress?: PostalAddress;
16
+ };
13
17
  export type FilledField = {
14
18
  role: string;
15
19
  locator: string;
@@ -19,8 +23,30 @@ export type FilledField = {
19
23
  value: string;
20
24
  ok: boolean;
21
25
  error?: string;
26
+ /**
27
+ * The detected node was gone by the time this field's turn came (the merchant
28
+ * re-mounted that part of the form mid-fill) and a fresh detection pass was
29
+ * used to find it again. Worth surfacing: a merchant that re-mounts is a
30
+ * merchant whose fills are order-sensitive, which is the first thing to know
31
+ * when one of them later refuses.
32
+ */
33
+ relocated?: boolean;
22
34
  };
23
35
  export type FillResult = {
24
36
  ok: boolean;
25
37
  filled: FilledField[];
38
+ detail?: string;
39
+ };
40
+ export type OtpRequest = {
41
+ /** ISO watermark captured BEFORE the click that triggers the OTP email. */
42
+ after: string;
43
+ /** The merchant hostname; the sender's registrable domain must match it. */
44
+ merchantHost: string;
45
+ };
46
+ export type OtpResolution = {
47
+ /** The single-use code. The executor fills it exactly once; never retried. */
48
+ code: string;
49
+ /** The sender's registrable domain — a trust signal, safe to log (no PII). */
50
+ fromDomain: string;
26
51
  };
52
+ export type OtpResolver = (req: OtpRequest) => Promise<OtpResolution | null>;
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Outcomes whose receipt cannot rule out a charge.
3
+ *
4
+ * Both of these record a run where the pay control was clicked and no
5
+ * definitive answer came back:
6
+ * - `unverified` — no confirmation or decline observed before the deadline
7
+ * - `action-required` — an issuer challenge appeared, which happens AFTER the
8
+ * click, so the authorization may already exist
9
+ *
10
+ * Everything else is either definitive (`confirmed`, `declined`) or provably
11
+ * pre-click (`reviewed-dry-run`, `partial-fill`, `failed`, ...). Widening this
12
+ * set blocks legitimate retries; narrowing it lets a double charge through, so
13
+ * an outcome earns a place here only by being genuinely post-click.
14
+ */
15
+ export declare const MAY_HAVE_CHARGED_OUTCOMES: ReadonlySet<string>;
16
+ /** One local attempt that may have taken money and was never resolved. */
17
+ export type UnresolvedCharge = {
18
+ recordedAt: string;
19
+ host: string;
20
+ amount: string;
21
+ amountMinor: number;
22
+ currency: string;
23
+ outcome: string;
24
+ /** Receipt file basename, so a caller can name the evidence a human must check. */
25
+ receiptFile: string;
26
+ };
27
+ /**
28
+ * Local attempts that may have charged, newest first.
29
+ *
30
+ * Never throws: a missing directory (nothing has ever been checked out here)
31
+ * and an unreadable one both read as "no unresolved charges". The caller
32
+ * decides what an empty answer means — see the fail-open note at its call site.
33
+ */
34
+ export declare function readUnresolvedCharges(receiptDir?: string): Promise<UnresolvedCharge[]>;
@@ -0,0 +1,134 @@
1
+ // "Did this device already submit this exact purchase?", read back from the
2
+ // checkout receipts on disk.
3
+ //
4
+ // The engine now reports a submitted-but-unobserved checkout as `unverified`
5
+ // instead of `failed`, and pay_merchant tells the caller not to retry it. This
6
+ // module is the belt to that suspenders: even a caller that ignores the words
7
+ // can be stopped, because the previous attempt left a receipt.
8
+ //
9
+ // It answers one question — which local receipts record an attempt that MAY
10
+ // HAVE CHARGED and was never resolved — and deliberately answers nothing else.
11
+ // The matching (same merchant, same amount, recent enough) lives in the caller,
12
+ // which owns the policy; this side owns only the read.
13
+ //
14
+ // Sibling of confirmed-merchants.ts and loaded through the same seam: it
15
+ // imports node built-ins and types only, so reading receipts never pulls
16
+ // playwright into the CLI process.
17
+ //
18
+ // Reading is best-effort by construction. The receipts directory is an operator
19
+ // artifact that anything on the box can touch, so an unreadable or malformed
20
+ // file is skipped rather than failing the whole read.
21
+ import { readdir, readFile } from 'node:fs/promises';
22
+ import { join } from 'node:path';
23
+ import { RECEIPT_DIR } from './receipt-dir.js';
24
+ /**
25
+ * Outcomes whose receipt cannot rule out a charge.
26
+ *
27
+ * Both of these record a run where the pay control was clicked and no
28
+ * definitive answer came back:
29
+ * - `unverified` — no confirmation or decline observed before the deadline
30
+ * - `action-required` — an issuer challenge appeared, which happens AFTER the
31
+ * click, so the authorization may already exist
32
+ *
33
+ * Everything else is either definitive (`confirmed`, `declined`) or provably
34
+ * pre-click (`reviewed-dry-run`, `partial-fill`, `failed`, ...). Widening this
35
+ * set blocks legitimate retries; narrowing it lets a double charge through, so
36
+ * an outcome earns a place here only by being genuinely post-click.
37
+ */
38
+ export const MAY_HAVE_CHARGED_OUTCOMES = new Set([
39
+ 'unverified',
40
+ 'action-required',
41
+ ]);
42
+ /**
43
+ * Every field this module reads, validated. Deliberately permissive about
44
+ * everything else: older and newer engines only have to carry these.
45
+ *
46
+ * Both receipt schemas expose all of them at the same paths, so unlike
47
+ * confirmed-merchants.ts there is nothing here that needs a per-schema branch.
48
+ */
49
+ function parseUnresolved(json, receiptFile) {
50
+ let parsed;
51
+ try {
52
+ parsed = JSON.parse(json);
53
+ }
54
+ catch {
55
+ return null;
56
+ }
57
+ if (typeof parsed !== 'object' || parsed === null)
58
+ return null;
59
+ const receipt = parsed;
60
+ if (receipt.schema !== 'checkout-agent-receipt/v1' &&
61
+ receipt.schema !== 'checkout-agent-receipt/v2') {
62
+ return null;
63
+ }
64
+ // Terminal review observations are useful capability evidence, but no pay
65
+ // control, credential, or submission exists yet. They must never poison the
66
+ // double-charge ledger even when the observed page showed a Shop Pay or 3DS
67
+ // action-required surface.
68
+ if (receipt.schema === 'checkout-agent-receipt/v2' &&
69
+ (receipt.phase === 'review' ||
70
+ (typeof receipt.observationId === 'string' && receipt.receiptId === null))) {
71
+ return null;
72
+ }
73
+ if (typeof receipt.outcome !== 'string' || !MAY_HAVE_CHARGED_OUTCOMES.has(receipt.outcome)) {
74
+ return null;
75
+ }
76
+ if (typeof receipt.recordedAt !== 'string' || Number.isNaN(Date.parse(receipt.recordedAt))) {
77
+ return null;
78
+ }
79
+ const host = receipt.merchant?.host;
80
+ if (typeof host !== 'string' || host.length === 0)
81
+ return null;
82
+ const transaction = receipt.transaction;
83
+ if (typeof transaction?.amount !== 'string')
84
+ return null;
85
+ if (typeof transaction.currency !== 'string')
86
+ return null;
87
+ // A receipt whose amount cannot be compared cannot gate a retry on amount, and
88
+ // a guard that silently matched every amount would be worse than none.
89
+ if (typeof transaction.amountMinor !== 'number' || !Number.isFinite(transaction.amountMinor)) {
90
+ return null;
91
+ }
92
+ return {
93
+ recordedAt: receipt.recordedAt,
94
+ host,
95
+ amount: transaction.amount,
96
+ amountMinor: transaction.amountMinor,
97
+ currency: transaction.currency,
98
+ outcome: receipt.outcome,
99
+ receiptFile,
100
+ };
101
+ }
102
+ /**
103
+ * Local attempts that may have charged, newest first.
104
+ *
105
+ * Never throws: a missing directory (nothing has ever been checked out here)
106
+ * and an unreadable one both read as "no unresolved charges". The caller
107
+ * decides what an empty answer means — see the fail-open note at its call site.
108
+ */
109
+ export async function readUnresolvedCharges(receiptDir = RECEIPT_DIR) {
110
+ let names;
111
+ try {
112
+ names = await readdir(receiptDir);
113
+ }
114
+ catch {
115
+ return [];
116
+ }
117
+ const charges = [];
118
+ for (const name of names) {
119
+ if (!name.endsWith('.json'))
120
+ continue;
121
+ let raw;
122
+ try {
123
+ raw = await readFile(join(receiptDir, name), 'utf8');
124
+ }
125
+ catch {
126
+ continue;
127
+ }
128
+ const charge = parseUnresolved(raw, name);
129
+ if (charge)
130
+ charges.push(charge);
131
+ }
132
+ charges.sort((left, right) => (left.recordedAt < right.recordedAt ? 1 : -1));
133
+ return charges;
134
+ }
@@ -6,15 +6,67 @@ export type ServerMintDeps = {
6
6
  sleep?: (ms: number) => Promise<void>;
7
7
  env?: NodeJS.ProcessEnv;
8
8
  };
9
+ /**
10
+ * The merchant ORIGIN (scheme + host) — not the full checkout URL. A merchant's
11
+ * identity is its origin; a real checkout URL can carry hundreds of chars of
12
+ * campaign/tracking query params. Confirmed live: an oversized `merchantUrl`
13
+ * (a ~280-char Wikimedia donation URL) makes the cryptogram mint fail downstream
14
+ * with a vague `502 "card network could not complete"`, while the same merchant
15
+ * with a trimmed URL mints fine. Sending the origin is both correct (that IS the
16
+ * merchant) and safely bounded. Falls back to the raw value if it does not parse
17
+ * — the mint must never throw here.
18
+ */
19
+ export declare function merchantOrigin(url: string): string;
20
+ /**
21
+ * A definitive refusal from the cryptogram mint route — the request will not
22
+ * succeed if retried unchanged.
23
+ *
24
+ * `terminal` is the load-bearing field. Draw terminality used to be decided by
25
+ * regex over the error MESSAGE, which made it hostage to text nobody controls:
26
+ * this client now interpolates the provider's own `upstream_codes` into the
27
+ * message for diagnosability, and a provider identifier such as
28
+ * `request_timeout` would match the transient matcher's unanchored
29
+ * `tim(e|ed)-out` alternative — flipping a permanent 422 back to "transient",
30
+ * skipping markUnhonored, and stranding the mandate in the exact retry-forever
31
+ * loop this whole change exists to kill. Terminality is therefore carried
32
+ * structurally, and consumers must consult it BEFORE any message matching.
33
+ */
34
+ export declare class ServerCryptogramRefusedError extends Error {
35
+ readonly status: number;
36
+ readonly terminal: true;
37
+ constructor(status: number, detail: string);
38
+ }
39
+ /**
40
+ * Optional mandate override for serverCreateIntent. Absent → the default
41
+ * intent shape (cap = ceil(amount)+10 min 25, quantity 1, 30-day window).
42
+ * Present → the card-mandate (budget) layer sets a CEILING decline threshold
43
+ * and a multi-draw quantity so one passkey approves a spend ceiling and later
44
+ * draws pull cryptograms under it without a fresh tap. Whether the network
45
+ * honors a ceiling-scoped assurance across multiple sub-amount draws is
46
+ * UNPROVEN — see packages/checkout-engine/src/mandate/.
47
+ */
48
+ export type ServerIntentMandateOverride = {
49
+ /** Wire decline-threshold amount (major-unit decimal string), e.g. "500.00". */
50
+ declineThresholdAmount?: string;
51
+ /** Number of draws the intent may fulfil (VGS mandate `quantity`). */
52
+ quantity?: number;
53
+ /** ISO 8601 mandate validity end. */
54
+ effectiveUntil?: string;
55
+ /** Human-readable consumer prompt describing the ceiling grant. */
56
+ consumerPrompt?: string;
57
+ };
9
58
  /**
10
59
  * Create a fresh intent via POST {base}/api/vgs/intent. The server holds the VGS
11
60
  * credential and calls the gateway; we send the same mandate shape the local
12
- * path built (cap = ceil(amount)+10, min 25; merchant category Retail/5999).
61
+ * path built (cap = ceil(amount)+10, min 25; merchant category Retail/5999)
62
+ * unless `input.mandate` overrides the threshold/quantity/window for the
63
+ * card-mandate (budget) layer.
13
64
  */
14
65
  export declare function serverCreateIntent(base: string, mintToken: string, input: {
15
66
  tokenId: string;
16
67
  assuranceData: unknown;
17
68
  transaction: VgsCheckoutTarget;
69
+ mandate?: ServerIntentMandateOverride;
18
70
  }, deps?: ServerMintDeps): Promise<{
19
71
  intentId: string;
20
72
  status: string | null;
@@ -11,6 +11,7 @@
11
11
  // Request derivation here mirrors ../fetch-credential.mjs EXACTLY (mandate cap,
12
12
  // consumer prompt, PENDING retry cadence) — the only change is the transport:
13
13
  // verify-web routes + Bearer mint token, never the VGS gateway + VGS secret.
14
+ import { traceHandleFields } from '../trace-handles.js';
14
15
  const defaultSleep = (ms) => new Promise((r) => {
15
16
  const t = setTimeout(r, ms);
16
17
  t.unref?.();
@@ -21,10 +22,62 @@ function stripTrailingSlashes(value) {
21
22
  out = out.slice(0, -1);
22
23
  return out;
23
24
  }
25
+ /**
26
+ * The merchant ORIGIN (scheme + host) — not the full checkout URL. A merchant's
27
+ * identity is its origin; a real checkout URL can carry hundreds of chars of
28
+ * campaign/tracking query params. Confirmed live: an oversized `merchantUrl`
29
+ * (a ~280-char Wikimedia donation URL) makes the cryptogram mint fail downstream
30
+ * with a vague `502 "card network could not complete"`, while the same merchant
31
+ * with a trimmed URL mints fine. Sending the origin is both correct (that IS the
32
+ * merchant) and safely bounded. Falls back to the raw value if it does not parse
33
+ * — the mint must never throw here.
34
+ */
35
+ export function merchantOrigin(url) {
36
+ try {
37
+ return new URL(url).origin;
38
+ }
39
+ catch {
40
+ return url;
41
+ }
42
+ }
43
+ /**
44
+ * A definitive refusal from the cryptogram mint route — the request will not
45
+ * succeed if retried unchanged.
46
+ *
47
+ * `terminal` is the load-bearing field. Draw terminality used to be decided by
48
+ * regex over the error MESSAGE, which made it hostage to text nobody controls:
49
+ * this client now interpolates the provider's own `upstream_codes` into the
50
+ * message for diagnosability, and a provider identifier such as
51
+ * `request_timeout` would match the transient matcher's unanchored
52
+ * `tim(e|ed)-out` alternative — flipping a permanent 422 back to "transient",
53
+ * skipping markUnhonored, and stranding the mandate in the exact retry-forever
54
+ * loop this whole change exists to kill. Terminality is therefore carried
55
+ * structurally, and consumers must consult it BEFORE any message matching.
56
+ */
57
+ export class ServerCryptogramRefusedError extends Error {
58
+ status;
59
+ terminal = true;
60
+ constructor(status, detail) {
61
+ super(`server cryptogram refused (${status}): ${detail}`);
62
+ this.name = 'ServerCryptogramRefusedError';
63
+ this.status = status;
64
+ }
65
+ }
24
66
  /** Read a stable, non-secret error message from a route's JSON body. */
25
67
  async function routeError(res) {
26
68
  const doc = (await res.json().catch(() => null));
27
- return doc?.error || doc?.error_code || `HTTP ${res.status}`;
69
+ const base = doc?.error || doc?.error_code || `HTTP ${res.status}`;
70
+ // Carry the provider's own status and rejected-attribute identifiers into the
71
+ // message when the route reflected them. Without this the operator sees only
72
+ // our status and has to go log-diving to learn WHICH field the gateway
73
+ // objected to — the gap that left a live create_intent 422 undiagnosable.
74
+ const parts = [];
75
+ if (typeof doc?.upstream_status === 'number')
76
+ parts.push(`upstream_status=${doc.upstream_status}`);
77
+ if (Array.isArray(doc?.upstream_codes) && doc.upstream_codes.length > 0) {
78
+ parts.push(`upstream_codes=${doc.upstream_codes.join(',')}`);
79
+ }
80
+ return parts.length > 0 ? `${base} [${parts.join(' ')}]` : base;
28
81
  }
29
82
  function bearer(mintToken) {
30
83
  return { 'content-type': 'application/json', authorization: `Bearer ${mintToken}` };
@@ -32,29 +85,37 @@ function bearer(mintToken) {
32
85
  /**
33
86
  * Create a fresh intent via POST {base}/api/vgs/intent. The server holds the VGS
34
87
  * credential and calls the gateway; we send the same mandate shape the local
35
- * path built (cap = ceil(amount)+10, min 25; merchant category Retail/5999).
88
+ * path built (cap = ceil(amount)+10, min 25; merchant category Retail/5999)
89
+ * unless `input.mandate` overrides the threshold/quantity/window for the
90
+ * card-mandate (budget) layer.
36
91
  */
37
92
  export async function serverCreateIntent(base, mintToken, input, deps = {}) {
38
93
  const fetchImpl = deps.fetchImpl ?? fetch;
39
94
  const { tokenId, assuranceData, transaction: t } = input;
40
- const cap = Math.max(Math.ceil(Number(t.transactionAmount) || 0) + 10, 25);
95
+ const override = input.mandate ?? {};
96
+ const defaultCap = Math.max(Math.ceil(Number(t.transactionAmount) || 0) + 10, 25);
97
+ const declineThresholdAmount = override.declineThresholdAmount ?? String(defaultCap);
98
+ const quantity = override.quantity ?? 1;
99
+ const effectiveUntil = override.effectiveUntil ?? new Date(Date.now() + 30 * 24 * 60 * 60 * 1000).toISOString();
100
+ const consumerPrompt = override.consumerPrompt ??
101
+ `Buy an item from ${t.merchantName} for ${t.transactionCurrencyCode.toUpperCase()} ${t.transactionAmount}`;
41
102
  const res = await fetchImpl(`${stripTrailingSlashes(base)}/api/vgs/intent`, {
42
103
  method: 'POST',
43
104
  headers: bearer(mintToken),
44
105
  body: JSON.stringify({
45
106
  tokenId,
46
- consumerPrompt: `Buy an item from ${t.merchantName} for ${t.transactionCurrencyCode.toUpperCase()} ${t.transactionAmount}`,
107
+ consumerPrompt,
47
108
  assuranceData,
48
109
  mandates: [
49
110
  {
50
111
  description: `Purchase at ${t.merchantName}`,
51
- declineThresholdAmount: String(cap),
112
+ declineThresholdAmount,
52
113
  declineThresholdCurrencyCode: t.transactionCurrencyCode.toUpperCase(),
53
- effectiveUntil: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000).toISOString(),
114
+ effectiveUntil,
54
115
  merchantCategory: 'Retail',
55
116
  merchantCategoryCode: '5999',
56
117
  preferredMerchantName: t.merchantName,
57
- quantity: 1,
118
+ quantity,
58
119
  },
59
120
  ],
60
121
  }),
@@ -89,7 +150,9 @@ export async function serverFetchCryptogram(base, mintToken, input, deps = {}) {
89
150
  intentId,
90
151
  transaction: {
91
152
  merchantName: t.merchantName,
92
- merchantUrl: t.merchantUrl,
153
+ // Send the merchant ORIGIN, not the full (possibly huge) checkout URL — an
154
+ // oversized merchantUrl makes the downstream cryptogram mint 502 (proven live).
155
+ merchantUrl: merchantOrigin(t.merchantUrl),
93
156
  merchantCountryCode: t.merchantCountryCode,
94
157
  transactionAmount: t.transactionAmount,
95
158
  transactionCurrencyCode: t.transactionCurrencyCode.toUpperCase(),
@@ -116,11 +179,16 @@ export async function serverFetchCryptogram(base, mintToken, input, deps = {}) {
116
179
  ...(typeof c.cryptogramExpiresAt === 'string'
117
180
  ? { cryptogramExpiresAt: c.cryptogramExpiresAt }
118
181
  : {}),
182
+ ...traceHandleFields(c),
119
183
  };
120
184
  }
121
185
  // A 4xx (bad request / binding refusal / auth) is terminal — never retry it.
122
- if (res.status >= 400 && res.status < 500) {
123
- throw new Error(`server cryptogram refused (${res.status}): ${await routeError(res)}`);
186
+ // 429 is the sole exception: it is an explicitly retryable 4xx, and treating
187
+ // it as terminal would let a transient rate limit permanently disable a
188
+ // healthy mandate. The route maps upstream rate limits to 503 today, so this
189
+ // is a guard against a future emitter, not a live path.
190
+ if (res.status >= 400 && res.status < 500 && res.status !== 429) {
191
+ throw new ServerCryptogramRefusedError(res.status, await routeError(res));
124
192
  }
125
193
  lastError = `${res.status}: ${await routeError(res)}`;
126
194
  if (attempt < attempts)
@@ -42,6 +42,15 @@ export type PurchaseAssurance = {
42
42
  transactionAmount: string;
43
43
  /** ISO 4217 currency the ceremony was scoped to. */
44
44
  transactionCurrencyCode: string;
45
+ /**
46
+ * True iff the approval server marked this token passkey-exempt ('otp'
47
+ * cardholder ID&V / 'none' — verified against the owner's account card
48
+ * record at complete-time): no ceremony ran, `assuranceData` is null by
49
+ * design, and the intent is minted without it (the signed mint token
50
+ * carries the same exemption for the server's own check). Absent/false →
51
+ * assuranceData is REQUIRED, exactly the historical contract.
52
+ */
53
+ assuranceExempt?: boolean;
45
54
  };
46
55
  /**
47
56
  * Our fail-closed freshness bound, matching the runner's 15-minute checkout
@@ -57,6 +66,8 @@ export type VgsPaymentCredential = {
57
66
  cryptogramType: string;
58
67
  cryptogramValue: string;
59
68
  cryptogramExpiresAt?: string;
69
+ vgsTraceId?: string;
70
+ networkCorrelationId?: string;
60
71
  };
61
72
  export type FetchVgsPaymentCredential = (input: {
62
73
  tokenId: string;
@@ -69,20 +80,39 @@ export type FetchVgsPaymentCredential = (input: {
69
80
  transactionCurrencyCode: string;
70
81
  };
71
82
  }) => Promise<VgsPaymentCredential>;
72
- export type MintFreshVgsPaymentCredential = (input: {
73
- tokenId: string;
74
- assuranceData: unknown;
75
- transaction: VgsCheckoutTarget;
76
- }) => Promise<{
77
- payment: VgsPaymentCredential;
78
- intentId: string;
79
- }>;
80
83
  /** The (token, intent) pair a VIC confirmation is posted against. */
81
84
  export type VicConfirmationTarget = {
82
85
  tokenId: string;
83
86
  intentId: string;
84
87
  };
85
88
  export declare function decimalToMinor(value: unknown): number | null;
89
+ /**
90
+ * Currencies whose minor unit is 1/100 of the major unit (2 decimal places).
91
+ * minorToDecimal's /100 + pad-to-2 rendering is ONLY correct for these. The
92
+ * card mandate path accepts any 3-letter ISO code, so a 0- or 3-decimal
93
+ * currency (JPY, BHD, …) would otherwise be emitted with a wrong wire amount.
94
+ * We only support USD/USDC today; extend deliberately (and fix the exponent)
95
+ * before adding any non-2-decimal currency.
96
+ *
97
+ * NOTE (scanner FP pre-empt): this is a CLIENT-SIDE currency-exponent lookup for
98
+ * rendering a wire amount in @visa/checkout-engine — it is NOT the cross-store
99
+ * `PAYMENT_CURRENCIES` enum governed by apps/auth/src/shared-validators.ts, and
100
+ * this package cannot import from apps/auth (no dependency edge). It intentionally
101
+ * does not mirror that enum's membership; do not "reconcile" the two.
102
+ */
103
+ export declare const TWO_DECIMAL_CURRENCIES: Set<string>;
104
+ /**
105
+ * Inverse of decimalToMinor: render integer minor units as a major-unit decimal
106
+ * string ("D.DD") for the VGS wire (e.g. a ceiling of 50000 minor → "500.00").
107
+ * Integer-only; never floating-point money. Throws on a non-integer/negative so
108
+ * a bad accounting value cannot silently reach the network.
109
+ *
110
+ * The /100 + pad-to-2 rendering assumes a 2-decimal (exponent-2) currency. Pass
111
+ * `currencyCode` on any path that accepts arbitrary currencies (the mandate
112
+ * path) and it REFUSES a non-2-decimal currency rather than emit a wrong wire
113
+ * amount. Omit it only where the currency is already known to be USD/USDC.
114
+ */
115
+ export declare function minorToDecimal(minor: number, currencyCode?: string): string;
86
116
  /**
87
117
  * Refuse to mint an intent unless the assurance is fresh and its declared
88
118
  * scope matches the checkout target exactly. `now` is injectable so the
@@ -112,30 +142,3 @@ export declare class VgsLiveInstrument implements Instrument {
112
142
  confirmationTarget(): VicConfirmationTarget | null;
113
143
  getCredential(ctx: InstrumentContext): Promise<CardCredential>;
114
144
  }
115
- /**
116
- * Consumes #5614's claimed CLI enrollment artifact (for the tokenId) plus a
117
- * FRESH purchase-scoped assurance, and creates a fresh, transaction-scoped VIC
118
- * intent + credential after checkout approval. This is the production-shaped
119
- * bridge; unlike VgsLiveInstrument it never needs a pre-created intent ID.
120
- *
121
- * The enrollment artifact's stored assuranceData is deliberately never sent:
122
- * replaying it makes intent creation succeed (HTTP 201) while the cryptogram
123
- * deterministically never completes — the #5709 dead end. Purchase
124
- * authorization is the fresh, merchant+amount+currency-scoped assurance,
125
- * validated against the checkout target BEFORE any intent is minted so a
126
- * doomed intent is never created.
127
- */
128
- export declare class VgsAssuranceInstrument implements Instrument {
129
- private readonly enrollment;
130
- private readonly purchase;
131
- private readonly target;
132
- private readonly cardholderName;
133
- private readonly mintCredential;
134
- readonly kind: "agentic-token";
135
- private used;
136
- private minted;
137
- constructor(enrollment: CliAgentCredential, purchase: PurchaseAssurance, target: VgsCheckoutTarget, cardholderName: string, mintCredential: MintFreshVgsPaymentCredential);
138
- /** See VgsLiveInstrument.confirmationTarget — same contract. */
139
- confirmationTarget(): VicConfirmationTarget | null;
140
- getCredential(ctx: InstrumentContext): Promise<CardCredential>;
141
- }