This commit is contained in:
2026-01-24 21:17:11 +08:00
parent a83dc1bf23
commit fea68a736f
2 changed files with 3 additions and 8 deletions

View File

@@ -9,13 +9,10 @@
*/ */
import type * as abcv from "../abcv.js"; import type * as abcv from "../abcv.js";
<<<<<<< HEAD
import type * as xiong from "../xiong.js";
=======
import type * as actions_jwt from "../actions/jwt.js"; import type * as actions_jwt from "../actions/jwt.js";
import type * as actions_redis from "../actions/redis.js"; import type * as actions_redis from "../actions/redis.js";
import type * as http from "../http.js"; import type * as http from "../http.js";
>>>>>>> 5657bffd39687b05f44247a0318fee65990aa3db import type * as xiong from "../xiong.js";
import type { import type {
ApiFromModules, ApiFromModules,
@@ -25,13 +22,10 @@ import type {
declare const fullApi: ApiFromModules<{ declare const fullApi: ApiFromModules<{
abcv: typeof abcv; abcv: typeof abcv;
<<<<<<< HEAD
xiong: typeof xiong;
=======
"actions/jwt": typeof actions_jwt; "actions/jwt": typeof actions_jwt;
"actions/redis": typeof actions_redis; "actions/redis": typeof actions_redis;
http: typeof http; http: typeof http;
>>>>>>> 5657bffd39687b05f44247a0318fee65990aa3db xiong: typeof xiong;
}>; }>;
/** /**

View File

@@ -8,6 +8,7 @@ export default defineSchema({
}), }),
xiong: defineTable({ xiong: defineTable({
name: v.string(), name: v.string(),
title: v.string(),
}), }),
users: defineTable({ users: defineTable({
id: v.string(), // 外部系统的用户 ID id: v.string(), // 外部系统的用户 ID