@gooddata/api-client-tiger 10.33.0-alpha.8 → 10.33.0-alpha.81
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 +12630 -9311
- package/esm/client.d.ts +3 -3
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +2 -2
- package/esm/client.js.map +1 -1
- package/esm/export.d.ts +2 -4
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +2 -3
- package/esm/export.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +376 -13
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +305 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
- package/esm/generated/automation-json-api/api.d.ts +473 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +74 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +391 -2
- package/esm/generated/export-json-api/api.d.ts +1129 -1074
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +363 -342
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +50 -1
- package/esm/generated/metadata-json-api/api.d.ts +1874 -1222
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +307 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8012 -7558
- package/esm/index.d.ts +5 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -371,7 +371,8 @@
|
|
|
371
371
|
"OPT_QT",
|
|
372
372
|
"OPT_QT_SVG",
|
|
373
373
|
"SQL",
|
|
374
|
-
"SETTINGS"
|
|
374
|
+
"SETTINGS",
|
|
375
|
+
"COMPRESSED_SQL"
|
|
375
376
|
]
|
|
376
377
|
}
|
|
377
378
|
}
|
|
@@ -795,6 +796,36 @@
|
|
|
795
796
|
}
|
|
796
797
|
}
|
|
797
798
|
},
|
|
799
|
+
"/api/v1/actions/ai/validateLlmEndpoint": {
|
|
800
|
+
"post": {
|
|
801
|
+
"tags": ["Smart Functions", "actions"],
|
|
802
|
+
"summary": "Validate LLM Endpoint",
|
|
803
|
+
"description": "Validates LLM endpointw with provided parameters.",
|
|
804
|
+
"operationId": "validateLLMEndpoint",
|
|
805
|
+
"requestBody": {
|
|
806
|
+
"content": {
|
|
807
|
+
"application/json": {
|
|
808
|
+
"schema": {
|
|
809
|
+
"$ref": "#/components/schemas/ValidateLLMEndpointRequest"
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"required": true
|
|
814
|
+
},
|
|
815
|
+
"responses": {
|
|
816
|
+
"200": {
|
|
817
|
+
"description": "OK",
|
|
818
|
+
"content": {
|
|
819
|
+
"application/json": {
|
|
820
|
+
"schema": {
|
|
821
|
+
"$ref": "#/components/schemas/ValidateLLMEndpointResponse"
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
},
|
|
798
829
|
"/api/v1/actions/workspaces/{workspaceId}/execution/functions/forecast/result/{resultId}": {
|
|
799
830
|
"get": {
|
|
800
831
|
"tags": ["Smart Functions", "actions"],
|
|
@@ -1185,6 +1216,38 @@
|
|
|
1185
1216
|
}
|
|
1186
1217
|
}
|
|
1187
1218
|
},
|
|
1219
|
+
"/api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmEndpoints": {
|
|
1220
|
+
"get": {
|
|
1221
|
+
"tags": ["Smart Functions", "actions"],
|
|
1222
|
+
"summary": "Get Active LLM Endpoints for this workspace",
|
|
1223
|
+
"description": "Returns a list of available LLM Endpoints",
|
|
1224
|
+
"operationId": "resolveLlmEndpoints",
|
|
1225
|
+
"parameters": [
|
|
1226
|
+
{
|
|
1227
|
+
"name": "workspaceId",
|
|
1228
|
+
"in": "path",
|
|
1229
|
+
"description": "Workspace identifier",
|
|
1230
|
+
"required": true,
|
|
1231
|
+
"schema": {
|
|
1232
|
+
"pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
|
|
1233
|
+
"type": "string"
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
],
|
|
1237
|
+
"responses": {
|
|
1238
|
+
"200": {
|
|
1239
|
+
"description": "OK",
|
|
1240
|
+
"content": {
|
|
1241
|
+
"application/json": {
|
|
1242
|
+
"schema": {
|
|
1243
|
+
"$ref": "#/components/schemas/ResolvedLlmEndpoints"
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1188
1251
|
"/api/v1/actions/workspaces/{workspaceId}/ai/chatUsage": {
|
|
1189
1252
|
"get": {
|
|
1190
1253
|
"tags": ["Smart Functions", "actions"],
|
|
@@ -1528,6 +1591,52 @@
|
|
|
1528
1591
|
},
|
|
1529
1592
|
"description": "Filter on specific set of label values."
|
|
1530
1593
|
},
|
|
1594
|
+
"BoundedFilter": {
|
|
1595
|
+
"required": ["dataset", "granularity"],
|
|
1596
|
+
"type": "object",
|
|
1597
|
+
"properties": {
|
|
1598
|
+
"dataset": {
|
|
1599
|
+
"$ref": "#/components/schemas/AfmObjectIdentifierDataset"
|
|
1600
|
+
},
|
|
1601
|
+
"granularity": {
|
|
1602
|
+
"type": "string",
|
|
1603
|
+
"description": "Date granularity specifying particular date attribute in given dimension.",
|
|
1604
|
+
"example": "DAY",
|
|
1605
|
+
"enum": [
|
|
1606
|
+
"MINUTE",
|
|
1607
|
+
"HOUR",
|
|
1608
|
+
"DAY",
|
|
1609
|
+
"WEEK",
|
|
1610
|
+
"MONTH",
|
|
1611
|
+
"QUARTER",
|
|
1612
|
+
"YEAR",
|
|
1613
|
+
"MINUTE_OF_HOUR",
|
|
1614
|
+
"HOUR_OF_DAY",
|
|
1615
|
+
"DAY_OF_WEEK",
|
|
1616
|
+
"DAY_OF_MONTH",
|
|
1617
|
+
"DAY_OF_YEAR",
|
|
1618
|
+
"WEEK_OF_YEAR",
|
|
1619
|
+
"MONTH_OF_YEAR",
|
|
1620
|
+
"QUARTER_OF_YEAR"
|
|
1621
|
+
]
|
|
1622
|
+
},
|
|
1623
|
+
"from": {
|
|
1624
|
+
"type": "integer",
|
|
1625
|
+
"description": "Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for '2 days/weeks, ... ago'). If null, then start of the range is unbounded.",
|
|
1626
|
+
"format": "int32",
|
|
1627
|
+
"nullable": true,
|
|
1628
|
+
"example": -6
|
|
1629
|
+
},
|
|
1630
|
+
"to": {
|
|
1631
|
+
"type": "integer",
|
|
1632
|
+
"description": "End of the filtering interval. Specified by number of periods (with respect to given granularity). Value 'O' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.",
|
|
1633
|
+
"format": "int32",
|
|
1634
|
+
"nullable": true,
|
|
1635
|
+
"example": 0
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
"description": "Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range."
|
|
1639
|
+
},
|
|
1531
1640
|
"DateFilter": {
|
|
1532
1641
|
"type": "object",
|
|
1533
1642
|
"description": "Abstract filter definition type for dates.",
|
|
@@ -1812,13 +1921,16 @@
|
|
|
1812
1921
|
"applyOnResult": {
|
|
1813
1922
|
"type": "boolean"
|
|
1814
1923
|
},
|
|
1924
|
+
"boundedFilter": {
|
|
1925
|
+
"$ref": "#/components/schemas/BoundedFilter"
|
|
1926
|
+
},
|
|
1815
1927
|
"dataset": {
|
|
1816
1928
|
"$ref": "#/components/schemas/AfmObjectIdentifierDataset"
|
|
1817
1929
|
}
|
|
1818
1930
|
}
|
|
1819
1931
|
}
|
|
1820
1932
|
},
|
|
1821
|
-
"description": "A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension."
|
|
1933
|
+
"description": "A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The 'from' and 'to' properties mark the boundaries of the interval. If 'from' is omitted, all values earlier than 'to' are included. If 'to' is omitted, all values later than 'from' are included. It is not allowed to omit both."
|
|
1822
1934
|
},
|
|
1823
1935
|
"SimpleMeasureDefinition": {
|
|
1824
1936
|
"required": ["measure"],
|
|
@@ -3715,6 +3827,46 @@
|
|
|
3715
3827
|
}
|
|
3716
3828
|
}
|
|
3717
3829
|
},
|
|
3830
|
+
"ValidateLLMEndpointRequest": {
|
|
3831
|
+
"required": ["provider", "token"],
|
|
3832
|
+
"type": "object",
|
|
3833
|
+
"properties": {
|
|
3834
|
+
"provider": {
|
|
3835
|
+
"type": "string",
|
|
3836
|
+
"description": "Provider for the LLM endpoint validation"
|
|
3837
|
+
},
|
|
3838
|
+
"baseUrl": {
|
|
3839
|
+
"type": "string",
|
|
3840
|
+
"description": "Base URL for the LLM endpoint validation"
|
|
3841
|
+
},
|
|
3842
|
+
"token": {
|
|
3843
|
+
"type": "string",
|
|
3844
|
+
"description": "Token for the LLM endpoint validation"
|
|
3845
|
+
},
|
|
3846
|
+
"llmOrganization": {
|
|
3847
|
+
"type": "string",
|
|
3848
|
+
"description": "Organization name for the LLM endpoint validation"
|
|
3849
|
+
},
|
|
3850
|
+
"llmModel": {
|
|
3851
|
+
"type": "string",
|
|
3852
|
+
"description": "LLM model for the LLM endpoint validation"
|
|
3853
|
+
}
|
|
3854
|
+
}
|
|
3855
|
+
},
|
|
3856
|
+
"ValidateLLMEndpointResponse": {
|
|
3857
|
+
"required": ["message", "success"],
|
|
3858
|
+
"type": "object",
|
|
3859
|
+
"properties": {
|
|
3860
|
+
"success": {
|
|
3861
|
+
"type": "boolean",
|
|
3862
|
+
"description": "Whether the LLM endpoint validation was successful"
|
|
3863
|
+
},
|
|
3864
|
+
"message": {
|
|
3865
|
+
"type": "string",
|
|
3866
|
+
"description": "Additional message about the LLM endpoint validation"
|
|
3867
|
+
}
|
|
3868
|
+
}
|
|
3869
|
+
},
|
|
3718
3870
|
"ForecastResult": {
|
|
3719
3871
|
"required": ["attribute", "lowerBound", "origin", "prediction", "upperBound"],
|
|
3720
3872
|
"type": "object",
|
|
@@ -4109,6 +4261,32 @@
|
|
|
4109
4261
|
},
|
|
4110
4262
|
"description": "Header containing the information related to a subtotal."
|
|
4111
4263
|
},
|
|
4264
|
+
"ResolvedLlmEndpoint": {
|
|
4265
|
+
"required": ["id", "title"],
|
|
4266
|
+
"type": "object",
|
|
4267
|
+
"properties": {
|
|
4268
|
+
"id": {
|
|
4269
|
+
"type": "string",
|
|
4270
|
+
"description": "Endpoint Id"
|
|
4271
|
+
},
|
|
4272
|
+
"title": {
|
|
4273
|
+
"type": "string",
|
|
4274
|
+
"description": "Endpoint Title"
|
|
4275
|
+
}
|
|
4276
|
+
}
|
|
4277
|
+
},
|
|
4278
|
+
"ResolvedLlmEndpoints": {
|
|
4279
|
+
"required": ["data"],
|
|
4280
|
+
"type": "object",
|
|
4281
|
+
"properties": {
|
|
4282
|
+
"data": {
|
|
4283
|
+
"type": "array",
|
|
4284
|
+
"items": {
|
|
4285
|
+
"$ref": "#/components/schemas/ResolvedLlmEndpoint"
|
|
4286
|
+
}
|
|
4287
|
+
}
|
|
4288
|
+
}
|
|
4289
|
+
},
|
|
4112
4290
|
"ChatUsageResponse": {
|
|
4113
4291
|
"required": ["interactionCount", "interactionLimit", "timeWindowHours"],
|
|
4114
4292
|
"type": "object",
|