@stellaris/metrics-shared 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{index.d.ts → bff-service.d.ts} +2 -2
- package/index.ts +1 -0
- package/package.json +1 -1
- package/publish.sh +2 -2
|
@@ -169,7 +169,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
|
|
|
169
169
|
} | {
|
|
170
170
|
id: string;
|
|
171
171
|
member: string;
|
|
172
|
-
operator: "
|
|
172
|
+
operator: "lt" | "gt" | "gte" | "lte";
|
|
173
173
|
value: number;
|
|
174
174
|
} | {
|
|
175
175
|
id: string;
|
|
@@ -396,7 +396,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
|
|
|
396
396
|
} | {
|
|
397
397
|
id: string;
|
|
398
398
|
member: string;
|
|
399
|
-
operator: "
|
|
399
|
+
operator: "lt" | "gt" | "gte" | "lte";
|
|
400
400
|
value: number;
|
|
401
401
|
} | {
|
|
402
402
|
id: string;
|
package/index.ts
CHANGED
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -41,8 +41,8 @@ pnpm run db:generate
|
|
|
41
41
|
|
|
42
42
|
echo ""
|
|
43
43
|
echo -e "${YELLOW}[2/4] 生成 API 类型定义 (dts-bundle-generator)...${NC}"
|
|
44
|
-
npx dts-bundle-generator -o metrics-shared/
|
|
45
|
-
echo -e "${GREEN}✓ 类型已生成到 metrics-shared/
|
|
44
|
+
npx dts-bundle-generator -o metrics-shared/bff-service.d.ts src/index.ts --no-check
|
|
45
|
+
echo -e "${GREEN}✓ 类型已生成到 metrics-shared/bff-service.d.ts${NC}"
|
|
46
46
|
|
|
47
47
|
# Step 2: 进入包目录
|
|
48
48
|
cd "$SCRIPT_DIR"
|