@gooddata/api-client-tiger 11.6.0-alpha.5 → 11.6.0-alpha.7

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.
Files changed (29) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +1735 -457
  4. package/esm/genAI.d.ts.map +1 -1
  5. package/esm/genAI.js.map +1 -1
  6. package/esm/generated/afm-rest-api/api.d.ts +27 -26
  7. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  8. package/esm/generated/afm-rest-api/api.js.map +1 -1
  9. package/esm/generated/afm-rest-api/openapi-spec.json +280 -279
  10. package/esm/generated/automation-json-api/api.d.ts +1 -0
  11. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  12. package/esm/generated/automation-json-api/api.js +1 -0
  13. package/esm/generated/automation-json-api/api.js.map +1 -1
  14. package/esm/generated/automation-json-api/openapi-spec.json +1 -0
  15. package/esm/generated/export-json-api/api.d.ts +1 -0
  16. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  17. package/esm/generated/export-json-api/api.js +1 -0
  18. package/esm/generated/export-json-api/api.js.map +1 -1
  19. package/esm/generated/export-json-api/openapi-spec.json +1 -0
  20. package/esm/generated/metadata-json-api/api.d.ts +1611 -385
  21. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  22. package/esm/generated/metadata-json-api/api.js +1232 -133
  23. package/esm/generated/metadata-json-api/api.js.map +1 -1
  24. package/esm/generated/metadata-json-api/openapi-spec.json +8946 -8114
  25. package/esm/generated/scan-json-api/api.d.ts +8 -0
  26. package/esm/generated/scan-json-api/api.d.ts.map +1 -1
  27. package/esm/generated/scan-json-api/api.js.map +1 -1
  28. package/esm/generated/scan-json-api/openapi-spec.json +10 -0
  29. package/package.json +4 -4
@@ -2640,44 +2640,49 @@
2640
2640
  },
2641
2641
  "description": "Object identifier."
2642
2642
  },
