feat: Support for start time in read changes request - #92
Conversation
Codecov Report❌ Patch coverage is ❌ Your project status has failed because the head coverage (32.70%) is below the target coverage (80.00%). You can increase the head coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## main #92 +/- ##
==========================================
- Coverage 33.00% 32.70% -0.31%
==========================================
Files 128 129 +1
Lines 6387 6467 +80
Branches 840 851 +11
==========================================
+ Hits 2108 2115 +7
- Misses 4099 4171 +72
- Partials 180 181 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| this.ContextualTuples.SequenceEqual(input.ContextualTuples) | ||
| ) && | ||
| ( | ||
| this.Context == input.Context || |
Check warning
Code scanning / CodeQL
Reference equality test on System.Object
| /// <param name="input">Object to be compared</param> | ||
| /// <returns>Boolean</returns> | ||
| public override bool Equals(object input) { | ||
| return this.Equals(input as ForbiddenResponse); |
Check warning
Code scanning / CodeQL
Equals should not apply "as"
| ( | ||
| this.Code == input.Code || | ||
| this.Code.Equals(input.Code) | ||
| ) && | ||
| ( | ||
| this.Message == input.Message || | ||
| (this.Message != null && | ||
| this.Message.Equals(input.Message)) | ||
| ) | ||
| && (this.AdditionalProperties.Count == input.AdditionalProperties.Count && !this.AdditionalProperties.Except(input.AdditionalProperties).Any()); |
Check notice
Code scanning / CodeQL
Complex condition
…' of https://github.com/ryanpq/dotnet-sdk into chore-update-dotNET-sdk-with-changes-from-sdk-generator
Description
Pulls updates from sdk-generator after latest release and adds support for start time in read changes
References
openfga/sdk-generator#455
openfga/sdk-generator#420
openfga/sdk-generator#398
Review Checklist
main