@thinkai/tai-api-contract 2.51.0 → 2.51.1
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/openapi/openapi.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ThinkAI API
|
|
4
|
-
version: 2.51.
|
|
4
|
+
version: 2.51.1
|
|
5
5
|
description: >
|
|
6
6
|
Contract surface for the AI Driven SDLC backend used by ThinkAI.
|
|
7
7
|
Workspace-scoped routes use `/workspaces/{workspaceId}/...`.
|
|
@@ -8128,6 +8128,14 @@ components:
|
|
|
8128
8128
|
minimum: 0
|
|
8129
8129
|
dataQuality:
|
|
8130
8130
|
$ref: "#/components/schemas/AiAssistedCodeDataQuality"
|
|
8131
|
+
engagementAiLines:
|
|
8132
|
+
type: integer
|
|
8133
|
+
minimum: 0
|
|
8134
|
+
description: Accepted AI editor lines from engagement telemetry for this day.
|
|
8135
|
+
mergedPrLoc:
|
|
8136
|
+
type: integer
|
|
8137
|
+
minimum: 0
|
|
8138
|
+
description: Merged PR line denominator for this day when GitHub productivity data exists.
|
|
8131
8139
|
|
|
8132
8140
|
AiUsageSpendAiAssistedCodeWeekDto:
|
|
8133
8141
|
type: object
|
|
@@ -8166,6 +8174,14 @@ components:
|
|
|
8166
8174
|
minimum: 0
|
|
8167
8175
|
dataQuality:
|
|
8168
8176
|
$ref: "#/components/schemas/AiAssistedCodeDataQuality"
|
|
8177
|
+
engagementAiLines:
|
|
8178
|
+
type: integer
|
|
8179
|
+
minimum: 0
|
|
8180
|
+
description: Accepted AI editor lines from engagement telemetry for this week.
|
|
8181
|
+
mergedPrLoc:
|
|
8182
|
+
type: integer
|
|
8183
|
+
minimum: 0
|
|
8184
|
+
description: Merged PR line denominator for this week when GitHub productivity data exists.
|
|
8169
8185
|
|
|
8170
8186
|
AiUsageSpendAiAssistedCodePercentageDto:
|
|
8171
8187
|
type: object
|
package/package.json
CHANGED
package/src/generated/openapi.ts
CHANGED
|
@@ -3301,6 +3301,10 @@ export interface components {
|
|
|
3301
3301
|
aiLoc: number;
|
|
3302
3302
|
humanLoc: number;
|
|
3303
3303
|
dataQuality: components["schemas"]["AiAssistedCodeDataQuality"];
|
|
3304
|
+
/** @description Accepted AI editor lines from engagement telemetry for this day. */
|
|
3305
|
+
engagementAiLines?: number;
|
|
3306
|
+
/** @description Merged PR line denominator for this day when GitHub productivity data exists. */
|
|
3307
|
+
mergedPrLoc?: number;
|
|
3304
3308
|
};
|
|
3305
3309
|
AiUsageSpendAiAssistedCodeWeekDto: {
|
|
3306
3310
|
/** Format: date-time */
|
|
@@ -3313,6 +3317,10 @@ export interface components {
|
|
|
3313
3317
|
aiLoc: number;
|
|
3314
3318
|
humanLoc: number;
|
|
3315
3319
|
dataQuality: components["schemas"]["AiAssistedCodeDataQuality"];
|
|
3320
|
+
/** @description Accepted AI editor lines from engagement telemetry for this week. */
|
|
3321
|
+
engagementAiLines?: number;
|
|
3322
|
+
/** @description Merged PR line denominator for this week when GitHub productivity data exists. */
|
|
3323
|
+
mergedPrLoc?: number;
|
|
3316
3324
|
};
|
|
3317
3325
|
AiUsageSpendAiAssistedCodePercentageDto: {
|
|
3318
3326
|
/** Format: uuid */
|