Skip to content

Commit

Permalink
build(deps): Bump bufbuild/buf-setup-action from 1.26.1 to 1.27.0 (#190)
Browse files Browse the repository at this point in the history
* chore(deps): Bump bufbuild/buf-setup-action from 1.26.1 to 1.27.0

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.26.1 to 1.27.0.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.26.1...v1.27.0)

---
updated-dependencies:
- dependency-name: bufbuild/buf-setup-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* package lock

* npm run build

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and ankurdotb committed Oct 10, 2023
1 parent c93f37a commit 6f7b85f
Show file tree
Hide file tree
Showing 88 changed files with 1,190 additions and 1,180 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: "Install buf CLI"
uses: bufbuild/buf-setup-action@v1.26.1
uses: bufbuild/buf-setup-action@v1.27.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
queries: security-and-quality

- name: "Install buf CLI"
uses: bufbuild/buf-setup-action@v1.26.1
uses: bufbuild/buf-setup-action@v1.27.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ref: ${{ env.BASE_BRANCH }}

- name: "Install buf CLI"
uses: bufbuild/buf-setup-action@v1.26.1
uses: bufbuild/buf-setup-action@v1.27.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: amannn/action-semantic-pull-request@v5.2.0
- uses: amannn/action-semantic-pull-request@v5.3.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }}

- name: "Install buf CLI"
uses: bufbuild/buf-setup-action@v1.26.1
uses: bufbuild/buf-setup-action@v1.27.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
5 changes: 4 additions & 1 deletion cheqd/did/v1/common.js

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

2 changes: 1 addition & 1 deletion cheqd/did/v1/common.js.map

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

7 changes: 5 additions & 2 deletions cheqd/did/v1/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ export const KeyValuePair = {
},

fromJSON(object: any): KeyValuePair {
return { key: isSet(object.key) ? String(object.key) : "", value: isSet(object.value) ? String(object.value) : "" };
return {
key: isSet(object.key) ? globalThis.String(object.key) : "",
value: isSet(object.value) ? globalThis.String(object.value) : "",
};
},

toJSON(message: KeyValuePair): unknown {
Expand Down Expand Up @@ -81,7 +84,7 @@ export const KeyValuePair = {
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;

type DeepPartial<T> = T extends Builtin ? T
: T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>>
: T extends Long ? string | number | Long : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>>
: T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
: T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }
: Partial<T>;
Expand Down
54 changes: 33 additions & 21 deletions cheqd/did/v1/did.js

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

Loading

0 comments on commit 6f7b85f

Please sign in to comment.