@gooddata/api-client-tiger 11.9.0-alpha.4 → 11.9.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 +718 -643
- package/esm/generated/afm-rest-api/api.d.ts +19 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +10 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +23 -0
- package/esm/generated/automation-json-api/api.d.ts +6 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +10 -0
- package/esm/generated/export-json-api/api.d.ts +6 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +22 -0
- package/esm/generated/metadata-json-api/api.d.ts +631 -591
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +72 -69
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9548 -9475
- package/esm/generated/result-json-api/api.d.ts +154 -0
- package/esm/generated/result-json-api/api.d.ts.map +1 -1
- package/esm/generated/result-json-api/api.js +127 -0
- package/esm/generated/result-json-api/api.js.map +1 -1
- package/esm/generated/result-json-api/openapi-spec.json +164 -0
- package/package.json +4 -4
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"tags": [
|
|
18
|
+
{
|
|
19
|
+
"name": "OGC API Features",
|
|
20
|
+
"description": "OGC API Features implementation for GeoParquet collections"
|
|
21
|
+
},
|
|
18
22
|
{
|
|
19
23
|
"name": "actions",
|
|
20
24
|
"description": "| execution of some form of computation (RPC over JSON)"
|
|
@@ -267,6 +271,108 @@
|
|
|
267
271
|
}
|
|
268
272
|
}
|
|
269
273
|
},
|
|
274
|
+
"/api/v1/location/collections/{collectionId}/items": {
|
|
275
|
+
"get": {
|
|
276
|
+
"tags": ["OGC API Features"],
|
|
277
|
+
"summary": "Get collection features",
|
|
278
|
+
"description": "Retrieve features from a GeoParquet collection as GeoJSON",
|
|
279
|
+
"operationId": "getCollectionItems",
|
|
280
|
+
"parameters": [
|
|
281
|
+
{
|
|
282
|
+
"name": "collectionId",
|
|
283
|
+
"in": "path",
|
|
284
|
+
"description": "Collection identifier",
|
|
285
|
+
"required": true,
|
|
286
|
+
"schema": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
},
|
|
289
|
+
"example": "countries"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "limit",
|
|
293
|
+
"in": "query",
|
|
294
|
+
"description": "Maximum number of features to return",
|
|
295
|
+
"required": false,
|
|
296
|
+
"schema": {
|
|
297
|
+
"maximum": 10000,
|
|
298
|
+
"minimum": 1,
|
|
299
|
+
"type": "integer"
|
|
300
|
+
},
|
|
301
|
+
"example": 100
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "bbox",
|
|
305
|
+
"in": "query",
|
|
306
|
+
"description": "Bounding box filter (minx,miny,maxx,maxy)",
|
|
307
|
+
"required": false,
|
|
308
|
+
"schema": {
|
|
309
|
+
"type": "string"
|
|
310
|
+
},
|
|
311
|
+
"example": "-180,-90,180,90"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"name": "datetime",
|
|
315
|
+
"in": "query",
|
|
316
|
+
"description": "Datetime filter (ISO 8601)",
|
|
317
|
+
"required": false,
|
|
318
|
+
"schema": {
|
|
319
|
+
"type": "string"
|
|
320
|
+
},
|
|
321
|
+
"example": "2020-01-01T00:00:00Z/2020-12-31T23:59:59Z"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"name": "matchingProperty",
|
|
325
|
+
"in": "query",
|
|
326
|
+
"description": "Property to match against collection features",
|
|
327
|
+
"required": false,
|
|
328
|
+
"schema": {
|
|
329
|
+
"type": "string",
|
|
330
|
+
"default": "id"
|
|
331
|
+
},
|
|
332
|
+
"example": "ISO_A3"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "values",
|
|
336
|
+
"in": "query",
|
|
337
|
+
"description": "List of values to filter features by",
|
|
338
|
+
"required": false,
|
|
339
|
+
"schema": {
|
|
340
|
+
"type": "array",
|
|
341
|
+
"items": {
|
|
342
|
+
"type": "string"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"example": "US,CA,MX"
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"responses": {
|
|
349
|
+
"200": {
|
|
350
|
+
"description": "Features retrieved successfully",
|
|
351
|
+
"content": {
|
|
352
|
+
"*/*": {
|
|
353
|
+
"schema": {
|
|
354
|
+
"$ref": "#/components/schemas/GeoJsonFeatureCollection"
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"404": {
|
|
360
|
+
"description": "Collection not found",
|
|
361
|
+
"content": {
|
|
362
|
+
"*/*": {
|
|
363
|
+
"schema": {
|
|
364
|
+
"$ref": "#/components/schemas/GeoJsonFeatureCollection"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"x-gdc-security-info": {
|
|
371
|
+
"permissions": ["VIEW"],
|
|
372
|
+
"description": "Minimal permission required to use this endpoint."
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
270
376
|
"/api/v1/actions/collectCacheUsage": {
|
|
271
377
|
"get": {
|
|
272
378
|
"tags": ["Cache usage", "actions"],
|
|
@@ -802,6 +908,64 @@
|
|
|
802
908
|
},
|
|
803
909
|
"description": "Request to delete files from the storage."
|
|
804
910
|
},
|
|
911
|
+
"GeoJsonFeature": {
|
|
912
|
+
"required": ["properties", "type"],
|
|
913
|
+
"type": "object",
|
|
914
|
+
"properties": {
|
|
915
|
+
"type": {
|
|
916
|
+
"type": "string"
|
|
917
|
+
},
|
|
918
|
+
"id": {
|
|
919
|
+
"type": "object"
|
|
920
|
+
},
|
|
921
|
+
"geometry": {
|
|
922
|
+
"$ref": "#/components/schemas/GeoJsonGeometry"
|
|
923
|
+
},
|
|
924
|
+
"properties": {
|
|
925
|
+
"type": "object",
|
|
926
|
+
"additionalProperties": {
|
|
927
|
+
"type": "object"
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"description": "GeoJSON Feature"
|
|
932
|
+
},
|
|
933
|
+
"GeoJsonFeatureCollection": {
|
|
934
|
+
"required": ["features", "type"],
|
|
935
|
+
"type": "object",
|
|
936
|
+
"properties": {
|
|
937
|
+
"type": {
|
|
938
|
+
"type": "string"
|
|
939
|
+
},
|
|
940
|
+
"features": {
|
|
941
|
+
"type": "array",
|
|
942
|
+
"items": {
|
|
943
|
+
"$ref": "#/components/schemas/GeoJsonFeature"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"bbox": {
|
|
947
|
+
"type": "array",
|
|
948
|
+
"items": {
|
|
949
|
+
"type": "number",
|
|
950
|
+
"format": "double"
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
"description": "GeoJSON FeatureCollection"
|
|
955
|
+
},
|
|
956
|
+
"GeoJsonGeometry": {
|
|
957
|
+
"required": ["coordinates", "type"],
|
|
958
|
+
"type": "object",
|
|
959
|
+
"properties": {
|
|
960
|
+
"type": {
|
|
961
|
+
"type": "string"
|
|
962
|
+
},
|
|
963
|
+
"coordinates": {
|
|
964
|
+
"type": "object"
|
|
965
|
+
}
|
|
966
|
+
},
|
|
967
|
+
"description": "GeoJSON Geometry"
|
|
968
|
+
},
|
|
805
969
|
"CacheRemovalInterval": {
|
|
806
970
|
"required": ["from", "removed", "to"],
|
|
807
971
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/api-client-tiger",
|
|
3
|
-
"version": "11.9.0
|
|
3
|
+
"version": "11.9.0",
|
|
4
4
|
"description": "API Client for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"axios-cache-interceptor": "^1.8.0",
|
|
26
26
|
"lodash-es": "^4.17.21",
|
|
27
27
|
"tslib": "2.8.1",
|
|
28
|
-
"@gooddata/sdk-model": "11.9.0
|
|
28
|
+
"@gooddata/sdk-model": "11.9.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"prettier": "^3.6.2",
|
|
54
54
|
"typescript": "5.8.3",
|
|
55
55
|
"vitest": "3.2.4",
|
|
56
|
-
"@gooddata/
|
|
57
|
-
"@gooddata/
|
|
56
|
+
"@gooddata/eslint-config": "11.9.0",
|
|
57
|
+
"@gooddata/reference-workspace": "11.9.0"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"_phase:build": "npm run build",
|