@gooddata/api-client-tiger 11.52.0-alpha.5 → 11.52.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.
@@ -492,6 +492,14 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
492
492
  * @memberof ActionsApi
493
493
  */
494
494
  switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
495
+ /**
496
+ * Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
497
+ * @summary Trigger metadata synchronization
498
+ * @param {*} [options] Override http request option.
499
+ * @throws {RequiredError}
500
+ * @memberof ActionsApi
501
+ */
502
+ syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
495
503
  /**
496
504
  * Returns a list of tags for this workspace
497
505
  * @summary Get Analytics Catalog Tags
@@ -1487,7 +1495,7 @@ export declare function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(work
1487
1495
  * @param {string} workspaceId
1488
1496
  * @param {number} [page] Zero-based page index (0..N)
1489
1497
  * @param {number} [size] The size of the page to be returned.
1490
- * @param {string} [name] Filter by user name. Note that user name is case insensitive.
1498
+ * @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
1491
1499
  * @param {*} [options] Override http request option.
1492
1500
  * @param {Configuration} [configuration] Optional configuration.
1493
1501
  * @throws {RequiredError}
@@ -3073,6 +3081,14 @@ export declare interface ActionsApiInterface {
3073
3081
  * @memberof ActionsApiInterface
3074
3082
  */
3075
3083
  switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
3084
+ /**
3085
+ * Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
3086
+ * @summary Trigger metadata synchronization
3087
+ * @param {*} [options] Override http request option.
3088
+ * @throws {RequiredError}
3089
+ * @memberof ActionsApiInterface
3090
+ */
3091
+ syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
3076
3092
  /**
3077
3093
  * Returns a list of tags for this workspace
3078
3094
  * @summary Get Analytics Catalog Tags
@@ -3341,7 +3357,7 @@ export declare interface ActionsApiListWorkspaceUsersRequest {
3341
3357
  */
3342
3358
  readonly size?: number;
3343
3359
  /**
3344
- * Filter by user name. Note that user name is case insensitive.
3360
+ * Filter by user name, email or login (user ID). Note that the filter is case insensitive.
3345
3361
  * @type {string}
3346
3362
  * @memberof ActionsApiListWorkspaceUsers
3347
3363
  */
