@thinkai/tai-api-contract 2.51.0-pr.877.dd26e497 → 2.51.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.
package/openapi/openapi.yaml
CHANGED
|
@@ -2205,6 +2205,26 @@ paths:
|
|
|
2205
2205
|
schema:
|
|
2206
2206
|
type: string
|
|
2207
2207
|
format: date-time
|
|
2208
|
+
- name: memberExternalId
|
|
2209
|
+
in: query
|
|
2210
|
+
description: >
|
|
2211
|
+
When set, aggregate engagement metrics for a single AI-tool member
|
|
2212
|
+
(user detail pages). Mutually exclusive with `scopeTeamId`.
|
|
2213
|
+
schema:
|
|
2214
|
+
type: string
|
|
2215
|
+
- name: scopeTeamId
|
|
2216
|
+
in: query
|
|
2217
|
+
description: >
|
|
2218
|
+
Org-chart team id — aggregate engagement for members mapped to that team
|
|
2219
|
+
(team detail pages). Mutually exclusive with `memberExternalId`.
|
|
2220
|
+
schema:
|
|
2221
|
+
type: string
|
|
2222
|
+
- name: provider
|
|
2223
|
+
in: query
|
|
2224
|
+
description: Optional provider id filter (`cursor`, `claude`) for detail pages.
|
|
2225
|
+
schema:
|
|
2226
|
+
type: string
|
|
2227
|
+
enum: [cursor, claude]
|
|
2208
2228
|
responses:
|
|
2209
2229
|
"200":
|
|
2210
2230
|
description: Provider engagement insight cards
|
package/package.json
CHANGED
package/src/generated/openapi.ts
CHANGED
|
@@ -7766,6 +7766,12 @@ export interface operations {
|
|
|
7766
7766
|
team?: string;
|
|
7767
7767
|
/** @description ISO timestamp for the end of the last weekly bucket; omit for current week. */
|
|
7768
7768
|
windowEnd?: string;
|
|
7769
|
+
/** @description When set, aggregate engagement metrics for a single AI-tool member (user detail pages). Mutually exclusive with `scopeTeamId`. */
|
|
7770
|
+
memberExternalId?: string;
|
|
7771
|
+
/** @description Org-chart team id — aggregate engagement for members mapped to that team (team detail pages). Mutually exclusive with `memberExternalId`. */
|
|
7772
|
+
scopeTeamId?: string;
|
|
7773
|
+
/** @description Optional provider id filter (`cursor`, `claude`) for detail pages. */
|
|
7774
|
+
provider?: "cursor" | "claude";
|
|
7769
7775
|
};
|
|
7770
7776
|
header?: never;
|
|
7771
7777
|
path: {
|