@kici-dev/compiler 0.1.5 → 0.1.7

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/dist/cli.js CHANGED
@@ -22,7 +22,7 @@ import "./commands/index.js";
22
22
  import { Argument, Command, Option } from "commander";
23
23
  import pc from "picocolors";
24
24
  //#region src/cli.ts
25
- const version = "0.1.5";
25
+ const version = "0.1.7";
26
26
  const program = new Command();
27
27
  program.name("kici").description("KiCI workflow compiler").version(version);
28
28
  program.hook("preAction", () => {
@@ -15,7 +15,7 @@ import { formatDuration, logger, toErrorMessage } from "@kici-dev/shared";
15
15
  * Looks up local history first, then fetches from the orchestrator for
16
16
  * up-to-date status and logs.
17
17
  */
18
- const CLI_VERSION = "0.1.5";
18
+ const CLI_VERSION = "0.1.7";
19
19
  /**
20
20
  * Show status and details of a test run.
21
21
  *
@@ -1372,7 +1372,7 @@ export default workflow('on-github-repo-push', {
1372
1372
  - No auto-clone — `packages/agent/src/checkout/git-clone.ts` uses GitHub App installation tokens to fetch the repo; a generic source has none. Either set `checkout: false` and clone yourself with a PAT/Deploy Key secret (same pattern as the Forgejo manual-clone example above), or keep the workflow self-contained.
1373
1373
  - No lock-file fetch — the orchestrator cannot fetch `.kici/kici.lock.json` at the pushed SHA via the GitHub API. The workflow must be pre-registered via the [registration model](../events.md#the-registration-model); ad-hoc per-commit workflow discovery that a GitHub App push gives you is not available.
1374
1374
  - No changed-files enrichment — `event.changedFiles` is empty. Use JSONPath `match` on `rawPayload.commits[*].added/modified/removed` if you need path filters.
1375
- - No check-run integration — KiCI cannot post commit statuses or Check Run results back to GitHub.
1375
+ - No check-run integration — KiCI cannot post Check Run results back to GitHub.
1376
1376
  - Workflow authors must use `genericWebhook()`, not `push()` / `pr()` / `webhook()` — the latter three only match events delivered through the native GitHub App provider.
1377
1377
 
1378
1378
  **When to use it anyway:** trigger-only workflows that don't need the cloned repo — posting Slack messages, kicking off external deploys, forwarding to downstream systems, or exposing GitHub repo events as `genericWebhook` for same-org [cross-source fan-out](../../architecture/webhooks/webhook-delivery.md#cross-source-delivery). For anything that compiles, tests, or checks code, install the GitHub App instead.
@@ -8593,11 +8593,14 @@ repos where you can't install an App.
8593
8593
  https://<platform-host>/webhook/<orgId>/github
8594
8594
  ```
8595
8595
 
8596
- For self-hosted independent / hybrid orchestrators the same path
8597
- serves directly on the orchestrator's public hostname. The `<orgId>`
8598
- segment is the KiCI organization ID the source belongs to; the
8599
- `<appId>` is discovered from `X-GitHub-Hook-Installation-Target-ID`
8600
- at request time and is _not_ part of the URL.
8596
+ GitHub App webhooks are always delivered to this Platform endpoint and
8597
+ relayed to your orchestrator over its outbound connection — platform and
8598
+ hybrid orchestrators both receive GitHub events this way. Independent-mode
8599
+ orchestrators have no Platform connection and therefore no GitHub-App
8600
+ ingress; use a generic webhook source instead. The `<orgId>` segment is
8601
+ the KiCI organization ID the source belongs to; the `<appId>` is
8602
+ discovered from `X-GitHub-Hook-Installation-Target-ID` at request time and
8603
+ is _not_ part of the URL.
8601
8604
 
8602
8605
  4. **Set the webhook secret.** Generate a random hex string (e.g.
8603
8606
  `openssl rand -hex 32`) and save it for step 4 of the orchestrator
@@ -8606,18 +8609,38 @@ repos where you can't install an App.
8606
8609
 
8607
8610
  5. **Pick permissions.** Minimum required:
8608
8611
 
8609
- | Scope | Access | Why |
8610
- | ----------------------------- | ------------ | --------------------------------------- |
8611
- | Repository -> Contents | Read | Clone the repo to read the lock file |
8612
- | Repository -> Metadata | Read (auto) | Default for every App |
8613
- | Repository -> Pull requests | Read | Match `pull_request` triggers |
8614
- | Repository -> Checks | Read & write | Post KiCI's enriched Check runs |
8615
- | Repository -> Commit statuses | Read & write | (optional) Legacy commit-status posting |
8612
+ | Scope | Access | Why |
8613
+ | --------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
8614
+ | Repository -> Contents | Read | Clone the repo to read the lock file |
8615
+ | Repository -> Metadata | Read (auto) | Default for every App; also lets KiCI look up a pull-request author's repository access level for CI trust |
8616
+ | Repository -> Pull requests | Read | Match `pull_request` triggers |
8617
+ | Repository -> Checks | Read & write | Post KiCI's enriched Check runs |
8618
+ | Organization -> Members | Read | (optional, org installs) Receive `organization` / `membership` / `team` events so KiCI's CI-trust permission cache invalidates promptly on access changes |
8619
+
8620
+ The first four rows cover the core flow (clone, trigger matching,
8621
+ Check runs). The **Organization -> Members** row is only relevant if
8622
+ you use [CI trust tiers](../../architecture/security/ci-security.md)
8623
+ on an org-level install — see the event note below.
8616
8624
 
8617
8625
  6. **Subscribe to events.** At minimum: `push`, `pull_request`,
8618
8626
  `check_run`, `check_suite`. Add others (`issues`, `release`, ...) if
8619
8627
  your workflows use those triggers.
8620
8628
 
8629
+ **For CI trust (optional but recommended on org installs):** also
8630
+ subscribe to `member`, `organization`, `membership`, and `team`.
8631
+ KiCI caches each pull-request author's repository access level (used
8632
+ to decide whether workflow changes take effect immediately or are
8633
+ held for approval — see
8634
+ [CI security](../../architecture/security/ci-security.md)). These
8635
+ events let the orchestrator drop stale cache entries the moment a
8636
+ contributor's access changes. They are not required for correctness:
8637
+ without them the cache simply ages out on its own 15-minute TTL, so a
8638
+ permission change can take up to 15 minutes to take effect. The
8639
+ `organization` / `membership` / `team` events require the
8640
+ **Organization -> Members** read permission and an org-level
8641
+ installation; `member` is a repository event covered by the default
8642
+ Metadata permission.
8643
+
8621
8644
  7. **Generate a private key.** Scroll to the bottom of the App settings
8622
8645
  and click _Generate a private key_. A `.pem` file downloads —
8623
8646
  store it safely; you cannot redownload it.
@@ -8643,10 +8666,21 @@ kici-admin --url http://<orchestrator-host>:4000 --token $KICI_BOOTSTRAP_ADMIN_T
8643
8666
  --webhook-secret <the-webhook-secret-from-step-4>
8644
8667
  ```
8645
8668
 
8646
- The command returns the routing key (always `github:<appId>`). The
8647
- private key and webhook secret are stored encrypted in the orchestrator
8648
- database under `KICI_SECRET_KEY`; no restart needed — the orchestrator
8649
- accepts webhooks from this App immediately.
8669
+ The command prints the routing key (always `github:<appId>`) and the public
8670
+ webhook URL to paste into the GitHub App's "Webhook URL" field:
8671
+
8672
+ ```
8673
+ Source added: github:<appId> (my-org)
8674
+ Webhook URL: https://<platform-host>/webhook/<orgId>/github
8675
+ ↳ Paste this into your GitHub App's "Webhook URL" field.
8676
+ ```
8677
+
8678
+ When the orchestrator runs in independent mode (no Platform connection) the
8679
+ URL line reads `(unavailable — this orchestrator runs in independent mode)`,
8680
+ because GitHub-App ingress is Platform-relayed. The private key and webhook
8681
+ secret are stored encrypted in the orchestrator database under
8682
+ `KICI_SECRET_KEY`; no restart needed — the orchestrator accepts webhooks from
8683
+ this App immediately.
8650
8684
 
8651
8685
  **Secret input modes** (for `--private-key` and `--webhook-secret`):
8652
8686
 
@@ -9887,7 +9921,7 @@ Per-source secrets enable multi-tenant Platform with proper isolation. Each cust
9887
9921
 
9888
9922
  **Decision:** Webhooks are routed by provider-scoped routing key (e.g., `github:12345`) derived from the `X-GitHub-Hook-Installation-Target-ID` header. One routing key maps to one orchestrator connection.
9889
9923
 
9890
- App ID routing provides a clean 1:1 mapping between a customer's GitHub App and their orchestrator. The orchestrator extracts the `installation_id` from the webhook payload body for GitHub API calls (fetching lock files, setting commit statuses).
9924
+ App ID routing provides a clean 1:1 mapping between a customer's GitHub App and their orchestrator. The orchestrator extracts the `installation_id` from the webhook payload body for GitHub API calls (fetching lock files, posting check runs).
9891
9925
 
9892
9926
  **Alternative:** Route by Installation ID (more granular, one App can have many installations). Rejected because it adds complexity without clear benefit -- most customers use one App with one or a few installations, and the orchestrator can handle multiple installations internally.
9893
9927
 
@@ -1,6 +1,6 @@
1
1
  import "../chunk-gOLHoazu.js";
2
2
  //#region src/templates/package-json.ts
3
- const sdkVersion = "0.1.5";
3
+ const sdkVersion = "0.1.7";
4
4
  /**
5
5
  * Generate package.json content for .kici/ directory
6
6
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kici-dev/compiler",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
5
5
  "keywords": [
6
6
  "kici",
@@ -58,11 +58,11 @@
58
58
  "ws": "^8.20.0",
59
59
  "yaml": "^2.8.3",
60
60
  "zx": "^8.8.5",
61
- "@kici-dev/engine": "0.1.5",
62
- "@kici-dev/shared": "0.1.5"
61
+ "@kici-dev/engine": "0.1.7",
62
+ "@kici-dev/shared": "0.1.7"
63
63
  },
64
64
  "peerDependencies": {
65
- "@kici-dev/sdk": "0.1.5"
65
+ "@kici-dev/sdk": "0.1.7"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@types/proper-lockfile": "^4.1.4"
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/compiler@0.1.5",
6
- "documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.5/4f44ccf4-74b0-411c-b1be-c9a0e132055f",
5
+ "name": "@kici-dev/compiler@0.1.7",
6
+ "documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.7/7e850940-123b-4ccc-9ddd-e15090694cfc",
7
7
  "creationInfo": {
8
- "created": "2026-05-25T13:20:44Z",
8
+ "created": "2026-05-26T14:00:34Z",
9
9
  "creators": [
10
10
  "Tool: kici-sbom-generator"
11
11
  ]
@@ -1323,7 +1323,7 @@
1323
1323
  {
1324
1324
  "SPDXID": "SPDXRef-RootPackage",
1325
1325
  "name": "@kici-dev/compiler",
1326
- "versionInfo": "0.1.5",
1326
+ "versionInfo": "0.1.7",
1327
1327
  "downloadLocation": "NOASSERTION",
1328
1328
  "filesAnalyzed": false,
1329
1329
  "licenseConcluded": "NOASSERTION",
@@ -1334,16 +1334,16 @@
1334
1334
  {
1335
1335
  "referenceCategory": "PACKAGE-MANAGER",
1336
1336
  "referenceType": "purl",
1337
- "referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.5"
1337
+ "referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.7"
1338
1338
  }
1339
1339
  ],
1340
1340
  "description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
1341
1341
  "homepage": "https://kici.dev"
1342
1342
  },
1343
1343
  {
1344
- "SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.5",
1344
+ "SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.7",
1345
1345
  "name": "@kici-dev/engine",
1346
- "versionInfo": "0.1.5",
1346
+ "versionInfo": "0.1.7",
1347
1347
  "downloadLocation": "NOASSERTION",
1348
1348
  "filesAnalyzed": false,
1349
1349
  "licenseConcluded": "NOASSERTION",
@@ -1354,16 +1354,16 @@
1354
1354
  {
1355
1355
  "referenceCategory": "PACKAGE-MANAGER",
1356
1356
  "referenceType": "purl",
1357
- "referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.5"
1357
+ "referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.7"
1358
1358
  }
1359
1359
  ],
1360
1360
  "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.",
1361
1361
  "homepage": "https://kici.dev"
1362
1362
  },
1363
1363
  {
1364
- "SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.5",
1364
+ "SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.7",
1365
1365
  "name": "@kici-dev/sdk",
1366
- "versionInfo": "0.1.5",
1366
+ "versionInfo": "0.1.7",
1367
1367
  "downloadLocation": "NOASSERTION",
1368
1368
  "filesAnalyzed": false,
1369
1369
  "licenseConcluded": "NOASSERTION",
@@ -1374,16 +1374,16 @@
1374
1374
  {
1375
1375
  "referenceCategory": "PACKAGE-MANAGER",
1376
1376
  "referenceType": "purl",
1377
- "referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.5"
1377
+ "referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.7"
1378
1378
  }
1379
1379
  ],
1380
1380
  "description": "TypeScript SDK for defining KiCI workflows. Import into `.kici/workflows/*.ts` to declare workflows, jobs, steps, triggers, rules, and matrix configurations.",
1381
1381
  "homepage": "https://kici.dev"
1382
1382
  },
1383
1383
  {
1384
- "SPDXID": "SPDXRef-Package--kici-dev-shared-0.1.5",
1384
+ "SPDXID": "SPDXRef-Package--kici-dev-shared-0.1.7",
1385
1385
  "name": "@kici-dev/shared",
1386
- "versionInfo": "0.1.5",
1386
+ "versionInfo": "0.1.7",
1387
1387
  "downloadLocation": "NOASSERTION",
1388
1388
  "filesAnalyzed": false,
1389
1389
  "licenseConcluded": "NOASSERTION",
@@ -1394,7 +1394,7 @@
1394
1394
  {
1395
1395
  "referenceCategory": "PACKAGE-MANAGER",
1396
1396
  "referenceType": "purl",
1397
- "referenceLocator": "pkg:npm/%40kici-dev/shared@0.1.5"
1397
+ "referenceLocator": "pkg:npm/%40kici-dev/shared@0.1.7"
1398
1398
  }
1399
1399
  ],
1400
1400
  "description": "Shared utilities for the KiCI CI/CD stack — logging, zx setup, crypto, telemetry, health and metrics routes. No business logic.",
@@ -8290,17 +8290,17 @@
8290
8290
  },
8291
8291
  {
8292
8292
  "spdxElementId": "SPDXRef-RootPackage",
8293
- "relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.5",
8293
+ "relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.7",
8294
8294
  "relationshipType": "DEPENDS_ON"
8295
8295
  },
8296
8296
  {
8297
8297
  "spdxElementId": "SPDXRef-RootPackage",
8298
- "relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8298
+ "relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8299
8299
  "relationshipType": "DEPENDS_ON"
8300
8300
  },
8301
8301
  {
8302
8302
  "spdxElementId": "SPDXRef-RootPackage",
8303
- "relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.5",
8303
+ "relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.7",
8304
8304
  "relationshipType": "DEPENDS_ON"
8305
8305
  },
8306
8306
  {
@@ -8364,147 +8364,147 @@
8364
8364
  "relationshipType": "DEPENDS_ON"
8365
8365
  },
8366
8366
  {
8367
- "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.5",
8367
+ "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.7",
8368
8368
  "relatedSpdxElement": "SPDXRef-Package-jsonpath-plus-10.4.0",
8369
8369
  "relationshipType": "DEPENDS_ON"
8370
8370
  },
8371
8371
  {
8372
- "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.5",
8372
+ "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.7",
8373
8373
  "relatedSpdxElement": "SPDXRef-Package-picomatch-4.0.4",
8374
8374
  "relationshipType": "DEPENDS_ON"
8375
8375
  },
8376
8376
  {
8377
- "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.5",
8377
+ "spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.7",
8378
8378
  "relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
8379
8379
  "relationshipType": "DEPENDS_ON"
8380
8380
  },
8381
8381
  {
8382
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8383
- "relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.5",
8382
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8383
+ "relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.7",
8384
8384
  "relationshipType": "DEPENDS_ON"
8385
8385
  },
8386
8386
  {
8387
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8388
- "relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.5",
8387
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8388
+ "relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.7",
8389
8389
  "relationshipType": "DEPENDS_ON"
8390
8390
  },
8391
8391
  {
8392
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8392
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8393
8393
  "relatedSpdxElement": "SPDXRef-Package-fast-cartesian-9.0.1",
8394
8394
  "relationshipType": "DEPENDS_ON"
8395
8395
  },
8396
8396
  {
8397
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8397
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8398
8398
  "relatedSpdxElement": "SPDXRef-Package-micromatch-4.0.8",
8399
8399
  "relationshipType": "DEPENDS_ON"
8400
8400
  },
8401
8401
  {
8402
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8402
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8403
8403
  "relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
8404
8404
  "relationshipType": "DEPENDS_ON"
8405
8405
  },
8406
8406
  {
8407
- "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.5",
8407
+ "spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.7",
8408
8408
  "relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
8409
8409
  "relationshipType": "DEPENDS_ON"
8410
8410
  },
8411
8411
  {
8412
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8412
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8413
8413
  "relatedSpdxElement": "SPDXRef-Package--aws-sdk-client-s3-3.1038.0",
8414
8414
  "relationshipType": "DEPENDS_ON"
8415
8415
  },
8416
8416
  {
8417
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8417
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8418
8418
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-api-1.9.1",
8419
8419
  "relationshipType": "DEPENDS_ON"
8420
8420
  },
8421
8421
  {
8422
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8422
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8423
8423
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-metrics-otlp-http-0.217.0",
8424
8424
  "relationshipType": "DEPENDS_ON"
8425
8425
  },
8426
8426
  {
8427
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8427
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8428
8428
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-prometheus-0.217.0",
8429
8429
  "relationshipType": "DEPENDS_ON"
8430
8430
  },
8431
8431
  {
8432
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8432
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8433
8433
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-trace-otlp-http-0.217.0",
8434
8434
  "relationshipType": "DEPENDS_ON"
8435
8435
  },
8436
8436
  {
8437
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8437
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8438
8438
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-instrumentation-runtime-node-0.28.0",
8439
8439
  "relationshipType": "DEPENDS_ON"
8440
8440
  },
8441
8441
  {
8442
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8442
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8443
8443
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-resources-2.7.0",
8444
8444
  "relationshipType": "DEPENDS_ON"
8445
8445
  },
8446
8446
  {
8447
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8447
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8448
8448
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-sdk-node-0.217.0",
8449
8449
  "relationshipType": "DEPENDS_ON"
8450
8450
  },
8451
8451
  {
8452
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8452
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8453
8453
  "relatedSpdxElement": "SPDXRef-Package--opentelemetry-semantic-conventions-1.40.0",
8454
8454
  "relationshipType": "DEPENDS_ON"
8455
8455
  },
8456
8456
  {
8457
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8457
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8458
8458
  "relatedSpdxElement": "SPDXRef-Package-diff-7.0.0",
8459
8459
  "relationshipType": "DEPENDS_ON"
8460
8460
  },
8461
8461
  {
8462
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8462
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8463
8463
  "relatedSpdxElement": "SPDXRef-Package-hono-4.12.18",
8464
8464
  "relationshipType": "DEPENDS_ON"
8465
8465
  },
8466
8466
  {
8467
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8467
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8468
8468
  "relatedSpdxElement": "SPDXRef-Package-kysely-0.29.0",
8469
8469
  "relationshipType": "DEPENDS_ON"
8470
8470
  },
8471
8471
  {
8472
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8472
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8473
8473
  "relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.128.0",
8474
8474
  "relationshipType": "DEPENDS_ON"
8475
8475
  },
8476
8476
  {
8477
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8477
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8478
8478
  "relatedSpdxElement": "SPDXRef-Package-pg-8.20.0",
8479
8479
  "relationshipType": "DEPENDS_ON"
8480
8480
  },
8481
8481
  {
8482
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8482
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8483
8483
  "relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
8484
8484
  "relationshipType": "DEPENDS_ON"
8485
8485
  },
8486
8486
  {
8487
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8487
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8488
8488
  "relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
8489
8489
  "relationshipType": "DEPENDS_ON"
8490
8490
  },
8491
8491
  {
8492
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8492
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8493
8493
  "relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
8494
8494
  "relationshipType": "DEPENDS_ON"
8495
8495
  },
8496
8496
  {
8497
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8497
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8498
8498
  "relatedSpdxElement": "SPDXRef-Package-yaml-2.8.3",
8499
8499
  "relationshipType": "DEPENDS_ON"
8500
8500
  },
8501
8501
  {
8502
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8502
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8503
8503
  "relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
8504
8504
  "relationshipType": "DEPENDS_ON"
8505
8505
  },
8506
8506
  {
8507
- "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.5",
8507
+ "spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.7",
8508
8508
  "relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
8509
8509
  "relationshipType": "DEPENDS_ON"
8510
8510
  },