feat: prepare Zhinian desktop pilot
This commit is contained in:
@@ -122,6 +122,26 @@ export type YinianSkillRegistryByHotel = Record<string, YinianSkillRegistry>;
|
||||
export type YinianWorkspace = YinianHotel;
|
||||
export type YinianSkillRegistryByWorkspace = YinianSkillRegistryByHotel;
|
||||
|
||||
export type YinianAppCenterItemType = 'native' | 'webview' | 'external';
|
||||
|
||||
export type YinianAppCenterItemSource = 'built-in' | 'server' | 'local';
|
||||
|
||||
export interface YinianAppCenterItem {
|
||||
id: string;
|
||||
name: string;
|
||||
description?: string;
|
||||
category?: string;
|
||||
tags?: string[];
|
||||
icon?: string;
|
||||
type: YinianAppCenterItemType;
|
||||
route?: string;
|
||||
url?: string;
|
||||
pinned?: boolean;
|
||||
source: YinianAppCenterItemSource;
|
||||
createdAt?: string;
|
||||
updatedAt?: string;
|
||||
}
|
||||
|
||||
export interface YinianNotificationChannel {
|
||||
id: string;
|
||||
kind: string;
|
||||
|
||||
Reference in New Issue
Block a user