@gooddata/api-client-tiger 11.3.0-alpha.1 → 11.3.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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +580 -374
- package/esm/generated/afm-rest-api/api.d.ts +324 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +327 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +187 -0
- package/esm/generated/metadata-json-api/api.d.ts +339 -339
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +51 -51
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9511 -9511
- package/esm/metadataUtilities.js +3 -3
- package/esm/metadataUtilities.js.map +1 -1
- package/esm/organizationUtilities.js +3 -3
- package/esm/organizationUtilities.js.map +1 -1
- package/package.json +3 -3
|
@@ -374,6 +374,48 @@
|
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
},
|
|
377
|
+
"/api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis": {
|
|
378
|
+
"post": {
|
|
379
|
+
"tags": ["Computation", "actions"],
|
|
380
|
+
"summary": "Compute change analysis",
|
|
381
|
+
"description": "Computes change analysis for the provided execution definition.",
|
|
382
|
+
"operationId": "changeAnalysis",
|
|
383
|
+
"parameters": [
|
|
384
|
+
{
|
|
385
|
+
"name": "workspaceId",
|
|
386
|
+
"in": "path",
|
|
387
|
+
"description": "Workspace identifier",
|
|
388
|
+
"required": true,
|
|
389
|
+
"schema": {
|
|
390
|
+
"pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
|
|
391
|
+
"type": "string"
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"requestBody": {
|
|
396
|
+
"content": {
|
|
397
|
+
"application/json": {
|
|
398
|
+
"schema": {
|
|
399
|
+
"$ref": "#/components/schemas/ChangeAnalysisRequest"
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"required": true
|
|
404
|
+
},
|
|
405
|
+
"responses": {
|
|
406
|
+
"200": {
|
|
407
|
+
"description": "OK",
|
|
408
|
+
"content": {
|
|
409
|
+
"application/json": {
|
|
410
|
+
"schema": {
|
|
411
|
+
"$ref": "#/components/schemas/ChangeAnalysisResponse"
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
},
|
|
377
419
|
"/api/v1/actions/workspaces/{workspaceId}/execution/collectLabelElements": {
|
|
378
420
|
"post": {
|
|
379
421
|
"tags": ["Computation", "actions"],
|
|
@@ -1299,6 +1341,48 @@
|
|
|
1299
1341
|
}
|
|
1300
1342
|
}
|
|
1301
1343
|
},
|
|
1344
|
+
"/api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis/result/{resultId}": {
|
|
1345
|
+
"get": {
|
|
1346
|
+
"tags": ["Computation", "actions"],
|
|
1347
|
+
"summary": "Get change analysis result",
|
|
1348
|
+
"description": "Gets change analysis result.",
|
|
1349
|
+
"operationId": "changeAnalysisResult",
|
|
1350
|
+
"parameters": [
|
|
1351
|
+
{
|
|
1352
|
+
"name": "workspaceId",
|
|
1353
|
+
"in": "path",
|
|
1354
|
+
"description": "Workspace identifier",
|
|
1355
|
+
"required": true,
|
|
1356
|
+
"schema": {
|
|
1357
|
+
"pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
|
|
1358
|
+
"type": "string"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"name": "resultId",
|
|
1363
|
+
"in": "path",
|
|
1364
|
+
"description": "Result ID",
|
|
1365
|
+
"required": true,
|
|
1366
|
+
"schema": {
|
|
1367
|
+
"type": "string"
|
|
1368
|
+
},
|
|
1369
|
+
"example": "a9b28f9dc55f37ea9f4a5fb0c76895923591e781"
|
|
1370
|
+
}
|
|
1371
|
+
],
|
|
1372
|
+
"responses": {
|
|
1373
|
+
"200": {
|
|
1374
|
+
"description": "OK",
|
|
1375
|
+
"content": {
|
|
1376
|
+
"application/json": {
|
|
1377
|
+
"schema": {
|
|
1378
|
+
"$ref": "#/components/schemas/ChangeAnalysisResult"
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1302
1386
|
"/api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/metadata": {
|
|
1303
1387
|
"get": {
|
|
1304
1388
|
"tags": ["Computation", "actions"],
|
|
@@ -2484,6 +2568,94 @@
|
|
|
2484
2568
|
},
|
|
2485
2569
|
"description": "Object identifier."
|
|
2486
2570
|
},
|
|
2571
|
+
"ChangeAnalysisRequest": {
|
|
2572
|
+
"required": [
|
|
2573
|
+
"analyzedPeriod",
|
|
2574
|
+
"attributeIdentifiers",
|
|
2575
|
+
"dateAttributeIdentifier",
|
|
2576
|
+
"metricIdentifier",
|
|
2577
|
+
"referencePeriod"
|
|
2578
|
+
],
|
|
2579
|
+
"type": "object",
|
|
2580
|
+
"properties": {
|
|
2581
|
+
"metricIdentifier": {
|
|
2582
|
+
"$ref": "#/components/schemas/ObjectIdentifier"
|
|
2583
|
+
},
|
|
2584
|
+
"dateAttributeIdentifier": {
|
|
2585
|
+
"$ref": "#/components/schemas/ObjectIdentifier"
|
|
2586
|
+
},
|
|
2587
|
+
"referencePeriod": {
|
|
2588
|
+
"type": "string",
|
|
2589
|
+
"description": "The reference time period (e.g., '2025-01')"
|
|
2590
|
+
},
|
|
2591
|
+
"analyzedPeriod": {
|
|
2592
|
+
"type": "string",
|
|
2593
|
+
"description": "The analyzed time period (e.g., '2025-02')"
|
|
2594
|
+
},
|
|
2595
|
+
"attributeIdentifiers": {
|
|
2596
|
+
"type": "array",
|
|
2597
|
+
"description": "The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.",
|
|
2598
|
+
"items": {
|
|
2599
|
+
"$ref": "#/components/schemas/ObjectIdentifier"
|
|
2600
|
+
}
|
|
2601
|
+
},
|
|
2602
|
+
"significanceThreshold": {
|
|
2603
|
+
"type": "number",
|
|
2604
|
+
"description": "The significance threshold for changes (default: 2.0 standard deviations)",
|
|
2605
|
+
"format": "double"
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2608
|
+
"description": "Request for change analysis computation"
|
|
2609
|
+
},
|
|
2610
|
+
"ObjectIdentifier": {
|
|
2611
|
+
"required": ["id", "space", "type"],
|
|
2612
|
+
"type": "object",
|
|
2613
|
+
"properties": {
|
|
2614
|
+
"type": {
|
|
2615
|
+
"type": "string",
|
|
2616
|
+
"enum": [
|
|
2617
|
+
"analyticalDashboard",
|
|
2618
|
+
"attribute",
|
|
2619
|
+
"attributeHierarchy",
|
|
2620
|
+
"dashboardPlugin",
|
|
2621
|
+
"dataset",
|
|
2622
|
+
"fact",
|
|
2623
|
+
"aggregatedFact",
|
|
2624
|
+
"label",
|
|
2625
|
+
"metric",
|
|
2626
|
+
"userDataFilter",
|
|
2627
|
+
"exportDefinition",
|
|
2628
|
+
"automation",
|
|
2629
|
+
"automationResult",
|
|
2630
|
+
"prompt",
|
|
2631
|
+
"visualizationObject",
|
|
2632
|
+
"filterContext",
|
|
2633
|
+
"workspaceSettings",
|
|
2634
|
+
"customApplicationSetting",
|
|
2635
|
+
"workspaceDataFilter",
|
|
2636
|
+
"workspaceDataFilterSetting",
|
|
2637
|
+
"filterView"
|
|
2638
|
+
]
|
|
2639
|
+
},
|
|
2640
|
+
"space": {
|
|
2641
|
+
"type": "string"
|
|
2642
|
+
},
|
|
2643
|
+
"id": {
|
|
2644
|
+
"type": "string"
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"description": "The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered."
|
|
2648
|
+
},
|
|
2649
|
+
"ChangeAnalysisResponse": {
|
|
2650
|
+
"required": ["links"],
|
|
2651
|
+
"type": "object",
|
|
2652
|
+
"properties": {
|
|
2653
|
+
"links": {
|
|
2654
|
+
"$ref": "#/components/schemas/ExecutionLinks"
|
|
2655
|
+
}
|
|
2656
|
+
},
|
|
2657
|
+
"description": "Response for change analysis computation"
|
|
2658
|
+
},
|
|
2487
2659
|
"Element": {
|
|
2488
2660
|
"required": ["primaryTitle", "title"],
|
|
2489
2661
|
"type": "object",
|
|
@@ -4465,6 +4637,21 @@
|
|
|
4465
4637
|
}
|
|
4466
4638
|
}
|
|
4467
4639
|
},
|
|
4640
|
+
"ChangeAnalysisResult": {
|
|
4641
|
+
"required": ["data"],
|
|
4642
|
+
"type": "object",
|
|
4643
|
+
"properties": {
|
|
4644
|
+
"data": {
|
|
4645
|
+
"type": "object",
|
|
4646
|
+
"additionalProperties": {
|
|
4647
|
+
"type": "object",
|
|
4648
|
+
"description": "The change analysis result data containing significant changes."
|
|
4649
|
+
},
|
|
4650
|
+
"description": "The change analysis result data containing significant changes."
|
|
4651
|
+
}
|
|
4652
|
+
},
|
|
4653
|
+
"description": "Result of a change analysis execution."
|
|
4654
|
+
},
|
|
4468
4655
|
"ResultCacheMetadata": {
|
|
4469
4656
|
"required": ["afm", "executionResponse", "resultSize", "resultSpec"],
|
|
4470
4657
|
"type": "object",
|