Yuri Volkov

Results 18 issues of Yuri Volkov

#### Environment details `@googlemaps/[email protected]` #### Code example ```ts const res = await client.geocode({ params: { address: 'Hütten 58, Hamburg, Germany', language: 'en', } }); console.log(JSON.stringify(res.data)); ``` This returns following: ```json...

type: bug
triage me

f-⌀-r your despairful solution ._.

Hi! While I've been rewriting my app to TypeScript and I've discovered that `head` type in `TableOptions` in [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/924faff/types/cli-table2/index.d.ts#L34) is `string[]`, while it actually accepts `Cell[]` ([this type](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/cli-table2/index.d.ts#L78)). So, I...

Older ping-based healthcheck had a bunch of problems: * Doesn't work in ipv6-only environment (because of calling `ping`, not `ping6`). * Doesn't work if ICMP is blocked, but TCP is...

I'm getting following error just by calling `papi add -w wss://rococo-trappist-rpc.polkadot.io trappist`: ``` Uknown operationId on { event: 'operationCallDone', operationId: '1', output: '0x080e0000000f000000' } ``` I'm also getting it on...

Right now, I'm getting "Invalid" error without any infromation. I suppose it's [this code](https://github.com/polkadot-api/polkadot-api/blob/78f713ea2ff68165f0dba273634ffa7e8277fb67/packages/client/src/tx/submit-fns.ts#L168), which seems to be doing `TaggedTransactionQueue_validate_transaction` call. If we get the arguments of the call as...

_Creating this as a counterpart of our issue in Parity_ PJS has [these docs](https://polkadot.js.org/docs/polkadot/runtime), which are super useful. Not without it's downsides, but still. Let's create the same for PAPI....

PJS allows providing an array of WS endpoints, and does round-robin on them on disconnects. This allows (almost) seamless switching from temporarily inaccessible endpoints. Would be great to have that...

Binary loader produces a module which default export is `Uint8Array`. If [__copyProps](https://github.com/evanw/esbuild/blob/332727499e62315cff4ecaff9fa8b86336555e46/internal/runtime/runtime.go#L192) is executed on that module, it'll consider that `typeof` of `Uint8Array` is `object` and will start copying it's...