@cube-dev/platform-client 0.0.20 → 0.1.0

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/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 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. Requires an admin API key.
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 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`. Requires an admin API key.
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 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. Requires an admin API key.
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 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. Requires an admin API key.
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 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. Requires an admin API key.
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 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. Requires an admin API key.
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 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`. Requires an admin API key.
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 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. Requires an admin API key.
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;
@@ -833,7 +851,14 @@ export interface paths {
833
851
  path?: never;
834
852
  cookie?: never;
835
853
  };
836
- /** Get dashboard */
854
+ /**
855
+ * Get an embeddable dashboard
856
+ * @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.
857
+ *
858
+ * 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.
859
+ *
860
+ * 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.
861
+ */
837
862
  get: operations["EmbedPublicController.getDashboard"];
838
863
  put?: never;
839
864
  post?: never;
@@ -852,7 +877,16 @@ export interface paths {
852
877
  };
853
878
  get?: never;
854
879
  put?: never;
855
- /** Generate session */
880
+ /**
881
+ * Generate an embed session
882
+ * @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.
883
+ *
884
+ * Creates a one-time embed session for a deployment and returns its `sessionId`.
885
+ *
886
+ * 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).
887
+ *
888
+ * `deploymentId` is required and the caller must have read access to it. Embedding must be enabled for the tenant, otherwise `403` is returned.
889
+ */
856
890
  post: operations["EmbedPublicController.generateSession"];
857
891
  delete?: never;
858
892
  options?: never;
@@ -869,7 +903,14 @@ export interface paths {
869
903
  };
870
904
  get?: never;
871
905
  put?: never;
872
- /** Post token by session id */
906
+ /**
907
+ * Exchange a session for an embed token
908
+ * @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.
909
+ *
910
+ * 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.
911
+ *
912
+ * 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.
913
+ */
873
914
  post: operations["EmbedPublicController.postTokenBySessionId"];
874
915
  delete?: never;
875
916
  options?: never;
@@ -1056,7 +1097,7 @@ export interface components {
1056
1097
  apiUrl: string;
1057
1098
  internalIngressHost?: string | null;
1058
1099
  };
