We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a5fba commit 1383c4bCopy full SHA for 1383c4b
Sources/PowerSync/Protocol/db/CrudEntry.swift
@@ -1,12 +1,12 @@
1
/// Represents the type of CRUD update operation that can be performed on a row.
2
public enum UpdateType: String, Codable {
3
- /// Insert or replace a row. All non-null columns are included in the data.
+ /// A row has been inserted or replaced
4
case put = "PUT"
5
6
- /// Update a row if it exists. All updated columns are included in the data.
+ /// A row has been updated
7
case patch = "PATCH"
8
9
- /// Delete a row if it exists.
+ /// A row has been deleted
10
case delete = "DELETE"
11
12
/// Errors related to invalid `UpdateType` states.
0 commit comments