2643
- "AttributeEqualityFilter": {
2644
- "required": ["labelIdentifier", "values"],
2643
+ "AbstractMeasureValueFilter": {
2644
+ "type": "object",
2645
+ "oneOf": [
2646
+ {
2647
+ "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
2648
+ },
2649
+ {
2650
+ "$ref": "#/components/schemas/RangeMeasureValueFilter"
2651
+ },
2652
+ {
2653
+ "$ref": "#/components/schemas/RankingFilter"
2654
+ }
2655
+ ]
2656
+ },
2657
+ "AttributeItem": {
2658
+ "required": ["label", "localIdentifier"],
2645
2659
  "type": "object",
2646
2660
  "properties": {
2647
- "labelIdentifier": {
2661
+ "localIdentifier": {
2662
+ "pattern": "^[.a-zA-Z0-9_-]+$",
2648
2663
  "type": "string",
2649
- "description": "The attribute label identifier to filter on"
2664
+ "description": "Local identifier of the attribute. This can be used to reference the attribute in other parts of the execution definition.",
2665
+ "example": "attribute_1"
2650
2666
  },
2651
- "values": {
2652
- "type": "array",
2653
- "description": "List of values to match (IN operation)",
2654
- "items": {
2655
- "type": "string",
2656
- "description": "List of values to match (IN operation)"
2657
- }
2667
+ "label": {
2668
+ "$ref": "#/components/schemas/AfmObjectIdentifierLabel"
2669
+ },
2670
+ "showAllValues": {
2671
+ "type": "boolean",
2672
+ "description": "Indicates whether to show all values of given attribute even if the data bound to those values is not available.",
2673
+ "default": false
2658
2674
  }
2659
- },
2660
- "description": "Attribute equality filter"
2675
+ }
2661
2676
  },
2662
2677
  "ChangeAnalysisRequest": {
2663
- "required": [
2664
- "analyzedPeriod",
2665
- "attributeLabelIdentifiers",
2666
- "dateAttributeIdentifier",
2667
- "filters",
2668
- "metricIdentifier",
2669
- "referencePeriod",
2670
- "useSmartAttributeSelection"
2671
- ],
2678
+ "required": ["analyzedPeriod", "dateAttribute", "measure", "referencePeriod"],
2672
2679
  "type": "object",
2673
2680
  "properties": {
2674
- "metricIdentifier": {
2675
- "type": "string",
2676
- "description": "The metric identifier to analyze for changes"
2681
+ "measure": {
2682
+ "$ref": "#/components/schemas/MeasureItem"
2677
2683
  },
2678
- "dateAttributeIdentifier": {
2679
- "type": "string",
2680
- "description": "The date attribute identifier to use for time period comparison"
2684
+ "dateAttribute": {
2685
+ "$ref": "#/components/schemas/AttributeItem"
2681
2686
  },
2682
2687
  "referencePeriod": {
2683
2688
  "type": "string",
@@ -2687,27 +2692,250 @@
2687
2692
  "type": "string",
2688
2693
  "description": "The analyzed time period (e.g., '2025-02')"
2689
2694
  },
2690
- "attributeLabelIdentifiers": {
2695
+ "attributes": {
2691
2696
  "type": "array",
2692
- "description": "Label identifiers of attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.",
2697
+ "description": "Attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.",
2693
2698
  "items": {
2694
- "type": "string",
2695
- "description": "Label identifiers of attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered."
2699
+ "$ref": "#/components/schemas/AttributeItem"
2696
2700
  }
2697
2701
  },
2698
2702
  "filters": {
2699
2703
  "type": "array",
2700
2704
  "description": "Optional filters to apply.",
2701
2705
  "items": {
2702
- "$ref": "#/components/schemas/AttributeEqualityFilter"
2706
+ "oneOf": [
2707
+ {
2708
+ "$ref": "#/components/schemas/AbstractMeasureValueFilter"
2709
+ },
2710
+ {
2711
+ "$ref": "#/components/schemas/FilterDefinitionForSimpleMeasure"
2712
+ },
2713
+ {
2714
+ "$ref": "#/components/schemas/InlineFilterDefinition"
2715
+ }
2716
+ ]
2717
+ }
2718
+ },
2719
+ "auxMeasures": {
2720
+ "type": "array",
2721
+ "description": "Auxiliary measures",
2722
+ "items": {
2723
+ "$ref": "#/components/schemas/MeasureItem"
2703
2724
  }
2704
2725
  },
2705
2726
  "useSmartAttributeSelection": {
2706
2727
  "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."
2728
+ "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.",
2729
+ "default": false
2730
+ }
2731
+ },
2732
+ "description": "Request for change analysis computation"
2733
+ },
2734
+ "ComparisonMeasureValueFilter": {
2735
+ "required": ["comparisonMeasureValueFilter"],
2736
+ "type": "object",
2737
+ "properties": {
2738
+ "comparisonMeasureValueFilter": {
2739
+ "required": ["operator", "value", "measure"],
2740
+ "type": "object",
2741
+ "properties": {
2742
+ "dimensionality": {
2743
+ "type": "array",
2744
+ "description": "References to the attributes to be used when filtering.",
2745
+ "items": {
2746
+ "$ref": "#/components/schemas/AfmIdentifier"
2747
+ }
2748
+ },
2749
+ "treatNullValuesAs": {
2750
+ "type": "number",
2751
+ "description": "A value that will be substituted for null values in the metric for the comparisons.",
2752
+ "example": 0
2753
+ },
2754
+ "operator": {
2755
+ "type": "string",
2756
+ "example": "GREATER_THAN",
2757
+ "enum": [
2758
+ "GREATER_THAN",
2759
+ "GREATER_THAN_OR_EQUAL_TO",
2760
+ "LESS_THAN",
2761
+ "LESS_THAN_OR_EQUAL_TO",
2762
+ "EQUAL_TO",
2763
+ "NOT_EQUAL_TO"
2764
+ ]
2765
+ },
2766
+ "value": {
2767
+ "type": "number",
2768
+ "example": 1327
2769
+ },
2770
+ "localIdentifier": {
2771
+ "type": "string"
2772
+ },
2773
+ "applyOnResult": {
2774
+ "type": "boolean"
2775
+ },
2776
+ "measure": {
2777
+ "$ref": "#/components/schemas/AfmIdentifier"
2778
+ }
2779
+ }
2780
+ }
2781
+ },
2782
+ "description": "Filter the result by comparing specified metric to given constant value, using given comparison operator."
2783
+ },
2784
+ "FilterDefinition": {
2785
+ "type": "object",
2786
+ "description": "Abstract filter definition type",
2787
+ "oneOf": [
2788
+ {
2789
+ "$ref": "#/components/schemas/InlineFilterDefinition"
2790
+ },
2791
+ {
2792
+ "$ref": "#/components/schemas/RankingFilter"
2793
+ },
2794
+ {
2795
+ "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
2796
+ },
2797
+ {
2798
+ "$ref": "#/components/schemas/RangeMeasureValueFilter"
2799
+ },
2800
+ {
2801
+ "$ref": "#/components/schemas/AbsoluteDateFilter"
2802
+ },
2803
+ {
2804
+ "$ref": "#/components/schemas/RelativeDateFilter"
2805
+ },
2806
+ {
2807
+ "$ref": "#/components/schemas/NegativeAttributeFilter"
2808
+ },
2809
+ {
2810
+ "$ref": "#/components/schemas/PositiveAttributeFilter"
2811
+ }
2812
+ ]
2813
+ },
2814
+ "InlineFilterDefinition": {
2815
+ "required": ["inline"],
2816
+ "type": "object",
2817
+ "properties": {
2818
+ "inline": {
2819
+ "required": ["filter"],
2820
+ "type": "object",
2821
+ "properties": {
2822
+ "filter": {
2823
+ "type": "string",
2824
+ "description": "MAQL query representing the filter."
2825
+ },
2826
+ "localIdentifier": {
2827
+ "type": "string"
2828
+ },
2829
+ "applyOnResult": {
2830
+ "type": "boolean"
2831
+ }
2832
+ }
2833
+ }
2834
+ },
2835
+ "description": "Filter in form of direct MAQL query."
2836
+ },
2837
+ "MeasureValueFilter": {
2838
+ "type": "object",
2839
+ "description": "Abstract filter definition type filtering by the value of the metric.",
2840
+ "oneOf": [
2841
+ {
2842
+ "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
2843
+ },
2844
+ {
2845
+ "$ref": "#/components/schemas/RangeMeasureValueFilter"
2846
+ }
2847
+ ]
2848
+ },
2849
+ "RangeMeasureValueFilter": {
2850
+ "required": ["rangeMeasureValueFilter"],
2851
+ "type": "object",
2852
+ "properties": {
2853
+ "rangeMeasureValueFilter": {
2854
+ "required": ["from", "operator", "to", "measure"],
2855
+ "type": "object",
2856
+ "properties": {
2857
+ "dimensionality": {
2858
+ "type": "array",
2859
+ "description": "References to the attributes to be used when filtering.",
2860
+ "items": {
2861
+ "$ref": "#/components/schemas/AfmIdentifier"
2862
+ }
2863
+ },
2864
+ "treatNullValuesAs": {
2865
+ "type": "number",
2866
+ "description": "A value that will be substituted for null values in the metric for the comparisons.",
2867
+ "example": 0
2868
+ },
2869
+ "operator": {
2870
+ "type": "string",
2871
+ "example": "BETWEEN",
2872
+ "enum": ["BETWEEN", "NOT_BETWEEN"]
2873
+ },
2874
+ "from": {
2875
+ "type": "number",
2876
+ "example": 100
2877
+ },
2878
+ "to": {
2879
+ "type": "number",
2880
+ "example": 999
2881
+ },
2882
+ "localIdentifier": {
2883
+ "type": "string"
2884
+ },
2885
+ "applyOnResult": {
2886
+ "type": "boolean"
2887
+ },
2888
+ "measure": {
2889
+ "$ref": "#/components/schemas/AfmIdentifier"
2890
+ }
2891
+ }
2892
+ }
2893
+ },
2894
+ "description": "Filter the result by comparing specified metric to given range of values."
2895
+ },
2896
+ "RankingFilter": {
2897
+ "required": ["rankingFilter"],
2898
+ "type": "object",
2899
+ "properties": {
2900
+ "rankingFilter": {
2901
+ "required": ["measures", "operator", "value"],
2902
+ "type": "object",
2903
+ "properties": {
2904
+ "dimensionality": {
2905
+ "type": "array",
2906
+ "description": "References to the attributes to be used when filtering.",
2907
+ "items": {
2908
+ "$ref": "#/components/schemas/AfmIdentifier"
2909
+ }
2910
+ },
2911
+ "measures": {
2912
+ "type": "array",
2913
+ "description": "References to the metrics to be used when filtering.",
2914
+ "items": {
2915
+ "$ref": "#/components/schemas/AfmIdentifier"
2916
+ }
2917
+ },
2918
+ "operator": {
2919
+ "type": "string",
2920
+ "description": "The type of ranking to use, TOP or BOTTOM.",
2921
+ "enum": ["TOP", "BOTTOM"]
2922
+ },
2923
+ "value": {
2924
+ "type": "integer",
2925
+ "description": "Number of top/bottom values to filter.",
2926
+ "format": "int32",
2927
+ "example": 5
2928
+ },
2929
+ "localIdentifier": {
2930
+ "type": "string"
2931
+ },
2932
+ "applyOnResult": {
2933
+ "type": "boolean"
2934
+ }
2935
+ }
2708
2936
  }
2709
2937
  },
2710
- "description": "Request for change analysis computation"
2938
+ "description": "Filter the result on top/bottom N values according to given metric(s)."
2711
2939
  },
2712
2940
  "ChangeAnalysisResponse": {
2713
2941
  "required": ["links"],
@@ -3006,20 +3234,6 @@
3006
3234
  },
3007
3235
  "description": "Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics."
3008
3236
  },
3009
- "AbstractMeasureValueFilter": {
3010
- "type": "object",
3011
- "oneOf": [
3012
- {
3013
- "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
3014
- },
3015
- {
3016
- "$ref": "#/components/schemas/RangeMeasureValueFilter"
3017
- },
3018
- {
3019
- "$ref": "#/components/schemas/RankingFilter"
3020
- }
3021
- ]
3022
- },
3023
3237
  "AfmExecution": {
3024
3238
  "required": ["execution", "resultSpec"],
3025
3239
  "type": "object",
@@ -3035,76 +3249,6 @@
3035
3249
  }
3036
3250
  }
3037
3251
  },
3038
- "AttributeItem": {
3039
- "required": ["label", "localIdentifier"],
3040
- "type": "object",
3041
- "properties": {
3042
- "localIdentifier": {
3043
- "pattern": "^[.a-zA-Z0-9_-]+$",
3044
- "type": "string",
3045
- "description": "Local identifier of the attribute. This can be used to reference the attribute in other parts of the execution definition.",
3046
- "example": "attribute_1"
3047
- },
3048
- "label": {
3049
- "$ref": "#/components/schemas/AfmObjectIdentifierLabel"
3050
- },
3051
- "showAllValues": {
3052
- "type": "boolean",
3053
- "description": "Indicates whether to show all values of given attribute even if the data bound to those values is not available.",
3054
- "default": false
3055
- }
3056
- }
3057
- },
3058
- "ComparisonMeasureValueFilter": {
3059
- "required": ["comparisonMeasureValueFilter"],
3060
- "type": "object",
3061
- "properties": {
3062
- "comparisonMeasureValueFilter": {
3063
- "required": ["operator", "value", "measure"],
3064
- "type": "object",
3065
- "properties": {
3066
- "dimensionality": {
3067
- "type": "array",
3068
- "description": "References to the attributes to be used when filtering.",
3069
- "items": {
3070
- "$ref": "#/components/schemas/AfmIdentifier"
3071
- }
3072
- },
3073
- "treatNullValuesAs": {
3074
- "type": "number",
3075
- "description": "A value that will be substituted for null values in the metric for the comparisons.",
3076
- "example": 0
3077
- },
3078
- "operator": {
3079
- "type": "string",
3080
- "example": "GREATER_THAN",
3081
- "enum": [
3082
- "GREATER_THAN",
3083
- "GREATER_THAN_OR_EQUAL_TO",
3084
- "LESS_THAN",
3085
- "LESS_THAN_OR_EQUAL_TO",
3086
- "EQUAL_TO",
3087
- "NOT_EQUAL_TO"
3088
- ]
3089
- },
3090
- "value": {
3091
- "type": "number",
3092
- "example": 1327
3093
- },
3094
- "localIdentifier": {
3095
- "type": "string"
3096
- },
3097
- "applyOnResult": {
3098
- "type": "boolean"
3099
- },
3100
- "measure": {
3101
- "$ref": "#/components/schemas/AfmIdentifier"
3102
- }
3103
- }
3104
- }
3105
- },
3106
- "description": "Filter the result by comparing specified metric to given constant value, using given comparison operator."
3107
- },
3108
3252
  "DataColumnLocator": {
3109
3253
  "required": ["properties"],
3110
3254
  "type": "object",
@@ -3198,162 +3342,6 @@
3198
3342
  },
3199
3343
  "description": "Various settings affecting the process of AFM execution or its result"
3200
3344
  },
3201
- "FilterDefinition": {
3202
- "type": "object",
3203
- "description": "Abstract filter definition type",
3204
- "oneOf": [
3205
- {
3206
- "$ref": "#/components/schemas/InlineFilterDefinition"
3207
- },
3208
- {
3209
- "$ref": "#/components/schemas/RankingFilter"
3210
- },
3211
- {
3212
- "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
3213
- },
3214
- {
3215
- "$ref": "#/components/schemas/RangeMeasureValueFilter"
3216
- },
3217
- {
3218
- "$ref": "#/components/schemas/AbsoluteDateFilter"
3219
- },
3220
- {
3221
- "$ref": "#/components/schemas/RelativeDateFilter"
3222
- },
3223
- {
3224
- "$ref": "#/components/schemas/NegativeAttributeFilter"
3225
- },
3226
- {
3227
- "$ref": "#/components/schemas/PositiveAttributeFilter"
3228
- }
3229
- ]
3230
- },
3231
- "InlineFilterDefinition": {
3232
- "required": ["inline"],
3233
- "type": "object",
3234
- "properties": {
3235
- "inline": {
3236
- "required": ["filter"],
3237
- "type": "object",
3238
- "properties": {
3239
- "filter": {
3240
- "type": "string",
3241
- "description": "MAQL query representing the filter."
3242
- },
3243
- "localIdentifier": {
3244
- "type": "string"
3245
- },
3246
- "applyOnResult": {
3247
- "type": "boolean"
3248
- }
3249
- }
3250
- }
3251
- },
3252
- "description": "Filter in form of direct MAQL query."
3253
- },
3254
- "MeasureValueFilter": {
3255
- "type": "object",
3256
- "description": "Abstract filter definition type filtering by the value of the metric.",
3257
- "oneOf": [
3258
- {
3259
- "$ref": "#/components/schemas/ComparisonMeasureValueFilter"
3260
- },
3261
- {
3262
- "$ref": "#/components/schemas/RangeMeasureValueFilter"
3263
- }
3264
- ]
3265
- },
3266
- "RangeMeasureValueFilter": {
3267
- "required": ["rangeMeasureValueFilter"],
3268
- "type": "object",
3269
- "properties": {
3270
- "rangeMeasureValueFilter": {
3271
- "required": ["from", "operator", "to", "measure"],
3272
- "type": "object",
3273
- "properties": {
3274
- "dimensionality": {
3275
- "type": "array",
3276
- "description": "References to the attributes to be used when filtering.",
3277
- "items": {
3278
- "$ref": "#/components/schemas/AfmIdentifier"
3279
- }
3280
- },
3281
- "treatNullValuesAs": {
3282
- "type": "number",
3283
- "description": "A value that will be substituted for null values in the metric for the comparisons.",
3284
- "example": 0
3285
- },
3286
- "operator": {
3287
- "type": "string",
3288
- "example": "BETWEEN",
3289
- "enum": ["BETWEEN", "NOT_BETWEEN"]
3290
- },
3291
- "from": {
3292
- "type": "number",
3293
- "example": 100
3294
- },
3295
- "to": {
3296
- "type": "number",
3297
- "example": 999
3298
- },
3299
- "localIdentifier": {
3300
- "type": "string"
3301
- },
3302
- "applyOnResult": {
3303
- "type": "boolean"
3304
- },
3305
- "measure": {
3306
- "$ref": "#/components/schemas/AfmIdentifier"
3307
- }
3308
- }
3309
- }
3310
- },
3311
- "description": "Filter the result by comparing specified metric to given range of values."
3312
- },
3313
- "RankingFilter": {
3314
- "required": ["rankingFilter"],
3315
- "type": "object",
3316
- "properties": {
3317
- "rankingFilter": {
3318
- "required": ["measures", "operator", "value"],
3319
- "type": "object",
3320
- "properties": {
3321
- "dimensionality": {
3322
- "type": "array",
3323
- "description": "References to the attributes to be used when filtering.",
3324
- "items": {
3325
- "$ref": "#/components/schemas/AfmIdentifier"
3326
- }
3327
- },
3328
- "measures": {
3329
- "type": "array",
3330
- "description": "References to the metrics to be used when filtering.",
3331
- "items": {
3332
- "$ref": "#/components/schemas/AfmIdentifier"
3333
- }
3334
- },
3335
- "operator": {
3336
- "type": "string",
3337
- "description": "The type of ranking to use, TOP or BOTTOM.",
3338
- "enum": ["TOP", "BOTTOM"]
3339
- },
3340
- "value": {
3341
- "type": "integer",
3342
- "description": "Number of top/bottom values to filter.",
3343
- "format": "int32",
3344
- "example": 5
3345
- },
3346
- "localIdentifier": {
3347
- "type": "string"
3348
- },
3349
- "applyOnResult": {
3350
- "type": "boolean"
3351
- }
3352
- }
3353
- }
3354
- },
3355
- "description": "Filter the result on top/bottom N values according to given metric(s)."
3356
- },
3357
3345
  "ResultSpec": {
3358
3346
  "required": ["dimensions"],
3359
3347
  "type": "object",
@@ -4665,13 +4653,13 @@
4665
4653
  "nullable": true
4666
4654
  }
4667
4655
  },
