mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
Merge branch 'next/minor' of github.com:Start9Labs/start-os into next/minor
This commit is contained in:
@@ -6,11 +6,10 @@ import { Metric, NotificationLevel, RR, ServerNotifications } from './api.types'
|
||||
import { BTC_ICON, LND_ICON, PROXY_ICON } from './api-icons'
|
||||
import { DependencyMetadata, MarketplacePkg } from '@start9labs/marketplace'
|
||||
import { Log } from '@start9labs/shared'
|
||||
import { ServerStatus } from '../../../../../../../core/startos/bindings/ServerStatus'
|
||||
import { Manifest } from '../../../../../../../core/startos/bindings/Manifest'
|
||||
import { T } from '@start9labs/start-sdk'
|
||||
|
||||
export module Mock {
|
||||
export const ServerUpdated: ServerStatus = {
|
||||
export const ServerUpdated: T.ServerStatus = {
|
||||
backupProgress: null,
|
||||
updateProgress: null,
|
||||
updated: true,
|
||||
@@ -43,7 +42,7 @@ export module Mock {
|
||||
'0.19.0': 'release notes for Bitcoin 0.19.0',
|
||||
}
|
||||
|
||||
export const MockManifestBitcoind: Manifest = {
|
||||
export const MockManifestBitcoind: T.Manifest = {
|
||||
id: 'bitcoind',
|
||||
title: 'Bitcoin Core',
|
||||
version: '0.21.0',
|
||||
@@ -81,7 +80,7 @@ export module Mock {
|
||||
},
|
||||
}
|
||||
|
||||
export const MockManifestLnd: Manifest = {
|
||||
export const MockManifestLnd: T.Manifest = {
|
||||
id: 'lnd',
|
||||
title: 'Lightning Network Daemon',
|
||||
version: '0.11.1',
|
||||
@@ -129,7 +128,7 @@ export module Mock {
|
||||
},
|
||||
}
|
||||
|
||||
export const MockManifestBitcoinProxy: Manifest = {
|
||||
export const MockManifestBitcoinProxy: T.Manifest = {
|
||||
id: 'btc-rpc-proxy',
|
||||
title: 'Bitcoin Proxy',
|
||||
version: '0.2.2',
|
||||
|
||||
@@ -4,8 +4,7 @@ import { PackagePropertiesVersioned } from 'src/app/util/properties.util'
|
||||
import { ConfigSpec } from 'src/app/pkg-config/config-types'
|
||||
import { DataModel } from 'src/app/services/patch-db/data-model'
|
||||
import { StartOSDiskInfo, LogsRes, ServerLogsReq } from '@start9labs/shared'
|
||||
import { HealthCheckResult } from '../../../../../../../core/startos/bindings/HealthCheckResult'
|
||||
import { Manifest } from '../../../../../../../core/startos/bindings/Manifest'
|
||||
import { T } from '@start9labs/start-sdk'
|
||||
|
||||
export module RR {
|
||||
// DB
|
||||
@@ -245,7 +244,7 @@ export module RR {
|
||||
}
|
||||
|
||||
export type SideloadPackageReq = {
|
||||
manifest: Manifest
|
||||
manifest: T.Manifest
|
||||
icon: string // base64
|
||||
}
|
||||
export type SideloadPacakgeRes = string //guid
|
||||
@@ -515,7 +514,7 @@ export interface DependencyErrorConfigUnsatisfied {
|
||||
|
||||
export interface DependencyErrorHealthChecksFailed {
|
||||
type: 'healthChecksFailed'
|
||||
check: HealthCheckResult
|
||||
check: T.HealthCheckResult
|
||||
}
|
||||
|
||||
export interface DependencyErrorTransitive {
|
||||
|
||||
@@ -37,10 +37,9 @@ import { WebSocketSubjectConfig } from 'rxjs/webSocket'
|
||||
import { AuthService } from '../auth.service'
|
||||
import { ConnectionService } from '../connection.service'
|
||||
import { StoreInfo } from '@start9labs/marketplace'
|
||||
import { FullProgress } from '../../../../../../../core/startos/bindings/FullProgress'
|
||||
import { ServerStatus } from '../../../../../../../core/startos/bindings/ServerStatus'
|
||||
import { T } from '@start9labs/start-sdk'
|
||||
|
||||
const PROGRESS: FullProgress = {
|
||||
const PROGRESS: T.FullProgress = {
|
||||
overall: {
|
||||
done: 0,
|
||||
total: 120,
|
||||
|
||||
Reference in New Issue
Block a user