@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.
- package/dist/index.cjs.js +32 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +33 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +32 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/models/ArtifactVersion.d.ts +8 -0
- package/dist/types/models/InterfaceEnum.d.ts +8 -0
- package/dist/types/models/NotificationCount.d.ts +2 -1
- package/dist/types/models/NotificationSourceTypeEnum.d.ts +3 -1
- package/dist/types/models/ReportRequest.d.ts +4 -0
- package/dist/types/services/NotificationsService.d.ts +6 -2
- package/dist/types/services/ReportsService.d.ts +15 -0
- package/package.json +1 -1
- package/sdk_schema.yml +53 -4
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +1 -0
- package/src/models/ArtifactVersion.ts +8 -0
- package/src/models/InterfaceEnum.ts +12 -0
- package/src/models/NotificationCount.ts +2 -1
- package/src/models/NotificationSourceTypeEnum.ts +2 -0
- package/src/models/ReportRequest.ts +4 -0
- package/src/services/NotificationsService.ts +6 -1
- package/src/services/ReportsService.ts +15 -0
|
@@ -208,7 +208,12 @@ export class NotificationsService {
|
|
|
208
208
|
org: string,
|
|
209
209
|
userId: string,
|
|
210
210
|
channel?: string,
|
|
211
|
-
|
|
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
|
*/
|