Maxim Mazurok

Results 88 issues of Maxim Mazurok

We need to find a way to publish new APIs to DT and unpublish obsolete APIs. https://github.com/Maxim-Mazurok/DefinitelyTyped-tools/blob/master/packages/definitions-parser/allowedPackageJsonDependencies.txt also needs to be checked and updated when adding/removing API. For starters, I...

enhancement
help wanted

It shares a lot of common with src/app.ts

enhancement
help wanted
good first issue

Instead of this: ```js await gapi.client.analyticsreporting.reports.batchGet({ resource: { reportRequests: [/*...*/], }, }); ``` we want to use this: ```js await gapi.client.analyticsreporting.reports.batchGet({ reportRequests: [/*...*/], }); ``` First, we need to investigate...

enhancement
help wanted
investigation

Our `formatPropertyName()` function doesn't handle `?` in property name, which may result in ```ts interface AddChartResponse { /** The newly added chart. */ embedded?Chart?: EmbeddedChart; } ``` _Originally posted by...

enhancement
help wanted
good first issue

All deployment happens in [auto-generate](https://github.com/Maxim-Mazurok/google-api-typings-generator/blob/master/.github/workflows/auto-generate.yml): we generate types, we lint them and in case if everything went well - we deploy them using [peaceiris/actions-gh-pages@v2](https://github.com/peaceiris/actions-gh-pages). We should upgrade to `v3` and...

enhancement

Here's [an idea](https://discordapp.com/channels/508357248330760243/508357248330760249/715947578356662334) that we might benefit from using modules instead of namespaces. Let's give it a try and see how it will workout.

enhancement
investigation

Getting this error when trying to use programmatically with node v16.3.0 and npm 7.15.1

I have the following markdown header: `## Step 4: Activate Data Filter` It gets `id="step-4%3A-activate-data-filter"` In VS Code recommendation doesn't include colon: ![image](https://github.com/valeriangalliat/markdown-it-anchor/assets/7756211/32762d9d-2080-4bb5-a8f4-61d5f6078974) But even if I add a color...

Optimizes `/(\]|a|[12])/` into `/([12]a])/` which isn't correct

It would be great to add CLI option to output to file instead of stdout. Something similar to [-O in wget](http://www.gnu.org/software/wget/manual/html_node/Download-Options.html#Download-Options) to run it like `prettyjson package.json -O pretty-package.yaml` instead...