@onlineapps/external-io-contract 0.1.0 → 0.1.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/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@onlineapps/external-io-contract",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Shared contract for external HTTP I/O — correlation grammar, HMAC webhook signing, and JSON Schemas for outbound/inbound envelopes. Consumed by api_gateway, api_delivery_dispatcher and pdke_orion-grit.",
5
5
  "main": "src/index.js",
6
6
  "exports": {
7
7
  ".": "./src/index.js",
8
- "./schemas/*": "./schemas/*"
8
+ "./schemas/*": "./schemas/*",
9
+ "./package.json": "./package.json"
9
10
  },
10
11
  "scripts": {
11
12
  "test": "jest",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "$id": "https://onlineapps.cz/schemas/external-io/envelopes/delivery-result.v0.schema.json",
4
4
  "title": "Delivery result (v0 draft)",
5
- "description": "Výsledek jednoho pokusu o doručení; dispatcher ho publikuje do fronty delivery.result pro audit a monitoring. DRAFT — stabilizuje se s OAuth2 adapterem (ADR-0001 Track B).",
5
+ "description": "Výsledek jednoho pokusu o doručení. DRAFT zatím nic tento tvar nepublikuje; dispatcher dnes posílá agregát za workflow na monitoring.workflow. Stabilizuje se s OAuth2 adapterem (ADR-0001 Track B); až se rozhodne, doplní se do události monitoring.workflow, ne do samostatné fronty (viz architecture/external-io-contract.md §5.2).",
6
6
  "type": "object",
7
7
  "required": ["envelope_version", "workflow_id", "destination_name", "status"],
8
8
  "additionalProperties": false,