diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d3ba36adc..0aa4928fc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,9 @@ jobs: - name: Check all protobuf code was committed shell: bash run: | - [ $(git status --short --ignore-submodules|wc -l) -eq 0 ] + res=$(git status --short --ignore-submodules) + echo -n "'$res'" # For debug purposes + [ $(echo -n "$res"|wc -l) -eq 0 ] - name: build run: npm run build diff --git a/package-lock.json b/package-lock.json index 6911a67478..372f232486 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13486,9 +13486,9 @@ } }, "node_modules/prettier": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", - "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true, "bin": { "prettier": "bin-prettier.js" @@ -28330,9 +28330,9 @@ "dev": true }, "prettier": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", - "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true }, "prettier-linter-helpers": { diff --git a/src/proto/waku/v2/light_push.ts b/src/proto/waku/v2/light_push.ts index dc545a0167..59a44e7fe2 100644 --- a/src/proto/waku/v2/light_push.ts +++ b/src/proto/waku/v2/light_push.ts @@ -279,9 +279,10 @@ export type DeepPartial = T extends Builtin type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P - : P & - { [K in keyof P]: Exact } & - Record>, never>; + : P & { [K in keyof P]: Exact } & Record< + Exclude>, + never + >; if (_m0.util.Long !== Long) { _m0.util.Long = Long as any; diff --git a/src/proto/waku/v2/message.ts b/src/proto/waku/v2/message.ts index c6d6f684b2..361448ee7d 100644 --- a/src/proto/waku/v2/message.ts +++ b/src/proto/waku/v2/message.ts @@ -171,9 +171,10 @@ export type DeepPartial = T extends Builtin type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P - : P & - { [K in keyof P]: Exact } & - Record>, never>; + : P & { [K in keyof P]: Exact } & Record< + Exclude>, + never + >; if (_m0.util.Long !== Long) { _m0.util.Long = Long as any; diff --git a/src/proto/waku/v2/store.ts b/src/proto/waku/v2/store.ts index b501f02a03..71e513e611 100644 --- a/src/proto/waku/v2/store.ts +++ b/src/proto/waku/v2/store.ts @@ -710,9 +710,10 @@ export type DeepPartial = T extends Builtin type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P - : P & - { [K in keyof P]: Exact } & - Record>, never>; + : P & { [K in keyof P]: Exact } & Record< + Exclude>, + never + >; function longToNumber(long: Long): number { if (long.gt(Number.MAX_SAFE_INTEGER)) {