mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
b2f5707676
# Conflicts: # .github/workflows/tool-test-sdks.yaml # api/.env.example # api/README.md # api/commands.py # api/controllers/console/explore/wraps.py # api/controllers/web/workflow.py # api/extensions/ext_commands.py # api/models/model.py # api/pyproject.toml # api/services/feature_service.py # web/README.md # web/app/components/explore/app-card/index.tsx # web/app/components/explore/app-list/index.tsx # web/app/components/explore/sidebar/index.tsx # web/app/signin/components/mail-and-password-auth.tsx # web/i18n/uk-UA/app-overview.json # web/i18n/uk-UA/app.json # web/i18n/uk-UA/billing.json # web/i18n/uk-UA/common.json # web/i18n/uk-UA/dataset-creation.json # web/i18n/uk-UA/dataset-documents.json # web/i18n/uk-UA/dataset-hit-testing.json # web/i18n/uk-UA/dataset-settings.json # web/i18n/uk-UA/dataset.json # web/i18n/uk-UA/explore.json # web/i18n/uk-UA/plugin.json # web/i18n/uk-UA/tools.json # web/next.config.js # web/package.json # web/pnpm-lock.yaml # web/service/common.ts # web/service/explore.ts # web/service/fetch.ts # web/service/use-explore.ts # web/types/feature.ts
41 lines
972 B
TypeScript
41 lines
972 B
TypeScript
import type { AppIconType, AppModeEnum } from '@/types/app'
|
|
|
|
export type AppBasicInfo = {
|
|
id: string
|
|
mode: AppModeEnum
|
|
icon_type: AppIconType | null
|
|
icon: string
|
|
icon_background: string
|
|
icon_url: string
|
|
name: string
|
|
description: string
|
|
use_icon_as_answer_icon: boolean
|
|
}
|
|
|
|
export type AppCategory = 'Writing' | 'Translate' | 'HR' | 'Programming' | 'Assistant' | 'Agent' | 'Recommended' | 'Workflow'| '未分类' // 二开部分,新增未分类
|
|
|
|
export type App = {
|
|
app: AppBasicInfo
|
|
installed_id: string // 二开部分 新增 installed_id
|
|
app_id: string
|
|
description: string
|
|
copyright: string
|
|
privacy_policy: string | null
|
|
custom_disclaimer: string | null
|
|
category: AppCategory
|
|
position: number
|
|
is_listed: boolean
|
|
install_count: number
|
|
installed: boolean
|
|
editable: boolean
|
|
is_agent: boolean
|
|
can_trial: boolean
|
|
}
|
|
|
|
export type InstalledApp = {
|
|
app: AppBasicInfo
|
|
id: string
|
|
uninstallable: boolean
|
|
is_pinned: boolean
|
|
}
|