@wevion/cli 1.0.3001 → 1.0.3008

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.
Files changed (2) hide show
  1. package/openapi.json +24 -1
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -135486,7 +135486,7 @@
135486
135486
  "tags": [
135487
135487
  "kb"
135488
135488
  ],
135489
- "description": "Webhook-style endpoint called by the GitHub Actions CI pipeline after a PR is merged on `develop`. Accepts a structured \"change manifest\" describing the changed files, product areas, release signals and candidate audiences for the merge. The manifest is persisted (idempotent by `mergeCommitSha + pullRequestNumber`) and a SQS message is dispatched to the `PROCESS_KB_MANIFEST` worker. Auth is **NOT** via JWT - callers must present a shared secret in the `x-kb-ingest-key` header that must match the `KB_INGEST_API_KEY` env var (compared with `timingSafeEqual`). Returns 503 when the endpoint is not configured (missing env var), 401 on invalid/missing key. On success returns `202 Accepted` with `status` indicating whether the manifest was newly `accepted`, `already_ingested`, or `accepted_not_queued` (persisted but SQS dispatch failed - the processor retries on the next cron).",
135489
+ "description": "Webhook-style endpoint called by the GitHub Actions CI pipeline after a PR is merged on `develop`. Accepts a structured \"change manifest\" describing the changed files, product areas, removal signals (product areas where every touched file was deleted, surfaced for human review rather than auto-archival), release signals and candidate audiences for the merge. The manifest is persisted (idempotent by `mergeCommitSha + pullRequestNumber`) and a SQS message is dispatched to the `PROCESS_KB_MANIFEST` worker. Auth is **NOT** via JWT - callers must present a shared secret in the `x-kb-ingest-key` header that must match the `KB_INGEST_API_KEY` env var (compared with `timingSafeEqual`). Returns 503 when the endpoint is not configured (missing env var), 401 on invalid/missing key. On success returns `202 Accepted` with `status` indicating whether the manifest was newly `accepted`, `already_ingested`, or `accepted_not_queued` (persisted but SQS dispatch failed - the processor retries on the next cron).",
135490
135490
  "requestBody": {
135491
135491
  "required": true,
135492
135492
  "content": {
@@ -135510,6 +135510,7 @@
135510
135510
  "docsFiles",
135511
135511
  "unknownFiles",
135512
135512
  "productAreas",
135513
+ "removalSignals",
135513
135514
  "riskHints",
135514
135515
  "releaseSignals",
135515
135516
  "candidateAudiences",
@@ -135605,6 +135606,28 @@
135605
135606
  "type": "string"
135606
135607
  }
135607
135608
  },
135609
+ "removalSignals": {
135610
+ "type": "array",
135611
+ "items": {
135612
+ "additionalProperties": false,
135613
+ "type": "object",
135614
+ "required": [
135615
+ "productArea",
135616
+ "deletedFiles"
135617
+ ],
135618
+ "properties": {
135619
+ "productArea": {
135620
+ "type": "string"
135621
+ },
135622
+ "deletedFiles": {
135623
+ "type": "array",
135624
+ "items": {
135625
+ "type": "string"
135626
+ }
135627
+ }
135628
+ }
135629
+ }
135630
+ },
135608
135631
  "riskHints": {
135609
135632
  "type": "array",
135610
135633
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.3001",
3
+ "version": "1.0.3008",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {