Skip to content

Commit ab08151

Browse files
committed
chore: update dependencies
Signed-off-by: Christian Stewart <[email protected]>
1 parent 85b6213 commit ab08151

12 files changed

+1289
-1045
lines changed

controller/config.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controller/config.pb.ts

+38-59
Original file line numberDiff line numberDiff line change
@@ -1,119 +1,98 @@
11
/* eslint-disable */
2-
import Long from 'long'
3-
import * as _m0 from 'protobufjs/minimal'
2+
import Long from "long";
3+
import _m0 from "protobufjs/minimal.js";
44

5-
export const protobufPackage = 'entitygraph.controller'
5+
export const protobufPackage = "entitygraph.controller";
66

77
/** Config is the entity graph aggregation controller config. */
8-
export interface Config {}
8+
export interface Config {
9+
}
910

1011
function createBaseConfig(): Config {
11-
return {}
12+
return {};
1213
}
1314

1415
export const Config = {
1516
encode(_: Config, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
16-
return writer
17+
return writer;
1718
},
1819

1920
decode(input: _m0.Reader | Uint8Array, length?: number): Config {
20-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input)
21-
let end = length === undefined ? reader.len : reader.pos + length
22-
const message = createBaseConfig()
21+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
22+
let end = length === undefined ? reader.len : reader.pos + length;
23+
const message = createBaseConfig();
2324
while (reader.pos < end) {
24-
const tag = reader.uint32()
25+
const tag = reader.uint32();
2526
switch (tag >>> 3) {
2627
default:
27-
reader.skipType(tag & 7)
28-
break
28+
reader.skipType(tag & 7);
29+
break;
2930
}
3031
}
31-
return message
32+
return message;
3233
},
3334

3435
// encodeTransform encodes a source of message objects.
3536
// Transform<Config, Uint8Array>
3637
async *encodeTransform(
37-
source: AsyncIterable<Config | Config[]> | Iterable<Config | Config[]>
38+
source: AsyncIterable<Config | Config[]> | Iterable<Config | Config[]>,
3839
): AsyncIterable<Uint8Array> {
3940
for await (const pkt of source) {
4041
if (Array.isArray(pkt)) {
4142
for (const p of pkt) {
42-
yield* [Config.encode(p).finish()]
43+
yield* [Config.encode(p).finish()];
4344
}
4445
} else {
45-
yield* [Config.encode(pkt).finish()]
46+
yield* [Config.encode(pkt).finish()];
4647
}
4748
}
4849
},
4950

5051
// decodeTransform decodes a source of encoded messages.
5152
// Transform<Uint8Array, Config>
5253
async *decodeTransform(
53-
source:
54-
| AsyncIterable<Uint8Array | Uint8Array[]>
55-
| Iterable<Uint8Array | Uint8Array[]>
54+
source: AsyncIterable<Uint8Array | Uint8Array[]> | Iterable<Uint8Array | Uint8Array[]>,
5655
): AsyncIterable<Config> {
5756
for await (const pkt of source) {
5857
if (Array.isArray(pkt)) {
5958
for (const p of pkt) {
60-
yield* [Config.decode(p)]
59+
yield* [Config.decode(p)];
6160
}
6261
} else {
63-
yield* [Config.decode(pkt)]
62+
yield* [Config.decode(pkt)];
6463
}
6564
}
6665
},
6766

6867
fromJSON(_: any): Config {
69-
return {}
68+
return {};
7069
},
7170

7271
toJSON(_: Config): unknown {
73-
const obj: any = {}
74-
return obj
72+
const obj: any = {};
73+
return obj;
7574
},
7675

7776
fromPartial<I extends Exact<DeepPartial<Config>, I>>(_: I): Config {
78-
const message = createBaseConfig()
79-
return message
77+
const message = createBaseConfig();
78+
return message;
8079
},
81-
}
80+
};
8281

83-
type Builtin =
84-
| Date
85-
| Function
86-
| Uint8Array
87-
| string
88-
| number
89-
| boolean
90-
| undefined
82+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
9183

92-
export type DeepPartial<T> = T extends Builtin
93-
? T
94-
: T extends Long
95-
? string | number | Long
96-
: T extends Array<infer U>
97-
? Array<DeepPartial<U>>
98-
: T extends ReadonlyArray<infer U>
99-
? ReadonlyArray<DeepPartial<U>>
100-
: T extends { $case: string }
101-
? { [K in keyof Omit<T, '$case'>]?: DeepPartial<T[K]> } & {
102-
$case: T['$case']
103-
}
104-
: T extends {}
105-
? { [K in keyof T]?: DeepPartial<T[K]> }
106-
: Partial<T>
84+
export type DeepPartial<T> = T extends Builtin ? T
85+
: T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>>
86+
: T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
87+
: T extends { $case: string } ? { [K in keyof Omit<T, "$case">]?: DeepPartial<T[K]> } & { $case: T["$case"] }
88+
: T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }
89+
: Partial<T>;
10790

108-
type KeysOfUnion<T> = T extends T ? keyof T : never
109-
export type Exact<P, I extends P> = P extends Builtin
110-
? P
111-
: P & { [K in keyof P]: Exact<P[K], I[K]> } & Record<
112-
Exclude<keyof I, KeysOfUnion<P>>,
113-
never
114-
>
91+
type KeysOfUnion<T> = T extends T ? keyof T : never;
92+
export type Exact<P, I extends P> = P extends Builtin ? P
93+
: P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never };
11594

11695
if (_m0.util.Long !== Long) {
117-
_m0.util.Long = Long as any
118-
_m0.configure()
96+
_m0.util.Long = Long as any;
97+
_m0.configure();
11998
}

controller/config_vtproto.pb.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

hack/Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
GO_MOD_OUTDATED=bin/go-mod-outdated
2+
3+
export GO111MODULE=on
4+
undefine GOARCH
5+
undefine GOOS
6+
7+
$(GO_MOD_OUTDATED):
8+
go build -v \
9+
-o ./bin/go-mod-outdated \
10+
github.com/psampaz/go-mod-outdated
11+
12+
.PHONY: outdated
13+
outdated: $(GO_MOD_OUTDATED)
14+
go list -mod=mod -u -m -json all | $(GO_MOD_OUTDATED) -update -direct

0 commit comments

Comments
 (0)