@iblai/iblai-api 2025.11.11-teams-bot-renovation-4-ai → 2025.11.12-teams-bot-renovation-ai
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/NotificationTemplateDetail.d.ts +1 -1
- package/dist/types/models/PatchedNotificationTemplateDetail.d.ts +1 -1
- package/dist/types/models/ReportRequest.d.ts +15 -3
- package/package.json +1 -1
- package/sdk_schema.yml +19 -10
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/NotificationTemplateDetail.ts +1 -1
- package/src/models/PatchedNotificationTemplateDetail.ts +1 -1
- package/src/models/ReportRequest.ts +15 -3
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -91,7 +91,7 @@ export type NotificationTemplateDetail = {
|
|
|
91
91
|
periodic_execution_time?: string;
|
|
92
92
|
periodic_timezone?: string;
|
|
93
93
|
/**
|
|
94
|
-
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "..."}]
|
|
94
|
+
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "...", "name": "..."}]
|
|
95
95
|
*/
|
|
96
96
|
periodic_mentors?: Array<Record<string, any>>;
|
|
97
97
|
/**
|
|
@@ -91,7 +91,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
91
91
|
periodic_execution_time?: string;
|
|
92
92
|
periodic_timezone?: string;
|
|
93
93
|
/**
|
|
94
|
-
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "..."}]
|
|
94
|
+
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "...", "name": "..."}]
|
|
95
95
|
*/
|
|
96
96
|
periodic_mentors?: Array<Record<string, any>>;
|
|
97
97
|
/**
|
|
@@ -4,12 +4,24 @@ export type ReportRequest = {
|
|
|
4
4
|
*/
|
|
5
5
|
report_name?: string;
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Start date for the report
|
|
8
8
|
*/
|
|
9
|
-
|
|
9
|
+
start_date?: string;
|
|
10
|
+
/**
|
|
11
|
+
* End date for the report
|
|
12
|
+
*/
|
|
13
|
+
end_date?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Mentor ID for the report (Only for mentor reports)
|
|
16
|
+
*/
|
|
17
|
+
mentor?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Course ID for the report (Only for course reports)
|
|
20
|
+
*/
|
|
21
|
+
course_id?: string;
|
|
10
22
|
/**
|
|
11
23
|
*
|
|
12
|
-
* Advanced Query to run the report, supports SQL Like queries.
|
|
24
|
+
* Advanced Query to run the report, supports SQL Like queries. This runs against the final result after all filters are applied.
|
|
13
25
|
*
|
|
14
26
|
* e.g For date type filtering
|
|
15
27
|
* date_joined > '2021-01-01'
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.89.
|
|
4
|
+
version: 4.89.4-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -77418,7 +77418,7 @@ components:
|
|
|
77418
77418
|
additionalProperties: {}
|
|
77419
77419
|
writeOnly: true
|
|
77420
77420
|
description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
|
|
77421
|
-
"..."}]'
|
|
77421
|
+
"...", "name": "..."}]'
|
|
77422
77422
|
created_at:
|
|
77423
77423
|
type: string
|
|
77424
77424
|
format: date-time
|
|
@@ -80292,7 +80292,7 @@ components:
|
|
|
80292
80292
|
additionalProperties: {}
|
|
80293
80293
|
writeOnly: true
|
|
80294
80294
|
description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
|
|
80295
|
-
"..."}]'
|
|
80295
|
+
"...", "name": "..."}]'
|
|
80296
80296
|
created_at:
|
|
80297
80297
|
type: string
|
|
80298
80298
|
format: date-time
|
|
@@ -85690,16 +85690,25 @@ components:
|
|
|
85690
85690
|
type: string
|
|
85691
85691
|
description: Report slug, this is passed when calling the create report
|
|
85692
85692
|
endpoint
|
|
85693
|
-
|
|
85694
|
-
type:
|
|
85695
|
-
|
|
85696
|
-
description:
|
|
85697
|
-
|
|
85693
|
+
start_date:
|
|
85694
|
+
type: string
|
|
85695
|
+
format: date
|
|
85696
|
+
description: Start date for the report
|
|
85697
|
+
end_date:
|
|
85698
|
+
type: string
|
|
85699
|
+
format: date
|
|
85700
|
+
description: End date for the report
|
|
85701
|
+
mentor:
|
|
85702
|
+
type: string
|
|
85703
|
+
description: Mentor ID for the report (Only for mentor reports)
|
|
85704
|
+
course_id:
|
|
85705
|
+
type: string
|
|
85706
|
+
description: Course ID for the report (Only for course reports)
|
|
85698
85707
|
query:
|
|
85699
85708
|
type: string
|
|
85700
85709
|
description: "\nAdvanced Query to run the report, supports SQL Like queries.\
|
|
85701
|
-
\
|
|
85702
|
-
\ https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.query.html#pandas.DataFrame.query\n\
|
|
85710
|
+
\ This runs against the final result after all filters are applied.\n\n\
|
|
85711
|
+
e.g For date type filtering \ndate_joined > '2021-01-01' \n\nSee https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.query.html#pandas.DataFrame.query\n\
|
|
85703
85712
|
\ "
|
|
85704
85713
|
ReportStatus:
|
|
85705
85714
|
type: object
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -95,7 +95,7 @@ export type NotificationTemplateDetail = {
|
|
|
95
95
|
periodic_execution_time?: string;
|
|
96
96
|
periodic_timezone?: string;
|
|
97
97
|
/**
|
|
98
|
-
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "..."}]
|
|
98
|
+
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "...", "name": "..."}]
|
|
99
99
|
*/
|
|
100
100
|
periodic_mentors?: Array<Record<string, any>>;
|
|
101
101
|
/**
|
|
@@ -95,7 +95,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
95
95
|
periodic_execution_time?: string;
|
|
96
96
|
periodic_timezone?: string;
|
|
97
97
|
/**
|
|
98
|
-
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "..."}]
|
|
98
|
+
* List of mentor configurations: [{"unique_id": "uuid", "prompt": "...", "name": "..."}]
|
|
99
99
|
*/
|
|
100
100
|
periodic_mentors?: Array<Record<string, any>>;
|
|
101
101
|
/**
|
|
@@ -8,12 +8,24 @@ export type ReportRequest = {
|
|
|
8
8
|
*/
|
|
9
9
|
report_name?: string;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Start date for the report
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
start_date?: string;
|
|
14
|
+
/**
|
|
15
|
+
* End date for the report
|
|
16
|
+
*/
|
|
17
|
+
end_date?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Mentor ID for the report (Only for mentor reports)
|
|
20
|
+
*/
|
|
21
|
+
mentor?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Course ID for the report (Only for course reports)
|
|
24
|
+
*/
|
|
25
|
+
course_id?: string;
|
|
14
26
|
/**
|
|
15
27
|
*
|
|
16
|
-
* Advanced Query to run the report, supports SQL Like queries.
|
|
28
|
+
* Advanced Query to run the report, supports SQL Like queries. This runs against the final result after all filters are applied.
|
|
17
29
|
*
|
|
18
30
|
* e.g For date type filtering
|
|
19
31
|
* date_joined > '2021-01-01'
|