@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.
@@ -439,6 +439,46 @@ export declare const BoundedFilterGranularityEnum: {
439
439
  readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
440
440
  };
441
441
  export type BoundedFilterGranularityEnum = (typeof BoundedFilterGranularityEnum)[keyof typeof BoundedFilterGranularityEnum];
442
+ /**
443
+ * Request for change analysis computation
444
+ */
445
+ export interface ChangeAnalysisRequest {
446
+ metricIdentifier: ObjectIdentifier;
447
+ dateAttributeIdentifier: ObjectIdentifier;
448
+ /**
449
+ * The reference time period (e.g., \'2025-01\')
450
+ */
451
+ referencePeriod: string;
452
+ /**
453
+ * The analyzed time period (e.g., \'2025-02\')
454
+ */
455
+ analyzedPeriod: string;
456
+ /**
457
+ * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
458
+ */
459
+ attributeIdentifiers: Array<ObjectIdentifier>;
460
+ /**
461
+ * The significance threshold for changes (default: 2.0 standard deviations)
462
+ */
463
+ significanceThreshold?: number;
464
+ }
465
+ /**
466
+ * Response for change analysis computation
467
+ */
468
+ export interface ChangeAnalysisResponse {
469
+ links: ExecutionLinks;
470
+ }
471
+ /**
472
+ * Result of a change analysis execution.
473
+ */
474
+ export interface ChangeAnalysisResult {
475
+ /**
476
+ * The change analysis result data containing significant changes.
477
+ */
478
+ data: {
479
+ [key: string]: object;
480
+ };
481
+ }
442
482
  /**
443
483
  * List of chat history interactions.
444
484
  */
@@ -1386,6 +1426,38 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
1386
1426
  applyOnResult?: boolean;
1387
1427
  label: AfmIdentifier;
1388
1428
  }
1429
+ /**
1430
+ * The attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
1431
+ */
1432
+ export interface ObjectIdentifier {
1433
+ type: ObjectIdentifierTypeEnum;
1434
+ space: string;
1435
+ id: string;
1436
+ }
1437
+ export declare const ObjectIdentifierTypeEnum: {
1438
+ readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
1439
+ readonly ATTRIBUTE: "attribute";
1440
+ readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
1441
+ readonly DASHBOARD_PLUGIN: "dashboardPlugin";
1442
+ readonly DATASET: "dataset";
1443
+ readonly FACT: "fact";
1444
+ readonly AGGREGATED_FACT: "aggregatedFact";
1445
+ readonly LABEL: "label";
1446
+ readonly METRIC: "metric";
1447
+ readonly USER_DATA_FILTER: "userDataFilter";
1448
+ readonly EXPORT_DEFINITION: "exportDefinition";
1449
+ readonly AUTOMATION: "automation";
1450
+ readonly AUTOMATION_RESULT: "automationResult";
1451
+ readonly PROMPT: "prompt";
1452
+ readonly VISUALIZATION_OBJECT: "visualizationObject";
1453
+ readonly FILTER_CONTEXT: "filterContext";
1454
+ readonly WORKSPACE_SETTINGS: "workspaceSettings";
1455
+ readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
1456
+ readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
1457
+ readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
1458
+ readonly FILTER_VIEW: "filterView";
1459
+ };
1460
+ export type ObjectIdentifierTypeEnum = (typeof ObjectIdentifierTypeEnum)[keyof typeof ObjectIdentifierTypeEnum];
1389
1461
  /**
1390
1462
  * Current page description.
1391
1463
  */
@@ -2129,6 +2201,24 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2129
2201
  * @throws {RequiredError}
2130
2202
  */
