feat: prepare Zhinian desktop pilot
Some checks failed
Electron E2E / Electron E2E (macos-latest) (push) Has been cancelled
Electron E2E / Electron E2E (ubuntu-latest) (push) Has been cancelled
Electron E2E / Electron E2E (windows-latest) (push) Has been cancelled

This commit is contained in:
inman
2026-05-07 21:49:20 +08:00
parent cddaf37016
commit 0abc48189c
103 changed files with 10975 additions and 2049 deletions

View File

@@ -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;