feat: 添加云端函数HTTP请求、SMTP邮件、数据库操作能力

- 添加HTTP客户端工具支持GET/POST请求
- 添加SMTP邮件发送功能
- 添加数据库操作(db.getRecords, db.deleteRecord, db.deleteRecords)
- 添加订单管理云端函数(读取、接收、筛选、成功、失败)
- 添加测试推送和邮件通知云端函数
- 修复云端函数编辑页面预览代码换行显示
- 云端变量数据模型重构(合并数据类型)
This commit is contained in:
2026-04-30 20:54:02 +08:00
parent a4df9e91a0
commit 10044b474f
46 changed files with 15249 additions and 250 deletions
-16
View File
@@ -12,8 +12,6 @@ export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
AdminSidebar: typeof import('./../components/admin-sidebar/index.vue')['default']
AdminSidebarNavFooter: typeof import('./../components/admin-sidebar/nav-footer.vue')['default']
AppSidebar: typeof import('./../components/app-sidebar/index.vue')['default']
AppSidebarNavFooter: typeof import('./../components/app-sidebar/nav-footer.vue')['default']
AppSidebarNavTeam: typeof import('./../components/app-sidebar/nav-team.vue')['default']
@@ -57,14 +55,8 @@ declare module 'vue' {
InspiraUiRippleContainer: typeof import('./../components/inspira-ui/ripple/container.vue')['default']
LanguageChange: typeof import('./../components/language-change.vue')['default']
Loading: typeof import('./../components/loading.vue')['default']
MarketingEvaluation: typeof import('./../components/marketing/evaluation.vue')['default']
MarketingFeatures: typeof import('./../components/marketing/features.vue')['default']
MarketingHero: typeof import('./../components/marketing/hero.vue')['default']
MarketingLayoutTheFooter: typeof import('./../components/marketing-layout/the-footer.vue')['default']
MarketingLayoutTheHeader: typeof import('./../components/marketing-layout/the-header.vue')['default']
MarketingLogos: typeof import('./../components/marketing/logos.vue')['default']
MarketingPricingPlans: typeof import('./../components/marketing/pricing-plans/index.vue')['default']
MarketingSetup: typeof import('./../components/marketing/setup.vue')['default']
NoResultFound: typeof import('./../components/no-result-found.vue')['default']
PropUiModal: typeof import('./../components/prop-ui/modal/Modal.vue')['default']
PropUiModalClose: typeof import('./../components/prop-ui/modal/ModalClose.vue')['default']
@@ -423,8 +415,6 @@ declare module 'vue' {
// For TSX support
declare global {
const AdminSidebar: typeof import('./../components/admin-sidebar/index.vue')['default']
const AdminSidebarNavFooter: typeof import('./../components/admin-sidebar/nav-footer.vue')['default']
const AppSidebar: typeof import('./../components/app-sidebar/index.vue')['default']
const AppSidebarNavFooter: typeof import('./../components/app-sidebar/nav-footer.vue')['default']
const AppSidebarNavTeam: typeof import('./../components/app-sidebar/nav-team.vue')['default']
@@ -468,14 +458,8 @@ declare global {
const InspiraUiRippleContainer: typeof import('./../components/inspira-ui/ripple/container.vue')['default']
const LanguageChange: typeof import('./../components/language-change.vue')['default']
const Loading: typeof import('./../components/loading.vue')['default']
const MarketingEvaluation: typeof import('./../components/marketing/evaluation.vue')['default']
const MarketingFeatures: typeof import('./../components/marketing/features.vue')['default']
const MarketingHero: typeof import('./../components/marketing/hero.vue')['default']
const MarketingLayoutTheFooter: typeof import('./../components/marketing-layout/the-footer.vue')['default']
const MarketingLayoutTheHeader: typeof import('./../components/marketing-layout/the-header.vue')['default']
const MarketingLogos: typeof import('./../components/marketing/logos.vue')['default']
const MarketingPricingPlans: typeof import('./../components/marketing/pricing-plans/index.vue')['default']
const MarketingSetup: typeof import('./../components/marketing/setup.vue')['default']
const NoResultFound: typeof import('./../components/no-result-found.vue')['default']
const PropUiModal: typeof import('./../components/prop-ui/modal/Modal.vue')['default']
const PropUiModalClose: typeof import('./../components/prop-ui/modal/ModalClose.vue')['default']
+3
View File
@@ -14,6 +14,9 @@ import type {
ParamValueZeroOrMore,
ParamValueZeroOrOne,
} from 'vue-router'
import type {
_ExtractParamParserType,
} from 'vue-router/experimental'
declare module 'vue-router' {
interface TypesConfig {