@iblai/iblai-api 2025.11.11-teams-bot-renovation-4-core → 2025.11.12-teams-bot-renovation-core

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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.89.2-core',
113
+ VERSION: '4.89.4-core',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.89.2-core',
111
+ VERSION: '4.89.4-core',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.89.2-core',
117
+ VERSION: '4.89.4-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -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
- * Advanced report filtering. e,g: {'username': 'username1, username2' }
7
+ * Start date for the report
8
8
  */
9
- params?: Record<string, any>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "2025.11.11-teams-bot-renovation-4-core",
3
+ "version": "2025.11.12-teams-bot-renovation-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.2-core
4
+ version: 4.89.4-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/content/:
@@ -35950,7 +35950,7 @@ components:
35950
35950
  additionalProperties: {}
35951
35951
  writeOnly: true
35952
35952
  description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
35953
- "..."}]'
35953
+ "...", "name": "..."}]'
35954
35954
  created_at:
35955
35955
  type: string
35956
35956
  format: date-time
@@ -37240,7 +37240,7 @@ components:
37240
37240
  additionalProperties: {}
37241
37241
  writeOnly: true
37242
37242
  description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
37243
- "..."}]'
37243
+ "...", "name": "..."}]'
37244
37244
  created_at:
37245
37245
  type: string
37246
37246
  format: date-time
@@ -41070,16 +41070,25 @@ components:
41070
41070
  type: string
41071
41071
  description: Report slug, this is passed when calling the create report
41072
41072
  endpoint
41073
- params:
41074
- type: object
41075
- additionalProperties: {}
41076
- description: 'Advanced report filtering. e,g: {''username'': ''username1,
41077
- username2'' }'
41073
+ start_date:
41074
+ type: string
41075
+ format: date
41076
+ description: Start date for the report
41077
+ end_date:
41078
+ type: string
41079
+ format: date
41080
+ description: End date for the report
41081
+ mentor:
41082
+ type: string
41083
+ description: Mentor ID for the report (Only for mentor reports)
41084
+ course_id:
41085
+ type: string
41086
+ description: Course ID for the report (Only for course reports)
41078
41087
  query:
41079
41088
  type: string
41080
41089
  description: "\nAdvanced Query to run the report, supports SQL Like queries.\
41081
- \ \n\ne.g For date type filtering \ndate_joined > '2021-01-01' \n\nSee\
41082
- \ https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.query.html#pandas.DataFrame.query\n\
41090
+ \ This runs against the final result after all filters are applied.\n\n\
41091
+ 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\
41083
41092
  \ "
41084
41093
  ReportStatus:
41085
41094
  type: object
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.89.2-core',
24
+ VERSION: '4.89.4-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -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
- * Advanced report filtering. e,g: {'username': 'username1, username2' }
11
+ * Start date for the report
12
12
  */
13
- params?: Record<string, any>;
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'