@lage-run/scheduler-types 0.3.27 → 0.3.28

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/CHANGELOG.json CHANGED
@@ -1,6 +1,21 @@
1
1
  {
2
2
  "name": "@lage-run/scheduler-types",
3
3
  "entries": [
4
+ {
5
+ "date": "Sat, 24 Jan 2026 09:00:58 GMT",
6
+ "version": "0.3.28",
7
+ "tag": "@lage-run/scheduler-types_v0.3.28",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "elcraig@microsoft.com",
12
+ "package": "@lage-run/scheduler-types",
13
+ "commit": "092607a7d55561a9342ab3265ccab0142dd59b9b",
14
+ "comment": "Simplify SchedulerRunSummary type"
15
+ }
16
+ ]
17
+ }
18
+ },
4
19
  {
5
20
  "date": "Sat, 29 Mar 2025 02:16:38 GMT",
6
21
  "version": "0.3.23",
package/CHANGELOG.md CHANGED
@@ -1,9 +1,17 @@
1
1
  # Change Log - @lage-run/scheduler-types
2
2
 
3
- <!-- This log was last generated on Wed, 15 Jan 2025 16:56:22 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Sat, 24 Jan 2026 09:00:58 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.3.28
8
+
9
+ Sat, 24 Jan 2026 09:00:58 GMT
10
+
11
+ ### Patches
12
+
13
+ - Simplify SchedulerRunSummary type (elcraig@microsoft.com)
14
+
7
15
  ## 0.3.23
8
16
 
9
17
  Wed, 15 Jan 2025 16:56:22 GMT
@@ -1,8 +1,6 @@
1
1
  import type { TargetRun } from "./TargetRun.js";
2
2
  import type { TargetStatus } from "./TargetStatus.js";
3
- export type TargetRunSummary = {
4
- [key in TargetStatus]-?: string[];
5
- };
3
+ export type TargetRunSummary = Record<TargetStatus, string[]>;
6
4
  export type SchedulerRunResults = "success" | "failed";
7
5
  export interface SchedulerRunSummary<TTargetRunResult = unknown> {
8
6
  targetRunByStatus: TargetRunSummary;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/scheduler-types",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "description": "Scheduler types for Lage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "lint": "monorepo-scripts lint"
17
17
  },
18
18
  "dependencies": {
19
- "@lage-run/target-graph": "^0.12.1"
19
+ "@lage-run/target-graph": "^0.12.2"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@lage-run/monorepo-scripts": "^1.0.0"