Skip to content
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: add support for optimistic transactions #1548

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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