@kici-dev/engine 0.6.0 → 0.6.1

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.
@@ -3874,6 +3874,7 @@ export declare const registrationItemSchema: z.ZodObject<{
3874
3874
  }>>;
3875
3875
  provider: z.ZodString;
3876
3876
  }, z.core.$strip>>>;
3877
+ isGlobal: z.ZodOptional<z.ZodBoolean>;
3877
3878
  }, z.core.$strip>;
3878
3879
  /** Response with workflow registrations. */
3879
3880
  export declare const registrationsListResponseSchema: z.ZodObject<{
@@ -3904,6 +3905,7 @@ export declare const registrationsListResponseSchema: z.ZodObject<{
3904
3905
  }>>;
3905
3906
  provider: z.ZodString;
3906
3907
  }, z.core.$strip>>>;
3908
+ isGlobal: z.ZodOptional<z.ZodBoolean>;
3907
3909
  }, z.core.$strip>>>;
3908
3910
  registryVersion: z.ZodNumber;
3909
3911
  registryUpdatedAt: z.ZodString;
@@ -7851,6 +7853,7 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
7851
7853
  }>>;
7852
7854
  provider: z.ZodString;
7853
7855
  }, z.core.$strip>>>;
7856
+ isGlobal: z.ZodOptional<z.ZodBoolean>;
7854
7857
  }, z.core.$strip>>>;
7855
7858
  registryVersion: z.ZodNumber;
7856
7859
  registryUpdatedAt: z.ZodString;
@@ -1787,7 +1787,18 @@ const registrationItemSchema = z.object({
1787
1787
  * (legacy / global-workflow rows). Mirrors the shape attached to run
1788
1788
  * summaries so the dashboard can reuse the same icon/label helpers.
1789
1789
  */
1790
- source: registrationSourceSchema.nullable().optional()
1790
+ source: registrationSourceSchema.nullable().optional(),
1791
+ /**
1792
+ * True when this registration is a global workflow — one whose trigger
1793
+ * carries `repos:`, so it fires on events from other repos in the org.
1794
+ *
1795
+ * Optional because an orchestrator predating this field omits it. A reader
1796
+ * that needs a value for such a row derives one from `triggers[].repos`,
1797
+ * which is the same signal the orchestrator classifies on at registration
1798
+ * time. Prefer this field when present: it mirrors the `is_global` column
1799
+ * the dispatcher itself reads, so it cannot drift from dispatch behaviour.
1800
+ */
1801
+ isGlobal: z.boolean().optional()
1791
1802
  });
1792
1803
  /** Response with workflow registrations. */
1793
1804
  const registrationsListResponseSchema = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kici-dev/engine",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.",
5
5
  "keywords": [
6
6
  "ci",
package/sbom.spdx.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "spdxVersion": "SPDX-2.3",
3
3
  "dataLicense": "CC0-1.0",
4
4
  "SPDXID": "SPDXRef-DOCUMENT",
5
- "name": "@kici-dev/engine@0.6.0",
6
- "documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fengine/0.6.0/257d679c-2415-4ce3-b560-a0cc82187192",
5
+ "name": "@kici-dev/engine@0.6.1",
6
+ "documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fengine/0.6.1/3af2cc4e-0d26-40f2-8700-367133e0f64c",
7
7
  "creationInfo": {
8
- "created": "2026-09-01T13:57:11Z",
8
+ "created": "2026-09-02T03:01:17Z",
9
9
  "creators": [
10
10
  "Tool: kici-sbom-generator"
11
11
  ]
@@ -54,7 +54,7 @@
54
54
  {
55
55
  "SPDXID": "SPDXRef-RootPackage",
56
56
  "name": "@kici-dev/engine",
57
- "versionInfo": "0.6.0",
57
+ "versionInfo": "0.6.1",
58
58
  "downloadLocation": "NOASSERTION",
59
59
  "filesAnalyzed": false,
60
60
  "licenseConcluded": "NOASSERTION",
@@ -65,7 +65,7 @@
65
65
  {
66
66
  "referenceCategory": "PACKAGE-MANAGER",
67
67
  "referenceType": "purl",
68
- "referenceLocator": "pkg:npm/%40kici-dev/engine@0.6.0"
68
+ "referenceLocator": "pkg:npm/%40kici-dev/engine@0.6.1"
69
69
  }
70
70
  ],
71
71
  "description": "Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.",