-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: missing field in openapi #715
Conversation
Warning Rate limit exceeded@gfyrag has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 2 minutes and 39 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ⛔ Files ignored due to path filters (4)
📒 Files selected for processing (4)
WalkthroughThe PR introduces a new Changes
Possibly related PRs
Suggested reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #715 +/- ##
==========================================
- Coverage 81.97% 81.95% -0.03%
==========================================
Files 135 135
Lines 7291 7291
==========================================
- Hits 5977 5975 -2
- Misses 1008 1010 +2
Partials 306 306 ☔ View full report in Codecov by Sentry. |
2228696
to
9906c1a
Compare
9906c1a
to
1edd373
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
pkg/client/docs/models/components/v2ledger.md (1)
13-13
: Fix type definition for the ID field.There's a typo in the type definition for the
ID
field - it's shown as**string*
with an extra asterisk. This should be corrected to*string*
to match the implementation in the Go code.-| `ID` | **string* | :heavy_minus_sign: | N/A | | +| `ID` | *string* | :heavy_minus_sign: | N/A | |
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (4)
openapi.yaml
is excluded by!**/*.yaml
openapi/v2.yaml
is excluded by!**/*.yaml
pkg/client/.speakeasy/gen.lock
is excluded by!**/*.lock
,!**/*.lock
pkg/client/.speakeasy/gen.yaml
is excluded by!**/*.yaml
📒 Files selected for processing (4)
docs/api/README.md
(6 hunks)pkg/client/docs/models/components/v2ledger.md
(1 hunks)pkg/client/formance.go
(1 hunks)pkg/client/models/components/v2ledger.go
(2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
- pkg/client/formance.go
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: Tests
🔇 Additional comments (2)
pkg/client/models/components/v2ledger.go (1)
15-16
: Implementation looks good.The addition of the new
Features
andID
fields to the struct, along with their corresponding getter methods follows the established pattern in the codebase. The nil checks in the getter methods provide proper defensive programming.Also applies to: 58-70
docs/api/README.md (1)
161-165
: Documentation updates are consistent.The
features
andid
fields have been properly added to all relevant sections of the API documentation, maintaining consistency with the V2Ledger model changes. The feature object properties are documented as examples with "property1" and "property2" strings, which is appropriate for documentation purposes.Also applies to: 217-222, 263-266, 4323-4342
1edd373
to
a08d937
Compare
a08d937
to
4164dea
Compare
No description provided.