A bit of commenting to describe the response type

This commit is contained in:
Sage Vaillancourt 2024-06-24 01:01:31 -04:00
parent 8f7fda2732
commit 7a8b72d257
1 changed files with 16 additions and 2 deletions

View File

@ -14,6 +14,22 @@ const buildUpdates = async () => {
}))
}
/**
* {
* addons: {
* [stringId1]: {
* updates: [
* {
* version: '1.0.9.xpi',
* update_link: `https://bb-addon.sagev.space/${file}`
* },
* ...
* ]
* },
* [stringId2]: ...
* }
* }
*/
const buildJson = async () => {
const uuid1 = '16f4f9af-ad27-41b7-adae-b0b08bc17b43'
const uuid2 = 'svaillancourt@add123.com'
@ -23,8 +39,6 @@ const buildJson = async () => {
const updates = await buildUpdates()
object.addons[uuid1] = { updates }
object.addons[uuid2] = { updates }
// object.addons[`{${uuid1}}`] = { updates }
// object.addons[`{${uuid2}}`] = { updates }
return JSON.stringify(object, null, 2)
}