Jon Ursenbach

Results 56 issues of Jon Ursenbach

With the following code that sends multiple files to https://httpbin.org/anything only one of them is returned in the payload. ```js const form = new FormData(); const files = [ new...

Though the JSON Schema that `@apidevtools/openapi-schemas` loads in requires that schemas match `^[a-zA-Z0-9\\.\\-_]+$` ([code here](https://github.com/OAI/OpenAPI-Specification/blob/main/schemas/v3.0/schema.json#L286)) if a definition, as below, has spaces in its name it'll be ignored during validation:...

Feeding this immediately circular API definition into the library will cause a "Maximum call stack size exceeded" exception within `ref.js`: ```yaml openapi: 3.0.0 info: version: 0.0.1 title: Circular mishandling servers:...

We have support for uploading pictures in our [PHP SDK](https://github.com/vimeo/vimeo.php/blob/master/src/Vimeo/Vimeo.php#L391) and would be nice to have that functionality here too. Upload documentation: https://developer.vimeo.com/api/upload/thumbnails

help wanted

Using the library can, quite frankly, be a bit of a mess sometimes if you're doing sequential API calls. We should support promises.

help wanted

We have support for uploading pictures in our [PHP SDK](https://github.com/vimeo/vimeo.php/blob/master/src/Vimeo/Vimeo.php#L452) and would be nice to have that functionality here too. Text track documentation: https://developer.vimeo.com/api/upload/texttracks

help wanted

``` npx api@beta install @readme-nyc/v1.0#17681m2il63r8rns ```

bug
area:sdk

The SDK and dynamic systems right now don't support Swagger 2.0 at all at the moment. I don't think it'll be too difficult to add support, we'll just need to...

enhancement
area:sdk

```js const sdk = require('api')('@developers/v2.0#README_REGISTRY_UUID'); sdk.auth('MY_API_KEY'); (async () => { await sdk.get('/docs/MY_DOC_SLUG') .then(console.log) .catch(async err => { const res = await err.json() console.log(res) }) })() ``` The simple HTTP method...

bug
area:sdk
area:cli

https://github.com/readmeio/api/blob/main/packages/api/src/fetcher.ts#L49-L54 When you pass in a URL that 404s we just tell you that the URL was not found which isn't supper helpful if the URL you're supplying is doing...

enhancement
area:sdk
area:cli