Justin Beckwith
Justin Beckwith
Fixes https://github.com/discord/discord-api-docs/issues/6686
Looking at this ol favorite: ```ts const sm = new SecretManagerServiceClient(); const [secrets] = await sm.listSecrets({ parent: 'projects/el-gato', }); ``` Looking at the `listSecrets` method, I see it takes an...
We use `jsdoc` to generate docs for the project. When you generate docs, then run `npm test`, you get a wild stack trace. $ npm run docs $ npm test...
Right now we have a lot of `common` layers: - https://github.com/googleapis/nodejs-common/ - https://github.com/googleapis/nodejs-common-grpc/ - https://github.com/googleapis/gax-nodejs/ I suspect most of what's happening in nodejs-common-grpc could just be done here. The only...
The samples in the README show writing TypeScript code inside of a string. I would very much prefer to set up a fixtures directory, create an app folder in that,...
In addition to testing the TypeScript types, I also like to actually run my little sample app to make sure the module loads and such at runtime. It would be...
I am trying to use dependabot on our project which uses pnpm. For most PRs, everything works great. Specifically with dependabot PRs though ... we get the error referenced below....
Greetings folks, and thanks for the lovely library! I am trying to update an older codebase that was using this module, and running into issues with the `WritableStream` interface. The...