Skip to content

Commit 1cc44a7

Browse files
authored
fix(deps): Update dependency @cloudquery/plugin-pb-javascript to ^0.0.22 (#194)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@cloudquery/plugin-pb-javascript](https://togithub.com/cloudquery/plugin-pb-javascript) | dependencies | patch | [`^0.0.21` -> `^0.0.22`](https://renovatebot.com/diffs/npm/@cloudquery%2fplugin-pb-javascript/0.0.21/0.0.22) | --- ### Release Notes <details> <summary>cloudquery/plugin-pb-javascript (@&#8203;cloudquery/plugin-pb-javascript)</summary> ### [`v0.0.22`](https://togithub.com/cloudquery/plugin-pb-javascript/blob/HEAD/CHANGELOG.md#0022-2024-07-17) [Compare Source](https://togithub.com/cloudquery/plugin-pb-javascript/compare/v0.0.21...v0.0.22) ##### Bug Fixes - Generate JavaScript Code from `plugin-pb` ([#&#8203;64](https://togithub.com/cloudquery/plugin-pb-javascript/issues/64)) ([b5df6c9](https://togithub.com/cloudquery/plugin-pb-javascript/commit/b5df6c929f20dd4eb05d8def0175d57b65943840)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
1 parent 84708be commit 1cc44a7

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
},
9090
"dependencies": {
9191
"@apache-arrow/esnext-esm": "^12.0.1",
92-
"@cloudquery/plugin-pb-javascript": "^0.0.21",
92+
"@cloudquery/plugin-pb-javascript": "^0.0.22",
9393
"@grpc/grpc-js": "^1.9.0",
9494
"@types/luxon": "^3.3.1",
9595
"ajv": "^8.12.0",

src/grpc/plugin.ts

+10
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,16 @@ export class PluginServer extends pluginV3.cloudquery.plugin.v3.UnimplementedPlu
159159
});
160160
}
161161

162+
Transform(
163+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
164+
call: grpc.ServerDuplexStream<
165+
pluginV3.cloudquery.plugin.v3.Transform.Request,
166+
pluginV3.cloudquery.plugin.v3.Transform.Response
167+
>,
168+
): void {
169+
throw new Error('Method not implemented.');
170+
}
171+
162172
TestConnection(
163173
call: grpc.ServerUnaryCall<
164174
pluginV3.cloudquery.plugin.v3.TestConnection.Request,

0 commit comments

Comments
 (0)