@iblai/iblai-api 4.112.0-test-ai → 4.112.1-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.
@@ -208,7 +208,12 @@ export class NotificationsService {
208
208
  org: string,
209
209
  userId: string,
210
210
  channel?: string,
211
- status?: string,
211
+ /**
212
+ * * `READ` - Read
213
+ * * `UNREAD` - Unread
214
+ * * `CANCELLED` - Cancelled
215
+ */
216
+ status?: 'READ' | 'UNREAD' | 'CANCELLED',
212
217
  }): CancelablePromise<NotificationCount> {
213
218
  return __request(OpenAPI, {
214
219
  method: 'GET',
@@ -151,6 +151,11 @@ export class ReportsService {
151
151
  * - status: Current status of the report if it has been previously requested
152
152
  *
153
153
  * The status will include details like the report ID, state, and download URL if completed.
154
+ *
155
+ * Required Permissions:
156
+ * Minimal Policy: Analytics Report Manager role or Tenant Admin role
157
+ * Action: Ibl.Analytics/Reports* (all report actions)
158
+ * Resource: /platforms/{platform_pk}/users/ or /platforms/{platform_pk}/usergroups/
154
159
  * @returns ReportList
155
160
  * @throws ApiError
156
161
  */
@@ -169,6 +174,11 @@ export class ReportsService {
169
174
  }
170
175
  /**
171
176
  * Returns details of a specific report type including its status if previously requested.
177
+ *
178
+ * Required Permissions:
179
+ * Minimal Policy: Analytics Report Manager role or Tenant Admin role
180
+ * Action: Ibl.Analytics/Reports* (all report actions)
181
+ * Resource: /platforms/{platform_pk}/users/ or /platforms/{platform_pk}/usergroups/
172
182
  * @returns ReportDetail
173
183
  * @throws ApiError
174
184
  */
@@ -201,6 +211,11 @@ export class ReportsService {
201
211
  * - force: (optional) Force generation of a new report even if one exists
202
212
  * - filters: (optional) Additional filters for the report
203
213
  * - departments: (optional) Department IDs to filter by
214
+ *
215
+ * Required Permissions:
216
+ * Minimal Policy: Analytics Report Manager role or Tenant Admin role
217
+ * Action: Ibl.Analytics/Reports* (all report actions)
218
+ * Resource: /platforms/{platform_pk}/users/ or /platforms/{platform_pk}/usergroups/
204
219
  * @returns ReportCreate
205
220
  * @throws ApiError
206
221
  */