1059
- AIEngineerSettingsDTO: {
1100
+ AIEngineerSettings: {
1060
1101
  cubeCredentials?: components["schemas"]["AIEngineerCubeCredentialsDTO"] | null;
1061
1102
  graphqlToken?: string | null;
1062
1103
  hasAgentAccess?: any | null;
@@ -1064,22 +1105,22 @@ export interface components {
1064
1105
  token: string;
1065
1106
  url: string;
1066
1107
  };
1067
- ActiveAgentRegionDto: {
1108
+ ActiveAgentRegion: {
1068
1109
  createdAt?: (string) | null;
1069
1110
  regionName: string;
1070
1111
  updatedAt?: (string) | null;
1071
1112
  userId: number;
1072
1113
  };
1073
- AddRecipientsInput: {
1114
+ AddNotificationRecipientsInput: {
1074
1115
  /** @description Recipients to subscribe (1–1000 per request) */
1075
- recipients: components["schemas"]["PublicRecipientInput"][];
1116
+ recipients: components["schemas"]["NotificationRecipientInput"][];
1076
1117
  };
1077
- AgentDto: {
1118
+ Agent: {
1078
1119
  accessibleViews?: string[] | null;
1079
1120
  agentConfigName?: string | null;
1080
- agentLlm?: components["schemas"]["AgentLlmDto"] | null;
1121
+ agentLlm?: components["schemas"]["AgentLlm"] | null;
1081
1122
  agentLlmId?: number | null;
1082
- agentSpace?: components["schemas"]["AgentSpaceDto"] | null;
1123
+ agentSpace?: components["schemas"]["AgentSpace"] | null;
1083
1124
  agentSpaceId?: number | null;
1084
1125
  config?: {
1085
1126
  [key: string]: any;
@@ -1087,7 +1128,7 @@ export interface components {
1087
1128
  createdAt: string;
1088
1129
  dedicatedAiEngineerRegion?: string | null;
1089
1130
  deploymentId?: number | null;
1090
- embeddingLlm?: components["schemas"]["AgentLlmDto"] | null;
1131
+ embeddingLlm?: components["schemas"]["AgentLlm"] | null;
1091
1132
  embeddingUrl?: string | null;
1092
1133
  id: number;
1093
1134
  integrations?: components["schemas"]["AgentIntegrationsDto"] | null;
@@ -1103,7 +1144,7 @@ export interface components {
1103
1144
  jiraIssueType?: components["schemas"]["JiraIssueType"] | null;
1104
1145
  jiraProject?: components["schemas"]["JiraProject"] | null;
1105
1146
  };
1106
- AgentLlmDto: {
1147
+ AgentLlm: {
1107
1148
  config?: {
1108
1149
  [key: string]: any;
1109
1150
  } | null;
@@ -1125,14 +1166,10 @@ export interface components {
1125
1166
  name: string;
1126
1167
  title: string;
1127
1168
  };
1128
- AgentSkillsResponseDto: {
1169
+ AgentSkillsResponse: {
1129
1170
  skills: components["schemas"]["AgentSkillDto"][];
1130
1171
  };
1131
- AgentSpaceConfigDto: {
1132
- name?: string | null;
1133
- spaceConfigName?: string | null;
1134
- };
1135
- AgentSpaceDto: {
1172
+ AgentSpace: {
1136
1173
  config?: components["schemas"]["AgentSpaceConfigDto"] | null;
1137
1174
  createdAt?: (string) | null;
1138
1175
  id: number;
@@ -1141,29 +1178,33 @@ export interface components {
1141
1178
  updatedAt?: (string) | null;
1142
1179
  userId?: number | null;
1143
1180
  };
1144
- AppThemeFontRefDto: {
1181
+ AgentSpaceConfigDto: {
1182
+ name?: string | null;
1183
+ spaceConfigName?: string | null;
1184
+ };
1185
+ AppThemeFontRef: {
1145
1186
  fontRef: string;
1146
1187
  fontWeight: number;
1147
1188
  };
1148
- AppThemePublicDto: {
1189
+ AppThemeResponse: {
1149
1190
  applyThemeGlobally: boolean;
1150
- dark: components["schemas"]["AppThemeSchemeDto"];
1151
- light: components["schemas"]["AppThemeSchemeDto"];
1152
- typography?: components["schemas"]["AppThemeTypographyDto"];
1191
+ dark: components["schemas"]["AppThemeScheme"];
1192
+ light: components["schemas"]["AppThemeScheme"];
1193
+ typography?: components["schemas"]["AppThemeTypography"];
1153
1194
  };
1154
- AppThemeSchemeDto: {
1195
+ AppThemeScheme: {
1155
1196
  accentColor: string;
1156
1197
  backgroundColor: string;
1157
1198
  contrast: number;
1158
1199
  foregroundColor: string;
1159
1200
  logoUrl: string;
1160
1201
  };
1161
- AppThemeTypographyDto: {
1162
- body: components["schemas"]["AppThemeFontRefDto"];
1163
- fonts: components["schemas"]["ThemeFontDto"][];
1164
- heading: components["schemas"]["AppThemeFontRefDto"];
1202
+ AppThemeTypography: {
1203
+ body: components["schemas"]["AppThemeFontRef"];
1204
+ fonts: components["schemas"]["ThemeFont"][];
1205
+ heading: components["schemas"]["AppThemeFontRef"];
1165
1206
  };
1166
- ColumnFormatOverrideDto: {
1207
+ ColumnFormatOverride: {
1167
1208
  decimalPlaces?: number | null;
1168
1209
  type: components["schemas"]["ColumnFormatOverrideDtoType"];
1169
1210
  };
@@ -1244,8 +1285,23 @@ export interface components {
1244
1285
  };
1245
1286
  /** @enum {string} */
1246
1287
  CreationStep: "project" | "upload" | "schema" | "github" | "ssh" | "databases" | "ready" | "demo";
1288
+ Dashboard: {
1289
+ allowEmbed: boolean;
1290
+ config: components["schemas"]["DashboardConfig"];
1291
+ createdBy?: number | null;
1292
+ deploymentId: number;
1293
+ description?: string | null;
1294
+ id: number;
1295
+ publicId: string;
1296
+ reportSnapshots: components["schemas"]["ReportSnapshot"][];
1297
+ status: components["schemas"]["DashboardDtoStatus"];
1298
+ title?: string | null;
1299
+ versionId: number;
1300
+ versionNumber: number;
1301
+ workbookId: number;
1302
+ };
1247
1303
  /** DashboardBreakpointColsDto */
1248
- DashboardBreakpointColsDto: {
1304
+ DashboardBreakpointCols: {
1249
1305
  lg?: number | null;
1250
1306
  md?: number | null;
1251
1307
  sm?: number | null;
@@ -1261,7 +1317,7 @@ export interface components {
1261
1317
  xxs?: number | null;
1262
1318
  };
1263
1319
  /** DashboardBreakpointsDto */
1264
- DashboardBreakpointsDto: {
1320
+ DashboardBreakpoints: {
1265
1321
  lg?: number | null;
1266
1322
  md?: number | null;
1267
1323
  sm?: number | null;
@@ -1276,9 +1332,9 @@ export interface components {
1276
1332
  xs?: number | null;
1277
1333
  xxs?: number | null;
1278
1334
  };
1279
- DashboardConfigDto: {
1335
+ DashboardConfig: {
1280
1336
  description?: string | null;
1281
- layout?: components["schemas"]["DashboardLayoutDto"] | null;
1337
+ layout?: components["schemas"]["DashboardLayout"] | null;
1282
1338
  settings?: {
1283
1339
  [key: string]: any;
1284
1340
  } | null;
@@ -1286,7 +1342,7 @@ export interface components {
1286
1342
  [key: string]: any;
1287
1343
  } | null;
1288
1344
  title?: string | null;
1289
- widgets?: components["schemas"]["DashboardWidgetDto"][] | null;
1345
+ widgets?: components["schemas"]["DashboardWidget"][] | null;
1290
1346
  };
1291
1347
  DashboardConfigInput: {
1292
1348
  description?: string | null;
@@ -1298,26 +1354,11 @@ export interface components {
1298
1354
  title?: string | null;
1299
1355
  widgets: components["schemas"]["DashboardWidgetInput"][];
1300
1356
  };
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
1357
  /** @enum {string} */
1317
1358
  DashboardDtoStatus: "draft" | "published" | "archived";
1318
- DashboardLayoutDto: {
1319
- breakpoints?: components["schemas"]["DashboardBreakpointsDto"] | null;
1320
- cols?: components["schemas"]["DashboardBreakpointColsDto"] | null;
1359
+ DashboardLayout: {
1360
+ breakpoints?: components["schemas"]["DashboardBreakpoints"] | null;
1361
+ cols?: components["schemas"]["DashboardBreakpointCols"] | null;
1321
1362
  containerPadding?: number[] | null;
1322
1363
  margin?: number[] | null;
1323
1364
  rowHeight?: number | null;
@@ -1329,12 +1370,12 @@ export interface components {
1329
1370
  margin?: number[] | null;
1330
1371
  rowHeight?: number | null;
1331
1372
  };
1332
- DashboardResponsiveLayoutsDto: {
1333
- lg?: components["schemas"]["DashboardWidgetPositionDto"] | null;
1334
- md?: components["schemas"]["DashboardWidgetPositionDto"] | null;
1335
- sm?: components["schemas"]["DashboardWidgetPositionDto"] | null;
1336
- xs?: components["schemas"]["DashboardWidgetPositionDto"] | null;
1337
- xxs?: components["schemas"]["DashboardWidgetPositionDto"] | null;
1373
+ DashboardResponsiveLayouts: {
1374
+ lg?: components["schemas"]["DashboardWidgetPosition"] | null;
1375
+ md?: components["schemas"]["DashboardWidgetPosition"] | null;
1376
+ sm?: components["schemas"]["DashboardWidgetPosition"] | null;
1377
+ xs?: components["schemas"]["DashboardWidgetPosition"] | null;
1378
+ xxs?: components["schemas"]["DashboardWidgetPosition"] | null;
1338
1379
  };
1339
1380
  DashboardResponsiveLayoutsInput: {
1340
1381
  lg?: components["schemas"]["DashboardWidgetPositionInput"] | null;
@@ -1356,13 +1397,13 @@ export interface components {
1356
1397
  backgroundColor?: string | null;
1357
1398
  padding?: string | null;
1358
1399
  };
1359
- DashboardWidgetDto: {
1400
+ DashboardWidget: {
1360
1401
  config?: {
1361
1402
  [key: string]: any;
1362
1403
  } | null;
1363
1404
  id: string;
1364
- position: components["schemas"]["DashboardWidgetPositionDto"];
1365
- responsiveLayouts?: components["schemas"]["DashboardResponsiveLayoutsDto"] | null;
1405
+ position: components["schemas"]["DashboardWidgetPosition"];
1406
+ responsiveLayouts?: components["schemas"]["DashboardResponsiveLayouts"] | null;
1366
1407
  style?: {
1367
1408
  [key: string]: any;
1368
1409
  } | null;
@@ -1384,7 +1425,7 @@ export interface components {
1384
1425
  };
1385
1426
  /** @enum {string} */
1386
1427
  DashboardWidgetInputType: "CHART" | "TEXT" | "FILTER" | "AI" | "TABS_CONTAINER" | "TIME_GRAIN";
1387
- DashboardWidgetPositionDto: {
1428
+ DashboardWidgetPosition: {
1388
1429
  h: number;
1389
1430
  w: number;
1390
1431
  x: number;
@@ -1447,7 +1488,7 @@ export interface components {
1447
1488
  count?: number | null;
1448
1489
  data: components["schemas"]["Deployment"][];
1449
1490
  items: components["schemas"]["Deployment"][];
1450
- pageInfo?: components["schemas"]["PageInfoDto"] | null;
1491
+ pageInfo?: components["schemas"]["PageInfo"] | null;
1451
1492
  pagination: components["schemas"]["DeploymentsPagination"];
1452
1493
  totalCount?: number | null;
1453
1494
  };
@@ -1456,28 +1497,28 @@ export interface components {
1456
1497
  offset: number;
1457
1498
  total: number;
1458
1499
  };
1459
- EmbedThemeAnalyticsChatDTO: {
1500
+ EmbedTheme: {
1501
+ analyticsChat?: components["schemas"]["EmbedThemeAnalyticsChat"] | null;
1502
+ chat?: components["schemas"]["EmbedThemeChat"] | null;
1503
+ font?: string | null;
1504
+ primaryColor?: string | null;
1505
+ };
1506
+ EmbedThemeAnalyticsChat: {
1460
1507
  backgroundColor?: string | null;
1461
- chatInput?: components["schemas"]["EmbedThemeAnalyticsChatInputDTO"] | null;
1508
+ chatInput?: components["schemas"]["EmbedThemeAnalyticsChatInput"] | null;
1462
1509
  };
1463
- EmbedThemeAnalyticsChatInputDTO: {
1510
+ EmbedThemeAnalyticsChatInput: {
1464
1511
  backgroundColor?: string | null;
1465
1512
  borderColor?: string | null;
1466
1513
  };
1467
- EmbedThemeChatDTO: {
1514
+ EmbedThemeChat: {
1468
1515
  inputColor?: string | null;
1469
1516
  };
1470
- EmbedThemeDTO: {
1471
- analyticsChat?: components["schemas"]["EmbedThemeAnalyticsChatDTO"] | null;
1472
- chat?: components["schemas"]["EmbedThemeChatDTO"] | null;
1473
- font?: string | null;
1474
- primaryColor?: string | null;
1475
- };
1476
- EmbedUserProfileDTO: {
1517
+ EmbedUserProfile: {
1477
1518
  displayName?: string | null;
1478
1519
  picture?: string | null;
1479
1520
  };
1480
- FolderDto: {
1521
+ Folder: {
1481
1522
  createdAt: string;
1482
1523
  createdBy?: number;
1483
1524
  deploymentId: number;
@@ -1491,21 +1532,28 @@ export interface components {
1491
1532
  };
1492
1533
  /** @enum {string} */
1493
1534
  FolderDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
1494
- FoldersFindAllResult: {
1495
- data: components["schemas"]["FolderDto"][];
1496
- };
1497
- GenerateEmbedTokenResponseDTO: {
1535
+ FoldersListResponse: {
1536
+ count?: number | null;
1537
+ /**
1538
+ * @deprecated
1539
+ * @description Deprecated: use `items` instead. Kept for backward compatibility.
1540
+ */
1541
+ data: components["schemas"]["Folder"][];
1542
+ items: components["schemas"]["Folder"][];
1543
+ pageInfo?: components["schemas"]["PageInfo"] | null;
1544
+ };
1545
+ GenerateEmbedTokenResponse: {
1498
1546
  token: string;
1499
1547
  };
1500
- GenerateSessionDTO: {
1548
+ GenerateSession: {
1501
1549
  creatorMode?: boolean | null;
1502
1550
  deploymentId: number;
1503
1551
  email?: string | null;
1504
1552
  embedTenantName?: string | null;
1505
- embedTheme?: components["schemas"]["EmbedThemeDTO"] | null;
1553
+ embedTheme?: components["schemas"]["EmbedTheme"] | null;
1506
1554
  ephemeralTtlSeconds?: number | null;
1507
1555
  externalId?: string | null;
1508
- groupDefinitions?: components["schemas"]["GroupDefinitionDTO"][] | null;
1556
+ groupDefinitions?: components["schemas"]["GroupDefinition"][] | null;
1509
1557
  groups?: string[] | null;
1510
1558
  internalId?: string | null;
1511
1559
  isEphemeral?: boolean | null;
@@ -1514,11 +1562,11 @@ export interface components {
1514
1562
  securityContext?: {
1515
1563
  [key: string]: any;
1516
1564
  } | null;
1517
- userAttributeDefinitions?: components["schemas"]["UserAttributeDefinitionDTO"][] | null;
1518
- userAttributes?: components["schemas"]["UserAttributeInputDTO"][] | null;
1519
- userProfile?: components["schemas"]["EmbedUserProfileDTO"] | null;
1565
+ userAttributeDefinitions?: components["schemas"]["UserAttributeDefinition"][] | null;
1566
+ userAttributes?: components["schemas"]["UserAttributeInput"][] | null;
1567
+ userProfile?: components["schemas"]["EmbedUserProfile"] | null;
1520
1568
  };
1521
- GenerateSessionResponseDTO: {
1569
+ GenerateSessionResponse: {
1522
1570
  sessionId: string;
1523
1571
  };
1524
1572
  /** @enum {string} */
@@ -1533,20 +1581,20 @@ export interface components {
1533
1581
  GetWorkspaceObjectsQueryOrderByDirection: "ASC" | "DESC";
1534
1582
  /** @enum {string} */
1535
1583
  GetWorkspaceObjectsQueryOrderByField: "updated_at" | "created_at" | "name" | "viewer_last_viewed_at";
1536
- GroupDefinitionDTO: {
1584
+ GroupDefinition: {
1537
1585
  description?: string | null;
1538
1586
  name: string;
1539
1587
  };
1540
1588
  InheritedGroupPolicyDto: {
1541
1589
  action: components["schemas"]["InheritedGroupPolicyDtoAction"];
1542
1590
  groupId: number;
1543
- sourceFolder?: components["schemas"]["FolderDto"] | null;
1591
+ sourceFolder?: components["schemas"]["Folder"] | null;
1544
1592
  };
1545
1593
  /** @enum {string} */
1546
1594
  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";
1547
1595
  InheritedUserPolicyDto: {
1548
1596
  action: components["schemas"]["InheritedUserPolicyDtoAction"];
1549
- sourceFolder?: components["schemas"]["FolderDto"] | null;
1597
+ sourceFolder?: components["schemas"]["Folder"] | null;
1550
1598
  userId?: number | null;
1551
1599
  };
1552
1600
  /** @enum {string} */
@@ -1595,45 +1643,17 @@ export interface components {
1595
1643
  notificationFormat: string;
1596
1644
  timezone: string;
1597
1645
  };
1598
- NotificationsListDto: {
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: {
1646
+ NotificationRecipient: {
1625
1647
  channelId?: string | null;
1626
1648
  channelName?: string | null;
1627
1649
  email?: string | null;
1628
1650
  embedTenantName?: string | null;
1629
1651
  embedUserId?: number | null;
1630
1652
  externalId?: string | null;
1631
- type: components["schemas"]["PublicRecipientDtoType"];
1653
+ type: components["schemas"]["NotificationRecipientType"];
1632
1654
  userId?: number | null;
1633
1655
  };
1634
- /** @enum {string} */
1635
- PublicRecipientDtoType: "USER" | "EMBED_USER" | "SLACK";
1636
- PublicRecipientInput: {
1656
+ NotificationRecipientInput: {
1637
1657
  channelId?: string | null;
1638
1658
  channelName?: string | null;
1639
1659
  email?: string | null;
@@ -1643,12 +1663,51 @@ export interface components {
1643
1663
  securityContext?: {
1644
1664
  [key: string]: any;
1645
1665
  } | null;
1646
- type: components["schemas"]["PublicRecipientInputType"];
1647
- userAttributes?: components["schemas"]["UserAttributeInputDTO"][] | null;
1666
+ type: components["schemas"]["NotificationRecipientInputType"];
1667
+ userAttributes?: components["schemas"]["UserAttributeInput"][] | null;
1648
1668
  userId?: number | null;
1649
1669
  };
1650
1670
  /** @enum {string} */
1651
- PublicRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
1671
+ NotificationRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
1672
+ /** @enum {string} */
1673
+ NotificationRecipientType: "USER" | "EMBED_USER" | "SLACK";
1674
+ NotificationRecipientsListResponse: {
1675
+ items: components["schemas"]["NotificationRecipient"][];
1676
+ pageInfo?: components["schemas"]["PageInfo"] | null;
1677
+ };
1678
+ NotificationRecipientsMutationResponse: {
1679
+ /** @description Recipients newly subscribed by this request */
1680
+ createdRecipients: components["schemas"]["NotificationRecipient"][];
1681
+ /** @description Recipients that already existed and were left unchanged */
1682
+ unchangedRecipients: components["schemas"]["NotificationRecipient"][];
1683
+ /** @description Existing recipients whose properties (e.g. embed security context / attributes / groups, or Slack channel name) were updated */
1684
+ updatedRecipients: components["schemas"]["NotificationRecipient"][];
1685
+ };
1686
+ NotificationsListResponse: {
1687
+ items: components["schemas"]["NotificationDto"][];
1688
+ pageInfo?: components["schemas"]["PageInfo"] | null;
1689
+ };
1690
+ PageInfo: {
1691
+ endCursor?: string | null;
1692
+ hasNextPage: boolean;
1693
+ hasPreviousPage: boolean;
1694
+ startCursor?: string | null;
1695
+ };
1696
+ PivotItems: {
1697
+ columns: string[];
1698
+ filters: string[];
1699
+ measures: string[];
1700
+ rows: string[];
1701
+ };
1702
+ PivotItemsInput: {
1703
+ columns: string[];
1704
+ filters: string[];
1705
+ measures: string[];
1706
+ rows: string[];
1707
+ };
1708
+ PostTokenBySessionIdInput: {
1709
+ sessionId: string;
1710
+ };
1652
1711
  PublishDashboardInput: {
1653
1712
  config?: components["schemas"]["DashboardConfigInput"] | null;
1654
1713
  dashboardId?: number | null;
@@ -1656,31 +1715,19 @@ export interface components {
1656
1715
  title?: string | null;
1657
1716
  workbookId: number;
1658
1717
  };
1659
- RecipientsListDto: {
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: {
1718
+ RemoveNotificationRecipientInput: {
1672
1719
  embedTenantName?: string | null;
1673
1720
  /** @description Recipient id: userId (type=USER), embedUserId (type=EMBED_USER), or channelId (type=SLACK) */
1674
1721
  id: number | string;
1675
- type: components["schemas"]["RemoveRecipientInputType"];
1722
+ type: components["schemas"]["RemoveNotificationRecipientInputType"];
1676
1723
  };
1677
1724
  /** @enum {string} */
1678
- RemoveRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
1679
- RemoveRecipientsInput: {
1725
+ RemoveNotificationRecipientInputType: "USER" | "EMBED_USER" | "SLACK";
1726
+ RemoveNotificationRecipientsInput: {
1680
1727
  /** @description Recipients to unsubscribe (1–1000 per request) */
1681
- recipients: components["schemas"]["RemoveRecipientInput"][];
1728
+ recipients: components["schemas"]["RemoveNotificationRecipientInput"][];
1682
1729
  };
1683
- ReportDto: {
1730
+ Report: {
1684
1731
  createdAt: string;
1685
1732
  createdBy?: number;
1686
1733
  deploymentId: number;
@@ -1694,10 +1741,10 @@ export interface components {
1694
1741
  [key: string]: any;
1695
1742
  } | null;
1696
1743
  name: string;
1697
- pivotItems?: components["schemas"]["PivotItemsDto"] | null;
1744
+ pivotItems?: components["schemas"]["PivotItems"] | null;
1698
1745
  publicId: string;
1699
1746
  refreshedBy?: number | null;
1700
- refreshedByUser: components["schemas"]["ResourceOwnerDto"];
1747
+ refreshedByUser: components["schemas"]["ResourceOwner"];
1701
1748
  resultLocation?: string | null;
1702
1749
  rolesWithAccess?: components["schemas"]["RoleWithAccess"][] | null;
1703
1750
  source?: components["schemas"]["ReportDtoSource"] | null;
@@ -1705,7 +1752,7 @@ export interface components {
1705
1752
  title?: string | null;
1706
1753
  type: components["schemas"]["ReportDtoType"];
1707
1754
  updatedAt: string;
1708
- user: components["schemas"]["ResourceOwnerDto"];
1755
+ user: components["schemas"]["ResourceOwner"];
1709
1756
  userId: number;
1710
1757
  version?: number | null;
1711
1758
  workbookId?: number | null;
@@ -1714,16 +1761,16 @@ export interface components {
1714
1761
  ReportDtoSource: "GOOGLE_SHEETS" | "EXCEL" | "PLAYGROUND" | "D3";
1715
1762
  /** @enum {string} */
1716
1763
  ReportDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
1717
- ReportFolderDto: {
1764
+ ReportFolder: {
1718
1765
  createdBy?: number | null;
1719
1766
  id: number;
1720
1767
  name?: string | null;
1721
1768
  reportsCount?: number | null;
1722
1769
  };
1723
1770
  ReportFoldersFindAllResult: {
1724
- data: components["schemas"]["ReportFolderDto"][];
1771
+ data: components["schemas"]["ReportFolder"][];
1725
1772
  };
1726
- ReportSnapshotDto: {
1773
+ ReportSnapshot: {
1727
1774
  description?: string | null;
1728
1775
  id: number;
1729
1776
  kind?: components["schemas"]["ReportSnapshotDtoKind"] | null;
@@ -1731,7 +1778,7 @@ export interface components {
1731
1778
  [key: string]: any;
1732
1779
  } | null;
1733
1780
  name?: string | null;
1734
- preferences?: components["schemas"]["ReportSnapshotPreferencesDto"] | null;
1781
+ preferences?: components["schemas"]["ReportSnapshotPreferences"] | null;
1735
1782
  reportId: number;
1736
1783
  spec?: (string | Record<string, never>) | null;
1737
1784
  sqlQuery?: string | null;
@@ -1740,13 +1787,13 @@ export interface components {
1740
1787
  };
1741
1788
  /** @enum {string} */
1742
1789
  ReportSnapshotDtoKind: "vega" | "table" | "kpi" | "html" | "map";
1743
- ReportSnapshotPreferencesDto: {
1790
+ ReportSnapshotPreferences: {
1744
1791
  columnFormats?: {
1745
- [key: string]: components["schemas"]["ColumnFormatOverrideDto"];
1792
+ [key: string]: components["schemas"]["ColumnFormatOverride"];
1746
1793
  } | null;
1747
1794
  };
1748
1795
  ReportsFindAllResult: {
1749
- data: components["schemas"]["ReportDto"][];
1796
+ data: components["schemas"]["Report"][];
1750
1797
  };
1751
1798
  ResourceGroupPolicyDto: {
1752
1799
  action: components["schemas"]["ResourceGroupPolicyDtoAction"];
@@ -1754,13 +1801,13 @@ export interface components {
1754
1801
  };
1755
1802
  /** @enum {string} */
1756
1803
  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
- ResourceOwnerDto: {
1804
+ ResourceOwner: {
1758
1805
  email: string;
1759
1806
  firstName?: string | null;
1760
1807
  id: number;
1761
1808
  picture?: string | null;
1762
1809
  };
1763
- ResourcePoliciesResponseDto: {
1810
+ ResourcePoliciesResponse: {
1764
1811
  groupPolicies: components["schemas"]["ResourceGroupPolicyDto"][];
1765
1812
  inheritedGroupPolicies: components["schemas"]["InheritedGroupPolicyDto"][];
1766
1813
  inheritedUserPolicies: components["schemas"]["InheritedUserPolicyDto"][];
@@ -1777,7 +1824,7 @@ export interface components {
1777
1824
  id: number;
1778
1825
  name: string;
1779
1826
  };
1780
- ThemeFontDto: {
1827
+ ThemeFont: {
1781
1828
  family?: string | null;
1782
1829
  format: string;
1783
1830
  id: string;
@@ -1813,7 +1860,7 @@ export interface components {
1813
1860
  [key: string]: any;
1814
1861
  } | null;
1815
1862
  name?: string | null;
1816
- pivotItems?: components["schemas"]["PivotItemsDto"] | null;
1863
+ pivotItems?: components["schemas"]["PivotItems"] | null;
1817
1864
  resultLocation?: string | null;
1818
1865
  sqlQuery?: string | null;
1819
1866
  title?: string | null;
@@ -1846,7 +1893,32 @@ export interface components {
1846
1893
  } | null;
1847
1894
  name?: string | null;
1848
1895
  };
1849
- UserAliasDTO: {
1896
+ User: {
1897
+ activeRoleId?: number | null;
1898
+ aliases?: components["schemas"]["UserAlias"][] | null;
1899
+ createdAt?: (string) | null;
1900
+ defaultRoles?: string[] | null;
1901
+ email: string;
1902
+ externalId?: string | null;
1903
+ firstName?: string | null;
1904
+ gitUser?: string | null;
1905
+ id: number;
1906
+ impersonation?: components["schemas"]["UserImpersonationDTO"] | null;
1907
+ isAdmin: boolean;
1908
+ isDeactivated?: boolean | null;
1909
+ lastLogin?: (string) | null;
1910
+ notifications: {
1911
+ [key: string]: any;
1912
+ };
1913
+ picture?: string | null;
1914
+ samlId?: string | null;
1915
+ settings?: components["schemas"]["UserSettingsInput"] | null;
1916
+ title?: string | null;
1917
+ tosAccepted?: Record<string, never> | null;
1918
+ updatedAt?: (string) | null;
1919
+ username: string;
1920
+ };
1921
+ UserAlias: {
1850
1922
  createdAt: string;
1851
1923
  id: number;
1852
1924
  source: components["schemas"]["UserAliasDTOSource"];
@@ -1856,7 +1928,7 @@ export interface components {
1856
1928
  };
1857
1929
  /** @enum {string} */
1858
1930
  UserAliasDTOSource: "ldap" | "saml" | "scim" | "manual";
1859
- UserAttributeDTO: {
1931
+ UserAttribute: {
1860
1932
  defaultValue?: string | null;
1861
1933
  description?: string | null;
1862
1934
  displayName?: string | null;
@@ -1866,7 +1938,7 @@ export interface components {
1866
1938
  };
1867
1939
  /** @enum {string} */
1868
1940
  UserAttributeDTOType: "string" | "number" | "string_array" | "number_array";
1869
- UserAttributeDefinitionDTO: {
1941
+ UserAttributeDefinition: {
1870
1942
  defaultValue?: string | null;
1871
1943
  description?: string | null;
1872
1944
  displayName?: string | null;
@@ -1875,38 +1947,13 @@ export interface components {
1875
1947
  };
1876
1948
  /** @enum {string} */
1877
1949
  UserAttributeDefinitionDTOType: "string" | "number" | "string_array" | "number_array";
1878
- UserAttributeInputDTO: {
1950
+ UserAttributeInput: {
1879
1951
  name: string;
1880
1952
  value?: (string | number | string[] | number[]) | null;
1881
1953
  };
1882
- UserAttributesConnectionRestDto: {
1883
- items: components["schemas"]["UserAttributeDTO"][];
1884
- pageInfo: components["schemas"]["PageInfoDto"];
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;
1954
+ UserAttributesConnectionResponse: {
1955
+ items: components["schemas"]["UserAttribute"][];
1956
+ pageInfo: components["schemas"]["PageInfo"];
1910
1957
  };
1911
1958
  UserGroupDTO: {
1912
1959
  description?: string | null;
@@ -1914,16 +1961,16 @@ export interface components {
1914
1961
  name: string;
1915
1962
  userCount?: number | null;
1916
1963
  };
1917
- UserGroupsConnectionRestDto: {
1964
+ UserGroupsConnectionResponse: {
1918
1965
  items: components["schemas"]["UserGroupDTO"][];
1919
- pageInfo: components["schemas"]["PageInfoDto"];
1966
+ pageInfo: components["schemas"]["PageInfo"];
1920
1967
  };
1921
1968
  UserImpersonationDTO: {
1922
1969
  expiresAt?: (string) | null;
1923
- impersonatedUser?: components["schemas"]["UserDTO"] | null;
1970
+ impersonatedUser?: components["schemas"]["User"] | null;
1924
1971
  startedAt?: (string) | null;
1925
1972
  };
1926
- UserSettings: {
1973
+ UserSettingsInput: {
1927
1974
  alternatingRowColors?: boolean | null;
1928
1975
  lastSeenChangelogId?: number | null;
1929
1976
  locale?: string | null;
@@ -1931,8 +1978,8 @@ export interface components {
1931
1978
  timezone?: string | null;
1932
1979
  };
1933
1980
  UsersConnection: {
1934
- items: components["schemas"]["ResourceOwnerDto"][];
1935
- pageInfo: components["schemas"]["PageInfoDto"];
1981
+ items: components["schemas"]["ResourceOwner"][];
1982
+ pageInfo: components["schemas"]["PageInfo"];
1936
1983
  };
1937
1984
  WidgetThemeBorderSectionInput: {
1938
1985
  color?: string | null;
@@ -1960,19 +2007,12 @@ export interface components {
1960
2007
  fontSize?: string | null;
1961
2008
  fontWeight?: string | null;
1962
2009
  };
1963
- WorkbookDashboardDto: {
1964
- dashboardDraft?: components["schemas"]["DashboardConfigDto"] | null;
1965
- dashboardPublished?: components["schemas"]["DashboardConfigDto"] | null;
1966
- };
1967
- WorkbookDashboardInput: {
1968
- dashboardDraft?: components["schemas"]["DashboardConfigInput"] | null;
1969
- };
1970
- WorkbookDto: {
2010
+ Workbook: {
1971
2011
  calculatedFields: Record<string, never>;
1972
2012
  createdAt: string;
1973
2013
  createdBy?: number;
1974
- dashboardDraft?: components["schemas"]["DashboardConfigDto"] | null;
1975
- dashboardPublished?: components["schemas"]["DashboardConfigDto"] | null;
2014
+ dashboardDraft?: components["schemas"]["DashboardConfig"] | null;
2015
+ dashboardPublished?: components["schemas"]["DashboardConfig"] | null;
1976
2016
  deploymentId: number;
1977
2017
  folderId?: number | null;
1978
2018
  id: number;
@@ -1981,22 +2021,29 @@ export interface components {
1981
2021
  [key: string]: any;
1982
2022
  };
1983
2023
  name: string;
1984
- publishedDashboard?: components["schemas"]["DashboardDto"] | null;
2024
+ publishedDashboard?: components["schemas"]["Dashboard"] | null;
1985
2025
  type: components["schemas"]["WorkbookDtoType"];
1986
2026
  updatedAt: string;
1987
2027
  userId?: number | null;
1988
2028
  };
2029
+ WorkbookDashboard: {
2030
+ dashboardDraft?: components["schemas"]["DashboardConfig"] | null;
2031
+ dashboardPublished?: components["schemas"]["DashboardConfig"] | null;
2032
+ };
2033
+ WorkbookDashboardInput: {
2034
+ dashboardDraft?: components["schemas"]["DashboardConfigInput"] | null;
2035
+ };
1989
2036
  /** @enum {string} */
1990
2037
  WorkbookDtoType: "FOLDER" | "WORKBOOK" | "REPORT";
1991
2038
  WorkbooksListResponse: {
1992
2039
  count?: number | null;
1993
- data: components["schemas"]["WorkbookDto"][];
1994
- items: components["schemas"]["WorkbookDto"][];
1995
- pageInfo?: components["schemas"]["PageInfoDto"] | null;
2040
+ data: components["schemas"]["Workbook"][];
2041
+ items: components["schemas"]["Workbook"][];
2042
+ pageInfo?: components["schemas"]["PageInfo"] | null;
1996
2043
  };
1997
- WorkspaceConnectionRestDto: {
1998
- items: components["schemas"]["WorkbookDto"][];
1999
- pageInfo: components["schemas"]["PageInfoDto"];
2044
+ WorkspaceConnectionResponse: {
2045
+ items: components["schemas"]["Workbook"][];
2046
+ pageInfo: components["schemas"]["PageInfo"];
2000
2047
  };
2001
2048
  };
2002
2049
  responses: never;
@@ -2372,7 +2419,7 @@ export interface operations {
2372
2419
  [name: string]: any;
2373
2420
  };
2374
2421
  content: {
2375
- "application/json": components["schemas"]["ActiveAgentRegionDto"];
2422
+ "application/json": components["schemas"]["ActiveAgentRegion"];
2376
2423
  };
2377
2424
  };
2378
2425
  };
@@ -2394,7 +2441,7 @@ export interface operations {
2394
2441
  [name: string]: any;
2395
2442
  };
2396
2443
  content: {
2397
- "application/json": components["schemas"]["AIEngineerSettingsDTO"];
2444
+ "application/json": components["schemas"]["AIEngineerSettings"];
2398
2445
  };
2399
2446
  };
2400
2447
  };
@@ -2413,7 +2460,7 @@ export interface operations {
2413
2460
  [name: string]: any;
2414
2461
  };
2415
2462
  content: {
2416
- "application/json": components["schemas"]["AppThemePublicDto"];
2463
+ "application/json": components["schemas"]["AppThemeResponse"];
2417
2464
  };
2418
2465
  };
2419
2466
  };
@@ -2425,9 +2472,9 @@ export interface operations {
2425
2472
  offset?: number | null;
2426
2473
  limit?: number | null;
2427
2474
  /** @description Page size for cursor-based pagination */
2428
- first?: number | string | null;
2475
+ first?: number;
2429
2476
  /** @description Cursor for fetching the next page */
2430
- after?: string | number | null;
2477
+ after?: string;
2431
2478
  };
2432
2479
  header?: never;
2433
2480
  path?: never;
@@ -2485,7 +2532,7 @@ export interface operations {
2485
2532
  [name: string]: any;
2486
2533
  };
2487
2534
  content: {
2488
- "application/json": components["schemas"]["AgentSkillsResponseDto"];
2535
+ "application/json": components["schemas"]["AgentSkillsResponse"];
2489
2536
  };
2490
2537
  };
2491
2538
  };
@@ -2508,7 +2555,7 @@ export interface operations {
2508
2555
  [name: string]: any;
2509
2556
  };
2510
2557
  content: {
2511
- "application/json": components["schemas"]["AgentDto"][];
2558
+ "application/json": components["schemas"]["Agent"][];
2512
2559
  };
2513
2560
  };
2514
2561
  };
@@ -2620,7 +2667,9 @@ export interface operations {
2620
2667
  "FoldersPublicController.getFolders": {
2621
2668
  parameters: {
2622
2669
  query?: {
2623
- parentId?: number;
2670
+ parentId?: number | null;
2671
+ after?: string;
2672
+ first?: number;
2624
2673
  };
2625
2674
  header?: never;
2626
2675
  path: {
@@ -2635,7 +2684,7 @@ export interface operations {
2635
2684
  [name: string]: any;
2636
2685
  };
2637
2686
  content: {
2638
- "application/json": components["schemas"]["FoldersFindAllResult"];
2687
+ "application/json": components["schemas"]["FoldersListResponse"];
2639
2688
  };
2640
2689
  };
2641
2690
  };
@@ -2661,7 +2710,7 @@ export interface operations {
2661
2710
  [name: string]: any;
2662
2711
  };
2663
2712
  content: {
2664
- "application/json": components["schemas"]["FolderDto"];
2713
+ "application/json": components["schemas"]["Folder"];
2665
2714
  };
2666
2715
  };
2667
2716
  };
@@ -2688,7 +2737,7 @@ export interface operations {
2688
2737
  [name: string]: any;
2689
2738
  };
2690
2739
  content: {
2691
- "application/json": components["schemas"]["FolderDto"];
2740
+ "application/json": components["schemas"]["Folder"];
2692
2741
  };
2693
2742
  };
2694
2743
  };
@@ -2733,7 +2782,7 @@ export interface operations {
2733
2782
  [name: string]: any;
2734
2783
  };
2735
2784
  content: {
2736
- "application/json": components["schemas"]["FolderDto"][];
2785
+ "application/json": components["schemas"]["Folder"][];
2737
2786
  };
2738
2787
  };
2739
2788
  };
@@ -2744,9 +2793,9 @@ export interface operations {
2744
2793
  /** @description Optional filter: only return notifications for this dashboard id. */
2745
2794
  dashboardId?: number | null;
2746
2795
  /** @description Page size for cursor pagination (default 100, max 200). */
2747
- first?: number | string | null;
2796
+ first?: number;
2748
2797
  /** @description Opaque cursor for the next page; pass the previous response's `pageInfo.endCursor`. */
2749
- after?: string | number | null;
2798
+ after?: string;
2750
2799
  };
2751
2800
  header?: never;
2752
2801
  path: {
@@ -2762,7 +2811,7 @@ export interface operations {
2762
2811
  [name: string]: any;
2763
2812
  };
2764
2813
  content: {
2765
- "application/json": components["schemas"]["NotificationsListDto"];
2814
+ "application/json": components["schemas"]["NotificationsListResponse"];
2766
2815
  };
2767
2816
  };
2768
2817
  };
@@ -2903,7 +2952,7 @@ export interface operations {
2903
2952
  [name: string]: any;
2904
2953
  };
2905
2954
  content: {
2906
- "application/json": components["schemas"]["RecipientsListDto"];
2955
+ "application/json": components["schemas"]["NotificationRecipientsListResponse"];
2907
2956
  };
2908
2957
  };
2909
2958
  };
@@ -2920,10 +2969,10 @@ export interface operations {
2920
2969
  };
2921
2970
  cookie?: never;
2922
2971
  };
2923
- /** @description AddRecipientsInput */
2972
+ /** @description AddNotificationRecipientsInput */
2924
2973
  requestBody?: {
2925
2974
  content: {
2926
- "application/json": components["schemas"]["AddRecipientsInput"];
2975
+ "application/json": components["schemas"]["AddNotificationRecipientsInput"];
2927
2976
  };
2928
2977
  };
2929
2978
  responses: {
@@ -2932,7 +2981,7 @@ export interface operations {
2932
2981
  [name: string]: any;
2933
2982
  };
2934
2983
  content: {
2935
- "application/json": components["schemas"]["RecipientsMutationResultDto"];
2984
+ "application/json": components["schemas"]["NotificationRecipientsMutationResponse"];
2936
2985
  };
2937
2986
  };
2938
2987
  };
@@ -2949,10 +2998,10 @@ export interface operations {
2949
2998
  };
2950
2999
  cookie?: never;
2951
3000
  };
2952
- /** @description RemoveRecipientsInput */
3001
+ /** @description RemoveNotificationRecipientsInput */
2953
3002
  requestBody?: {
2954
3003
  content: {
2955
- "application/json": components["schemas"]["RemoveRecipientsInput"];
3004
+ "application/json": components["schemas"]["RemoveNotificationRecipientsInput"];
2956
3005
  };
2957
3006
  };
2958
3007
  responses: {
@@ -3043,7 +3092,7 @@ export interface operations {
3043
3092
  [name: string]: any;
3044
3093
  };
3045
3094
  content: {
3046
- "application/json": components["schemas"]["ReportDto"];
3095
+ "application/json": components["schemas"]["Report"];
3047
3096
  };
3048
3097
  };
3049
3098
  };
@@ -3065,7 +3114,7 @@ export interface operations {
3065
3114
  [name: string]: any;
3066
3115
  };
3067
3116
  content: {
3068
- "application/json": components["schemas"]["ReportDto"];
3117
+ "application/json": components["schemas"]["Report"];
3069
3118
  };
3070
3119
  };
3071
3120
  };
@@ -3092,7 +3141,7 @@ export interface operations {
3092
3141
  [name: string]: any;
3093
3142
  };
3094
3143
  content: {
3095
- "application/json": components["schemas"]["ReportDto"];
3144
+ "application/json": components["schemas"]["Report"];
3096
3145
  };
3097
3146
  };
3098
3147
  };
@@ -3137,7 +3186,7 @@ export interface operations {
3137
3186
  [name: string]: any;
3138
3187
  };
3139
3188
  content: {
3140
- "application/json": components["schemas"]["ReportDto"];
3189
+ "application/json": components["schemas"]["Report"];
3141
3190
  };
3142
3191
  };
3143
3192
  };
@@ -3146,12 +3195,12 @@ export interface operations {
3146
3195
  parameters: {
3147
3196
  query?: {
3148
3197
  folderId?: number | null;
3149
- first?: number | null;
3150
- after?: string | null;
3151
3198
  types?: ("FOLDER" | "WORKBOOK" | "REPORT")[] | null;
3152
3199
  orderByField?: components["schemas"]["GetWorkspaceObjectsQueryOrderByField"] | null;
3153
3200
  orderByDirection?: components["schemas"]["GetWorkspaceObjectsQueryOrderByDirection"] | null;
3154
3201
  search?: string | null;
3202
+ after?: string;
3203
+ first?: number;
3155
3204
  };
3156
3205
  header?: never;
3157
3206
  path: {
@@ -3166,7 +3215,7 @@ export interface operations {
3166
3215
  [name: string]: any;
3167
3216
  };
3168
3217
  content: {
3169
- "application/json": components["schemas"]["WorkspaceConnectionRestDto"];
3218
+ "application/json": components["schemas"]["WorkspaceConnectionResponse"];
3170
3219
  };
3171
3220
  };
3172
3221
  };
@@ -3196,8 +3245,8 @@ export interface operations {
3196
3245
  parameters: {
3197
3246
  query?: {
3198
3247
  folderId?: number | null;
3199
- after?: string | null;
3200
- first?: number | null;
3248
+ after?: string;
3249
+ first?: number;
3201
3250
  };
3202
3251
  header?: never;
3203
3252
  path: {
@@ -3238,7 +3287,7 @@ export interface operations {
3238
3287
  [name: string]: any;
3239
3288
  };
3240
3289
  content: {
3241
- "application/json": components["schemas"]["WorkbookDto"];
3290
+ "application/json": components["schemas"]["Workbook"];
3242
3291
  };
3243
3292
  };
3244
3293
  };
@@ -3260,7 +3309,7 @@ export interface operations {
3260
3309
  [name: string]: any;
3261
3310
  };
3262
3311
  content: {
3263
- "application/json": components["schemas"]["WorkbookDto"];
3312
+ "application/json": components["schemas"]["Workbook"];
3264
3313
  };
3265
3314
  };
3266
3315
  };
@@ -3338,7 +3387,7 @@ export interface operations {
3338
3387
  [name: string]: any;
3339
3388
  };
3340
3389
  content: {
3341
- "application/json": components["schemas"]["WorkbookDashboardDto"];
3390
+ "application/json": components["schemas"]["WorkbookDashboard"];
3342
3391
  };
3343
3392
  };
3344
3393
  };
@@ -3360,7 +3409,7 @@ export interface operations {
3360
3409
  [name: string]: any;
3361
3410
  };
3362
3411
  content: {
3363
- "application/json": components["schemas"]["WorkbookDto"];
3412
+ "application/json": components["schemas"]["Workbook"];
3364
3413
  };
3365
3414
  };
3366
3415
  };
@@ -3387,7 +3436,7 @@ export interface operations {
3387
3436
  [name: string]: any;
3388
3437
  };
3389
3438
  content: {
3390
- "application/json": components["schemas"]["DashboardDto"];
3439
+ "application/json": components["schemas"]["Dashboard"];
3391
3440
  };
3392
3441
  };
3393
3442
  };
@@ -3396,12 +3445,12 @@ export interface operations {
3396
3445
  parameters: {
3397
3446
  query?: {
3398
3447
  folderId?: number | null;
3399
- first?: number | null;
3400
- after?: string | null;
3401
3448
  types?: ("FOLDER" | "WORKBOOK" | "REPORT")[] | null;
3402
3449
  orderByField?: components["schemas"]["GetWorkspaceObjectsQueryOrderByField"] | null;
3403
3450
  orderByDirection?: components["schemas"]["GetWorkspaceObjectsQueryOrderByDirection"] | null;
3404
3451
  search?: string | null;
3452
+ after?: string;
3453
+ first?: number;
3405
3454
  };
3406
3455
  header?: never;
3407
3456
  path: {
@@ -3416,7 +3465,7 @@ export interface operations {
3416
3465
  [name: string]: any;
3417
3466
  };
3418
3467
  content: {
3419
- "application/json": components["schemas"]["WorkspaceConnectionRestDto"];
3468
+ "application/json": components["schemas"]["WorkspaceConnectionResponse"];
3420
3469
  };
3421
3470
  };
3422
3471
  };
@@ -3442,7 +3491,7 @@ export interface operations {
3442
3491
  [name: string]: any;
3443
3492
  };
3444
3493
  content: {
3445
- "application/json": components["schemas"]["WorkbookDto"];
3494
+ "application/json": components["schemas"]["Workbook"];
3446
3495
  };
3447
3496
  };
3448
3497
  };
@@ -3466,7 +3515,7 @@ export interface operations {
3466
3515
  [name: string]: any;
3467
3516
  };
3468
3517
  content: {
3469
- "application/json": components["schemas"]["UserGroupsConnectionRestDto"];
3518
+ "application/json": components["schemas"]["UserGroupsConnectionResponse"];
3470
3519
  };
3471
3520
  };
3472
3521
  };
@@ -3513,7 +3562,7 @@ export interface operations {
3513
3562
  [name: string]: any;
3514
3563
  };
3515
3564
  content: {
3516
- "application/json": components["schemas"]["UserAttributesConnectionRestDto"];
3565
+ "application/json": components["schemas"]["UserAttributesConnectionResponse"];
3517
3566
  };
3518
3567
  };
3519
3568
  };
@@ -3557,7 +3606,7 @@ export interface operations {
3557
3606
  [name: string]: any;
3558
3607
  };
3559
3608
  content: {
3560
- "application/json": components["schemas"]["DashboardDto"];
3609
+ "application/json": components["schemas"]["Dashboard"];
3561
3610
  };
3562
3611
  };
3563
3612
  };
@@ -3572,7 +3621,7 @@ export interface operations {
3572
3621
  /** @description GenerateSessionDTO */
3573
3622
  requestBody?: {
3574
3623
  content: {
3575
- "application/json": components["schemas"]["GenerateSessionDTO"];
3624
+ "application/json": components["schemas"]["GenerateSession"];
3576
3625
  };
3577
3626
  };
3578
3627
  responses: {
@@ -3581,7 +3630,7 @@ export interface operations {
3581
3630
  [name: string]: any;
3582
3631
  };
3583
3632
  content: {
3584
- "application/json": components["schemas"]["GenerateSessionResponseDTO"];
3633
+ "application/json": components["schemas"]["GenerateSessionResponse"];
3585
3634
  };
3586
3635
  };
3587
3636
  };
@@ -3596,7 +3645,7 @@ export interface operations {
3596
3645
  /** @description PostTokenBySessionIdInputDTO */
3597
3646
  requestBody?: {
3598
3647
  content: {
3599
- "application/json": components["schemas"]["PostTokenBySessionIdInputDTO"];
3648
+ "application/json": components["schemas"]["PostTokenBySessionIdInput"];
3600
3649
  };
3601
3650
  };
3602
3651
  responses: {
@@ -3605,7 +3654,7 @@ export interface operations {
3605
3654
  [name: string]: any;
3606
3655
  };
3607
3656
  content: {
3608
- "application/json": components["schemas"]["GenerateEmbedTokenResponseDTO"];
3657
+ "application/json": components["schemas"]["GenerateEmbedTokenResponse"];
3609
3658
  };
3610
3659
  };
3611
3660
  };
@@ -3674,7 +3723,7 @@ export interface operations {
3674
3723
  [name: string]: any;
3675
3724
  };
3676
3725
  content: {
3677
- "application/json": components["schemas"]["ResourcePoliciesResponseDto"];
3726
+ "application/json": components["schemas"]["ResourcePoliciesResponse"];
3678
3727
  };
3679
3728
  };
3680
3729
  };
@@ -3768,7 +3817,7 @@ export interface operations {
3768
3817
  [name: string]: any;
3769
3818
  };
3770
3819
  content: {
3771
- "application/json": components["schemas"]["UserGroupsConnectionRestDto"];
3820
+ "application/json": components["schemas"]["UserGroupsConnectionResponse"];
3772
3821
  };
3773
3822
  };
3774
3823
  };
@@ -3809,7 +3858,7 @@ export interface operations {
3809
3858
  [name: string]: any;
3810
3859
  };
3811
3860
  content: {
3812
- "application/json": components["schemas"]["EmbedThemeDTO"];
3861
+ "application/json": components["schemas"]["EmbedTheme"];
3813
3862
  };
3814
3863
  };
3815
3864
  };
@@ -3828,7 +3877,7 @@ export interface operations {
3828
3877
  [name: string]: any;
3829
3878
  };
3830
3879
  content: {
3831
- "application/json": components["schemas"]["UserDTO"];
3880
+ "application/json": components["schemas"]["User"];
3832
3881
  };
3833
3882
  };
3834
3883
  };