google-api-typings-generator icon indicating copy to clipboard operation
google-api-typings-generator copied to clipboard

Updated and fixed version of TypeScript typings for Google APIs generator

Results 22 google-api-typings-generator issues
Sort by recently updated
recently updated
newest added

Related to https://github.com/Maxim-Mazurok/google-api-typings-generator/issues/206

enhancement
help wanted
investigation

Learning more about [expression syntax](https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions), there is probably an option to minimize some of this duplication, consolidating workflows in favor of conditional logic, but this is duplicated for now. _Originally...

enhancement
investigation

Currently we have ```js process.on('unhandledRejection', reason => { throw reason; }); ``` in order to quit node process with error code on unhandled rejected promises. Which might not be the...

enhancement
investigation

https://github.com/simonecorsi/declarative-markdown

enhancement
help wanted
good first issue
investigation

Seems like gapi is more advanced, and I don't really remember why we stayed on gapi.client... Need to reconsider this one, see also: https://github.com/Maxim-Mazurok/google-api-typings-generator/pull/505

enhancement
investigation

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

This is my initial concept for how we could avoid carpet-banning utility types (#208) using module-based type definitions. This PR is purely meant as a "proof-of-concept"-ish thing, and definitely not...

enhancement
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