-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat: Sync skip delete #696
Conversation
packages/at_commons/pubspec.yaml
Outdated
@@ -1,6 +1,6 @@ | |||
name: at_commons | |||
description: A library of Dart and Flutter utility classes that are used across other components of the atPlatform. | |||
version: 5.0.1 | |||
version: 5.0.2 |
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.
should be 5.1.0 as this is new feature
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.
Done
packages/at_commons/CHANGELOG.md
Outdated
@@ -1,3 +1,5 @@ | |||
## 5.1.0 | |||
- feat: Introduce skipDeletes for sync:from verb |
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.
skipDeletesUntil
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.
@murali-shris skipDeleteUntil
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.
Done
@@ -9,6 +9,8 @@ class SyncVerbBuilder implements VerbBuilder { | |||
|
|||
bool isPaginated = false; | |||
|
|||
int? skipDeletesUntil; |
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.
Please take this opportunity to add ///
documentation for all of the parameters (commitId, regex, limit, isPaginated, skipDeletesUntil)
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.
added the dart docs
packages/at_commons/CHANGELOG.md
Outdated
@@ -1,3 +1,5 @@ | |||
## 5.1.0 | |||
- feat: Introduce skipDeletes for sync:from verb |
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.
@murali-shris skipDeleteUntil
- What I did
- How I did it
- How to verify it