@proxy-checkout/cli 0.1.1-prx-146.161.1 → 0.1.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/README.md +0 -13
- package/dist/cjs/cli.d.cts +1 -1
- package/dist/cjs/cli.d.ts +1 -1
- package/dist/cjs/cli.js +2 -12
- package/dist/cjs/command-schema.js +1 -15
- package/dist/cjs/generated/stripe-integration-capabilities-version.d.cts +0 -564
- package/dist/cjs/generated/stripe-integration-capabilities-version.d.ts +0 -564
- package/dist/cjs/generated/stripe-integration-capabilities-version.js +1 -1148
- package/dist/cjs/index.d.cts +0 -1
- package/dist/cjs/index.d.ts +0 -1
- package/dist/cjs/index.js +1 -5
- package/dist/esm/cli.d.ts +1 -1
- package/dist/esm/cli.js +2 -12
- package/dist/esm/command-schema.js +1 -15
- package/dist/esm/generated/stripe-integration-capabilities-version.d.ts +0 -564
- package/dist/esm/generated/stripe-integration-capabilities-version.js +0 -1147
- package/dist/esm/index.d.ts +0 -1
- package/dist/esm/index.js +0 -1
- package/package.json +1 -1
- package/dist/cjs/stripe-doctor.d.cts +0 -58
- package/dist/cjs/stripe-doctor.d.ts +0 -58
- package/dist/cjs/stripe-doctor.js +0 -164
- package/dist/esm/stripe-doctor.d.ts +0 -58
- package/dist/esm/stripe-doctor.js +0 -159
package/README.md
CHANGED
|
@@ -28,19 +28,6 @@ macOS uses the built-in Security framework and Keychain; supported Linux desktop
|
|
|
28
28
|
|
|
29
29
|
All grants issued in this release and all operational/resource commands are test-only. `auth status` and `auth logout` are mode-neutral safety controls so a future separately issued live grant can still be inspected and revoked. This release does not issue live grants, and `--mode live` on login or a resource command exits `5` with `cli_live_mode_not_enabled` before authentication or resource creation. The credential/verifier, profiles, command registry, and policies model mode explicitly so future live commands can require a separate live-bound grant, capability, and command intent without redesigning auth.
|
|
30
30
|
|
|
31
|
-
## Inspect a Stripe path
|
|
32
|
-
|
|
33
|
-
`stripe doctor` is a credential-free, generated facts check. It prints the exact capability closure, read-only reconciliation operations, restricted-key permissions, webhook events, compatibility floor, helper, unsupported options, and readiness gate for a path:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
proxy stripe doctor --path OT-PI --format json
|
|
37
|
-
proxy stripe doctor --path OT-CO-H --format json
|
|
38
|
-
proxy stripe doctor --path OT-CO-E --format json
|
|
39
|
-
proxy stripe doctor --path OT-CO-C --format json
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
The command never connects to Stripe or Proxy and never reads secrets or provider objects. All four one-time paths remain independently `action_required` outside the named internal cohort until production-deployed Stripe test-mode proof passes. The merchant backend still owns the Stripe create/edit credential and injects its Stripe client into the SDK helper; Proxy stores only the separate read-only restricted key described by the output. Fiveable's classic lane stays positive for direct/hosted and rejects embedded/custom with only the boundaries that actually need upgrading.
|
|
43
|
-
|
|
44
31
|
## Listen for Proxy webhooks
|
|
45
32
|
|
|
46
33
|
An active HTTPS source endpoint must already exist. Its selected event types, schema version, and signing-secret identity are cloned server-side; the CLI never receives the signing secret.
|
package/dist/cjs/cli.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CliConfigStore } from "./config.js";
|
|
2
2
|
import { type CliIo } from "./output.js";
|
|
3
|
-
export declare const cliVersion = "0.1.1
|
|
3
|
+
export declare const cliVersion = "0.1.1";
|
|
4
4
|
export interface RunCliOptions {
|
|
5
5
|
configStore?: CliConfigStore;
|
|
6
6
|
environment?: NodeJS.ProcessEnv;
|
package/dist/cjs/cli.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CliConfigStore } from "./config.js";
|
|
2
2
|
import { type CliIo } from "./output.js";
|
|
3
|
-
export declare const cliVersion = "0.1.1
|
|
3
|
+
export declare const cliVersion = "0.1.1";
|
|
4
4
|
export interface RunCliOptions {
|
|
5
5
|
configStore?: CliConfigStore;
|
|
6
6
|
environment?: NodeJS.ProcessEnv;
|
package/dist/cjs/cli.js
CHANGED
|
@@ -8,9 +8,8 @@ const command_schema_js_1 = require("./command-schema.js");
|
|
|
8
8
|
const config_js_1 = require("./config.js");
|
|
9
9
|
const errors_js_1 = require("./errors.js");
|
|
10
10
|
const output_js_1 = require("./output.js");
|
|
11
|
-
const stripe_doctor_js_1 = require("./stripe-doctor.js");
|
|
12
11
|
const webhooks_js_1 = require("./webhooks.js");
|
|
13
|
-
exports.cliVersion = "0.1.1
|
|
12
|
+
exports.cliVersion = "0.1.1";
|
|
14
13
|
async function runCli(argv, options = {}) {
|
|
15
14
|
const io = options.io ?? {
|
|
16
15
|
isTTY: Boolean(process.stdin.isTTY && process.stdout.isTTY),
|
|
@@ -29,7 +28,7 @@ async function runCli(argv, options = {}) {
|
|
|
29
28
|
}
|
|
30
29
|
if (parsedGlobals.options.llmsFull) {
|
|
31
30
|
const document = (0, command_schema_js_1.llmsFullDocument)();
|
|
32
|
-
output.result({ document, schema_version: "2026-07-
|
|
31
|
+
output.result({ document, schema_version: "2026-07-14" }, document);
|
|
33
32
|
return errors_js_1.cliExitCodes.success;
|
|
34
33
|
}
|
|
35
34
|
if (parsedGlobals.args.join(" ") === "commands schema") {
|
|
@@ -105,15 +104,6 @@ async function executeCommand(input) {
|
|
|
105
104
|
input.output.result(publicProfile(input.profileName, profile), `Authenticated profile ${input.profileName} for test merchant ${profile.merchantId}.`);
|
|
106
105
|
return;
|
|
107
106
|
}
|
|
108
|
-
if (input.command.path === "stripe doctor") {
|
|
109
|
-
const pathId = readRequiredString(input.options, "--path");
|
|
110
|
-
const report = (0, stripe_doctor_js_1.stripeDoctorReport)(pathId);
|
|
111
|
-
if (!report) {
|
|
112
|
-
throw (0, errors_js_1.usageError)(`Unknown Stripe path ID ${pathId}; expected one of ${(0, stripe_doctor_js_1.stripeDoctorPathIds)().join(", ")}`);
|
|
113
|
-
}
|
|
114
|
-
input.output.result({ stripe_path: report }, (0, stripe_doctor_js_1.formatStripeDoctorReport)(report));
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
107
|
const resolved = await input.configStore.resolveCredential({
|
|
118
108
|
apiBaseUrl: input.requestedApiBase,
|
|
119
109
|
profileName: input.profileName,
|
|
@@ -63,20 +63,6 @@ exports.commandSchemas = [
|
|
|
63
63
|
output: "Revocation status.",
|
|
64
64
|
path: "auth logout",
|
|
65
65
|
},
|
|
66
|
-
{
|
|
67
|
-
capabilities: [],
|
|
68
|
-
description: "Print generated Stripe path facts, exact read/event requirements, and static readiness gates.",
|
|
69
|
-
interactive: false,
|
|
70
|
-
modes: ["test", "live"],
|
|
71
|
-
options: withCommonOptions({
|
|
72
|
-
description: "Canonical Stripe path ID such as OT-PI, OT-CO-H, OT-CO-E, or OT-CO-C.",
|
|
73
|
-
name: "--path",
|
|
74
|
-
required: true,
|
|
75
|
-
type: "string",
|
|
76
|
-
}),
|
|
77
|
-
output: "Generated path facts and readiness status; never credentials or provider objects.",
|
|
78
|
-
path: "stripe doctor",
|
|
79
|
-
},
|
|
80
66
|
{
|
|
81
67
|
description: "Relay signed Proxy test webhooks to a loopback development server.",
|
|
82
68
|
interactive: true,
|
|
@@ -228,7 +214,7 @@ function findCommandSchema(path) {
|
|
|
228
214
|
}
|
|
229
215
|
function commandSchemaDocument(path) {
|
|
230
216
|
if (!path) {
|
|
231
|
-
return { commands: exports.commandSchemas, schema_version: "2026-07-
|
|
217
|
+
return { commands: exports.commandSchemas, schema_version: "2026-07-14" };
|
|
232
218
|
}
|
|
233
219
|
return findCommandSchema(path);
|
|
234
220
|
}
|