2131
2203
  cancelExecutions: (workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2204
+ /**
2205
+ * Computes change analysis for the provided execution definition.
2206
+ * @summary Compute change analysis
2207
+ * @param {string} workspaceId Workspace identifier
2208
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
2209
+ * @param {*} [options] Override http request option.
2210
+ * @throws {RequiredError}
2211
+ */
2212
+ changeAnalysis: (workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2213
+ /**
2214
+ * Gets change analysis result.
2215
+ * @summary Get change analysis result
2216
+ * @param {string} workspaceId Workspace identifier
2217
+ * @param {string} resultId Result ID
2218
+ * @param {*} [options] Override http request option.
2219
+ * @throws {RequiredError}
2220
+ */
2221
+ changeAnalysisResult: (workspaceId: string, resultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2132
2222
  /**
2133
2223
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
2134
2224
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -2442,6 +2532,24 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2442
2532
  * @throws {RequiredError}
2443
2533
  */
2444
2534
  cancelExecutions(workspaceId: string, afmCancelTokens: AfmCancelTokens, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmCancelTokens>>;
2535
+ /**
2536
+ * Computes change analysis for the provided execution definition.
2537
+ * @summary Compute change analysis
2538
+ * @param {string} workspaceId Workspace identifier
2539
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
2540
+ * @param {*} [options] Override http request option.
2541
+ * @throws {RequiredError}
2542
+ */
2543
+ changeAnalysis(workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
2544
+ /**
2545
+ * Gets change analysis result.
2546
+ * @summary Get change analysis result
2547
+ * @param {string} workspaceId Workspace identifier
2548
+ * @param {string} resultId Result ID
2549
+ * @param {*} [options] Override http request option.
2550
+ * @throws {RequiredError}
2551
+ */
2552
+ changeAnalysisResult(workspaceId: string, resultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResult>>;
2445
2553
  /**
2446
2554
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
2447
2555
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -2744,6 +2852,22 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2744
2852
  * @throws {RequiredError}
2745
2853
  */
2746
2854
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
2855
+ /**
2856
+ * Computes change analysis for the provided execution definition.
2857
+ * @summary Compute change analysis
2858
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
2859
+ * @param {*} [options] Override http request option.
2860
+ * @throws {RequiredError}
2861
+ */
2862
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
2863
+ /**
2864
+ * Gets change analysis result.
2865
+ * @summary Get change analysis result
2866
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
2867
+ * @param {*} [options] Override http request option.
2868
+ * @throws {RequiredError}
2869
+ */
2870
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
2747
2871
  /**
2748
2872
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
2749
2873
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3015,6 +3139,24 @@ export interface ActionsApiInterface {
3015
3139
  * @memberof ActionsApiInterface
3016
3140
  */
3017
3141
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmCancelTokens>;
3142
+ /**
3143
+ * Computes change analysis for the provided execution definition.
3144
+ * @summary Compute change analysis
3145
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
3146
+ * @param {*} [options] Override http request option.
3147
+ * @throws {RequiredError}
3148
+ * @memberof ActionsApiInterface
3149
+ */
3150
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
3151
+ /**
3152
+ * Gets change analysis result.
3153
+ * @summary Get change analysis result
3154
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
3155
+ * @param {*} [options] Override http request option.
3156
+ * @throws {RequiredError}
3157
+ * @memberof ActionsApiInterface
3158
+ */
3159
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
3018
3160
  /**
3019
3161
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
3020
3162
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -3402,6 +3544,44 @@ export interface ActionsApiCancelExecutionsRequest {
3402
3544
  */
3403
3545
  readonly afmCancelTokens: AfmCancelTokens;
3404
3546
  }
3547
+ /**
3548
+ * Request parameters for changeAnalysis operation in ActionsApi.
3549
+ * @export
3550
+ * @interface ActionsApiChangeAnalysisRequest
3551
+ */
3552
+ export interface ActionsApiChangeAnalysisRequest {
3553
+ /**
3554
+ * Workspace identifier
3555
+ * @type {string}
3556
+ * @memberof ActionsApiChangeAnalysis
3557
+ */
3558
+ readonly workspaceId: string;
3559
+ /**
3560
+ *
3561
+ * @type {ChangeAnalysisRequest}
3562
+ * @memberof ActionsApiChangeAnalysis
3563
+ */
3564
+ readonly changeAnalysisRequest: ChangeAnalysisRequest;
3565
+ }
3566
+ /**
3567
+ * Request parameters for changeAnalysisResult operation in ActionsApi.
3568
+ * @export
3569
+ * @interface ActionsApiChangeAnalysisResultRequest
3570
+ */
3571
+ export interface ActionsApiChangeAnalysisResultRequest {
3572
+ /**
3573
+ * Workspace identifier
3574
+ * @type {string}
3575
+ * @memberof ActionsApiChangeAnalysisResult
3576
+ */
3577
+ readonly workspaceId: string;
3578
+ /**
3579
+ * Result ID
3580
+ * @type {string}
3581
+ * @memberof ActionsApiChangeAnalysisResult
3582
+ */
3583
+ readonly resultId: string;
3584
+ }
3405
3585
  /**
3406
3586
  * Request parameters for clustering operation in ActionsApi.
3407
3587
  * @export
@@ -4033,6 +4213,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
4033
4213
  * @memberof ActionsApi
4034
4214
  */
4035
4215
  cancelExecutions(requestParameters: ActionsApiCancelExecutionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmCancelTokens, any, {}>>;
4216
+ /**
4217
+ * Computes change analysis for the provided execution definition.
4218
+ * @summary Compute change analysis
4219
+ * @param {ActionsApiChangeAnalysisRequest} requestParameters Request parameters.
4220
+ * @param {*} [options] Override http request option.
4221
+ * @throws {RequiredError}
4222
+ * @memberof ActionsApi
4223
+ */
4224
+ changeAnalysis(requestParameters: ActionsApiChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangeAnalysisResponse, any, {}>>;
4225
+ /**
4226
+ * Gets change analysis result.
4227
+ * @summary Get change analysis result
4228
+ * @param {ActionsApiChangeAnalysisResultRequest} requestParameters Request parameters.
4229
+ * @param {*} [options] Override http request option.
4230
+ * @throws {RequiredError}
4231
+ * @memberof ActionsApi
4232
+ */
4233
+ changeAnalysisResult(requestParameters: ActionsApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangeAnalysisResult, any, {}>>;
4036
4234
  /**
4037
4235
  * (EXPERIMENTAL) Computes clusters for data points from the provided execution result and parameters.
4038
4236
  * @summary (EXPERIMENTAL) Smart functions - Clustering
@@ -4255,6 +4453,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
4255
4453
  * @export
4256
4454
  */
4257
4455
  export declare const ComputationApiAxiosParamCreator: (configuration?: Configuration) => {
4456
+ /**
4457
+ * Computes change analysis for the provided execution definition.
4458
+ * @summary Compute change analysis
4459
+ * @param {string} workspaceId Workspace identifier
4460
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
4461
+ * @param {*} [options] Override http request option.
4462
+ * @throws {RequiredError}
4463
+ */
4464
+ changeAnalysis: (workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4465
+ /**
4466
+ * Gets change analysis result.
4467
+ * @summary Get change analysis result
4468
+ * @param {string} workspaceId Workspace identifier
4469
+ * @param {string} resultId Result ID
4470
+ * @param {*} [options] Override http request option.
4471
+ * @throws {RequiredError}
4472
+ */
4473
+ changeAnalysisResult: (workspaceId: string, resultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4258
4474
  /**
4259
4475
  * Returns paged list of elements (values) of given label satisfying given filtering criteria.
4260
4476
  * @summary Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
@@ -4355,6 +4571,24 @@ export declare const ComputationApiAxiosParamCreator: (configuration?: Configura
4355
4571
  * @export
4356
4572
  */
4357
4573
  export declare const ComputationApiFp: (configuration?: Configuration) => {
4574
+ /**
4575
+ * Computes change analysis for the provided execution definition.
4576
+ * @summary Compute change analysis
4577
+ * @param {string} workspaceId Workspace identifier
4578
+ * @param {ChangeAnalysisRequest} changeAnalysisRequest
4579
+ * @param {*} [options] Override http request option.
4580
+ * @throws {RequiredError}
4581
+ */
4582
+ changeAnalysis(workspaceId: string, changeAnalysisRequest: ChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
4583
+ /**
4584
+ * Gets change analysis result.
4585
+ * @summary Get change analysis result
4586
+ * @param {string} workspaceId Workspace identifier
4587
+ * @param {string} resultId Result ID
4588
+ * @param {*} [options] Override http request option.
4589
+ * @throws {RequiredError}
4590
+ */
4591
+ changeAnalysisResult(workspaceId: string, resultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResult>>;
4358
4592
  /**
4359
4593
  * Returns paged list of elements (values) of given label satisfying given filtering criteria.
4360
4594
  * @summary Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
@@ -4455,6 +4689,22 @@ export declare const ComputationApiFp: (configuration?: Configuration) => {
4455
4689
  * @export
4456
4690
  */
4457
4691
  export declare const ComputationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4692
+ /**
4693
+ * Computes change analysis for the provided execution definition.
4694
+ * @summary Compute change analysis
4695
+ * @param {ComputationApiChangeAnalysisRequest} requestParameters Request parameters.
4696
+ * @param {*} [options] Override http request option.
4697
+ * @throws {RequiredError}
4698
+ */
4699
+ changeAnalysis(requestParameters: ComputationApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
4700
+ /**
4701
+ * Gets change analysis result.
4702
+ * @summary Get change analysis result
4703
+ * @param {ComputationApiChangeAnalysisResultRequest} requestParameters Request parameters.
4704
+ * @param {*} [options] Override http request option.
4705
+ * @throws {RequiredError}
4706
+ */
4707
+ changeAnalysisResult(requestParameters: ComputationApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
4458
4708
  /**
4459
4709
  * Returns paged list of elements (values) of given label satisfying given filtering criteria.
4460
4710
  * @summary Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
@@ -4534,6 +4784,24 @@ export declare const ComputationApiFactory: (configuration?: Configuration, base
4534
4784
  * @interface ComputationApi
4535
4785
  */
4536
4786
  export interface ComputationApiInterface {
4787
+ /**
4788
+ * Computes change analysis for the provided execution definition.
4789
+ * @summary Compute change analysis
4790
+ * @param {ComputationApiChangeAnalysisRequest} requestParameters Request parameters.
4791
+ * @param {*} [options] Override http request option.
4792
+ * @throws {RequiredError}
4793
+ * @memberof ComputationApiInterface
4794
+ */
4795
+ changeAnalysis(requestParameters: ComputationApiChangeAnalysisRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResponse>;
4796
+ /**
4797
+ * Gets change analysis result.
4798
+ * @summary Get change analysis result
4799
+ * @param {ComputationApiChangeAnalysisResultRequest} requestParameters Request parameters.
4800
+ * @param {*} [options] Override http request option.
4801
+ * @throws {RequiredError}
4802
+ * @memberof ComputationApiInterface
4803
+ */
4804
+ changeAnalysisResult(requestParameters: ComputationApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<ChangeAnalysisResult>;
4537
4805
  /**
4538
4806
  * Returns paged list of elements (values) of given label satisfying given filtering criteria.
4539
4807
  * @summary Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
@@ -4616,6 +4884,44 @@ export interface ComputationApiInterface {
4616
4884
  */
4617
4885
  retrieveResult(requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
4618
4886
  }
4887
+ /**
4888
+ * Request parameters for changeAnalysis operation in ComputationApi.
4889
+ * @export
4890
+ * @interface ComputationApiChangeAnalysisRequest
4891
+ */
4892
+ export interface ComputationApiChangeAnalysisRequest {
4893
+ /**
4894
+ * Workspace identifier
4895
+ * @type {string}
4896
+ * @memberof ComputationApiChangeAnalysis
4897
+ */
4898
+ readonly workspaceId: string;
4899
+ /**
4900
+ *
4901
+ * @type {ChangeAnalysisRequest}
4902
+ * @memberof ComputationApiChangeAnalysis
4903
+ */
4904
+ readonly changeAnalysisRequest: ChangeAnalysisRequest;
4905
+ }
4906
+ /**
4907
+ * Request parameters for changeAnalysisResult operation in ComputationApi.
4908
+ * @export
4909
+ * @interface ComputationApiChangeAnalysisResultRequest
4910
+ */
4911
+ export interface ComputationApiChangeAnalysisResultRequest {
4912
+ /**
4913
+ * Workspace identifier
4914
+ * @type {string}
4915
+ * @memberof ComputationApiChangeAnalysisResult
4916
+ */
4917
+ readonly workspaceId: string;
4918
+ /**
4919
+ * Result ID
4920
+ * @type {string}
4921
+ * @memberof ComputationApiChangeAnalysisResult
4922
+ */
4923
+ readonly resultId: string;
4924
+ }
4619
4925
  /**
4620
4926
  * Request parameters for computeLabelElementsPost operation in ComputationApi.
4621
4927
  * @export
@@ -4872,6 +5178,24 @@ export interface ComputationApiRetrieveResultRequest {
4872
5178
  * @extends {BaseAPI}
4873
5179
  */
4874
5180
  export declare class ComputationApi extends BaseAPI implements ComputationApiInterface {
5181
+ /**
5182
+ * Computes change analysis for the provided execution definition.
5183
+ * @summary Compute change analysis
5184
+ * @param {ComputationApiChangeAnalysisRequest} requestParameters Request parameters.
5185
+ * @param {*} [options] Override http request option.
5186
+ * @throws {RequiredError}
5187
+ * @memberof ComputationApi
5188
+ */
5189
+ changeAnalysis(requestParameters: ComputationApiChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangeAnalysisResponse, any, {}>>;
5190
+ /**
5191
+ * Gets change analysis result.
5192
+ * @summary Get change analysis result
5193
+ * @param {ComputationApiChangeAnalysisResultRequest} requestParameters Request parameters.
5194
+ * @param {*} [options] Override http request option.
5195
+ * @throws {RequiredError}
5196
+ * @memberof ComputationApi
5197
+ */
5198
+ changeAnalysisResult(requestParameters: ComputationApiChangeAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangeAnalysisResult, any, {}>>;
4875
5199
  /**
4876
5200
  * Returns paged list of elements (values) of given label satisfying given filtering criteria.
4877
5201
  * @summary Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.