fix: updating stainless.yml for latest changes#311
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryThis PR updates
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| .stainless/stainless.yml | Adds five new top-level resources (crypto, beneficial_owners, documents, verifications, discoveries) to the Stainless SDK config, and fixes the openapi key from transformations to transforms to match the schema. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
Resources["resources (stainless.yml)"]
Resources --> Crypto["crypto\nPOST /crypto/estimate-withdrawal-fee"]
Resources --> BeneficialOwners["beneficial_owners\nCREATE · LIST · RETRIEVE · UPDATE"]
Resources --> Documents["documents\nUPLOAD · LIST · RETRIEVE · REPLACE · DELETE"]
Resources --> Verifications["verifications\nSUBMIT · LIST · RETRIEVE"]
Resources --> Discoveries["discoveries\nLIST (paginated: false)"]
OpenAPI["openapi section"]
OldKey["transformations ❌ (was silently ignored)"]
NewKey["transforms ✅ (schema-correct key)"]
OldKey -->|renamed to| NewKey
NewKey --> Transforms["Remove transforms applied\n(discriminator cleanup,\nallOf $ref stripping)"]
Prompt To Fix All With AI
This is a comment left during a code review.
Path: .stainless/stainless.yml
Line: 320
Comment:
**Trailing whitespace after `list:`**
There is a trailing space after `list:` on this line. While YAML parsers are tolerant of this, it can trip up stricter linters or schema validators.
```suggestion
list:
```
How can I resolve this? If you propose a fix, please make it concise.Reviews (1): Last reviewed commit: "fix: updating stainless.yml for latest c..." | Re-trigger Greptile
| retrieve: get /verifications/{verificationId} | ||
| discoveries: | ||
| methods: | ||
| list: |
Contributor
There was a problem hiding this comment.
Trailing whitespace after
list:
There is a trailing space after list: on this line. While YAML parsers are tolerant of this, it can trip up stricter linters or schema validators.
Suggested change
| list: | |
| list: |
Prompt To Fix With AI
This is a comment left during a code review.
Path: .stainless/stainless.yml
Line: 320
Comment:
**Trailing whitespace after `list:`**
There is a trailing space after `list:` on this line. While YAML parsers are tolerant of this, it can trip up stricter linters or schema validators.
```suggestion
list:
```
How can I resolve this? If you propose a fix, please make it concise.
wuvictor-95
approved these changes
Apr 1, 2026
Contributor
Author
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.

No description provided.