14 lines
460 B
TypeScript
14 lines
460 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_2 = VersionInfo.of({
|
|
version: '0.2.2:0',
|
|
releaseNotes: {
|
|
en_US:
|
|
'New GET /relay/balance endpoint returns credit balance + tier without charging. Recap clients call this on boot so the "N credits remaining" banner is populated before the user runs any transcribe/analyze.',
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|