@gooddata/api-client-tiger 11.2.0-alpha.4 → 11.2.0-alpha.6

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.
@@ -1287,6 +1287,38 @@
1287
1287
  }
1288
1288
  }
1289
1289
  },
1290
+ "/api/v1/actions/workspaces/{workspaceId}/ai/issues": {
1291
+ "get": {
1292
+ "tags": ["Smart Functions", "actions"],
1293
+ "summary": "Get Quality Issues",
1294
+ "description": "Returns metadata quality issues detected by the platform linter.",
1295
+ "operationId": "getQualityIssues",
1296
+ "parameters": [
1297
+ {
1298
+ "name": "workspaceId",
1299
+ "in": "path",
1300
+ "description": "Workspace identifier",
1301
+ "required": true,
1302
+ "schema": {
1303
+ "pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
1304
+ "type": "string"
1305
+ }
1306
+ }
1307
+ ],
1308
+ "responses": {
1309
+ "200": {
1310
+ "description": "OK",
1311
+ "content": {
1312
+ "application/json": {
1313
+ "schema": {
1314
+ "$ref": "#/components/schemas/GetQualityIssuesResponse"
1315
+ }
1316
+ }
1317
+ }
1318
+ }
1319
+ }
1320
+ }
1321
+ },
1290
1322
  "/api/v1/actions/workspaces/{workspaceId}/ai/chatUsage": {
1291
1323
  "get": {
1292
1324
  "tags": ["Smart Functions", "actions"],
@@ -1318,6 +1350,70 @@
1318
1350
  }
1319
1351
  }
1320
1352
  }
1353
+ },
1354
+ "/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags": {
1355
+ "get": {
1356
+ "tags": ["Smart Functions", "actions"],
1357
+ "summary": "Get Analytics Catalog Tags",
1358
+ "description": "Returns a list of tags for this workspace",
1359
+ "operationId": "tags",
1360
+ "parameters": [
1361
+ {
1362
+ "name": "workspaceId",
1363
+ "in": "path",
1364
+ "description": "Workspace identifier",
1365
+ "required": true,
1366
+ "schema": {
1367
+ "pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
1368
+ "type": "string"
1369
+ }
1370
+ }
1371
+ ],
1372
+ "responses": {
1373
+ "200": {
1374
+ "description": "OK",
1375
+ "content": {
1376
+ "application/json": {
1377
+ "schema": {
1378
+ "$ref": "#/components/schemas/AnalyticsCatalogTags"
1379
+ }
1380
+ }
1381
+ }
1382
+ }
1383
+ }
1384
+ }
1385
+ },
1386
+ "/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy": {
1387
+ "get": {
1388
+ "tags": ["Smart Functions", "actions"],
1389
+ "summary": "Get Analytics Catalog CreatedBy",
1390
+ "description": "Returns a list of Users who created any object for this workspace",
1391
+ "operationId": "createdBy",
1392
+ "parameters": [
1393
+ {
1394
+ "name": "workspaceId",
1395
+ "in": "path",
1396
+ "description": "Workspace identifier",
1397
+ "required": true,
1398
+ "schema": {
1399
+ "pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
1400
+ "type": "string"
1401
+ }
1402
+ }
1403
+ ],
1404
+ "responses": {
1405
+ "200": {
1406
+ "description": "OK",
1407
+ "content": {
1408
+ "application/json": {
1409
+ "schema": {
1410
+ "$ref": "#/components/schemas/AnalyticsCatalogCreatedBy"
1411
+ }
1412
+ }
1413
+ }
1414
+ }
1415
+ }
1416
+ }
1321
1417
  }
1322
1418
  },
1323
1419
  "components": {
@@ -3189,6 +3285,11 @@
3189
3285
  "description": "Score, above which we return found objects. Below this score objects are not relevant.",
3190
3286
  "format": "double",
3191
3287
  "default": 0.3
3288
+ },
3289
+ "includeHidden": {
3290
+ "type": "boolean",
3291
+ "description": "If true, includes hidden objects in search results. If false (default), excludes objects where isHidden=true.",
3292
+ "default": false
3192
3293
  }
3193
3294
  }
3194
3295
  },
@@ -3326,6 +3427,10 @@
3326
3427
  "type": "integer",
3327
3428
  "description": "Result score for exact match(id/title). 1/1000. Other scores are multiplied by this.",
3328
3429
  "format": "int32"
3430
+ },
3431
+ "isHidden": {
3432
+ "type": "boolean",
3433
+ "description": "If true, this object is hidden from AI search results by default."
3329
3434
  }
3330
3435
  }
3331
3436
  },
@@ -3635,6 +3740,9 @@
3635
3740
  },
3636
3741
  {
3637
3742
  "$ref": "#/components/schemas/DateRelativeFilter"
3743
+ },
3744
+ {
3745
+ "$ref": "#/components/schemas/RankingFilter"
3638
3746
  }
3639
3747
  ]
3640
3748
  }
@@ -4371,6 +4479,54 @@
4371
4479
  }
4372
4480
  }
4373
4481
  },
