@gooddata/api-client-tiger 11.5.0-alpha.5 → 11.5.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/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +745 -615
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +311 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +299 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +150 -22
- package/esm/generated/auth-json-api/api.d.ts +551 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +696 -0
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +166 -0
- package/esm/generated/metadata-json-api/api.d.ts +489 -560
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +50 -50
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8790 -8955
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/generated/result-json-api/openapi-spec.json +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -903,6 +903,38 @@
|
|
|
903
903
|
}
|
|
904
904
|
}
|
|
905
905
|
},
|
|
906
|
+
"/api/v1/actions/workspaces/{workspaceId}/ai/issues/triggerCheck": {
|
|
907
|
+
"post": {
|
|
908
|
+
"tags": ["Smart Functions", "actions"],
|
|
909
|
+
"summary": "Trigger Quality Issues Calculation",
|
|
910
|
+
"description": "Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.",
|
|
911
|
+
"operationId": "triggerQualityIssuesCalculation",
|
|
912
|
+
"parameters": [
|
|
913
|
+
{
|
|
914
|
+
"name": "workspaceId",
|
|
915
|
+
"in": "path",
|
|
916
|
+
"description": "Workspace identifier",
|
|
917
|
+
"required": true,
|
|
918
|
+
"schema": {
|
|
919
|
+
"pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
|
|
920
|
+
"type": "string"
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
],
|
|
924
|
+
"responses": {
|
|
925
|
+
"200": {
|
|
926
|
+
"description": "OK",
|
|
927
|
+
"content": {
|
|
928
|
+
"application/json": {
|
|
929
|
+
"schema": {
|
|
930
|
+
"$ref": "#/components/schemas/TriggerQualityIssuesCalculationResponse"
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
},
|
|
906
938
|
"/api/v1/actions/workspaces/{workspaceId}/ai/chatStream": {
|
|
907
939
|
"post": {
|
|
908
940
|
"tags": ["Smart Functions", "actions"],
|
|
@@ -1565,6 +1597,46 @@
|
|
|
1565
1597
|
}
|
|
1566
1598
|
}
|
|
1567
1599
|
},
|
|
1600
|
+
"/api/v1/actions/workspaces/{workspaceId}/ai/issues/status/{processId}": {
|
|
1601
|
+
"get": {
|
|
1602
|
+
"tags": ["Smart Functions", "actions"],
|
|
1603
|
+
"summary": "Get Quality Issues Calculation Status",
|
|
1604
|
+
"description": "Returns the status of a quality issues calculation process identified by process ID.",
|
|
1605
|
+
"operationId": "getQualityIssuesCalculationStatus",
|
|
1606
|
+
"parameters": [
|
|
1607
|
+
{
|
|
1608
|
+
"name": "workspaceId",
|
|
1609
|
+
"in": "path",
|
|
1610
|
+
"description": "Workspace identifier",
|
|
1611
|
+
"required": true,
|
|
1612
|
+
"schema": {
|
|
1613
|
+
"pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
|
|
1614
|
+
"type": "string"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"name": "processId",
|
|
1619
|
+
"in": "path",
|
|
1620
|
+
"required": true,
|
|
1621
|
+
"schema": {
|
|
1622
|
+
"type": "string"
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
],
|
|
1626
|
+
"responses": {
|
|
1627
|
+
"200": {
|
|
1628
|
+
"description": "OK",
|
|
1629
|
+
"content": {
|
|
1630
|
+
"application/json": {
|
|
1631
|
+
"schema": {
|
|
1632
|
+
"$ref": "#/components/schemas/QualityIssuesCalculationStatusResponse"
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1568
1640
|
"/api/v1/actions/workspaces/{workspaceId}/ai/issues": {
|
|
1569
1641
|
"get": {
|
|
1570
1642
|
"tags": ["Smart Functions", "actions"],
|
|
@@ -2594,7 +2666,8 @@
|
|
|
2594
2666
|
"dateAttributeIdentifier",
|
|
2595
2667
|
"filters",
|
|
2596
2668
|
"metricIdentifier",
|
|
2597
|
-
"referencePeriod"
|
|
2669
|
+
"referencePeriod",
|
|
2670
|
+
"useSmartAttributeSelection"
|
|
2598
2671
|
],
|
|
2599
2672
|
"type": "object",
|
|
2600
2673
|
"properties": {
|
|
@@ -2628,6 +2701,10 @@
|
|
|
2628
2701
|
"items": {
|
|
2629
2702
|
"$ref": "#/components/schemas/AttributeEqualityFilter"
|
|
2630
2703
|
}
|
|
2704
|
+
},
|
|
2705
|
+
"useSmartAttributeSelection": {
|
|
2706
|
+
"type": "boolean",
|
|
2707
|
+
"description": "Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided."
|
|
2631
2708
|
}
|
|
2632
2709
|
},
|
|
2633
2710
|
"description": "Request for change analysis computation"
|
|
@@ -3869,6 +3946,21 @@
|
|
|
3869
3946
|
}
|
|
3870
3947
|
}
|
|
3871
3948
|
},
|
|
3949
|
+
"TriggerQualityIssuesCalculationResponse": {
|
|
3950
|
+
"required": ["processId", "status"],
|
|
3951
|
+
"type": "object",
|
|
3952
|
+
"properties": {
|
|
3953
|
+
"processId": {
|
|
3954
|
+
"type": "string",
|
|
3955
|
+
"description": "Process ID for tracking the calculation status"
|
|
3956
|
+
},
|
|
3957
|
+
"status": {
|
|
3958
|
+
"type": "string",
|
|
3959
|
+
"description": "Current status of the calculation",
|
|
3960
|
+
"enum": ["RUNNING", "COMPLETED", "FAILED"]
|
|
3961
|
+
}
|
|
3962
|
+
}
|
|
3963
|
+
},
|
|
3872
3964
|
"ActiveObjectIdentification": {
|
|
3873
3965
|
"required": ["id", "type", "workspaceId"],
|
|
3874
3966
|
"type": "object",
|
|
@@ -4573,13 +4665,13 @@
|
|
|
4573
4665
|
"nullable": true
|
|
4574
4666
|
}
|
|
4575
4667
|
},
|
|
4576
|
-
"
|
|
4668
|
+
"xcoord": {
|
|
4577
4669
|
"type": "array",
|
|
4578
4670
|
"items": {
|
|
4579
4671
|
"type": "number"
|
|
4580
4672
|
}
|
|
4581
4673
|
},
|
|
4582
|
-
"
|
|
4674
|
+
"ycoord": {
|
|
4583
4675
|
"type": "array",
|
|
4584
4676
|
"items": {
|
|
4585
4677
|
"type": "number"
|
|
@@ -4992,51 +5084,87 @@
|
|
|
4992
5084
|
}
|
|
4993
5085
|
}
|
|
4994
5086
|
},
|
|
4995
|
-
"GetQualityIssuesResponse": {
|
|
4996
|
-
"required": ["issues"],
|
|
4997
|
-
"type": "object",
|
|
4998
|
-
"properties": {
|
|
4999
|
-
"issues": {
|
|
5000
|
-
"type": "array",
|
|
5001
|
-
"items": {
|
|
5002
|
-
"$ref": "#/components/schemas/QualityIssue"
|
|
5003
|
-
}
|
|
5004
|
-
}
|
|
5005
|
-
}
|
|
5006
|
-
},
|
|
5007
5087
|
"QualityIssue": {
|
|
5008
5088
|
"required": ["code", "detail", "objects", "severity"],
|
|
5009
5089
|
"type": "object",
|
|
5010
5090
|
"properties": {
|
|
5011
5091
|
"objects": {
|
|
5012
5092
|
"type": "array",
|
|
5093
|
+
"description": "List of objects affected by this quality issue",
|
|
5013
5094
|
"items": {
|
|
5014
5095
|
"$ref": "#/components/schemas/QualityIssueObject"
|
|
5015
5096
|
}
|
|
5016
5097
|
},
|
|
5017
5098
|
"severity": {
|
|
5018
|
-
"type": "string"
|
|
5099
|
+
"type": "string",
|
|
5100
|
+
"description": "Severity level",
|
|
5101
|
+
"enum": ["error", "warning"]
|
|
5019
5102
|
},
|
|
5020
5103
|
"code": {
|
|
5021
|
-
"type": "string"
|
|
5104
|
+
"type": "string",
|
|
5105
|
+
"description": "Quality issue code",
|
|
5106
|
+
"example": "SIMILAR_NAMES"
|
|
5022
5107
|
},
|
|
5023
5108
|
"detail": {
|
|
5024
5109
|
"type": "object",
|
|
5025
5110
|
"additionalProperties": {
|
|
5026
|
-
"type": "object"
|
|
5027
|
-
|
|
5111
|
+
"type": "object",
|
|
5112
|
+
"description": "Detailed information about the quality issue"
|
|
5113
|
+
},
|
|
5114
|
+
"description": "Detailed information about the quality issue"
|
|
5028
5115
|
}
|
|
5029
|
-
}
|
|
5116
|
+
},
|
|
5117
|
+
"description": "List of quality issues (available when status is COMPLETED)"
|
|
5030
5118
|
},
|
|
5031
5119
|
"QualityIssueObject": {
|
|
5032
5120
|
"required": ["id", "type"],
|
|
5033
5121
|
"type": "object",
|
|
5034
5122
|
"properties": {
|
|
5035
5123
|
"type": {
|
|
5036
|
-
"type": "string"
|
|
5124
|
+
"type": "string",
|
|
5125
|
+
"description": "Object type",
|
|
5126
|
+
"example": "metric"
|
|
5037
5127
|
},
|
|
5038
5128
|
"id": {
|
|
5039
|
-
"type": "string"
|
|
5129
|
+
"type": "string",
|
|
5130
|
+
"description": "Object ID",
|
|
5131
|
+
"example": "revenue"
|
|
5132
|
+
}
|
|
5133
|
+
},
|
|
5134
|
+
"description": "List of objects affected by this quality issue"
|
|
5135
|
+
},
|
|
5136
|
+
"QualityIssuesCalculationStatusResponse": {
|
|
5137
|
+
"required": ["status"],
|
|
5138
|
+
"type": "object",
|
|
5139
|
+
"properties": {
|
|
5140
|
+
"status": {
|
|
5141
|
+
"type": "string",
|
|
5142
|
+
"description": "Current status of the calculation",
|
|
5143
|
+
"enum": ["RUNNING", "COMPLETED", "FAILED", "NOT_FOUND"]
|
|
5144
|
+
},
|
|
5145
|
+
"issues": {
|
|
5146
|
+
"type": "array",
|
|
5147
|
+
"description": "List of quality issues (available when status is COMPLETED)",
|
|
5148
|
+
"items": {
|
|
5149
|
+
"$ref": "#/components/schemas/QualityIssue"
|
|
5150
|
+
}
|
|
5151
|
+
},
|
|
5152
|
+
"error": {
|
|
5153
|
+
"type": "string",
|
|
5154
|
+
"description": "Error message (available when status is FAILED or NOT_FOUND)"
|
|
5155
|
+
}
|
|
5156
|
+
}
|
|
5157
|
+
},
|
|
5158
|
+
"GetQualityIssuesResponse": {
|
|
5159
|
+
"required": ["issues"],
|
|
5160
|
+
"type": "object",
|
|
5161
|
+
"properties": {
|
|
5162
|
+
"issues": {
|
|
5163
|
+
"type": "array",
|
|
5164
|
+
"description": "List of quality issues found in the workspace",
|
|
5165
|
+
"items": {
|
|
5166
|
+
"$ref": "#/components/schemas/QualityIssue"
|
|
5167
|
+
}
|
|
5040
5168
|
}
|
|
5041
5169
|
}
|
|
5042
5170
|
},
|