@gooddata/api-client-tiger 11.8.0-alpha.3 → 11.8.0-alpha.4
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 +591 -590
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +1 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +502 -502
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +65 -65
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9721 -9721
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -1014,7 +1014,7 @@ declare interface ActionsApiChangeAnalysisRequest {
|
|
|
1014
1014
|
* @type {ChangeAnalysisRequest}
|
|
1015
1015
|
* @memberof ActionsApiChangeAnalysis
|
|
1016
1016
|
*/
|
|
1017
|
-
readonly changeAnalysisRequest:
|
|
1017
|
+
readonly changeAnalysisRequest: AfmChangeAnalysisRequest;
|
|
1018
1018
|
}
|
|
1019
1019
|
|
|
1020
1020
|
/**
|
|
@@ -5345,7 +5345,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5345
5345
|
* @param {*} [options] Override http request option.
|
|
5346
5346
|
* @throws {RequiredError}
|
|
5347
5347
|
*/
|
|
5348
|
-
changeAnalysis: (workspaceId: string, changeAnalysisRequest:
|
|
5348
|
+
changeAnalysis: (workspaceId: string, changeAnalysisRequest: AfmChangeAnalysisRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* Gets change analysis result.
|
|
5351
5351
|
* @summary Get change analysis result
|
|
@@ -5920,7 +5920,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5920
5920
|
* @param {*} [options] Override http request option.
|
|
5921
5921
|
* @throws {RequiredError}
|
|
5922
5922
|
*/
|
|
5923
|
-
changeAnalysis(workspaceId: string, changeAnalysisRequest:
|
|
5923
|
+
changeAnalysis(workspaceId: string, changeAnalysisRequest: AfmChangeAnalysisRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangeAnalysisResponse>>;
|
|
5924
5924
|
/**
|
|
5925
5925
|
* Gets change analysis result.
|
|
5926
5926
|
* @summary Get change analysis result
|
|
@@ -6628,6 +6628,38 @@ export declare interface AfmCancelTokens {
|
|
|
6628
6628
|
};
|
|
6629
6629
|
}
|
|
6630
6630
|
|
|
6631
|
+
/**
|
|
6632
|
+
* Request for change analysis computation
|
|
6633
|
+
*/
|
|
6634
|
+
export declare interface AfmChangeAnalysisRequest {
|
|
6635
|
+
measure: AfmMeasureItem;
|
|
6636
|
+
dateAttribute: AfmAttributeItem;
|
|
6637
|
+
/**
|
|
6638
|
+
* The reference time period (e.g., \'2025-01\')
|
|
6639
|
+
*/
|
|
6640
|
+
referencePeriod: string;
|
|
6641
|
+
/**
|
|
6642
|
+
* The analyzed time period (e.g., \'2025-02\')
|
|
6643
|
+
*/
|
|
6644
|
+
analyzedPeriod: string;
|
|
6645
|
+
/**
|
|
6646
|
+
* Attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
|
|
6647
|
+
*/
|
|
6648
|
+
attributes?: Array<AfmAttributeItem>;
|
|
6649
|
+
/**
|
|
6650
|
+
* Optional filters to apply.
|
|
6651
|
+
*/
|
|
6652
|
+
filters?: Array<ChangeAnalysisRequestFiltersInner>;
|
|
6653
|
+
/**
|
|
6654
|
+
* Auxiliary measures
|
|
6655
|
+
*/
|
|
6656
|
+
auxMeasures?: Array<AfmMeasureItem>;
|
|
6657
|
+
/**
|
|
6658
|
+
* Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided.
|
|
6659
|
+
*/
|
|
6660
|
+
useSmartAttributeSelection?: boolean;
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6631
6663
|
/**
|
|
6632
6664
|
* Filter the result by comparing specified metric to given constant value, using given comparison operator.
|
|
6633
6665
|
*/
|
|
@@ -14168,38 +14200,6 @@ declare interface ChangeAnalysisParams {
|
|
|
14168
14200
|
useSmartAttributeSelection: boolean;
|
|
14169
14201
|
}
|
|
14170
14202
|
|
|
14171
|
-
/**
|
|
14172
|
-
* Request for change analysis computation
|
|
14173
|
-
*/
|
|
14174
|
-
declare interface ChangeAnalysisRequest {
|
|
14175
|
-
measure: AfmMeasureItem;
|
|
14176
|
-
dateAttribute: AfmAttributeItem;
|
|
14177
|
-
/**
|
|
14178
|
-
* The reference time period (e.g., \'2025-01\')
|
|
14179
|
-
*/
|
|
14180
|
-
referencePeriod: string;
|
|
14181
|
-
/**
|
|
14182
|
-
* The analyzed time period (e.g., \'2025-02\')
|
|
14183
|
-
*/
|
|
14184
|
-
analyzedPeriod: string;
|
|
14185
|
-
/**
|
|
14186
|
-
* Attributes to analyze for significant changes. If empty, valid attributes will be automatically discovered.
|
|
14187
|
-
*/
|
|
14188
|
-
attributes?: Array<AfmAttributeItem>;
|
|
14189
|
-
/**
|
|
14190
|
-
* Optional filters to apply.
|
|
14191
|
-
*/
|
|
14192
|
-
filters?: Array<ChangeAnalysisRequestFiltersInner>;
|
|
14193
|
-
/**
|
|
14194
|
-
* Auxiliary measures
|
|
14195
|
-
*/
|
|
14196
|
-
auxMeasures?: Array<AfmMeasureItem>;
|
|
14197
|
-
/**
|
|
14198
|
-
* Whether to use smart attribute selection (LLM-based) instead of discovering all valid attributes. If true, GenAI will intelligently select the most relevant attributes for change analysis. If false or not set, all valid attributes will be discovered using Calcique. Smart attribute selection applies only when no attributes are provided.
|
|
14199
|
-
*/
|
|
14200
|
-
useSmartAttributeSelection?: boolean;
|
|
14201
|
-
}
|
|
14202
|
-
|
|
14203
14203
|
/**
|
|
14204
14204
|
* @type ChangeAnalysisRequestFiltersInner
|
|
14205
14205
|
*/
|
|
@@ -43611,6 +43611,7 @@ declare interface IAnalyticalDashboard_2 {
|
|
|
43611
43611
|
disableUserFilterSave?: boolean;
|
|
43612
43612
|
disableFilterViews?: boolean;
|
|
43613
43613
|
evaluationFrequency?: string;
|
|
43614
|
+
sectionHeadersDateDataSet?: ObjRef;
|
|
43614
43615
|
/**
|
|
43615
43616
|
* Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
|
|
43616
43617
|
* Each tab has its own layout, filter context and filter configs.
|
|
@@ -45166,13 +45167,17 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
45166
45167
|
export declare interface JsonApiAggregatedFactOutList {
|
|
45167
45168
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
45168
45169
|
links?: ListLinks;
|
|
45169
|
-
meta?:
|
|
45170
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45170
45171
|
/**
|
|
45171
45172
|
* Included resources
|
|
45172
45173
|
*/
|
|
45173
45174
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
45174
45175
|
}
|
|
45175
45176
|
|
|
45177
|
+
export declare interface JsonApiAggregatedFactOutListMeta {
|
|
45178
|
+
page?: PageMetadata;
|
|
45179
|
+
}
|
|
45180
|
+
|
|
45176
45181
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
45177
45182
|
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
45178
45183
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
@@ -45221,7 +45226,18 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
45221
45226
|
* API identifier of an object
|
|
45222
45227
|
*/
|
|
45223
45228
|
id: string;
|
|
45224
|
-
attributes:
|
|
45229
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
45230
|
+
}
|
|
45231
|
+
|
|
45232
|
+
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
45233
|
+
title?: string;
|
|
45234
|
+
description?: string;
|
|
45235
|
+
tags?: Array<string>;
|
|
45236
|
+
areRelationsValid?: boolean;
|
|
45237
|
+
/**
|
|
45238
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45239
|
+
*/
|
|
45240
|
+
content: object;
|
|
45225
45241
|
}
|
|
45226
45242
|
|
|
45227
45243
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -45298,7 +45314,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
45298
45314
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
45299
45315
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
45300
45316
|
links?: ListLinks;
|
|
45301
|
-
meta?:
|
|
45317
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45302
45318
|
/**
|
|
45303
45319
|
* Included resources
|
|
45304
45320
|
*/
|
|
@@ -45444,18 +45460,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
45444
45460
|
* API identifier of an object
|
|
45445
45461
|
*/
|
|
45446
45462
|
id?: string;
|
|
45447
|
-
attributes:
|
|
45448
|
-
}
|
|
45449
|
-
|
|
45450
|
-
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
45451
|
-
title?: string;
|
|
45452
|
-
description?: string;
|
|
45453
|
-
tags?: Array<string>;
|
|
45454
|
-
areRelationsValid?: boolean;
|
|
45455
|
-
/**
|
|
45456
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45457
|
-
*/
|
|
45458
|
-
content: object;
|
|
45463
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
45459
45464
|
}
|
|
45460
45465
|
|
|
45461
45466
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -45525,7 +45530,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
45525
45530
|
export declare interface JsonApiApiTokenOutList {
|
|
45526
45531
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
45527
45532
|
links?: ListLinks;
|
|
45528
|
-
meta?:
|
|
45533
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45529
45534
|
}
|
|
45530
45535
|
|
|
45531
45536
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -45653,7 +45658,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
45653
45658
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
45654
45659
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
45655
45660
|
links?: ListLinks;
|
|
45656
|
-
meta?:
|
|
45661
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45657
45662
|
/**
|
|
45658
45663
|
* Included resources
|
|
45659
45664
|
*/
|
|
@@ -45822,7 +45827,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
45822
45827
|
export declare interface JsonApiAttributeOutList {
|
|
45823
45828
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
45824
45829
|
links?: ListLinks;
|
|
45825
|
-
meta?:
|
|
45830
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45826
45831
|
/**
|
|
45827
45832
|
* Included resources
|
|
45828
45833
|
*/
|
|
@@ -46153,7 +46158,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
46153
46158
|
export declare interface JsonApiAutomationOutList {
|
|
46154
46159
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
46155
46160
|
links?: ListLinks;
|
|
46156
|
-
meta?:
|
|
46161
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46157
46162
|
/**
|
|
46158
46163
|
* Included resources
|
|
46159
46164
|
*/
|
|
@@ -46322,7 +46327,15 @@ export declare interface JsonApiColorPaletteIn {
|
|
|
46322
46327
|
* API identifier of an object
|
|
46323
46328
|
*/
|
|
46324
46329
|
id: string;
|
|
46325
|
-
attributes:
|
|
46330
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
46331
|
+
}
|
|
46332
|
+
|
|
46333
|
+
export declare interface JsonApiColorPaletteInAttributes {
|
|
46334
|
+
name: string;
|
|
46335
|
+
/**
|
|
46336
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46337
|
+
*/
|
|
46338
|
+
content: object;
|
|
46326
46339
|
}
|
|
46327
46340
|
|
|
46328
46341
|
export declare interface JsonApiColorPaletteInDocument {
|
|
@@ -46347,15 +46360,7 @@ export declare interface JsonApiColorPaletteOut {
|
|
|
46347
46360
|
* API identifier of an object
|
|
46348
46361
|
*/
|
|
46349
46362
|
id: string;
|
|
46350
|
-
attributes:
|
|
46351
|
-
}
|
|
46352
|
-
|
|
46353
|
-
export declare interface JsonApiColorPaletteOutAttributes {
|
|
46354
|
-
name: string;
|
|
46355
|
-
/**
|
|
46356
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46357
|
-
*/
|
|
46358
|
-
content: object;
|
|
46363
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
46359
46364
|
}
|
|
46360
46365
|
|
|
46361
46366
|
export declare interface JsonApiColorPaletteOutDocument {
|
|
@@ -46369,11 +46374,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
46369
46374
|
export declare interface JsonApiColorPaletteOutList {
|
|
46370
46375
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
46371
46376
|
links?: ListLinks;
|
|
46372
|
-
meta?:
|
|
46373
|
-
}
|
|
46374
|
-
|
|
46375
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
46376
|
-
page?: PageMetadata;
|
|
46377
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46377
46378
|
}
|
|
46378
46379
|
|
|
46379
46380
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -46391,7 +46392,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
|
|
|
46391
46392
|
* API identifier of an object
|
|
46392
46393
|
*/
|
|
46393
46394
|
id: string;
|
|
46394
|
-
attributes:
|
|
46395
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
46395
46396
|
links?: ObjectLinks;
|
|
46396
46397
|
}
|
|
46397
46398
|
|
|
@@ -46446,15 +46447,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
46446
46447
|
* API identifier of an object
|
|
46447
46448
|
*/
|
|
46448
46449
|
id: string;
|
|
46449
|
-
attributes?:
|
|
46450
|
-
}
|
|
46451
|
-
|
|
46452
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
46453
|
-
lastRotation?: string;
|
|
46454
|
-
/**
|
|
46455
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46456
|
-
*/
|
|
46457
|
-
rotationInterval?: string;
|
|
46450
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46458
46451
|
}
|
|
46459
46452
|
|
|
46460
46453
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -46479,7 +46472,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
46479
46472
|
* API identifier of an object
|
|
46480
46473
|
*/
|
|
46481
46474
|
id: string;
|
|
46482
|
-
attributes?:
|
|
46475
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46483
46476
|
}
|
|
46484
46477
|
|
|
46485
46478
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -46505,7 +46498,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
46505
46498
|
* API identifier of an object
|
|
46506
46499
|
*/
|
|
46507
46500
|
id: string;
|
|
46508
|
-
attributes?:
|
|
46501
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46502
|
+
}
|
|
46503
|
+
|
|
46504
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
46505
|
+
lastRotation?: string;
|
|
46506
|
+
/**
|
|
46507
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46508
|
+
*/
|
|
46509
|
+
rotationInterval?: string;
|
|
46509
46510
|
}
|
|
46510
46511
|
|
|
46511
46512
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -46530,7 +46531,11 @@ export declare interface JsonApiCspDirectiveIn {
|
|
|
46530
46531
|
* API identifier of an object
|
|
46531
46532
|
*/
|
|
46532
46533
|
id: string;
|
|
46533
|
-
attributes:
|
|
46534
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
46535
|
+
}
|
|
46536
|
+
|
|
46537
|
+
export declare interface JsonApiCspDirectiveInAttributes {
|
|
46538
|
+
sources: Array<string>;
|
|
46534
46539
|
}
|
|
46535
46540
|
|
|
46536
46541
|
export declare interface JsonApiCspDirectiveInDocument {
|
|
@@ -46555,11 +46560,7 @@ export declare interface JsonApiCspDirectiveOut {
|
|
|
46555
46560
|
* API identifier of an object
|
|
46556
46561
|
*/
|
|
46557
46562
|
id: string;
|
|
46558
|
-
attributes:
|
|
46559
|
-
}
|
|
46560
|
-
|
|
46561
|
-
export declare interface JsonApiCspDirectiveOutAttributes {
|
|
46562
|
-
sources: Array<string>;
|
|
46563
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
46563
46564
|
}
|
|
46564
46565
|
|
|
46565
46566
|
export declare interface JsonApiCspDirectiveOutDocument {
|
|
@@ -46573,7 +46574,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
46573
46574
|
export declare interface JsonApiCspDirectiveOutList {
|
|
46574
46575
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
46575
46576
|
links?: ListLinks;
|
|
46576
|
-
meta?:
|
|
46577
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46577
46578
|
}
|
|
46578
46579
|
|
|
46579
46580
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -46591,7 +46592,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
|
|
|
46591
46592
|
* API identifier of an object
|
|
46592
46593
|
*/
|
|
46593
46594
|
id: string;
|
|
46594
|
-
attributes:
|
|
46595
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
46595
46596
|
links?: ObjectLinks;
|
|
46596
46597
|
}
|
|
46597
46598
|
|
|
@@ -46642,7 +46643,15 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
46642
46643
|
* API identifier of an object
|
|
46643
46644
|
*/
|
|
46644
46645
|
id: string;
|
|
46645
|
-
attributes:
|
|
46646
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
46647
|
+
}
|
|
46648
|
+
|
|
46649
|
+
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
46650
|
+
applicationName: string;
|
|
46651
|
+
/**
|
|
46652
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46653
|
+
*/
|
|
46654
|
+
content: object;
|
|
46646
46655
|
}
|
|
46647
46656
|
|
|
46648
46657
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -46668,7 +46677,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
46668
46677
|
*/
|
|
46669
46678
|
id: string;
|
|
46670
46679
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46671
|
-
attributes:
|
|
46680
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
46672
46681
|
}
|
|
46673
46682
|
|
|
46674
46683
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -46682,7 +46691,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
46682
46691
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
46683
46692
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
46684
46693
|
links?: ListLinks;
|
|
46685
|
-
meta?:
|
|
46694
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46686
46695
|
}
|
|
46687
46696
|
|
|
46688
46697
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -46701,7 +46710,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
46701
46710
|
*/
|
|
46702
46711
|
id: string;
|
|
46703
46712
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46704
|
-
attributes:
|
|
46713
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
46705
46714
|
links?: ObjectLinks;
|
|
46706
46715
|
}
|
|
46707
46716
|
|
|
@@ -46756,15 +46765,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
46756
46765
|
* API identifier of an object
|
|
46757
46766
|
*/
|
|
46758
46767
|
id?: string;
|
|
46759
|
-
attributes:
|
|
46760
|
-
}
|
|
46761
|
-
|
|
46762
|
-
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
46763
|
-
applicationName: string;
|
|
46764
|
-
/**
|
|
46765
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46766
|
-
*/
|
|
46767
|
-
content: object;
|
|
46768
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
46768
46769
|
}
|
|
46769
46770
|
|
|
46770
46771
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -46789,7 +46790,18 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
46789
46790
|
* API identifier of an object
|
|
46790
46791
|
*/
|
|
46791
46792
|
id: string;
|
|
46792
|
-
attributes?:
|
|
46793
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
46794
|
+
}
|
|
46795
|
+
|
|
46796
|
+
export declare interface JsonApiDashboardPluginInAttributes {
|
|
46797
|
+
title?: string;
|
|
46798
|
+
description?: string;
|
|
46799
|
+
tags?: Array<string>;
|
|
46800
|
+
areRelationsValid?: boolean;
|
|
46801
|
+
/**
|
|
46802
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46803
|
+
*/
|
|
46804
|
+
content?: object;
|
|
46793
46805
|
}
|
|
46794
46806
|
|
|
46795
46807
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -46861,7 +46873,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
46861
46873
|
export declare interface JsonApiDashboardPluginOutList {
|
|
46862
46874
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
46863
46875
|
links?: ListLinks;
|
|
46864
|
-
meta?:
|
|
46876
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46865
46877
|
/**
|
|
46866
46878
|
* Included resources
|
|
46867
46879
|
*/
|
|
@@ -46912,7 +46924,7 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
46912
46924
|
* API identifier of an object
|
|
46913
46925
|
*/
|
|
46914
46926
|
id: string;
|
|
46915
|
-
attributes?:
|
|
46927
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
46916
46928
|
}
|
|
46917
46929
|
|
|
46918
46930
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -46937,18 +46949,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
46937
46949
|
* API identifier of an object
|
|
46938
46950
|
*/
|
|
46939
46951
|
id?: string;
|
|
46940
|
-
attributes?:
|
|
46941
|
-
}
|
|
46942
|
-
|
|
46943
|
-
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
46944
|
-
title?: string;
|
|
46945
|
-
description?: string;
|
|
46946
|
-
tags?: Array<string>;
|
|
46947
|
-
areRelationsValid?: boolean;
|
|
46948
|
-
/**
|
|
46949
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46950
|
-
*/
|
|
46951
|
-
content?: object;
|
|
46952
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
46952
46953
|
}
|
|
46953
46954
|
|
|
46954
46955
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -47113,7 +47114,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
47113
47114
|
export declare interface JsonApiDatasetOutList {
|
|
47114
47115
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
47115
47116
|
links?: ListLinks;
|
|
47116
|
-
meta?:
|
|
47117
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47117
47118
|
/**
|
|
47118
47119
|
* Included resources
|
|
47119
47120
|
*/
|
|
@@ -47181,7 +47182,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
|
|
|
47181
47182
|
* API identifier of an object
|
|
47182
47183
|
*/
|
|
47183
47184
|
id: string;
|
|
47184
|
-
meta?:
|
|
47185
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47185
47186
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47186
47187
|
}
|
|
47187
47188
|
|
|
@@ -47233,23 +47234,9 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
47233
47234
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
47234
47235
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
47235
47236
|
links?: ListLinks;
|
|
47236
|
-
meta?:
|
|
47237
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47237
47238
|
}
|
|
47238
47239
|
|
|
47239
|
-
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
47240
|
-
/**
|
|
47241
|
-
* List of valid permissions for a logged-in user.
|
|
47242
|
-
*/
|
|
47243
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
47244
|
-
}
|
|
47245
|
-
|
|
47246
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
47247
|
-
readonly MANAGE: "MANAGE";
|
|
47248
|
-
readonly USE: "USE";
|
|
47249
|
-
};
|
|
47250
|
-
|
|
47251
|
-
export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
47252
|
-
|
|
47253
47240
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
47254
47241
|
readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
|
|
47255
47242
|
};
|
|
@@ -47265,7 +47252,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
47265
47252
|
* API identifier of an object
|
|
47266
47253
|
*/
|
|
47267
47254
|
id: string;
|
|
47268
|
-
meta?:
|
|
47255
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47269
47256
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47270
47257
|
links?: ObjectLinks;
|
|
47271
47258
|
}
|
|
@@ -47339,7 +47326,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
47339
47326
|
/**
|
|
47340
47327
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47341
47328
|
*/
|
|
47342
|
-
parameters?: Array<
|
|
47329
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
47343
47330
|
/**
|
|
47344
47331
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47345
47332
|
*/
|
|
@@ -47353,6 +47340,11 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
|
47353
47340
|
|
|
47354
47341
|
export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
|
|
47355
47342
|
|
|
47343
|
+
export declare interface JsonApiDataSourceInAttributesParametersInner {
|
|
47344
|
+
name: string;
|
|
47345
|
+
value: string;
|
|
47346
|
+
}
|
|
47347
|
+
|
|
47356
47348
|
export declare const JsonApiDataSourceInAttributesTypeEnum: {
|
|
47357
47349
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47358
47350
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47406,7 +47398,7 @@ export declare interface JsonApiDataSourceOut {
|
|
|
47406
47398
|
* API identifier of an object
|
|
47407
47399
|
*/
|
|
47408
47400
|
id: string;
|
|
47409
|
-
meta?:
|
|
47401
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47410
47402
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47411
47403
|
}
|
|
47412
47404
|
|
|
@@ -47438,11 +47430,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
47438
47430
|
/**
|
|
47439
47431
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47440
47432
|
*/
|
|
47441
|
-
parameters?: Array<
|
|
47433
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
47442
47434
|
/**
|
|
47443
47435
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
47444
47436
|
*/
|
|
47445
|
-
decodedParameters?: Array<
|
|
47437
|
+
decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
47446
47438
|
/**
|
|
47447
47439
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47448
47440
|
*/
|
|
@@ -47470,11 +47462,6 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
|
47470
47462
|
|
|
47471
47463
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
|
|
47472
47464
|
|
|
47473
|
-
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
47474
|
-
name: string;
|
|
47475
|
-
value: string;
|
|
47476
|
-
}
|
|
47477
|
-
|
|
47478
47465
|
export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
47479
47466
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47480
47467
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47517,9 +47504,23 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
47517
47504
|
export declare interface JsonApiDataSourceOutList {
|
|
47518
47505
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
47519
47506
|
links?: ListLinks;
|
|
47520
|
-
meta?:
|
|
47507
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47508
|
+
}
|
|
47509
|
+
|
|
47510
|
+
export declare interface JsonApiDataSourceOutMeta {
|
|
47511
|
+
/**
|
|
47512
|
+
* List of valid permissions for a logged-in user.
|
|
47513
|
+
*/
|
|
47514
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
47521
47515
|
}
|
|
47522
47516
|
|
|
47517
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
47518
|
+
readonly MANAGE: "MANAGE";
|
|
47519
|
+
readonly USE: "USE";
|
|
47520
|
+
};
|
|
47521
|
+
|
|
47522
|
+
export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
47523
|
+
|
|
47523
47524
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
47524
47525
|
readonly DATA_SOURCE: "dataSource";
|
|
47525
47526
|
};
|
|
@@ -47535,7 +47536,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
|
|
|
47535
47536
|
* API identifier of an object
|
|
47536
47537
|
*/
|
|
47537
47538
|
id: string;
|
|
47538
|
-
meta?:
|
|
47539
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47539
47540
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47540
47541
|
links?: ObjectLinks;
|
|
47541
47542
|
}
|
|
@@ -47609,7 +47610,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
47609
47610
|
/**
|
|
47610
47611
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47611
47612
|
*/
|
|
47612
|
-
parameters?: Array<
|
|
47613
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
47613
47614
|
/**
|
|
47614
47615
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47615
47616
|
*/
|
|
@@ -47695,7 +47696,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
47695
47696
|
export declare interface JsonApiEntitlementOutList {
|
|
47696
47697
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
47697
47698
|
links?: ListLinks;
|
|
47698
|
-
meta?:
|
|
47699
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47699
47700
|
}
|
|
47700
47701
|
|
|
47701
47702
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -47735,14 +47736,27 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
47735
47736
|
* API identifier of an object
|
|
47736
47737
|
*/
|
|
47737
47738
|
id: string;
|
|
47738
|
-
attributes?:
|
|
47739
|
-
relationships?:
|
|
47739
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
47740
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
47741
|
+
}
|
|
47742
|
+
|
|
47743
|
+
export declare interface JsonApiExportDefinitionInAttributes {
|
|
47744
|
+
title?: string;
|
|
47745
|
+
description?: string;
|
|
47746
|
+
tags?: Array<string>;
|
|
47747
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47748
|
+
areRelationsValid?: boolean;
|
|
47740
47749
|
}
|
|
47741
47750
|
|
|
47742
47751
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
47743
47752
|
data: JsonApiExportDefinitionIn;
|
|
47744
47753
|
}
|
|
47745
47754
|
|
|
47755
|
+
export declare interface JsonApiExportDefinitionInRelationships {
|
|
47756
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47757
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47758
|
+
}
|
|
47759
|
+
|
|
47746
47760
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
47747
47761
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47748
47762
|
};
|
|
@@ -47816,7 +47830,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
47816
47830
|
export declare interface JsonApiExportDefinitionOutList {
|
|
47817
47831
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
47818
47832
|
links?: ListLinks;
|
|
47819
|
-
meta?:
|
|
47833
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47820
47834
|
/**
|
|
47821
47835
|
* Included resources
|
|
47822
47836
|
*/
|
|
@@ -47878,8 +47892,8 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
47878
47892
|
* API identifier of an object
|
|
47879
47893
|
*/
|
|
47880
47894
|
id: string;
|
|
47881
|
-
attributes?:
|
|
47882
|
-
relationships?:
|
|
47895
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
47896
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
47883
47897
|
}
|
|
47884
47898
|
|
|
47885
47899
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
@@ -47904,27 +47918,14 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
47904
47918
|
* API identifier of an object
|
|
47905
47919
|
*/
|
|
47906
47920
|
id?: string;
|
|
47907
|
-
attributes?:
|
|
47908
|
-
relationships?:
|
|
47909
|
-
}
|
|
47910
|
-
|
|
47911
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
47912
|
-
title?: string;
|
|
47913
|
-
description?: string;
|
|
47914
|
-
tags?: Array<string>;
|
|
47915
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47916
|
-
areRelationsValid?: boolean;
|
|
47921
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
47922
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
47917
47923
|
}
|
|
47918
47924
|
|
|
47919
47925
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
47920
47926
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
47921
47927
|
}
|
|
47922
47928
|
|
|
47923
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
47924
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47925
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47926
|
-
}
|
|
47927
|
-
|
|
47928
47929
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
47929
47930
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47930
47931
|
};
|
|
@@ -47943,7 +47944,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
47943
47944
|
* API identifier of an object
|
|
47944
47945
|
*/
|
|
47945
47946
|
id: string;
|
|
47946
|
-
attributes:
|
|
47947
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
47947
47948
|
}
|
|
47948
47949
|
|
|
47949
47950
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -47968,57 +47969,9 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
47968
47969
|
* API identifier of an object
|
|
47969
47970
|
*/
|
|
47970
47971
|
id: string;
|
|
47971
|
-
attributes:
|
|
47972
|
-
}
|
|
47973
|
-
|
|
47974
|
-
export declare interface JsonApiExportTemplateOutAttributes {
|
|
47975
|
-
/**
|
|
47976
|
-
* User-facing name of the Slides template.
|
|
47977
|
-
*/
|
|
47978
|
-
name: string;
|
|
47979
|
-
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
47980
|
-
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
47981
|
-
}
|
|
47982
|
-
|
|
47983
|
-
/**
|
|
47984
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47985
|
-
*/
|
|
47986
|
-
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
47987
|
-
/**
|
|
47988
|
-
* Export types this template applies to.
|
|
47989
|
-
*/
|
|
47990
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
47991
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
47992
|
-
introSlide?: IntroSlideTemplate | null;
|
|
47993
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
47994
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
47995
|
-
}
|
|
47996
|
-
|
|
47997
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
47998
|
-
readonly PDF: "PDF";
|
|
47999
|
-
readonly PPTX: "PPTX";
|
|
48000
|
-
};
|
|
48001
|
-
|
|
48002
|
-
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
48003
|
-
|
|
48004
|
-
/**
|
|
48005
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
48006
|
-
*/
|
|
48007
|
-
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
48008
|
-
/**
|
|
48009
|
-
* Export types this template applies to.
|
|
48010
|
-
*/
|
|
48011
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
48012
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
47972
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
48013
47973
|
}
|
|
48014
47974
|
|
|
48015
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
48016
|
-
readonly PDF: "PDF";
|
|
48017
|
-
readonly PPTX: "PPTX";
|
|
48018
|
-
};
|
|
48019
|
-
|
|
48020
|
-
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
48021
|
-
|
|
48022
47975
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
48023
47976
|
data: JsonApiExportTemplateOut;
|
|
48024
47977
|
links?: ObjectLinks;
|
|
@@ -48030,7 +47983,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
48030
47983
|
export declare interface JsonApiExportTemplateOutList {
|
|
48031
47984
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
48032
47985
|
links?: ListLinks;
|
|
48033
|
-
meta?:
|
|
47986
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48034
47987
|
}
|
|
48035
47988
|
|
|
48036
47989
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -48048,7 +48001,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
48048
48001
|
* API identifier of an object
|
|
48049
48002
|
*/
|
|
48050
48003
|
id: string;
|
|
48051
|
-
attributes:
|
|
48004
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
48052
48005
|
links?: ObjectLinks;
|
|
48053
48006
|
}
|
|
48054
48007
|
|
|
@@ -48078,8 +48031,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
48078
48031
|
* User-facing name of the Slides template.
|
|
48079
48032
|
*/
|
|
48080
48033
|
name?: string;
|
|
48081
|
-
dashboardSlidesTemplate?:
|
|
48082
|
-
widgetSlidesTemplate?:
|
|
48034
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
48035
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
48083
48036
|
}
|
|
48084
48037
|
|
|
48085
48038
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -48104,9 +48057,57 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
48104
48057
|
* API identifier of an object
|
|
48105
48058
|
*/
|
|
48106
48059
|
id?: string;
|
|
48107
|
-
attributes:
|
|
48060
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
48061
|
+
}
|
|
48062
|
+
|
|
48063
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
48064
|
+
/**
|
|
48065
|
+
* User-facing name of the Slides template.
|
|
48066
|
+
*/
|
|
48067
|
+
name: string;
|
|
48068
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
48069
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
48070
|
+
}
|
|
48071
|
+
|
|
48072
|
+
/**
|
|
48073
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
48074
|
+
*/
|
|
48075
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
48076
|
+
/**
|
|
48077
|
+
* Export types this template applies to.
|
|
48078
|
+
*/
|
|
48079
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
48080
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
48081
|
+
introSlide?: IntroSlideTemplate | null;
|
|
48082
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
48083
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
48108
48084
|
}
|
|
48109
48085
|
|
|
48086
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
48087
|
+
readonly PDF: "PDF";
|
|
48088
|
+
readonly PPTX: "PPTX";
|
|
48089
|
+
};
|
|
48090
|
+
|
|
48091
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
48092
|
+
|
|
48093
|
+
/**
|
|
48094
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
48095
|
+
*/
|
|
48096
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
48097
|
+
/**
|
|
48098
|
+
* Export types this template applies to.
|
|
48099
|
+
*/
|
|
48100
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
48101
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
48102
|
+
}
|
|
48103
|
+
|
|
48104
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
48105
|
+
readonly PDF: "PDF";
|
|
48106
|
+
readonly PPTX: "PPTX";
|
|
48107
|
+
};
|
|
48108
|
+
|
|
48109
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
48110
|
+
|
|
48110
48111
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
48111
48112
|
data: JsonApiExportTemplatePostOptionalId;
|
|
48112
48113
|
}
|
|
@@ -48185,7 +48186,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
48185
48186
|
export declare interface JsonApiFactOutList {
|
|
48186
48187
|
data: Array<JsonApiFactOutWithLinks>;
|
|
48187
48188
|
links?: ListLinks;
|
|
48188
|
-
meta?:
|
|
48189
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48189
48190
|
/**
|
|
48190
48191
|
* Included resources
|
|
48191
48192
|
*/
|
|
@@ -48235,7 +48236,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
48235
48236
|
* API identifier of an object
|
|
48236
48237
|
*/
|
|
48237
48238
|
id: string;
|
|
48238
|
-
attributes:
|
|
48239
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
48239
48240
|
}
|
|
48240
48241
|
|
|
48241
48242
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -48275,7 +48276,7 @@ export declare interface JsonApiFilterContextOut {
|
|
|
48275
48276
|
*/
|
|
48276
48277
|
id: string;
|
|
48277
48278
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48278
|
-
attributes:
|
|
48279
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
48279
48280
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48280
48281
|
}
|
|
48281
48282
|
|
|
@@ -48299,7 +48300,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
48299
48300
|
export declare interface JsonApiFilterContextOutList {
|
|
48300
48301
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
48301
48302
|
links?: ListLinks;
|
|
48302
|
-
meta?:
|
|
48303
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48303
48304
|
/**
|
|
48304
48305
|
* Included resources
|
|
48305
48306
|
*/
|
|
@@ -48328,7 +48329,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
48328
48329
|
*/
|
|
48329
48330
|
id: string;
|
|
48330
48331
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48331
|
-
attributes:
|
|
48332
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
48332
48333
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48333
48334
|
links?: ObjectLinks;
|
|
48334
48335
|
}
|
|
@@ -48376,7 +48377,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
48376
48377
|
* API identifier of an object
|
|
48377
48378
|
*/
|
|
48378
48379
|
id?: string;
|
|
48379
|
-
attributes:
|
|
48380
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
48380
48381
|
}
|
|
48381
48382
|
|
|
48382
48383
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -48426,7 +48427,11 @@ export declare interface JsonApiFilterViewInDocument {
|
|
|
48426
48427
|
|
|
48427
48428
|
export declare interface JsonApiFilterViewInRelationships {
|
|
48428
48429
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
48429
|
-
user?:
|
|
48430
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
48431
|
+
}
|
|
48432
|
+
|
|
48433
|
+
export declare interface JsonApiFilterViewInRelationshipsUser {
|
|
48434
|
+
data: JsonApiUserLinkage | null;
|
|
48430
48435
|
}
|
|
48431
48436
|
|
|
48432
48437
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
@@ -48471,7 +48476,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
48471
48476
|
export declare interface JsonApiFilterViewOutList {
|
|
48472
48477
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
48473
48478
|
links?: ListLinks;
|
|
48474
|
-
meta?:
|
|
48479
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48475
48480
|
/**
|
|
48476
48481
|
* Included resources
|
|
48477
48482
|
*/
|
|
@@ -48727,7 +48732,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
48727
48732
|
export declare interface JsonApiIdentityProviderOutList {
|
|
48728
48733
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48729
48734
|
links?: ListLinks;
|
|
48730
|
-
meta?:
|
|
48735
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48731
48736
|
}
|
|
48732
48737
|
|
|
48733
48738
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -48792,7 +48797,11 @@ export declare interface JsonApiJwkIn {
|
|
|
48792
48797
|
* API identifier of an object
|
|
48793
48798
|
*/
|
|
48794
48799
|
id: string;
|
|
48795
|
-
attributes?:
|
|
48800
|
+
attributes?: JsonApiJwkInAttributes;
|
|
48801
|
+
}
|
|
48802
|
+
|
|
48803
|
+
export declare interface JsonApiJwkInAttributes {
|
|
48804
|
+
content?: RsaSpecification;
|
|
48796
48805
|
}
|
|
48797
48806
|
|
|
48798
48807
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -48817,11 +48826,7 @@ export declare interface JsonApiJwkOut {
|
|
|
48817
48826
|
* API identifier of an object
|
|
48818
48827
|
*/
|
|
48819
48828
|
id: string;
|
|
48820
|
-
attributes?:
|
|
48821
|
-
}
|
|
48822
|
-
|
|
48823
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
48824
|
-
content?: RsaSpecification;
|
|
48829
|
+
attributes?: JsonApiJwkInAttributes;
|
|
48825
48830
|
}
|
|
48826
48831
|
|
|
48827
48832
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -48835,7 +48840,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
48835
48840
|
export declare interface JsonApiJwkOutList {
|
|
48836
48841
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
48837
48842
|
links?: ListLinks;
|
|
48838
|
-
meta?:
|
|
48843
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48839
48844
|
}
|
|
48840
48845
|
|
|
48841
48846
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -48853,7 +48858,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
48853
48858
|
* API identifier of an object
|
|
48854
48859
|
*/
|
|
48855
48860
|
id: string;
|
|
48856
|
-
attributes?:
|
|
48861
|
+
attributes?: JsonApiJwkInAttributes;
|
|
48857
48862
|
links?: ObjectLinks;
|
|
48858
48863
|
}
|
|
48859
48864
|
|
|
@@ -48875,7 +48880,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
48875
48880
|
* API identifier of an object
|
|
48876
48881
|
*/
|
|
48877
48882
|
id: string;
|
|
48878
|
-
attributes?:
|
|
48883
|
+
attributes?: JsonApiJwkInAttributes;
|
|
48879
48884
|
}
|
|
48880
48885
|
|
|
48881
48886
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -48978,7 +48983,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
48978
48983
|
export declare interface JsonApiLabelOutList {
|
|
48979
48984
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
48980
48985
|
links?: ListLinks;
|
|
48981
|
-
meta?:
|
|
48986
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48982
48987
|
/**
|
|
48983
48988
|
* Included resources
|
|
48984
48989
|
*/
|
|
@@ -49135,7 +49140,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
49135
49140
|
export declare interface JsonApiLlmEndpointOutList {
|
|
49136
49141
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
49137
49142
|
links?: ListLinks;
|
|
49138
|
-
meta?:
|
|
49143
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49139
49144
|
}
|
|
49140
49145
|
|
|
49141
49146
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -49234,9 +49239,39 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
49234
49239
|
* API identifier of an object
|
|
49235
49240
|
*/
|
|
49236
49241
|
id: string;
|
|
49237
|
-
attributes:
|
|
49242
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
49238
49243
|
}
|
|
49239
49244
|
|
|
49245
|
+
export declare interface JsonApiMemoryItemInAttributes {
|
|
49246
|
+
title?: string;
|
|
49247
|
+
description?: string;
|
|
49248
|
+
tags?: Array<string>;
|
|
49249
|
+
areRelationsValid?: boolean;
|
|
49250
|
+
/**
|
|
49251
|
+
* Strategy defining when the memory item should be applied
|
|
49252
|
+
*/
|
|
49253
|
+
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
49254
|
+
/**
|
|
49255
|
+
* The text that will be injected into the system prompt
|
|
49256
|
+
*/
|
|
49257
|
+
instruction: string;
|
|
49258
|
+
/**
|
|
49259
|
+
* Set of unique strings used for semantic similarity filtering
|
|
49260
|
+
*/
|
|
49261
|
+
keywords?: Array<string>;
|
|
49262
|
+
/**
|
|
49263
|
+
* Whether memory item is disabled
|
|
49264
|
+
*/
|
|
49265
|
+
isDisabled?: boolean;
|
|
49266
|
+
}
|
|
49267
|
+
|
|
49268
|
+
export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
|
|
49269
|
+
readonly ALWAYS: "ALWAYS";
|
|
49270
|
+
readonly AUTO: "AUTO";
|
|
49271
|
+
};
|
|
49272
|
+
|
|
49273
|
+
export declare type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
|
|
49274
|
+
|
|
49240
49275
|
export declare interface JsonApiMemoryItemInDocument {
|
|
49241
49276
|
data: JsonApiMemoryItemIn;
|
|
49242
49277
|
}
|
|
@@ -49311,7 +49346,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
49311
49346
|
export declare interface JsonApiMemoryItemOutList {
|
|
49312
49347
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
49313
49348
|
links?: ListLinks;
|
|
49314
|
-
meta?:
|
|
49349
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49315
49350
|
/**
|
|
49316
49351
|
* Included resources
|
|
49317
49352
|
*/
|
|
@@ -49412,39 +49447,9 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
49412
49447
|
* API identifier of an object
|
|
49413
49448
|
*/
|
|
49414
49449
|
id?: string;
|
|
49415
|
-
attributes:
|
|
49450
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
49416
49451
|
}
|
|
49417
49452
|
|
|
49418
|
-
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
49419
|
-
title?: string;
|
|
49420
|
-
description?: string;
|
|
49421
|
-
tags?: Array<string>;
|
|
49422
|
-
areRelationsValid?: boolean;
|
|
49423
|
-
/**
|
|
49424
|
-
* Strategy defining when the memory item should be applied
|
|
49425
|
-
*/
|
|
49426
|
-
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
49427
|
-
/**
|
|
49428
|
-
* The text that will be injected into the system prompt
|
|
49429
|
-
*/
|
|
49430
|
-
instruction: string;
|
|
49431
|
-
/**
|
|
49432
|
-
* Set of unique strings used for semantic similarity filtering
|
|
49433
|
-
*/
|
|
49434
|
-
keywords?: Array<string>;
|
|
49435
|
-
/**
|
|
49436
|
-
* Whether memory item is disabled
|
|
49437
|
-
*/
|
|
49438
|
-
isDisabled?: boolean;
|
|
49439
|
-
}
|
|
49440
|
-
|
|
49441
|
-
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
49442
|
-
readonly ALWAYS: "ALWAYS";
|
|
49443
|
-
readonly AUTO: "AUTO";
|
|
49444
|
-
};
|
|
49445
|
-
|
|
49446
|
-
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
49447
|
-
|
|
49448
49453
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
49449
49454
|
data: JsonApiMemoryItemPostOptionalId;
|
|
49450
49455
|
}
|
|
@@ -49467,7 +49472,16 @@ export declare interface JsonApiMetricIn {
|
|
|
49467
49472
|
* API identifier of an object
|
|
49468
49473
|
*/
|
|
49469
49474
|
id: string;
|
|
49470
|
-
attributes:
|
|
49475
|
+
attributes: JsonApiMetricInAttributes;
|
|
49476
|
+
}
|
|
49477
|
+
|
|
49478
|
+
export declare interface JsonApiMetricInAttributes {
|
|
49479
|
+
title?: string;
|
|
49480
|
+
description?: string;
|
|
49481
|
+
tags?: Array<string>;
|
|
49482
|
+
areRelationsValid?: boolean;
|
|
49483
|
+
content: JsonApiMetricOutAttributesContent;
|
|
49484
|
+
isHidden?: boolean;
|
|
49471
49485
|
}
|
|
49472
49486
|
|
|
49473
49487
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -49547,7 +49561,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
49547
49561
|
export declare interface JsonApiMetricOutList {
|
|
49548
49562
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
49549
49563
|
links?: ListLinks;
|
|
49550
|
-
meta?:
|
|
49564
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49551
49565
|
/**
|
|
49552
49566
|
* Included resources
|
|
49553
49567
|
*/
|
|
@@ -49627,16 +49641,7 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
49627
49641
|
* API identifier of an object
|
|
49628
49642
|
*/
|
|
49629
49643
|
id?: string;
|
|
49630
|
-
attributes:
|
|
49631
|
-
}
|
|
49632
|
-
|
|
49633
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
49634
|
-
title?: string;
|
|
49635
|
-
description?: string;
|
|
49636
|
-
tags?: Array<string>;
|
|
49637
|
-
areRelationsValid?: boolean;
|
|
49638
|
-
content: JsonApiMetricOutAttributesContent;
|
|
49639
|
-
isHidden?: boolean;
|
|
49644
|
+
attributes: JsonApiMetricInAttributes;
|
|
49640
49645
|
}
|
|
49641
49646
|
|
|
49642
49647
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -49702,7 +49707,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
49702
49707
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
49703
49708
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
49704
49709
|
links?: ListLinks;
|
|
49705
|
-
meta?:
|
|
49710
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49706
49711
|
}
|
|
49707
49712
|
|
|
49708
49713
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -49742,58 +49747,9 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
49742
49747
|
* API identifier of an object
|
|
49743
49748
|
*/
|
|
49744
49749
|
id: string;
|
|
49745
|
-
attributes?:
|
|
49746
|
-
}
|
|
49747
|
-
|
|
49748
|
-
export declare interface JsonApiNotificationChannelInAttributes {
|
|
49749
|
-
name?: string | null;
|
|
49750
|
-
description?: string | null;
|
|
49751
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
49752
|
-
/**
|
|
49753
|
-
* 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}
|
|
49754
|
-
*/
|
|
49755
|
-
customDashboardUrl?: string;
|
|
49756
|
-
/**
|
|
49757
|
-
* 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
|
|
49758
|
-
*/
|
|
49759
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
49760
|
-
/**
|
|
49761
|
-
* 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}}
|
|
49762
|
-
*/
|
|
49763
|
-
notificationSource?: string;
|
|
49764
|
-
/**
|
|
49765
|
-
* 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
|
|
49766
|
-
*/
|
|
49767
|
-
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
49768
|
-
/**
|
|
49769
|
-
* 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
|
|
49770
|
-
*/
|
|
49771
|
-
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
49750
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
49772
49751
|
}
|
|
49773
49752
|
|
|
49774
|
-
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
49775
|
-
readonly CREATOR: "CREATOR";
|
|
49776
|
-
readonly INTERNAL: "INTERNAL";
|
|
49777
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
49778
|
-
};
|
|
49779
|
-
|
|
49780
|
-
export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
49781
|
-
|
|
49782
|
-
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
49783
|
-
readonly HIDDEN: "HIDDEN";
|
|
49784
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49785
|
-
readonly ALL: "ALL";
|
|
49786
|
-
};
|
|
49787
|
-
|
|
49788
|
-
export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
49789
|
-
|
|
49790
|
-
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
49791
|
-
readonly DISABLED: "DISABLED";
|
|
49792
|
-
readonly ENABLED: "ENABLED";
|
|
49793
|
-
};
|
|
49794
|
-
|
|
49795
|
-
export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
49796
|
-
|
|
49797
49753
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
49798
49754
|
data: JsonApiNotificationChannelIn;
|
|
49799
49755
|
}
|
|
@@ -49836,7 +49792,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
49836
49792
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
49837
49793
|
name?: string | null;
|
|
49838
49794
|
description?: string | null;
|
|
49839
|
-
destination?:
|
|
49795
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
49840
49796
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
49841
49797
|
/**
|
|
49842
49798
|
* 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}
|
|
@@ -49876,12 +49832,6 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
|
|
|
49876
49832
|
|
|
49877
49833
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
|
|
49878
49834
|
|
|
49879
|
-
/**
|
|
49880
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
49881
|
-
* The destination where the notifications are to be sent.
|
|
49882
|
-
*/
|
|
49883
|
-
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49884
|
-
|
|
49885
49835
|
export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
|
|
49886
49836
|
readonly WEBHOOK: "WEBHOOK";
|
|
49887
49837
|
readonly SMTP: "SMTP";
|
|
@@ -49909,7 +49859,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
49909
49859
|
export declare interface JsonApiNotificationChannelOutList {
|
|
49910
49860
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
49911
49861
|
links?: ListLinks;
|
|
49912
|
-
meta?:
|
|
49862
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49913
49863
|
}
|
|
49914
49864
|
|
|
49915
49865
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -49949,7 +49899,7 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
49949
49899
|
* API identifier of an object
|
|
49950
49900
|
*/
|
|
49951
49901
|
id: string;
|
|
49952
|
-
attributes?:
|
|
49902
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
49953
49903
|
}
|
|
49954
49904
|
|
|
49955
49905
|
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
@@ -49974,9 +49924,64 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
49974
49924
|
* API identifier of an object
|
|
49975
49925
|
*/
|
|
49976
49926
|
id?: string;
|
|
49977
|
-
attributes?:
|
|
49927
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
49978
49928
|
}
|
|
49979
49929
|
|
|
49930
|
+
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
49931
|
+
name?: string | null;
|
|
49932
|
+
description?: string | null;
|
|
49933
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
49934
|
+
/**
|
|
49935
|
+
* 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}
|
|
49936
|
+
*/
|
|
49937
|
+
customDashboardUrl?: string;
|
|
49938
|
+
/**
|
|
49939
|
+
* 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
|
|
49940
|
+
*/
|
|
49941
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
49942
|
+
/**
|
|
49943
|
+
* 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}}
|
|
49944
|
+
*/
|
|
49945
|
+
notificationSource?: string;
|
|
49946
|
+
/**
|
|
49947
|
+
* 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
|
|
49948
|
+
*/
|
|
49949
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
49950
|
+
/**
|
|
49951
|
+
* 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
|
|
49952
|
+
*/
|
|
49953
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
49954
|
+
}
|
|
49955
|
+
|
|
49956
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
49957
|
+
readonly CREATOR: "CREATOR";
|
|
49958
|
+
readonly INTERNAL: "INTERNAL";
|
|
49959
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
49960
|
+
};
|
|
49961
|
+
|
|
49962
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
49963
|
+
|
|
49964
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
49965
|
+
readonly HIDDEN: "HIDDEN";
|
|
49966
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49967
|
+
readonly ALL: "ALL";
|
|
49968
|
+
};
|
|
49969
|
+
|
|
49970
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
49971
|
+
|
|
49972
|
+
/**
|
|
49973
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
49974
|
+
* The destination where the notifications are to be sent.
|
|
49975
|
+
*/
|
|
49976
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49977
|
+
|
|
49978
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
49979
|
+
readonly DISABLED: "DISABLED";
|
|
49980
|
+
readonly ENABLED: "ENABLED";
|
|
49981
|
+
};
|
|
49982
|
+
|
|
49983
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
49984
|
+
|
|
49980
49985
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
49981
49986
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
49982
49987
|
}
|
|
@@ -49999,37 +50004,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
49999
50004
|
* API identifier of an object
|
|
50000
50005
|
*/
|
|
50001
50006
|
id: string;
|
|
50002
|
-
attributes?:
|
|
50003
|
-
relationships?:
|
|
50004
|
-
}
|
|
50005
|
-
|
|
50006
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
50007
|
-
name?: string | null;
|
|
50008
|
-
hostname?: string;
|
|
50009
|
-
allowedOrigins?: Array<string>;
|
|
50010
|
-
/**
|
|
50011
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
50012
|
-
* @deprecated
|
|
50013
|
-
*/
|
|
50014
|
-
earlyAccess?: string | null;
|
|
50015
|
-
/**
|
|
50016
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
50017
|
-
*/
|
|
50018
|
-
earlyAccessValues?: Array<string> | null;
|
|
50007
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
50008
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
50019
50009
|
}
|
|
50020
50010
|
|
|
50021
50011
|
export declare interface JsonApiOrganizationInDocument {
|
|
50022
50012
|
data: JsonApiOrganizationIn;
|
|
50023
50013
|
}
|
|
50024
50014
|
|
|
50025
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
50026
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
50027
|
-
}
|
|
50028
|
-
|
|
50029
|
-
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
50030
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
50031
|
-
}
|
|
50032
|
-
|
|
50033
50015
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
50034
50016
|
readonly ORGANIZATION: "organization";
|
|
50035
50017
|
};
|
|
@@ -50110,17 +50092,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
50110
50092
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
50111
50093
|
|
|
50112
50094
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
50113
|
-
bootstrapUser?:
|
|
50114
|
-
bootstrapUserGroup?:
|
|
50115
|
-
identityProvider?:
|
|
50116
|
-
}
|
|
50117
|
-
|
|
50118
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
50119
|
-
data: JsonApiUserLinkage | null;
|
|
50120
|
-
}
|
|
50121
|
-
|
|
50122
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
50123
|
-
data: JsonApiUserGroupLinkage | null;
|
|
50095
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
50096
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
50097
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
50124
50098
|
}
|
|
50125
50099
|
|
|
50126
50100
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -50141,14 +50115,37 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
50141
50115
|
* API identifier of an object
|
|
50142
50116
|
*/
|
|
50143
50117
|
id: string;
|
|
50144
|
-
attributes?:
|
|
50145
|
-
relationships?:
|
|
50118
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
50119
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
50120
|
+
}
|
|
50121
|
+
|
|
50122
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
50123
|
+
name?: string | null;
|
|
50124
|
+
hostname?: string;
|
|
50125
|
+
allowedOrigins?: Array<string>;
|
|
50126
|
+
/**
|
|
50127
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
50128
|
+
* @deprecated
|
|
50129
|
+
*/
|
|
50130
|
+
earlyAccess?: string | null;
|
|
50131
|
+
/**
|
|
50132
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
50133
|
+
*/
|
|
50134
|
+
earlyAccessValues?: Array<string> | null;
|
|
50146
50135
|
}
|
|
50147
50136
|
|
|
50148
50137
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
50149
50138
|
data: JsonApiOrganizationPatch;
|
|
50150
50139
|
}
|
|
50151
50140
|
|
|
50141
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
50142
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
50143
|
+
}
|
|
50144
|
+
|
|
50145
|
+
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
50146
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
50147
|
+
}
|
|
50148
|
+
|
|
50152
50149
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
50153
50150
|
readonly ORGANIZATION: "organization";
|
|
50154
50151
|
};
|
|
@@ -50167,9 +50164,55 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
50167
50164
|
* API identifier of an object
|
|
50168
50165
|
*/
|
|
50169
50166
|
id: string;
|
|
50170
|
-
attributes?:
|
|
50167
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50171
50168
|
}
|
|
50172
50169
|
|
|
50170
|
+
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
50171
|
+
/**
|
|
50172
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50173
|
+
*/
|
|
50174
|
+
content?: object;
|
|
50175
|
+
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
50176
|
+
}
|
|
50177
|
+
|
|
50178
|
+
export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
50179
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
50180
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50181
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50182
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50183
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50184
|
+
readonly LOCALE: "LOCALE";
|
|
50185
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50186
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50187
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50188
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50189
|
+
readonly WEEK_START: "WEEK_START";
|
|
50190
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50191
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50192
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50193
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50194
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50195
|
+
readonly ALERT: "ALERT";
|
|
50196
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
50197
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50198
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50199
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50200
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50201
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50202
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50203
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50204
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50205
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50206
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50207
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50208
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50209
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50210
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50211
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50212
|
+
};
|
|
50213
|
+
|
|
50214
|
+
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
50215
|
+
|
|
50173
50216
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
50174
50217
|
data: JsonApiOrganizationSettingIn;
|
|
50175
50218
|
}
|
|
@@ -50192,7 +50235,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
50192
50235
|
* API identifier of an object
|
|
50193
50236
|
*/
|
|
50194
50237
|
id: string;
|
|
50195
|
-
attributes?:
|
|
50238
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50196
50239
|
}
|
|
50197
50240
|
|
|
50198
50241
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -50206,7 +50249,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
50206
50249
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
50207
50250
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
50208
50251
|
links?: ListLinks;
|
|
50209
|
-
meta?:
|
|
50252
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50210
50253
|
}
|
|
50211
50254
|
|
|
50212
50255
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -50224,7 +50267,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
50224
50267
|
* API identifier of an object
|
|
50225
50268
|
*/
|
|
50226
50269
|
id: string;
|
|
50227
|
-
attributes?:
|
|
50270
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50228
50271
|
links?: ObjectLinks;
|
|
50229
50272
|
}
|
|
50230
50273
|
|
|
@@ -50246,7 +50289,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
50246
50289
|
* API identifier of an object
|
|
50247
50290
|
*/
|
|
50248
50291
|
id: string;
|
|
50249
|
-
attributes?:
|
|
50292
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50250
50293
|
}
|
|
50251
50294
|
|
|
50252
50295
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -50271,7 +50314,7 @@ export declare interface JsonApiThemeIn {
|
|
|
50271
50314
|
* API identifier of an object
|
|
50272
50315
|
*/
|
|
50273
50316
|
id: string;
|
|
50274
|
-
attributes:
|
|
50317
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
50275
50318
|
}
|
|
50276
50319
|
|
|
50277
50320
|
export declare interface JsonApiThemeInDocument {
|
|
@@ -50296,7 +50339,7 @@ export declare interface JsonApiThemeOut {
|
|
|
50296
50339
|
* API identifier of an object
|
|
50297
50340
|
*/
|
|
50298
50341
|
id: string;
|
|
50299
|
-
attributes:
|
|
50342
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
50300
50343
|
}
|
|
50301
50344
|
|
|
50302
50345
|
export declare interface JsonApiThemeOutDocument {
|
|
@@ -50310,7 +50353,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
50310
50353
|
export declare interface JsonApiThemeOutList {
|
|
50311
50354
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
50312
50355
|
links?: ListLinks;
|
|
50313
|
-
meta?:
|
|
50356
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50314
50357
|
}
|
|
50315
50358
|
|
|
50316
50359
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -50328,7 +50371,7 @@ export declare interface JsonApiThemeOutWithLinks {
|
|
|
50328
50371
|
* API identifier of an object
|
|
50329
50372
|
*/
|
|
50330
50373
|
id: string;
|
|
50331
|
-
attributes:
|
|
50374
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
50332
50375
|
links?: ObjectLinks;
|
|
50333
50376
|
}
|
|
50334
50377
|
|
|
@@ -50375,14 +50418,31 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
50375
50418
|
* API identifier of an object
|
|
50376
50419
|
*/
|
|
50377
50420
|
id: string;
|
|
50378
|
-
attributes:
|
|
50379
|
-
relationships?:
|
|
50421
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
50422
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
50423
|
+
}
|
|
50424
|
+
|
|
50425
|
+
export declare interface JsonApiUserDataFilterInAttributes {
|
|
50426
|
+
title?: string;
|
|
50427
|
+
description?: string;
|
|
50428
|
+
tags?: Array<string>;
|
|
50429
|
+
areRelationsValid?: boolean;
|
|
50430
|
+
maql: string;
|
|
50380
50431
|
}
|
|
50381
50432
|
|
|
50382
50433
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
50383
50434
|
data: JsonApiUserDataFilterIn;
|
|
50384
50435
|
}
|
|
50385
50436
|
|
|
50437
|
+
export declare interface JsonApiUserDataFilterInRelationships {
|
|
50438
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
50439
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
50440
|
+
}
|
|
50441
|
+
|
|
50442
|
+
export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
50443
|
+
data: JsonApiUserGroupLinkage | null;
|
|
50444
|
+
}
|
|
50445
|
+
|
|
50386
50446
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
50387
50447
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50388
50448
|
};
|
|
@@ -50402,7 +50462,7 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
50402
50462
|
*/
|
|
50403
50463
|
id: string;
|
|
50404
50464
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50405
|
-
attributes:
|
|
50465
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
50406
50466
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50407
50467
|
}
|
|
50408
50468
|
|
|
@@ -50426,7 +50486,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
50426
50486
|
export declare interface JsonApiUserDataFilterOutList {
|
|
50427
50487
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
50428
50488
|
links?: ListLinks;
|
|
50429
|
-
meta?:
|
|
50489
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50430
50490
|
/**
|
|
50431
50491
|
* Included resources
|
|
50432
50492
|
*/
|
|
@@ -50434,8 +50494,8 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
50434
50494
|
}
|
|
50435
50495
|
|
|
50436
50496
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
50437
|
-
user?:
|
|
50438
|
-
userGroup?:
|
|
50497
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
50498
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
50439
50499
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
50440
50500
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
50441
50501
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -50459,7 +50519,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
50459
50519
|
*/
|
|
50460
50520
|
id: string;
|
|
50461
50521
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50462
|
-
attributes:
|
|
50522
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
50463
50523
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50464
50524
|
links?: ObjectLinks;
|
|
50465
50525
|
}
|
|
@@ -50483,7 +50543,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
50483
50543
|
*/
|
|
50484
50544
|
id: string;
|
|
50485
50545
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
50486
|
-
relationships?:
|
|
50546
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
50487
50547
|
}
|
|
50488
50548
|
|
|
50489
50549
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -50516,27 +50576,14 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
50516
50576
|
* API identifier of an object
|
|
50517
50577
|
*/
|
|
50518
50578
|
id?: string;
|
|
50519
|
-
attributes:
|
|
50520
|
-
relationships?:
|
|
50521
|
-
}
|
|
50522
|
-
|
|
50523
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
50524
|
-
title?: string;
|
|
50525
|
-
description?: string;
|
|
50526
|
-
tags?: Array<string>;
|
|
50527
|
-
areRelationsValid?: boolean;
|
|
50528
|
-
maql: string;
|
|
50579
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
50580
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
50529
50581
|
}
|
|
50530
50582
|
|
|
50531
50583
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
50532
50584
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
50533
50585
|
}
|
|
50534
50586
|
|
|
50535
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
50536
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
50537
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
50538
|
-
}
|
|
50539
|
-
|
|
50540
50587
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
50541
50588
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50542
50589
|
};
|
|
@@ -50555,14 +50602,29 @@ export declare interface JsonApiUserGroupIn {
|
|
|
50555
50602
|
* API identifier of an object
|
|
50556
50603
|
*/
|
|
50557
50604
|
id: string;
|
|
50558
|
-
attributes?:
|
|
50559
|
-
relationships?:
|
|
50605
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
50606
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
50607
|
+
}
|
|
50608
|
+
|
|
50609
|
+
export declare interface JsonApiUserGroupInAttributes {
|
|
50610
|
+
name?: string;
|
|
50560
50611
|
}
|
|
50561
50612
|
|
|
50562
50613
|
export declare interface JsonApiUserGroupInDocument {
|
|
50563
50614
|
data: JsonApiUserGroupIn;
|
|
50564
50615
|
}
|
|
50565
50616
|
|
|
50617
|
+
export declare interface JsonApiUserGroupInRelationships {
|
|
50618
|
+
parents?: JsonApiUserGroupInRelationshipsParents;
|
|
50619
|
+
}
|
|
50620
|
+
|
|
50621
|
+
export declare interface JsonApiUserGroupInRelationshipsParents {
|
|
50622
|
+
/**
|
|
50623
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50624
|
+
*/
|
|
50625
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
50626
|
+
}
|
|
50627
|
+
|
|
50566
50628
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
50567
50629
|
readonly USER_GROUP: "userGroup";
|
|
50568
50630
|
};
|
|
@@ -50595,12 +50657,8 @@ export declare interface JsonApiUserGroupOut {
|
|
|
50595
50657
|
* API identifier of an object
|
|
50596
50658
|
*/
|
|
50597
50659
|
id: string;
|
|
50598
|
-
attributes?:
|
|
50599
|
-
relationships?:
|
|
50600
|
-
}
|
|
50601
|
-
|
|
50602
|
-
export declare interface JsonApiUserGroupOutAttributes {
|
|
50603
|
-
name?: string;
|
|
50660
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
50661
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
50604
50662
|
}
|
|
50605
50663
|
|
|
50606
50664
|
export declare interface JsonApiUserGroupOutDocument {
|
|
@@ -50618,17 +50676,13 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
50618
50676
|
export declare interface JsonApiUserGroupOutList {
|
|
50619
50677
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
50620
50678
|
links?: ListLinks;
|
|
50621
|
-
meta?:
|
|
50679
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50622
50680
|
/**
|
|
50623
50681
|
* Included resources
|
|
50624
50682
|
*/
|
|
50625
50683
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50626
50684
|
}
|
|
50627
50685
|
|
|
50628
|
-
export declare interface JsonApiUserGroupOutRelationships {
|
|
50629
|
-
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
50630
|
-
}
|
|
50631
|
-
|
|
50632
50686
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
50633
50687
|
readonly USER_GROUP: "userGroup";
|
|
50634
50688
|
};
|
|
@@ -50644,8 +50698,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
|
|
|
50644
50698
|
* API identifier of an object
|
|
50645
50699
|
*/
|
|
50646
50700
|
id: string;
|
|
50647
|
-
attributes?:
|
|
50648
|
-
relationships?:
|
|
50701
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
50702
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
50649
50703
|
links?: ObjectLinks;
|
|
50650
50704
|
}
|
|
50651
50705
|
|
|
@@ -50667,8 +50721,8 @@ export declare interface JsonApiUserGroupPatch {
|
|
|
50667
50721
|
* API identifier of an object
|
|
50668
50722
|
*/
|
|
50669
50723
|
id: string;
|
|
50670
|
-
attributes?:
|
|
50671
|
-
relationships?:
|
|
50724
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
50725
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
50672
50726
|
}
|
|
50673
50727
|
|
|
50674
50728
|
export declare interface JsonApiUserGroupPatchDocument {
|
|
@@ -50727,7 +50781,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
50727
50781
|
export declare interface JsonApiUserIdentifierOutList {
|
|
50728
50782
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
50729
50783
|
links?: ListLinks;
|
|
50730
|
-
meta?:
|
|
50784
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50731
50785
|
}
|
|
50732
50786
|
|
|
50733
50787
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -50767,14 +50821,25 @@ export declare interface JsonApiUserIn {
|
|
|
50767
50821
|
* API identifier of an object
|
|
50768
50822
|
*/
|
|
50769
50823
|
id: string;
|
|
50770
|
-
attributes?:
|
|
50771
|
-
relationships?:
|
|
50824
|
+
attributes?: JsonApiUserInAttributes;
|
|
50825
|
+
relationships?: JsonApiUserInRelationships;
|
|
50826
|
+
}
|
|
50827
|
+
|
|
50828
|
+
export declare interface JsonApiUserInAttributes {
|
|
50829
|
+
authenticationId?: string;
|
|
50830
|
+
firstname?: string;
|
|
50831
|
+
lastname?: string;
|
|
50832
|
+
email?: string;
|
|
50772
50833
|
}
|
|
50773
50834
|
|
|
50774
50835
|
export declare interface JsonApiUserInDocument {
|
|
50775
50836
|
data: JsonApiUserIn;
|
|
50776
50837
|
}
|
|
50777
50838
|
|
|
50839
|
+
export declare interface JsonApiUserInRelationships {
|
|
50840
|
+
userGroups?: JsonApiUserGroupInRelationshipsParents;
|
|
50841
|
+
}
|
|
50842
|
+
|
|
50778
50843
|
export declare const JsonApiUserInTypeEnum: {
|
|
50779
50844
|
readonly USER: "user";
|
|
50780
50845
|
};
|
|
@@ -50807,15 +50872,8 @@ export declare interface JsonApiUserOut {
|
|
|
50807
50872
|
* API identifier of an object
|
|
50808
50873
|
*/
|
|
50809
50874
|
id: string;
|
|
50810
|
-
attributes?:
|
|
50811
|
-
relationships?:
|
|
50812
|
-
}
|
|
50813
|
-
|
|
50814
|
-
export declare interface JsonApiUserOutAttributes {
|
|
50815
|
-
authenticationId?: string;
|
|
50816
|
-
firstname?: string;
|
|
50817
|
-
lastname?: string;
|
|
50818
|
-
email?: string;
|
|
50875
|
+
attributes?: JsonApiUserInAttributes;
|
|
50876
|
+
relationships?: JsonApiUserInRelationships;
|
|
50819
50877
|
}
|
|
50820
50878
|
|
|
50821
50879
|
export declare interface JsonApiUserOutDocument {
|
|
@@ -50833,24 +50891,13 @@ export declare interface JsonApiUserOutDocument {
|
|
|
50833
50891
|
export declare interface JsonApiUserOutList {
|
|
50834
50892
|
data: Array<JsonApiUserOutWithLinks>;
|
|
50835
50893
|
links?: ListLinks;
|
|
50836
|
-
meta?:
|
|
50894
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50837
50895
|
/**
|
|
50838
50896
|
* Included resources
|
|
50839
50897
|
*/
|
|
50840
50898
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50841
50899
|
}
|
|
50842
50900
|
|
|
50843
|
-
export declare interface JsonApiUserOutRelationships {
|
|
50844
|
-
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
50845
|
-
}
|
|
50846
|
-
|
|
50847
|
-
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
50848
|
-
/**
|
|
50849
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50850
|
-
*/
|
|
50851
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
50852
|
-
}
|
|
50853
|
-
|
|
50854
50901
|
export declare const JsonApiUserOutTypeEnum: {
|
|
50855
50902
|
readonly USER: "user";
|
|
50856
50903
|
};
|
|
@@ -50866,8 +50913,8 @@ export declare interface JsonApiUserOutWithLinks {
|
|
|
50866
50913
|
* API identifier of an object
|
|
50867
50914
|
*/
|
|
50868
50915
|
id: string;
|
|
50869
|
-
attributes?:
|
|
50870
|
-
relationships?:
|
|
50916
|
+
attributes?: JsonApiUserInAttributes;
|
|
50917
|
+
relationships?: JsonApiUserInRelationships;
|
|
50871
50918
|
links?: ObjectLinks;
|
|
50872
50919
|
}
|
|
50873
50920
|
|
|
@@ -50889,8 +50936,8 @@ export declare interface JsonApiUserPatch {
|
|
|
50889
50936
|
* API identifier of an object
|
|
50890
50937
|
*/
|
|
50891
50938
|
id: string;
|
|
50892
|
-
attributes?:
|
|
50893
|
-
relationships?:
|
|
50939
|
+
attributes?: JsonApiUserInAttributes;
|
|
50940
|
+
relationships?: JsonApiUserInRelationships;
|
|
50894
50941
|
}
|
|
50895
50942
|
|
|
50896
50943
|
export declare interface JsonApiUserPatchDocument {
|
|
@@ -50915,55 +50962,9 @@ export declare interface JsonApiUserSettingIn {
|
|
|
50915
50962
|
* API identifier of an object
|
|
50916
50963
|
*/
|
|
50917
50964
|
id: string;
|
|
50918
|
-
attributes?:
|
|
50919
|
-
}
|
|
50920
|
-
|
|
50921
|
-
export declare interface JsonApiUserSettingInAttributes {
|
|
50922
|
-
/**
|
|
50923
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50924
|
-
*/
|
|
50925
|
-
content?: object;
|
|
50926
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
50965
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50927
50966
|
}
|
|
50928
50967
|
|
|
50929
|
-
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
50930
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
50931
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50932
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50933
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50934
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50935
|
-
readonly LOCALE: "LOCALE";
|
|
50936
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50937
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50938
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50939
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50940
|
-
readonly WEEK_START: "WEEK_START";
|
|
50941
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50942
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50943
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50944
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50945
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50946
|
-
readonly ALERT: "ALERT";
|
|
50947
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
50948
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50949
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50950
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50951
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50952
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50953
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50954
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50955
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50956
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50957
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50958
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50959
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50960
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50961
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50962
|
-
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50963
|
-
};
|
|
50964
|
-
|
|
50965
|
-
export declare type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
50966
|
-
|
|
50967
50968
|
export declare interface JsonApiUserSettingInDocument {
|
|
50968
50969
|
data: JsonApiUserSettingIn;
|
|
50969
50970
|
}
|
|
@@ -50986,7 +50987,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
50986
50987
|
* API identifier of an object
|
|
50987
50988
|
*/
|
|
50988
50989
|
id: string;
|
|
50989
|
-
attributes?:
|
|
50990
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50990
50991
|
}
|
|
50991
50992
|
|
|
50992
50993
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -51000,7 +51001,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
51000
51001
|
export declare interface JsonApiUserSettingOutList {
|
|
51001
51002
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
51002
51003
|
links?: ListLinks;
|
|
51003
|
-
meta?:
|
|
51004
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51004
51005
|
}
|
|
51005
51006
|
|
|
51006
51007
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -51018,7 +51019,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
51018
51019
|
* API identifier of an object
|
|
51019
51020
|
*/
|
|
51020
51021
|
id: string;
|
|
51021
|
-
attributes?:
|
|
51022
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
51022
51023
|
links?: ObjectLinks;
|
|
51023
51024
|
}
|
|
51024
51025
|
|
|
@@ -51040,7 +51041,19 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
51040
51041
|
* API identifier of an object
|
|
51041
51042
|
*/
|
|
51042
51043
|
id: string;
|
|
51043
|
-
attributes:
|
|
51044
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
51045
|
+
}
|
|
51046
|
+
|
|
51047
|
+
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
51048
|
+
title?: string;
|
|
51049
|
+
description?: string;
|
|
51050
|
+
tags?: Array<string>;
|
|
51051
|
+
areRelationsValid?: boolean;
|
|
51052
|
+
/**
|
|
51053
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51054
|
+
*/
|
|
51055
|
+
content: object;
|
|
51056
|
+
isHidden?: boolean;
|
|
51044
51057
|
}
|
|
51045
51058
|
|
|
51046
51059
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -51113,7 +51126,7 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
51113
51126
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
51114
51127
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
51115
51128
|
links?: ListLinks;
|
|
51116
|
-
meta?:
|
|
51129
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51117
51130
|
/**
|
|
51118
51131
|
* Included resources
|
|
51119
51132
|
*/
|
|
@@ -51267,19 +51280,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
51267
51280
|
* API identifier of an object
|
|
51268
51281
|
*/
|
|
51269
51282
|
id?: string;
|
|
51270
|
-
attributes:
|
|
51271
|
-
}
|
|
51272
|
-
|
|
51273
|
-
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
51274
|
-
title?: string;
|
|
51275
|
-
description?: string;
|
|
51276
|
-
tags?: Array<string>;
|
|
51277
|
-
areRelationsValid?: boolean;
|
|
51278
|
-
/**
|
|
51279
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51280
|
-
*/
|
|
51281
|
-
content: object;
|
|
51282
|
-
isHidden?: boolean;
|
|
51283
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
51283
51284
|
}
|
|
51284
51285
|
|
|
51285
51286
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -51319,7 +51320,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
51319
51320
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
51320
51321
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
51321
51322
|
links?: ListLinks;
|
|
51322
|
-
meta?:
|
|
51323
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51323
51324
|
/**
|
|
51324
51325
|
* Included resources
|
|
51325
51326
|
*/
|
|
@@ -51327,7 +51328,7 @@ export declare interface JsonApiWorkspaceAutomationOutList {
|
|
|
51327
51328
|
}
|
|
51328
51329
|
|
|
51329
51330
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
51330
|
-
workspace?:
|
|
51331
|
+
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
51331
51332
|
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
51332
51333
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
51333
51334
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -51441,7 +51442,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
51441
51442
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
51442
51443
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
51443
51444
|
links?: ListLinks;
|
|
51444
|
-
meta?:
|
|
51445
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51445
51446
|
/**
|
|
51446
51447
|
* Included resources
|
|
51447
51448
|
*/
|
|
@@ -51598,7 +51599,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
51598
51599
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
51599
51600
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
51600
51601
|
links?: ListLinks;
|
|
51601
|
-
meta?:
|
|
51602
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51602
51603
|
/**
|
|
51603
51604
|
* Included resources
|
|
51604
51605
|
*/
|
|
@@ -51670,14 +51671,56 @@ export declare interface JsonApiWorkspaceIn {
|
|
|
51670
51671
|
* API identifier of an object
|
|
51671
51672
|
*/
|
|
51672
51673
|
id: string;
|
|
51673
|
-
attributes?:
|
|
51674
|
-
relationships?:
|
|
51674
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
51675
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
51676
|
+
}
|
|
51677
|
+
|
|
51678
|
+
export declare interface JsonApiWorkspaceInAttributes {
|
|
51679
|
+
name?: string | null;
|
|
51680
|
+
/**
|
|
51681
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51682
|
+
* @deprecated
|
|
51683
|
+
*/
|
|
51684
|
+
earlyAccess?: string | null;
|
|
51685
|
+
/**
|
|
51686
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
51687
|
+
*/
|
|
51688
|
+
earlyAccessValues?: Array<string> | null;
|
|
51689
|
+
description?: string | null;
|
|
51690
|
+
/**
|
|
51691
|
+
* Custom prefix of entity identifiers in workspace
|
|
51692
|
+
*/
|
|
51693
|
+
prefix?: string | null;
|
|
51694
|
+
cacheExtraLimit?: number;
|
|
51695
|
+
dataSource?: JsonApiWorkspaceInAttributesDataSource;
|
|
51696
|
+
}
|
|
51697
|
+
|
|
51698
|
+
/**
|
|
51699
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51700
|
+
*/
|
|
51701
|
+
export declare interface JsonApiWorkspaceInAttributesDataSource {
|
|
51702
|
+
/**
|
|
51703
|
+
* The ID of the used data source.
|
|
51704
|
+
*/
|
|
51705
|
+
id: string;
|
|
51706
|
+
/**
|
|
51707
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51708
|
+
*/
|
|
51709
|
+
schemaPath?: Array<string>;
|
|
51675
51710
|
}
|
|
51676
51711
|
|
|
51677
51712
|
export declare interface JsonApiWorkspaceInDocument {
|
|
51678
51713
|
data: JsonApiWorkspaceIn;
|
|
51679
51714
|
}
|
|
51680
51715
|
|
|
51716
|
+
export declare interface JsonApiWorkspaceInRelationships {
|
|
51717
|
+
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
51718
|
+
}
|
|
51719
|
+
|
|
51720
|
+
export declare interface JsonApiWorkspaceInRelationshipsParent {
|
|
51721
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
51722
|
+
}
|
|
51723
|
+
|
|
51681
51724
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
51682
51725
|
readonly WORKSPACE: "workspace";
|
|
51683
51726
|
};
|
|
@@ -51711,42 +51754,8 @@ export declare interface JsonApiWorkspaceOut {
|
|
|
51711
51754
|
*/
|
|
51712
51755
|
id: string;
|
|
51713
51756
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51714
|
-
attributes?:
|
|
51715
|
-
relationships?:
|
|
51716
|
-
}
|
|
51717
|
-
|
|
51718
|
-
export declare interface JsonApiWorkspaceOutAttributes {
|
|
51719
|
-
name?: string | null;
|
|
51720
|
-
/**
|
|
51721
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51722
|
-
* @deprecated
|
|
51723
|
-
*/
|
|
51724
|
-
earlyAccess?: string | null;
|
|
51725
|
-
/**
|
|
51726
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
51727
|
-
*/
|
|
51728
|
-
earlyAccessValues?: Array<string> | null;
|
|
51729
|
-
description?: string | null;
|
|
51730
|
-
/**
|
|
51731
|
-
* Custom prefix of entity identifiers in workspace
|
|
51732
|
-
*/
|
|
51733
|
-
prefix?: string | null;
|
|
51734
|
-
cacheExtraLimit?: number;
|
|
51735
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
51736
|
-
}
|
|
51737
|
-
|
|
51738
|
-
/**
|
|
51739
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51740
|
-
*/
|
|
51741
|
-
export declare interface JsonApiWorkspaceOutAttributesDataSource {
|
|
51742
|
-
/**
|
|
51743
|
-
* The ID of the used data source.
|
|
51744
|
-
*/
|
|
51745
|
-
id: string;
|
|
51746
|
-
/**
|
|
51747
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51748
|
-
*/
|
|
51749
|
-
schemaPath?: Array<string>;
|
|
51757
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
51758
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
51750
51759
|
}
|
|
51751
51760
|
|
|
51752
51761
|
export declare interface JsonApiWorkspaceOutDocument {
|
|
@@ -51764,7 +51773,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
51764
51773
|
export declare interface JsonApiWorkspaceOutList {
|
|
51765
51774
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
51766
51775
|
links?: ListLinks;
|
|
51767
|
-
meta?:
|
|
51776
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51768
51777
|
/**
|
|
51769
51778
|
* Included resources
|
|
51770
51779
|
*/
|
|
@@ -51824,14 +51833,6 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
51824
51833
|
|
|
51825
51834
|
export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
|
|
51826
51835
|
|
|
51827
|
-
export declare interface JsonApiWorkspaceOutRelationships {
|
|
51828
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
51829
|
-
}
|
|
51830
|
-
|
|
51831
|
-
export declare interface JsonApiWorkspaceOutRelationshipsParent {
|
|
51832
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
51833
|
-
}
|
|
51834
|
-
|
|
51835
51836
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
51836
51837
|
readonly WORKSPACE: "workspace";
|
|
51837
51838
|
};
|
|
@@ -51848,8 +51849,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
|
|
|
51848
51849
|
*/
|
|
51849
51850
|
id: string;
|
|
51850
51851
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51851
|
-
attributes?:
|
|
51852
|
-
relationships?:
|
|
51852
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
51853
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
51853
51854
|
links?: ObjectLinks;
|
|
51854
51855
|
}
|
|
51855
51856
|
|
|
@@ -51871,8 +51872,8 @@ export declare interface JsonApiWorkspacePatch {
|
|
|
51871
51872
|
* API identifier of an object
|
|
51872
51873
|
*/
|
|
51873
51874
|
id: string;
|
|
51874
|
-
attributes?:
|
|
51875
|
-
relationships?:
|
|
51875
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
51876
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
51876
51877
|
}
|
|
51877
51878
|
|
|
51878
51879
|
export declare interface JsonApiWorkspacePatchDocument {
|
|
@@ -51897,7 +51898,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
51897
51898
|
* API identifier of an object
|
|
51898
51899
|
*/
|
|
51899
51900
|
id: string;
|
|
51900
|
-
attributes?:
|
|
51901
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
51901
51902
|
}
|
|
51902
51903
|
|
|
51903
51904
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -51923,7 +51924,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
51923
51924
|
*/
|
|
51924
51925
|
id: string;
|
|
51925
51926
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51926
|
-
attributes?:
|
|
51927
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
51927
51928
|
}
|
|
51928
51929
|
|
|
51929
51930
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -51937,7 +51938,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
51937
51938
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
51938
51939
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
51939
51940
|
links?: ListLinks;
|
|
51940
|
-
meta?:
|
|
51941
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
51941
51942
|
}
|
|
51942
51943
|
|
|
51943
51944
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -51956,7 +51957,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
51956
51957
|
*/
|
|
51957
51958
|
id: string;
|
|
51958
51959
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51959
|
-
attributes?:
|
|
51960
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
51960
51961
|
links?: ObjectLinks;
|
|
51961
51962
|
}
|
|
51962
51963
|
|
|
@@ -51978,7 +51979,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
51978
51979
|
* API identifier of an object
|
|
51979
51980
|
*/
|
|
51980
51981
|
id: string;
|
|
51981
|
-
attributes?:
|
|
51982
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
51982
51983
|
}
|
|
51983
51984
|
|
|
51984
51985
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -52003,7 +52004,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
52003
52004
|
* API identifier of an object
|
|
52004
52005
|
*/
|
|
52005
52006
|
id?: string;
|
|
52006
|
-
attributes?:
|
|
52007
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
52007
52008
|
}
|
|
52008
52009
|
|
|
52009
52010
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|