@prettier-ai/dsh-webhook-github 0.1.2-alpha.1 → 0.1.2-alpha.2

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/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { credentialRef } from "@prettier-ai/dsh-credentials";
2
2
  import z from "@prettier-ai/schemastery";
3
3
  import { Webhooks } from "@octokit/webhooks";
4
- import { snapshotJsonValue } from "@prettier-ai/dsh-session";
4
+ import { snapshotJsonValue } from "@prettier-ai/dsh-util-values";
5
5
  import { WebhookDeliveryId, WebhookSourceId } from "@prettier-ai/dsh-webhook";
6
6
  //#region lib/types/body.js
7
7
  /** Bounded raw HTTP body intake for GitHub signature verification. */
@@ -1,6 +1,6 @@
1
1
  /** GitHub HTTP authentication, parsing, and fire-and-forget dispatch. */
2
2
  import { Webhooks } from '@octokit/webhooks';
3
- import { snapshotJsonValue } from '@prettier-ai/dsh-session';
3
+ import { snapshotJsonValue } from '@prettier-ai/dsh-util-values';
4
4
  import { WebhookDeliveryId, WebhookSourceId, } from '@prettier-ai/dsh-webhook';
5
5
  import { readBoundedUtf8Body, WebhookHttpError } from "./body.js";
6
6
  /** Require one unambiguous non-empty request header. */
@@ -1,5 +1,5 @@
1
1
  /** GitHub event values projected after signature verification. */
2
- import type { JsonValue } from '@prettier-ai/dsh-session';
2
+ import type { JsonValue } from '@prettier-ai/dsh-util-values';
3
3
  /** Signed GitHub JSON object. Event-specific field validation belongs to each rule. */
4
4
  export type GitHubJsonObject = {
5
5
  readonly [key: string]: JsonValue;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prettier-ai/dsh-webhook-github",
3
3
  "description": "Signed GitHub HTTP webhook adapter for the DeepSeek Harness webhook runtime",
4
- "version": "0.1.2-alpha.1",
4
+ "version": "0.1.2-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -37,25 +37,26 @@
37
37
  ],
38
38
  "license": "MIT",
39
39
  "peerDependencies": {
40
- "@prettier-ai/cordis": "^4.0.1",
41
- "@prettier-ai/dsh-host-webserver": "^0.1.2-alpha.1",
42
- "@prettier-ai/dsh-session": "^0.1.2-alpha.1",
43
- "@prettier-ai/dsh-webhook": "^0.1.2-alpha.1",
44
- "@prettier-ai/dsh-credentials": "^0.1.2-alpha.1",
45
- "@prettier-ai/dsh-invariants": "^0.1.2-alpha.1"
40
+ "@prettier-ai/cordis": "^4.0.2",
41
+ "@prettier-ai/dsh-credentials": "^0.1.2-alpha.2",
42
+ "@prettier-ai/dsh-host-webserver": "^0.1.2-alpha.2",
43
+ "@prettier-ai/dsh-invariants": "^0.1.2-alpha.2",
44
+ "@prettier-ai/dsh-session": "^0.1.2-alpha.2",
45
+ "@prettier-ai/dsh-webhook": "^0.1.2-alpha.2"
46
46
  },
47
47
  "dependencies": {
48
48
  "@octokit/webhooks": "^14.2.0",
49
- "@prettier-ai/schemastery": "^3.18.1"
49
+ "@prettier-ai/dsh-util-values": "^0.1.2-alpha.2",
50
+ "@prettier-ai/schemastery": "^3.18.2"
50
51
  },
51
52
  "devDependencies": {
52
- "@prettier-ai/cordis": "^4.0.1",
53
- "@prettier-ai/cordis-plugin-include": "^1.0.6",
54
- "@prettier-ai/cordis-plugin-loader": "^1.0.2",
55
- "@prettier-ai/dsh-credentials": "^0.1.2-alpha.1",
56
- "@prettier-ai/dsh-host-webserver": "^0.1.2-alpha.1",
57
- "@prettier-ai/dsh-invariants": "^0.1.2-alpha.1",
58
- "@prettier-ai/dsh-session": "^0.1.2-alpha.1",
59
- "@prettier-ai/dsh-webhook": "^0.1.2-alpha.1"
53
+ "@prettier-ai/cordis": "^4.0.2",
54
+ "@prettier-ai/cordis-plugin-loader": "^1.0.3",
55
+ "@prettier-ai/dsh-credentials": "^0.1.2-alpha.2",
56
+ "@prettier-ai/cordis-plugin-include": "^1.0.7",
57
+ "@prettier-ai/dsh-host-webserver": "^0.1.2-alpha.2",
58
+ "@prettier-ai/dsh-invariants": "^0.1.2-alpha.2",
59
+ "@prettier-ai/dsh-webhook": "^0.1.2-alpha.2",
60
+ "@prettier-ai/dsh-session": "^0.1.2-alpha.2"
60
61
  }
61
62
  }