Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion .stainless/stainless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,32 @@ resources:
$shared:
models:
bulk_customer_import_error_entry: "#/components/schemas/BulkCustomerImportErrorEntry"
crypto:
methods:
estimate_withdrawal_fee: post /crypto/estimate-withdrawal-fee
beneficial_owners:
methods:
create: post /beneficial-owners
list: get /beneficial-owners
retrieve: get /beneficial-owners/{beneficialOwnerId}
update: patch /beneficial-owners/{beneficialOwnerId}
documents:
methods:
upload: post /documents
list: get /documents
retrieve: get /documents/{documentId}
replace: put /documents/{documentId}
delete: delete /documents/{documentId}
verifications:
methods:
submit: post /verifications
list: get /verifications
retrieve: get /verifications/{verificationId}
discoveries:
methods:
list:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 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.

endpoint: get /discoveries
paginated: false

settings:
# All generated integration tests that hit the prism mock http server are marked
Expand Down Expand Up @@ -401,7 +427,7 @@ pagination:

openapi:
code_samples: mintlify
transformations:
transforms:
# # ── customerType: IndividualCustomerFields / BusinessCustomerFields ──
# - command: remove
# reason: >-
Expand Down
Loading