@ancplua/qyl-api-schema 0.5.11 → 0.5.12

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.
@@ -1803,11 +1803,6 @@
1803
1803
  "type": "string"
1804
1804
  },
1805
1805
  "description": "Providers used in session"
1806
- },
1807
- "estimated_cost_usd": {
1808
- "type": "number",
1809
- "format": "double",
1810
- "description": "Estimated cost in USD"
1811
1806
  }
1812
1807
  },
1813
1808
  "description": "Session GenAI usage summary"
@@ -5799,11 +5799,6 @@
5799
5799
  "type": "string"
5800
5800
  },
5801
5801
  "description": "Providers used in session"
5802
- },
5803
- "estimated_cost_usd": {
5804
- "type": "number",
5805
- "format": "double",
5806
- "description": "Estimated cost in USD"
5807
5802
  }
5808
5803
  },
5809
5804
  "description": "Session GenAI usage summary"
@@ -795,7 +795,6 @@ export interface SessionGenAiUsage {
795
795
  "total_output_tokens": number;
796
796
  "models_used": string[];
797
797
  "providers_used": string[];
798
- "estimated_cost_usd"?: number;
799
798
  }
800
799
  export interface SessionStats {
801
800
  "active_sessions": number;
@@ -236,10 +236,6 @@ model SessionGenAiUsage {
236
236
  @doc("Providers used in session")
237
237
  @encodedName("application/json", "providers_used")
238
238
  providersUsed: string[];
239
-
240
- @doc("Estimated cost in USD")
241
- @encodedName("application/json", "estimated_cost_usd")
242
- estimatedCostUsd?: float64;
243
239
  }
244
240
 
245
241
  // =============================================================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancplua/qyl-api-schema",
3
- "version": "0.5.11",
3
+ "version": "0.5.12",
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": {