@stellaris/metrics-shared 0.1.12 → 0.1.14

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/bff-service.d.ts CHANGED
@@ -935,7 +935,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
935
935
  host: string;
936
936
  status: 3 | 1 | 2;
937
937
  platformCode?: string | undefined;
938
- taskId?: string | undefined;
938
+ actionId?: string | undefined;
939
939
  };
940
940
  message?: string | null | undefined;
941
941
  timestamp?: number | undefined;
@@ -2207,7 +2207,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
2207
2207
  host: string;
2208
2208
  status: 3 | 1 | 2;
2209
2209
  platformCode?: string | undefined;
2210
- taskId?: string | undefined;
2210
+ actionId?: string | undefined;
2211
2211
  };
2212
2212
  message?: string | null | undefined;
2213
2213
  timestamp?: number | undefined;
@@ -2280,7 +2280,7 @@ declare const app: import("hono/hono-base").HonoBase<{}, {
2280
2280
  host: string;
2281
2281
  status: 3 | 1 | 2;
2282
2282
  platformCode?: string | undefined;
2283
- taskId?: string | undefined;
2283
+ actionId?: string | undefined;
2284
2284
  };
2285
2285
  message?: string | null | undefined;
2286
2286
  timestamp?: number | undefined;
package/index.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export * from "./schemas";
2
- export type * from "./bff-service.d.ts";
2
+ export type { ReportStatus, AppType } from "./bff-service.d.ts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellaris/metrics-shared",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "type": "module",
5
5
  "main": "./index.ts",
6
6
  "types": "./index.ts",
@@ -62,7 +62,7 @@ export const changeCsStatusEventSchema = rpaEventBaseSchema.extend({
62
62
  host: z.string(),
63
63
  status: csStatusSchema,
64
64
  platformCode: z.string().optional(),
65
- taskId: z.string().optional(),
65
+ actionId: z.string().optional(),
66
66
  }),
67
67
  });
68
68
  export type ChangeCsStatusEventPayload = z.infer<