4482
+ "GetQualityIssuesResponse": {
4483
+ "required": ["issues"],
4484
+ "type": "object",
4485
+ "properties": {
4486
+ "issues": {
4487
+ "type": "array",
4488
+ "items": {
4489
+ "$ref": "#/components/schemas/QualityIssue"
4490
+ }
4491
+ }
4492
+ }
4493
+ },
4494
+ "QualityIssue": {
4495
+ "required": ["code", "detail", "objects", "severity"],
4496
+ "type": "object",
4497
+ "properties": {
4498
+ "objects": {
4499
+ "type": "array",
4500
+ "items": {
4501
+ "$ref": "#/components/schemas/QualityIssueObject"
4502
+ }
4503
+ },
4504
+ "severity": {
4505
+ "type": "string"
4506
+ },
4507
+ "code": {
4508
+ "type": "string"
4509
+ },
4510
+ "detail": {
4511
+ "type": "object",
4512
+ "additionalProperties": {
4513
+ "type": "object"
4514
+ }
4515
+ }
4516
+ }
4517
+ },
4518
+ "QualityIssueObject": {
4519
+ "required": ["id", "type"],
4520
+ "type": "object",
4521
+ "properties": {
4522
+ "type": {
4523
+ "type": "string"
4524
+ },
4525
+ "id": {
4526
+ "type": "string"
4527
+ }
4528
+ }
4529
+ },
4374
4530
  "ChatUsageResponse": {
4375
4531
  "required": ["interactionCount", "interactionLimit", "timeWindowHours"],
4376
4532
  "type": "object",
@@ -4391,6 +4547,55 @@
4391
4547
  "format": "int32"
4392
4548
  }
4393
4549
  }
4550
+ },
4551
+ "AnalyticsCatalogTags": {
4552
+ "required": ["tags"],
4553
+ "type": "object",
4554
+ "properties": {
4555
+ "tags": {
4556
+ "type": "array",
4557
+ "items": {
4558
+ "type": "string",
4559
+ "description": "Tags assigned to any object in the catalog"
4560
+ }
4561
+ }
4562
+ }
4563
+ },
4564
+ "AnalyticsCatalogCreatedBy": {
4565
+ "required": ["reasoning", "users"],
4566
+ "type": "object",
4567
+ "properties": {
4568
+ "users": {
4569
+ "type": "array",
4570
+ "description": "Users who created any object in the catalog",
4571
+ "items": {
4572
+ "$ref": "#/components/schemas/AnalyticsCatalogUser"
4573
+ }
4574
+ },
4575
+ "reasoning": {
4576
+ "type": "string",
4577
+ "description": "Reasoning for error states"
4578
+ }
4579
+ }
4580
+ },
4581
+ "AnalyticsCatalogUser": {
4582
+ "required": ["firstname", "lastname", "userId"],
4583
+ "type": "object",
4584
+ "properties": {
4585
+ "userId": {
4586
+ "type": "string",
4587
+ "description": "User ID of the user who created any objects"
4588
+ },
4589
+ "firstname": {
4590
+ "type": "string",
4591
+ "description": "First name of the user who created any objects"
4592
+ },
4593
+ "lastname": {
4594
+ "type": "string",
4595
+ "description": "Last name of the user who created any objects"
4596
+ }
4597
+ },
4598
+ "description": "Users who created any object in the catalog"
4394
4599
  }
4395
4600
  }
4396
4601
  }
@@ -173,18 +173,14 @@ export interface ApiEntitlement {
173
173
  export declare const ApiEntitlementNameEnum: {
174
174
  readonly CACHE_STRATEGY: "CacheStrategy";
175
175
  readonly CONTRACT: "Contract";
176
- readonly CUSTOM_THEMING: "CustomTheming";
177
176
  readonly EXTRA_CACHE: "ExtraCache";
178
177
  readonly HIPAA: "Hipaa";
179
- readonly PDF_EXPORTS: "PdfExports";
180
178
  readonly MANAGED_OIDC: "ManagedOIDC";
181
- readonly UI_LOCALIZATION: "UiLocalization";
182
179
  readonly TIER: "Tier";
183
180
  readonly USER_COUNT: "UserCount";
184
181
  readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
185
182
  readonly UNLIMITED_USERS: "UnlimitedUsers";
186
183
  readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
187
- readonly WHITE_LABELING: "WhiteLabeling";
188
184
  readonly WORKSPACE_COUNT: "WorkspaceCount";
189
185
  readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
190
186
  readonly AUTOMATION_COUNT: "AutomationCount";
@@ -2713,18 +2709,14 @@ export interface EntitlementsRequest {
2713
2709
  export declare const EntitlementsRequestEntitlementsNameEnum: {
2714
2710
  readonly CACHE_STRATEGY: "CacheStrategy";
2715
2711
  readonly CONTRACT: "Contract";
2716
- readonly CUSTOM_THEMING: "CustomTheming";
2717
2712
  readonly EXTRA_CACHE: "ExtraCache";
2718
2713
  readonly HIPAA: "Hipaa";
2719
- readonly PDF_EXPORTS: "PdfExports";
2720
2714
  readonly MANAGED_OIDC: "ManagedOIDC";
2721
- readonly UI_LOCALIZATION: "UiLocalization";
2722
2715
  readonly TIER: "Tier";
2723
2716
  readonly USER_COUNT: "UserCount";
2724
2717
  readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
2725
2718
  readonly UNLIMITED_USERS: "UnlimitedUsers";
2726
2719
  readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
2727
- readonly WHITE_LABELING: "WhiteLabeling";
2728
2720
  readonly WORKSPACE_COUNT: "WorkspaceCount";
2729
2721
  readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
2730
2722
  readonly AUTOMATION_COUNT: "AutomationCount";