Skip to main content

Introduction

BetMakers Provide tagged releases so that you can be in control of your own release cycle,

  • testing of new functionality ( for example new betTypes will you be able to support printing them )
  • compliance - only moving to a new release after approved for your regulatory environment

We will Provide release notes ( and major versions will have migration notes ) provided here

Current Testing Tagged Releases

currently we are testing tagged releases under at the following URL

https://{ basePath }{ assetType }{ fileName }-{ tagName }{ fileExt }

where the following apply

  • basePath: where we are hosting the assets, currently for testing we are using https://nextgen-uat.tbm.sh/terminal/tag/static/
  • assetType: asset type you are after, which currently is just js|css
  • fileName: fileName, which currently would just be main
  • tagName: tagName of the release, for example 0.0.2-rc.2
  • fileExt: fileExt of the file, for example js|css

and example of using a tag release would be

  1. Integrate the CSS with release tag 0.0.2-rc.2:
<head>
...
<link rel="stylesheet" href="https://nextgen-uat.tbm.sh/terminal/tag/static/css/main-0.0.2-rc.2.css">
...
</head>
  1. Integrate the JS bundle with release tag 0.0.2-rc.2:
<body>
...
<script>
window.addEventListener('load', async () => {
window.bm.init({
proxyUrl: 'https://proxy.your-server.com/api', // Your proxy server
getHeaders: function () {
// Asynchronously return any headers required by the proxy server. This is typically used to retrieve the bearer token, which requires a JWT with the provided "iss" claim.
},
metadata: {
/* metadata you want to know at betPlacement about this terminal */
tellerId: 'xxxx',
windowId: 'yyyy',
reportGrouping: 'rrrr',
},
timezone: 'America/New_York',
unitType: 'imperial', // will default to metric
});

})
</script>
<script async src="https://nextgen-uat.tbm.sh/terminal/tag/static/js/main-0.0.2-rc.2.js"></script>
</body>