fix(apps): unblock saleor and netbird first-use flows

This commit is contained in:
archipelago
2026-05-20 00:28:30 -04:00
parent 608f4c17f0
commit f4368785f0
14 changed files with 376 additions and 40 deletions
+12 -1
View File
@@ -140,6 +140,18 @@ export interface InterfaceAddress {
'lan-address': string | null
}
export interface AppCredential {
label: string
value: string
sensitive?: boolean
}
export interface AppCredentialsResponse {
title?: string
description?: string
credentials: AppCredential[]
}
export const ServiceStatus = {
Stopped: 'stopped',
Starting: 'starting',
@@ -275,4 +287,3 @@ export interface Update {
sequence: number
patch: PatchOperation[]
}