@gooddata/api-client-tiger 11.5.0-alpha.3 → 11.5.0-alpha.5
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 +543 -513
- package/esm/execution.d.ts +1 -1
- package/esm/execution.d.ts.map +1 -1
- package/esm/execution.js +1 -0
- package/esm/execution.js.map +1 -1
- package/esm/executionResult.d.ts +1 -1
- package/esm/executionResult.d.ts.map +1 -1
- package/esm/executionResult.js +1 -0
- package/esm/executionResult.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +68 -42
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +0 -23
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +102 -59
- package/esm/generated/auth-json-api/api.d.ts +0 -551
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -696
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +0 -166
- package/esm/generated/automation-json-api/api.d.ts +1 -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/openapi-spec.json +1 -0
- package/esm/generated/metadata-json-api/api.d.ts +412 -408
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +66 -68
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +5984 -6053
- 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
|
@@ -2568,21 +2568,43 @@
|
|
|
2568
2568
|
},
|
|
2569
2569
|
"description": "Object identifier."
|
|
2570
2570
|
},
|
|
2571
|
+
"AttributeEqualityFilter": {
|
|
2572
|
+
"required": ["labelIdentifier", "values"],
|
|
2573
|
+
"type": "object",
|
|
2574
|
+
"properties": {
|
|
2575
|
+
"labelIdentifier": {
|
|
2576
|
+
"type": "string",
|
|
2577
|
+
"description": "The attribute label identifier to filter on"
|
|
2578
|
+
},
|
|
2579
|
+
"values": {
|
|
2580
|
+
"type": "array",
|
|
2581
|
+
"description": "List of values to match (IN operation)",
|
|
2582
|
+
"items": {
|
|
2583
|
+
"type": "string",
|
|
2584
|
+
"description": "List of values to match (IN operation)"
|
|
2585
|
+
}
|
|
2586
|
+
}
|
|
2587
|
+
},
|
|
2588
|
+
"description": "Attribute equality filter"
|
|
2589
|
+
},
|
|
2571
2590
|
"ChangeAnalysisRequest": {
|
|
2572
2591
|
"required": [
|
|
2573
2592
|
"analyzedPeriod",
|
|
2574
|
-
"
|
|
2593
|
+
"attributeLabelIdentifiers",
|
|
2575
2594
|
"dateAttributeIdentifier",
|
|
2595
|
+
"filters",
|
|
2576
2596
|
"metricIdentifier",
|
|
2577
2597
|
"referencePeriod"
|
|
2578
2598
|
],
|
|
2579
2599
|
"type": "object",
|
|
2580
2600
|
"properties": {
|
|
2581
2601
|
"metricIdentifier": {
|
|
2582
|
-
"
|
|
2602
|
+
"type": "string",
|
|
2603
|
+
"description": "The metric identifier to analyze for changes"
|
|
2583
2604
|
},
|
|
2584
2605
|
"dateAttributeIdentifier": {
|
|
2585
|
-
"
|
|
2606
|
+
"type": "string",
|
|
2607
|
+
"description": "The date attribute identifier to use for time period comparison"
|
|
2586
2608
|
},
|
|
2587
2609
|
"referencePeriod": {
|
|
2588
2610
|
"type": "string",
|
|
@@ -2592,60 +2614,24 @@
|
|
|
2592
2614
|
"type": "string",
|
|
2593
2615
|
"description": "The analyzed time period (e.g., '2025-02')"
|
|
2594
2616
|
},
|
|
2595
|
-
"
|
|
2617
|
+
"attributeLabelIdentifiers": {
|
|
2596
2618
|
"type": "array",
|
|
2597
|
-
"description": "
|
|
2619
|
+
"description": "Label identifiers of attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.",
|
|
2598
2620
|
"items": {
|
|
2599
|
-
"
|
|
2621
|
+
"type": "string",
|
|
2622
|
+
"description": "Label identifiers of attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered."
|
|
2600
2623
|
}
|
|
2601
2624
|
},
|
|
2602
|
-
"
|
|
2603
|
-
"type": "
|
|
2604
|
-
"description": "
|
|
2605
|
-
"
|
|
2625
|
+
"filters": {
|
|
2626
|
+
"type": "array",
|
|
2627
|
+
"description": "Optional filters to apply.",
|
|
2628
|
+
"items": {
|
|
2629
|
+
"$ref": "#/components/schemas/AttributeEqualityFilter"
|
|
2630
|
+
}
|
|
2606
2631
|
}
|
|
2607
2632
|
},
|
|
2608
2633
|
"description": "Request for change analysis computation"
|
|
2609
2634
|
},
|
|
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
2635
|
"ChangeAnalysisResponse": {
|
|
2650
2636
|
"required": ["links"],
|
|
2651
2637
|
"type": "object",
|
|
@@ -3678,8 +3664,7 @@
|
|
|
3678
3664
|
"resultIdToCancelTokenPairs": {
|
|
3679
3665
|
"type": "object",
|
|
3680
3666
|
"additionalProperties": {
|
|
3681
|
-
"type": "string"
|
|
3682
|
-
"description": "resultId to cancel token pairs"
|
|
3667
|
+
"type": "string"
|
|
3683
3668
|
},
|
|
3684
3669
|
"description": "resultId to cancel token pairs"
|
|
3685
3670
|
}
|
|
@@ -4588,13 +4573,13 @@
|
|
|
4588
4573
|
"nullable": true
|
|
4589
4574
|
}
|
|
4590
4575
|
},
|
|
4591
|
-
"
|
|
4576
|
+
"ycoord": {
|
|
4592
4577
|
"type": "array",
|
|
4593
4578
|
"items": {
|
|
4594
4579
|
"type": "number"
|
|
4595
4580
|
}
|
|
4596
4581
|
},
|
|
4597
|
-
"
|
|
4582
|
+
"xcoord": {
|
|
4598
4583
|
"type": "array",
|
|
4599
4584
|
"items": {
|
|
4600
4585
|
"type": "number"
|
|
@@ -4642,16 +4627,74 @@
|
|
|
4642
4627
|
"type": "object",
|
|
4643
4628
|
"properties": {
|
|
4644
4629
|
"data": {
|
|
4645
|
-
"type": "
|
|
4646
|
-
"
|
|
4647
|
-
|
|
4648
|
-
"
|
|
4649
|
-
}
|
|
4650
|
-
"description": "The change analysis result data containing significant changes."
|
|
4630
|
+
"type": "array",
|
|
4631
|
+
"description": "The change analysis result data containing significant changes.",
|
|
4632
|
+
"items": {
|
|
4633
|
+
"$ref": "#/components/schemas/MetricValueChange"
|
|
4634
|
+
}
|
|
4651
4635
|
}
|
|
4652
4636
|
},
|
|
4653
4637
|
"description": "Result of a change analysis execution."
|
|
4654
4638
|
},
|
|
4639
|
+
"MetricValueChange": {
|
|
4640
|
+
"required": [
|
|
4641
|
+
"attributeName",
|
|
4642
|
+
"attributeValue",
|
|
4643
|
+
"attributeValuesChangeMean",
|
|
4644
|
+
"attributeValuesChangeStd",
|
|
4645
|
+
"isSignificantChange",
|
|
4646
|
+
"metricValueDelta",
|
|
4647
|
+
"metricValueDeltaAbs",
|
|
4648
|
+
"metricValueInAnalyzedPeriod",
|
|
4649
|
+
"metricValueInReferencePeriod"
|
|
4650
|
+
],
|
|
4651
|
+
"type": "object",
|
|
4652
|
+
"properties": {
|
|
4653
|
+
"attributeName": {
|
|
4654
|
+
"type": "string",
|
|
4655
|
+
"description": "The name of the attribute being analyzed"
|
|
4656
|
+
},
|
|
4657
|
+
"attributeValue": {
|
|
4658
|
+
"type": "string",
|
|
4659
|
+
"description": "The value of the attribute being analyzed"
|
|
4660
|
+
},
|
|
4661
|
+
"metricValueInAnalyzedPeriod": {
|
|
4662
|
+
"type": "number",
|
|
4663
|
+
"description": "The metric value in the analyzed period",
|
|
4664
|
+
"format": "double"
|
|
4665
|
+
},
|
|
4666
|
+
"metricValueInReferencePeriod": {
|
|
4667
|
+
"type": "number",
|
|
4668
|
+
"description": "The metric value in the reference period",
|
|
4669
|
+
"format": "double"
|
|
4670
|
+
},
|
|
4671
|
+
"metricValueDelta": {
|
|
4672
|
+
"type": "number",
|
|
4673
|
+
"description": "The delta between analyzed and reference periods",
|
|
4674
|
+
"format": "double"
|
|
4675
|
+
},
|
|
4676
|
+
"metricValueDeltaAbs": {
|
|
4677
|
+
"type": "number",
|
|
4678
|
+
"description": "The absolute delta between analyzed and reference periods",
|
|
4679
|
+
"format": "double"
|
|
4680
|
+
},
|
|
4681
|
+
"attributeValuesChangeMean": {
|
|
4682
|
+
"type": "number",
|
|
4683
|
+
"description": "The mean of attribute value changes for the attribute being analyzed",
|
|
4684
|
+
"format": "double"
|
|
4685
|
+
},
|
|
4686
|
+
"attributeValuesChangeStd": {
|
|
4687
|
+
"type": "number",
|
|
4688
|
+
"description": "The standard deviation of attribute value changes for the attribute being analyzed",
|
|
4689
|
+
"format": "double"
|
|
4690
|
+
},
|
|
4691
|
+
"isSignificantChange": {
|
|
4692
|
+
"type": "boolean",
|
|
4693
|
+
"description": "Whether the change is statistically significant"
|
|
4694
|
+
}
|
|
4695
|
+
},
|
|
4696
|
+
"description": "Individual change analysis data item"
|
|
4697
|
+
},
|
|
4655
4698
|
"ResultCacheMetadata": {
|
|
4656
4699
|
"required": ["afm", "executionResponse", "resultSize", "resultSpec"],
|
|
4657
4700
|
"type": "object",
|