Skip to content

Commit

Permalink
feat: add support for optimistic transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-sebastian committed Jun 29, 2021
1 parent 89e5f6a commit cb1a009
Show file tree
Hide file tree
Showing 10 changed files with 1,789 additions and 1,422 deletions.
8 changes: 7 additions & 1 deletion dev/protos/firestore_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5727,6 +5727,9 @@ export namespace google {
/** Write delete */
"delete"?: (string|null);

/** Write verify */
verify?: (string|null);

/** Write transform */
transform?: (google.firestore.v1.IDocumentTransform|null);

Expand Down Expand Up @@ -5755,6 +5758,9 @@ export namespace google {
/** Write delete. */
public delete?: (string|null);

/** Write verify. */
public verify?: (string|null);

/** Write transform. */
public transform?: (google.firestore.v1.IDocumentTransform|null);

Expand All @@ -5768,7 +5774,7 @@ export namespace google {
public currentDocument?: (google.firestore.v1.IPrecondition|null);

/** Write operation. */
public operation?: ("update"|"delete"|"transform");
public operation?: ("update"|"delete"|"verify"|"transform");

/**
* Creates a Write message from a plain object. Also converts values to their respective internal types.
Expand Down
Loading

0 comments on commit cb1a009

Please sign in to comment.