re-generated files for 3.7.2-dev.20

This commit is contained in:
proddy
2025-02-16 11:02:41 +01:00
parent 1e4b487299
commit c4855cc5f2
11 changed files with 676 additions and 759 deletions

View File

@@ -5052,12 +5052,18 @@ router
router
.get(GH_ENDPOINT_ROOT + '/tags/latest', () => {
const data = { name: 'v' + LATEST_DEV_VERSION, published_at: new Date().toISOString() };
const data = {
name: 'v' + LATEST_DEV_VERSION,
published_at: new Date().toISOString()
};
console.log('returning latest development version: ', data);
return data;
})
.get(GH_ENDPOINT_ROOT + '/latest', () => {
const data = { name: 'v' + LATEST_STABLE_VERSION, published_at: '2025-02-07T20:09:46Z' };
const data = {
name: 'v' + LATEST_STABLE_VERSION,
published_at: '2025-02-07T20:09:46Z'
};
console.log('returning latest stable version: ', data);
return data;
});