Fix StartOS 0.4 TypeScript packaging to match SDK API

This commit is contained in:
MacPro
2026-04-09 15:10:44 -05:00
parent 68ec875ee7
commit 8298c083c7
3436 changed files with 867051 additions and 92 deletions
+3 -5
View File
@@ -1,16 +1,14 @@
import { VersionInfo } from '@start9labs/start-sdk'
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_0 = VersionInfo.of({
version: '0.1.0:0',
releaseNotes: {
en_US:
'Initial StartOS package. Download, transcribe, and summarize YouTube videos ' +
'and podcast episodes using Google Gemini AI. Features include channel and ' +
'podcast subscriptions, background processing queue, auto-download per ' +
'subscription, and organized history with folders.',
'and podcast episodes using Google Gemini AI.',
},
migrations: {
up: async ({ effects }) => {},
down: 'IMPOSSIBLE',
down: IMPOSSIBLE,
},
})