Skip to content

Commit

Permalink
Update [vald sha: 9192f77]
Browse files Browse the repository at this point in the history
  • Loading branch information
vdaas-ci committed May 19, 2021
1 parent 9192f77 commit 2da6f1a
Show file tree
Hide file tree
Showing 8 changed files with 198 additions and 28 deletions.
2 changes: 1 addition & 1 deletion VALD_CLIENT_NODE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.4
1.1.0
2 changes: 1 addition & 1 deletion VALD_SHA
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f20423fe76ebc9c729bdcc9cb845674f3c368949
9192f77f20335c130a18b0fb746a4b696969ad52
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import v1_payload = require("./src/vald/v1/payload");
import v1_gateway_vald = require("./src/vald/v1/gateway/vald");
import v1_agent_core = require("./src/vald/v1/agent/core");
import v1_vald = require("./src/vald/v1/vald");
import v1_payload = require("./src/vald/v1/payload");
import v1_agent_core = require("./src/vald/v1/agent/core");
declare const _default: {
v1_payload: typeof v1_payload,
v1_gateway_vald: typeof v1_gateway_vald,
v1_agent_core: typeof v1_agent_core,
v1_vald: typeof v1_vald,
v1_payload: typeof v1_payload,
v1_agent_core: typeof v1_agent_core,
};
export = _default;
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports.v1_payload = require("./src/vald/v1/payload");
module.exports.v1_gateway_vald = require("./src/vald/v1/gateway/vald");
module.exports.v1_agent_core = require("./src/vald/v1/agent/core");
module.exports.v1_vald = require("./src/vald/v1/vald");
module.exports.v1_payload = require("./src/vald/v1/payload");
module.exports.v1_agent_core = require("./src/vald/v1/agent/core");
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vald-client-node",
"version": "1.0.4",
"version": "1.1.0",
"description": "A gRPC client library for Vald",
"main": "index.js",
"types": "index.d.ts",
Expand All @@ -26,6 +26,6 @@
"homepage": "https://github.com/vdaas/vald-client-node",
"dependencies": {
"@types/google-protobuf": "^3.7.3",
"grpc": ">=1.24.4"
"grpc": "^1.24.10"
}
}
20 changes: 20 additions & 0 deletions src/vald/v1/payload/payload_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,9 @@ export namespace Insert {
getFilters(): Filter.Config | undefined;
setFilters(value?: Filter.Config): void;

getTimestamp(): number;
setTimestamp(value: number): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Config.AsObject;
static toObject(includeInstance: boolean, msg: Config): Config.AsObject;
Expand All @@ -513,6 +516,7 @@ export namespace Insert {
export type AsObject = {
skipStrictExistCheck: boolean,
filters?: Filter.Config.AsObject,
timestamp: number,
}
}
}
Expand Down Expand Up @@ -647,6 +651,9 @@ export namespace Update {
getFilters(): Filter.Config | undefined;
setFilters(value?: Filter.Config): void;

getTimestamp(): number;
setTimestamp(value: number): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Config.AsObject;
static toObject(includeInstance: boolean, msg: Config): Config.AsObject;
Expand All @@ -661,6 +668,7 @@ export namespace Update {
export type AsObject = {
skipStrictExistCheck: boolean,
filters?: Filter.Config.AsObject,
timestamp: number,
}
}
}
Expand Down Expand Up @@ -795,6 +803,9 @@ export namespace Upsert {
getFilters(): Filter.Config | undefined;
setFilters(value?: Filter.Config): void;

getTimestamp(): number;
setTimestamp(value: number): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Config.AsObject;
static toObject(includeInstance: boolean, msg: Config): Config.AsObject;
Expand All @@ -809,6 +820,7 @@ export namespace Upsert {
export type AsObject = {
skipStrictExistCheck: boolean,
filters?: Filter.Config.AsObject,
timestamp: number,
}
}
}
Expand Down Expand Up @@ -882,6 +894,9 @@ export namespace Remove {
getSkipStrictExistCheck(): boolean;
setSkipStrictExistCheck(value: boolean): void;

getTimestamp(): number;
setTimestamp(value: number): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Config.AsObject;
static toObject(includeInstance: boolean, msg: Config): Config.AsObject;
Expand All @@ -895,6 +910,7 @@ export namespace Remove {
export namespace Config {
export type AsObject = {
skipStrictExistCheck: boolean,
timestamp: number,
}
}
}
Expand Down Expand Up @@ -2027,6 +2043,9 @@ export namespace Info {
getIndexing(): boolean;
setIndexing(value: boolean): void;

getSaving(): boolean;
setSaving(value: boolean): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Count.AsObject;
static toObject(includeInstance: boolean, msg: Count): Count.AsObject;
Expand All @@ -2042,6 +2061,7 @@ export namespace Info {
stored: number,
uncommitted: number,
indexing: boolean,
saving: boolean,
}
}

Expand Down
Loading

0 comments on commit 2da6f1a

Please sign in to comment.