4668
- "xcoord": {
4656
+ "ycoord": {
4669
4657
  "type": "array",
4670
4658
  "items": {
4671
4659
  "type": "number"
4672
4660
  }
4673
4661
  },
4674
- "ycoord": {
4662
+ "xcoord": {
4675
4663
  "type": "array",
4676
4664
  "items": {
4677
4665
  "type": "number"
@@ -5085,9 +5073,13 @@
5085
5073
  }
5086
5074
  },
5087
5075
  "QualityIssue": {
5088
- "required": ["code", "detail", "objects", "severity"],
5076
+ "required": ["code", "detail", "id", "objects", "severity"],
5089
5077
  "type": "object",
5090
5078
  "properties": {
5079
+ "id": {
5080
+ "type": "string",
5081
+ "description": "Unique identifier for the quality issue"
5082
+ },
5091
5083
  "objects": {
5092
5084
  "type": "array",
5093
5085
  "description": "List of objects affected by this quality issue",
@@ -5117,7 +5109,7 @@
5117
5109
  "description": "List of quality issues (available when status is COMPLETED)"
5118
5110
  },
5119
5111
  "QualityIssueObject": {
5120
- "required": ["id", "type"],
5112
+ "required": ["id", "type", "workspaceId"],
5121
5113
  "type": "object",
5122
5114
  "properties": {
5123
5115
  "type": {
@@ -5129,6 +5121,11 @@
5129
5121
  "type": "string",
5130
5122
  "description": "Object ID",
5131
5123
  "example": "revenue"
5124
+ },
5125
+ "workspaceId": {
5126
+ "type": "string",
5127
+ "description": "Workspace ID where the object belongs",
5128
+ "example": "demo"
5132
5129
  }
5133
5130
  },
5134
5131
  "description": "List of objects affected by this quality issue"
@@ -5165,6 +5162,10 @@
5165
5162
  "items": {
5166
5163
  "$ref": "#/components/schemas/QualityIssue"
5167
5164
  }
5165
+ },
5166
+ "updatedAt": {
5167
+ "type": "string",
5168
+ "description": "Timestamp when the quality issues were last updated (ISO format)"
5168
5169
  }
5169
5170
  }
5170
5171
  },
@@ -764,6 +764,7 @@ export declare const AutomationIdentifierRefIdentifierTypeEnum: {
764
764
  readonly EXPORT_DEFINITION: "exportDefinition";
765
765
  readonly AUTOMATION: "automation";
766
766
  readonly AUTOMATION_RESULT: "automationResult";
767
+ readonly MEMORY_ITEM: "memoryItem";
767
768
  readonly PROMPT: "prompt";
768
769
  readonly VISUALIZATION_OBJECT: "visualizationObject";
769
770
  readonly FILTER_CONTEXT: "filterContext";