@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.0-alpha.3

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.
@@ -1403,6 +1403,38 @@
1403
1403
  }
1404
1404
  }
1405
1405
  },
1406
+ "/api/v1/actions/workspaces/{workspaceId}/ai/memory/createdBy": {
1407
+ "get": {
1408
+ "tags": ["Smart Functions", "actions"],
1409
+ "summary": "Get AI Memory CreatedBy Users",
1410
+ "description": "Returns a list of Users who created any memory item for this workspace",
1411
+ "operationId": "memoryCreatedByUsers",
1412
+ "parameters": [
1413
+ {
1414
+ "name": "workspaceId",
1415
+ "in": "path",
1416
+ "description": "Workspace identifier",
1417
+ "required": true,
1418
+ "schema": {
1419
+ "pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
1420
+ "type": "string"
1421
+ }
1422
+ }
1423
+ ],
1424
+ "responses": {
1425
+ "200": {
1426
+ "description": "OK",
1427
+ "content": {
1428
+ "application/json": {
1429
+ "schema": {
1430
+ "$ref": "#/components/schemas/MemoryItemCreatedByUsers"
1431
+ }
1432
+ }
1433
+ }
1434
+ }
1435
+ }
1436
+ }
1437
+ },
1406
1438
  "/api/v1/actions/workspaces/{workspaceId}/ai/issues/status/{processId}": {
1407
1439
  "get": {
1408
1440
  "tags": ["Smart Functions", "actions"],
@@ -1542,7 +1574,7 @@
1542
1574
  "/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy": {
1543
1575
  "get": {
1544
1576
  "tags": ["Smart Functions", "actions"],
1545
- "summary": "Get Analytics Catalog CreatedBy",
1577
+ "summary": "Get Analytics Catalog CreatedBy Users",
1546
1578
  "description": "Returns a list of Users who created any object for this workspace",
1547
1579
  "operationId": "createdBy",
1548
1580
  "parameters": [
@@ -4532,7 +4564,9 @@
4532
4564
  "metricValueDelta",
4533
4565
  "metricValueDeltaAbs",
4534
4566
  "metricValueInAnalyzedPeriod",
4535
- "metricValueInReferencePeriod"
4567
+ "metricValueInReferencePeriod",
4568
+ "overallMetricValueInAnalyzedPeriod",
4569
+ "overallMetricValueInReferencePeriod"
4536
4570
  ],
4537
4571
  "type": "object",
4538
4572
  "properties": {
@@ -4577,6 +4611,16 @@
4577
4611
  "isSignificantChange": {
4578
4612
  "type": "boolean",
4579
4613
  "description": "Whether the change is statistically significant"
4614
+ },
4615
+ "overallMetricValueInAnalyzedPeriod": {
4616
+ "type": "number",
4617
+ "description": "The overall metric value in the analyzed period",
4618
+ "format": "double"
4619
+ },
4620
+ "overallMetricValueInReferencePeriod": {
4621
+ "type": "number",
4622
+ "description": "The overall metric value in the reference period",
4623
+ "format": "double"
4580
4624
  }
4581
4625
  },
4582
4626
  "description": "Individual change analysis data item"
@@ -4878,6 +4922,42 @@
4878
4922
  }
4879
4923
  }
4880
4924
  },
4925
+ "MemoryItemCreatedByUsers": {
4926
+ "required": ["reasoning", "users"],
4927
+ "type": "object",
4928
+ "properties": {
4929
+ "users": {
4930
+ "type": "array",
4931
+ "description": "Users who created memory item",
4932
+ "items": {
4933
+ "$ref": "#/components/schemas/MemoryItemUser"
4934
+ }
4935
+ },
4936
+ "reasoning": {
4937
+ "type": "string",
4938
+ "description": "Reasoning for error states"
4939
+ }
4940
+ }
4941
+ },
4942
+ "MemoryItemUser": {
4943
+ "required": ["firstname", "lastname", "userId"],
4944
+ "type": "object",
4945
+ "properties": {
4946
+ "userId": {
4947
+ "type": "string",
4948
+ "description": "User ID of the user who created memory item"
4949
+ },
4950
+ "firstname": {
4951
+ "type": "string",
4952
+ "description": "First name of the user who created memory item"
4953
+ },
4954
+ "lastname": {
4955
+ "type": "string",
4956
+ "description": "Last name of the user who created memory item"
4957
+ }
4958
+ },
4959
+ "description": "Users who created memory item"
4960
+ },
4881
4961
  "QualityIssue": {
4882
4962
  "required": ["code", "detail", "id", "objects", "severity"],
4883
4963
  "type": "object",