@ancplua/qyl-api-schema 5.1.0 → 6.0.0

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.
@@ -6728,9 +6728,6 @@
6728
6728
  "agent_id": {
6729
6729
  "$ref": "#/$defs/Workflow.WorkflowAgentId"
6730
6730
  },
6731
- "parent_node_id": {
6732
- "$ref": "#/$defs/Workflow.WorkflowNodeId"
6733
- },
6734
6731
  "started_at": {
6735
6732
  "type": "string",
6736
6733
  "format": "date-time"
@@ -21332,9 +21332,6 @@
21332
21332
  "agent_id": {
21333
21333
  "$ref": "#/components/schemas/Workflow.WorkflowAgentId"
21334
21334
  },
21335
- "parent_node_id": {
21336
- "$ref": "#/components/schemas/Workflow.WorkflowNodeId"
21337
- },
21338
21335
  "started_at": {
21339
21336
  "type": "string",
21340
21337
  "format": "date-time"
@@ -1439,7 +1439,6 @@ export interface WorkflowGraphNode {
1439
1439
  "status": string;
1440
1440
  "attempt_id"?: WorkflowAttemptId;
1441
1441
  "agent_id"?: WorkflowAgentId;
1442
- "parent_node_id"?: WorkflowNodeId;
1443
1442
  "started_at"?: string;
1444
1443
  "ended_at"?: string;
1445
1444
  "duration_ms"?: number;
@@ -392,4 +392,4 @@ export const FetchTelemetryViewValues = {
392
392
  };
393
393
  // --- contract revision (scripts/emit-contract-revision.mjs) ---
394
394
  /** Revision of the API contract these types were emitted from; compare against HealthReport.contract_revision. */
395
- export const CONTRACT_REVISION = "sha256:9d94fe8f5c913e4b";
395
+ export const CONTRACT_REVISION = "sha256:f32216c3a3172ab0";
@@ -375,9 +375,6 @@ model WorkflowGraphNode {
375
375
  @encodedName("application/json", "agent_id")
376
376
  agentId?: WorkflowAgentId;
377
377
 
378
- @encodedName("application/json", "parent_node_id")
379
- parentNodeId?: WorkflowNodeId;
380
-
381
378
  @encodedName("application/json", "started_at")
382
379
  startedAt?: utcDateTime;
383
380
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancplua/qyl-api-schema",
3
- "version": "5.1.0",
3
+ "version": "6.0.0",
4
4
  "description": "TypeSpec source of truth for qyl API contracts. Emits OpenAPI, JSON Schema, Qyl.Api.Contracts DTOs, and TypeScript contract types; not an OpenTelemetry package, storage schema, or server implementation.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {