@gooddata/api-client-tiger 11.18.0-alpha.4 → 11.18.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +349 -233
- package/esm/constants.d.ts +8 -0
- package/esm/constants.d.ts.map +1 -1
- package/esm/constants.js +9 -1
- package/esm/constants.js.map +1 -1
- package/esm/gd-tiger-model/index.d.ts.map +1 -1
- package/esm/gd-tiger-model/index.js +1 -0
- package/esm/gd-tiger-model/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +35 -4
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +181 -37
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/common.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/common.js +1 -13
- package/esm/generated/afm-rest-api/common.js.map +1 -1
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +30 -6
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/common.d.ts.map +1 -1
- package/esm/generated/auth-json-api/common.js +1 -13
- package/esm/generated/auth-json-api/common.js.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +8 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +31 -7
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/common.d.ts.map +1 -1
- package/esm/generated/automation-json-api/common.js +1 -13
- package/esm/generated/automation-json-api/common.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +8 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +61 -13
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/common.d.ts.map +1 -1
- package/esm/generated/export-json-api/common.js +1 -13
- package/esm/generated/export-json-api/common.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +259 -205
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +2366 -474
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/base.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/base.js +1 -13
- package/esm/generated/metadata-json-api/base.js.map +1 -1
- package/esm/generated/metadata-json-api/common.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/common.js +1 -13
- package/esm/generated/metadata-json-api/common.js.map +1 -1
- package/esm/generated/metadata-json-api/index.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/index.js +1 -0
- package/esm/generated/metadata-json-api/index.js.map +1 -1
- package/esm/generated/scan-json-api/api.d.ts +5 -1
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +51 -22
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/common.d.ts.map +1 -1
- package/esm/generated/scan-json-api/common.js +1 -13
- package/esm/generated/scan-json-api/common.js.map +1 -1
- package/esm/metadataUtilities.d.ts.map +1 -1
- package/esm/metadataUtilities.js +0 -2
- package/esm/metadataUtilities.js.map +1 -1
- package/esm/organizationUtilities.d.ts.map +1 -1
- package/esm/organizationUtilities.js +2 -6
- package/esm/organizationUtilities.js.map +1 -1
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +5 -5
|
@@ -7525,7 +7525,7 @@ export declare interface AfmQualityIssuesCalculationStatusResponse {
|
|
|
7525
7525
|
error?: string;
|
|
7526
7526
|
}
|
|
7527
7527
|
|
|
7528
|
-
export declare type AfmQualityIssuesCalculationStatusResponseStatusEnum = "RUNNING" | "COMPLETED" | "FAILED" | "NOT_FOUND" | "DISABLED";
|
|
7528
|
+
export declare type AfmQualityIssuesCalculationStatusResponseStatusEnum = "RUNNING" | "SYNCING" | "COMPLETED" | "FAILED" | "NOT_FOUND" | "DISABLED";
|
|
7529
7529
|
|
|
7530
7530
|
/**
|
|
7531
7531
|
* Filter the result by comparing specified metric to given range of values.
|
|
@@ -8970,6 +8970,28 @@ export declare type AlertCondition = AnomalyDetectionWrapper | ComparisonWrapper
|
|
|
8970
8970
|
*/
|
|
8971
8971
|
export declare type AlertConditionOperand = LocalIdentifier | Value;
|
|
8972
8972
|
|
|
8973
|
+
/**
|
|
8974
|
+
* Allowed relationship type combination.
|
|
8975
|
+
*/
|
|
8976
|
+
declare interface AllowedRelationshipType {
|
|
8977
|
+
/**
|
|
8978
|
+
* Source object type (e.g., \'dashboard\', \'visualization\', \'metric\').
|
|
8979
|
+
*/
|
|
8980
|
+
sourceType: AllowedRelationshipTypeSourceTypeEnum;
|
|
8981
|
+
/**
|
|
8982
|
+
* Target object type (e.g., \'visualization\', \'metric\', \'attribute\').
|
|
8983
|
+
*/
|
|
8984
|
+
targetType: AllowedRelationshipTypeTargetTypeEnum;
|
|
8985
|
+
/**
|
|
8986
|
+
* If true, allows target objects that are not part of any relationship (orphans) to be included in results. If false, orphan target objects will be excluded even if they directly match the search query. Default is true (orphans are allowed).
|
|
8987
|
+
*/
|
|
8988
|
+
allowOrphans?: boolean;
|
|
8989
|
+
}
|
|
8990
|
+
|
|
8991
|
+
declare type AllowedRelationshipTypeSourceTypeEnum = "attribute" | "metric" | "fact" | "label" | "date" | "dataset" | "visualization" | "dashboard";
|
|
8992
|
+
|
|
8993
|
+
declare type AllowedRelationshipTypeTargetTypeEnum = "attribute" | "metric" | "fact" | "label" | "date" | "dataset" | "visualization" | "dashboard";
|
|
8994
|
+
|
|
8973
8995
|
declare namespace AnalyticalDashboardModelV1 {
|
|
8974
8996
|
export {
|
|
8975
8997
|
isAnalyticalDashboard,
|
|
@@ -12963,6 +12985,10 @@ export declare interface AutomationRawExportAutomationRequest {
|
|
|
12963
12985
|
fileName: string;
|
|
12964
12986
|
customOverride?: AutomationRawCustomOverride;
|
|
12965
12987
|
executionSettings?: AutomationExecutionSettings;
|
|
12988
|
+
/**
|
|
12989
|
+
* Set column delimiter. (CSV)
|
|
12990
|
+
*/
|
|
12991
|
+
delimiter?: string;
|
|
12966
12992
|
/**
|
|
12967
12993
|
* Metadata definition in free-form JSON format.
|
|
12968
12994
|
*/
|
|
@@ -14679,6 +14705,10 @@ export declare interface AutomationSettings {
|
|
|
14679
14705
|
* Set page orientation. (PDF)
|
|
14680
14706
|
*/
|
|
14681
14707
|
pageOrientation?: AutomationSettingsPageOrientationEnum;
|
|
14708
|
+
/**
|
|
14709
|
+
* Set column delimiter. (CSV)
|
|
14710
|
+
*/
|
|
14711
|
+
delimiter?: string;
|
|
14682
14712
|
}
|
|
14683
14713
|
|
|
14684
14714
|
declare type AutomationSettingsPageOrientationEnum = "PORTRAIT" | "LANDSCAPE";
|
|
@@ -15348,8 +15378,8 @@ export declare interface ClusteringResult {
|
|
|
15348
15378
|
xCoord?: Array<number | null>;
|
|
15349
15379
|
yCoord?: Array<number | null>;
|
|
15350
15380
|
clusters: Array<number | null>;
|
|
15351
|
-
ycoord: Array<number>;
|
|
15352
15381
|
xcoord: Array<number>;
|
|
15382
|
+
ycoord: Array<number>;
|
|
15353
15383
|
}
|
|
15354
15384
|
|
|
15355
15385
|
/**
|
|
@@ -20341,6 +20371,14 @@ export declare interface DeclarativeAggregatedFact {
|
|
|
20341
20371
|
*/
|
|
20342
20372
|
tags?: Array<string>;
|
|
20343
20373
|
sourceFactReference: DeclarativeSourceFactReference;
|
|
20374
|
+
/**
|
|
20375
|
+
* Flag indicating whether the associated source column allows null values.
|
|
20376
|
+
*/
|
|
20377
|
+
isNullable?: boolean;
|
|
20378
|
+
/**
|
|
20379
|
+
* Value used in coalesce during joins instead of null.
|
|
20380
|
+
*/
|
|
20381
|
+
nullValue?: string;
|
|
20344
20382
|
}
|
|
20345
20383
|
|
|
20346
20384
|
export declare type DeclarativeAggregatedFactSourceColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -20543,6 +20581,14 @@ export declare interface DeclarativeAttribute {
|
|
|
20543
20581
|
* Default locale for primary label.
|
|
20544
20582
|
*/
|
|
20545
20583
|
locale?: string;
|
|
20584
|
+
/**
|
|
20585
|
+
* Flag indicating whether the associated source column allows null values.
|
|
20586
|
+
*/
|
|
20587
|
+
isNullable?: boolean;
|
|
20588
|
+
/**
|
|
20589
|
+
* Value used in coalesce during joins instead of null.
|
|
20590
|
+
*/
|
|
20591
|
+
nullValue?: string;
|
|
20546
20592
|
}
|
|
20547
20593
|
|
|
20548
20594
|
export declare interface DeclarativeAttributeHierarchy {
|
|
@@ -20674,6 +20720,10 @@ export declare interface DeclarativeColumn {
|
|
|
20674
20720
|
* Column description/comment from database
|
|
20675
20721
|
*/
|
|
20676
20722
|
description?: string;
|
|
20723
|
+
/**
|
|
20724
|
+
* Column is nullable
|
|
20725
|
+
*/
|
|
20726
|
+
isNullable?: boolean;
|
|
20677
20727
|
}
|
|
20678
20728
|
|
|
20679
20729
|
export declare type DeclarativeColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -21069,6 +21119,14 @@ export declare interface DeclarativeFact {
|
|
|
21069
21119
|
* If true, this fact is hidden from AI search results.
|
|
21070
21120
|
*/
|
|
21071
21121
|
isHidden?: boolean;
|
|
21122
|
+
/**
|
|
21123
|
+
* Flag indicating whether the associated source column allows null values.
|
|
21124
|
+
*/
|
|
21125
|
+
isNullable?: boolean;
|
|
21126
|
+
/**
|
|
21127
|
+
* Value used in coalesce during joins instead of null.
|
|
21128
|
+
*/
|
|
21129
|
+
nullValue?: string;
|
|
21072
21130
|
}
|
|
21073
21131
|
|
|
21074
21132
|
export declare type DeclarativeFactSourceColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -21248,6 +21306,14 @@ export declare interface DeclarativeLabel {
|
|
|
21248
21306
|
* Other translations.
|
|
21249
21307
|
*/
|
|
21250
21308
|
translations?: Array<DeclarativeLabelTranslation>;
|
|
21309
|
+
/**
|
|
21310
|
+
* Flag indicating whether the associated source column allows null values.
|
|
21311
|
+
*/
|
|
21312
|
+
isNullable?: boolean;
|
|
21313
|
+
/**
|
|
21314
|
+
* Value used in coalesce during joins instead of null.
|
|
21315
|
+
*/
|
|
21316
|
+
nullValue?: string;
|
|
21251
21317
|
}
|
|
21252
21318
|
|
|
21253
21319
|
export declare type DeclarativeLabelSourceColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -21520,6 +21586,14 @@ export declare interface DeclarativeReferenceSource {
|
|
|
21520
21586
|
*/
|
|
21521
21587
|
dataType?: DeclarativeReferenceSourceDataTypeEnum;
|
|
21522
21588
|
target: GrainIdentifier;
|
|
21589
|
+
/**
|
|
21590
|
+
* Flag indicating whether the associated source column allows null values.
|
|
21591
|
+
*/
|
|
21592
|
+
isNullable?: boolean;
|
|
21593
|
+
/**
|
|
21594
|
+
* Value used in coalesce during joins instead of null.
|
|
21595
|
+
*/
|
|
21596
|
+
nullValue?: string;
|
|
21523
21597
|
}
|
|
21524
21598
|
|
|
21525
21599
|
export declare type DeclarativeReferenceSourceColumnDataTypesEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -21588,7 +21662,7 @@ export declare interface DeclarativeSetting {
|
|
|
21588
21662
|
type?: DeclarativeSettingTypeEnum;
|
|
21589
21663
|
}
|
|
21590
21664
|
|
|
21591
|
-
export declare type DeclarativeSettingTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE";
|
|
21665
|
+
export declare type DeclarativeSettingTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE" | "ENABLE_NULL_JOINS";
|
|
21592
21666
|
|
|
21593
21667
|
export declare interface DeclarativeSingleWorkspacePermission {
|
|
21594
21668
|
/**
|
|
@@ -42749,6 +42823,10 @@ export declare interface ExportRawExportRequest {
|
|
|
42749
42823
|
fileName: string;
|
|
42750
42824
|
customOverride?: ExportRawCustomOverride;
|
|
42751
42825
|
executionSettings?: ExportExecutionSettings;
|
|
42826
|
+
/**
|
|
42827
|
+
* Set column delimiter. (CSV)
|
|
42828
|
+
*/
|
|
42829
|
+
delimiter?: string;
|
|
42752
42830
|
}
|
|
42753
42831
|
|
|
42754
42832
|
export declare type ExportRawExportRequestFormatEnum = "ARROW_FILE" | "ARROW_STREAM" | "CSV";
|
|
@@ -42845,6 +42923,10 @@ export declare interface ExportSettings {
|
|
|
42845
42923
|
* Set page orientation. (PDF)
|
|
42846
42924
|
*/
|
|
42847
42925
|
pageOrientation?: ExportSettingsPageOrientationEnum;
|
|
42926
|
+
/**
|
|
42927
|
+
* Set column delimiter. (CSV)
|
|
42928
|
+
*/
|
|
42929
|
+
delimiter?: string;
|
|
42848
42930
|
}
|
|
42849
42931
|
|
|
42850
42932
|
export declare type ExportSettingsPageOrientationEnum = "PORTRAIT" | "LANDSCAPE";
|
|
@@ -46127,7 +46209,7 @@ declare interface GeoJsonGeometry {
|
|
|
46127
46209
|
coordinates: object;
|
|
46128
46210
|
}
|
|
46129
46211
|
|
|
46130
|
-
declare type GetQualityIssuesResponseStatusEnum = "RUNNING" | "COMPLETED" | "FAILED" | "NOT_FOUND" | "DISABLED";
|
|
46212
|
+
declare type GetQualityIssuesResponseStatusEnum = "RUNNING" | "SYNCING" | "COMPLETED" | "FAILED" | "NOT_FOUND" | "DISABLED";
|
|
46131
46213
|
|
|
46132
46214
|
/**
|
|
46133
46215
|
* A grain identifier.
|
|
@@ -47885,6 +47967,10 @@ declare interface IVisualizationObject_2 {
|
|
|
47885
47967
|
layers?: IInsightLayerDefinition[];
|
|
47886
47968
|
}
|
|
47887
47969
|
|
|
47970
|
+
/**
|
|
47971
|
+
* @deprecated - we use application/json instead of application/vnd.gooddata.api+json. Keeping the export for backwards compatibility.
|
|
47972
|
+
* @public
|
|
47973
|
+
*/
|
|
47888
47974
|
export declare const JSON_API_HEADER_VALUE = "application/vnd.gooddata.api+json";
|
|
47889
47975
|
|
|
47890
47976
|
/**
|
|
@@ -47921,6 +48007,8 @@ export declare interface JsonApiAggregatedFactOutAttributes {
|
|
|
47921
48007
|
sourceColumnDataType?: JsonApiAggregatedFactOutAttributesSourceColumnDataTypeEnum;
|
|
47922
48008
|
areRelationsValid?: boolean;
|
|
47923
48009
|
operation: JsonApiAggregatedFactOutAttributesOperationEnum;
|
|
48010
|
+
isNullable?: boolean;
|
|
48011
|
+
nullValue?: string;
|
|
47924
48012
|
}
|
|
47925
48013
|
|
|
47926
48014
|
export declare type JsonApiAggregatedFactOutAttributesOperationEnum = "SUM" | "MIN" | "MAX";
|
|
@@ -48289,7 +48377,18 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
48289
48377
|
* API identifier of an object
|
|
48290
48378
|
*/
|
|
48291
48379
|
id: string;
|
|
48292
|
-
attributes?:
|
|
48380
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
48381
|
+
}
|
|
48382
|
+
|
|
48383
|
+
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
48384
|
+
title?: string;
|
|
48385
|
+
description?: string;
|
|
48386
|
+
tags?: Array<string>;
|
|
48387
|
+
areRelationsValid?: boolean;
|
|
48388
|
+
/**
|
|
48389
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48390
|
+
*/
|
|
48391
|
+
content?: object;
|
|
48293
48392
|
}
|
|
48294
48393
|
|
|
48295
48394
|
export declare interface JsonApiAttributeHierarchyInDocument {
|
|
@@ -48402,18 +48501,7 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
48402
48501
|
* API identifier of an object
|
|
48403
48502
|
*/
|
|
48404
48503
|
id: string;
|
|
48405
|
-
attributes?:
|
|
48406
|
-
}
|
|
48407
|
-
|
|
48408
|
-
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
48409
|
-
title?: string;
|
|
48410
|
-
description?: string;
|
|
48411
|
-
tags?: Array<string>;
|
|
48412
|
-
areRelationsValid?: boolean;
|
|
48413
|
-
/**
|
|
48414
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48415
|
-
*/
|
|
48416
|
-
content?: object;
|
|
48504
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
48417
48505
|
}
|
|
48418
48506
|
|
|
48419
48507
|
export declare interface JsonApiAttributeHierarchyPatchDocument {
|
|
@@ -48461,6 +48549,8 @@ export declare interface JsonApiAttributeOutAttributes {
|
|
|
48461
48549
|
sourceColumnDataType?: JsonApiAttributeOutAttributesSourceColumnDataTypeEnum;
|
|
48462
48550
|
isHidden?: boolean;
|
|
48463
48551
|
locale?: string;
|
|
48552
|
+
isNullable?: boolean;
|
|
48553
|
+
nullValue?: string;
|
|
48464
48554
|
}
|
|
48465
48555
|
|
|
48466
48556
|
export declare type JsonApiAttributeOutAttributesGranularityEnum = "MINUTE" | "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR" | "MINUTE_OF_HOUR" | "HOUR_OF_DAY" | "DAY_OF_WEEK" | "DAY_OF_MONTH" | "DAY_OF_QUARTER" | "DAY_OF_YEAR" | "WEEK_OF_YEAR" | "MONTH_OF_YEAR" | "QUARTER_OF_YEAR" | "FISCAL_MONTH" | "FISCAL_QUARTER" | "FISCAL_YEAR";
|
|
@@ -48577,14 +48667,57 @@ export declare interface JsonApiAutomationIn {
|
|
|
48577
48667
|
* API identifier of an object
|
|
48578
48668
|
*/
|
|
48579
48669
|
id: string;
|
|
48580
|
-
attributes?:
|
|
48581
|
-
relationships?:
|
|
48670
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
48671
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
48672
|
+
}
|
|
48673
|
+
|
|
48674
|
+
export declare interface JsonApiAutomationInAttributes {
|
|
48675
|
+
title?: string;
|
|
48676
|
+
description?: string;
|
|
48677
|
+
tags?: Array<string>;
|
|
48678
|
+
areRelationsValid?: boolean;
|
|
48679
|
+
/**
|
|
48680
|
+
* Additional details to be included in the automated message.
|
|
48681
|
+
*/
|
|
48682
|
+
details?: object;
|
|
48683
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
48684
|
+
/**
|
|
48685
|
+
* Current state of the automation.
|
|
48686
|
+
*/
|
|
48687
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
48688
|
+
/**
|
|
48689
|
+
* Specify automation evaluation mode.
|
|
48690
|
+
*/
|
|
48691
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
48692
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
48693
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
48694
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
48695
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
48696
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
48697
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
48698
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
48699
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
48700
|
+
/**
|
|
48701
|
+
* External recipients of the automation action results.
|
|
48702
|
+
*/
|
|
48703
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
48582
48704
|
}
|
|
48583
48705
|
|
|
48706
|
+
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
|
|
48707
|
+
|
|
48708
|
+
export declare type JsonApiAutomationInAttributesStateEnum = "ACTIVE" | "PAUSED";
|
|
48709
|
+
|
|
48584
48710
|
export declare interface JsonApiAutomationInDocument {
|
|
48585
48711
|
data: JsonApiAutomationIn;
|
|
48586
48712
|
}
|
|
48587
48713
|
|
|
48714
|
+
export declare interface JsonApiAutomationInRelationships {
|
|
48715
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
48716
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
48717
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
48718
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
48719
|
+
}
|
|
48720
|
+
|
|
48588
48721
|
export declare type JsonApiAutomationInTypeEnum = "automation";
|
|
48589
48722
|
|
|
48590
48723
|
/**
|
|
@@ -48815,57 +48948,14 @@ export declare interface JsonApiAutomationPatch {
|
|
|
48815
48948
|
* API identifier of an object
|
|
48816
48949
|
*/
|
|
48817
48950
|
id: string;
|
|
48818
|
-
attributes?:
|
|
48819
|
-
relationships?:
|
|
48951
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
48952
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
48820
48953
|
}
|
|
48821
48954
|
|
|
48822
|
-
export declare interface JsonApiAutomationPatchAttributes {
|
|
48823
|
-
title?: string;
|
|
48824
|
-
description?: string;
|
|
48825
|
-
tags?: Array<string>;
|
|
48826
|
-
areRelationsValid?: boolean;
|
|
48827
|
-
/**
|
|
48828
|
-
* Additional details to be included in the automated message.
|
|
48829
|
-
*/
|
|
48830
|
-
details?: object;
|
|
48831
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
48832
|
-
/**
|
|
48833
|
-
* Current state of the automation.
|
|
48834
|
-
*/
|
|
48835
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
48836
|
-
/**
|
|
48837
|
-
* Specify automation evaluation mode.
|
|
48838
|
-
*/
|
|
48839
|
-
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
48840
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
48841
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
48842
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
48843
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
48844
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
48845
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
48846
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
48847
|
-
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
48848
|
-
/**
|
|
48849
|
-
* External recipients of the automation action results.
|
|
48850
|
-
*/
|
|
48851
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
48852
|
-
}
|
|
48853
|
-
|
|
48854
|
-
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
|
|
48855
|
-
|
|
48856
|
-
export declare type JsonApiAutomationPatchAttributesStateEnum = "ACTIVE" | "PAUSED";
|
|
48857
|
-
|
|
48858
48955
|
export declare interface JsonApiAutomationPatchDocument {
|
|
48859
48956
|
data: JsonApiAutomationPatch;
|
|
48860
48957
|
}
|
|
48861
48958
|
|
|
48862
|
-
export declare interface JsonApiAutomationPatchRelationships {
|
|
48863
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
48864
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
48865
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
48866
|
-
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
48867
|
-
}
|
|
48868
|
-
|
|
48869
48959
|
export declare type JsonApiAutomationPatchTypeEnum = "automation";
|
|
48870
48960
|
|
|
48871
48961
|
/**
|
|
@@ -49060,15 +49150,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
49060
49150
|
* API identifier of an object
|
|
49061
49151
|
*/
|
|
49062
49152
|
id: string;
|
|
49063
|
-
attributes?:
|
|
49064
|
-
}
|
|
49065
|
-
|
|
49066
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
49067
|
-
lastRotation?: string;
|
|
49068
|
-
/**
|
|
49069
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
49070
|
-
*/
|
|
49071
|
-
rotationInterval?: string;
|
|
49153
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
49072
49154
|
}
|
|
49073
49155
|
|
|
49074
49156
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -49089,7 +49171,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
49089
49171
|
* API identifier of an object
|
|
49090
49172
|
*/
|
|
49091
49173
|
id: string;
|
|
49092
|
-
attributes?:
|
|
49174
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
49175
|
+
}
|
|
49176
|
+
|
|
49177
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
49178
|
+
lastRotation?: string;
|
|
49179
|
+
/**
|
|
49180
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
49181
|
+
*/
|
|
49182
|
+
rotationInterval?: string;
|
|
49093
49183
|
}
|
|
49094
49184
|
|
|
49095
49185
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -49111,7 +49201,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
49111
49201
|
* API identifier of an object
|
|
49112
49202
|
*/
|
|
49113
49203
|
id: string;
|
|
49114
|
-
attributes?:
|
|
49204
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
49115
49205
|
}
|
|
49116
49206
|
|
|
49117
49207
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -49439,7 +49529,18 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
49439
49529
|
* API identifier of an object
|
|
49440
49530
|
*/
|
|
49441
49531
|
id: string;
|
|
49442
|
-
attributes?:
|
|
49532
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
49533
|
+
}
|
|
49534
|
+
|
|
49535
|
+
export declare interface JsonApiDashboardPluginInAttributes {
|
|
49536
|
+
title?: string;
|
|
49537
|
+
description?: string;
|
|
49538
|
+
tags?: Array<string>;
|
|
49539
|
+
areRelationsValid?: boolean;
|
|
49540
|
+
/**
|
|
49541
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
49542
|
+
*/
|
|
49543
|
+
content?: object;
|
|
49443
49544
|
}
|
|
49444
49545
|
|
|
49445
49546
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -49546,18 +49647,7 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
49546
49647
|
* API identifier of an object
|
|
49547
49648
|
*/
|
|
49548
49649
|
id: string;
|
|
49549
|
-
attributes?:
|
|
49550
|
-
}
|
|
49551
|
-
|
|
49552
|
-
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
49553
|
-
title?: string;
|
|
49554
|
-
description?: string;
|
|
49555
|
-
tags?: Array<string>;
|
|
49556
|
-
areRelationsValid?: boolean;
|
|
49557
|
-
/**
|
|
49558
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
49559
|
-
*/
|
|
49560
|
-
content?: object;
|
|
49650
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
49561
49651
|
}
|
|
49562
49652
|
|
|
49563
49653
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -49578,7 +49668,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
49578
49668
|
* API identifier of an object
|
|
49579
49669
|
*/
|
|
49580
49670
|
id?: string;
|
|
49581
|
-
attributes?:
|
|
49671
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
49582
49672
|
}
|
|
49583
49673
|
|
|
49584
49674
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -50204,14 +50294,27 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
50204
50294
|
* API identifier of an object
|
|
50205
50295
|
*/
|
|
50206
50296
|
id: string;
|
|
50207
|
-
attributes?:
|
|
50208
|
-
relationships?:
|
|
50297
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
50298
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
50299
|
+
}
|
|
50300
|
+
|
|
50301
|
+
export declare interface JsonApiExportDefinitionInAttributes {
|
|
50302
|
+
title?: string;
|
|
50303
|
+
description?: string;
|
|
50304
|
+
tags?: Array<string>;
|
|
50305
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
50306
|
+
areRelationsValid?: boolean;
|
|
50209
50307
|
}
|
|
50210
50308
|
|
|
50211
50309
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
50212
50310
|
data: JsonApiExportDefinitionIn;
|
|
50213
50311
|
}
|
|
50214
50312
|
|
|
50313
|
+
export declare interface JsonApiExportDefinitionInRelationships {
|
|
50314
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
50315
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
50316
|
+
}
|
|
50317
|
+
|
|
50215
50318
|
export declare type JsonApiExportDefinitionInTypeEnum = "exportDefinition";
|
|
50216
50319
|
|
|
50217
50320
|
/**
|
|
@@ -50335,27 +50438,14 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
50335
50438
|
* API identifier of an object
|
|
50336
50439
|
*/
|
|
50337
50440
|
id: string;
|
|
50338
|
-
attributes?:
|
|
50339
|
-
relationships?:
|
|
50340
|
-
}
|
|
50341
|
-
|
|
50342
|
-
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
50343
|
-
title?: string;
|
|
50344
|
-
description?: string;
|
|
50345
|
-
tags?: Array<string>;
|
|
50346
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
50347
|
-
areRelationsValid?: boolean;
|
|
50441
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
50442
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
50348
50443
|
}
|
|
50349
50444
|
|
|
50350
50445
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
50351
50446
|
data: JsonApiExportDefinitionPatch;
|
|
50352
50447
|
}
|
|
50353
50448
|
|
|
50354
|
-
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
50355
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
50356
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
50357
|
-
}
|
|
50358
|
-
|
|
50359
50449
|
export declare type JsonApiExportDefinitionPatchTypeEnum = "exportDefinition";
|
|
50360
50450
|
|
|
50361
50451
|
/**
|
|
@@ -50370,8 +50460,8 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
50370
50460
|
* API identifier of an object
|
|
50371
50461
|
*/
|
|
50372
50462
|
id?: string;
|
|
50373
|
-
attributes?:
|
|
50374
|
-
relationships?:
|
|
50463
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
50464
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
50375
50465
|
}
|
|
50376
50466
|
|
|
50377
50467
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
@@ -50392,9 +50482,47 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
50392
50482
|
* API identifier of an object
|
|
50393
50483
|
*/
|
|
50394
50484
|
id: string;
|
|
50395
|
-
attributes:
|
|
50485
|
+
attributes: JsonApiExportTemplateInAttributes;
|
|
50396
50486
|
}
|
|
50397
50487
|
|
|
50488
|
+
export declare interface JsonApiExportTemplateInAttributes {
|
|
50489
|
+
/**
|
|
50490
|
+
* User-facing name of the Slides template.
|
|
50491
|
+
*/
|
|
50492
|
+
name: string;
|
|
50493
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
|
|
50494
|
+
widgetSlidesTemplate?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
|
|
50495
|
+
}
|
|
50496
|
+
|
|
50497
|
+
/**
|
|
50498
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
50499
|
+
*/
|
|
50500
|
+
export declare interface JsonApiExportTemplateInAttributesDashboardSlidesTemplate {
|
|
50501
|
+
/**
|
|
50502
|
+
* Export types this template applies to.
|
|
50503
|
+
*/
|
|
50504
|
+
appliedOn: Array<JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
50505
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
50506
|
+
introSlide?: IntroSlideTemplate | null;
|
|
50507
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
50508
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
50509
|
+
}
|
|
50510
|
+
|
|
50511
|
+
export declare type JsonApiExportTemplateInAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
50512
|
+
|
|
50513
|
+
/**
|
|
50514
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
50515
|
+
*/
|
|
50516
|
+
export declare interface JsonApiExportTemplateInAttributesWidgetSlidesTemplate {
|
|
50517
|
+
/**
|
|
50518
|
+
* Export types this template applies to.
|
|
50519
|
+
*/
|
|
50520
|
+
appliedOn: Array<JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
50521
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
50522
|
+
}
|
|
50523
|
+
|
|
50524
|
+
export declare type JsonApiExportTemplateInAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
50525
|
+
|
|
50398
50526
|
export declare interface JsonApiExportTemplateInDocument {
|
|
50399
50527
|
data: JsonApiExportTemplateIn;
|
|
50400
50528
|
}
|
|
@@ -50413,7 +50541,7 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
50413
50541
|
* API identifier of an object
|
|
50414
50542
|
*/
|
|
50415
50543
|
id: string;
|
|
50416
|
-
attributes:
|
|
50544
|
+
attributes: JsonApiExportTemplateInAttributes;
|
|
50417
50545
|
}
|
|
50418
50546
|
|
|
50419
50547
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
@@ -50441,7 +50569,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
50441
50569
|
* API identifier of an object
|
|
50442
50570
|
*/
|
|
50443
50571
|
id: string;
|
|
50444
|
-
attributes:
|
|
50572
|
+
attributes: JsonApiExportTemplateInAttributes;
|
|
50445
50573
|
links?: ObjectLinks;
|
|
50446
50574
|
}
|
|
50447
50575
|
|
|
@@ -50467,8 +50595,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
50467
50595
|
* User-facing name of the Slides template.
|
|
50468
50596
|
*/
|
|
50469
50597
|
name?: string;
|
|
50470
|
-
dashboardSlidesTemplate?:
|
|
50471
|
-
widgetSlidesTemplate?:
|
|
50598
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateInAttributesDashboardSlidesTemplate | null;
|
|
50599
|
+
widgetSlidesTemplate?: JsonApiExportTemplateInAttributesWidgetSlidesTemplate | null;
|
|
50472
50600
|
}
|
|
50473
50601
|
|
|
50474
50602
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -50489,47 +50617,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
50489
50617
|
* API identifier of an object
|
|
50490
50618
|
*/
|
|
50491
50619
|
id?: string;
|
|
50492
|
-
attributes:
|
|
50493
|
-
}
|
|
50494
|
-
|
|
50495
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
50496
|
-
/**
|
|
50497
|
-
* User-facing name of the Slides template.
|
|
50498
|
-
*/
|
|
50499
|
-
name: string;
|
|
50500
|
-
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
50501
|
-
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
50502
|
-
}
|
|
50503
|
-
|
|
50504
|
-
/**
|
|
50505
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
50506
|
-
*/
|
|
50507
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
50508
|
-
/**
|
|
50509
|
-
* Export types this template applies to.
|
|
50510
|
-
*/
|
|
50511
|
-
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
50512
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
50513
|
-
introSlide?: IntroSlideTemplate | null;
|
|
50514
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
50515
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
50516
|
-
}
|
|
50517
|
-
|
|
50518
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
50519
|
-
|
|
50520
|
-
/**
|
|
50521
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
50522
|
-
*/
|
|
50523
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
50524
|
-
/**
|
|
50525
|
-
* Export types this template applies to.
|
|
50526
|
-
*/
|
|
50527
|
-
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
50528
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
50620
|
+
attributes: JsonApiExportTemplateInAttributes;
|
|
50529
50621
|
}
|
|
50530
50622
|
|
|
50531
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
50532
|
-
|
|
50533
50623
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
50534
50624
|
data: JsonApiExportTemplatePostOptionalId;
|
|
50535
50625
|
}
|
|
@@ -50571,6 +50661,8 @@ export declare interface JsonApiFactOutAttributes {
|
|
|
50571
50661
|
sourceColumnDataType?: JsonApiFactOutAttributesSourceColumnDataTypeEnum;
|
|
50572
50662
|
areRelationsValid?: boolean;
|
|
50573
50663
|
isHidden?: boolean;
|
|
50664
|
+
isNullable?: boolean;
|
|
50665
|
+
nullValue?: string;
|
|
50574
50666
|
}
|
|
50575
50667
|
|
|
50576
50668
|
export declare type JsonApiFactOutAttributesSourceColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -50938,6 +51030,10 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
50938
51030
|
|
|
50939
51031
|
export declare type JsonApiFilterViewPatchTypeEnum = "filterView";
|
|
50940
51032
|
|
|
51033
|
+
/**
|
|
51034
|
+
* @deprecated - we use application/json instead of application/vnd.gooddata.api+json. Keeping the export for backwards compatibility.
|
|
51035
|
+
* @public
|
|
51036
|
+
*/
|
|
50941
51037
|
export declare const jsonApiHeaders: {
|
|
50942
51038
|
Accept: string;
|
|
50943
51039
|
"Content-Type": string;
|
|
@@ -51622,6 +51718,8 @@ export declare interface JsonApiLabelOutAttributes {
|
|
|
51622
51718
|
areRelationsValid?: boolean;
|
|
51623
51719
|
locale?: string;
|
|
51624
51720
|
translations?: Array<JsonApiLabelOutAttributesTranslationsInner>;
|
|
51721
|
+
isNullable?: boolean;
|
|
51722
|
+
nullValue?: string;
|
|
51625
51723
|
}
|
|
51626
51724
|
|
|
51627
51725
|
/**
|
|
@@ -52330,9 +52428,41 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
52330
52428
|
* API identifier of an object
|
|
52331
52429
|
*/
|
|
52332
52430
|
id: string;
|
|
52333
|
-
attributes?:
|
|
52431
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
52432
|
+
}
|
|
52433
|
+
|
|
52434
|
+
export declare interface JsonApiNotificationChannelInAttributes {
|
|
52435
|
+
name?: string | null;
|
|
52436
|
+
description?: string | null;
|
|
52437
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
52438
|
+
/**
|
|
52439
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
52440
|
+
*/
|
|
52441
|
+
customDashboardUrl?: string;
|
|
52442
|
+
/**
|
|
52443
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
52444
|
+
*/
|
|
52445
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
52446
|
+
/**
|
|
52447
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
52448
|
+
*/
|
|
52449
|
+
notificationSource?: string;
|
|
52450
|
+
/**
|
|
52451
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
52452
|
+
*/
|
|
52453
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
52454
|
+
/**
|
|
52455
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
52456
|
+
*/
|
|
52457
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
52334
52458
|
}
|
|
52335
52459
|
|
|
52460
|
+
export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
|
|
52461
|
+
|
|
52462
|
+
export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
|
|
52463
|
+
|
|
52464
|
+
export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
|
|
52465
|
+
|
|
52336
52466
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
52337
52467
|
data: JsonApiNotificationChannelIn;
|
|
52338
52468
|
}
|
|
@@ -52367,7 +52497,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
52367
52497
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
52368
52498
|
name?: string | null;
|
|
52369
52499
|
description?: string | null;
|
|
52370
|
-
destination?:
|
|
52500
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
52371
52501
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
52372
52502
|
/**
|
|
52373
52503
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
@@ -52395,6 +52525,12 @@ export declare type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum
|
|
|
52395
52525
|
|
|
52396
52526
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
|
|
52397
52527
|
|
|
52528
|
+
/**
|
|
52529
|
+
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
52530
|
+
* The destination where the notifications are to be sent.
|
|
52531
|
+
*/
|
|
52532
|
+
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
52533
|
+
|
|
52398
52534
|
export declare type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = "WEBHOOK" | "SMTP" | "DEFAULT_SMTP" | "IN_PLATFORM";
|
|
52399
52535
|
|
|
52400
52536
|
export declare type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
|
|
@@ -52442,7 +52578,7 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
52442
52578
|
* API identifier of an object
|
|
52443
52579
|
*/
|
|
52444
52580
|
id: string;
|
|
52445
|
-
attributes?:
|
|
52581
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
52446
52582
|
}
|
|
52447
52583
|
|
|
52448
52584
|
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
@@ -52463,47 +52599,9 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
52463
52599
|
* API identifier of an object
|
|
52464
52600
|
*/
|
|
52465
52601
|
id?: string;
|
|
52466
|
-
attributes?:
|
|
52602
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
52467
52603
|
}
|
|
52468
52604
|
|
|
52469
|
-
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
52470
|
-
name?: string | null;
|
|
52471
|
-
description?: string | null;
|
|
52472
|
-
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
52473
|
-
/**
|
|
52474
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
52475
|
-
*/
|
|
52476
|
-
customDashboardUrl?: string;
|
|
52477
|
-
/**
|
|
52478
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
52479
|
-
*/
|
|
52480
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
52481
|
-
/**
|
|
52482
|
-
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
52483
|
-
*/
|
|
52484
|
-
notificationSource?: string;
|
|
52485
|
-
/**
|
|
52486
|
-
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
52487
|
-
*/
|
|
52488
|
-
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
52489
|
-
/**
|
|
52490
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
52491
|
-
*/
|
|
52492
|
-
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
52493
|
-
}
|
|
52494
|
-
|
|
52495
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
|
|
52496
|
-
|
|
52497
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
|
|
52498
|
-
|
|
52499
|
-
/**
|
|
52500
|
-
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
52501
|
-
* The destination where the notifications are to be sent.
|
|
52502
|
-
*/
|
|
52503
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
52504
|
-
|
|
52505
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
|
|
52506
|
-
|
|
52507
52605
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
52508
52606
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
52509
52607
|
}
|
|
@@ -52546,11 +52644,7 @@ export declare interface JsonApiOrganizationInDocument {
|
|
|
52546
52644
|
}
|
|
52547
52645
|
|
|
52548
52646
|
export declare interface JsonApiOrganizationInRelationships {
|
|
52549
|
-
identityProvider?:
|
|
52550
|
-
}
|
|
52551
|
-
|
|
52552
|
-
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
52553
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
52647
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
52554
52648
|
}
|
|
52555
52649
|
|
|
52556
52650
|
export declare type JsonApiOrganizationInTypeEnum = "organization";
|
|
@@ -52621,7 +52715,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = "MANAGE" | "SELF
|
|
|
52621
52715
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
52622
52716
|
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
52623
52717
|
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
52624
|
-
identityProvider?:
|
|
52718
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
52625
52719
|
}
|
|
52626
52720
|
|
|
52627
52721
|
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
@@ -52632,6 +52726,10 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
52632
52726
|
data: JsonApiUserGroupLinkage | null;
|
|
52633
52727
|
}
|
|
52634
52728
|
|
|
52729
|
+
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
52730
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
52731
|
+
}
|
|
52732
|
+
|
|
52635
52733
|
export declare type JsonApiOrganizationOutTypeEnum = "organization";
|
|
52636
52734
|
|
|
52637
52735
|
/**
|
|
@@ -52668,19 +52766,9 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
52668
52766
|
* API identifier of an object
|
|
52669
52767
|
*/
|
|
52670
52768
|
id: string;
|
|
52671
|
-
attributes?:
|
|
52769
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
52672
52770
|
}
|
|
52673
52771
|
|
|
52674
|
-
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
52675
|
-
/**
|
|
52676
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
52677
|
-
*/
|
|
52678
|
-
content?: object;
|
|
52679
|
-
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
52680
|
-
}
|
|
52681
|
-
|
|
52682
|
-
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE";
|
|
52683
|
-
|
|
52684
52772
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
52685
52773
|
data: JsonApiOrganizationSettingIn;
|
|
52686
52774
|
}
|
|
@@ -52699,7 +52787,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
52699
52787
|
* API identifier of an object
|
|
52700
52788
|
*/
|
|
52701
52789
|
id: string;
|
|
52702
|
-
attributes?:
|
|
52790
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
52703
52791
|
}
|
|
52704
52792
|
|
|
52705
52793
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -52727,7 +52815,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
52727
52815
|
* API identifier of an object
|
|
52728
52816
|
*/
|
|
52729
52817
|
id: string;
|
|
52730
|
-
attributes?:
|
|
52818
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
52731
52819
|
links?: ObjectLinks;
|
|
52732
52820
|
}
|
|
52733
52821
|
|
|
@@ -52745,7 +52833,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
52745
52833
|
* API identifier of an object
|
|
52746
52834
|
*/
|
|
52747
52835
|
id: string;
|
|
52748
|
-
attributes?:
|
|
52836
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
52749
52837
|
}
|
|
52750
52838
|
|
|
52751
52839
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -52855,13 +52943,18 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
52855
52943
|
*/
|
|
52856
52944
|
id: string;
|
|
52857
52945
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
52858
|
-
relationships?:
|
|
52946
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
52859
52947
|
}
|
|
52860
52948
|
|
|
52861
52949
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
52862
52950
|
data: JsonApiUserDataFilterIn;
|
|
52863
52951
|
}
|
|
52864
52952
|
|
|
52953
|
+
export declare interface JsonApiUserDataFilterInRelationships {
|
|
52954
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
52955
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
52956
|
+
}
|
|
52957
|
+
|
|
52865
52958
|
export declare type JsonApiUserDataFilterInTypeEnum = "userDataFilter";
|
|
52866
52959
|
|
|
52867
52960
|
/**
|
|
@@ -52958,7 +53051,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
52958
53051
|
*/
|
|
52959
53052
|
id: string;
|
|
52960
53053
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
52961
|
-
relationships?:
|
|
53054
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
52962
53055
|
}
|
|
52963
53056
|
|
|
52964
53057
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -52973,11 +53066,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
52973
53066
|
data: JsonApiUserDataFilterPatch;
|
|
52974
53067
|
}
|
|
52975
53068
|
|
|
52976
|
-
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
52977
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
52978
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
52979
|
-
}
|
|
52980
|
-
|
|
52981
53069
|
export declare type JsonApiUserDataFilterPatchTypeEnum = "userDataFilter";
|
|
52982
53070
|
|
|
52983
53071
|
/**
|
|
@@ -52993,7 +53081,7 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
52993
53081
|
*/
|
|
52994
53082
|
id?: string;
|
|
52995
53083
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
52996
|
-
relationships?:
|
|
53084
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
52997
53085
|
}
|
|
52998
53086
|
|
|
52999
53087
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
@@ -53322,7 +53410,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
53322
53410
|
* API identifier of an object
|
|
53323
53411
|
*/
|
|
53324
53412
|
id: string;
|
|
53325
|
-
attributes?:
|
|
53413
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
53326
53414
|
}
|
|
53327
53415
|
|
|
53328
53416
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -53343,7 +53431,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
53343
53431
|
* API identifier of an object
|
|
53344
53432
|
*/
|
|
53345
53433
|
id: string;
|
|
53346
|
-
attributes?:
|
|
53434
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
53347
53435
|
}
|
|
53348
53436
|
|
|
53349
53437
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -53371,7 +53459,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
53371
53459
|
* API identifier of an object
|
|
53372
53460
|
*/
|
|
53373
53461
|
id: string;
|
|
53374
|
-
attributes?:
|
|
53462
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
53375
53463
|
links?: ObjectLinks;
|
|
53376
53464
|
}
|
|
53377
53465
|
|
|
@@ -54099,7 +54187,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
54099
54187
|
* API identifier of an object
|
|
54100
54188
|
*/
|
|
54101
54189
|
id: string;
|
|
54102
|
-
attributes?:
|
|
54190
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
54103
54191
|
}
|
|
54104
54192
|
|
|
54105
54193
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -54121,9 +54209,19 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
54121
54209
|
*/
|
|
54122
54210
|
id: string;
|
|
54123
54211
|
meta?: JsonApiDatasetOutMeta;
|
|
54124
|
-
attributes?:
|
|
54212
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
54213
|
+
}
|
|
54214
|
+
|
|
54215
|
+
export declare interface JsonApiWorkspaceSettingOutAttributes {
|
|
54216
|
+
/**
|
|
54217
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
54218
|
+
*/
|
|
54219
|
+
content?: object;
|
|
54220
|
+
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
54125
54221
|
}
|
|
54126
54222
|
|
|
54223
|
+
export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE" | "ENABLE_NULL_JOINS";
|
|
54224
|
+
|
|
54127
54225
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
54128
54226
|
data: JsonApiWorkspaceSettingOut;
|
|
54129
54227
|
links?: ObjectLinks;
|
|
@@ -54150,7 +54248,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
54150
54248
|
*/
|
|
54151
54249
|
id: string;
|
|
54152
54250
|
meta?: JsonApiDatasetOutMeta;
|
|
54153
|
-
attributes?:
|
|
54251
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
54154
54252
|
links?: ObjectLinks;
|
|
54155
54253
|
}
|
|
54156
54254
|
|
|
@@ -54168,7 +54266,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
54168
54266
|
* API identifier of an object
|
|
54169
54267
|
*/
|
|
54170
54268
|
id: string;
|
|
54171
|
-
attributes?:
|
|
54269
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
54172
54270
|
}
|
|
54173
54271
|
|
|
54174
54272
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -54189,7 +54287,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
54189
54287
|
* API identifier of an object
|
|
54190
54288
|
*/
|
|
54191
54289
|
id?: string;
|
|
54192
|
-
attributes?:
|
|
54290
|
+
attributes?: JsonApiWorkspaceSettingOutAttributes;
|
|
54193
54291
|
}
|
|
54194
54292
|
|
|
54195
54293
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -70279,6 +70377,8 @@ export declare interface ReferenceSourceColumn {
|
|
|
70279
70377
|
column: string;
|
|
70280
70378
|
dataType?: ReferenceSourceColumnDataTypeEnum;
|
|
70281
70379
|
target: DatasetGrain;
|
|
70380
|
+
isNullable?: boolean;
|
|
70381
|
+
nullValue?: string;
|
|
70282
70382
|
}
|
|
70283
70383
|
|
|
70284
70384
|
export declare type ReferenceSourceColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -70475,7 +70575,7 @@ export declare interface ResolvedSetting {
|
|
|
70475
70575
|
type?: ResolvedSettingTypeEnum;
|
|
70476
70576
|
}
|
|
70477
70577
|
|
|
70478
|
-
export declare type ResolvedSettingTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE";
|
|
70578
|
+
export declare type ResolvedSettingTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "ACTIVE_CALENDARS" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA" | "API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE" | "ENABLE_NULL_JOINS";
|
|
70479
70579
|
|
|
70480
70580
|
/**
|
|
70481
70581
|
* A request containing setting IDs to resolve.
|
|
@@ -70868,6 +70968,10 @@ export declare interface ScanModelDeclarativeColumn {
|
|
|
70868
70968
|
* Column description/comment from database
|
|
70869
70969
|
*/
|
|
70870
70970
|
description?: string;
|
|
70971
|
+
/**
|
|
70972
|
+
* Column is nullable
|
|
70973
|
+
*/
|
|
70974
|
+
isNullable?: boolean;
|
|
70871
70975
|
}
|
|
70872
70976
|
|
|
70873
70977
|
export declare type ScanModelDeclarativeColumnDataTypeEnum = "INT" | "STRING" | "DATE" | "NUMERIC" | "TIMESTAMP" | "TIMESTAMP_TZ" | "BOOLEAN";
|
|
@@ -71024,7 +71128,7 @@ export declare interface SearchRequest {
|
|
|
71024
71128
|
*/
|
|
71025
71129
|
deepSearch?: boolean;
|
|
71026
71130
|
/**
|
|
71027
|
-
* Maximum number of results to return. There is a hard limit and the actual number of returned results may be lower than what is requested.
|
|
71131
|
+
* Maximum number of results to return. There is a hard limit and the actual number of returned results may be lower than what is requested. This can happen when post-search filters are applied (e.g., reranker threshold filtering or allowedRelationshipTypes filtering), which may exclude some results after the initial search.
|
|
71028
71132
|
*/
|
|
71029
71133
|
limit?: number;
|
|
71030
71134
|
/**
|
|
@@ -71039,6 +71143,18 @@ export declare interface SearchRequest {
|
|
|
71039
71143
|
* If true, includes hidden objects in search results. If false (default), excludes objects where isHidden=true.
|
|
71040
71144
|
*/
|
|
71041
71145
|
includeHidden?: boolean;
|
|
71146
|
+
/**
|
|
71147
|
+
* Include only objects that contain at least one of the specified tags (OR logic). This parameter only affects the search results. If an object has multiple tags, it will be included as long as it matches at least one tag from this parameter.
|
|
71148
|
+
*/
|
|
71149
|
+
includeTags?: Array<string>;
|
|
71150
|
+
/**
|
|
71151
|
+
* Exclude objects that contain any of the specified tags. This parameter only affects the search results. Objects with excluded tags are completely hidden from the results.
|
|
71152
|
+
*/
|
|
71153
|
+
excludeTags?: Array<string>;
|
|
71154
|
+
/**
|
|
71155
|
+
* Filter relationships and results based on allowed relationship type combinations. When specified, only relationships matching the allowed types are returned, and results are filtered to include only direct matches or objects reachable via allowed relationships. When null or omitted, all relationships and results are returned (default behavior). Note: This filtering happens after the initial search, so the number of returned results may be lower than the requested limit if some results are filtered out.
|
|
71156
|
+
*/
|
|
71157
|
+
allowedRelationshipTypes?: Array<AllowedRelationshipType>;
|
|
71042
71158
|
}
|
|
71043
71159
|
|
|
71044
71160
|
export declare type SearchRequestObjectTypesEnum = "attribute" | "metric" | "fact" | "label" | "date" | "dataset" | "visualization" | "dashboard";
|
|
@@ -71939,7 +72055,7 @@ export declare interface TestDefinitionRequest {
|
|
|
71939
72055
|
parameters?: Array<DataSourceParameter>;
|
|
71940
72056
|
}
|
|
71941
72057
|
|
|
71942
|
-
export declare type TestDefinitionRequestTypeEnum = "POSTGRESQL" | "REDSHIFT" | "VERTICA" | "SNOWFLAKE" | "ADS" | "BIGQUERY" | "MSSQL" | "PRESTO" | "DREMIO" | "DRILL" | "GREENPLUM" | "AZURESQL" | "SYNAPSESQL" | "DATABRICKS" | "GDSTORAGE" | "CLICKHOUSE" | "MYSQL" | "MARIADB" | "ORACLE" | "PINOT" | "SINGLESTORE" | "MOTHERDUCK" | "FLEXCONNECT" | "STARROCKS" | "ATHENA" | "MONGODB";
|
|
72058
|
+
export declare type TestDefinitionRequestTypeEnum = "POSTGRESQL" | "REDSHIFT" | "VERTICA" | "SNOWFLAKE" | "ADS" | "BIGQUERY" | "MSSQL" | "PRESTO" | "DREMIO" | "DRILL" | "GREENPLUM" | "AZURESQL" | "SYNAPSESQL" | "DATABRICKS" | "GDSTORAGE" | "CLICKHOUSE" | "MYSQL" | "MARIADB" | "ORACLE" | "PINOT" | "SINGLESTORE" | "MOTHERDUCK" | "FLEXCONNECT" | "STARROCKS" | "ATHENA" | "MONGODB" | "CRATEDB";
|
|
71943
72059
|
|
|
71944
72060
|
/**
|
|
71945
72061
|
* A structure containing duration of the test queries run on a data source. It is omitted if an error happens.
|