Skip to content

Commit

Permalink
Update build
Browse files Browse the repository at this point in the history
  • Loading branch information
gpahal committed Apr 10, 2018
1 parent 262ccf1 commit 18fa97c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { DgraphClientStub } from "./clientStub";
import { Txn } from "./txn";
import * as types from "./types";
export declare class DgraphClient {
private clients;
private linRead;
private readonly clients;
private readonly linRead;
private debugMode;
constructor(...clients: DgraphClientStub[]);
alter(op: messages.Operation, metadata?: grpc.Metadata | null, options?: grpc.CallOptions | null): Promise<types.Payload>;
Expand Down
2 changes: 1 addition & 1 deletion lib/clientStub.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as grpc from "grpc";
import * as messages from "../generated/api_pb";
export declare class DgraphClientStub {
private stub;
private readonly stub;
private promisified;
constructor(addr?: string | null, credentials?: grpc.ChannelCredentials | null, options?: object | null);
alter(op: messages.Operation, metadata?: grpc.Metadata | null, options?: grpc.CallOptions | null): Promise<messages.Payload>;
Expand Down
4 changes: 2 additions & 2 deletions lib/txn.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import * as messages from "../generated/api_pb";
import { DgraphClient } from "./client";
import * as types from "./types";
export declare class Txn {
private dc;
private ctx;
private readonly dc;
private readonly ctx;
private finished;
private mutated;
private sequencingProp;
Expand Down
2 changes: 1 addition & 1 deletion lib/txn.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var Txn = (function () {
req.setStartTs(this.ctx.getStartTs());
linRead = this.ctx.getLinRead();
linRead.setSequencing(this.sequencingProp);
req.setLinRead(this.ctx.getLinRead());
req.setLinRead(linRead);
if (vars != null) {
varsMap_1 = req.getVarsMap();
Object.keys(vars).forEach(function (key) {
Expand Down

0 comments on commit 18fa97c

Please sign in to comment.