@cube-dev/platform-client 0.0.20 → 0.1.1
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 +30 -0
- package/README.md +81 -0
- package/dist/schema.d.ts +345 -279
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -1
package/dist/schema.d.ts
CHANGED
|
@@ -317,6 +317,8 @@ export interface paths {
|
|
|
317
317
|
* Results are scoped to the calling user: only folders the user can see are returned. A folder is visible when the user owns it, has been granted access to it directly, or has access to something inside it (a sub-folder, workbook, or dashboard), in which case the ancestor folders are surfaced as navigation.
|
|
318
318
|
*
|
|
319
319
|
* This endpoint is not recursive — it returns a single level of the folder tree per call. Use `parentId` to walk deeper, or `GET /folders/{folderId}/ancestors` to resolve a breadcrumb path.
|
|
320
|
+
*
|
|
321
|
+
* Results are returned in pages using cursor-based pagination: pass `first` to set the page size and `after` (the previous response's `pageInfo.endCursor`) to fetch the next page. The legacy `data` and `count` fields are still populated for backwards compatibility but are deprecated in favour of `items` and `pageInfo`.
|
|
320
322
|
*/
|
|
321
323
|
get: operations["FoldersPublicController.getFolders"];
|
|
322
324
|
put?: never;
|
|
@@ -404,13 +406,17 @@ export interface paths {
|
|
|
404
406
|
};
|
|
405
407
|
/**
|
|
406
408
|
* List scheduled notifications
|
|
407
|
-
* @description
|
|
409
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
410
|
+
*
|
|
411
|
+
* Returns the deployment’s scheduled notifications (recurring dashboard runs), ordered by creation time (newest first) and cursor-paginated. Optionally filter to a single dashboard with `dashboardId`. Each item describes the schedule only; recipients are managed through the `/recipients` sub-resource.
|
|
408
412
|
*/
|
|
409
413
|
get: operations["NotificationsPublicController.getNotifications"];
|
|
410
414
|
put?: never;
|
|
411
415
|
/**
|
|
412
416
|
* Create a scheduled notification
|
|
413
|
-
* @description
|
|
417
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
418
|
+
*
|
|
419
|
+
* Creates a scheduled notification — a recurring run of a dashboard whose rendered result is delivered to its recipients. The cadence is set by `scheduleType` plus the relevant time fields (`minute`, `hour`, `dayOfWeek`, `dayOfMonth`) or a raw `customCron` expression when `scheduleType` is `CUSTOM`; `timezone` defaults to UTC. The target `dashboardId` must belong to this deployment, otherwise `404` is returned. The created notification has no recipients — add them via `POST /notifications/{id}/recipients`.
|
|
414
420
|
*/
|
|
415
421
|
post: operations["NotificationsPublicController.createNotification"];
|
|
416
422
|
delete?: never;
|
|
@@ -428,18 +434,24 @@ export interface paths {
|
|
|
428
434
|
};
|
|
429
435
|
/**
|
|
430
436
|
* Get a scheduled notification
|
|
431
|
-
* @description
|
|
437
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
438
|
+
*
|
|
439
|
+
* Returns a single scheduled notification by id, including its cron expression, timezone, enabled state, notification format, and a human-readable schedule summary. Returns `404` if the notification does not exist or does not belong to this deployment.
|
|
432
440
|
*/
|
|
433
441
|
get: operations["NotificationsPublicController.getNotification"];
|
|
434
442
|
/**
|
|
435
443
|
* Update a scheduled notification
|
|
436
|
-
* @description
|
|
444
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
445
|
+
*
|
|
446
|
+
* Updates a notification’s schedule definition. Any subset of the schedule fields may be supplied (`scheduleType` + time fields or `customCron`, `timezone`), along with `isEnabled`, `notificationEnabled`, and `notificationFormat`. Omitted fields are left unchanged. This endpoint never modifies recipients — manage those through the `/recipients` sub-resource. Returns `404` if the notification is not part of this deployment.
|
|
437
447
|
*/
|
|
438
448
|
put: operations["NotificationsPublicController.updateNotification"];
|
|
439
449
|
post?: never;
|
|
440
450
|
/**
|
|
441
451
|
* Delete a scheduled notification
|
|
442
|
-
* @description
|
|
452
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
453
|
+
*
|
|
454
|
+
* Permanently deletes a scheduled notification and all of its recipients (main, embed, and Slack) in a single cascade. Returns `204 No Content` on success, or `404` if the notification does not belong to this deployment.
|
|
443
455
|
*/
|
|
444
456
|
delete: operations["NotificationsPublicController.deleteNotification"];
|
|
445
457
|
options?: never;
|
|
@@ -456,18 +468,24 @@ export interface paths {
|
|
|
456
468
|
};
|
|
457
469
|
/**
|
|
458
470
|
* List notification recipients
|
|
459
|
-
* @description
|
|
471
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
472
|
+
*
|
|
473
|
+
* Returns the recipients subscribed to a notification, cursor-paginated and ordered by creation time (newest first). Recipients span three kinds, distinguished by `type`: `USER` (a main console user, with `userId` + `email`), `EMBED_USER` (an embed user, with `embedUserId`, `embedTenantName`, `externalId`, and `email`), and `SLACK` (a channel, with `channelId` + `channelName`). Returns `404` if the notification is not part of this deployment.
|
|
460
474
|
*/
|
|
461
475
|
get: operations["NotificationsPublicController.getRecipients"];
|
|
462
476
|
put?: never;
|
|
463
477
|
/**
|
|
464
478
|
* Add notification recipients
|
|
465
|
-
* @description
|
|
479
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
480
|
+
*
|
|
481
|
+
* Subscribes one or more recipients (1–1000 per request) to a notification. Each recipient is one of: a main console `USER` (identified by `userId` or `email`); an `EMBED_USER` (identified by `embedTenantName` + `externalId`, auto-provisioned if it does not yet exist, and optionally given `securityContext`, `userAttributes`, and `groups` that drive per-recipient rendering); or `SLACK` — **not yet supported**, a request containing a Slack recipient is rejected with `400`. Every recipient must resolve to a valid email (an embed user’s `email`, or an email-shaped `externalId`); otherwise the whole request fails with `400` before anything is written. The operation is idempotent: the response buckets each recipient into `createdRecipients`, `updatedRecipients` (an existing recipient whose embed properties changed), or `unchangedRecipients`.
|
|
466
482
|
*/
|
|
467
483
|
post: operations["NotificationsPublicController.addRecipients"];
|
|
468
484
|
/**
|
|
469
485
|
* Remove notification recipients
|
|
470
|
-
* @description
|
|
486
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
487
|
+
*
|
|
488
|
+
* Unsubscribes one or more recipients (1–1000 per request) from a notification. Each entry is identified by `type` plus the `id` returned by the API — `userId` for `USER`, `embedUserId` for `EMBED_USER`, or `channelId` for `SLACK`. `EMBED_USER` entries must also include `embedTenantName`, which locates the recipient’s storage partition. Removals are idempotent (deleting a recipient that isn’t subscribed is a no-op). Returns `204 No Content`, or `404` if the notification is not part of this deployment.
|
|
471
489
|
*/
|
|
472
490
|
delete: operations["NotificationsPublicController.removeRecipients"];
|
|
473
491
|
options?: never;
|
|
@@ -499,7 +517,14 @@ export interface paths {
|
|
|
499
517
|
path?: never;
|
|
500
518
|
cookie?: never;
|
|
501
519
|
};
|
|
502
|
-
/**
|
|
520
|
+
/**
|
|
521
|
+
* List reports
|
|
522
|
+
* @description List the reports in a deployment, scoped to the reports the calling user can access.
|
|
523
|
+
*
|
|
524
|
+
* Results are returned in pages using cursor-based pagination: pass `first` to set the page size and `after` (the previous response's `pageInfo.endCursor`) to fetch the next page.
|
|
525
|
+
*
|
|
526
|
+
* Cursor pagination is not supported when sorting by `lastViewedAt` (a per-viewer sort with no stable cursor column).
|
|
527
|
+
*/
|
|
503
528
|
get: operations["ReportsPublicController.getReports"];
|
|
504
529
|
put?: never;
|
|
505
530
|
/** Create report */
|
|
@@ -833,7 +858,14 @@ export interface paths {
|
|
|
833
858
|
path?: never;
|
|
834
859
|
cookie?: never;
|
|
835
860
|
};
|
|
836
|
-
/**
|
|
861
|
+
/**
|
|
862
|
+
* Get an embeddable dashboard
|
|
863
|
+
* @description Returns the dashboard identified by its `publicId` — including its reports/widgets — resolved within the caller's embed session scope, for rendering inside an embedded view.
|
|
864
|
+
*
|
|
865
|
+
* Access is authorized against the embed user: the dashboard is returned when the user owns its workbook, has been granted workbook access (folder-based or direct), holds `EmbedDashboardRead` on the dashboard, or when it has been shared with all embed users (creator-mode flow). Returns `404` if the dashboard does not exist or is not visible to the caller.
|
|
866
|
+
*
|
|
867
|
+
* Signed embedding additionally requires the dashboard to have "Allow signed embedding" enabled; the trusted screenshoter and creator-mode session flows are exempt. Returns `403` when embedding is not permitted for the dashboard.
|
|
868
|
+
*/
|
|
837
869
|
get: operations["EmbedPublicController.getDashboard"];
|
|
838
870
|
put?: never;
|
|
839
871
|
post?: never;
|
|
@@ -852,7 +884,16 @@ export interface paths {
|
|
|
852
884
|
};
|
|
853
885
|
get?: never;
|
|
854
886
|
put?: never;
|
|
855
|
-
/**
|
|
887
|
+
/**
|
|
888
|
+
* Generate an embed session
|
|
889
|
+
* @description **🔒 Admin only.** Requires administrator privileges — the authenticated principal (API key, embed JWT, or any bearer token) must belong to a user with the admin role.
|
|
890
|
+
*
|
|
891
|
+
* Creates a one-time embed session for a deployment and returns its `sessionId`.
|
|
892
|
+
*
|
|
893
|
+
* The session captures the embed context that will be baked into the embed token once redeemed — the target `deploymentId`, the end user's identity (`externalId` / `email` / `userProfile`), their `groups` and `userAttributes`, and an optional `securityContext`. Exchange the returned `sessionId` for a signed embed JWT via `POST /api/v1/embed/session/token` (single use).
|
|
894
|
+
*
|
|
895
|
+
* `deploymentId` is required and the caller must have read access to it. Embedding must be enabled for the tenant, otherwise `403` is returned.
|
|
896
|
+
*/
|
|
856
897
|
post: operations["EmbedPublicController.generateSession"];
|
|
857
898
|
delete?: never;
|
|
858
899
|
options?: never;
|
|
@@ -869,7 +910,14 @@ export interface paths {
|
|
|
869
910
|
};
|
|
870
911
|
get?: never;
|
|
871
912
|
put?: never;
|
|
872
|
-
/**
|
|
913
|
+
/**
|
|
914
|
+
* Exchange a session for an embed token
|
|
915
|
+
* @description Exchanges a one-time embed session id (created via `POST /api/v1/embed/generate-session`) for a signed, short-lived embed JWT used to authenticate the embedded analytics in the browser.
|
|
916
|
+
*
|
|
917
|
+
* The session is **single-use**: it is consumed (deleted) on the first successful exchange, so a given `sessionId` can be redeemed only once. The returned token is signed with the tenant's embed secret, issued by `cubecloud`, and expires after 24 hours.
|
|
918
|
+
*
|
|
919
|
+
* This endpoint is unauthenticated — it is called from the embedding client and the session id itself is the credential. Returns `401` if the session id is unknown or has already been redeemed.
|
|
920
|
+
*/
|
|
873
921
|
post: operations["EmbedPublicController.postTokenBySessionId"];
|
|
874
922
|
delete?: never;
|
|
875
923
|
options?: never;
|
|
@@ -1056,7 +1104,7 @@ export interface components {
|
|
|
1056
1104
|
apiUrl: string;
|
|
1057
1105
|
internalIngressHost?: string | null;
|
|
1058
1106
|
};
|
|
1059
|
-
|
|
1107
|
+
AIEngineerSettings: {
|
|
1060
1108
|
cubeCredentials?: components["schemas"]["AIEngineerCubeCredentialsDTO"] | null;
|
|
1061
1109
|
graphqlToken?: string | null;
|
|
1062
1110
|
hasAgentAccess?: any | null;
|
|
@@ -1064,22 +1112,22 @@ export interface components {
|
|
|
1064
1112
|
token: string;
|
|
1065
1113
|
url: string;
|
|
1066
1114
|
};
|
|
1067
|
-
|
|
1115
|
+
ActiveAgentRegion: {
|
|
1068
1116
|
createdAt?: (string) | null;
|
|
1069
1117
|
regionName: string;
|
|
1070
1118
|
updatedAt?: (string) | null;
|
|
1071
1119
|
userId: number;
|
|
1072
1120
|
};
|
|
1073
|
-
|
|
1121
|
+
AddNotificationRecipientsInput: {
|
|
1074
1122
|
/** @description Recipients to subscribe (1–1000 per request) */
|
|
1075
|
-
recipients: components["schemas"]["
|
|
1123
|
+
recipients: components["schemas"]["NotificationRecipientInput"][];
|
|
1076
1124
|
};
|
|
1077
|
-
|
|
1125
|
+
Agent: {
|
|
1078
1126
|
accessibleViews?: string[] | null;
|
|
1079
1127
|
agentConfigName?: string | null;
|
|
1080
|
-
agentLlm?: components["schemas"]["
|
|
1128
|
+
agentLlm?: components["schemas"]["AgentLlm"] | null;
|
|
1081
1129
|
agentLlmId?: number | null;
|
|
1082
|
-
agentSpace?: components["schemas"]["
|
|
1130
|
+
agentSpace?: components["schemas"]["AgentSpace"] | null;
|
|
1083
1131
|
agentSpaceId?: number | null;
|
|
1084
1132
|
config?: {
|
|
1085
1133
|
[key: string]: any;
|
|
@@ -1087,7 +1135,7 @@ export interface components {
|
|
|
1087
1135
|
createdAt: string;
|
|
1088
1136
|
dedicatedAiEngineerRegion?: string | null;
|
|
1089
1137
|
deploymentId?: number | null;
|
|
1090
|
-
embeddingLlm?: components["schemas"]["
|
|
1138
|
+
embeddingLlm?: components["schemas"]["AgentLlm"] | null;
|
|
1091
1139
|
embeddingUrl?: string | null;
|
|
1092
1140
|
id: number;
|
|
1093
1141
|
integrations?: components["schemas"]["AgentIntegrationsDto"] | null;
|
|
@@ -1103,7 +1151,7 @@ export interface components {
|
|
|
1103
1151
|
jiraIssueType?: components["schemas"]["JiraIssueType"] | null;
|
|
1104
1152
|
jiraProject?: components["schemas"]["JiraProject"] | null;
|
|
1105
1153
|
};
|
|
1106
|
-
|
|
1154
|
+
AgentLlm: {
|
|
1107
1155
|
config?: {
|
|
1108
1156
|
[key: string]: any;
|
|
1109
1157
|
} | null;
|
|
@@ -1125,14 +1173,10 @@ export interface components {
|
|
|
1125
1173
|
name: string;
|
|
1126
1174
|
title: string;
|
|
1127
1175
|
};
|
|
1128
|
-
|
|
1176
|
+
AgentSkillsResponse: {
|
|
1129
1177
|
skills: components["schemas"]["AgentSkillDto"][];
|
|
1130
1178
|
};
|
|
1131
|
-
|
|
1132
|
-
name?: string | null;
|
|
1133
|
-
spaceConfigName?: string | null;
|
|
1134
|
-
};
|
|
1135
|
-
AgentSpaceDto: {
|
|
1179
|
+
AgentSpace: {
|
|
1136
1180
|
config?: components["schemas"]["AgentSpaceConfigDto"] | null;
|
|
1137
1181
|
createdAt?: (string) | null;
|
|
1138
1182
|
id: number;
|
|
@@ -1141,29 +1185,33 @@ export interface components {
|
|
|
1141
1185
|
updatedAt?: (string) | null;
|
|
1142
1186
|
userId?: number | null;
|
|
1143
1187
|
};
|
|
1144
|
-
|
|
1188
|
+
AgentSpaceConfigDto: {
|
|
1189
|
+
name?: string | null;
|
|
1190
|
+
spaceConfigName?: string | null;
|
|
1191
|
+
};
|
|
1192
|
+
AppThemeFontRef: {
|
|
1145
1193
|
fontRef: string;
|
|
1146
1194
|
fontWeight: number;
|
|
1147
1195
|
};
|
|
1148
|
-
|
|
1196
|
+
AppThemeResponse: {
|
|
1149
1197
|
applyThemeGlobally: boolean;
|
|
1150
|
-
dark: components["schemas"]["
|
|
1151
|
-
light: components["schemas"]["
|
|
1152
|
-
typography?: components["schemas"]["
|
|
1198
|
+
dark: components["schemas"]["AppThemeScheme"];
|
|
1199
|
+
light: components["schemas"]["AppThemeScheme"];
|
|
1200
|
+
typography?: components["schemas"]["AppThemeTypography"];
|
|
1153
1201
|
};
|
|
1154
|
-
|
|
1202
|
+
AppThemeScheme: {
|
|
1155
1203
|
accentColor: string;
|
|
1156
1204
|
backgroundColor: string;
|
|
1157
1205
|
contrast: number;
|
|
1158
1206
|
foregroundColor: string;
|
|
1159
1207
|
logoUrl: string;
|
|
1160
1208
|
};
|
|
1161
|
-
|
|
1162
|
-
body: components["schemas"]["
|
|
1163
|
-
fonts: components["schemas"]["
|
|
1164
|
-
heading: components["schemas"]["
|
|
1209
|
+
AppThemeTypography: {
|
|
1210
|
+
body: components["schemas"]["AppThemeFontRef"];
|
|
1211
|
+
fonts: components["schemas"]["ThemeFont"][];
|
|
1212
|
+
heading: components["schemas"]["AppThemeFontRef"];
|
|
1165
1213
|
};
|
|
1166
|
-
|
|
1214
|
+
ColumnFormatOverride: {
|
|
1167
1215
|
decimalPlaces?: number | null;
|
|
1168
1216
|
type: components["schemas"]["ColumnFormatOverrideDtoType"];
|
|
1169
1217
|
};
|
|
@@ -1244,8 +1292,23 @@ export interface components {
|
|
|
1244
1292
|
};
|
|
1245
1293
|
/** @enum {string} */
|
|
1246
1294
|
CreationStep: "project" | "upload" | "schema" | "github" | "ssh" | "databases" | "ready" | "demo";
|
|
1295
|
+
Dashboard: {
|
|
1296
|
+
allowEmbed: boolean;
|
|
1297
|
+
config: components["schemas"]["DashboardConfig"];
|
|
1298
|
+
createdBy?: number | null;
|
|
1299
|
+
deploymentId: number;
|
|
1300
|
+
description?: string | null;
|
|
1301
|
+
id: number;
|
|
1302
|
+
publicId: string;
|
|
1303
|
+
reportSnapshots: components["schemas"]["ReportSnapshot"][];
|
|
1304
|
+
status: components["schemas"]["DashboardDtoStatus"];
|
|
1305
|
+
title?: string | null;
|
|
1306
|
+
versionId: number;
|
|
1307
|
+
versionNumber: number;
|
|
1308
|
+
workbookId: number;
|
|
1309
|
+
};
|
|
1247
1310
|
/** DashboardBreakpointColsDto */
|
|
1248
|
-
|
|
1311
|
+
DashboardBreakpointCols: {
|
|
1249
1312
|
lg?: number | null;
|
|
1250
1313
|
md?: number | null;
|
|
1251
1314
|
sm?: number | null;
|
|
@@ -1261,7 +1324,7 @@ export interface components {
|
|
|
1261
1324
|
xxs?: number | null;
|
|
1262
1325
|
};
|
|
1263
1326
|
/** DashboardBreakpointsDto */
|
|
1264
|
-
|
|
1327
|
+
DashboardBreakpoints: {
|
|
1265
1328
|
lg?: number | null;
|
|
1266
1329
|
md?: number | null;
|
|
1267
1330
|
sm?: number | null;
|
|
@@ -1276,9 +1339,9 @@ export interface components {
|
|
|
1276
1339
|
xs?: number | null;
|
|
1277
1340
|
xxs?: number | null;
|
|
1278
1341
|
};
|
|
1279
|
-
|
|
1342
|
+
DashboardConfig: {
|
|
1280
1343
|
description?: string | null;
|
|
1281
|
-
layout?: components["schemas"]["
|
|
1344
|
+
layout?: components["schemas"]["DashboardLayout"] | null;
|
|
1282
1345
|
settings?: {
|
|
1283
1346
|
[key: string]: any;
|
|
1284
1347
|
} | null;
|
|
@@ -1286,7 +1349,7 @@ export interface components {
|
|
|
1286
1349
|
[key: string]: any;
|
|
1287
1350
|
} | null;
|
|
1288
1351
|
title?: string | null;
|
|
1289
|
-
widgets?: components["schemas"]["
|
|
1352
|
+
widgets?: components["schemas"]["DashboardWidget"][] | null;
|
|
1290
1353
|
};
|
|
1291
1354
|
DashboardConfigInput: {
|
|
1292
1355
|
description?: string | null;
|
|
@@ -1298,26 +1361,11 @@ export interface components {
|
|
|
1298
1361
|
title?: string | null;
|
|
1299
1362
|
widgets: components["schemas"]["DashboardWidgetInput"][];
|
|
1300
1363
|
};
|
|
1301
|
-
DashboardDto: {
|
|
1302
|
-
allowEmbed: boolean;
|
|
1303
|
-
config: components["schemas"]["DashboardConfigDto"];
|
|
1304
|
-
createdBy?: number | null;
|
|
1305
|
-
deploymentId: number;
|
|
1306
|
-
description?: string | null;
|
|
1307
|
-
id: number;
|
|
1308
|
-
publicId: string;
|
|
1309
|
-
reportSnapshots: components["schemas"]["ReportSnapshotDto"][];
|
|
1310
|
-
status: components["schemas"]["DashboardDtoStatus"];
|
|
1311
|
-
title?: string | null;
|
|
1312
|
-
versionId: number;
|
|
1313
|
-
versionNumber: number;
|
|
1314
|
-
workbookId: number;
|
|
1315
|
-
};
|
|
1316
1364
|
/** @enum {string} */
|
|
1317
1365
|
DashboardDtoStatus: "draft" | "published" | "archived";
|
|
1318
|
-
|
|
1319
|
-
breakpoints?: components["schemas"]["
|
|
1320
|
-
cols?: components["schemas"]["
|
|
1366
|
+
DashboardLayout: {
|
|
1367
|
+
breakpoints?: components["schemas"]["DashboardBreakpoints"] | null;
|
|
1368
|
+
cols?: components["schemas"]["DashboardBreakpointCols"] | null;
|
|
1321
1369
|
containerPadding?: number[] | null;
|
|
1322
1370
|
margin?: number[] | null;
|
|
1323
1371
|
rowHeight?: number | null;
|
|
@@ -1329,12 +1377,12 @@ export interface components {
|
|
|
1329
1377
|
margin?: number[] | null;
|
|
1330
1378
|
rowHeight?: number | null;
|
|
1331
1379
|
};
|
|
1332
|
-
|
|
1333
|
-
lg?: components["schemas"]["
|
|
1334
|
-
md?: components["schemas"]["
|
|
1335
|
-
sm?: components["schemas"]["
|
|
1336
|
-
xs?: components["schemas"]["
|
|
1337
|
-
xxs?: components["schemas"]["
|
|
1380
|
+
DashboardResponsiveLayouts: {
|
|
1381
|
+
lg?: components["schemas"]["DashboardWidgetPosition"] | null;
|
|
1382
|
+
md?: components["schemas"]["DashboardWidgetPosition"] | null;
|
|
1383
|
+
sm?: components["schemas"]["DashboardWidgetPosition"] | null;
|
|
1384
|
+
xs?: components["schemas"]["DashboardWidgetPosition"] | null;
|
|
1385
|
+
xxs?: components["schemas"]["DashboardWidgetPosition"] | null;
|
|
1338
1386
|
};
|
|
1339
1387
|
DashboardResponsiveLayoutsInput: {
|
|
1340
1388
|
lg?: components["schemas"]["DashboardWidgetPositionInput"] | null;
|
|
@@ -1356,13 +1404,13 @@ export interface components {
|
|
|
1356
1404
|
backgroundColor?: string | null;
|
|
1357
1405
|
padding?: string | null;
|
|
1358
1406
|
};
|
|
1359
|
-
|
|
1407
|
+
DashboardWidget: {
|
|
1360
1408
|
config?: {
|
|
1361
1409
|
[key: string]: any;
|
|
1362
1410
|
} | null;
|
|
1363
1411
|
id: string;
|
|
1364
|
-
position: components["schemas"]["
|
|
1365
|
-
responsiveLayouts?: components["schemas"]["
|
|
1412
|
+
position: components["schemas"]["DashboardWidgetPosition"];
|
|
1413
|
+
responsiveLayouts?: components["schemas"]["DashboardResponsiveLayouts"] | null;
|
|
1366
1414
|
style?: {
|
|
1367
1415
|
[key: string]: any;
|
|
1368
1416
|
} | null;
|
|
@@ -1384,7 +1432,7 @@ export interface components {
|
|
|
1384
1432
|
};
|
|
1385
1433
|
/** @enum {string} */
|
|
1386
1434
|
DashboardWidgetInputType: "CHART" | "TEXT" | "FILTER" | "AI" | "TABS_CONTAINER" | "TIME_GRAIN";
|
|
1387
|
-
|
|
1435
|
+
DashboardWidgetPosition: {
|
|
1388
1436
|
h: number;
|
|
1389
1437
|
w: number;
|
|
1390
1438
|
x: number;
|
|
@@ -1447,7 +1495,7 @@ export interface components {
|
|
|
1447
1495
|
count?: number | null;
|
|
1448
1496
|
data: components["schemas"]["Deployment"][];
|
|
1449
1497
|
items: components["schemas"]["Deployment"][];
|
|
1450
|
-
pageInfo?: components["schemas"]["
|
|
1498
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1451
1499
|
pagination: components["schemas"]["DeploymentsPagination"];
|
|
1452
1500
|
totalCount?: number | null;
|
|
1453
1501
|
};
|
|
@@ -1456,28 +1504,28 @@ export interface components {
|
|
|
1456
1504
|
offset: number;
|
|
1457
1505
|
total: number;
|
|
1458
1506
|
};
|
|
1459
|
-
|
|
1507
|
+
EmbedTheme: {
|
|
1508
|
+
analyticsChat?: components["schemas"]["EmbedThemeAnalyticsChat"] | null;
|
|
1509
|
+
chat?: components["schemas"]["EmbedThemeChat"] | null;
|
|
1510
|
+
font?: string | null;
|
|
1511
|
+
primaryColor?: string | null;
|
|
1512
|
+
};
|
|
1513
|
+
EmbedThemeAnalyticsChat: {
|
|
1460
1514
|
backgroundColor?: string | null;
|
|
1461
|
-
chatInput?: components["schemas"]["
|
|
1515
|
+
chatInput?: components["schemas"]["EmbedThemeAnalyticsChatInput"] | null;
|
|
1462
1516
|
};
|
|
1463
|
-
|
|
1517
|
+
EmbedThemeAnalyticsChatInput: {
|
|
1464
1518
|
backgroundColor?: string | null;
|
|
1465
1519
|
borderColor?: string | null;
|
|
1466
1520
|
};
|
|
1467
|
-
|
|
1521
|
+
EmbedThemeChat: {
|
|
1468
1522
|
inputColor?: string | null;
|
|
1469
1523
|
};
|
|
1470
|
-
|
|
1471
|
-
analyticsChat?: components["schemas"]["EmbedThemeAnalyticsChatDTO"] | null;
|
|
1472
|
-
chat?: components["schemas"]["EmbedThemeChatDTO"] | null;
|
|
1473
|
-
font?: string | null;
|
|
1474
|
-
primaryColor?: string | null;
|
|
1475
|
-
};
|
|
1476
|
-
EmbedUserProfileDTO: {
|
|
1524
|
+
EmbedUserProfile: {
|
|
1477
1525
|
displayName?: string | null;
|
|
1478
1526
|
picture?: string | null;
|
|
1479
1527
|
};
|
|
1480
|
-
|
|
1528
|
+
Folder: {
|
|
1481
1529
|
createdAt: string;
|
|
1482
1530
|
createdBy?: number;
|
|
1483
1531
|
deploymentId: number;
|
|
@@ -1491,21 +1539,28 @@ export interface components {
|
|
|
1491
1539
|
};
|
|
1492
1540
|
/** @enum {string} */
|
|
1493
1541
|
FolderDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1542
|
+
FoldersListResponse: {
|
|
1543
|
+
count?: number | null;
|
|
1544
|
+
/**
|
|
1545
|
+
* @deprecated
|
|
1546
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
1547
|
+
*/
|
|
1548
|
+
data: components["schemas"]["Folder"][];
|
|
1549
|
+
items: components["schemas"]["Folder"][];
|
|
1550
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1551
|
+
};
|
|
1552
|
+
GenerateEmbedTokenResponse: {
|
|
1498
1553
|
token: string;
|
|
1499
1554
|
};
|
|
1500
|
-
|
|
1555
|
+
GenerateSession: {
|
|
1501
1556
|
creatorMode?: boolean | null;
|
|
1502
1557
|
deploymentId: number;
|
|
1503
1558
|
email?: string | null;
|
|
1504
1559
|
embedTenantName?: string | null;
|
|
1505
|
-
embedTheme?: components["schemas"]["
|
|
1560
|
+
embedTheme?: components["schemas"]["EmbedTheme"] | null;
|
|
1506
1561
|
ephemeralTtlSeconds?: number | null;
|
|
1507
1562
|
externalId?: string | null;
|
|
1508
|
-
groupDefinitions?: components["schemas"]["
|
|
1563
|
+
groupDefinitions?: components["schemas"]["GroupDefinition"][] | null;
|
|
1509
1564
|
groups?: string[] | null;
|
|
1510
1565
|
internalId?: string | null;
|
|
1511
1566
|
isEphemeral?: boolean | null;
|
|
@@ -1514,17 +1569,17 @@ export interface components {
|
|
|
1514
1569
|
securityContext?: {
|
|
1515
1570
|
[key: string]: any;
|
|
1516
1571
|
} | null;
|
|
1517
|
-
userAttributeDefinitions?: components["schemas"]["
|
|
1518
|
-
userAttributes?: components["schemas"]["
|
|
1519
|
-
userProfile?: components["schemas"]["
|
|
1572
|
+
userAttributeDefinitions?: components["schemas"]["UserAttributeDefinition"][] | null;
|
|
1573
|
+
userAttributes?: components["schemas"]["UserAttributeInput"][] | null;
|
|
1574
|
+
userProfile?: components["schemas"]["EmbedUserProfile"] | null;
|
|
1520
1575
|
};
|
|
1521
|
-
|
|
1576
|
+
GenerateSessionResponse: {
|
|
1522
1577
|
sessionId: string;
|
|
1523
1578
|
};
|
|
1524
1579
|
/** @enum {string} */
|
|
1525
1580
|
GetDeploymentEnvironmentsQueryType: "production" | "staging" | "development";
|
|
1526
1581
|
/** @enum {string} */
|
|
1527
|
-
GetReportsQuerySortBy: "createdAt" | "updatedAt" | "lastViewedAt";
|
|
1582
|
+
GetReportsQuerySortBy: "name" | "createdAt" | "updatedAt" | "lastViewedAt";
|
|
1528
1583
|
/** @enum {string} */
|
|
1529
1584
|
GetReportsQuerySortDirection: "ASC" | "DESC";
|
|
1530
1585
|
/** @enum {string} */
|
|
@@ -1533,24 +1588,24 @@ export interface components {
|
|
|
1533
1588
|
GetWorkspaceObjectsQueryOrderByDirection: "ASC" | "DESC";
|
|
1534
1589
|
/** @enum {string} */
|
|
1535
1590
|
GetWorkspaceObjectsQueryOrderByField: "updated_at" | "created_at" | "name" | "viewer_last_viewed_at";
|
|
1536
|
-
|
|
1591
|
+
GroupDefinition: {
|
|
1537
1592
|
description?: string | null;
|
|
1538
1593
|
name: string;
|
|
1539
1594
|
};
|
|
1540
1595
|
InheritedGroupPolicyDto: {
|
|
1541
1596
|
action: components["schemas"]["InheritedGroupPolicyDtoAction"];
|
|
1542
1597
|
groupId: number;
|
|
1543
|
-
sourceFolder?: components["schemas"]["
|
|
1598
|
+
sourceFolder?: components["schemas"]["Folder"] | null;
|
|
1544
1599
|
};
|
|
1545
1600
|
/** @enum {string} */
|
|
1546
|
-
InheritedGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1601
|
+
InheritedGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1547
1602
|
InheritedUserPolicyDto: {
|
|
1548
1603
|
action: components["schemas"]["InheritedUserPolicyDtoAction"];
|
|
1549
|
-
sourceFolder?: components["schemas"]["
|
|
1604
|
+
sourceFolder?: components["schemas"]["Folder"] | null;
|
|
1550
1605
|
userId?: number | null;
|
|
1551
1606
|
};
|
|
1552
1607
|
/** @enum {string} */
|
|
1553
|
-
InheritedUserPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1608
|
+
InheritedUserPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1554
1609
|
JiraIssueType: {
|
|
1555
1610
|
description?: string | null;
|
|
1556
1611
|
iconUrl?: string | null;
|
|
@@ -1595,45 +1650,18 @@ export interface components {
|
|
|
1595
1650
|
notificationFormat: string;
|
|
1596
1651
|
timezone: string;
|
|
1597
1652
|
};
|
|
1598
|
-
|
|
1599
|
-
count?: number | null;
|
|
1600
|
-
items: components["schemas"]["NotificationDto"][];
|
|
1601
|
-
pageInfo?: components["schemas"]["PageInfoDto"] | null;
|
|
1602
|
-
};
|
|
1603
|
-
PageInfoDto: {
|
|
1604
|
-
endCursor?: string | null;
|
|
1605
|
-
hasNextPage: boolean;
|
|
1606
|
-
hasPreviousPage: boolean;
|
|
1607
|
-
startCursor?: string | null;
|
|
1608
|
-
};
|
|
1609
|
-
PivotItemsDto: {
|
|
1610
|
-
columns: string[];
|
|
1611
|
-
filters: string[];
|
|
1612
|
-
measures: string[];
|
|
1613
|
-
rows: string[];
|
|
1614
|
-
};
|
|
1615
|
-
PivotItemsInput: {
|
|
1616
|
-
columns: string[];
|
|
1617
|
-
filters: string[];
|
|
1618
|
-
measures: string[];
|
|
1619
|
-
rows: string[];
|
|
1620
|
-
};
|
|
1621
|
-
PostTokenBySessionIdInputDTO: {
|
|
1622
|
-
sessionId: string;
|
|
1623
|
-
};
|
|
1624
|
-
PublicRecipientDto: {
|
|
1653
|
+
NotificationRecipient: {
|
|
1625
1654
|
channelId?: string | null;
|
|
1626
1655
|
channelName?: string | null;
|
|
1627
1656
|
email?: string | null;
|
|
1628
1657
|
embedTenantName?: string | null;
|
|
1629
1658
|
embedUserId?: number | null;
|
|
1630
1659
|
externalId?: string | null;
|
|
1631
|
-
type: components["schemas"]["
|
|
1660
|
+
type: components["schemas"]["NotificationRecipientType"];
|
|
1632
1661
|
userId?: number | null;
|
|
1662
|
+
username?: string | null;
|
|
1633
1663
|
};
|
|
1634
|
-
|
|
1635
|
-
PublicRecipientDtoType: "USER" | "EMBED_USER" | "SLACK";
|
|
1636
|
-
PublicRecipientInput: {
|
|
1664
|
+
NotificationRecipientInput: {
|
|
1637
1665
|
channelId?: string | null;
|
|
1638
1666
|
channelName?: string | null;
|
|
1639
1667
|
email?: string | null;
|
|
@@ -1643,12 +1671,51 @@ export interface components {
|
|
|
1643
1671
|
securityContext?: {
|
|
1644
1672
|
[key: string]: any;
|
|
1645
1673
|
} | null;
|
|
1646
|
-
type: components["schemas"]["
|
|
1647
|
-
userAttributes?: components["schemas"]["
|
|
1674
|
+
type: components["schemas"]["NotificationRecipientInputType"];
|
|
1675
|
+
userAttributes?: components["schemas"]["UserAttributeInput"][] | null;
|
|
1648
1676
|
userId?: number | null;
|
|
1649
1677
|
};
|
|
1650
1678
|
/** @enum {string} */
|
|
1651
|
-
|
|
1679
|
+
NotificationRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
|
|
1680
|
+
/** @enum {string} */
|
|
1681
|
+
NotificationRecipientType: "USER" | "EMBED_USER" | "SLACK";
|
|
1682
|
+
NotificationRecipientsListResponse: {
|
|
1683
|
+
items: components["schemas"]["NotificationRecipient"][];
|
|
1684
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1685
|
+
};
|
|
1686
|
+
NotificationRecipientsMutationResponse: {
|
|
1687
|
+
/** @description Recipients newly subscribed by this request */
|
|
1688
|
+
createdRecipients: components["schemas"]["NotificationRecipient"][];
|
|
1689
|
+
/** @description Recipients that already existed and were left unchanged */
|
|
1690
|
+
unchangedRecipients: components["schemas"]["NotificationRecipient"][];
|
|
1691
|
+
/** @description Existing recipients whose properties (e.g. embed security context / attributes / groups, or Slack channel name) were updated */
|
|
1692
|
+
updatedRecipients: components["schemas"]["NotificationRecipient"][];
|
|
1693
|
+
};
|
|
1694
|
+
NotificationsListResponse: {
|
|
1695
|
+
items: components["schemas"]["NotificationDto"][];
|
|
1696
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1697
|
+
};
|
|
1698
|
+
PageInfo: {
|
|
1699
|
+
endCursor?: string | null;
|
|
1700
|
+
hasNextPage: boolean;
|
|
1701
|
+
hasPreviousPage: boolean;
|
|
1702
|
+
startCursor?: string | null;
|
|
1703
|
+
};
|
|
1704
|
+
PivotItems: {
|
|
1705
|
+
columns: string[];
|
|
1706
|
+
filters: string[];
|
|
1707
|
+
measures: string[];
|
|
1708
|
+
rows: string[];
|
|
1709
|
+
};
|
|
1710
|
+
PivotItemsInput: {
|
|
1711
|
+
columns: string[];
|
|
1712
|
+
filters: string[];
|
|
1713
|
+
measures: string[];
|
|
1714
|
+
rows: string[];
|
|
1715
|
+
};
|
|
1716
|
+
PostTokenBySessionIdInput: {
|
|
1717
|
+
sessionId: string;
|
|
1718
|
+
};
|
|
1652
1719
|
PublishDashboardInput: {
|
|
1653
1720
|
config?: components["schemas"]["DashboardConfigInput"] | null;
|
|
1654
1721
|
dashboardId?: number | null;
|
|
@@ -1656,31 +1723,19 @@ export interface components {
|
|
|
1656
1723
|
title?: string | null;
|
|
1657
1724
|
workbookId: number;
|
|
1658
1725
|
};
|
|
1659
|
-
|
|
1660
|
-
items: components["schemas"]["PublicRecipientDto"][];
|
|
1661
|
-
pageInfo?: components["schemas"]["PageInfoDto"] | null;
|
|
1662
|
-
};
|
|
1663
|
-
RecipientsMutationResultDto: {
|
|
1664
|
-
/** @description Recipients newly subscribed by this request */
|
|
1665
|
-
createdRecipients: components["schemas"]["PublicRecipientDto"][];
|
|
1666
|
-
/** @description Recipients that already existed and were left unchanged */
|
|
1667
|
-
unchangedRecipients: components["schemas"]["PublicRecipientDto"][];
|
|
1668
|
-
/** @description Existing recipients whose properties (e.g. embed security context / attributes / groups, or Slack channel name) were updated */
|
|
1669
|
-
updatedRecipients: components["schemas"]["PublicRecipientDto"][];
|
|
1670
|
-
};
|
|
1671
|
-
RemoveRecipientInput: {
|
|
1726
|
+
RemoveNotificationRecipientInput: {
|
|
1672
1727
|
embedTenantName?: string | null;
|
|
1673
1728
|
/** @description Recipient id: userId (type=USER), embedUserId (type=EMBED_USER), or channelId (type=SLACK) */
|
|
1674
1729
|
id: number | string;
|
|
1675
|
-
type: components["schemas"]["
|
|
1730
|
+
type: components["schemas"]["RemoveNotificationRecipientInputType"];
|
|
1676
1731
|
};
|
|
1677
1732
|
/** @enum {string} */
|
|
1678
|
-
|
|
1679
|
-
|
|
1733
|
+
RemoveNotificationRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
|
|
1734
|
+
RemoveNotificationRecipientsInput: {
|
|
1680
1735
|
/** @description Recipients to unsubscribe (1–1000 per request) */
|
|
1681
|
-
recipients: components["schemas"]["
|
|
1736
|
+
recipients: components["schemas"]["RemoveNotificationRecipientInput"][];
|
|
1682
1737
|
};
|
|
1683
|
-
|
|
1738
|
+
Report: {
|
|
1684
1739
|
createdAt: string;
|
|
1685
1740
|
createdBy?: number;
|
|
1686
1741
|
deploymentId: number;
|
|
@@ -1694,10 +1749,10 @@ export interface components {
|
|
|
1694
1749
|
[key: string]: any;
|
|
1695
1750
|
} | null;
|
|
1696
1751
|
name: string;
|
|
1697
|
-
pivotItems?: components["schemas"]["
|
|
1752
|
+
pivotItems?: components["schemas"]["PivotItems"] | null;
|
|
1698
1753
|
publicId: string;
|
|
1699
1754
|
refreshedBy?: number | null;
|
|
1700
|
-
refreshedByUser: components["schemas"]["
|
|
1755
|
+
refreshedByUser: components["schemas"]["ResourceOwner"];
|
|
1701
1756
|
resultLocation?: string | null;
|
|
1702
1757
|
rolesWithAccess?: components["schemas"]["RoleWithAccess"][] | null;
|
|
1703
1758
|
source?: components["schemas"]["ReportDtoSource"] | null;
|
|
@@ -1705,7 +1760,7 @@ export interface components {
|
|
|
1705
1760
|
title?: string | null;
|
|
1706
1761
|
type: components["schemas"]["ReportDtoType"];
|
|
1707
1762
|
updatedAt: string;
|
|
1708
|
-
user: components["schemas"]["
|
|
1763
|
+
user: components["schemas"]["ResourceOwner"];
|
|
1709
1764
|
userId: number;
|
|
1710
1765
|
version?: number | null;
|
|
1711
1766
|
workbookId?: number | null;
|
|
@@ -1714,16 +1769,16 @@ export interface components {
|
|
|
1714
1769
|
ReportDtoSource: "GOOGLE_SHEETS" | "EXCEL" | "PLAYGROUND" | "D3";
|
|
1715
1770
|
/** @enum {string} */
|
|
1716
1771
|
ReportDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
|
|
1717
|
-
|
|
1772
|
+
ReportFolder: {
|
|
1718
1773
|
createdBy?: number | null;
|
|
1719
1774
|
id: number;
|
|
1720
1775
|
name?: string | null;
|
|
1721
1776
|
reportsCount?: number | null;
|
|
1722
1777
|
};
|
|
1723
1778
|
ReportFoldersFindAllResult: {
|
|
1724
|
-
data: components["schemas"]["
|
|
1779
|
+
data: components["schemas"]["ReportFolder"][];
|
|
1725
1780
|
};
|
|
1726
|
-
|
|
1781
|
+
ReportSnapshot: {
|
|
1727
1782
|
description?: string | null;
|
|
1728
1783
|
id: number;
|
|
1729
1784
|
kind?: components["schemas"]["ReportSnapshotDtoKind"] | null;
|
|
@@ -1731,7 +1786,7 @@ export interface components {
|
|
|
1731
1786
|
[key: string]: any;
|
|
1732
1787
|
} | null;
|
|
1733
1788
|
name?: string | null;
|
|
1734
|
-
preferences?: components["schemas"]["
|
|
1789
|
+
preferences?: components["schemas"]["ReportSnapshotPreferences"] | null;
|
|
1735
1790
|
reportId: number;
|
|
1736
1791
|
spec?: (string | Record<string, never>) | null;
|
|
1737
1792
|
sqlQuery?: string | null;
|
|
@@ -1740,27 +1795,34 @@ export interface components {
|
|
|
1740
1795
|
};
|
|
1741
1796
|
/** @enum {string} */
|
|
1742
1797
|
ReportSnapshotDtoKind: "vega" | "table" | "kpi" | "html" | "map";
|
|
1743
|
-
|
|
1798
|
+
ReportSnapshotPreferences: {
|
|
1744
1799
|
columnFormats?: {
|
|
1745
|
-
[key: string]: components["schemas"]["
|
|
1800
|
+
[key: string]: components["schemas"]["ColumnFormatOverride"];
|
|
1746
1801
|
} | null;
|
|
1747
1802
|
};
|
|
1748
|
-
|
|
1749
|
-
|
|
1803
|
+
ReportsListResponse: {
|
|
1804
|
+
count?: number | null;
|
|
1805
|
+
/**
|
|
1806
|
+
* @deprecated
|
|
1807
|
+
* @description Deprecated: use `items` instead. Kept for backward compatibility.
|
|
1808
|
+
*/
|
|
1809
|
+
data: components["schemas"]["Report"][];
|
|
1810
|
+
items: components["schemas"]["Report"][];
|
|
1811
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1750
1812
|
};
|
|
1751
1813
|
ResourceGroupPolicyDto: {
|
|
1752
1814
|
action: components["schemas"]["ResourceGroupPolicyDtoAction"];
|
|
1753
1815
|
groupId: number;
|
|
1754
1816
|
};
|
|
1755
1817
|
/** @enum {string} */
|
|
1756
|
-
ResourceGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1757
|
-
|
|
1818
|
+
ResourceGroupPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1819
|
+
ResourceOwner: {
|
|
1758
1820
|
email: string;
|
|
1759
1821
|
firstName?: string | null;
|
|
1760
1822
|
id: number;
|
|
1761
1823
|
picture?: string | null;
|
|
1762
1824
|
};
|
|
1763
|
-
|
|
1825
|
+
ResourcePoliciesResponse: {
|
|
1764
1826
|
groupPolicies: components["schemas"]["ResourceGroupPolicyDto"][];
|
|
1765
1827
|
inheritedGroupPolicies: components["schemas"]["InheritedGroupPolicyDto"][];
|
|
1766
1828
|
inheritedUserPolicies: components["schemas"]["InheritedUserPolicyDto"][];
|
|
@@ -1771,13 +1833,13 @@ export interface components {
|
|
|
1771
1833
|
userId?: number | null;
|
|
1772
1834
|
};
|
|
1773
1835
|
/** @enum {string} */
|
|
1774
|
-
ResourceUserPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1836
|
+
ResourceUserPolicyDtoAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1775
1837
|
RoleWithAccess: {
|
|
1776
|
-
actions: ("All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage")[];
|
|
1838
|
+
actions: ("All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage")[];
|
|
1777
1839
|
id: number;
|
|
1778
1840
|
name: string;
|
|
1779
1841
|
};
|
|
1780
|
-
|
|
1842
|
+
ThemeFont: {
|
|
1781
1843
|
family?: string | null;
|
|
1782
1844
|
format: string;
|
|
1783
1845
|
id: string;
|
|
@@ -1813,7 +1875,7 @@ export interface components {
|
|
|
1813
1875
|
[key: string]: any;
|
|
1814
1876
|
} | null;
|
|
1815
1877
|
name?: string | null;
|
|
1816
|
-
pivotItems?: components["schemas"]["
|
|
1878
|
+
pivotItems?: components["schemas"]["PivotItems"] | null;
|
|
1817
1879
|
resultLocation?: string | null;
|
|
1818
1880
|
sqlQuery?: string | null;
|
|
1819
1881
|
title?: string | null;
|
|
@@ -1826,7 +1888,7 @@ export interface components {
|
|
|
1826
1888
|
resourceType: components["schemas"]["UpdateResourceGroupPolicyBodyResourceType"];
|
|
1827
1889
|
};
|
|
1828
1890
|
/** @enum {string} */
|
|
1829
|
-
UpdateResourceGroupPolicyBodyAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1891
|
+
UpdateResourceGroupPolicyBodyAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1830
1892
|
/** @enum {string} */
|
|
1831
1893
|
UpdateResourceGroupPolicyBodyResourceType: "Global" | "Deployment" | "Report" | "ReportFolder" | "Agent" | "AgentSpace" | "Workbook" | "Dashboard" | "Folder" | "ChatThread";
|
|
1832
1894
|
UpdateResourceUserPolicyBody: {
|
|
@@ -1836,7 +1898,7 @@ export interface components {
|
|
|
1836
1898
|
userId?: number | null;
|
|
1837
1899
|
};
|
|
1838
1900
|
/** @enum {string} */
|
|
1839
|
-
UpdateResourceUserPolicyBodyAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1901
|
+
UpdateResourceUserPolicyBodyAction: "All" | "DeploymentsManage" | "DeploymentCreate" | "DeploymentRead" | "DeploymentUpdate" | "DeploymentDelete" | "PlaygroundRead" | "SchemaRead" | "SchemaUpdate" | "SchemaUpdateDevBranches" | "APMRead" | "PreAggregationBuild" | "AlertsCreate" | "AlertsRead" | "AlertsUpdate" | "AlertsDelete" | "AuditLogManage" | "BillingRead" | "SqlRunnerRead" | "DataAssetsRead" | "DataAssetsManage" | "CubeNetworkConnect" | "ReportRead" | "ReportEdit" | "ReportManage" | "WorkbookManage" | "WorkbookRead" | "WorkbookEdit" | "ChatThreadRead" | "AgentManage" | "AgentRead" | "AgentSpaceManage" | "AgentAdmin" | "DeploymentAgentRead" | "OAuthIntegrationsManage" | "OAuthIntegrationsIssueTokens" | "McpToolsManage" | "AIBIDevelop" | "AIBIExplore" | "AIBIView" | "ChartPalettesManage" | "DashboardThemesManage" | "AIBIDeveloper" | "AIBIUser" | "AIBIViewer" | "EmbedDeploymentRead" | "EmbedDashboardRead" | "FolderRead" | "FolderEdit" | "FolderManage";
|
|
1840
1902
|
/** @enum {string} */
|
|
1841
1903
|
UpdateResourceUserPolicyBodyResourceType: "Global" | "Deployment" | "Report" | "ReportFolder" | "Agent" | "AgentSpace" | "Workbook" | "Dashboard" | "Folder" | "ChatThread";
|
|
1842
1904
|
UpdateWorkbookInput: {
|
|
@@ -1846,7 +1908,32 @@ export interface components {
|
|
|
1846
1908
|
} | null;
|
|
1847
1909
|
name?: string | null;
|
|
1848
1910
|
};
|
|
1849
|
-
|
|
1911
|
+
User: {
|
|
1912
|
+
activeRoleId?: number | null;
|
|
1913
|
+
aliases?: components["schemas"]["UserAlias"][] | null;
|
|
1914
|
+
createdAt?: (string) | null;
|
|
1915
|
+
defaultRoles?: string[] | null;
|
|
1916
|
+
email: string;
|
|
1917
|
+
externalId?: string | null;
|
|
1918
|
+
firstName?: string | null;
|
|
1919
|
+
gitUser?: string | null;
|
|
1920
|
+
id: number;
|
|
1921
|
+
impersonation?: components["schemas"]["UserImpersonationDTO"] | null;
|
|
1922
|
+
isAdmin: boolean;
|
|
1923
|
+
isDeactivated?: boolean | null;
|
|
1924
|
+
lastLogin?: (string) | null;
|
|
1925
|
+
notifications: {
|
|
1926
|
+
[key: string]: any;
|
|
1927
|
+
};
|
|
1928
|
+
picture?: string | null;
|
|
1929
|
+
samlId?: string | null;
|
|
1930
|
+
settings?: components["schemas"]["UserSettingsInput"] | null;
|
|
1931
|
+
title?: string | null;
|
|
1932
|
+
tosAccepted?: Record<string, never> | null;
|
|
1933
|
+
updatedAt?: (string) | null;
|
|
1934
|
+
username: string;
|
|
1935
|
+
};
|
|
1936
|
+
UserAlias: {
|
|
1850
1937
|
createdAt: string;
|
|
1851
1938
|
id: number;
|
|
1852
1939
|
source: components["schemas"]["UserAliasDTOSource"];
|
|
@@ -1856,7 +1943,7 @@ export interface components {
|
|
|
1856
1943
|
};
|
|
1857
1944
|
/** @enum {string} */
|
|
1858
1945
|
UserAliasDTOSource: "ldap" | "saml" | "scim" | "manual";
|
|
1859
|
-
|
|
1946
|
+
UserAttribute: {
|
|
1860
1947
|
defaultValue?: string | null;
|
|
1861
1948
|
description?: string | null;
|
|
1862
1949
|
displayName?: string | null;
|
|
@@ -1866,7 +1953,7 @@ export interface components {
|
|
|
1866
1953
|
};
|
|
1867
1954
|
/** @enum {string} */
|
|
1868
1955
|
UserAttributeDTOType: "string" | "number" | "string_array" | "number_array";
|
|
1869
|
-
|
|
1956
|
+
UserAttributeDefinition: {
|
|
1870
1957
|
defaultValue?: string | null;
|
|
1871
1958
|
description?: string | null;
|
|
1872
1959
|
displayName?: string | null;
|
|
@@ -1875,38 +1962,13 @@ export interface components {
|
|
|
1875
1962
|
};
|
|
1876
1963
|
/** @enum {string} */
|
|
1877
1964
|
UserAttributeDefinitionDTOType: "string" | "number" | "string_array" | "number_array";
|
|
1878
|
-
|
|
1965
|
+
UserAttributeInput: {
|
|
1879
1966
|
name: string;
|
|
1880
1967
|
value?: (string | number | string[] | number[]) | null;
|
|
1881
1968
|
};
|
|
1882
|
-
|
|
1883
|
-
items: components["schemas"]["
|
|
1884
|
-
pageInfo: components["schemas"]["
|
|
1885
|
-
};
|
|
1886
|
-
UserDTO: {
|
|
1887
|
-
activeRoleId?: number | null;
|
|
1888
|
-
aliases?: components["schemas"]["UserAliasDTO"][] | null;
|
|
1889
|
-
createdAt?: (string) | null;
|
|
1890
|
-
defaultRoles?: string[] | null;
|
|
1891
|
-
email: string;
|
|
1892
|
-
externalId?: string | null;
|
|
1893
|
-
firstName?: string | null;
|
|
1894
|
-
gitUser?: string | null;
|
|
1895
|
-
id: number;
|
|
1896
|
-
impersonation?: components["schemas"]["UserImpersonationDTO"] | null;
|
|
1897
|
-
isAdmin: boolean;
|
|
1898
|
-
isDeactivated?: boolean | null;
|
|
1899
|
-
lastLogin?: (string) | null;
|
|
1900
|
-
notifications: {
|
|
1901
|
-
[key: string]: any;
|
|
1902
|
-
};
|
|
1903
|
-
picture?: string | null;
|
|
1904
|
-
samlId?: string | null;
|
|
1905
|
-
settings?: components["schemas"]["UserSettings"] | null;
|
|
1906
|
-
title?: string | null;
|
|
1907
|
-
tosAccepted?: Record<string, never> | null;
|
|
1908
|
-
updatedAt?: (string) | null;
|
|
1909
|
-
username: string;
|
|
1969
|
+
UserAttributesConnectionResponse: {
|
|
1970
|
+
items: components["schemas"]["UserAttribute"][];
|
|
1971
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
1910
1972
|
};
|
|
1911
1973
|
UserGroupDTO: {
|
|
1912
1974
|
description?: string | null;
|
|
@@ -1914,16 +1976,16 @@ export interface components {
|
|
|
1914
1976
|
name: string;
|
|
1915
1977
|
userCount?: number | null;
|
|
1916
1978
|
};
|
|
1917
|
-
|
|
1979
|
+
UserGroupsConnectionResponse: {
|
|
1918
1980
|
items: components["schemas"]["UserGroupDTO"][];
|
|
1919
|
-
pageInfo: components["schemas"]["
|
|
1981
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
1920
1982
|
};
|
|
1921
1983
|
UserImpersonationDTO: {
|
|
1922
1984
|
expiresAt?: (string) | null;
|
|
1923
|
-
impersonatedUser?: components["schemas"]["
|
|
1985
|
+
impersonatedUser?: components["schemas"]["User"] | null;
|
|
1924
1986
|
startedAt?: (string) | null;
|
|
1925
1987
|
};
|
|
1926
|
-
|
|
1988
|
+
UserSettingsInput: {
|
|
1927
1989
|
alternatingRowColors?: boolean | null;
|
|
1928
1990
|
lastSeenChangelogId?: number | null;
|
|
1929
1991
|
locale?: string | null;
|
|
@@ -1931,8 +1993,8 @@ export interface components {
|
|
|
1931
1993
|
timezone?: string | null;
|
|
1932
1994
|
};
|
|
1933
1995
|
UsersConnection: {
|
|
1934
|
-
items: components["schemas"]["
|
|
1935
|
-
pageInfo: components["schemas"]["
|
|
1996
|
+
items: components["schemas"]["ResourceOwner"][];
|
|
1997
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
1936
1998
|
};
|
|
1937
1999
|
WidgetThemeBorderSectionInput: {
|
|
1938
2000
|
color?: string | null;
|
|
@@ -1960,19 +2022,12 @@ export interface components {
|
|
|
1960
2022
|
fontSize?: string | null;
|
|
1961
2023
|
fontWeight?: string | null;
|
|
1962
2024
|
};
|
|
1963
|
-
|
|
1964
|
-
dashboardDraft?: components["schemas"]["DashboardConfigDto"] | null;
|
|
1965
|
-
dashboardPublished?: components["schemas"]["DashboardConfigDto"] | null;
|
|
1966
|
-
};
|
|
1967
|
-
WorkbookDashboardInput: {
|
|
1968
|
-
dashboardDraft?: components["schemas"]["DashboardConfigInput"] | null;
|
|
1969
|
-
};
|
|
1970
|
-
WorkbookDto: {
|
|
2025
|
+
Workbook: {
|
|
1971
2026
|
calculatedFields: Record<string, never>;
|
|
1972
2027
|
createdAt: string;
|
|
1973
2028
|
createdBy?: number;
|
|
1974
|
-
dashboardDraft?: components["schemas"]["
|
|
1975
|
-
dashboardPublished?: components["schemas"]["
|
|
2029
|
+
dashboardDraft?: components["schemas"]["DashboardConfig"] | null;
|
|
2030
|
+
dashboardPublished?: components["schemas"]["DashboardConfig"] | null;
|
|
1976
2031
|
deploymentId: number;
|
|
1977
2032
|
folderId?: number | null;
|
|
1978
2033
|
id: number;
|
|
@@ -1981,22 +2036,29 @@ export interface components {
|
|
|
1981
2036
|
[key: string]: any;
|
|
1982
2037
|
};
|
|
1983
2038
|
name: string;
|
|
1984
|
-
publishedDashboard?: components["schemas"]["
|
|
2039
|
+
publishedDashboard?: components["schemas"]["Dashboard"] | null;
|
|
1985
2040
|
type: components["schemas"]["WorkbookDtoType"];
|
|
1986
2041
|
updatedAt: string;
|
|
1987
2042
|
userId?: number | null;
|
|
1988
2043
|
};
|
|
2044
|
+
WorkbookDashboard: {
|
|
2045
|
+
dashboardDraft?: components["schemas"]["DashboardConfig"] | null;
|
|
2046
|
+
dashboardPublished?: components["schemas"]["DashboardConfig"] | null;
|
|
2047
|
+
};
|
|
2048
|
+
WorkbookDashboardInput: {
|
|
2049
|
+
dashboardDraft?: components["schemas"]["DashboardConfigInput"] | null;
|
|
2050
|
+
};
|
|
1989
2051
|
/** @enum {string} */
|
|
1990
2052
|
WorkbookDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
|
|
1991
2053
|
WorkbooksListResponse: {
|
|
1992
2054
|
count?: number | null;
|
|
1993
|
-
data: components["schemas"]["
|
|
1994
|
-
items: components["schemas"]["
|
|
1995
|
-
pageInfo?: components["schemas"]["
|
|
2055
|
+
data: components["schemas"]["Workbook"][];
|
|
2056
|
+
items: components["schemas"]["Workbook"][];
|
|
2057
|
+
pageInfo?: components["schemas"]["PageInfo"] | null;
|
|
1996
2058
|
};
|
|
1997
|
-
|
|
1998
|
-
items: components["schemas"]["
|
|
1999
|
-
pageInfo: components["schemas"]["
|
|
2059
|
+
WorkspaceConnectionResponse: {
|
|
2060
|
+
items: components["schemas"]["Workbook"][];
|
|
2061
|
+
pageInfo: components["schemas"]["PageInfo"];
|
|
2000
2062
|
};
|
|
2001
2063
|
};
|
|
2002
2064
|
responses: never;
|
|
@@ -2372,7 +2434,7 @@ export interface operations {
|
|
|
2372
2434
|
[name: string]: any;
|
|
2373
2435
|
};
|
|
2374
2436
|
content: {
|
|
2375
|
-
"application/json": components["schemas"]["
|
|
2437
|
+
"application/json": components["schemas"]["ActiveAgentRegion"];
|
|
2376
2438
|
};
|
|
2377
2439
|
};
|
|
2378
2440
|
};
|
|
@@ -2394,7 +2456,7 @@ export interface operations {
|
|
|
2394
2456
|
[name: string]: any;
|
|
2395
2457
|
};
|
|
2396
2458
|
content: {
|
|
2397
|
-
"application/json": components["schemas"]["
|
|
2459
|
+
"application/json": components["schemas"]["AIEngineerSettings"];
|
|
2398
2460
|
};
|
|
2399
2461
|
};
|
|
2400
2462
|
};
|
|
@@ -2413,7 +2475,7 @@ export interface operations {
|
|
|
2413
2475
|
[name: string]: any;
|
|
2414
2476
|
};
|
|
2415
2477
|
content: {
|
|
2416
|
-
"application/json": components["schemas"]["
|
|
2478
|
+
"application/json": components["schemas"]["AppThemeResponse"];
|
|
2417
2479
|
};
|
|
2418
2480
|
};
|
|
2419
2481
|
};
|
|
@@ -2425,9 +2487,9 @@ export interface operations {
|
|
|
2425
2487
|
offset?: number | null;
|
|
2426
2488
|
limit?: number | null;
|
|
2427
2489
|
/** @description Page size for cursor-based pagination */
|
|
2428
|
-
first?: number
|
|
2490
|
+
first?: number;
|
|
2429
2491
|
/** @description Cursor for fetching the next page */
|
|
2430
|
-
after?: string
|
|
2492
|
+
after?: string;
|
|
2431
2493
|
};
|
|
2432
2494
|
header?: never;
|
|
2433
2495
|
path?: never;
|
|
@@ -2485,7 +2547,7 @@ export interface operations {
|
|
|
2485
2547
|
[name: string]: any;
|
|
2486
2548
|
};
|
|
2487
2549
|
content: {
|
|
2488
|
-
"application/json": components["schemas"]["
|
|
2550
|
+
"application/json": components["schemas"]["AgentSkillsResponse"];
|
|
2489
2551
|
};
|
|
2490
2552
|
};
|
|
2491
2553
|
};
|
|
@@ -2508,7 +2570,7 @@ export interface operations {
|
|
|
2508
2570
|
[name: string]: any;
|
|
2509
2571
|
};
|
|
2510
2572
|
content: {
|
|
2511
|
-
"application/json": components["schemas"]["
|
|
2573
|
+
"application/json": components["schemas"]["Agent"][];
|
|
2512
2574
|
};
|
|
2513
2575
|
};
|
|
2514
2576
|
};
|
|
@@ -2620,7 +2682,9 @@ export interface operations {
|
|
|
2620
2682
|
"FoldersPublicController.getFolders": {
|
|
2621
2683
|
parameters: {
|
|
2622
2684
|
query?: {
|
|
2623
|
-
parentId?: number;
|
|
2685
|
+
parentId?: number | null;
|
|
2686
|
+
after?: string;
|
|
2687
|
+
first?: number;
|
|
2624
2688
|
};
|
|
2625
2689
|
header?: never;
|
|
2626
2690
|
path: {
|
|
@@ -2635,7 +2699,7 @@ export interface operations {
|
|
|
2635
2699
|
[name: string]: any;
|
|
2636
2700
|
};
|
|
2637
2701
|
content: {
|
|
2638
|
-
"application/json": components["schemas"]["
|
|
2702
|
+
"application/json": components["schemas"]["FoldersListResponse"];
|
|
2639
2703
|
};
|
|
2640
2704
|
};
|
|
2641
2705
|
};
|
|
@@ -2661,7 +2725,7 @@ export interface operations {
|
|
|
2661
2725
|
[name: string]: any;
|
|
2662
2726
|
};
|
|
2663
2727
|
content: {
|
|
2664
|
-
"application/json": components["schemas"]["
|
|
2728
|
+
"application/json": components["schemas"]["Folder"];
|
|
2665
2729
|
};
|
|
2666
2730
|
};
|
|
2667
2731
|
};
|
|
@@ -2688,7 +2752,7 @@ export interface operations {
|
|
|
2688
2752
|
[name: string]: any;
|
|
2689
2753
|
};
|
|
2690
2754
|
content: {
|
|
2691
|
-
"application/json": components["schemas"]["
|
|
2755
|
+
"application/json": components["schemas"]["Folder"];
|
|
2692
2756
|
};
|
|
2693
2757
|
};
|
|
2694
2758
|
};
|
|
@@ -2733,7 +2797,7 @@ export interface operations {
|
|
|
2733
2797
|
[name: string]: any;
|
|
2734
2798
|
};
|
|
2735
2799
|
content: {
|
|
2736
|
-
"application/json": components["schemas"]["
|
|
2800
|
+
"application/json": components["schemas"]["Folder"][];
|
|
2737
2801
|
};
|
|
2738
2802
|
};
|
|
2739
2803
|
};
|
|
@@ -2744,9 +2808,9 @@ export interface operations {
|
|
|
2744
2808
|
/** @description Optional filter: only return notifications for this dashboard id. */
|
|
2745
2809
|
dashboardId?: number | null;
|
|
2746
2810
|
/** @description Page size for cursor pagination (default 100, max 200). */
|
|
2747
|
-
first?: number
|
|
2811
|
+
first?: number;
|
|
2748
2812
|
/** @description Opaque cursor for the next page; pass the previous response's `pageInfo.endCursor`. */
|
|
2749
|
-
after?: string
|
|
2813
|
+
after?: string;
|
|
2750
2814
|
};
|
|
2751
2815
|
header?: never;
|
|
2752
2816
|
path: {
|
|
@@ -2762,7 +2826,7 @@ export interface operations {
|
|
|
2762
2826
|
[name: string]: any;
|
|
2763
2827
|
};
|
|
2764
2828
|
content: {
|
|
2765
|
-
"application/json": components["schemas"]["
|
|
2829
|
+
"application/json": components["schemas"]["NotificationsListResponse"];
|
|
2766
2830
|
};
|
|
2767
2831
|
};
|
|
2768
2832
|
};
|
|
@@ -2903,7 +2967,7 @@ export interface operations {
|
|
|
2903
2967
|
[name: string]: any;
|
|
2904
2968
|
};
|
|
2905
2969
|
content: {
|
|
2906
|
-
"application/json": components["schemas"]["
|
|
2970
|
+
"application/json": components["schemas"]["NotificationRecipientsListResponse"];
|
|
2907
2971
|
};
|
|
2908
2972
|
};
|
|
2909
2973
|
};
|
|
@@ -2920,10 +2984,10 @@ export interface operations {
|
|
|
2920
2984
|
};
|
|
2921
2985
|
cookie?: never;
|
|
2922
2986
|
};
|
|
2923
|
-
/** @description
|
|
2987
|
+
/** @description AddNotificationRecipientsInput */
|
|
2924
2988
|
requestBody?: {
|
|
2925
2989
|
content: {
|
|
2926
|
-
"application/json": components["schemas"]["
|
|
2990
|
+
"application/json": components["schemas"]["AddNotificationRecipientsInput"];
|
|
2927
2991
|
};
|
|
2928
2992
|
};
|
|
2929
2993
|
responses: {
|
|
@@ -2932,7 +2996,7 @@ export interface operations {
|
|
|
2932
2996
|
[name: string]: any;
|
|
2933
2997
|
};
|
|
2934
2998
|
content: {
|
|
2935
|
-
"application/json": components["schemas"]["
|
|
2999
|
+
"application/json": components["schemas"]["NotificationRecipientsMutationResponse"];
|
|
2936
3000
|
};
|
|
2937
3001
|
};
|
|
2938
3002
|
};
|
|
@@ -2949,10 +3013,10 @@ export interface operations {
|
|
|
2949
3013
|
};
|
|
2950
3014
|
cookie?: never;
|
|
2951
3015
|
};
|
|
2952
|
-
/** @description
|
|
3016
|
+
/** @description RemoveNotificationRecipientsInput */
|
|
2953
3017
|
requestBody?: {
|
|
2954
3018
|
content: {
|
|
2955
|
-
"application/json": components["schemas"]["
|
|
3019
|
+
"application/json": components["schemas"]["RemoveNotificationRecipientsInput"];
|
|
2956
3020
|
};
|
|
2957
3021
|
};
|
|
2958
3022
|
responses: {
|
|
@@ -3003,6 +3067,8 @@ export interface operations {
|
|
|
3003
3067
|
page?: number | null;
|
|
3004
3068
|
sortBy?: components["schemas"]["GetReportsQuerySortBy"] | null;
|
|
3005
3069
|
sortDirection?: components["schemas"]["GetReportsQuerySortDirection"] | null;
|
|
3070
|
+
after?: string;
|
|
3071
|
+
first?: number;
|
|
3006
3072
|
};
|
|
3007
3073
|
header?: never;
|
|
3008
3074
|
path: {
|
|
@@ -3017,7 +3083,7 @@ export interface operations {
|
|
|
3017
3083
|
[name: string]: any;
|
|
3018
3084
|
};
|
|
3019
3085
|
content: {
|
|
3020
|
-
"application/json": components["schemas"]["
|
|
3086
|
+
"application/json": components["schemas"]["ReportsListResponse"];
|
|
3021
3087
|
};
|
|
3022
3088
|
};
|
|
3023
3089
|
};
|
|
@@ -3043,7 +3109,7 @@ export interface operations {
|
|
|
3043
3109
|
[name: string]: any;
|
|
3044
3110
|
};
|
|
3045
3111
|
content: {
|
|
3046
|
-
"application/json": components["schemas"]["
|
|
3112
|
+
"application/json": components["schemas"]["Report"];
|
|
3047
3113
|
};
|
|
3048
3114
|
};
|
|
3049
3115
|
};
|
|
@@ -3065,7 +3131,7 @@ export interface operations {
|
|
|
3065
3131
|
[name: string]: any;
|
|
3066
3132
|
};
|
|
3067
3133
|
content: {
|
|
3068
|
-
"application/json": components["schemas"]["
|
|
3134
|
+
"application/json": components["schemas"]["Report"];
|
|
3069
3135
|
};
|
|
3070
3136
|
};
|
|
3071
3137
|
};
|
|
@@ -3092,7 +3158,7 @@ export interface operations {
|
|
|
3092
3158
|
[name: string]: any;
|
|
3093
3159
|
};
|
|
3094
3160
|
content: {
|
|
3095
|
-
"application/json": components["schemas"]["
|
|
3161
|
+
"application/json": components["schemas"]["Report"];
|
|
3096
3162
|
};
|
|
3097
3163
|
};
|
|
3098
3164
|
};
|
|
@@ -3137,7 +3203,7 @@ export interface operations {
|
|
|
3137
3203
|
[name: string]: any;
|
|
3138
3204
|
};
|
|
3139
3205
|
content: {
|
|
3140
|
-
"application/json": components["schemas"]["
|
|
3206
|
+
"application/json": components["schemas"]["Report"];
|
|
3141
3207
|
};
|
|
3142
3208
|
};
|
|
3143
3209
|
};
|
|
@@ -3146,12 +3212,12 @@ export interface operations {
|
|
|
3146
3212
|
parameters: {
|
|
3147
3213
|
query?: {
|
|
3148
3214
|
folderId?: number | null;
|
|
3149
|
-
first?: number | null;
|
|
3150
|
-
after?: string | null;
|
|
3151
3215
|
types?: ("FOLDER" | "WORKBOOK" | "REPORT")[] | null;
|
|
3152
3216
|
orderByField?: components["schemas"]["GetWorkspaceObjectsQueryOrderByField"] | null;
|
|
3153
3217
|
orderByDirection?: components["schemas"]["GetWorkspaceObjectsQueryOrderByDirection"] | null;
|
|
3154
3218
|
search?: string | null;
|
|
3219
|
+
after?: string;
|
|
3220
|
+
first?: number;
|
|
3155
3221
|
};
|
|
3156
3222
|
header?: never;
|
|
3157
3223
|
path: {
|
|
@@ -3166,7 +3232,7 @@ export interface operations {
|
|
|
3166
3232
|
[name: string]: any;
|
|
3167
3233
|
};
|
|
3168
3234
|
content: {
|
|
3169
|
-
"application/json": components["schemas"]["
|
|
3235
|
+
"application/json": components["schemas"]["WorkspaceConnectionResponse"];
|
|
3170
3236
|
};
|
|
3171
3237
|
};
|
|
3172
3238
|
};
|
|
@@ -3196,8 +3262,8 @@ export interface operations {
|
|
|
3196
3262
|
parameters: {
|
|
3197
3263
|
query?: {
|
|
3198
3264
|
folderId?: number | null;
|
|
3199
|
-
after?: string
|
|
3200
|
-
first?: number
|
|
3265
|
+
after?: string;
|
|
3266
|
+
first?: number;
|
|
3201
3267
|
};
|
|
3202
3268
|
header?: never;
|
|
3203
3269
|
path: {
|
|
@@ -3238,7 +3304,7 @@ export interface operations {
|
|
|
3238
3304
|
[name: string]: any;
|
|
3239
3305
|
};
|
|
3240
3306
|
content: {
|
|
3241
|
-
"application/json": components["schemas"]["
|
|
3307
|
+
"application/json": components["schemas"]["Workbook"];
|
|
3242
3308
|
};
|
|
3243
3309
|
};
|
|
3244
3310
|
};
|
|
@@ -3260,7 +3326,7 @@ export interface operations {
|
|
|
3260
3326
|
[name: string]: any;
|
|
3261
3327
|
};
|
|
3262
3328
|
content: {
|
|
3263
|
-
"application/json": components["schemas"]["
|
|
3329
|
+
"application/json": components["schemas"]["Workbook"];
|
|
3264
3330
|
};
|
|
3265
3331
|
};
|
|
3266
3332
|
};
|
|
@@ -3338,7 +3404,7 @@ export interface operations {
|
|
|
3338
3404
|
[name: string]: any;
|
|
3339
3405
|
};
|
|
3340
3406
|
content: {
|
|
3341
|
-
"application/json": components["schemas"]["
|
|
3407
|
+
"application/json": components["schemas"]["WorkbookDashboard"];
|
|
3342
3408
|
};
|
|
3343
3409
|
};
|
|
3344
3410
|
};
|
|
@@ -3360,7 +3426,7 @@ export interface operations {
|
|
|
3360
3426
|
[name: string]: any;
|
|
3361
3427
|
};
|
|
3362
3428
|
content: {
|
|
3363
|
-
"application/json": components["schemas"]["
|
|
3429
|
+
"application/json": components["schemas"]["Workbook"];
|
|
3364
3430
|
};
|
|
3365
3431
|
};
|
|
3366
3432
|
};
|
|
@@ -3387,7 +3453,7 @@ export interface operations {
|
|
|
3387
3453
|
[name: string]: any;
|
|
3388
3454
|
};
|
|
3389
3455
|
content: {
|
|
3390
|
-
"application/json": components["schemas"]["
|
|
3456
|
+
"application/json": components["schemas"]["Dashboard"];
|
|
3391
3457
|
};
|
|
3392
3458
|
};
|
|
3393
3459
|
};
|
|
@@ -3396,12 +3462,12 @@ export interface operations {
|
|
|
3396
3462
|
parameters: {
|
|
3397
3463
|
query?: {
|
|
3398
3464
|
folderId?: number | null;
|
|
3399
|
-
first?: number | null;
|
|
3400
|
-
after?: string | null;
|
|
3401
3465
|
types?: ("FOLDER" | "WORKBOOK" | "REPORT")[] | null;
|
|
3402
3466
|
orderByField?: components["schemas"]["GetWorkspaceObjectsQueryOrderByField"] | null;
|
|
3403
3467
|
orderByDirection?: components["schemas"]["GetWorkspaceObjectsQueryOrderByDirection"] | null;
|
|
3404
3468
|
search?: string | null;
|
|
3469
|
+
after?: string;
|
|
3470
|
+
first?: number;
|
|
3405
3471
|
};
|
|
3406
3472
|
header?: never;
|
|
3407
3473
|
path: {
|
|
@@ -3416,7 +3482,7 @@ export interface operations {
|
|
|
3416
3482
|
[name: string]: any;
|
|
3417
3483
|
};
|
|
3418
3484
|
content: {
|
|
3419
|
-
"application/json": components["schemas"]["
|
|
3485
|
+
"application/json": components["schemas"]["WorkspaceConnectionResponse"];
|
|
3420
3486
|
};
|
|
3421
3487
|
};
|
|
3422
3488
|
};
|
|
@@ -3442,7 +3508,7 @@ export interface operations {
|
|
|
3442
3508
|
[name: string]: any;
|
|
3443
3509
|
};
|
|
3444
3510
|
content: {
|
|
3445
|
-
"application/json": components["schemas"]["
|
|
3511
|
+
"application/json": components["schemas"]["Workbook"];
|
|
3446
3512
|
};
|
|
3447
3513
|
};
|
|
3448
3514
|
};
|
|
@@ -3466,7 +3532,7 @@ export interface operations {
|
|
|
3466
3532
|
[name: string]: any;
|
|
3467
3533
|
};
|
|
3468
3534
|
content: {
|
|
3469
|
-
"application/json": components["schemas"]["
|
|
3535
|
+
"application/json": components["schemas"]["UserGroupsConnectionResponse"];
|
|
3470
3536
|
};
|
|
3471
3537
|
};
|
|
3472
3538
|
};
|
|
@@ -3513,7 +3579,7 @@ export interface operations {
|
|
|
3513
3579
|
[name: string]: any;
|
|
3514
3580
|
};
|
|
3515
3581
|
content: {
|
|
3516
|
-
"application/json": components["schemas"]["
|
|
3582
|
+
"application/json": components["schemas"]["UserAttributesConnectionResponse"];
|
|
3517
3583
|
};
|
|
3518
3584
|
};
|
|
3519
3585
|
};
|
|
@@ -3557,7 +3623,7 @@ export interface operations {
|
|
|
3557
3623
|
[name: string]: any;
|
|
3558
3624
|
};
|
|
3559
3625
|
content: {
|
|
3560
|
-
"application/json": components["schemas"]["
|
|
3626
|
+
"application/json": components["schemas"]["Dashboard"];
|
|
3561
3627
|
};
|
|
3562
3628
|
};
|
|
3563
3629
|
};
|
|
@@ -3572,7 +3638,7 @@ export interface operations {
|
|
|
3572
3638
|
/** @description GenerateSessionDTO */
|
|
3573
3639
|
requestBody?: {
|
|
3574
3640
|
content: {
|
|
3575
|
-
"application/json": components["schemas"]["
|
|
3641
|
+
"application/json": components["schemas"]["GenerateSession"];
|
|
3576
3642
|
};
|
|
3577
3643
|
};
|
|
3578
3644
|
responses: {
|
|
@@ -3581,7 +3647,7 @@ export interface operations {
|
|
|
3581
3647
|
[name: string]: any;
|
|
3582
3648
|
};
|
|
3583
3649
|
content: {
|
|
3584
|
-
"application/json": components["schemas"]["
|
|
3650
|
+
"application/json": components["schemas"]["GenerateSessionResponse"];
|
|
3585
3651
|
};
|
|
3586
3652
|
};
|
|
3587
3653
|
};
|
|
@@ -3596,7 +3662,7 @@ export interface operations {
|
|
|
3596
3662
|
/** @description PostTokenBySessionIdInputDTO */
|
|
3597
3663
|
requestBody?: {
|
|
3598
3664
|
content: {
|
|
3599
|
-
"application/json": components["schemas"]["
|
|
3665
|
+
"application/json": components["schemas"]["PostTokenBySessionIdInput"];
|
|
3600
3666
|
};
|
|
3601
3667
|
};
|
|
3602
3668
|
responses: {
|
|
@@ -3605,7 +3671,7 @@ export interface operations {
|
|
|
3605
3671
|
[name: string]: any;
|
|
3606
3672
|
};
|
|
3607
3673
|
content: {
|
|
3608
|
-
"application/json": components["schemas"]["
|
|
3674
|
+
"application/json": components["schemas"]["GenerateEmbedTokenResponse"];
|
|
3609
3675
|
};
|
|
3610
3676
|
};
|
|
3611
3677
|
};
|
|
@@ -3674,7 +3740,7 @@ export interface operations {
|
|
|
3674
3740
|
[name: string]: any;
|
|
3675
3741
|
};
|
|
3676
3742
|
content: {
|
|
3677
|
-
"application/json": components["schemas"]["
|
|
3743
|
+
"application/json": components["schemas"]["ResourcePoliciesResponse"];
|
|
3678
3744
|
};
|
|
3679
3745
|
};
|
|
3680
3746
|
};
|
|
@@ -3768,7 +3834,7 @@ export interface operations {
|
|
|
3768
3834
|
[name: string]: any;
|
|
3769
3835
|
};
|
|
3770
3836
|
content: {
|
|
3771
|
-
"application/json": components["schemas"]["
|
|
3837
|
+
"application/json": components["schemas"]["UserGroupsConnectionResponse"];
|
|
3772
3838
|
};
|
|
3773
3839
|
};
|
|
3774
3840
|
};
|
|
@@ -3809,7 +3875,7 @@ export interface operations {
|
|
|
3809
3875
|
[name: string]: any;
|
|
3810
3876
|
};
|
|
3811
3877
|
content: {
|
|
3812
|
-
"application/json": components["schemas"]["
|
|
3878
|
+
"application/json": components["schemas"]["EmbedTheme"];
|
|
3813
3879
|
};
|
|
3814
3880
|
};
|
|
3815
3881
|
};
|
|
@@ -3828,7 +3894,7 @@ export interface operations {
|
|
|
3828
3894
|
[name: string]: any;
|
|
3829
3895
|
};
|
|
3830
3896
|
content: {
|
|
3831
|
-
"application/json": components["schemas"]["
|
|
3897
|
+
"application/json": components["schemas"]["User"];
|
|
3832
3898
|
};
|
|
3833
3899
|
};
|
|
3834
3900
|
};
|