Skip to content

Commit 28d61d3

Browse files
authored
fix(deps): Update dependency @cloudquery/plugin-pb-javascript to ^0.0.24 (#196)
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.22` -> `^0.0.24`](https://renovatebot.com/diffs/npm/@cloudquery%2fplugin-pb-javascript/0.0.22/0.0.24) | --- ### Release Notes <details> <summary>cloudquery/plugin-pb-javascript (@&#8203;cloudquery/plugin-pb-javascript)</summary> ### [`v0.0.24`](https://togithub.com/cloudquery/plugin-pb-javascript/blob/HEAD/CHANGELOG.md#0024-2024-07-30) [Compare Source](https://togithub.com/cloudquery/plugin-pb-javascript/compare/v0.0.23...v0.0.24) ##### Bug Fixes - Generate JavaScript Code from `plugin-pb` ([#&#8203;68](https://togithub.com/cloudquery/plugin-pb-javascript/issues/68)) ([fa30808](https://togithub.com/cloudquery/plugin-pb-javascript/commit/fa30808735c8e4c4713fe807f1e6c53a4d5905ab)) ### [`v0.0.23`](https://togithub.com/cloudquery/plugin-pb-javascript/blob/HEAD/CHANGELOG.md#0023-2024-07-30) [Compare Source](https://togithub.com/cloudquery/plugin-pb-javascript/compare/v0.0.22...v0.0.23) ##### Bug Fixes - Generate JavaScript Code from `plugin-pb` ([#&#8203;66](https://togithub.com/cloudquery/plugin-pb-javascript/issues/66)) ([e6c1f0c](https://togithub.com/cloudquery/plugin-pb-javascript/commit/e6c1f0c85d595a24d1e1da0ac7c72bd2a914bb1a)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
1 parent 41f9e9c commit 28d61d3

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-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.22",
92+
"@cloudquery/plugin-pb-javascript": "^0.0.24",
9393
"@grpc/grpc-js": "^1.9.0",
9494
"@types/luxon": "^3.3.1",
9595
"ajv": "^8.12.0",

src/grpc/plugin.ts

+12
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,18 @@ export class PluginServer extends pluginV3.cloudquery.plugin.v3.UnimplementedPlu
169169
throw new Error('Method not implemented.');
170170
}
171171

172+
TransformSchema(
173+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
174+
call: grpc.ServerUnaryCall<
175+
pluginV3.cloudquery.plugin.v3.TransformSchema.Request,
176+
pluginV3.cloudquery.plugin.v3.TransformSchema.Response
177+
>,
178+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
179+
callback: grpc.sendUnaryData<pluginV3.cloudquery.plugin.v3.TransformSchema.Response>,
180+
): void {
181+
throw new Error('Method not implemented.');
182+
}
183+
172184
TestConnection(
173185
call: grpc.ServerUnaryCall<
174186
pluginV3.cloudquery.plugin.v3.TestConnection.Request,

0 commit comments

Comments
 (0)