@@ -6914,7 +6930,7 @@ export declare interface AfmChangeAnalysisRequest {
6914
6930
  /**
6915
6931
  * Optional filters to apply.
6916
6932
  */
6917
- 'filters'?: Array<ChangeAnalysisRequestFiltersInner>;
6933
+ 'filters'?: Array<AfmFilterDefinition>;
6918
6934
  /**
6919
6935
  * Only include attributes with at least one of these tags. If empty, no inclusion filter is applied. This filter applies to both auto-discovered and explicitly provided attributes.
6920
6936
  */
@@ -6981,7 +6997,7 @@ export declare interface AfmCompoundMeasureValueFilterCompoundMeasureValueFilter
6981
6997
  /**
6982
6998
  * List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
6983
6999
  */
6984
- 'conditions': Array<AfmMeasureValueCondition>;
7000
+ 'conditions'?: Array<AfmMeasureValueCondition>;
6985
7001
  /**
6986
7002
  * References to the attributes to be used when filtering.
6987
7003
  */
@@ -10943,6 +10959,52 @@ export declare interface AiBucketRefObject {
10943
10959
  'field': string;
10944
10960
  }
10945
10961
 
10962
+ /**
10963
+ * What one search looked for in the semantic catalog, what came back, and what it used.
10964
+ */
10965
+ export declare interface AiCatalogSearchDetail {
10966
+ /**
10967
+ * Category this body belongs to.
10968
+ */
10969
+ 'category'?: AiCatalogSearchDetailCategoryEnum;
10970
+ /**
10971
+ * Titles the search returned, grouped by object type.
10972
+ */
10973
+ 'found'?: Array<AiSearchedGroup>;
10974
+ /**
10975
+ * Keywords the search looked for. Each runs against every requested type.
10976
+ */
10977
+ 'query'?: Array<string>;
10978
+ /**
10979
+ * Catalog types the search asked for.
10980
+ */
10981
+ 'requestedTypes'?: Array<string>;
10982
+ /**
10983
+ * Best-matching object per type. Empty for the search modes that do not rank.
10984
+ */
10985
+ 'used'?: Array<AiCatalogSearchMatch>;
10986
+ }
10987
+
10988
+ export declare type AiCatalogSearchDetailCategoryEnum = 'catalogSearch';
10989
+
10990
+ /**
10991
+ * The highest-ranked object of one searched type, with the score that ranked it.
10992
+ */
10993
+ export declare interface AiCatalogSearchMatch {
10994
+ /**
10995
+ * Catalog type the object is the best match of.
10996
+ */
10997
+ 'objectType': string;
10998
+ /**
10999
+ * Relevance score that ranked it.
11000
+ */
11001
+ 'score': number;
11002
+ /**
11003
+ * Title of the highest-ranked object.
11004
+ */
11005
+ 'title': string;
11006
+ }
11007
+
10946
11008
  export declare interface AiClusteringAmount {
10947
11009
  }
10948
11010
 
@@ -11009,6 +11071,23 @@ export declare const AiComparisonMeasureValueOperator: {
11009
11071
 
11010
11072
  export declare type AiComparisonMeasureValueOperator = typeof AiComparisonMeasureValueOperator[keyof typeof AiComparisonMeasureValueOperator];
11011
11073
 
11074
+ /**
11075
+ * How the answer itself came out: what it is and which model wrote it.
11076
+ */
11077
+ export declare interface AiComposeAnswerDetail {
11078
+ /**
11079
+ * Category this body belongs to.
11080
+ */
11081
+ 'category'?: AiComposeAnswerDetailCategoryEnum;
11082
+ 'modelId'?: string | null;
11083
+ 'output'?: AiComposeAnswerDetailOutputEnum | null;
11084
+ 'suggestedActions'?: number | null;
11085
+ }
11086
+
11087
+ export declare type AiComposeAnswerDetailCategoryEnum = 'composeAnswer';
11088
+
11089
+ export declare type AiComposeAnswerDetailOutputEnum = 'text' | 'visualization' | 'dashboard' | 'keyDriverAnalysis' | 'whatIf' | 'searchResults' | 'alertProposal';
11090
+
11012
11091
  export declare interface AiCompoundMeasureValueFilter {
11013
11092
  'compoundMeasureValueFilter': AiCompoundMeasureValueFilterBody;
11014
11093
  }
@@ -11160,6 +11239,7 @@ export declare interface AiConversationItemResponse {
11160
11239
  * Item creation timestamp (ISO-8601 UTC).
11161
11240
  */
11162
11241
  'createdAt': string;
11242
+ 'detail'?: AiConversationItemResponseDetail | null;
11163
11243
  /**
11164
11244
  * Conversation item identifier.
11165
11245
  */
@@ -11170,16 +11250,32 @@ export declare interface AiConversationItemResponse {
11170
11250
  'itemIndex': number;
11171
11251
  'newAgentId'?: string | null;
11172
11252
  'oldAgentId'?: string | null;
11253
+ 'reasoningEffort'?: AiRequestedReasoningEffort | null;
11173
11254
  'replyTo'?: string | null;
11174
11255
  'responseId'?: string | null;
11175
11256
  /**
11176
11257
  * Author role of the item.
11177
11258
  */
11178
11259
  'role': AiConversationItemResponseRoleEnum;
11260
+ 'stepId'?: string | null;
11179
11261
  'taskId'?: string | null;
11180
11262
  'trigger'?: AiConversationItemResponseTriggerEnum | null;
11181
11263
  }
11182
11264
 
11265
+ /**
11266
+ * @type AiConversationItemResponseDetail
11267
+ * What one item\'s action did.
11268
+ */
11269
+ export declare type AiConversationItemResponseDetail = ({
11270
+ category: 'catalogSearch';
11271
+ } & AiCatalogSearchDetail) | ({
11272
+ category: 'composeAnswer';
11273
+ } & AiComposeAnswerDetail) | ({
11274
+ category: 'knowledgeSearch';
11275
+ } & AiKnowledgeSearchDetail) | ({
11276
+ category: 'skillRouting';
11277
+ } & AiSkillRoutingDetail);
11278
+
11183
11279
  export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool' | 'system';
11184
11280
 
11185
11281
  export declare type AiConversationItemResponseTriggerEnum = 'agent_switched' | 'agent_updated';
@@ -11319,7 +11415,8 @@ export declare interface AiDashboardIdUpdateRequest {
11319
11415
 
11320
11416
  export declare interface AiDashboardPart {
11321
11417
  'dashboard'?: AiDashboard | null;
11322
- 'savedDashboardId'?: string | null;
11418
+ 'references'?: AiDashboardReferences | null;
11419
+ 'saved_dashboard_id'?: string | null;
11323
11420
  /**
11324
11421
  * Type of multipart part.
11325
11422
  */
@@ -11336,6 +11433,17 @@ export declare interface AiDashboardRef {
11336
11433
  'title'?: string | null;
11337
11434
  }
11338
11435
 
11436
+ /**
11437
+ * AAC bodies of every widget-referenced visualization in a dashboard draft. Each entry is opaque AAC pass-through (dict), not modeled as a schema — same treatment the codebase gives elsewhere to full AAC visualization bodies.
11438
+ */
11439
+ export declare interface AiDashboardReferences {
11440
+ [key: string]: any;
11441
+ /**
11442
+ * Full AAC body of every widget-referenced visualization that has one available.
11443
+ */
11444
+ 'visualizations': Array<object>;
11445
+ }
11446
+
11339
11447
  /**
11340
11448
  * AAC ref: dashboard.json section.
11341
11449
  */
@@ -11570,6 +11678,50 @@ export declare interface AiInlineFilterDefinitionBody {
11570
11678
  'localIdentifier'?: string | null;
11571
11679
  }
11572
11680
 
11681
+ /**
11682
+ * Interaction step list response.
11683
+ */
11684
+ export declare interface AiInteractionStepListResponse {
11685
+ /**
11686
+ * Ordered list of interaction steps.
11687
+ */
11688
+ 'steps': Array<AiInteractionStepResponse>;
11689
+ }
11690
+
11691
+ /**
11692
+ * One LLM call of a turn and the tools it dispatched. Carries only what belongs to the whole call -- ordering, duration, spend. What each action did lives on the items that link here via their ``stepId``.
11693
+ */
11694
+ export declare interface AiInteractionStepResponse {
11695
+ /**
11696
+ * Parent conversation identifier.
11697
+ */
11698
+ 'conversationId': string;
11699
+ /**
11700
+ * Step start timestamp (ISO-8601 UTC).
11701
+ */
11702
+ 'createdAt': string;
11703
+ /**
11704
+ * Wall-clock duration of the LLM call and its tool dispatches.
11705
+ */
11706
+ 'durationMs': number;
11707
+ /**
11708
+ * Response/turn identifier the step belongs to.
11709
+ */
11710
+ 'responseId': string;
11711
+ /**
11712
+ * Interaction step identifier.
11713
+ */
11714
+ 'stepId': string;
11715
+ /**
11716
+ * Zero-based step order within the turn.
11717
+ */
11718
+ 'stepIndex': number;
11719
+ /**
11720
+ * Token usage of the step\'s LLM call.
11721
+ */
11722
+ 'tokens': AiStepTokens;
11723
+ }
11724
+
11573
11725
  /**
11574
11726
  * Date granularity for the interval of an ONCE_PER_INTERVAL trigger.
11575
11727
  */
@@ -11633,6 +11785,35 @@ export declare interface AiKeyDriverAnalysisPart {
11633
11785
 
11634
11786
  export declare type AiKeyDriverAnalysisPartTypeEnum = 'kda';
11635
11787
 
11788
+ /**
11789
+ * What one action looked for in the knowledge base and which documents it reached.
11790
+ */
11791
+ export declare interface AiKnowledgeSearchDetail {
11792
+ 'bestMatch'?: string | null;
11793
+ /**
11794
+ * Category this body belongs to.
11795
+ */
11796
+ 'category'?: AiKnowledgeSearchDetailCategoryEnum;
11797
+ /**
11798
+ * Documents the action reached, best-scoring first.
11799
+ */
11800
+ 'documents'?: Array<AiKnowledgeSearchDocument>;
11801
+ 'query'?: string | null;
11802
+ }
11803
+
11804
+ export declare type AiKnowledgeSearchDetailCategoryEnum = 'knowledgeSearch';
11805
+
11806
+ /**
11807
+ * One knowledge document an action reached, named as the user would recognise it.
11808
+ */
11809
+ export declare interface AiKnowledgeSearchDocument {
11810
+ 'score'?: number | null;
11811
+ /**
11812
+ * Document title, falling back to its filename when it has none.
11813
+ */
11814
+ 'title': string;
11815
+ }
11816
+
11636
11817
  export declare interface AiLabel {
11637
11818
  'identifier': AiAfmObjectIdentifierBody;
11638
11819
  'localIdentifier': string;
@@ -12221,6 +12402,20 @@ export declare interface AiSearchDocumentsResponse {
12221
12402
  'statistics': AiSearchStatistics;
12222
12403
  }
12223
12404
 
12405
+ /**
12406
+ * The results of a search that share one object type.
12407
+ */
12408
+ export declare interface AiSearchedGroup {
12409
+ /**
12410
+ * Catalog type name the group belongs to.
12411
+ */
12412
+ 'objectType': string;
12413
+ /**
12414
+ * Titles of that type that came back.
12415
+ */
12416
+ 'titles'?: Array<string>;
12417
+ }
12418
+
12224
12419
  export declare interface AiSearchObject {
12225
12420
  'certification'?: string | null;
12226
12421
  'certificationMessage'?: string | null;
@@ -12391,6 +12586,35 @@ export declare interface AiSkillResponse {
12391
12586
  'title': string;
12392
12587
  }
12393
12588
 
12589
+ /**
12590
+ * Which skills the turn could reach for, and which this call left active.
12591
+ */
12592
+ export declare interface AiSkillRoutingDetail {
12593
+ /**
12594
+ * Titles of the skills active after the call replaced the active set.
12595
+ */
12596
+ 'activated'?: Array<string>;
12597
+ /**
12598
+ * Titles of the skills the model could choose from, in the order the prompt lists them.
12599
+ */
12600
+ 'available'?: Array<string>;
12601
+ /**
12602
+ * Category this body belongs to.
12603
+ */
12604
+ 'category'?: AiSkillRoutingDetailCategoryEnum;
12605
+ }
12606
+
12607
+ export declare type AiSkillRoutingDetailCategoryEnum = 'skillRouting';
12608
+
12609
+ /**
12610
+ * What the step\'s LLM call spent; a field is null when the provider did not report it.
12611
+ */
12612
+ export declare interface AiStepTokens {
12613
+ 'input'?: number | null;
12614
+ 'output'?: number | null;
12615
+ 'total'?: number | null;
12616
+ }
12617
+
12394
12618
  /**
12395
12619
  * A quick-reply action button rendered alongside the follow-up question.
12396
12620
  */
@@ -12879,7 +13103,9 @@ export declare interface AlertAfm {
12879
13103
  * @type AlertCondition
12880
13104
  * Alert trigger condition.
12881
13105
  */
12882
- export declare type AlertCondition = AnomalyDetectionWrapper | ComparisonWrapper | RangeWrapper | RelativeWrapper;
13106
+ declare type AlertCondition = AnomalyDetectionWrapper | ComparisonWrapper | RangeWrapper | RelativeWrapper;
13107
+ export { AlertCondition }
13108
+ export { AlertCondition as MdAutomationAlertCondition }
12883
13109
 
12884
13110
  /**
12885
13111
  * @type AlertConditionOperand
@@ -18427,7 +18653,7 @@ export declare interface AutomationAFM {
18427
18653
  /**
18428
18654
  * Various filter types to filter the execution result.
18429
18655
  */
18430
- 'filters': Array<AutomationAFMFiltersInner>;
18656
+ 'filters': Array<AutomationFilterDefinition>;
18431
18657
  /**
18432
18658
  * (EXPERIMENTAL) Override definitions of catalog metrics for this request. Allows substituting a catalog metric\'s MAQL definition without modifying the stored definition.
18433
18659
  */
@@ -18442,11 +18668,6 @@ export declare interface AutomationAFM {
18442
18668
  'parameters'?: Array<AutomationParameterItem>;
18443
18669
  }
18444
18670
 
18445
- /**
18446
- * @type AutomationAFMFiltersInner
18447
- */
18448
- export declare type AutomationAFMFiltersInner = AutomationAbstractMeasureValueFilter | AutomationFilterDefinitionForSimpleMeasure | AutomationInlineFilterDefinition;
18449
-
18450
18671
  /**
18451
18672
  * @type AutomationAfmIdentifier
18452
18673
  * Reference to the attribute label to which the filter should be applied.
@@ -18539,7 +18760,7 @@ export declare interface AutomationAfmObjectIdentifierParameterIdentifier {
18539
18760
  export declare type AutomationAfmObjectIdentifierParameterIdentifierTypeEnum = 'parameter';
18540
18761
 
18541
18762
  export declare interface AutomationAlert {
18542
- 'condition': MdAutomationAlertCondition;
18763
+ 'condition': AlertCondition;
18543
18764
  'execution': AlertAfm;
18544
18765
  /**
18545
18766
  * Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
@@ -18752,7 +18973,7 @@ export declare interface AutomationAttributeItem {
18752
18973
  }
18753
18974
 
18754
18975
  export declare interface AutomationAutomationAlert {
18755
- 'condition': AutomationAutomationAlertCondition;
18976
+ 'condition': AutomationAlertCondition;
18756
18977
  'execution': AutomationAlertAfm;
18757
18978
  /**
18758
18979
  * Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
@@ -18764,11 +18985,6 @@ export declare interface AutomationAutomationAlert {
18764
18985
  'trigger'?: AutomationAutomationAlertTriggerEnum;
18765
18986
  }
18766
18987
 
18767
- /**
18768
- * @type AutomationAutomationAlertCondition
18769
- */
18770
- export declare type AutomationAutomationAlertCondition = AutomationAnomalyDetectionWrapper | AutomationComparisonWrapper | AutomationRangeWrapper | AutomationRelativeWrapper;
18771
-
18772
18988
  export declare type AutomationAutomationAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
18773
18989
 
18774
18990
  export declare type AutomationAutomationAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
@@ -18798,9 +19014,12 @@ export declare interface AutomationAutomationMetadata {
18798
19014
  }
18799
19015
 
18800
19016
  export declare interface AutomationAutomationNotification extends AutomationNotificationContent {
19017
+ 'type': AutomationAutomationNotificationTypeEnum;
18801
19018
  'content': AutomationWebhookMessage;
18802
19019
  }
18803
19020
 
19021
+ export declare type AutomationAutomationNotificationTypeEnum = 'AUTOMATION';
19022
+
18804
19023
  export declare interface AutomationAutomationRawExport {
18805
19024
  'requestPayload': AutomationRawExportAutomationRequest;
18806
19025
  }
@@ -18907,7 +19126,7 @@ export declare interface AutomationCompoundMeasureValueFilterCompoundMeasureValu
18907
19126
  /**
18908
19127
  * List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
18909
19128
  */
18910
- 'conditions': Array<AutomationMeasureValueCondition>;
19129
+ 'conditions'?: Array<AutomationMeasureValueCondition>;
18911
19130
  /**
18912
19131
  * References to the attributes to be used when filtering.
18913
19132
  */
@@ -19776,7 +19995,7 @@ export declare interface AutomationDashboardMeasureValueFilter {
19776
19995
  }
19777
19996
 
19778
19997
  export declare interface AutomationDashboardMeasureValueFilterDashboardMeasureValueFilter {
19779
- 'conditions': Array<AutomationDashboardCompoundConditionItem>;
19998
+ 'conditions'?: Array<AutomationDashboardCompoundConditionItem>;
19780
19999
  'dimensionality'?: Array<AutomationIdentifierRef>;
19781
20000
  'localIdentifier'?: string;
19782
20001
  'measure': AutomationIdentifierRef;
@@ -19815,6 +20034,7 @@ export declare interface AutomationDashboardTabularExportRequestV2 {
19815
20034
  'dashboardTabsParametersOverrides'?: {
19816
20035
  [key: string]: Array<AutomationParameterValue>;
19817
20036
  };
20037
+ 'executionSettings'?: AutomationExecutionSettings;
19818
20038
  /**
19819
20039
  * Filename of downloaded file without extension.
19820
20040
  */
@@ -19963,7 +20183,7 @@ export declare type AutomationFilterDefinition = AutomationAbsoluteDateFilter |
19963
20183
  export declare type AutomationFilterDefinitionForSimpleMeasure = AutomationAttributeFilter | AutomationDateFilter;
19964
20184
 
19965
20185
  export declare interface AutomationIdentifierRef {
19966
- 'identifier'?: AutomationIdentifierRefIdentifier;
20186
+ 'identifier': AutomationIdentifierRefIdentifier;
19967
20187
  }
19968
20188
 
19969
20189
  export declare interface AutomationIdentifierRefIdentifier {
@@ -19997,6 +20217,10 @@ export declare interface AutomationImageExportRequest {
19997
20217
  * Metadata definition in free-form JSON format.
19998
20218
  */
19999
20219
  'metadata'?: object | null;
20220
+ /**
20221
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
20222
+ */
20223
+ 'timezoneId'?: string | null;
20000
20224
  /**
20001
20225
  * List of widget identifiers to be exported. Note that only one widget is currently supported.
20002
20226
  */
@@ -20103,18 +20327,13 @@ export declare type AutomationMeasureDefinition = AutomationArithmeticMeasureDef
20103
20327
  * Metric is a quantity that is calculated from the data.
20104
20328
  */
20105
20329
  export declare interface AutomationMeasureItem {
20106
- 'definition': AutomationMeasureItemDefinition;
20330
+ 'definition': AutomationMeasureDefinition;
20107
20331
  /**
20108
20332
  * Local identifier of the metric. This can be used to reference the metric in other parts of the execution definition.
20109
20333
  */
20110
20334
  'localIdentifier': string;
20111
20335
  }
20112
20336
 
20113
- /**
20114
- * @type AutomationMeasureItemDefinition
20115
- */
20116
- export declare type AutomationMeasureItemDefinition = AutomationArithmeticMeasureDefinition | AutomationInlineMeasureDefinition | AutomationPopDatasetMeasureDefinition | AutomationPopDateMeasureDefinition | AutomationPopMeasureDefinition | AutomationSimpleMeasureDefinition;
20117
-
20118
20337
  /**
20119
20338
  * @type AutomationMeasureValueCondition
20120
20339
  * A condition for filtering by measure value. Can be either a comparison or a range condition.
@@ -20195,6 +20414,12 @@ export declare interface AutomationNotificationFilter {
20195
20414
  'title': string;
20196
20415
  }
20197
20416
 
20417
+ export declare interface AutomationNotificationParameter {
20418
+ 'id': string;
20419
+ 'title'?: string;
20420
+ 'value': string;
20421
+ }
20422
+
20198
20423
  export declare interface AutomationNotifications {
20199
20424
  'data': Array<AutomationNotification>;
20200
20425
  'meta': AutomationNotificationsMeta;
@@ -22478,6 +22703,10 @@ export declare interface AutomationSlidesExportRequest {
22478
22703
  * Export template identifier.
22479
22704
  */
22480
22705
  'templateId'?: string | null;
22706
+ /**
22707
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
22708
+ */
22709
+ 'timezoneId'?: string | null;
22481
22710
  /**
22482
22711
  * List of visualization ids to be exported. Note that only one visualization is currently supported.
22483
22712
  */
@@ -22556,6 +22785,7 @@ export declare interface AutomationTabularExportRequest {
22556
22785
  * Execution result identifier.
22557
22786
  */
22558
22787
  'executionResult'?: string;
22788
+ 'executionSettings'?: AutomationExecutionSettings;
22559
22789
  /**
22560
22790
  * Pre-executed layers for multi-layer geo visualizations. When provided, this is the canonical source of the exported layers and takes precedence over the top-level executionResult and customOverride, which are ignored. Index 0 is the main layer; each layer carries its own executionResult and customOverride.
22561
22791
  */
@@ -22597,22 +22827,20 @@ export declare type AutomationTabularExportRequestFormatEnum = 'CSV' | 'XLSX' |
22597
22827
  * Request body with notification channel destination to test.
22598
22828
  */
22599
22829
  export declare interface AutomationTestDestinationRequest {
22600
- 'destination': AutomationTestDestinationRequestDestination;
22830
+ 'destination': AutomationNotificationChannelDestination;
22601
22831
  /**
22602
22832
  * External recipients of the test result.
22603
22833
  */
22604
22834
  'externalRecipients'?: Array<AutomationAutomationExternalRecipient> | null;
22605
22835
  }
22606
22836
 
22607
- /**
22608
- * @type AutomationTestDestinationRequestDestination
22609
- */
22610
- export declare type AutomationTestDestinationRequestDestination = AutomationDefaultSmtp | AutomationInPlatform | AutomationSmtp | AutomationWebhook;
22611
-
22612
22837
  export declare interface AutomationTestNotification extends AutomationNotificationContent {
22838
+ 'type': AutomationTestNotificationTypeEnum;
22613
22839
  'message': string;
22614
22840
  }
22615
22841
 
22842
+ export declare type AutomationTestNotificationTypeEnum = 'TEST';
22843
+
22616
22844
  /**
22617
22845
  * Response from notification channel testing.
22618
22846
  */
@@ -22667,6 +22895,10 @@ export declare interface AutomationVisualExportRequest {
22667
22895
  * Metadata definition in free-form JSON format.
22668
22896
  */
22669
22897
  'metadata'?: object;
22898
+ /**
22899
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
22900
+ */
22901
+ 'timezoneId'?: string | null;
22670
22902
  }
22671
22903
 
22672
22904
  /**
@@ -22723,6 +22955,7 @@ export declare interface AutomationWebhookMessageData {
22723
22955
  'filters'?: Array<AutomationNotificationFilter>;
22724
22956
  'imageExports'?: Array<AutomationExportResult>;
22725
22957
  'notificationSource'?: string;
22958
+ 'parameters'?: Array<AutomationNotificationParameter>;
22726
22959
  'rawExports'?: Array<AutomationExportResult>;
22727
22960
  'recipients'?: Array<AutomationWebhookRecipient>;
22728
22961
  'remainingActionCount'?: number;
@@ -22916,6 +23149,12 @@ export declare interface CacheRemovalInterval {
22916
23149
  'to': string;
22917
23150
  }
22918
23151
 
23152
+ /**
23153
+ * @type CacheRetention
23154
+ * Determines when the cached results coming from a particular data source expire. The shape is selected by the `type` property.
23155
+ */
23156
+ export declare type CacheRetention = IndefiniteCacheRetention | ScheduleCacheRetention | ValidityPeriodCacheRetention;
23157
+
22919
23158
  /**
22920
23159
  * A schedule determining when the cached results of a data source expire.
22921
23160
  */
@@ -22943,6 +23182,16 @@ export declare interface CacheUsageData {
22943
23182
  };
22944
23183
  }
22945
23184
 
23185
+ /**
23186
+ * @type CalendarDefinition
23187
+ * Fiscal calendar definition. The concrete shape is selected by the `type` discriminator.
23188
+ */
23189
+ export declare type CalendarDefinition = ({
23190
+ type: 'custom';
23191
+ } & CustomCalendarDefinition) | ({
23192
+ type: 'fiscalYear';
23193
+ } & FiscalYearCalendarDefinition);
23194
+
22946
23195
  /**
22947
23196
  * A fiscal granularity enabled in a calendar together with its title prefix.
22948
23197
  */
@@ -23081,7 +23330,7 @@ export declare interface ChangeAnalysisParams {
23081
23330
  /**
23082
23331
  * Optional filters to apply
23083
23332
  */
23084
- 'filters': Array<ChangeAnalysisParamsFiltersInner>;
23333
+ 'filters': Array<AfmFilterDefinition>;
23085
23334
  'measure': AfmMeasureItem;
23086
23335
  /**
23087
23336
  * The title of the measure being analyzed
@@ -23097,16 +23346,6 @@ export declare interface ChangeAnalysisParams {
23097
23346
  'useSmartAttributeSelection': boolean;
23098
23347
  }
23099
23348
 
23100
- /**
23101
- * @type ChangeAnalysisParamsFiltersInner
23102
- */
23103
- export declare type ChangeAnalysisParamsFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
23104
-
23105
- /**
23106
- * @type ChangeAnalysisRequestFiltersInner
23107
- */
23108
- export declare type ChangeAnalysisRequestFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
23109
-
23110
23349
  /**
23111
23350
  * Response for change analysis computation
23112
23351
  */
@@ -23796,6 +24035,8 @@ export declare type ColumnOverrideLabelTypeEnum = 'TEXT' | 'HYPERLINK' | 'GEO' |
23796
24035
 
23797
24036
  export declare type ColumnOverrideLdmTypeOverrideEnum = 'FACT' | 'LABEL';
23798
24037
 
24038
+ export declare type ColumnPartitionConfigTypeEnum = 'column';
24039
+
23799
24040
  export declare interface ColumnStatistic {
23800
24041
  'type': ColumnStatisticTypeEnum;
23801
24042
  'value'?: string;
@@ -23934,7 +24175,7 @@ export declare interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
23934
24175
  /**
23935
24176
  * List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
23936
24177
  */
23937
- 'conditions': Array<MeasureValueCondition>;
24178
+ 'conditions'?: Array<MeasureValueCondition>;
23938
24179
  /**
23939
24180
  * References to the attributes to be used when filtering.
23940
24181
  */
@@ -25042,7 +25283,7 @@ export declare interface CreatedVisualization {
25042
25283
  /**
25043
25284
  * @type CreatedVisualizationFiltersInner
25044
25285
  */
25045
- export declare type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | AfmRankingFilter;
25286
+ export declare type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | GenAiRankingFilter;
25046
25287
 
25047
25288
  /**
25048
25289
  * Visualization definitions created by AI.
@@ -25054,6 +25295,7 @@ export declare interface CreatedVisualizations {
25054
25295
  'objects': Array<CreatedVisualization>;
25055
25296
  /**
25056
25297
  * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
25298
+ * @deprecated
25057
25299
  */
25058
25300
  'reasoning': string;
25059
25301
  /**
@@ -26591,6 +26833,7 @@ export declare interface CustomApplicationSettingControllerApiUpdateEntityCustom
26591
26833
  * Calendar backed by custom fiscal calendar tables defined per data source.
26592
26834
  */
26593
26835
  export declare interface CustomCalendarDefinition {
26836
+ 'type': CustomCalendarDefinitionTypeEnum;
26594
26837
  /**
26595
26838
  * Custom fiscal calendar table per data source ID.
26596
26839
  */
@@ -26599,6 +26842,8 @@ export declare interface CustomCalendarDefinition {
26599
26842
  };
26600
26843
  }
26601
26844
 
26845
+ export declare type CustomCalendarDefinitionTypeEnum = 'custom';
26846
+
26602
26847
  /**
26603
26848
  * CustomGeoCollectionControllerApi - object-oriented interface
26604
26849
  * @export
@@ -27206,7 +27451,7 @@ export declare interface DashboardMeasureValueFilter {
27206
27451
  }
27207
27452
 
27208
27453
  export declare interface DashboardMeasureValueFilterDashboardMeasureValueFilter {
27209
- 'conditions': Array<DashboardCompoundConditionItem>;
27454
+ 'conditions'?: Array<DashboardCompoundConditionItem>;
27210
27455
  'dimensionality'?: Array<IdentifierRef>;
27211
27456
  'localIdentifier'?: string;
27212
27457
  'measure': IdentifierRef;
@@ -28573,6 +28818,7 @@ export declare interface DashboardTabularExportRequestV2 {
28573
28818
  'dashboardTabsParametersOverrides'?: {
28574
28819
  [key: string]: Array<ParameterValue>;
28575
28820
  };
28821
+ 'executionSettings'?: ExecutionSettings;
28576
28822
  /**
28577
28823
  * Filename of downloaded file without extension.
28578
28824
  */
@@ -33204,7 +33450,7 @@ export declare type DeclarativeAutomationStateEnum = 'ACTIVE' | 'PAUSED';
33204
33450
  * A custom fiscal calendar definition.
33205
33451
  */
33206
33452
  export declare interface DeclarativeCalendar {
33207
- 'definition': DeclarativeCalendarDefinition;
33453
+ 'definition': CalendarDefinition;
33208
33454
  /**
33209
33455
  * Calendar description.
33210
33456
  */
@@ -33219,11 +33465,6 @@ export declare interface DeclarativeCalendar {
33219
33465
  'name': string;
33220
33466
  }
33221
33467
 
33222
- /**
33223
- * @type DeclarativeCalendarDefinition
33224
- */
33225
- export declare type DeclarativeCalendarDefinition = CustomCalendarDefinition | FiscalYearCalendarDefinition;
33226
-
33227
33468
  /**
33228
33469
  * Color palette and its properties.
33229
33470
  */
@@ -33459,7 +33700,7 @@ export declare interface DeclarativeDataSource {
33459
33700
  * Type of authentication used to connect to the database.
33460
33701
  */
33461
33702
  'authenticationType'?: DeclarativeDataSourceAuthenticationTypeEnum | null;
33462
- 'cacheRetention'?: DeclarativeDataSourceCacheRetention;
33703
+ 'cacheRetention'?: CacheRetention | null;
33463
33704
  /**
33464
33705
  * Determines how the results coming from a particular datasource should be cached. - ALWAYS: The results from the datasource should be cached normally (the default). - NEVER: The results from the datasource should never be cached.
33465
33706
  */
@@ -33523,11 +33764,6 @@ export declare interface DeclarativeDataSource {
33523
33764
 
33524
33765
  export declare type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
33525
33766
 
33526
- /**
33527
- * @type DeclarativeDataSourceCacheRetention
33528
- */
33529
- export declare type DeclarativeDataSourceCacheRetention = IndefiniteCacheRetention | ScheduleCacheRetention | ValidityPeriodCacheRetention;
33530
-
33531
33767
  export declare type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
33532
33768
 
33533
33769
  export declare type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
@@ -33606,7 +33842,7 @@ export declare interface DeclarativeExportDefinition {
33606
33842
  */
33607
33843
  'modifiedAt'?: string | null;
33608
33844
  'modifiedBy'?: DeclarativeUserIdentifier;
33609
- 'requestPayload'?: DeclarativeExportDefinitionRequestPayload;
33845
+ 'requestPayload'?: ExportRequest;
33610
33846
  /**
33611
33847
  * A list of tags.
33612
33848
  */
@@ -33633,11 +33869,6 @@ export declare interface DeclarativeExportDefinitionIdentifier {
33633
33869
 
33634
33870
  export declare type DeclarativeExportDefinitionIdentifierTypeEnum = 'exportDefinition';
33635
33871
 
33636
- /**
33637
- * @type DeclarativeExportDefinitionRequestPayload
33638
- */
33639
- export declare type DeclarativeExportDefinitionRequestPayload = TabularExportRequest | VisualExportRequest;
33640
-
33641
33872
  /**
33642
33873
  * A declarative form of a particular export template.
33643
33874
  */
@@ -34084,7 +34315,7 @@ export declare interface DeclarativeNotificationChannel {
34084
34315
  * Description of a notification channel.
34085
34316
  */
34086
34317
  'description'?: string;
34087
- 'destination'?: DeclarativeNotificationChannelDestination;
34318
+ 'destination'?: NotificationChannelDestination;
34088
34319
  'destinationType'?: DeclarativeNotificationChannelDestinationTypeEnum | null;
34089
34320
  /**
34090
34321
  * Identifier of a notification channel
@@ -34108,11 +34339,6 @@ export declare type DeclarativeNotificationChannelAllowedRecipientsEnum = 'CREAT
34108
34339
 
34109
34340
  export declare type DeclarativeNotificationChannelDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
34110
34341
 
34111
- /**
34112
- * @type DeclarativeNotificationChannelDestination
34113
- */
34114
- export declare type DeclarativeNotificationChannelDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
34115
-
34116
34342
  export declare type DeclarativeNotificationChannelDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
34117
34343
 
34118
34344
  /**
@@ -34219,7 +34445,7 @@ export declare interface DeclarativeOrganizationPermission {
34219
34445
  export declare type DeclarativeOrganizationPermissionNameEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
34220
34446
 
34221
34447
  export declare interface DeclarativeParameter {
34222
- 'content': DeclarativeParameterContent;
34448
+ 'content': ParameterDefinition;
34223
34449
  /**
34224
34450
  * Time of the entity creation.
34225
34451
  */
@@ -34248,15 +34474,6 @@ export declare interface DeclarativeParameter {
34248
34474
  'title': string;
34249
34475
  }
34250
34476
 
34251
- /**
34252
- * @type DeclarativeParameterContent
34253
- */
34254
- export declare type DeclarativeParameterContent = ({
34255
- type: 'NUMBER';
34256
- } & NumberParameterDefinition) | ({
34257
- type: 'STRING';
34258
- } & StringParameterDefinition);
34259
-
34260
34477
  /**
34261
34478
  * A dataset reference.
34262
34479
  */
@@ -57821,7 +58038,7 @@ export declare interface ExportCompoundMeasureValueFilterCompoundMeasureValueFil
57821
58038
  /**
57822
58039
  * List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
57823
58040
  */
57824
- 'conditions': Array<ExportMeasureValueCondition>;
58041
+ 'conditions'?: Array<ExportMeasureValueCondition>;
57825
58042
  /**
57826
58043
  * References to the attributes to be used when filtering.
57827
58044
  */
@@ -58099,7 +58316,7 @@ export declare interface ExportDashboardMeasureValueFilter {
58099
58316
  }
58100
58317
 
58101
58318
  export declare interface ExportDashboardMeasureValueFilterDashboardMeasureValueFilter {
58102
- 'conditions': Array<ExportDashboardCompoundConditionItem>;
58319
+ 'conditions'?: Array<ExportDashboardCompoundConditionItem>;
58103
58320
  'dimensionality'?: Array<ExportIdentifierRef>;
58104
58321
  'localIdentifier'?: string;
58105
58322
  'measure': ExportIdentifierRef;
@@ -58130,6 +58347,7 @@ export declare interface ExportDashboardTabularExportRequest {
58130
58347
  'dashboardTabsParametersOverrides'?: {
58131
58348
  [key: string]: Array<ExportParameterValue>;
58132
58349
  };
58350
+ 'executionSettings'?: ExportExecutionSettings;
58133
58351
  /**
58134
58352
  * Filename of downloaded file without extension.
58135
58353
  */
@@ -59407,7 +59625,7 @@ export declare interface ExportGetSlidesExport202ResponseInner1 {
59407
59625
  }
59408
59626
 
59409
59627
  export declare interface ExportIdentifierRef {
59410
- 'identifier'?: ExportIdentifierRefIdentifier;
59628
+ 'identifier': ExportIdentifierRefIdentifier;
59411
59629
  }
59412
59630
 
59413
59631
  export declare interface ExportIdentifierRefIdentifier {
@@ -59437,6 +59655,10 @@ export declare interface ExportImageExportRequest {
59437
59655
  * Metadata definition in free-form JSON format.
59438
59656
  */
59439
59657
  'metadata'?: object | null;
59658
+ /**
59659
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
59660
+ */
59661
+ 'timezoneId'?: string | null;
59440
59662
  /**
59441
59663
  * List of widget identifiers to be exported. Note that only one widget is currently supported.
59442
59664
  */
@@ -59998,6 +60220,10 @@ export declare interface ExportSlidesExportRequest {
59998
60220
  * Export template identifier.
59999
60221
  */
60000
60222
  'templateId'?: string | null;
60223
+ /**
60224
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
60225
+ */
60226
+ 'timezoneId'?: string | null;
60001
60227
  /**
60002
60228
  * List of visualization ids to be exported. Note that only one visualization is currently supported.
60003
60229
  */
@@ -60034,6 +60260,7 @@ export declare interface ExportTabularExportRequest {
60034
60260
  * Execution result identifier.
60035
60261
  */
60036
60262
  'executionResult'?: string;
60263
+ 'executionSettings'?: ExportExecutionSettings;
60037
60264
  /**
60038
60265
  * Pre-executed layers for multi-layer geo visualizations. When provided, this is the canonical source of the exported layers and takes precedence over the top-level executionResult and customOverride, which are ignored. Index 0 is the main layer; each layer carries its own executionResult and customOverride.
60039
60266
  */
@@ -61207,6 +61434,10 @@ export declare interface ExportVisualExportRequest {
61207
61434
  * Metadata definition in free-form JSON format.
61208
61435
  */
61209
61436
  'metadata'?: object;
61437
+ /**
61438
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
61439
+ */
61440
+ 'timezoneId'?: string | null;
61210
61441
  }
61211
61442
 
61212
61443
  /**
@@ -64731,12 +64962,15 @@ export declare interface FilterViewsApiUpdateEntityFilterViewsRequest {
64731
64962
  * Algorithmic fiscal calendar derived by shifting the Gregorian year start.
64732
64963
  */
64733
64964
  export declare interface FiscalYearCalendarDefinition {
64965
+ 'type': FiscalYearCalendarDefinitionTypeEnum;
64734
64966
  /**
64735
64967
  * Number of months the fiscal year start is shifted relative to the Gregorian year.
64736
64968
  */
64737
64969
  'monthOffset': number;
64738
64970
  }
64739
64971
 
64972
+ export declare type FiscalYearCalendarDefinitionTypeEnum = 'fiscalYear';
64973
+
64740
64974
  /**
64741
64975
  * Forecast configuration.
64742
64976
  */
@@ -64788,6 +65022,7 @@ export declare interface FoundObjects {
64788
65022
  'objects': Array<SearchResultObject>;
64789
65023
  /**
64790
65024
  * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
65025
+ * @deprecated
64791
65026
  */
64792
65027
  'reasoning': string;
64793
65028
  }
@@ -65005,6 +65240,15 @@ export declare type GenAiApiTrendingObjectsRequest = {
65005
65240
  readonly workspaceId: string;
65006
65241
  };
65007
65242
 
65243
+ export declare interface GenAiRankingFilter {
65244
+ 'dimensionality'?: Array<string>;
65245
+ 'measures': Array<string>;
65246
+ 'operator': GenAiRankingFilterOperatorEnum;
65247
+ 'value': number;
65248
+ }
65249
+
65250
+ export declare type GenAiRankingFilterOperatorEnum = 'TOP' | 'BOTTOM';
65251
+
65008
65252
  export declare interface GenerateDescriptionRequest {
65009
65253
  /**
65010
65254
  * Identifier of the object to describe
@@ -66172,7 +66416,7 @@ export declare interface IdentifierDuplications {
66172
66416
  export declare type IdentifierDuplicationsTypeEnum = 'analyticalDashboard' | 'attribute' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceDataFilter' | 'workspaceDataFilterSettings';
66173
66417
 
66174
66418
  export declare interface IdentifierRef {
66175
- 'identifier'?: IdentifierRefIdentifier;
66419
+ 'identifier': IdentifierRefIdentifier;
66176
66420
  }
66177
66421
 
66178
66422
  export declare interface IdentifierRefIdentifier {
@@ -67437,6 +67681,10 @@ export declare interface ImageExportRequest {
67437
67681
  * Free-form JSON object
67438
67682
  */
67439
67683
  'metadata'?: object | null;
67684
+ /**
67685
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
67686
+ */
67687
+ 'timezoneId'?: string | null;
67440
67688
  /**
67441
67689
  * List of widget identifiers to be exported. Note that only one widget is currently supported.
67442
67690
  */
@@ -67593,6 +67841,91 @@ export declare interface InPlatform {
67593
67841
 
67594
67842
  export declare type InPlatformTypeEnum = 'IN_PLATFORM';
67595
67843
 
67844
+ /**
67845
+ * InteractionStepsAi - object-oriented interface
67846
+ * @export
67847
+ * @class InteractionStepsAi
67848
+ * @extends {BaseAPI}
67849
+ */
67850
+ export declare class InteractionStepsAi extends AiBaseAPI implements InteractionStepsAiInterface {
67851
+ /**
67852
+ *
67853
+ * @summary Get Conversation Interaction Steps
67854
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67855
+ * @param {*} [options] Override http request option.
67856
+ * @throws {RequiredError}
67857
+ * @memberof InteractionStepsAi
67858
+ */
67859
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
67860
+ }
67861
+
67862
+ /**
67863
+ *
67864
+ * @summary Get Conversation Interaction Steps
67865
+ * @param {AxiosInstance} axios Axios instance.
67866
+ * @param {string} basePath Base path.
67867
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67868
+ * @param {*} [options] Override http request option.
67869
+ * @param {Configuration} [configuration] Optional configuration.
67870
+ * @throws {RequiredError}
67871
+ */
67872
+ export declare function InteractionStepsAi_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(axios: AxiosInstance, basePath: string, requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiInteractionStepListResponse>;
67873
+
67874
+ /**
67875
+ *
67876
+ * @summary Get Conversation Interaction Steps
67877
+ * @param {string} workspaceId
67878
+ * @param {string} conversationId
67879
+ * @param {string} [responseId]
67880
+ * @param {*} [options] Override http request option.
67881
+ * @param {Configuration} [configuration] Optional configuration.
67882
+ * @throws {RequiredError}
67883
+ */
67884
+ export declare function InteractionStepsAiAxiosParamCreator_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(workspaceId: string, conversationId: string, responseId?: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
67885
+
67886
+ /**
67887
+ * Request parameters for getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet operation in InteractionStepsAi.
67888
+ * @export
67889
+ * @interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest
67890
+ */
67891
+ export declare interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest {
67892
+ /**
67893
+ *
67894
+ * @type {string}
67895
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67896
+ */
67897
+ readonly workspaceId: string;
67898
+ /**
67899
+ *
67900
+ * @type {string}
67901
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67902
+ */
67903
+ readonly conversationId: string;
67904
+ /**
67905
+ *
67906
+ * @type {string}
67907
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67908
+ */
67909
+ readonly responseId?: string;
67910
+ }
67911
+
67912
+ /**
67913
+ * InteractionStepsAi - interface
67914
+ * @export
67915
+ * @interface InteractionStepsAi
67916
+ */
67917
+ export declare interface InteractionStepsAiInterface {
67918
+ /**
67919
+ *
67920
+ * @summary Get Conversation Interaction Steps
67921
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67922
+ * @param {*} [options] Override http request option.
67923
+ * @throws {RequiredError}
67924
+ * @memberof InteractionStepsAiInterface
67925
+ */
67926
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
67927
+ }
67928
+
67596
67929
  /**
67597
67930
  * Settings for intro slide.
67598
67931
  */
@@ -80163,7 +80496,7 @@ export declare class KnowledgeAi extends AiBaseAPI implements KnowledgeAiInterfa
80163
80496
  * @throws {RequiredError}
80164
80497
  * @memberof KnowledgeAi
80165
80498
  */
80166
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
80499
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80167
80500
  /**
80168
80501
  * Download an org-scoped knowledge document\'s raw file.
80169
80502
  * @summary Download Document Org
@@ -80172,7 +80505,7 @@ export declare class KnowledgeAi extends AiBaseAPI implements KnowledgeAiInterfa
80172
80505
  * @throws {RequiredError}
80173
80506
  * @memberof KnowledgeAi
80174
80507
  */
80175
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
80508
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80176
80509
  /**
80177
80510
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
80178
80511
  * @summary Get Document
@@ -80331,7 +80664,7 @@ export { KnowledgeAi_DeleteOrgDocument }
80331
80664
  * @param {Configuration} [configuration] Optional configuration.
80332
80665
  * @throws {RequiredError}
80333
80666
  */
80334
- export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
80667
+ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<File>;
80335
80668
 
80336
80669
  /**
80337
80670
  * Download an org-scoped knowledge document\'s raw file.
@@ -80343,7 +80676,7 @@ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, baseP
80343
80676
  * @param {Configuration} [configuration] Optional configuration.
80344
80677
  * @throws {RequiredError}
80345
80678
  */
80346
- export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
80679
+ export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<File>;
80347
80680
 
80348
80681
  /**
80349
80682
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
@@ -80901,7 +81234,7 @@ export declare interface KnowledgeAiInterface {
80901
81234
  * @throws {RequiredError}
80902
81235
  * @memberof KnowledgeAiInterface
80903
81236
  */
80904
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
81237
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80905
81238
  /**
80906
81239
  * Download an org-scoped knowledge document\'s raw file.
80907
81240
  * @summary Download Document Org
@@ -80910,7 +81243,7 @@ export declare interface KnowledgeAiInterface {
80910
81243
  * @throws {RequiredError}
80911
81244
  * @memberof KnowledgeAiInterface
80912
81245
  */
80913
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
81246
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80914
81247
  /**
80915
81248
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
80916
81249
  * @summary Get Document
@@ -85534,14 +85867,9 @@ export declare interface ListLinks {
85534
85867
  }
85535
85868
 
85536
85869
  export declare interface ListLlmProviderModelsRequest {
85537
- 'providerConfig': ListLlmProviderModelsRequestProviderConfig;
85870
+ 'providerConfig': LlmProviderConfig;
85538
85871
  }
85539
85872
 
85540
- /**
85541
- * @type ListLlmProviderModelsRequestProviderConfig
85542
- */
85543
- export declare type ListLlmProviderModelsRequestProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
85544
-
85545
85873
  export declare interface ListLlmProviderModelsResponse {
85546
85874
  /**
85547
85875
  * Message about the listing result.
@@ -85762,9 +86090,11 @@ export declare interface LlmModel {
85762
86090
 
85763
86091
  export declare type LlmModelFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
85764
86092
 
85765
- export declare interface LlmProviderAuth {
85766
- 'type': string;
85767
- }
86093
+ /**
86094
+ * @type LlmProviderConfig
86095
+ * Provider configuration overrides.
86096
+ */
86097
+ export declare type LlmProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
85768
86098
 
85769
86099
  /**
85770
86100
  * LlmProviderControllerApi - object-oriented interface
@@ -86871,11 +87201,6 @@ export declare interface MatchAttributeFilterMatchAttributeFilter {
86871
87201
 
86872
87202
  export declare type MatchAttributeFilterMatchAttributeFilterMatchTypeEnum = 'STARTS_WITH' | 'ENDS_WITH' | 'CONTAINS';
86873
87203
 
86874
- /**
86875
- * @type AutomationAlertCondition
86876
- */
86877
- export declare type MdAutomationAlertCondition = AnomalyDetectionWrapper | ComparisonWrapper | RangeWrapper | RelativeWrapper;
86878
-
86879
87204
  /**
86880
87205
  * @type MeasureDefinition
86881
87206
  * Abstract metric definition type
@@ -87547,7 +87872,7 @@ export declare class MessagesAi extends AiBaseAPI implements MessagesAiInterface
87547
87872
  * @throws {RequiredError}
87548
87873
  * @memberof MessagesAi
87549
87874
  */
87550
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
87875
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
87551
87876
  }
87552
87877
 
87553
87878
  /**
@@ -87560,7 +87885,7 @@ export declare class MessagesAi extends AiBaseAPI implements MessagesAiInterface
87560
87885
  * @param {Configuration} [configuration] Optional configuration.
87561
87886
  * @throws {RequiredError}
87562
87887
  */
87563
- declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
87888
+ declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<string>;
87564
87889
  export { MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost as GenAiApi_PostMessages }
87565
87890
  export { MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost }
87566
87891
 
@@ -87590,7 +87915,7 @@ export declare interface MessagesAiInterface {
87590
87915
  * @throws {RequiredError}
87591
87916
  * @memberof MessagesAiInterface
87592
87917
  */
87593
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
87918
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
87594
87919
  }
87595
87920
 
87596
87921
  /**
@@ -89216,7 +89541,7 @@ export declare interface Note {
89216
89541
  export declare type NoteAppliesToEnum = 'SOURCE' | 'TARGET';
89217
89542
 
89218
89543
  export declare interface Notes {
89219
- 'note'?: Array<Note>;
89544
+ 'note': Array<Note>;
89220
89545
  }
89221
89546
 
89222
89547
  /**
@@ -93014,7 +93339,7 @@ export declare interface OutlierDetectionRequest {
93014
93339
  /**
93015
93340
  * Various filter types to filter the execution result.
93016
93341
  */
93017
- 'filters': Array<OutlierDetectionRequestFiltersInner>;
93342
+ 'filters'?: Array<AfmFilterDefinition>;
93018
93343
  /**
93019
93344
  * Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
93020
93345
  */
@@ -93026,11 +93351,6 @@ export declare interface OutlierDetectionRequest {
93026
93351
  'sensitivity': OutlierDetectionRequestSensitivityEnum;
93027
93352
  }
93028
93353
 
93029
- /**
93030
- * @type OutlierDetectionRequestFiltersInner
93031
- */
93032
- export declare type OutlierDetectionRequestFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
93033
-
93034
93354
  export declare type OutlierDetectionRequestGranularityEnum = 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
93035
93355
 
93036
93356
  export declare type OutlierDetectionRequestSensitivityEnum = 'LOW' | 'MEDIUM' | 'HIGH';
@@ -93693,6 +94013,16 @@ export declare interface ParameterControllerApiUpdateEntityParametersRequest {
93693
94013
  readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
93694
94014
  }
93695
94015
 
94016
+ /**
94017
+ * @type ParameterDefinition
94018
+ * Parameter content (type-discriminated).
94019
+ */
94020
+ export declare type ParameterDefinition = ({
94021
+ type: 'NUMBER';
94022
+ } & NumberParameterDefinition) | ({
94023
+ type: 'STRING';
94024
+ } & StringParameterDefinition);
94025
+
93696
94026
  /**
93697
94027
  * (EXPERIMENTAL) Parameter value for this execution.
93698
94028
  */
@@ -97813,6 +98143,7 @@ export declare interface SearchResult {
97813
98143
  'error'?: SearchErrorInfo;
97814
98144
  /**
97815
98145
  * DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
98146
+ * @deprecated
97816
98147
  */
97817
98148
  'reasoning': string;
97818
98149
  'relationships': Array<SearchRelationshipObject>;
@@ -98263,6 +98594,10 @@ export declare interface SlidesExportRequest {
98263
98594
  * Export template identifier.
98264
98595
  */
98265
98596
  'templateId'?: string | null;
98597
+ /**
98598
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
98599
+ */
98600
+ 'timezoneId'?: string | null;
98266
98601
  /**
98267
98602
  * List of visualization ids to be exported. Note that only one visualization is currently supported.
98268
98603
  */
@@ -98835,6 +99170,7 @@ export declare interface TabularExportRequest {
98835
99170
  * Execution result identifier.
98836
99171
  */
98837
99172
  'executionResult'?: string;
99173
+ 'executionSettings'?: ExecutionSettings;
98838
99174
  /**
98839
99175
  * Pre-executed layers for multi-layer geo visualizations. When provided, this is the canonical source of the exported layers and takes precedence over the top-level executionResult and customOverride, which are ignored. Index 0 is the main layer; each layer carries its own executionResult and customOverride.
98840
99176
  */
@@ -98932,27 +99268,17 @@ export declare interface TestLlmProviderByIdRequest {
98932
99268
  * Models overrides.
98933
99269
  */
98934
99270
  'models'?: Array<LlmModel>;
98935
- 'providerConfig'?: TestLlmProviderByIdRequestProviderConfig;
99271
+ 'providerConfig'?: LlmProviderConfig;
98936
99272
  }
98937
99273
 
98938
- /**
98939
- * @type TestLlmProviderByIdRequestProviderConfig
98940
- */
98941
- export declare type TestLlmProviderByIdRequestProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
98942
-
98943
99274
  export declare interface TestLlmProviderDefinitionRequest {
98944
99275
  /**
98945
99276
  * Models to test.
98946
99277
  */
98947
99278
  'models'?: Array<LlmModel>;
98948
- 'providerConfig': TestLlmProviderDefinitionRequestProviderConfig;
99279
+ 'providerConfig': LlmProviderConfig;
98949
99280
  }
98950
99281
 
98951
- /**
98952
- * @type TestLlmProviderDefinitionRequestProviderConfig
98953
- */
98954
- export declare type TestLlmProviderDefinitionRequestProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
98955
-
98956
99282
  export declare interface TestLlmProviderResponse {
98957
99283
  /**
98958
99284
  * Per-model test results.
@@ -103076,7 +103402,7 @@ export declare function UserManagementApiAxiosParamCreator_ListWorkspaceUserGrou
103076
103402
  * @param {string} workspaceId
103077
103403
  * @param {number} [page] Zero-based page index (0..N)
103078
103404
  * @param {number} [size] The size of the page to be returned.
103079
- * @param {string} [name] Filter by user name. Note that user name is case insensitive.
103405
+ * @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
103080
103406
  * @param {*} [options] Override http request option.
103081
103407
  * @param {Configuration} [configuration] Optional configuration.
103082
103408
  * @throws {RequiredError}
@@ -103444,7 +103770,7 @@ export declare interface UserManagementApiListWorkspaceUsersRequest {
103444
103770
  */
103445
103771
  readonly size?: number;
103446
103772
  /**
103447
- * Filter by user name. Note that user name is case insensitive.
103773
+ * Filter by user name, email or login (user ID). Note that the filter is case insensitive.
103448
103774
  * @type {string}
103449
103775
  * @memberof UserManagementApiListWorkspaceUsers
103450
103776
  */
@@ -105468,6 +105794,10 @@ export declare interface VisualExportRequest {
105468
105794
  * Metadata definition in free-form JSON format.
105469
105795
  */
105470
105796
  'metadata'?: object;
105797
+ /**
105798
+ * Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
105799
+ */
105800
+ 'timezoneId'?: string | null;
105471
105801
  }
105472
105802
 
105473
105803
  /**
@@ -106871,17 +107201,12 @@ export declare interface WhatIfScenarioItem {
106871
107201
  * Descriptor for a widget on the dashboard.
106872
107202
  */
106873
107203
  export declare interface WidgetDescriptor {
106874
- 'filters'?: Array<WidgetDescriptorFiltersInner>;
107204
+ 'filters'?: Array<AfmFilterDefinition>;
106875
107205
  'title': string;
106876
107206
  'widgetId': string;
106877
107207
  'widgetType': string;
106878
107208
  }
106879
107209
 
106880
- /**
106881
- * @type WidgetDescriptorFiltersInner
106882
- */
106883
- export declare type WidgetDescriptorFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
106884
-
106885
107210
  /**
106886
107211
  * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
106887
107212
  */
@@ -112163,7 +112488,7 @@ export declare interface WorkspaceWidgetSlidesTemplate {
112163
112488
  export declare type WorkspaceWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
112164
112489
 
112165
112490
  export declare interface Xliff {
112166
- 'file'?: Array<any>;
112491
+ 'file': Array<any>;
112167
112492
  'otherAttributes'?: {
112168
112493
  [key: string]: string;
112169
112494
  };