remove sourceVersion and minor cleanup

This commit is contained in:
Matt Hill
2024-07-29 22:42:17 -06:00
parent 1dd21f1f76
commit 290a15bbd9
6 changed files with 10 additions and 16 deletions

View File

@@ -3,7 +3,6 @@ import { T } from '@start9labs/start-sdk'
export type GetPackageReq = {
id: string
version: string | null
sourceVersion: null // @TODO what is this?
otherVersions: 'short'
}
export type GetPackageRes = T.GetPackageResponse & {
@@ -13,9 +12,9 @@ export type GetPackageRes = T.GetPackageResponse & {
export type GetPackagesReq = {
id: null
version: null
sourceVersion: null
otherVersions: 'short'
}
export type GetPackagesRes = {
[id: T.PackageId]: GetPackageRes
}