feat(cli): add customer contact-verification commands#703
Closed
ls-bolt[bot] wants to merge 1 commit into
Closed
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
Contributor
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Contributor
Author
|
@greptileai review |
Contributor
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-drift-fixes
branch
from
July 19, 2026 01:01
60355e8 to
d829484
Compare
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 19, 2026 01:01
d8e8758 to
102281f
Compare
Contributor
Author
Revision — addressed Greptile review
Faraday reviewed this PR as accept (no changes requested). |
Contributor
Author
|
@greptileai review |
This was referenced Jul 19, 2026
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 19, 2026 01:25
102281f to
d573b9f
Compare
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-drift-fixes
branch
from
July 19, 2026 01:25
d829484 to
90b36db
Compare
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-drift-fixes
branch
from
July 19, 2026 01:36
90b36db to
0364499
Compare
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 19, 2026 01:36
d573b9f to
876fe21
Compare
This was referenced Jul 19, 2026
jklein24
added a commit
that referenced
this pull request
Jul 21, 2026
## Summary
Adds customer **contact-verification** commands to the Grid CLI — the
email/phone verification flow required in some regulatory jurisdictions
(e.g. EU). Stacked on the CLI drift-fix PR.
New commands:
- `grid customers verify-email <customerId>` — `POST
/customers/{id}/verify-email`
- `grid customers confirm-email <customerId> --code <code>` — `POST
/customers/{id}/verify-email/confirm`
- `grid customers verify-phone <customerId>` — `POST
/customers/{id}/verify-phone`
- `grid customers confirm-phone <customerId> --code <code>` — `POST
/customers/{id}/verify-phone/confirm`
## Test plan
- `cd cli && npm run build` — clean compile.
- `npm test` — includes 4 new boundary tests asserting each command's
method/path/body (34 tests total with the parent branch).
Original PR: #703
Co-authored-by: Jeremy <jeremy@lightspark.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds customer contact-verification commands to the Grid CLI — the email/phone verification flow required in some regulatory jurisdictions (e.g. EU). Stacked on the CLI drift-fix PR.
New commands:
grid customers verify-email <customerId>—POST /customers/{id}/verify-emailgrid customers confirm-email <customerId> --code <code>—POST /customers/{id}/verify-email/confirmgrid customers verify-phone <customerId>—POST /customers/{id}/verify-phonegrid customers confirm-phone <customerId> --code <code>—POST /customers/{id}/verify-phone/confirmTest plan
cd cli && npm run build— clean compile.npm test— includes 4 new boundary tests asserting each command's method/path/body (34 tests total with the parent branch).