@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.
@@ -169,7 +169,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
169
169
  } | {
170
170
  id: string;
171
171
  member: string;
172
- operator: "gt" | "lt" | "gte" | "lte";
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: "gt" | "lt" | "gte" | "lte";
399
+ operator: "lt" | "gt" | "gte" | "lte";
400
400
  value: number;
401
401
  } | {
402
402
  id: string;
package/index.ts CHANGED
@@ -1,2 +1,3 @@
1
+ // export type * from "./bff-service.d.ts";
1
2
  export * from "./schemas";
2
3
  export type { AppType } from "../src/index";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellaris/metrics-shared",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./index.ts",
6
6
  "types": "./index.ts",
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/index.d.ts src/index.ts --no-check
45
- echo -e "${GREEN}✓ 类型已生成到 metrics-shared/index.d.ts${NC}"
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"