This is a client library generated by OpenAPI Generator for interacting with the Bitrise API. It provides a convenient way to access Bitrise API endpoints from your application.
npm install @novr/bitrise-api
The client can be configured by providing an instance of Configuration during initialization:
import { Configuration, BitriseApiClient } from '@novr/bitrise-api'
const config = new Configuration({
basePath: 'https://api.bitrise.io/v0.1', // API base URL
apiKey: 'your-api-key', // API key for authentication
// Add any other configuration options as needed
})
import { BuildsApi } from '@novr/bitrise-api'
// Making API Requests
try {
const buildsApi = new BuildsApi(config)
const response = await buildsApi.buildListAll()
console.log(response.data)
} catch (error) {
console.error('Error buildListAll API request:', error)
}
You can find usage example and more in-depth documentation in the example directory.
This project is licensed under the MIT License - see the LICENSE file for details.