mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
Remove app wiz and dry calls (#1541)
* no more app wiz or dry calls * change spinner type * better display for update available * reintroduce dep breakages for update/downgrade and style alerts everywhere * only show install alert on first install Co-authored-by: Matt Hill <matthill@Matt-M1.local> Co-authored-by: Matt Hill <matthill@Matt-M1.start9.dev>
This commit is contained in:
@@ -3,8 +3,6 @@ import { MarketplacePkg } from '../types/marketplace-pkg'
|
||||
import { Marketplace } from '../types/marketplace'
|
||||
|
||||
export abstract class AbstractMarketplaceService {
|
||||
abstract install(id: string, version?: string): Observable<unknown>
|
||||
|
||||
abstract getMarketplace(): Observable<Marketplace>
|
||||
|
||||
abstract getReleaseNotes(id: string): Observable<Record<string, string>>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { Url } from '@start9labs/shared'
|
||||
|
||||
import { Dependency } from './dependency'
|
||||
|
||||
export interface MarketplaceManifest<T = unknown> {
|
||||
@@ -22,6 +21,7 @@ export interface MarketplaceManifest<T = unknown> {
|
||||
uninstall: string | null
|
||||
restore: string | null
|
||||
start: string | null
|
||||
stop: string | null
|
||||
}
|
||||
dependencies: Record<string, Dependency<T>>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user