@studyfetch/sdk 1.17.0 → 1.19.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/CHANGELOG.md +17 -0
- package/package.json +1 -1
- package/resources/v1/assignment-grader.d.mts +10 -56
- package/resources/v1/assignment-grader.d.mts.map +1 -1
- package/resources/v1/assignment-grader.d.ts +10 -56
- package/resources/v1/assignment-grader.d.ts.map +1 -1
- package/resources/v1/assignment-grader.js +5 -5
- package/resources/v1/assignment-grader.js.map +1 -1
- package/resources/v1/assignment-grader.mjs +5 -5
- package/resources/v1/assignment-grader.mjs.map +1 -1
- package/resources/v1/index.d.mts +3 -3
- package/resources/v1/index.d.mts.map +1 -1
- package/resources/v1/index.d.ts +3 -3
- package/resources/v1/index.d.ts.map +1 -1
- package/resources/v1/index.js +2 -2
- package/resources/v1/index.js.map +1 -1
- package/resources/v1/index.mjs +1 -1
- package/resources/v1/index.mjs.map +1 -1
- package/resources/v1/scenarios/index.d.mts +1 -1
- package/resources/v1/scenarios/index.d.mts.map +1 -1
- package/resources/v1/scenarios/index.d.ts +1 -1
- package/resources/v1/scenarios/index.d.ts.map +1 -1
- package/resources/v1/scenarios/index.js.map +1 -1
- package/resources/v1/scenarios/index.mjs.map +1 -1
- package/resources/v1/scenarios/scenarios.d.mts +47 -1
- package/resources/v1/scenarios/scenarios.d.mts.map +1 -1
- package/resources/v1/scenarios/scenarios.d.ts +47 -1
- package/resources/v1/scenarios/scenarios.d.ts.map +1 -1
- package/resources/v1/scenarios/scenarios.js.map +1 -1
- package/resources/v1/scenarios/scenarios.mjs.map +1 -1
- package/resources/v1/usage/analyst.d.mts +54 -0
- package/resources/v1/usage/analyst.d.mts.map +1 -0
- package/resources/v1/usage/analyst.d.ts +54 -0
- package/resources/v1/usage/analyst.d.ts.map +1 -0
- package/resources/v1/usage/analyst.js +57 -0
- package/resources/v1/usage/analyst.js.map +1 -0
- package/resources/v1/usage/analyst.mjs +53 -0
- package/resources/v1/usage/analyst.mjs.map +1 -0
- package/resources/v1/usage/index.d.mts +3 -0
- package/resources/v1/usage/index.d.mts.map +1 -0
- package/resources/v1/usage/index.d.ts +3 -0
- package/resources/v1/usage/index.d.ts.map +1 -0
- package/resources/v1/usage/index.js +9 -0
- package/resources/v1/usage/index.js.map +1 -0
- package/resources/v1/usage/index.mjs +4 -0
- package/resources/v1/usage/index.mjs.map +1 -0
- package/resources/v1/usage/usage.d.mts +114 -0
- package/resources/v1/usage/usage.d.mts.map +1 -0
- package/resources/v1/usage/usage.d.ts +114 -0
- package/resources/v1/usage/usage.d.ts.map +1 -0
- package/resources/v1/usage/usage.js +67 -0
- package/resources/v1/usage/usage.js.map +1 -0
- package/resources/v1/usage/usage.mjs +62 -0
- package/resources/v1/usage/usage.mjs.map +1 -0
- package/resources/v1/usage.d.mts +1 -109
- package/resources/v1/usage.d.mts.map +1 -1
- package/resources/v1/usage.d.ts +1 -109
- package/resources/v1/usage.d.ts.map +1 -1
- package/resources/v1/usage.js +2 -55
- package/resources/v1/usage.js.map +1 -1
- package/resources/v1/usage.mjs +1 -53
- package/resources/v1/usage.mjs.map +1 -1
- package/resources/v1/v1.d.mts +6 -6
- package/resources/v1/v1.d.mts.map +1 -1
- package/resources/v1/v1.d.ts +6 -6
- package/resources/v1/v1.d.ts.map +1 -1
- package/resources/v1/v1.js +2 -2
- package/resources/v1/v1.js.map +1 -1
- package/resources/v1/v1.mjs +2 -2
- package/resources/v1/v1.mjs.map +1 -1
- package/src/resources/v1/assignment-grader.ts +10 -71
- package/src/resources/v1/index.ts +3 -3
- package/src/resources/v1/scenarios/index.ts +1 -0
- package/src/resources/v1/scenarios/scenarios.ts +58 -0
- package/src/resources/v1/usage/analyst.ts +102 -0
- package/src/resources/v1/usage/index.ts +9 -0
- package/src/resources/v1/usage/usage.ts +188 -0
- package/src/resources/v1/usage.ts +1 -178
- package/src/resources/v1/v1.ts +6 -6
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -11,7 +11,7 @@ export class AssignmentGrader extends APIResource {
|
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```ts
|
|
14
|
-
* const
|
|
14
|
+
* const assignmentGraderResponse =
|
|
15
15
|
* await client.v1.assignmentGrader.create({
|
|
16
16
|
* rubric: {
|
|
17
17
|
* criteria: [{ pointsPossible: 0, title: 'title' }],
|
|
@@ -20,10 +20,7 @@ export class AssignmentGrader extends APIResource {
|
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
create(
|
|
24
|
-
body: AssignmentGraderCreateParams,
|
|
25
|
-
options?: RequestOptions,
|
|
26
|
-
): APIPromise<AssignmentGraderCreateResponse> {
|
|
23
|
+
create(body: AssignmentGraderCreateParams, options?: RequestOptions): APIPromise<AssignmentGraderResponse> {
|
|
27
24
|
return this._client.post('/api/v1/assignment-grader/create', { body, ...options });
|
|
28
25
|
}
|
|
29
26
|
|
|
@@ -32,7 +29,8 @@ export class AssignmentGrader extends APIResource {
|
|
|
32
29
|
*
|
|
33
30
|
* @example
|
|
34
31
|
* ```ts
|
|
35
|
-
* const
|
|
32
|
+
* const assignmentGraderResponses =
|
|
33
|
+
* await client.v1.assignmentGrader.getAll();
|
|
36
34
|
* ```
|
|
37
35
|
*/
|
|
38
36
|
getAll(options?: RequestOptions): APIPromise<AssignmentGraderGetAllResponse> {
|
|
@@ -44,17 +42,16 @@ export class AssignmentGrader extends APIResource {
|
|
|
44
42
|
*
|
|
45
43
|
* @example
|
|
46
44
|
* ```ts
|
|
47
|
-
* const
|
|
48
|
-
* 'id'
|
|
49
|
-
* );
|
|
45
|
+
* const assignmentGraderResponse =
|
|
46
|
+
* await client.v1.assignmentGrader.getByID('id');
|
|
50
47
|
* ```
|
|
51
48
|
*/
|
|
52
|
-
getByID(id: string, options?: RequestOptions): APIPromise<
|
|
49
|
+
getByID(id: string, options?: RequestOptions): APIPromise<AssignmentGraderResponse> {
|
|
53
50
|
return this._client.get(path`/api/v1/assignment-grader/get/${id}`, options);
|
|
54
51
|
}
|
|
55
52
|
}
|
|
56
53
|
|
|
57
|
-
export interface
|
|
54
|
+
export interface AssignmentGraderResponse {
|
|
58
55
|
/**
|
|
59
56
|
* Assignment grader ID
|
|
60
57
|
*/
|
|
@@ -81,64 +78,7 @@ export interface AssignmentGraderCreateResponse {
|
|
|
81
78
|
title: string;
|
|
82
79
|
}
|
|
83
80
|
|
|
84
|
-
export type AssignmentGraderGetAllResponse =
|
|
85
|
-
Array<AssignmentGraderGetAllResponse.AssignmentGraderGetAllResponseItem>;
|
|
86
|
-
|
|
87
|
-
export namespace AssignmentGraderGetAllResponse {
|
|
88
|
-
export interface AssignmentGraderGetAllResponseItem {
|
|
89
|
-
/**
|
|
90
|
-
* Assignment grader ID
|
|
91
|
-
*/
|
|
92
|
-
id: string;
|
|
93
|
-
|
|
94
|
-
/**
|
|
95
|
-
* Creation timestamp
|
|
96
|
-
*/
|
|
97
|
-
createdAt: string;
|
|
98
|
-
|
|
99
|
-
/**
|
|
100
|
-
* Overall grade percentage
|
|
101
|
-
*/
|
|
102
|
-
grade: number;
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* Grading results
|
|
106
|
-
*/
|
|
107
|
-
rubric: unknown;
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
* Assignment title
|
|
111
|
-
*/
|
|
112
|
-
title: string;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
export interface AssignmentGraderGetByIDResponse {
|
|
117
|
-
/**
|
|
118
|
-
* Assignment grader ID
|
|
119
|
-
*/
|
|
120
|
-
id: string;
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Creation timestamp
|
|
124
|
-
*/
|
|
125
|
-
createdAt: string;
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* Overall grade percentage
|
|
129
|
-
*/
|
|
130
|
-
grade: number;
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* Grading results
|
|
134
|
-
*/
|
|
135
|
-
rubric: unknown;
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
* Assignment title
|
|
139
|
-
*/
|
|
140
|
-
title: string;
|
|
141
|
-
}
|
|
81
|
+
export type AssignmentGraderGetAllResponse = Array<AssignmentGraderResponse>;
|
|
142
82
|
|
|
143
83
|
export interface AssignmentGraderCreateParams {
|
|
144
84
|
/**
|
|
@@ -205,9 +145,8 @@ export namespace AssignmentGraderCreateParams {
|
|
|
205
145
|
|
|
206
146
|
export declare namespace AssignmentGrader {
|
|
207
147
|
export {
|
|
208
|
-
type
|
|
148
|
+
type AssignmentGraderResponse as AssignmentGraderResponse,
|
|
209
149
|
type AssignmentGraderGetAllResponse as AssignmentGraderGetAllResponse,
|
|
210
|
-
type AssignmentGraderGetByIDResponse as AssignmentGraderGetByIDResponse,
|
|
211
150
|
type AssignmentGraderCreateParams as AssignmentGraderCreateParams,
|
|
212
151
|
};
|
|
213
152
|
}
|
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
export {
|
|
4
4
|
AssignmentGrader,
|
|
5
|
-
type
|
|
5
|
+
type AssignmentGraderResponse,
|
|
6
6
|
type AssignmentGraderGetAllResponse,
|
|
7
|
-
type AssignmentGraderGetByIDResponse,
|
|
8
7
|
type AssignmentGraderCreateParams,
|
|
9
8
|
} from './assignment-grader';
|
|
10
9
|
export {
|
|
@@ -53,6 +52,7 @@ export {
|
|
|
53
52
|
export {
|
|
54
53
|
Scenarios,
|
|
55
54
|
type Scenario,
|
|
55
|
+
type UpdateScenario,
|
|
56
56
|
type ScenarioCreateParams,
|
|
57
57
|
type ScenarioUpdateParams,
|
|
58
58
|
type ScenarioSubmitAnswerParams,
|
|
@@ -70,5 +70,5 @@ export {
|
|
|
70
70
|
type UsageGetStatsParams,
|
|
71
71
|
type UsageGetSummaryParams,
|
|
72
72
|
type UsageListEventsParams,
|
|
73
|
-
} from './usage';
|
|
73
|
+
} from './usage/index';
|
|
74
74
|
export { V1 } from './v1';
|
|
@@ -191,6 +191,63 @@ export interface Scenario {
|
|
|
191
191
|
tools?: Array<unknown>;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
export interface UpdateScenario {
|
|
195
|
+
/**
|
|
196
|
+
* Scenario name
|
|
197
|
+
*/
|
|
198
|
+
name: string;
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Scenario characters
|
|
202
|
+
*/
|
|
203
|
+
characters?: Array<unknown>;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Scenario context
|
|
207
|
+
*/
|
|
208
|
+
context?: string;
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Scenario description
|
|
212
|
+
*/
|
|
213
|
+
description?: string;
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Prompt for final answer
|
|
217
|
+
*/
|
|
218
|
+
finalAnswerPrompt?: string;
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Interaction format
|
|
222
|
+
*/
|
|
223
|
+
format?: string;
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Scenario goal
|
|
227
|
+
*/
|
|
228
|
+
goal?: string;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Character ID for greeting
|
|
232
|
+
*/
|
|
233
|
+
greetingCharacterId?: string;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Greeting message
|
|
237
|
+
*/
|
|
238
|
+
greetingMessage?: string;
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Whether scenario requires a final answer
|
|
242
|
+
*/
|
|
243
|
+
requiresFinalAnswer?: boolean;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Available tools
|
|
247
|
+
*/
|
|
248
|
+
tools?: Array<unknown>;
|
|
249
|
+
}
|
|
250
|
+
|
|
194
251
|
export interface ScenarioCreateParams {
|
|
195
252
|
/**
|
|
196
253
|
* Associated component ID
|
|
@@ -329,6 +386,7 @@ Scenarios.Submissions = Submissions;
|
|
|
329
386
|
export declare namespace Scenarios {
|
|
330
387
|
export {
|
|
331
388
|
type Scenario as Scenario,
|
|
389
|
+
type UpdateScenario as UpdateScenario,
|
|
332
390
|
type ScenarioCreateParams as ScenarioCreateParams,
|
|
333
391
|
type ScenarioUpdateParams as ScenarioUpdateParams,
|
|
334
392
|
type ScenarioSubmitAnswerParams as ScenarioSubmitAnswerParams,
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../../../core/resource';
|
|
4
|
+
import { APIPromise } from '../../../core/api-promise';
|
|
5
|
+
import { buildHeaders } from '../../../internal/headers';
|
|
6
|
+
import { RequestOptions } from '../../../internal/request-options';
|
|
7
|
+
|
|
8
|
+
export class Analyst extends APIResource {
|
|
9
|
+
/**
|
|
10
|
+
* Get test results for users and groups in JWT
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* ```ts
|
|
14
|
+
* await client.v1.usage.analyst.getTestQuestions();
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
getTestQuestions(options?: RequestOptions): APIPromise<void> {
|
|
18
|
+
return this._client.get('/api/v1/usage-analyst/test-questions', {
|
|
19
|
+
...options,
|
|
20
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Get chat messages for users and groups in JWT
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```ts
|
|
29
|
+
* await client.v1.usage.analyst.listChatMessages();
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
listChatMessages(options?: RequestOptions): APIPromise<void> {
|
|
33
|
+
return this._client.get('/api/v1/usage-analyst/chat-messages', {
|
|
34
|
+
...options,
|
|
35
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Get all events based on filters
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* ```ts
|
|
44
|
+
* await client.v1.usage.analyst.listEvents({
|
|
45
|
+
* endDate: 'endDate',
|
|
46
|
+
* eventType: 'material_created',
|
|
47
|
+
* startDate: 'startDate',
|
|
48
|
+
* });
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
listEvents(query: AnalystListEventsParams, options?: RequestOptions): APIPromise<void> {
|
|
52
|
+
return this._client.get('/api/v1/usage-analyst/events', {
|
|
53
|
+
query,
|
|
54
|
+
...options,
|
|
55
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface AnalystListEventsParams {
|
|
61
|
+
/**
|
|
62
|
+
* End date for filtering (ISO 8601)
|
|
63
|
+
*/
|
|
64
|
+
endDate: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Type of usage event to filter
|
|
68
|
+
*/
|
|
69
|
+
eventType:
|
|
70
|
+
| 'material_created'
|
|
71
|
+
| 'material_uploaded'
|
|
72
|
+
| 'material_processed'
|
|
73
|
+
| 'material_deleted'
|
|
74
|
+
| 'component_created'
|
|
75
|
+
| 'component_accessed'
|
|
76
|
+
| 'component_deleted'
|
|
77
|
+
| 'component_usage'
|
|
78
|
+
| 'chat_message_sent'
|
|
79
|
+
| 'chat_session_started'
|
|
80
|
+
| 'chat_session_ended'
|
|
81
|
+
| 'test_created'
|
|
82
|
+
| 'test_started'
|
|
83
|
+
| 'test_completed'
|
|
84
|
+
| 'test_question_answered'
|
|
85
|
+
| 'test_retaken'
|
|
86
|
+
| 'audio_recap_create'
|
|
87
|
+
| 'assignment_grader_create'
|
|
88
|
+
| 'api_call'
|
|
89
|
+
| 'cache_hit'
|
|
90
|
+
| 'sso_login'
|
|
91
|
+
| 'sso_logout'
|
|
92
|
+
| 'student_performance';
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Start date for filtering (ISO 8601)
|
|
96
|
+
*/
|
|
97
|
+
startDate: string;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export declare namespace Analyst {
|
|
101
|
+
export { type AnalystListEventsParams as AnalystListEventsParams };
|
|
102
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
export { Analyst, type AnalystListEventsParams } from './analyst';
|
|
4
|
+
export {
|
|
5
|
+
Usage,
|
|
6
|
+
type UsageGetStatsParams,
|
|
7
|
+
type UsageGetSummaryParams,
|
|
8
|
+
type UsageListEventsParams,
|
|
9
|
+
} from './usage';
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../../../core/resource';
|
|
4
|
+
import * as AnalystAPI from './analyst';
|
|
5
|
+
import { Analyst, AnalystListEventsParams } from './analyst';
|
|
6
|
+
import { APIPromise } from '../../../core/api-promise';
|
|
7
|
+
import { buildHeaders } from '../../../internal/headers';
|
|
8
|
+
import { RequestOptions } from '../../../internal/request-options';
|
|
9
|
+
|
|
10
|
+
export class Usage extends APIResource {
|
|
11
|
+
analyst: AnalystAPI.Analyst = new AnalystAPI.Analyst(this._client);
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Get usage statistics
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```ts
|
|
18
|
+
* await client.v1.usage.getStats();
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
getStats(query: UsageGetStatsParams | null | undefined = {}, options?: RequestOptions): APIPromise<void> {
|
|
22
|
+
return this._client.get('/api/v1/usage/stats', {
|
|
23
|
+
query,
|
|
24
|
+
...options,
|
|
25
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Get usage summary
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* ```ts
|
|
34
|
+
* await client.v1.usage.getSummary({
|
|
35
|
+
* endDate: 'endDate',
|
|
36
|
+
* period: 'hourly',
|
|
37
|
+
* startDate: 'startDate',
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
getSummary(query: UsageGetSummaryParams, options?: RequestOptions): APIPromise<void> {
|
|
42
|
+
return this._client.get('/api/v1/usage/summary', {
|
|
43
|
+
query,
|
|
44
|
+
...options,
|
|
45
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Get usage events
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* ```ts
|
|
54
|
+
* await client.v1.usage.listEvents();
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
listEvents(
|
|
58
|
+
query: UsageListEventsParams | null | undefined = {},
|
|
59
|
+
options?: RequestOptions,
|
|
60
|
+
): APIPromise<void> {
|
|
61
|
+
return this._client.get('/api/v1/usage/events', {
|
|
62
|
+
query,
|
|
63
|
+
...options,
|
|
64
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface UsageGetStatsParams {
|
|
70
|
+
/**
|
|
71
|
+
* End date for stats (ISO 8601)
|
|
72
|
+
*/
|
|
73
|
+
endDate?: string;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Filter by group ID
|
|
77
|
+
*/
|
|
78
|
+
groupId?: string;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Start date for stats (ISO 8601)
|
|
82
|
+
*/
|
|
83
|
+
startDate?: string;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Filter by user ID
|
|
87
|
+
*/
|
|
88
|
+
userId?: string;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface UsageGetSummaryParams {
|
|
92
|
+
/**
|
|
93
|
+
* End date for summary (ISO 8601)
|
|
94
|
+
*/
|
|
95
|
+
endDate: string;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Summary period
|
|
99
|
+
*/
|
|
100
|
+
period: 'hourly' | 'daily' | 'monthly';
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Start date for summary (ISO 8601)
|
|
104
|
+
*/
|
|
105
|
+
startDate: string;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Group results by
|
|
109
|
+
*/
|
|
110
|
+
groupBy?: 'user' | 'group' | 'model' | 'endpoint';
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export interface UsageListEventsParams {
|
|
114
|
+
/**
|
|
115
|
+
* End date for filtering (ISO 8601)
|
|
116
|
+
*/
|
|
117
|
+
endDate?: string;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Filter by event type
|
|
121
|
+
*/
|
|
122
|
+
eventType?:
|
|
123
|
+
| 'material_created'
|
|
124
|
+
| 'material_uploaded'
|
|
125
|
+
| 'material_processed'
|
|
126
|
+
| 'material_deleted'
|
|
127
|
+
| 'component_created'
|
|
128
|
+
| 'component_accessed'
|
|
129
|
+
| 'component_deleted'
|
|
130
|
+
| 'component_usage'
|
|
131
|
+
| 'chat_message_sent'
|
|
132
|
+
| 'chat_session_started'
|
|
133
|
+
| 'chat_session_ended'
|
|
134
|
+
| 'test_created'
|
|
135
|
+
| 'test_started'
|
|
136
|
+
| 'test_completed'
|
|
137
|
+
| 'test_question_answered'
|
|
138
|
+
| 'test_retaken'
|
|
139
|
+
| 'audio_recap_create'
|
|
140
|
+
| 'assignment_grader_create'
|
|
141
|
+
| 'api_call'
|
|
142
|
+
| 'cache_hit'
|
|
143
|
+
| 'sso_login'
|
|
144
|
+
| 'sso_logout'
|
|
145
|
+
| 'student_performance';
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Filter by group ID
|
|
149
|
+
*/
|
|
150
|
+
groupId?: string;
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Number of results to return
|
|
154
|
+
*/
|
|
155
|
+
limit?: number;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Offset for pagination
|
|
159
|
+
*/
|
|
160
|
+
offset?: number;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Filter by resource ID
|
|
164
|
+
*/
|
|
165
|
+
resourceId?: string;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Start date for filtering (ISO 8601)
|
|
169
|
+
*/
|
|
170
|
+
startDate?: string;
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Filter by user ID
|
|
174
|
+
*/
|
|
175
|
+
userId?: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
Usage.Analyst = Analyst;
|
|
179
|
+
|
|
180
|
+
export declare namespace Usage {
|
|
181
|
+
export {
|
|
182
|
+
type UsageGetStatsParams as UsageGetStatsParams,
|
|
183
|
+
type UsageGetSummaryParams as UsageGetSummaryParams,
|
|
184
|
+
type UsageListEventsParams as UsageListEventsParams,
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
export { Analyst as Analyst, type AnalystListEventsParams as AnalystListEventsParams };
|
|
188
|
+
}
|
|
@@ -1,180 +1,3 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
import { APIPromise } from '../../core/api-promise';
|
|
5
|
-
import { buildHeaders } from '../../internal/headers';
|
|
6
|
-
import { RequestOptions } from '../../internal/request-options';
|
|
7
|
-
|
|
8
|
-
export class Usage extends APIResource {
|
|
9
|
-
/**
|
|
10
|
-
* Get usage statistics
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```ts
|
|
14
|
-
* await client.v1.usage.getStats();
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
getStats(query: UsageGetStatsParams | null | undefined = {}, options?: RequestOptions): APIPromise<void> {
|
|
18
|
-
return this._client.get('/api/v1/usage/stats', {
|
|
19
|
-
query,
|
|
20
|
-
...options,
|
|
21
|
-
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Get usage summary
|
|
27
|
-
*
|
|
28
|
-
* @example
|
|
29
|
-
* ```ts
|
|
30
|
-
* await client.v1.usage.getSummary({
|
|
31
|
-
* endDate: 'endDate',
|
|
32
|
-
* period: 'hourly',
|
|
33
|
-
* startDate: 'startDate',
|
|
34
|
-
* });
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
getSummary(query: UsageGetSummaryParams, options?: RequestOptions): APIPromise<void> {
|
|
38
|
-
return this._client.get('/api/v1/usage/summary', {
|
|
39
|
-
query,
|
|
40
|
-
...options,
|
|
41
|
-
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* Get usage events
|
|
47
|
-
*
|
|
48
|
-
* @example
|
|
49
|
-
* ```ts
|
|
50
|
-
* await client.v1.usage.listEvents();
|
|
51
|
-
* ```
|
|
52
|
-
*/
|
|
53
|
-
listEvents(
|
|
54
|
-
query: UsageListEventsParams | null | undefined = {},
|
|
55
|
-
options?: RequestOptions,
|
|
56
|
-
): APIPromise<void> {
|
|
57
|
-
return this._client.get('/api/v1/usage/events', {
|
|
58
|
-
query,
|
|
59
|
-
...options,
|
|
60
|
-
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
61
|
-
});
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export interface UsageGetStatsParams {
|
|
66
|
-
/**
|
|
67
|
-
* End date for stats (ISO 8601)
|
|
68
|
-
*/
|
|
69
|
-
endDate?: string;
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* Filter by group ID
|
|
73
|
-
*/
|
|
74
|
-
groupId?: string;
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Start date for stats (ISO 8601)
|
|
78
|
-
*/
|
|
79
|
-
startDate?: string;
|
|
80
|
-
|
|
81
|
-
/**
|
|
82
|
-
* Filter by user ID
|
|
83
|
-
*/
|
|
84
|
-
userId?: string;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export interface UsageGetSummaryParams {
|
|
88
|
-
/**
|
|
89
|
-
* End date for summary (ISO 8601)
|
|
90
|
-
*/
|
|
91
|
-
endDate: string;
|
|
92
|
-
|
|
93
|
-
/**
|
|
94
|
-
* Summary period
|
|
95
|
-
*/
|
|
96
|
-
period: 'hourly' | 'daily' | 'monthly';
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* Start date for summary (ISO 8601)
|
|
100
|
-
*/
|
|
101
|
-
startDate: string;
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Group results by
|
|
105
|
-
*/
|
|
106
|
-
groupBy?: 'user' | 'group' | 'model' | 'endpoint';
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
export interface UsageListEventsParams {
|
|
110
|
-
/**
|
|
111
|
-
* End date for filtering (ISO 8601)
|
|
112
|
-
*/
|
|
113
|
-
endDate?: string;
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* Filter by event type
|
|
117
|
-
*/
|
|
118
|
-
eventType?:
|
|
119
|
-
| 'material_created'
|
|
120
|
-
| 'material_uploaded'
|
|
121
|
-
| 'material_processed'
|
|
122
|
-
| 'material_deleted'
|
|
123
|
-
| 'component_created'
|
|
124
|
-
| 'component_accessed'
|
|
125
|
-
| 'component_deleted'
|
|
126
|
-
| 'component_usage'
|
|
127
|
-
| 'chat_message_sent'
|
|
128
|
-
| 'chat_session_started'
|
|
129
|
-
| 'chat_session_ended'
|
|
130
|
-
| 'test_created'
|
|
131
|
-
| 'test_started'
|
|
132
|
-
| 'test_completed'
|
|
133
|
-
| 'test_question_answered'
|
|
134
|
-
| 'test_retaken'
|
|
135
|
-
| 'audio_recap_create'
|
|
136
|
-
| 'assignment_grader_create'
|
|
137
|
-
| 'api_call'
|
|
138
|
-
| 'cache_hit'
|
|
139
|
-
| 'sso_login'
|
|
140
|
-
| 'sso_logout'
|
|
141
|
-
| 'student_performance';
|
|
142
|
-
|
|
143
|
-
/**
|
|
144
|
-
* Filter by group ID
|
|
145
|
-
*/
|
|
146
|
-
groupId?: string;
|
|
147
|
-
|
|
148
|
-
/**
|
|
149
|
-
* Number of results to return
|
|
150
|
-
*/
|
|
151
|
-
limit?: number;
|
|
152
|
-
|
|
153
|
-
/**
|
|
154
|
-
* Offset for pagination
|
|
155
|
-
*/
|
|
156
|
-
offset?: number;
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
* Filter by resource ID
|
|
160
|
-
*/
|
|
161
|
-
resourceId?: string;
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* Start date for filtering (ISO 8601)
|
|
165
|
-
*/
|
|
166
|
-
startDate?: string;
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* Filter by user ID
|
|
170
|
-
*/
|
|
171
|
-
userId?: string;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
export declare namespace Usage {
|
|
175
|
-
export {
|
|
176
|
-
type UsageGetStatsParams as UsageGetStatsParams,
|
|
177
|
-
type UsageGetSummaryParams as UsageGetSummaryParams,
|
|
178
|
-
type UsageListEventsParams as UsageListEventsParams,
|
|
179
|
-
};
|
|
180
|
-
}
|
|
3
|
+
export * from './usage/index';
|