@visa/cli 4.1.0-rc.21 → 4.1.0-rc.211
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 +200 -226
- package/dist/checkout-engine/adapters/generic.d.ts +69 -0
- package/dist/checkout-engine/adapters/generic.js +383 -58
- package/dist/checkout-engine/adapters/index.d.ts +4 -1
- package/dist/checkout-engine/adapters/index.js +10 -3
- package/dist/checkout-engine/adapters/shopify.d.ts +55 -0
- package/dist/checkout-engine/adapters/shopify.js +514 -0
- package/dist/checkout-engine/amount.d.ts +15 -0
- package/dist/checkout-engine/amount.js +72 -0
- package/dist/checkout-engine/cli-engine.d.ts +264 -4
- package/dist/checkout-engine/cli-engine.js +803 -43
- package/dist/checkout-engine/confirmed-merchants.d.ts +31 -0
- package/dist/checkout-engine/confirmed-merchants.js +165 -0
- package/dist/checkout-engine/detect.d.ts +1 -1
- package/dist/checkout-engine/detect.js +26 -0
- package/dist/checkout-engine/evidence.d.ts +4 -1
- package/dist/checkout-engine/evidence.js +51 -6
- package/dist/checkout-engine/executor.d.ts +47 -4
- package/dist/checkout-engine/executor.js +418 -131
- package/dist/checkout-engine/hosted-approval.d.ts +124 -7
- package/dist/checkout-engine/hosted-approval.js +381 -54
- package/dist/checkout-engine/index.d.ts +8 -2
- package/dist/checkout-engine/index.js +7 -1
- package/dist/checkout-engine/instrument.d.ts +7 -0
- package/dist/checkout-engine/instrument.js +4 -0
- package/dist/checkout-engine/known-merchants.d.ts +10 -0
- package/dist/checkout-engine/known-merchants.js +38 -0
- package/dist/checkout-engine/live-fill-approval.d.ts +5 -20
- package/dist/checkout-engine/live-fill-approval.js +20 -51
- package/dist/checkout-engine/mandate/card-mandate.d.ts +121 -0
- package/dist/checkout-engine/mandate/card-mandate.js +226 -0
- package/dist/checkout-engine/mandate/mandate-ledger.d.ts +174 -0
- package/dist/checkout-engine/mandate/mandate-ledger.js +410 -0
- package/dist/checkout-engine/outcome.d.ts +2 -2
- package/dist/checkout-engine/outcome.js +36 -1
- package/dist/checkout-engine/owner-only-file.d.ts +9 -0
- package/dist/checkout-engine/owner-only-file.js +20 -1
- package/dist/checkout-engine/receipt-dir.d.ts +6 -0
- package/dist/checkout-engine/receipt-dir.js +8 -0
- package/dist/checkout-engine/receipt.d.ts +42 -2
- package/dist/checkout-engine/receipt.js +43 -14
- package/dist/checkout-engine/trace-handles.d.ts +8 -0
- package/dist/checkout-engine/trace-handles.js +12 -0
- package/dist/checkout-engine/types.d.ts +28 -2
- package/dist/checkout-engine/unresolved-charges.d.ts +34 -0
- package/dist/checkout-engine/unresolved-charges.js +125 -0
- package/dist/checkout-engine/vgs-gateway/server-mint-client.d.ts +53 -1
- package/dist/checkout-engine/vgs-gateway/server-mint-client.js +78 -10
- package/dist/checkout-engine/vgs-live-instrument.d.ts +38 -35
- package/dist/checkout-engine/vgs-live-instrument.js +51 -74
- package/dist/checkout-engine/vic-confirmation.d.ts +18 -0
- package/dist/checkout-engine/vic-confirmation.js +9 -3
- package/dist/checkout-engine/web-bot-auth.d.ts +92 -0
- package/dist/checkout-engine/web-bot-auth.js +159 -0
- package/dist/cli.js +772 -496
- package/dist/mcp-apps/ucp-checkout.html +280 -0
- package/dist/mcp-server/index.js +637 -175
- package/dist/skills/pair-visa-agent/RUNTIMES.md +93 -0
- package/dist/skills/pair-visa-agent/SKILL.md +479 -221
- package/dist/subway-direct.mjs +1 -0
- package/install.ps1 +5 -43
- package/install.sh +5 -37
- package/native/bin/win32-x64/visa-keychain-win.exe +0 -0
- package/package.json +33 -27
- package/server.json +4 -4
- package/dist/checkout-engine/inline-target.d.ts +0 -13
- package/dist/checkout-engine/inline-target.js +0 -37
- package/dist/checkout-engine/pay-args.d.ts +0 -14
- package/dist/checkout-engine/pay-args.js +0 -44
- package/dist/checkout-engine/pay.d.ts +0 -1
- package/dist/checkout-engine/pay.js +0 -13
- package/dist/checkout-engine/repo-env.d.ts +0 -11
- package/dist/checkout-engine/repo-env.js +0 -23
- package/dist/checkout-engine/run-live-fill.d.ts +0 -1
- package/dist/checkout-engine/run-live-fill.js +0 -443
- package/dist/checkout-engine/vgs-gateway/fetch-credential.d.mts +0 -74
- package/dist/checkout-engine/vgs-gateway/fetch-credential.mjs +0 -248
|
@@ -8,3 +8,12 @@
|
|
|
8
8
|
export declare function assertOwnerOnlyFile(path: string, label: string, maxBytes?: number): Promise<void>;
|
|
9
9
|
/** The same guard, then parse — contents are read only after the guard passes. */
|
|
10
10
|
export declare function readOwnerOnlyJson<T>(path: string, label: string, maxBytes?: number): Promise<T>;
|
|
11
|
+
/**
|
|
12
|
+
* Atomically write an owner-only (chmod 600) JSON artifact: serialize to a
|
|
13
|
+
* sibling temp file created 0600, then rename over the target so a reader never
|
|
14
|
+
* observes a half-written ledger (and a crash mid-write leaves the prior file
|
|
15
|
+
* intact). The parent directory is created if absent (matching ~/.visa-mcp).
|
|
16
|
+
* Used by the card-mandate ledger — the same owner-only posture as
|
|
17
|
+
* agent-credential.json / contact.json.
|
|
18
|
+
*/
|
|
19
|
+
export declare function writeOwnerOnlyJson(path: string, value: unknown): Promise<void>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { randomBytes } from 'node:crypto';
|
|
2
|
+
import { chmod, lstat, mkdir, readFile, rename, writeFile } from 'node:fs/promises';
|
|
3
|
+
import { dirname } from 'node:path';
|
|
2
4
|
/**
|
|
3
5
|
* lstat-only guard for operator-supplied secret-bearing files: must be a
|
|
4
6
|
* regular file (never a symlink), owner-only (chmod 600), and size-bounded.
|
|
@@ -20,3 +22,20 @@ export async function readOwnerOnlyJson(path, label, maxBytes = 16 * 1024) {
|
|
|
20
22
|
await assertOwnerOnlyFile(path, label, maxBytes);
|
|
21
23
|
return JSON.parse(await readFile(path, 'utf8'));
|
|
22
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* Atomically write an owner-only (chmod 600) JSON artifact: serialize to a
|
|
27
|
+
* sibling temp file created 0600, then rename over the target so a reader never
|
|
28
|
+
* observes a half-written ledger (and a crash mid-write leaves the prior file
|
|
29
|
+
* intact). The parent directory is created if absent (matching ~/.visa-mcp).
|
|
30
|
+
* Used by the card-mandate ledger — the same owner-only posture as
|
|
31
|
+
* agent-credential.json / contact.json.
|
|
32
|
+
*/
|
|
33
|
+
export async function writeOwnerOnlyJson(path, value) {
|
|
34
|
+
await mkdir(dirname(path), { recursive: true });
|
|
35
|
+
const tmp = `${path}.tmp-${randomBytes(6).toString('hex')}`;
|
|
36
|
+
await writeFile(tmp, `${JSON.stringify(value, null, 2)}\n`, { mode: 0o600 });
|
|
37
|
+
// writeFile's mode only applies on create; chmod defensively in case the temp
|
|
38
|
+
// name somehow pre-existed with looser bits.
|
|
39
|
+
await chmod(tmp, 0o600);
|
|
40
|
+
await rename(tmp, path);
|
|
41
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { homedir } from 'node:os';
|
|
2
|
+
import { join } from 'node:path';
|
|
3
|
+
/**
|
|
4
|
+
* Where this device's checkout receipts live. Owned by its own module so the
|
|
5
|
+
* writer (cli-engine.ts) and the reader (confirmed-merchants.ts) can never
|
|
6
|
+
* drift onto two paths.
|
|
7
|
+
*/
|
|
8
|
+
export const RECEIPT_DIR = join(homedir(), '.visa-mcp', 'checkout-receipts');
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { EvidenceStep } from './evidence.js';
|
|
2
2
|
import type { CheckoutMode, CheckoutOutcome, CheckoutResult, CredentialLifecycle, CredentialTiming } from './executor.js';
|
|
3
3
|
import type { VicConfirmationReport } from './vic-confirmation.js';
|
|
4
|
-
|
|
4
|
+
/** Published v1 artifact shape. Retained so patch releases remain readable/typable. */
|
|
5
|
+
export type CheckoutReceiptV1 = {
|
|
5
6
|
schema: 'checkout-agent-receipt/v1';
|
|
6
7
|
recordedAt: string;
|
|
7
8
|
mode: CheckoutMode;
|
|
@@ -32,6 +33,42 @@ export type CheckoutReceipt = {
|
|
|
32
33
|
snapshotSummary: string | null;
|
|
33
34
|
};
|
|
34
35
|
};
|
|
36
|
+
export type CheckoutReceiptV2 = {
|
|
37
|
+
schema: 'checkout-agent-receipt/v2';
|
|
38
|
+
recordedAt: string;
|
|
39
|
+
merchant: {
|
|
40
|
+
name: string;
|
|
41
|
+
host: string;
|
|
42
|
+
checkoutUrl: string | null;
|
|
43
|
+
};
|
|
44
|
+
transaction: {
|
|
45
|
+
amount: string;
|
|
46
|
+
amountMinor: number;
|
|
47
|
+
currency: string;
|
|
48
|
+
};
|
|
49
|
+
outcome: CheckoutOutcome;
|
|
50
|
+
agent: {
|
|
51
|
+
name: string;
|
|
52
|
+
} | null;
|
|
53
|
+
rail: {
|
|
54
|
+
type: 'card';
|
|
55
|
+
cardLast4: string | null;
|
|
56
|
+
};
|
|
57
|
+
network: {
|
|
58
|
+
confirmation: 'APPROVED' | 'DECLINED' | null;
|
|
59
|
+
};
|
|
60
|
+
/** Local reviewed-attempt identifier. Keeps filenames stable across schema versions. */
|
|
61
|
+
receiptId: string | null;
|
|
62
|
+
/** Merchant confirmation reference only; never substituted with an internal review id. */
|
|
63
|
+
reference: string | null;
|
|
64
|
+
recovery: {
|
|
65
|
+
required: boolean;
|
|
66
|
+
retrySafe: boolean;
|
|
67
|
+
action: string;
|
|
68
|
+
actions: string[];
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
export type CheckoutReceipt = CheckoutReceiptV1 | CheckoutReceiptV2;
|
|
35
72
|
export type ReceiptWriteReport = {
|
|
36
73
|
written: true;
|
|
37
74
|
path: string;
|
|
@@ -46,6 +83,7 @@ export declare function buildReceipt(input: {
|
|
|
46
83
|
merchant: {
|
|
47
84
|
name: string;
|
|
48
85
|
host: string;
|
|
86
|
+
url?: string;
|
|
49
87
|
};
|
|
50
88
|
transaction: {
|
|
51
89
|
amount: string;
|
|
@@ -54,9 +92,11 @@ export declare function buildReceipt(input: {
|
|
|
54
92
|
};
|
|
55
93
|
result: CheckoutResult;
|
|
56
94
|
vicConfirmation: VicConfirmationReport | null;
|
|
95
|
+
agentName?: string;
|
|
96
|
+
cardLast4?: string;
|
|
57
97
|
/** Injectable for tests; defaults to now. */
|
|
58
98
|
recordedAt?: Date;
|
|
59
|
-
}):
|
|
99
|
+
}): CheckoutReceiptV2;
|
|
60
100
|
/**
|
|
61
101
|
* Defense-in-depth scrub before anything touches disk: any standalone
|
|
62
102
|
* 12–19-digit run that passes Luhn is replaced — contiguous OR separated by
|
|
@@ -1,5 +1,6 @@
|
|
|
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
|
|
@@ -29,23 +30,50 @@ function reconciliationFor(result, vicConfirmation) {
|
|
|
29
30
|
}
|
|
30
31
|
export function buildReceipt(input) {
|
|
31
32
|
const { result } = input;
|
|
33
|
+
const reconciliation = reconciliationFor(result, input.vicConfirmation);
|
|
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;
|
|
32
58
|
return {
|
|
33
|
-
schema: 'checkout-agent-receipt/
|
|
59
|
+
schema: 'checkout-agent-receipt/v2',
|
|
34
60
|
recordedAt: (input.recordedAt ?? new Date()).toISOString(),
|
|
35
|
-
|
|
36
|
-
reviewId: input.reviewId,
|
|
37
|
-
merchant: { name: input.merchant.name, host: input.merchant.host },
|
|
61
|
+
merchant: { name: input.merchant.name, host: input.merchant.host, checkoutUrl },
|
|
38
62
|
transaction: input.transaction,
|
|
39
63
|
outcome: result.outcome,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
64
|
+
agent: input.agentName ? { name: input.agentName } : null,
|
|
65
|
+
rail: { type: 'card', cardLast4 },
|
|
66
|
+
network: { confirmation: networkConfirmation },
|
|
67
|
+
receiptId: input.reviewId,
|
|
68
|
+
reference: result.confirmationRef ?? null,
|
|
69
|
+
recovery: {
|
|
70
|
+
required: reconciliation.required,
|
|
71
|
+
// A clean dry-run did not submit anything, so repeating inspection is
|
|
72
|
+
// safe. Every submit outcome requires either no retry or owner review.
|
|
73
|
+
retrySafe: input.mode === 'dry-run' && !reconciliation.required,
|
|
74
|
+
action: recoveryActions[0],
|
|
75
|
+
actions: recoveryActions,
|
|
76
|
+
},
|
|
49
77
|
};
|
|
50
78
|
}
|
|
51
79
|
function luhnValid(digits) {
|
|
@@ -88,7 +116,8 @@ export function serializeReceipt(receipt) {
|
|
|
88
116
|
}
|
|
89
117
|
export function receiptFileName(receipt) {
|
|
90
118
|
const ts = receipt.recordedAt.replace(/[:.]/g, '-');
|
|
91
|
-
const
|
|
119
|
+
const receiptId = receipt.schema === 'checkout-agent-receipt/v1' ? receipt.reviewId : receipt.receiptId;
|
|
120
|
+
const review = (receiptId ?? 'no-review').replace(/[^A-Za-z0-9-]/g, '');
|
|
92
121
|
return `receipt-${ts}-${review || 'no-review'}.json`;
|
|
93
122
|
}
|
|
94
123
|
/**
|
|
@@ -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
|
|
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,125 @@
|
|
|
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
|
+
if (typeof receipt.outcome !== 'string' || !MAY_HAVE_CHARGED_OUTCOMES.has(receipt.outcome)) {
|
|
65
|
+
return null;
|
|
66
|
+
}
|
|
67
|
+
if (typeof receipt.recordedAt !== 'string' || Number.isNaN(Date.parse(receipt.recordedAt))) {
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
const host = receipt.merchant?.host;
|
|
71
|
+
if (typeof host !== 'string' || host.length === 0)
|
|
72
|
+
return null;
|
|
73
|
+
const transaction = receipt.transaction;
|
|
74
|
+
if (typeof transaction?.amount !== 'string')
|
|
75
|
+
return null;
|
|
76
|
+
if (typeof transaction.currency !== 'string')
|
|
77
|
+
return null;
|
|
78
|
+
// A receipt whose amount cannot be compared cannot gate a retry on amount, and
|
|
79
|
+
// a guard that silently matched every amount would be worse than none.
|
|
80
|
+
if (typeof transaction.amountMinor !== 'number' || !Number.isFinite(transaction.amountMinor)) {
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
return {
|
|
84
|
+
recordedAt: receipt.recordedAt,
|
|
85
|
+
host,
|
|
86
|
+
amount: transaction.amount,
|
|
87
|
+
amountMinor: transaction.amountMinor,
|
|
88
|
+
currency: transaction.currency,
|
|
89
|
+
outcome: receipt.outcome,
|
|
90
|
+
receiptFile,
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Local attempts that may have charged, newest first.
|
|
95
|
+
*
|
|
96
|
+
* Never throws: a missing directory (nothing has ever been checked out here)
|
|
97
|
+
* and an unreadable one both read as "no unresolved charges". The caller
|
|
98
|
+
* decides what an empty answer means — see the fail-open note at its call site.
|
|
99
|
+
*/
|
|
100
|
+
export async function readUnresolvedCharges(receiptDir = RECEIPT_DIR) {
|
|
101
|
+
let names;
|
|
102
|
+
try {
|
|
103
|
+
names = await readdir(receiptDir);
|
|
104
|
+
}
|
|
105
|
+
catch {
|
|
106
|
+
return [];
|
|
107
|
+
}
|
|
108
|
+
const charges = [];
|
|
109
|
+
for (const name of names) {
|
|
110
|
+
if (!name.endsWith('.json'))
|
|
111
|
+
continue;
|
|
112
|
+
let raw;
|
|
113
|
+
try {
|
|
114
|
+
raw = await readFile(join(receiptDir, name), 'utf8');
|
|
115
|
+
}
|
|
116
|
+
catch {
|
|
117
|
+
continue;
|
|
118
|
+
}
|
|
119
|
+
const charge = parseUnresolved(raw, name);
|
|
120
|
+
if (charge)
|
|
121
|
+
charges.push(charge);
|
|
122
|
+
}
|
|
123
|
+
charges.sort((left, right) => (left.recordedAt < right.recordedAt ? 1 : -1));
|
|
124
|
+
return charges;
|
|
125
|
+
}
|
|
@@ -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
|
-
|
|
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
|
|
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
|
|
107
|
+
consumerPrompt,
|
|
47
108
|
assuranceData,
|
|
48
109
|
mandates: [
|
|
49
110
|
{
|
|
50
111
|
description: `Purchase at ${t.merchantName}`,
|
|
51
|
-
declineThresholdAmount
|
|
112
|
+
declineThresholdAmount,
|
|
52
113
|
declineThresholdCurrencyCode: t.transactionCurrencyCode.toUpperCase(),
|
|
53
|
-
effectiveUntil
|
|
114
|
+
effectiveUntil,
|
|
54
115
|
merchantCategory: 'Retail',
|
|
55
116
|
merchantCategoryCode: '5999',
|
|
56
117
|
preferredMerchantName: t.merchantName,
|
|
57
|
-
quantity
|
|
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
|
-
|
|
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
|
-
|
|
123
|
-
|
|
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)
|