eventbrite-sdk-javascript icon indicating copy to clipboard operation
eventbrite-sdk-javascript copied to clipboard

The official JavaScript SDK for the Eventbrite v3 API

Results 27 eventbrite-sdk-javascript issues
Sort by recently updated
recently updated
newest added

## Current Behavior This interface definition ```ts export interface PaginatedResponse { pagination?: Pagination; [key: string]: T[] | Pagination; } ``` causes ``` Property 'pagination' of type 'Pagination | undefined' is...

The method described in the Docs to use this sdk in Node DOES NOT WORK, at least not in Node 10.15 with npm 6.6: ``` const eventbrite = require('eventbrite'); //...

When I create my app, I got a client secret, private API key and public API key. When I am trying to use the SDK, it looks like it requires...

## Description ## How Has This Been Tested? ## Screenshots (if appropriate): ## Checklist: * [ ] I have read the [**CONTRIBUTING** document](https://github.com/eventbrite/eventbrite-sdk-javascript/blob/master/CONTRIBUTING.md). * [ ] I have updated the...

## Description I have added the stock issue templates that GH provides. This should be a good starting point for us to clean up/revise to our liking. fixes #34 ##...

The API supports [batched requests](https://www.eventbrite.com/developer/v3/api_overview/batching/) so the SDK should support it as well to make things convenient. We'll flesh out details of the JS API here. Should be done after...

enhancement

## Current Behavior In case of success, request function simply returns response body in JSON format. ## Expected Behaviour It should return response body and response headers. So that I...

Currently, we are not tracking our test coverage. Do we want to have test coverage tracked? What service should we use to track? Should we have any restrictions in place?

On `"typescript": "^3.0.3"`, when importing the library as `import eventbrite from 'eventbrite';`, then running `tsc`, an error is thrown: ``` node_modules/eventbrite/lib/types.d.ts:6:42 - error TS2304: Cannot find name 'RequestInit'. 6 request:...