@gooddata/api-client-tiger 10.27.0-alpha.39 → 10.27.0-alpha.40

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.
@@ -38137,6 +38137,44 @@ export declare interface ExecutionResult {
38137
38137
  * @memberof ExecutionResult
38138
38138
  */
38139
38139
  paging: ExecutionResultPaging;
38140
+ /**
38141
+ *
38142
+ * @type {ExecutionResultMetadata}
38143
+ * @memberof ExecutionResult
38144
+ */
38145
+ metadata: ExecutionResultMetadata;
38146
+ }
38147
+
38148
+ /**
38149
+ * A piece of extra information related to the results (e.g. debug information, warnings, etc.).
38150
+ * @export
38151
+ * @interface ExecutionResultDataSourceMessage
38152
+ */
38153
+ export declare interface ExecutionResultDataSourceMessage {
38154
+ /**
38155
+ * Id correlating different pieces of supplementary info together.
38156
+ * @type {string}
38157
+ * @memberof ExecutionResultDataSourceMessage
38158
+ */
38159
+ correlationId: string;
38160
+ /**
38161
+ * Information about what part of the system created this piece of supplementary info.
38162
+ * @type {string}
38163
+ * @memberof ExecutionResultDataSourceMessage
38164
+ */
38165
+ source: string;
38166
+ /**
38167
+ * Type of the supplementary info instance. There are currently no well-known values for this, but there might be some in the future.
38168
+ * @type {string}
38169
+ * @memberof ExecutionResultDataSourceMessage
38170
+ */
38171
+ type: string;
38172
+ /**
38173
+ * Data of this particular supplementary info item: a free-form JSON specific to the particular supplementary info item type.
38174
+ * @type {object}
38175
+ * @memberof ExecutionResultDataSourceMessage
38176
+ */
38177
+ data?: object;
38140
38178
  }
38141
38179
 
38142
38180
  /**
@@ -38172,6 +38210,20 @@ export declare interface ExecutionResultGrandTotal {
38172
38210
  */
38173
38211
  export declare type ExecutionResultHeader = AttributeExecutionResultHeader | MeasureExecutionResultHeader | TotalExecutionResultHeader;
38174
38212
 
38213
+ /**
38214
+ * Additional metadata for the particular execution result.
38215
+ * @export
38216
+ * @interface ExecutionResultMetadata
38217
+ */
38218
+ export declare interface ExecutionResultMetadata {
38219
+ /**
38220
+ * Additional information sent by the underlying data source.
38221
+ * @type {Array<ExecutionResultDataSourceMessage>}
38222
+ * @memberof ExecutionResultMetadata
38223
+ */
38224
+ dataSourceMessages: Array<ExecutionResultDataSourceMessage>;
38225
+ }
38226
+
38175
38227
  /**
38176
38228
  * A paging information related to the data presented in the execution result. These paging information are multi-dimensional.
38177
38229
  * @export
@@ -42228,10 +42280,48 @@ export declare interface JsonApiAnalyticalDashboardIn {
42228
42280
  id: string;
42229
42281
  /**
42230
42282
  *
42231
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
42283
+ * @type {JsonApiAnalyticalDashboardInAttributes}
42232
42284
  * @memberof JsonApiAnalyticalDashboardIn
42233
42285
  */
42234
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
42286
+ attributes: JsonApiAnalyticalDashboardInAttributes;
42287
+ }
42288
+
42289
+ /**
42290
+ *
42291
+ * @export
42292
+ * @interface JsonApiAnalyticalDashboardInAttributes
42293
+ */
42294
+ export declare interface JsonApiAnalyticalDashboardInAttributes {
42295
+ /**
42296
+ *
42297
+ * @type {string}
42298
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42299
+ */
42300
+ title?: string;
42301
+ /**
42302
+ *
42303
+ * @type {string}
42304
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42305
+ */
42306
+ description?: string;
42307
+ /**
42308
+ *
42309
+ * @type {Array<string>}
42310
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42311
+ */
42312
+ tags?: Array<string>;
42313
+ /**
42314
+ *
42315
+ * @type {boolean}
42316
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42317
+ */
42318
+ areRelationsValid?: boolean;
42319
+ /**
42320
+ * Free-form JSON content. Maximum supported length is 250000 characters.
42321
+ * @type {object}
42322
+ * @memberof JsonApiAnalyticalDashboardInAttributes
42323
+ */
42324
+ content: object;
42235
42325
  }
42236
42326
 
42237
42327
  /**
@@ -42370,10 +42460,10 @@ export declare interface JsonApiAnalyticalDashboardOutList {
42370
42460
  links?: ListLinks;
42371
42461
  /**
42372
42462
  *
42373
- * @type {JsonApiApiTokenOutListMeta}
42463
+ * @type {JsonApiColorPaletteOutListMeta}
42374
42464
  * @memberof JsonApiAnalyticalDashboardOutList
42375
42465
  */
42376
- meta?: JsonApiApiTokenOutListMeta;
42466
+ meta?: JsonApiColorPaletteOutListMeta;
42377
42467
  /**
42378
42468
  * Included resources
42379
42469
  * @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
@@ -42708,48 +42798,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
42708
42798
  id?: string;
42709
42799
  /**
42710
42800
  *
42711
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
42801
+ * @type {JsonApiAnalyticalDashboardInAttributes}
42712
42802
  * @memberof JsonApiAnalyticalDashboardPostOptionalId
42713
42803
  */
42714
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
42715
- }
42716
-
42717
- /**
42718
- *
42719
- * @export
42720
- * @interface JsonApiAnalyticalDashboardPostOptionalIdAttributes
42721
- */
42722
- export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
42723
- /**
42724
- *
42725
- * @type {string}
42726
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
42727
- */
42728
- title?: string;
42729
- /**
42730
- *
42731
- * @type {string}
42732
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
42733
- */
42734
- description?: string;
42735
- /**
42736
- *
42737
- * @type {Array<string>}
42738
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
42739
- */
42740
- tags?: Array<string>;
42741
- /**
42742
- *
42743
- * @type {boolean}
42744
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
42745
- */
42746
- areRelationsValid?: boolean;
42747
- /**
42748
- * Free-form JSON content. Maximum supported length is 250000 characters.
42749
- * @type {object}
42750
- * @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
42751
- */
42752
- content: object;
42804
+ attributes: JsonApiAnalyticalDashboardInAttributes;
42753
42805
  }
42754
42806
 
42755
42807
  /**
@@ -42899,24 +42951,10 @@ export declare interface JsonApiApiTokenOutList {
42899
42951
  links?: ListLinks;
42900
42952
  /**
42901
42953
  *
42902
- * @type {JsonApiApiTokenOutListMeta}
42954
+ * @type {JsonApiColorPaletteOutListMeta}
42903
42955
  * @memberof JsonApiApiTokenOutList
42904
42956
  */
42905
- meta?: JsonApiApiTokenOutListMeta;
42906
- }
42907
-
42908
- /**
42909
- *
42910
- * @export
42911
- * @interface JsonApiApiTokenOutListMeta
42912
- */
42913
- export declare interface JsonApiApiTokenOutListMeta {
42914
- /**
42915
- *
42916
- * @type {PageMetadata}
42917
- * @memberof JsonApiApiTokenOutListMeta
42918
- */
42919
- page?: PageMetadata;
42957
+ meta?: JsonApiColorPaletteOutListMeta;
42920
42958
  }
42921
42959
 
42922
42960
  export declare const JsonApiApiTokenOutTypeEnum: {
@@ -43213,10 +43251,10 @@ export declare interface JsonApiAttributeHierarchyOutList {
43213
43251
  links?: ListLinks;
43214
43252
  /**
43215
43253
  *
43216
- * @type {JsonApiApiTokenOutListMeta}
43254
+ * @type {JsonApiColorPaletteOutListMeta}
43217
43255
  * @memberof JsonApiAttributeHierarchyOutList
43218
43256
  */
43219
- meta?: JsonApiApiTokenOutListMeta;
43257
+ meta?: JsonApiColorPaletteOutListMeta;
43220
43258
  /**
43221
43259
  * Included resources
43222
43260
  * @type {Array<JsonApiAttributeHierarchyOutIncludes>}
@@ -43570,10 +43608,10 @@ export declare interface JsonApiAttributeOutList {
43570
43608
  links?: ListLinks;
43571
43609
  /**
43572
43610
  *
43573
- * @type {JsonApiApiTokenOutListMeta}
43611
+ * @type {JsonApiColorPaletteOutListMeta}
43574
43612
  * @memberof JsonApiAttributeOutList
43575
43613
  */
43576
- meta?: JsonApiApiTokenOutListMeta;
43614
+ meta?: JsonApiColorPaletteOutListMeta;
43577
43615
  /**
43578
43616
  * Included resources
43579
43617
  * @type {Array<JsonApiAttributeOutIncludes>}
@@ -44288,10 +44326,10 @@ export declare interface JsonApiAutomationOutList {
44288
44326
  links?: ListLinks;
44289
44327
  /**
44290
44328
  *
44291
- * @type {JsonApiApiTokenOutListMeta}
44329
+ * @type {JsonApiColorPaletteOutListMeta}
44292
44330
  * @memberof JsonApiAutomationOutList
44293
44331
  */
44294
- meta?: JsonApiApiTokenOutListMeta;
44332
+ meta?: JsonApiColorPaletteOutListMeta;
44295
44333
  /**
44296
44334
  * Included resources
44297
44335
  * @type {Array<JsonApiAutomationOutIncludes>}
@@ -44479,30 +44517,10 @@ export declare interface JsonApiColorPaletteIn {
44479
44517
  id: string;
44480
44518
  /**
44481
44519
  *
44482
- * @type {JsonApiColorPaletteInAttributes}
44520
+ * @type {JsonApiColorPaletteOutAttributes}
44483
44521
  * @memberof JsonApiColorPaletteIn
44484
44522
  */
44485
- attributes: JsonApiColorPaletteInAttributes;
44486
- }
44487
-
44488
- /**
44489
- *
44490
- * @export
44491
- * @interface JsonApiColorPaletteInAttributes
44492
- */
44493
- export declare interface JsonApiColorPaletteInAttributes {
44494
- /**
44495
- *
44496
- * @type {string}
44497
- * @memberof JsonApiColorPaletteInAttributes
44498
- */
44499
- name: string;
44500
- /**
44501
- * Free-form JSON content. Maximum supported length is 15000 characters.
44502
- * @type {object}
44503
- * @memberof JsonApiColorPaletteInAttributes
44504
- */
44505
- content: object;
44523
+ attributes: JsonApiColorPaletteOutAttributes;
44506
44524
  }
44507
44525
 
44508
44526
  /**
@@ -44545,10 +44563,30 @@ export declare interface JsonApiColorPaletteOut {
44545
44563
  id: string;
44546
44564
  /**
44547
44565
  *
44548
- * @type {JsonApiColorPaletteInAttributes}
44566
+ * @type {JsonApiColorPaletteOutAttributes}
44549
44567
  * @memberof JsonApiColorPaletteOut
44550
44568
  */
44551
- attributes: JsonApiColorPaletteInAttributes;
44569
+ attributes: JsonApiColorPaletteOutAttributes;
44570
+ }
44571
+
44572
+ /**
44573
+ *
44574
+ * @export
44575
+ * @interface JsonApiColorPaletteOutAttributes
44576
+ */
44577
+ export declare interface JsonApiColorPaletteOutAttributes {
44578
+ /**
44579
+ *
44580
+ * @type {string}
44581
+ * @memberof JsonApiColorPaletteOutAttributes
44582
+ */
44583
+ name: string;
44584
+ /**
44585
+ * Free-form JSON content. Maximum supported length is 15000 characters.
44586
+ * @type {object}
44587
+ * @memberof JsonApiColorPaletteOutAttributes
44588
+ */
44589
+ content: object;
44552
44590
  }
44553
44591
 
44554
44592
  /**
@@ -44591,10 +44629,24 @@ export declare interface JsonApiColorPaletteOutList {
44591
44629
  links?: ListLinks;
44592
44630
  /**
44593
44631
  *
44594
- * @type {JsonApiApiTokenOutListMeta}
44632
+ * @type {JsonApiColorPaletteOutListMeta}
44595
44633
  * @memberof JsonApiColorPaletteOutList
44596
44634
  */
44597
- meta?: JsonApiApiTokenOutListMeta;
44635
+ meta?: JsonApiColorPaletteOutListMeta;
44636
+ }
44637
+
44638
+ /**
44639
+ *
44640
+ * @export
44641
+ * @interface JsonApiColorPaletteOutListMeta
44642
+ */
44643
+ export declare interface JsonApiColorPaletteOutListMeta {
44644
+ /**
44645
+ *
44646
+ * @type {PageMetadata}
44647
+ * @memberof JsonApiColorPaletteOutListMeta
44648
+ */
44649
+ page?: PageMetadata;
44598
44650
  }
44599
44651
 
44600
44652
  export declare const JsonApiColorPaletteOutTypeEnum: {
@@ -44623,10 +44675,10 @@ export declare interface JsonApiColorPaletteOutWithLinks {
44623
44675
  id: string;
44624
44676
  /**
44625
44677
  *
44626
- * @type {JsonApiColorPaletteInAttributes}
44678
+ * @type {JsonApiColorPaletteOutAttributes}
44627
44679
  * @memberof JsonApiColorPaletteOutWithLinks
44628
44680
  */
44629
- attributes: JsonApiColorPaletteInAttributes;
44681
+ attributes: JsonApiColorPaletteOutAttributes;
44630
44682
  /**
44631
44683
  *
44632
44684
  * @type {ObjectLinks}
@@ -44727,30 +44779,10 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
44727
44779
  id: string;
44728
44780
  /**
44729
44781
  *
44730
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44782
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44731
44783
  * @memberof JsonApiCookieSecurityConfigurationIn
44732
44784
  */
44733
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44734
- }
44735
-
44736
- /**
44737
- *
44738
- * @export
44739
- * @interface JsonApiCookieSecurityConfigurationInAttributes
44740
- */
44741
- export declare interface JsonApiCookieSecurityConfigurationInAttributes {
44742
- /**
44743
- *
44744
- * @type {string}
44745
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
44746
- */
44747
- lastRotation?: string;
44748
- /**
44749
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44750
- * @type {string}
44751
- * @memberof JsonApiCookieSecurityConfigurationInAttributes
44752
- */
44753
- rotationInterval?: string;
44785
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44754
44786
  }
44755
44787
 
44756
44788
  /**
@@ -44793,10 +44825,10 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
44793
44825
  id: string;
44794
44826
  /**
44795
44827
  *
44796
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44828
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44797
44829
  * @memberof JsonApiCookieSecurityConfigurationOut
44798
44830
  */
44799
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44831
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44800
44832
  }
44801
44833
 
44802
44834
  /**
@@ -44845,10 +44877,30 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
44845
44877
  id: string;
44846
44878
  /**
44847
44879
  *
44848
- * @type {JsonApiCookieSecurityConfigurationInAttributes}
44880
+ * @type {JsonApiCookieSecurityConfigurationPatchAttributes}
44849
44881
  * @memberof JsonApiCookieSecurityConfigurationPatch
44850
44882
  */
44851
- attributes?: JsonApiCookieSecurityConfigurationInAttributes;
44883
+ attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
44884
+ }
44885
+
44886
+ /**
44887
+ *
44888
+ * @export
44889
+ * @interface JsonApiCookieSecurityConfigurationPatchAttributes
44890
+ */
44891
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
44892
+ /**
44893
+ *
44894
+ * @type {string}
44895
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
44896
+ */
44897
+ lastRotation?: string;
44898
+ /**
44899
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
44900
+ * @type {string}
44901
+ * @memberof JsonApiCookieSecurityConfigurationPatchAttributes
44902
+ */
44903
+ rotationInterval?: string;
44852
44904
  }
44853
44905
 
44854
44906
  /**
@@ -44891,24 +44943,10 @@ export declare interface JsonApiCspDirectiveIn {
44891
44943
  id: string;
44892
44944
  /**
44893
44945
  *
44894
- * @type {JsonApiCspDirectiveInAttributes}
44946
+ * @type {JsonApiCspDirectiveOutAttributes}
44895
44947
  * @memberof JsonApiCspDirectiveIn
44896
44948
  */
44897
- attributes: JsonApiCspDirectiveInAttributes;
44898
- }
44899
-
44900
- /**
44901
- *
44902
- * @export
44903
- * @interface JsonApiCspDirectiveInAttributes
44904
- */
44905
- export declare interface JsonApiCspDirectiveInAttributes {
44906
- /**
44907
- *
44908
- * @type {Array<string>}
44909
- * @memberof JsonApiCspDirectiveInAttributes
44910
- */
44911
- sources: Array<string>;
44949
+ attributes: JsonApiCspDirectiveOutAttributes;
44912
44950
  }
44913
44951
 
44914
44952
  /**
@@ -44951,10 +44989,24 @@ export declare interface JsonApiCspDirectiveOut {
44951
44989
  id: string;
44952
44990
  /**
44953
44991
  *
44954
- * @type {JsonApiCspDirectiveInAttributes}
44992
+ * @type {JsonApiCspDirectiveOutAttributes}
44955
44993
  * @memberof JsonApiCspDirectiveOut
44956
44994
  */
44957
- attributes: JsonApiCspDirectiveInAttributes;
44995
+ attributes: JsonApiCspDirectiveOutAttributes;
44996
+ }
44997
+
44998
+ /**
44999
+ *
45000
+ * @export
45001
+ * @interface JsonApiCspDirectiveOutAttributes
45002
+ */
45003
+ export declare interface JsonApiCspDirectiveOutAttributes {
45004
+ /**
45005
+ *
45006
+ * @type {Array<string>}
45007
+ * @memberof JsonApiCspDirectiveOutAttributes
45008
+ */
45009
+ sources: Array<string>;
44958
45010
  }
44959
45011
 
44960
45012
  /**
@@ -44997,10 +45049,10 @@ export declare interface JsonApiCspDirectiveOutList {
44997
45049
  links?: ListLinks;
44998
45050
  /**
44999
45051
  *
45000
- * @type {JsonApiApiTokenOutListMeta}
45052
+ * @type {JsonApiColorPaletteOutListMeta}
45001
45053
  * @memberof JsonApiCspDirectiveOutList
45002
45054
  */
45003
- meta?: JsonApiApiTokenOutListMeta;
45055
+ meta?: JsonApiColorPaletteOutListMeta;
45004
45056
  }
45005
45057
 
45006
45058
  export declare const JsonApiCspDirectiveOutTypeEnum: {
@@ -45029,10 +45081,10 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
45029
45081
  id: string;
45030
45082
  /**
45031
45083
  *
45032
- * @type {JsonApiCspDirectiveInAttributes}
45084
+ * @type {JsonApiCspDirectiveOutAttributes}
45033
45085
  * @memberof JsonApiCspDirectiveOutWithLinks
45034
45086
  */
45035
- attributes: JsonApiCspDirectiveInAttributes;
45087
+ attributes: JsonApiCspDirectiveOutAttributes;
45036
45088
  /**
45037
45089
  *
45038
45090
  * @type {ObjectLinks}
@@ -45127,10 +45179,30 @@ export declare interface JsonApiCustomApplicationSettingIn {
45127
45179
  id: string;
45128
45180
  /**
45129
45181
  *
45130
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
45182
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45131
45183
  * @memberof JsonApiCustomApplicationSettingIn
45132
45184
  */
45133
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
45185
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45186
+ }
45187
+
45188
+ /**
45189
+ *
45190
+ * @export
45191
+ * @interface JsonApiCustomApplicationSettingInAttributes
45192
+ */
45193
+ export declare interface JsonApiCustomApplicationSettingInAttributes {
45194
+ /**
45195
+ *
45196
+ * @type {string}
45197
+ * @memberof JsonApiCustomApplicationSettingInAttributes
45198
+ */
45199
+ applicationName: string;
45200
+ /**
45201
+ * Free-form JSON content. Maximum supported length is 15000 characters.
45202
+ * @type {object}
45203
+ * @memberof JsonApiCustomApplicationSettingInAttributes
45204
+ */
45205
+ content: object;
45134
45206
  }
45135
45207
 
45136
45208
  /**
@@ -45179,10 +45251,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
45179
45251
  meta?: JsonApiVisualizationObjectOutMeta;
45180
45252
  /**
45181
45253
  *
45182
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
45254
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45183
45255
  * @memberof JsonApiCustomApplicationSettingOut
45184
45256
  */
45185
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
45257
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45186
45258
  }
45187
45259
 
45188
45260
  /**
@@ -45225,10 +45297,10 @@ export declare interface JsonApiCustomApplicationSettingOutList {
45225
45297
  links?: ListLinks;
45226
45298
  /**
45227
45299
  *
45228
- * @type {JsonApiApiTokenOutListMeta}
45300
+ * @type {JsonApiColorPaletteOutListMeta}
45229
45301
  * @memberof JsonApiCustomApplicationSettingOutList
45230
45302
  */
45231
- meta?: JsonApiApiTokenOutListMeta;
45303
+ meta?: JsonApiColorPaletteOutListMeta;
45232
45304
  }
45233
45305
 
45234
45306
  export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
@@ -45263,10 +45335,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
45263
45335
  meta?: JsonApiVisualizationObjectOutMeta;
45264
45336
  /**
45265
45337
  *
45266
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
45338
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45267
45339
  * @memberof JsonApiCustomApplicationSettingOutWithLinks
45268
45340
  */
45269
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
45341
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45270
45342
  /**
45271
45343
  *
45272
45344
  * @type {ObjectLinks}
@@ -45367,30 +45439,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
45367
45439
  id?: string;
45368
45440
  /**
45369
45441
  *
45370
- * @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
45442
+ * @type {JsonApiCustomApplicationSettingInAttributes}
45371
45443
  * @memberof JsonApiCustomApplicationSettingPostOptionalId
45372
45444
  */
45373
- attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
45374
- }
45375
-
45376
- /**
45377
- *
45378
- * @export
45379
- * @interface JsonApiCustomApplicationSettingPostOptionalIdAttributes
45380
- */
45381
- export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
45382
- /**
45383
- *
45384
- * @type {string}
45385
- * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
45386
- */
45387
- applicationName: string;
45388
- /**
45389
- * Free-form JSON content. Maximum supported length is 15000 characters.
45390
- * @type {object}
45391
- * @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
45392
- */
45393
- content: object;
45445
+ attributes: JsonApiCustomApplicationSettingInAttributes;
45394
45446
  }
45395
45447
 
45396
45448
  /**
@@ -45433,44 +45485,82 @@ export declare interface JsonApiDashboardPluginIn {
45433
45485
  id: string;
45434
45486
  /**
45435
45487
  *
45436
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
45488
+ * @type {JsonApiDashboardPluginInAttributes}
45437
45489
  * @memberof JsonApiDashboardPluginIn
45438
45490
  */
45439
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
45491
+ attributes?: JsonApiDashboardPluginInAttributes;
45440
45492
  }
45441
45493
 
45442
45494
  /**
45443
45495
  *
45444
45496
  * @export
45445
- * @interface JsonApiDashboardPluginInDocument
45497
+ * @interface JsonApiDashboardPluginInAttributes
45446
45498
  */
45447
- export declare interface JsonApiDashboardPluginInDocument {
45499
+ export declare interface JsonApiDashboardPluginInAttributes {
45448
45500
  /**
45449
45501
  *
45450
- * @type {JsonApiDashboardPluginIn}
45451
- * @memberof JsonApiDashboardPluginInDocument
45502
+ * @type {string}
45503
+ * @memberof JsonApiDashboardPluginInAttributes
45452
45504
  */
45453
- data: JsonApiDashboardPluginIn;
45454
- }
45455
-
45456
- export declare const JsonApiDashboardPluginInTypeEnum: {
45457
- readonly DASHBOARD_PLUGIN: "dashboardPlugin";
45458
- };
45459
-
45460
- export declare type JsonApiDashboardPluginInTypeEnum = typeof JsonApiDashboardPluginInTypeEnum[keyof typeof JsonApiDashboardPluginInTypeEnum];
45461
-
45462
- /**
45463
- * The \\\"type\\\" and \\\"id\\\" to non-empty members.
45464
- * @export
45465
- * @interface JsonApiDashboardPluginLinkage
45466
- */
45467
- export declare interface JsonApiDashboardPluginLinkage {
45505
+ title?: string;
45468
45506
  /**
45469
45507
  *
45470
45508
  * @type {string}
45471
- * @memberof JsonApiDashboardPluginLinkage
45509
+ * @memberof JsonApiDashboardPluginInAttributes
45472
45510
  */
45473
- id: string;
45511
+ description?: string;
45512
+ /**
45513
+ *
45514
+ * @type {Array<string>}
45515
+ * @memberof JsonApiDashboardPluginInAttributes
45516
+ */
45517
+ tags?: Array<string>;
45518
+ /**
45519
+ *
45520
+ * @type {boolean}
45521
+ * @memberof JsonApiDashboardPluginInAttributes
45522
+ */
45523
+ areRelationsValid?: boolean;
45524
+ /**
45525
+ * Free-form JSON content. Maximum supported length is 250000 characters.
45526
+ * @type {object}
45527
+ * @memberof JsonApiDashboardPluginInAttributes
45528
+ */
45529
+ content?: object;
45530
+ }
45531
+
45532
+ /**
45533
+ *
45534
+ * @export
45535
+ * @interface JsonApiDashboardPluginInDocument
45536
+ */
45537
+ export declare interface JsonApiDashboardPluginInDocument {
45538
+ /**
45539
+ *
45540
+ * @type {JsonApiDashboardPluginIn}
45541
+ * @memberof JsonApiDashboardPluginInDocument
45542
+ */
45543
+ data: JsonApiDashboardPluginIn;
45544
+ }
45545
+
45546
+ export declare const JsonApiDashboardPluginInTypeEnum: {
45547
+ readonly DASHBOARD_PLUGIN: "dashboardPlugin";
45548
+ };
45549
+
45550
+ export declare type JsonApiDashboardPluginInTypeEnum = typeof JsonApiDashboardPluginInTypeEnum[keyof typeof JsonApiDashboardPluginInTypeEnum];
45551
+
45552
+ /**
45553
+ * The \\\"type\\\" and \\\"id\\\" to non-empty members.
45554
+ * @export
45555
+ * @interface JsonApiDashboardPluginLinkage
45556
+ */
45557
+ export declare interface JsonApiDashboardPluginLinkage {
45558
+ /**
45559
+ *
45560
+ * @type {string}
45561
+ * @memberof JsonApiDashboardPluginLinkage
45562
+ */
45563
+ id: string;
45474
45564
  /**
45475
45565
  *
45476
45566
  * @type {string}
@@ -45619,10 +45709,10 @@ export declare interface JsonApiDashboardPluginOutList {
45619
45709
  links?: ListLinks;
45620
45710
  /**
45621
45711
  *
45622
- * @type {JsonApiApiTokenOutListMeta}
45712
+ * @type {JsonApiColorPaletteOutListMeta}
45623
45713
  * @memberof JsonApiDashboardPluginOutList
45624
45714
  */
45625
- meta?: JsonApiApiTokenOutListMeta;
45715
+ meta?: JsonApiColorPaletteOutListMeta;
45626
45716
  /**
45627
45717
  * Included resources
45628
45718
  * @type {Array<JsonApiUserIdentifierOutWithLinks>}
@@ -45727,10 +45817,10 @@ export declare interface JsonApiDashboardPluginPatch {
45727
45817
  id: string;
45728
45818
  /**
45729
45819
  *
45730
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
45820
+ * @type {JsonApiDashboardPluginInAttributes}
45731
45821
  * @memberof JsonApiDashboardPluginPatch
45732
45822
  */
45733
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
45823
+ attributes?: JsonApiDashboardPluginInAttributes;
45734
45824
  }
45735
45825
 
45736
45826
  /**
@@ -45773,48 +45863,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
45773
45863
  id?: string;
45774
45864
  /**
45775
45865
  *
45776
- * @type {JsonApiDashboardPluginPostOptionalIdAttributes}
45866
+ * @type {JsonApiDashboardPluginInAttributes}
45777
45867
  * @memberof JsonApiDashboardPluginPostOptionalId
45778
45868
  */
45779
- attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
45780
- }
45781
-
45782
- /**
45783
- *
45784
- * @export
45785
- * @interface JsonApiDashboardPluginPostOptionalIdAttributes
45786
- */
45787
- export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
45788
- /**
45789
- *
45790
- * @type {string}
45791
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
45792
- */
45793
- title?: string;
45794
- /**
45795
- *
45796
- * @type {string}
45797
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
45798
- */
45799
- description?: string;
45800
- /**
45801
- *
45802
- * @type {Array<string>}
45803
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
45804
- */
45805
- tags?: Array<string>;
45806
- /**
45807
- *
45808
- * @type {boolean}
45809
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
45810
- */
45811
- areRelationsValid?: boolean;
45812
- /**
45813
- * Free-form JSON content. Maximum supported length is 250000 characters.
45814
- * @type {object}
45815
- * @memberof JsonApiDashboardPluginPostOptionalIdAttributes
45816
- */
45817
- content?: object;
45869
+ attributes?: JsonApiDashboardPluginInAttributes;
45818
45870
  }
45819
45871
 
45820
45872
  /**
@@ -46207,10 +46259,10 @@ export declare interface JsonApiDatasetOutList {
46207
46259
  links?: ListLinks;
46208
46260
  /**
46209
46261
  *
46210
- * @type {JsonApiApiTokenOutListMeta}
46262
+ * @type {JsonApiColorPaletteOutListMeta}
46211
46263
  * @memberof JsonApiDatasetOutList
46212
46264
  */
46213
- meta?: JsonApiApiTokenOutListMeta;
46265
+ meta?: JsonApiColorPaletteOutListMeta;
46214
46266
  /**
46215
46267
  * Included resources
46216
46268
  * @type {Array<JsonApiDatasetOutIncludes>}
@@ -46348,10 +46400,10 @@ export declare interface JsonApiDataSourceIdentifierOut {
46348
46400
  id: string;
46349
46401
  /**
46350
46402
  *
46351
- * @type {JsonApiDataSourceOutMeta}
46403
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46352
46404
  * @memberof JsonApiDataSourceIdentifierOut
46353
46405
  */
46354
- meta?: JsonApiDataSourceOutMeta;
46406
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46355
46407
  /**
46356
46408
  *
46357
46409
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46455,12 +46507,33 @@ export declare interface JsonApiDataSourceIdentifierOutList {
46455
46507
  links?: ListLinks;
46456
46508
  /**
46457
46509
  *
46458
- * @type {JsonApiApiTokenOutListMeta}
46510
+ * @type {JsonApiColorPaletteOutListMeta}
46459
46511
  * @memberof JsonApiDataSourceIdentifierOutList
46460
46512
  */
46461
- meta?: JsonApiApiTokenOutListMeta;
46513
+ meta?: JsonApiColorPaletteOutListMeta;
46462
46514
  }
46463
46515
 
46516
+ /**
46517
+ *
46518
+ * @export
46519
+ * @interface JsonApiDataSourceIdentifierOutMeta
46520
+ */
46521
+ export declare interface JsonApiDataSourceIdentifierOutMeta {
46522
+ /**
46523
+ * List of valid permissions for a logged-in user.
46524
+ * @type {Array<string>}
46525
+ * @memberof JsonApiDataSourceIdentifierOutMeta
46526
+ */
46527
+ permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
46528
+ }
46529
+
46530
+ export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
46531
+ readonly MANAGE: "MANAGE";
46532
+ readonly USE: "USE";
46533
+ };
46534
+
46535
+ export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
46536
+
46464
46537
  export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
46465
46538
  readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
46466
46539
  };
@@ -46487,10 +46560,10 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
46487
46560
  id: string;
46488
46561
  /**
46489
46562
  *
46490
- * @type {JsonApiDataSourceOutMeta}
46563
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46491
46564
  * @memberof JsonApiDataSourceIdentifierOutWithLinks
46492
46565
  */
46493
- meta?: JsonApiDataSourceOutMeta;
46566
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46494
46567
  /**
46495
46568
  *
46496
46569
  * @type {JsonApiDataSourceIdentifierOutAttributes}
@@ -46611,10 +46684,10 @@ export declare interface JsonApiDataSourceInAttributes {
46611
46684
  clientSecret?: string | null;
46612
46685
  /**
46613
46686
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46614
- * @type {Array<JsonApiDataSourceInAttributesParameters>}
46687
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46615
46688
  * @memberof JsonApiDataSourceInAttributes
46616
46689
  */
46617
- parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
46690
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46618
46691
  /**
46619
46692
  * Determines how the results coming from a particular datasource should be cached.
46620
46693
  * @type {string}
@@ -46630,26 +46703,6 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
46630
46703
 
46631
46704
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = typeof JsonApiDataSourceInAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
46632
46705
 
46633
- /**
46634
- *
46635
- * @export
46636
- * @interface JsonApiDataSourceInAttributesParameters
46637
- */
46638
- export declare interface JsonApiDataSourceInAttributesParameters {
46639
- /**
46640
- *
46641
- * @type {string}
46642
- * @memberof JsonApiDataSourceInAttributesParameters
46643
- */
46644
- name: string;
46645
- /**
46646
- *
46647
- * @type {string}
46648
- * @memberof JsonApiDataSourceInAttributesParameters
46649
- */
46650
- value: string;
46651
- }
46652
-
46653
46706
  export declare const JsonApiDataSourceInAttributesTypeEnum: {
46654
46707
  readonly POSTGRESQL: "POSTGRESQL";
46655
46708
  readonly REDSHIFT: "REDSHIFT";
@@ -46719,10 +46772,10 @@ export declare interface JsonApiDataSourceOut {
46719
46772
  id: string;
46720
46773
  /**
46721
46774
  *
46722
- * @type {JsonApiDataSourceOutMeta}
46775
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46723
46776
  * @memberof JsonApiDataSourceOut
46724
46777
  */
46725
- meta?: JsonApiDataSourceOutMeta;
46778
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46726
46779
  /**
46727
46780
  *
46728
46781
  * @type {JsonApiDataSourceOutAttributes}
@@ -46775,16 +46828,16 @@ export declare interface JsonApiDataSourceOutAttributes {
46775
46828
  clientId?: string | null;
46776
46829
  /**
46777
46830
  * Additional parameters to be used when connecting to the database providing the data for the data source.
46778
- * @type {Array<JsonApiDataSourceInAttributesParameters>}
46831
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46779
46832
  * @memberof JsonApiDataSourceOutAttributes
46780
46833
  */
46781
- parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
46834
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46782
46835
  /**
46783
46836
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
46784
- * @type {Array<JsonApiDataSourceInAttributesParameters>}
46837
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
46785
46838
  * @memberof JsonApiDataSourceOutAttributes
46786
46839
  */
46787
- decodedParameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
46840
+ decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
46788
46841
  /**
46789
46842
  * Determines how the results coming from a particular datasource should be cached.
46790
46843
  * @type {string}
@@ -46816,6 +46869,26 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
46816
46869
 
46817
46870
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = typeof JsonApiDataSourceOutAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
46818
46871
 
46872
+ /**
46873
+ *
46874
+ * @export
46875
+ * @interface JsonApiDataSourceOutAttributesParameters
46876
+ */
46877
+ export declare interface JsonApiDataSourceOutAttributesParameters {
46878
+ /**
46879
+ *
46880
+ * @type {string}
46881
+ * @memberof JsonApiDataSourceOutAttributesParameters
46882
+ */
46883
+ name: string;
46884
+ /**
46885
+ *
46886
+ * @type {string}
46887
+ * @memberof JsonApiDataSourceOutAttributesParameters
46888
+ */
46889
+ value: string;
46890
+ }
46891
+
46819
46892
  export declare const JsonApiDataSourceOutAttributesTypeEnum: {
46820
46893
  readonly POSTGRESQL: "POSTGRESQL";
46821
46894
  readonly REDSHIFT: "REDSHIFT";
@@ -46885,33 +46958,12 @@ export declare interface JsonApiDataSourceOutList {
46885
46958
  links?: ListLinks;
46886
46959
  /**
46887
46960
  *
46888
- * @type {JsonApiApiTokenOutListMeta}
46961
+ * @type {JsonApiColorPaletteOutListMeta}
46889
46962
  * @memberof JsonApiDataSourceOutList
46890
46963
  */
46891
- meta?: JsonApiApiTokenOutListMeta;
46892
- }
46893
-
46894
- /**
46895
- *
46896
- * @export
46897
- * @interface JsonApiDataSourceOutMeta
46898
- */
46899
- export declare interface JsonApiDataSourceOutMeta {
46900
- /**
46901
- * List of valid permissions for a logged-in user.
46902
- * @type {Array<string>}
46903
- * @memberof JsonApiDataSourceOutMeta
46904
- */
46905
- permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
46964
+ meta?: JsonApiColorPaletteOutListMeta;
46906
46965
  }
46907
46966
 
46908
- export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
46909
- readonly MANAGE: "MANAGE";
46910
- readonly USE: "USE";
46911
- };
46912
-
46913
- export declare type JsonApiDataSourceOutMetaPermissionsEnum = typeof JsonApiDataSourceOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
46914
-
46915
46967
  export declare const JsonApiDataSourceOutTypeEnum: {
46916
46968
  readonly DATA_SOURCE: "dataSource";
46917
46969
  };
@@ -46938,10 +46990,10 @@ export declare interface JsonApiDataSourceOutWithLinks {
46938
46990
  id: string;
46939
46991
  /**
46940
46992
  *
46941
- * @type {JsonApiDataSourceOutMeta}
46993
+ * @type {JsonApiDataSourceIdentifierOutMeta}
46942
46994
  * @memberof JsonApiDataSourceOutWithLinks
46943
46995
  */
46944
- meta?: JsonApiDataSourceOutMeta;
46996
+ meta?: JsonApiDataSourceIdentifierOutMeta;
46945
46997
  /**
46946
46998
  *
46947
46999
  * @type {JsonApiDataSourceOutAttributes}
@@ -47062,10 +47114,10 @@ export declare interface JsonApiDataSourcePatchAttributes {
47062
47114
  clientSecret?: string | null;
47063
47115
  /**
47064
47116
  * Additional parameters to be used when connecting to the database providing the data for the data source.
47065
- * @type {Array<JsonApiDataSourceInAttributesParameters>}
47117
+ * @type {Array<JsonApiDataSourceOutAttributesParameters>}
47066
47118
  * @memberof JsonApiDataSourcePatchAttributes
47067
47119
  */
47068
- parameters?: Array<JsonApiDataSourceInAttributesParameters> | null;
47120
+ parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
47069
47121
  /**
47070
47122
  * Determines how the results coming from a particular datasource should be cached.
47071
47123
  * @type {string}
@@ -47216,10 +47268,10 @@ export declare interface JsonApiEntitlementOutList {
47216
47268
  links?: ListLinks;
47217
47269
  /**
47218
47270
  *
47219
- * @type {JsonApiApiTokenOutListMeta}
47271
+ * @type {JsonApiColorPaletteOutListMeta}
47220
47272
  * @memberof JsonApiEntitlementOutList
47221
47273
  */
47222
- meta?: JsonApiApiTokenOutListMeta;
47274
+ meta?: JsonApiColorPaletteOutListMeta;
47223
47275
  }
47224
47276
 
47225
47277
  export declare const JsonApiEntitlementOutTypeEnum: {
@@ -47286,16 +47338,54 @@ export declare interface JsonApiExportDefinitionIn {
47286
47338
  id: string;
47287
47339
  /**
47288
47340
  *
47289
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
47341
+ * @type {JsonApiExportDefinitionInAttributes}
47290
47342
  * @memberof JsonApiExportDefinitionIn
47291
47343
  */
47292
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
47344
+ attributes?: JsonApiExportDefinitionInAttributes;
47293
47345
  /**
47294
47346
  *
47295
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
47347
+ * @type {JsonApiExportDefinitionInRelationships}
47296
47348
  * @memberof JsonApiExportDefinitionIn
47297
47349
  */
47298
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
47350
+ relationships?: JsonApiExportDefinitionInRelationships;
47351
+ }
47352
+
47353
+ /**
47354
+ *
47355
+ * @export
47356
+ * @interface JsonApiExportDefinitionInAttributes
47357
+ */
47358
+ export declare interface JsonApiExportDefinitionInAttributes {
47359
+ /**
47360
+ *
47361
+ * @type {string}
47362
+ * @memberof JsonApiExportDefinitionInAttributes
47363
+ */
47364
+ title?: string;
47365
+ /**
47366
+ *
47367
+ * @type {string}
47368
+ * @memberof JsonApiExportDefinitionInAttributes
47369
+ */
47370
+ description?: string;
47371
+ /**
47372
+ *
47373
+ * @type {Array<string>}
47374
+ * @memberof JsonApiExportDefinitionInAttributes
47375
+ */
47376
+ tags?: Array<string>;
47377
+ /**
47378
+ * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
47379
+ * @type {VisualExportRequest | TabularExportRequest}
47380
+ * @memberof JsonApiExportDefinitionInAttributes
47381
+ */
47382
+ requestPayload?: VisualExportRequest | TabularExportRequest;
47383
+ /**
47384
+ *
47385
+ * @type {boolean}
47386
+ * @memberof JsonApiExportDefinitionInAttributes
47387
+ */
47388
+ areRelationsValid?: boolean;
47299
47389
  }
47300
47390
 
47301
47391
  /**
@@ -47312,6 +47402,26 @@ export declare interface JsonApiExportDefinitionInDocument {
47312
47402
  data: JsonApiExportDefinitionIn;
47313
47403
  }
47314
47404
 
47405
+ /**
47406
+ *
47407
+ * @export
47408
+ * @interface JsonApiExportDefinitionInRelationships
47409
+ */
47410
+ export declare interface JsonApiExportDefinitionInRelationships {
47411
+ /**
47412
+ *
47413
+ * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
47414
+ * @memberof JsonApiExportDefinitionInRelationships
47415
+ */
47416
+ visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47417
+ /**
47418
+ *
47419
+ * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
47420
+ * @memberof JsonApiExportDefinitionInRelationships
47421
+ */
47422
+ analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47423
+ }
47424
+
47315
47425
  export declare const JsonApiExportDefinitionInTypeEnum: {
47316
47426
  readonly EXPORT_DEFINITION: "exportDefinition";
47317
47427
  };
@@ -47484,10 +47594,10 @@ export declare interface JsonApiExportDefinitionOutList {
47484
47594
  links?: ListLinks;
47485
47595
  /**
47486
47596
  *
47487
- * @type {JsonApiApiTokenOutListMeta}
47597
+ * @type {JsonApiColorPaletteOutListMeta}
47488
47598
  * @memberof JsonApiExportDefinitionOutList
47489
47599
  */
47490
- meta?: JsonApiApiTokenOutListMeta;
47600
+ meta?: JsonApiColorPaletteOutListMeta;
47491
47601
  /**
47492
47602
  * Included resources
47493
47603
  * @type {Array<JsonApiExportDefinitionOutIncludes>}
@@ -47638,16 +47748,16 @@ export declare interface JsonApiExportDefinitionPatch {
47638
47748
  id: string;
47639
47749
  /**
47640
47750
  *
47641
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
47751
+ * @type {JsonApiExportDefinitionInAttributes}
47642
47752
  * @memberof JsonApiExportDefinitionPatch
47643
47753
  */
47644
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
47754
+ attributes?: JsonApiExportDefinitionInAttributes;
47645
47755
  /**
47646
47756
  *
47647
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
47757
+ * @type {JsonApiExportDefinitionInRelationships}
47648
47758
  * @memberof JsonApiExportDefinitionPatch
47649
47759
  */
47650
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
47760
+ relationships?: JsonApiExportDefinitionInRelationships;
47651
47761
  }
47652
47762
 
47653
47763
  /**
@@ -47690,54 +47800,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
47690
47800
  id?: string;
47691
47801
  /**
47692
47802
  *
47693
- * @type {JsonApiExportDefinitionPostOptionalIdAttributes}
47803
+ * @type {JsonApiExportDefinitionInAttributes}
47694
47804
  * @memberof JsonApiExportDefinitionPostOptionalId
47695
47805
  */
47696
- attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
47806
+ attributes?: JsonApiExportDefinitionInAttributes;
47697
47807
  /**
47698
47808
  *
47699
- * @type {JsonApiExportDefinitionPostOptionalIdRelationships}
47809
+ * @type {JsonApiExportDefinitionInRelationships}
47700
47810
  * @memberof JsonApiExportDefinitionPostOptionalId
47701
47811
  */
47702
- relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
47703
- }
47704
-
47705
- /**
47706
- *
47707
- * @export
47708
- * @interface JsonApiExportDefinitionPostOptionalIdAttributes
47709
- */
47710
- export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
47711
- /**
47712
- *
47713
- * @type {string}
47714
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
47715
- */
47716
- title?: string;
47717
- /**
47718
- *
47719
- * @type {string}
47720
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
47721
- */
47722
- description?: string;
47723
- /**
47724
- *
47725
- * @type {Array<string>}
47726
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
47727
- */
47728
- tags?: Array<string>;
47729
- /**
47730
- * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
47731
- * @type {VisualExportRequest | TabularExportRequest}
47732
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
47733
- */
47734
- requestPayload?: VisualExportRequest | TabularExportRequest;
47735
- /**
47736
- *
47737
- * @type {boolean}
47738
- * @memberof JsonApiExportDefinitionPostOptionalIdAttributes
47739
- */
47740
- areRelationsValid?: boolean;
47812
+ relationships?: JsonApiExportDefinitionInRelationships;
47741
47813
  }
47742
47814
 
47743
47815
  /**
@@ -47754,26 +47826,6 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
47754
47826
  data: JsonApiExportDefinitionPostOptionalId;
47755
47827
  }
47756
47828
 
47757
- /**
47758
- *
47759
- * @export
47760
- * @interface JsonApiExportDefinitionPostOptionalIdRelationships
47761
- */
47762
- export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
47763
- /**
47764
- *
47765
- * @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
47766
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
47767
- */
47768
- visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
47769
- /**
47770
- *
47771
- * @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
47772
- * @memberof JsonApiExportDefinitionPostOptionalIdRelationships
47773
- */
47774
- analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
47775
- }
47776
-
47777
47829
  export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
47778
47830
  readonly EXPORT_DEFINITION: "exportDefinition";
47779
47831
  };
@@ -47800,10 +47852,10 @@ export declare interface JsonApiExportTemplateIn {
47800
47852
  id: string;
47801
47853
  /**
47802
47854
  *
47803
- * @type {JsonApiExportTemplatePostOptionalIdAttributes}
47855
+ * @type {JsonApiExportTemplateOutAttributes}
47804
47856
  * @memberof JsonApiExportTemplateIn
47805
47857
  */
47806
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47858
+ attributes: JsonApiExportTemplateOutAttributes;
47807
47859
  }
47808
47860
 
47809
47861
  /**
@@ -47846,42 +47898,140 @@ export declare interface JsonApiExportTemplateOut {
47846
47898
  id: string;
47847
47899
  /**
47848
47900
  *
47849
- * @type {JsonApiExportTemplatePostOptionalIdAttributes}
47901
+ * @type {JsonApiExportTemplateOutAttributes}
47850
47902
  * @memberof JsonApiExportTemplateOut
47851
47903
  */
47852
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
47904
+ attributes: JsonApiExportTemplateOutAttributes;
47853
47905
  }
47854
47906
 
47855
47907
  /**
47856
47908
  *
47857
47909
  * @export
47858
- * @interface JsonApiExportTemplateOutDocument
47910
+ * @interface JsonApiExportTemplateOutAttributes
47859
47911
  */
47860
- export declare interface JsonApiExportTemplateOutDocument {
47912
+ export declare interface JsonApiExportTemplateOutAttributes {
47913
+ /**
47914
+ * User-facing name of the Slides template.
47915
+ * @type {string}
47916
+ * @memberof JsonApiExportTemplateOutAttributes
47917
+ */
47918
+ name: string;
47861
47919
  /**
47862
47920
  *
47863
- * @type {JsonApiExportTemplateOut}
47864
- * @memberof JsonApiExportTemplateOutDocument
47921
+ * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47922
+ * @memberof JsonApiExportTemplateOutAttributes
47865
47923
  */
47866
- data: JsonApiExportTemplateOut;
47924
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47867
47925
  /**
47868
47926
  *
47869
- * @type {ObjectLinks}
47870
- * @memberof JsonApiExportTemplateOutDocument
47927
+ * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47928
+ * @memberof JsonApiExportTemplateOutAttributes
47871
47929
  */
47872
- links?: ObjectLinks;
47930
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47873
47931
  }
47874
47932
 
47875
47933
  /**
47876
- * A JSON:API document with a list of resources
47934
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47877
47935
  * @export
47878
- * @interface JsonApiExportTemplateOutList
47936
+ * @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47879
47937
  */
47880
- export declare interface JsonApiExportTemplateOutList {
47938
+ export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
47881
47939
  /**
47882
- *
47883
- * @type {Array<JsonApiExportTemplateOutWithLinks>}
47884
- * @memberof JsonApiExportTemplateOutList
47940
+ * Export types this template applies to.
47941
+ * @type {Array<string>}
47942
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47943
+ */
47944
+ appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
47945
+ /**
47946
+ *
47947
+ * @type {CoverSlideTemplate}
47948
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47949
+ */
47950
+ coverSlide?: CoverSlideTemplate | null;
47951
+ /**
47952
+ *
47953
+ * @type {IntroSlideTemplate}
47954
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47955
+ */
47956
+ introSlide?: IntroSlideTemplate | null;
47957
+ /**
47958
+ *
47959
+ * @type {SectionSlideTemplate}
47960
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47961
+ */
47962
+ sectionSlide?: SectionSlideTemplate | null;
47963
+ /**
47964
+ *
47965
+ * @type {ContentSlideTemplate}
47966
+ * @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
47967
+ */
47968
+ contentSlide?: ContentSlideTemplate | null;
47969
+ }
47970
+
47971
+ export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
47972
+ readonly PDF: "PDF";
47973
+ readonly PPTX: "PPTX";
47974
+ };
47975
+
47976
+ export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
47977
+
47978
+ /**
47979
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
47980
+ * @export
47981
+ * @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47982
+ */
47983
+ export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
47984
+ /**
47985
+ * Export types this template applies to.
47986
+ * @type {Array<string>}
47987
+ * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47988
+ */
47989
+ appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
47990
+ /**
47991
+ *
47992
+ * @type {ContentSlideTemplate}
47993
+ * @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
47994
+ */
47995
+ contentSlide?: ContentSlideTemplate | null;
47996
+ }
47997
+
47998
+ export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
47999
+ readonly PDF: "PDF";
48000
+ readonly PPTX: "PPTX";
48001
+ };
48002
+
48003
+ export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
48004
+
48005
+ /**
48006
+ *
48007
+ * @export
48008
+ * @interface JsonApiExportTemplateOutDocument
48009
+ */
48010
+ export declare interface JsonApiExportTemplateOutDocument {
48011
+ /**
48012
+ *
48013
+ * @type {JsonApiExportTemplateOut}
48014
+ * @memberof JsonApiExportTemplateOutDocument
48015
+ */
48016
+ data: JsonApiExportTemplateOut;
48017
+ /**
48018
+ *
48019
+ * @type {ObjectLinks}
48020
+ * @memberof JsonApiExportTemplateOutDocument
48021
+ */
48022
+ links?: ObjectLinks;
48023
+ }
48024
+
48025
+ /**
48026
+ * A JSON:API document with a list of resources
48027
+ * @export
48028
+ * @interface JsonApiExportTemplateOutList
48029
+ */
48030
+ export declare interface JsonApiExportTemplateOutList {
48031
+ /**
48032
+ *
48033
+ * @type {Array<JsonApiExportTemplateOutWithLinks>}
48034
+ * @memberof JsonApiExportTemplateOutList
47885
48035
  */
47886
48036
  data: Array<JsonApiExportTemplateOutWithLinks>;
47887
48037
  /**
@@ -47892,10 +48042,10 @@ export declare interface JsonApiExportTemplateOutList {
47892
48042
  links?: ListLinks;
47893
48043
  /**
47894
48044
  *
47895
- * @type {JsonApiApiTokenOutListMeta}
48045
+ * @type {JsonApiColorPaletteOutListMeta}
47896
48046
  * @memberof JsonApiExportTemplateOutList
47897
48047
  */
47898
- meta?: JsonApiApiTokenOutListMeta;
48048
+ meta?: JsonApiColorPaletteOutListMeta;
47899
48049
  }
47900
48050
 
47901
48051
  export declare const JsonApiExportTemplateOutTypeEnum: {
@@ -47924,10 +48074,10 @@ export declare interface JsonApiExportTemplateOutWithLinks {
47924
48074
  id: string;
47925
48075
  /**
47926
48076
  *
47927
- * @type {JsonApiExportTemplatePostOptionalIdAttributes}
48077
+ * @type {JsonApiExportTemplateOutAttributes}
47928
48078
  * @memberof JsonApiExportTemplateOutWithLinks
47929
48079
  */
47930
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48080
+ attributes: JsonApiExportTemplateOutAttributes;
47931
48081
  /**
47932
48082
  *
47933
48083
  * @type {ObjectLinks}
@@ -47982,16 +48132,16 @@ export declare interface JsonApiExportTemplatePatchAttributes {
47982
48132
  name?: string;
47983
48133
  /**
47984
48134
  *
47985
- * @type {JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate}
48135
+ * @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
47986
48136
  * @memberof JsonApiExportTemplatePatchAttributes
47987
48137
  */
47988
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48138
+ dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
47989
48139
  /**
47990
48140
  *
47991
- * @type {JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate}
48141
+ * @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
47992
48142
  * @memberof JsonApiExportTemplatePatchAttributes
47993
48143
  */
47994
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
48144
+ widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
47995
48145
  }
47996
48146
 
47997
48147
  /**
@@ -48034,110 +48184,12 @@ export declare interface JsonApiExportTemplatePostOptionalId {
48034
48184
  id?: string;
48035
48185
  /**
48036
48186
  *
48037
- * @type {JsonApiExportTemplatePostOptionalIdAttributes}
48187
+ * @type {JsonApiExportTemplateOutAttributes}
48038
48188
  * @memberof JsonApiExportTemplatePostOptionalId
48039
48189
  */
48040
- attributes: JsonApiExportTemplatePostOptionalIdAttributes;
48041
- }
48042
-
48043
- /**
48044
- *
48045
- * @export
48046
- * @interface JsonApiExportTemplatePostOptionalIdAttributes
48047
- */
48048
- export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
48049
- /**
48050
- * User-facing name of the Slides template.
48051
- * @type {string}
48052
- * @memberof JsonApiExportTemplatePostOptionalIdAttributes
48053
- */
48054
- name: string;
48055
- /**
48056
- *
48057
- * @type {JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate}
48058
- * @memberof JsonApiExportTemplatePostOptionalIdAttributes
48059
- */
48060
- dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
48061
- /**
48062
- *
48063
- * @type {JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate}
48064
- * @memberof JsonApiExportTemplatePostOptionalIdAttributes
48065
- */
48066
- widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
48067
- }
48068
-
48069
- /**
48070
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48071
- * @export
48072
- * @interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48073
- */
48074
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
48075
- /**
48076
- * Export types this template applies to.
48077
- * @type {Array<string>}
48078
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48079
- */
48080
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
48081
- /**
48082
- *
48083
- * @type {CoverSlideTemplate}
48084
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48085
- */
48086
- coverSlide?: CoverSlideTemplate | null;
48087
- /**
48088
- *
48089
- * @type {IntroSlideTemplate}
48090
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48091
- */
48092
- introSlide?: IntroSlideTemplate | null;
48093
- /**
48094
- *
48095
- * @type {SectionSlideTemplate}
48096
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48097
- */
48098
- sectionSlide?: SectionSlideTemplate | null;
48099
- /**
48100
- *
48101
- * @type {ContentSlideTemplate}
48102
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate
48103
- */
48104
- contentSlide?: ContentSlideTemplate | null;
48105
- }
48106
-
48107
- export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
48108
- readonly PDF: "PDF";
48109
- readonly PPTX: "PPTX";
48110
- };
48111
-
48112
- export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
48113
-
48114
- /**
48115
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
48116
- * @export
48117
- * @interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
48118
- */
48119
- export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
48120
- /**
48121
- * Export types this template applies to.
48122
- * @type {Array<string>}
48123
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
48124
- */
48125
- appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
48126
- /**
48127
- *
48128
- * @type {ContentSlideTemplate}
48129
- * @memberof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate
48130
- */
48131
- contentSlide?: ContentSlideTemplate | null;
48190
+ attributes: JsonApiExportTemplateOutAttributes;
48132
48191
  }
48133
48192
 
48134
- export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
48135
- readonly PDF: "PDF";
48136
- readonly PPTX: "PPTX";
48137
- };
48138
-
48139
- export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
48140
-
48141
48193
  /**
48142
48194
  *
48143
48195
  * @export
@@ -48324,10 +48376,10 @@ export declare interface JsonApiFactOutList {
48324
48376
  links?: ListLinks;
48325
48377
  /**
48326
48378
  *
48327
- * @type {JsonApiApiTokenOutListMeta}
48379
+ * @type {JsonApiColorPaletteOutListMeta}
48328
48380
  * @memberof JsonApiFactOutList
48329
48381
  */
48330
- meta?: JsonApiApiTokenOutListMeta;
48382
+ meta?: JsonApiColorPaletteOutListMeta;
48331
48383
  /**
48332
48384
  * Included resources
48333
48385
  * @type {Array<JsonApiDatasetOutWithLinks>}
@@ -48426,10 +48478,10 @@ export declare interface JsonApiFilterContextIn {
48426
48478
  id: string;
48427
48479
  /**
48428
48480
  *
48429
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
48481
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48430
48482
  * @memberof JsonApiFilterContextIn
48431
48483
  */
48432
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
48484
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48433
48485
  }
48434
48486
 
48435
48487
  /**
@@ -48504,10 +48556,10 @@ export declare interface JsonApiFilterContextOut {
48504
48556
  meta?: JsonApiVisualizationObjectOutMeta;
48505
48557
  /**
48506
48558
  *
48507
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
48559
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48508
48560
  * @memberof JsonApiFilterContextOut
48509
48561
  */
48510
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
48562
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48511
48563
  /**
48512
48564
  *
48513
48565
  * @type {JsonApiFilterContextOutRelationships}
@@ -48568,10 +48620,10 @@ export declare interface JsonApiFilterContextOutList {
48568
48620
  links?: ListLinks;
48569
48621
  /**
48570
48622
  *
48571
- * @type {JsonApiApiTokenOutListMeta}
48623
+ * @type {JsonApiColorPaletteOutListMeta}
48572
48624
  * @memberof JsonApiFilterContextOutList
48573
48625
  */
48574
- meta?: JsonApiApiTokenOutListMeta;
48626
+ meta?: JsonApiColorPaletteOutListMeta;
48575
48627
  /**
48576
48628
  * Included resources
48577
48629
  * @type {Array<JsonApiFilterContextOutIncludes>}
@@ -48638,10 +48690,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
48638
48690
  meta?: JsonApiVisualizationObjectOutMeta;
48639
48691
  /**
48640
48692
  *
48641
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
48693
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48642
48694
  * @memberof JsonApiFilterContextOutWithLinks
48643
48695
  */
48644
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
48696
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48645
48697
  /**
48646
48698
  *
48647
48699
  * @type {JsonApiFilterContextOutRelationships}
@@ -48728,10 +48780,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
48728
48780
  id?: string;
48729
48781
  /**
48730
48782
  *
48731
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
48783
+ * @type {JsonApiAnalyticalDashboardInAttributes}
48732
48784
  * @memberof JsonApiFilterContextPostOptionalId
48733
48785
  */
48734
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
48786
+ attributes: JsonApiAnalyticalDashboardInAttributes;
48735
48787
  }
48736
48788
 
48737
48789
  /**
@@ -48858,10 +48910,24 @@ export declare interface JsonApiFilterViewInRelationships {
48858
48910
  analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
48859
48911
  /**
48860
48912
  *
48861
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
48913
+ * @type {JsonApiFilterViewInRelationshipsUser}
48862
48914
  * @memberof JsonApiFilterViewInRelationships
48863
48915
  */
48864
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
48916
+ user?: JsonApiFilterViewInRelationshipsUser;
48917
+ }
48918
+
48919
+ /**
48920
+ *
48921
+ * @export
48922
+ * @interface JsonApiFilterViewInRelationshipsUser
48923
+ */
48924
+ export declare interface JsonApiFilterViewInRelationshipsUser {
48925
+ /**
48926
+ *
48927
+ * @type {JsonApiUserToOneLinkage}
48928
+ * @memberof JsonApiFilterViewInRelationshipsUser
48929
+ */
48930
+ data: JsonApiUserToOneLinkage | null;
48865
48931
  }
48866
48932
 
48867
48933
  export declare const JsonApiFilterViewInTypeEnum: {
@@ -48954,10 +49020,10 @@ export declare interface JsonApiFilterViewOutList {
48954
49020
  links?: ListLinks;
48955
49021
  /**
48956
49022
  *
48957
- * @type {JsonApiApiTokenOutListMeta}
49023
+ * @type {JsonApiColorPaletteOutListMeta}
48958
49024
  * @memberof JsonApiFilterViewOutList
48959
49025
  */
48960
- meta?: JsonApiApiTokenOutListMeta;
49026
+ meta?: JsonApiColorPaletteOutListMeta;
48961
49027
  /**
48962
49028
  * Included resources
48963
49029
  * @type {Array<JsonApiFilterViewOutIncludes>}
@@ -49309,10 +49375,10 @@ export declare interface JsonApiIdentityProviderOutList {
49309
49375
  links?: ListLinks;
49310
49376
  /**
49311
49377
  *
49312
- * @type {JsonApiApiTokenOutListMeta}
49378
+ * @type {JsonApiColorPaletteOutListMeta}
49313
49379
  * @memberof JsonApiIdentityProviderOutList
49314
49380
  */
49315
- meta?: JsonApiApiTokenOutListMeta;
49381
+ meta?: JsonApiColorPaletteOutListMeta;
49316
49382
  }
49317
49383
 
49318
49384
  export declare const JsonApiIdentityProviderOutTypeEnum: {
@@ -49471,24 +49537,10 @@ export declare interface JsonApiJwkIn {
49471
49537
  id: string;
49472
49538
  /**
49473
49539
  *
49474
- * @type {JsonApiJwkInAttributes}
49540
+ * @type {JsonApiJwkOutAttributes}
49475
49541
  * @memberof JsonApiJwkIn
49476
49542
  */
49477
- attributes?: JsonApiJwkInAttributes;
49478
- }
49479
-
49480
- /**
49481
- *
49482
- * @export
49483
- * @interface JsonApiJwkInAttributes
49484
- */
49485
- export declare interface JsonApiJwkInAttributes {
49486
- /**
49487
- * Specification of the cryptographic key
49488
- * @type {RsaSpecification}
49489
- * @memberof JsonApiJwkInAttributes
49490
- */
49491
- content?: RsaSpecification;
49543
+ attributes?: JsonApiJwkOutAttributes;
49492
49544
  }
49493
49545
 
49494
49546
  /**
@@ -49531,10 +49583,24 @@ export declare interface JsonApiJwkOut {
49531
49583
  id: string;
49532
49584
  /**
49533
49585
  *
49534
- * @type {JsonApiJwkInAttributes}
49586
+ * @type {JsonApiJwkOutAttributes}
49535
49587
  * @memberof JsonApiJwkOut
49536
49588
  */
49537
- attributes?: JsonApiJwkInAttributes;
49589
+ attributes?: JsonApiJwkOutAttributes;
49590
+ }
49591
+
49592
+ /**
49593
+ *
49594
+ * @export
49595
+ * @interface JsonApiJwkOutAttributes
49596
+ */
49597
+ export declare interface JsonApiJwkOutAttributes {
49598
+ /**
49599
+ * Specification of the cryptographic key
49600
+ * @type {RsaSpecification}
49601
+ * @memberof JsonApiJwkOutAttributes
49602
+ */
49603
+ content?: RsaSpecification;
49538
49604
  }
49539
49605
 
49540
49606
  /**
@@ -49577,10 +49643,10 @@ export declare interface JsonApiJwkOutList {
49577
49643
  links?: ListLinks;
49578
49644
  /**
49579
49645
  *
49580
- * @type {JsonApiApiTokenOutListMeta}
49646
+ * @type {JsonApiColorPaletteOutListMeta}
49581
49647
  * @memberof JsonApiJwkOutList
49582
49648
  */
49583
- meta?: JsonApiApiTokenOutListMeta;
49649
+ meta?: JsonApiColorPaletteOutListMeta;
49584
49650
  }
49585
49651
 
49586
49652
  export declare const JsonApiJwkOutTypeEnum: {
@@ -49609,10 +49675,10 @@ export declare interface JsonApiJwkOutWithLinks {
49609
49675
  id: string;
49610
49676
  /**
49611
49677
  *
49612
- * @type {JsonApiJwkInAttributes}
49678
+ * @type {JsonApiJwkOutAttributes}
49613
49679
  * @memberof JsonApiJwkOutWithLinks
49614
49680
  */
49615
- attributes?: JsonApiJwkInAttributes;
49681
+ attributes?: JsonApiJwkOutAttributes;
49616
49682
  /**
49617
49683
  *
49618
49684
  * @type {ObjectLinks}
@@ -49647,10 +49713,10 @@ export declare interface JsonApiJwkPatch {
49647
49713
  id: string;
49648
49714
  /**
49649
49715
  *
49650
- * @type {JsonApiJwkInAttributes}
49716
+ * @type {JsonApiJwkOutAttributes}
49651
49717
  * @memberof JsonApiJwkPatch
49652
49718
  */
49653
- attributes?: JsonApiJwkInAttributes;
49719
+ attributes?: JsonApiJwkOutAttributes;
49654
49720
  }
49655
49721
 
49656
49722
  /**
@@ -49862,10 +49928,10 @@ export declare interface JsonApiLabelOutList {
49862
49928
  links?: ListLinks;
49863
49929
  /**
49864
49930
  *
49865
- * @type {JsonApiApiTokenOutListMeta}
49931
+ * @type {JsonApiColorPaletteOutListMeta}
49866
49932
  * @memberof JsonApiLabelOutList
49867
49933
  */
49868
- meta?: JsonApiApiTokenOutListMeta;
49934
+ meta?: JsonApiColorPaletteOutListMeta;
49869
49935
  /**
49870
49936
  * Included resources
49871
49937
  * @type {Array<JsonApiAttributeOutWithLinks>}
@@ -50195,10 +50261,10 @@ export declare interface JsonApiLlmEndpointOutList {
50195
50261
  links?: ListLinks;
50196
50262
  /**
50197
50263
  *
50198
- * @type {JsonApiApiTokenOutListMeta}
50264
+ * @type {JsonApiColorPaletteOutListMeta}
50199
50265
  * @memberof JsonApiLlmEndpointOutList
50200
50266
  */
50201
- meta?: JsonApiApiTokenOutListMeta;
50267
+ meta?: JsonApiColorPaletteOutListMeta;
50202
50268
  }
50203
50269
 
50204
50270
  export declare const JsonApiLlmEndpointOutTypeEnum: {
@@ -50373,10 +50439,48 @@ export declare interface JsonApiMetricIn {
50373
50439
  id: string;
50374
50440
  /**
50375
50441
  *
50376
- * @type {JsonApiMetricPostOptionalIdAttributes}
50442
+ * @type {JsonApiMetricInAttributes}
50377
50443
  * @memberof JsonApiMetricIn
50378
50444
  */
50379
- attributes: JsonApiMetricPostOptionalIdAttributes;
50445
+ attributes: JsonApiMetricInAttributes;
50446
+ }
50447
+
50448
+ /**
50449
+ *
50450
+ * @export
50451
+ * @interface JsonApiMetricInAttributes
50452
+ */
50453
+ export declare interface JsonApiMetricInAttributes {
50454
+ /**
50455
+ *
50456
+ * @type {string}
50457
+ * @memberof JsonApiMetricInAttributes
50458
+ */
50459
+ title?: string;
50460
+ /**
50461
+ *
50462
+ * @type {string}
50463
+ * @memberof JsonApiMetricInAttributes
50464
+ */
50465
+ description?: string;
50466
+ /**
50467
+ *
50468
+ * @type {Array<string>}
50469
+ * @memberof JsonApiMetricInAttributes
50470
+ */
50471
+ tags?: Array<string>;
50472
+ /**
50473
+ *
50474
+ * @type {boolean}
50475
+ * @memberof JsonApiMetricInAttributes
50476
+ */
50477
+ areRelationsValid?: boolean;
50478
+ /**
50479
+ *
50480
+ * @type {JsonApiMetricOutAttributesContent}
50481
+ * @memberof JsonApiMetricInAttributes
50482
+ */
50483
+ content: JsonApiMetricOutAttributesContent;
50380
50484
  }
50381
50485
 
50382
50486
  /**
@@ -50585,10 +50689,10 @@ export declare interface JsonApiMetricOutList {
50585
50689
  links?: ListLinks;
50586
50690
  /**
50587
50691
  *
50588
- * @type {JsonApiApiTokenOutListMeta}
50692
+ * @type {JsonApiColorPaletteOutListMeta}
50589
50693
  * @memberof JsonApiMetricOutList
50590
50694
  */
50591
- meta?: JsonApiApiTokenOutListMeta;
50695
+ meta?: JsonApiColorPaletteOutListMeta;
50592
50696
  /**
50593
50697
  * Included resources
50594
50698
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -50757,48 +50861,10 @@ export declare interface JsonApiMetricPostOptionalId {
50757
50861
  id?: string;
50758
50862
  /**
50759
50863
  *
50760
- * @type {JsonApiMetricPostOptionalIdAttributes}
50864
+ * @type {JsonApiMetricInAttributes}
50761
50865
  * @memberof JsonApiMetricPostOptionalId
50762
50866
  */
50763
- attributes: JsonApiMetricPostOptionalIdAttributes;
50764
- }
50765
-
50766
- /**
50767
- *
50768
- * @export
50769
- * @interface JsonApiMetricPostOptionalIdAttributes
50770
- */
50771
- export declare interface JsonApiMetricPostOptionalIdAttributes {
50772
- /**
50773
- *
50774
- * @type {string}
50775
- * @memberof JsonApiMetricPostOptionalIdAttributes
50776
- */
50777
- title?: string;
50778
- /**
50779
- *
50780
- * @type {string}
50781
- * @memberof JsonApiMetricPostOptionalIdAttributes
50782
- */
50783
- description?: string;
50784
- /**
50785
- *
50786
- * @type {Array<string>}
50787
- * @memberof JsonApiMetricPostOptionalIdAttributes
50788
- */
50789
- tags?: Array<string>;
50790
- /**
50791
- *
50792
- * @type {boolean}
50793
- * @memberof JsonApiMetricPostOptionalIdAttributes
50794
- */
50795
- areRelationsValid?: boolean;
50796
- /**
50797
- *
50798
- * @type {JsonApiMetricOutAttributesContent}
50799
- * @memberof JsonApiMetricPostOptionalIdAttributes
50800
- */
50801
- content: JsonApiMetricOutAttributesContent;
50867
+ attributes: JsonApiMetricInAttributes;
50802
50868
  }
50803
50869
 
50804
50870
  /**
@@ -50841,27 +50907,100 @@ export declare interface JsonApiNotificationChannelIn {
50841
50907
  id: string;
50842
50908
  /**
50843
50909
  *
50844
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
50910
+ * @type {JsonApiNotificationChannelInAttributes}
50845
50911
  * @memberof JsonApiNotificationChannelIn
50846
50912
  */
50847
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
50913
+ attributes?: JsonApiNotificationChannelInAttributes;
50848
50914
  }
50849
50915
 
50850
50916
  /**
50851
50917
  *
50852
50918
  * @export
50853
- * @interface JsonApiNotificationChannelInDocument
50919
+ * @interface JsonApiNotificationChannelInAttributes
50854
50920
  */
50855
- export declare interface JsonApiNotificationChannelInDocument {
50921
+ export declare interface JsonApiNotificationChannelInAttributes {
50856
50922
  /**
50857
50923
  *
50858
- * @type {JsonApiNotificationChannelIn}
50859
- * @memberof JsonApiNotificationChannelInDocument
50924
+ * @type {string}
50925
+ * @memberof JsonApiNotificationChannelInAttributes
50860
50926
  */
50861
- data: JsonApiNotificationChannelIn;
50862
- }
50863
-
50864
- export declare const JsonApiNotificationChannelInTypeEnum: {
50927
+ name?: string | null;
50928
+ /**
50929
+ *
50930
+ * @type {string}
50931
+ * @memberof JsonApiNotificationChannelInAttributes
50932
+ */
50933
+ description?: string | null;
50934
+ /**
50935
+ * The destination where the notifications are to be sent.
50936
+ * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
50937
+ * @memberof JsonApiNotificationChannelInAttributes
50938
+ */
50939
+ destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
50940
+ /**
50941
+ * 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}.
50942
+ * @type {string}
50943
+ * @memberof JsonApiNotificationChannelInAttributes
50944
+ */
50945
+ customDashboardUrl?: string;
50946
+ /**
50947
+ * 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
50948
+ * @type {string}
50949
+ * @memberof JsonApiNotificationChannelInAttributes
50950
+ */
50951
+ dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
50952
+ /**
50953
+ * 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
50954
+ * @type {string}
50955
+ * @memberof JsonApiNotificationChannelInAttributes
50956
+ */
50957
+ allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
50958
+ /**
50959
+ * 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
50960
+ * @type {string}
50961
+ * @memberof JsonApiNotificationChannelInAttributes
50962
+ */
50963
+ inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
50964
+ }
50965
+
50966
+ export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
50967
+ readonly CREATOR: "CREATOR";
50968
+ readonly INTERNAL: "INTERNAL";
50969
+ readonly EXTERNAL: "EXTERNAL";
50970
+ };
50971
+
50972
+ export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
50973
+
50974
+ export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
50975
+ readonly HIDDEN: "HIDDEN";
50976
+ readonly INTERNAL_ONLY: "INTERNAL_ONLY";
50977
+ readonly ALL: "ALL";
50978
+ };
50979
+
50980
+ export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
50981
+
50982
+ export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
50983
+ readonly DISABLED: "DISABLED";
50984
+ readonly ENABLED: "ENABLED";
50985
+ };
50986
+
50987
+ export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
50988
+
50989
+ /**
50990
+ *
50991
+ * @export
50992
+ * @interface JsonApiNotificationChannelInDocument
50993
+ */
50994
+ export declare interface JsonApiNotificationChannelInDocument {
50995
+ /**
50996
+ *
50997
+ * @type {JsonApiNotificationChannelIn}
50998
+ * @memberof JsonApiNotificationChannelInDocument
50999
+ */
51000
+ data: JsonApiNotificationChannelIn;
51001
+ }
51002
+
51003
+ export declare const JsonApiNotificationChannelInTypeEnum: {
50865
51004
  readonly NOTIFICATION_CHANNEL: "notificationChannel";
50866
51005
  };
50867
51006
 
@@ -51047,10 +51186,10 @@ export declare interface JsonApiNotificationChannelOutList {
51047
51186
  links?: ListLinks;
51048
51187
  /**
51049
51188
  *
51050
- * @type {JsonApiApiTokenOutListMeta}
51189
+ * @type {JsonApiColorPaletteOutListMeta}
51051
51190
  * @memberof JsonApiNotificationChannelOutList
51052
51191
  */
51053
- meta?: JsonApiApiTokenOutListMeta;
51192
+ meta?: JsonApiColorPaletteOutListMeta;
51054
51193
  }
51055
51194
 
51056
51195
  export declare const JsonApiNotificationChannelOutTypeEnum: {
@@ -51117,10 +51256,10 @@ export declare interface JsonApiNotificationChannelPatch {
51117
51256
  id: string;
51118
51257
  /**
51119
51258
  *
51120
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
51259
+ * @type {JsonApiNotificationChannelInAttributes}
51121
51260
  * @memberof JsonApiNotificationChannelPatch
51122
51261
  */
51123
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
51262
+ attributes?: JsonApiNotificationChannelInAttributes;
51124
51263
  }
51125
51264
 
51126
51265
  /**
@@ -51163,85 +51302,12 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
51163
51302
  id?: string;
51164
51303
  /**
51165
51304
  *
51166
- * @type {JsonApiNotificationChannelPostOptionalIdAttributes}
51305
+ * @type {JsonApiNotificationChannelInAttributes}
51167
51306
  * @memberof JsonApiNotificationChannelPostOptionalId
51168
51307
  */
51169
- attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
51308
+ attributes?: JsonApiNotificationChannelInAttributes;
51170
51309
  }
51171
51310
 
51172
- /**
51173
- *
51174
- * @export
51175
- * @interface JsonApiNotificationChannelPostOptionalIdAttributes
51176
- */
51177
- export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
51178
- /**
51179
- *
51180
- * @type {string}
51181
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51182
- */
51183
- name?: string | null;
51184
- /**
51185
- *
51186
- * @type {string}
51187
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51188
- */
51189
- description?: string | null;
51190
- /**
51191
- * The destination where the notifications are to be sent.
51192
- * @type {DefaultSmtp | InPlatform | Smtp | Webhook}
51193
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51194
- */
51195
- destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
51196
- /**
51197
- * 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}.
51198
- * @type {string}
51199
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51200
- */
51201
- customDashboardUrl?: string;
51202
- /**
51203
- * 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
51204
- * @type {string}
51205
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51206
- */
51207
- dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
51208
- /**
51209
- * 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
51210
- * @type {string}
51211
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51212
- */
51213
- allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
51214
- /**
51215
- * 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
51216
- * @type {string}
51217
- * @memberof JsonApiNotificationChannelPostOptionalIdAttributes
51218
- */
51219
- inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
51220
- }
51221
-
51222
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
51223
- readonly CREATOR: "CREATOR";
51224
- readonly INTERNAL: "INTERNAL";
51225
- readonly EXTERNAL: "EXTERNAL";
51226
- };
51227
-
51228
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
51229
-
51230
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
51231
- readonly HIDDEN: "HIDDEN";
51232
- readonly INTERNAL_ONLY: "INTERNAL_ONLY";
51233
- readonly ALL: "ALL";
51234
- };
51235
-
51236
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
51237
-
51238
- export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
51239
- readonly DISABLED: "DISABLED";
51240
- readonly ENABLED: "ENABLED";
51241
- };
51242
-
51243
- export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
51244
-
51245
51311
  /**
51246
51312
  *
51247
51313
  * @export
@@ -51289,93 +51355,10 @@ export declare interface JsonApiOrganizationIn {
51289
51355
  id: string;
51290
51356
  /**
51291
51357
  *
51292
- * @type {JsonApiOrganizationInAttributes}
51358
+ * @type {JsonApiOrganizationPatchAttributes}
51293
51359
  * @memberof JsonApiOrganizationIn
51294
51360
  */
51295
- attributes?: JsonApiOrganizationInAttributes;
51296
- }
51297
-
51298
- /**
51299
- *
51300
- * @export
51301
- * @interface JsonApiOrganizationInAttributes
51302
- */
51303
- export declare interface JsonApiOrganizationInAttributes {
51304
- /**
51305
- *
51306
- * @type {string}
51307
- * @memberof JsonApiOrganizationInAttributes
51308
- */
51309
- name?: string | null;
51310
- /**
51311
- *
51312
- * @type {string}
51313
- * @memberof JsonApiOrganizationInAttributes
51314
- */
51315
- hostname?: string;
51316
- /**
51317
- *
51318
- * @type {Array<string>}
51319
- * @memberof JsonApiOrganizationInAttributes
51320
- */
51321
- allowedOrigins?: Array<string>;
51322
- /**
51323
- *
51324
- * @type {string}
51325
- * @memberof JsonApiOrganizationInAttributes
51326
- */
51327
- oauthIssuerLocation?: string;
51328
- /**
51329
- *
51330
- * @type {string}
51331
- * @memberof JsonApiOrganizationInAttributes
51332
- */
51333
- oauthClientId?: string;
51334
- /**
51335
- *
51336
- * @type {string}
51337
- * @memberof JsonApiOrganizationInAttributes
51338
- */
51339
- oauthClientSecret?: string;
51340
- /**
51341
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51342
- * @type {string}
51343
- * @memberof JsonApiOrganizationInAttributes
51344
- * @deprecated
51345
- */
51346
- earlyAccess?: string | null;
51347
- /**
51348
- * The early access feature identifiers. They are used to enable experimental features.
51349
- * @type {Array<string>}
51350
- * @memberof JsonApiOrganizationInAttributes
51351
- */
51352
- earlyAccessValues?: Array<string> | null;
51353
- /**
51354
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
51355
- * @type {string}
51356
- * @memberof JsonApiOrganizationInAttributes
51357
- */
51358
- oauthIssuerId?: string;
51359
- /**
51360
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
51361
- * @type {string}
51362
- * @memberof JsonApiOrganizationInAttributes
51363
- */
51364
- oauthSubjectIdClaim?: string;
51365
- /**
51366
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
51367
- * @type {{ [key: string]: string; }}
51368
- * @memberof JsonApiOrganizationInAttributes
51369
- */
51370
- oauthCustomAuthAttributes?: {
51371
- [key: string]: string;
51372
- };
51373
- /**
51374
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
51375
- * @type {Array<string>}
51376
- * @memberof JsonApiOrganizationInAttributes
51377
- */
51378
- oauthCustomScopes?: Array<string> | null;
51361
+ attributes?: JsonApiOrganizationPatchAttributes;
51379
51362
  }
51380
51363
 
51381
51364
  /**
@@ -51607,44 +51590,16 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
51607
51590
  export declare interface JsonApiOrganizationOutRelationships {
51608
51591
  /**
51609
51592
  *
51610
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
51593
+ * @type {JsonApiFilterViewInRelationshipsUser}
51611
51594
  * @memberof JsonApiOrganizationOutRelationships
51612
51595
  */
51613
- bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
51596
+ bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
51614
51597
  /**
51615
51598
  *
51616
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
51599
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
51617
51600
  * @memberof JsonApiOrganizationOutRelationships
51618
51601
  */
51619
- bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
51620
- }
51621
-
51622
- /**
51623
- *
51624
- * @export
51625
- * @interface JsonApiOrganizationOutRelationshipsBootstrapUser
51626
- */
51627
- export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
51628
- /**
51629
- *
51630
- * @type {JsonApiUserToOneLinkage}
51631
- * @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
51632
- */
51633
- data: JsonApiUserToOneLinkage | null;
51634
- }
51635
-
51636
- /**
51637
- *
51638
- * @export
51639
- * @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
51640
- */
51641
- export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
51642
- /**
51643
- *
51644
- * @type {JsonApiUserGroupToOneLinkage}
51645
- * @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
51646
- */
51647
- data: JsonApiUserGroupToOneLinkage | null;
51602
+ bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
51648
51603
  }
51649
51604
 
51650
51605
  export declare const JsonApiOrganizationOutTypeEnum: {
@@ -51673,10 +51628,93 @@ export declare interface JsonApiOrganizationPatch {
51673
51628
  id: string;
51674
51629
  /**
51675
51630
  *
51676
- * @type {JsonApiOrganizationInAttributes}
51631
+ * @type {JsonApiOrganizationPatchAttributes}
51677
51632
  * @memberof JsonApiOrganizationPatch
51678
51633
  */
51679
- attributes?: JsonApiOrganizationInAttributes;
51634
+ attributes?: JsonApiOrganizationPatchAttributes;
51635
+ }
51636
+
51637
+ /**
51638
+ *
51639
+ * @export
51640
+ * @interface JsonApiOrganizationPatchAttributes
51641
+ */
51642
+ export declare interface JsonApiOrganizationPatchAttributes {
51643
+ /**
51644
+ *
51645
+ * @type {string}
51646
+ * @memberof JsonApiOrganizationPatchAttributes
51647
+ */
51648
+ name?: string | null;
51649
+ /**
51650
+ *
51651
+ * @type {string}
51652
+ * @memberof JsonApiOrganizationPatchAttributes
51653
+ */
51654
+ hostname?: string;
51655
+ /**
51656
+ *
51657
+ * @type {Array<string>}
51658
+ * @memberof JsonApiOrganizationPatchAttributes
51659
+ */
51660
+ allowedOrigins?: Array<string>;
51661
+ /**
51662
+ *
51663
+ * @type {string}
51664
+ * @memberof JsonApiOrganizationPatchAttributes
51665
+ */
51666
+ oauthIssuerLocation?: string;
51667
+ /**
51668
+ *
51669
+ * @type {string}
51670
+ * @memberof JsonApiOrganizationPatchAttributes
51671
+ */
51672
+ oauthClientId?: string;
51673
+ /**
51674
+ *
51675
+ * @type {string}
51676
+ * @memberof JsonApiOrganizationPatchAttributes
51677
+ */
51678
+ oauthClientSecret?: string;
51679
+ /**
51680
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
51681
+ * @type {string}
51682
+ * @memberof JsonApiOrganizationPatchAttributes
51683
+ * @deprecated
51684
+ */
51685
+ earlyAccess?: string | null;
51686
+ /**
51687
+ * The early access feature identifiers. They are used to enable experimental features.
51688
+ * @type {Array<string>}
51689
+ * @memberof JsonApiOrganizationPatchAttributes
51690
+ */
51691
+ earlyAccessValues?: Array<string> | null;
51692
+ /**
51693
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
51694
+ * @type {string}
51695
+ * @memberof JsonApiOrganizationPatchAttributes
51696
+ */
51697
+ oauthIssuerId?: string;
51698
+ /**
51699
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
51700
+ * @type {string}
51701
+ * @memberof JsonApiOrganizationPatchAttributes
51702
+ */
51703
+ oauthSubjectIdClaim?: string;
51704
+ /**
51705
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
51706
+ * @type {{ [key: string]: string; }}
51707
+ * @memberof JsonApiOrganizationPatchAttributes
51708
+ */
51709
+ oauthCustomAuthAttributes?: {
51710
+ [key: string]: string;
51711
+ };
51712
+ /**
51713
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
51714
+ * @type {Array<string>}
51715
+ * @memberof JsonApiOrganizationPatchAttributes
51716
+ */
51717
+ oauthCustomScopes?: Array<string> | null;
51680
51718
  }
51681
51719
 
51682
51720
  /**
@@ -51719,10 +51757,10 @@ export declare interface JsonApiOrganizationSettingIn {
51719
51757
  id: string;
51720
51758
  /**
51721
51759
  *
51722
- * @type {JsonApiUserSettingInAttributes}
51760
+ * @type {JsonApiWorkspaceSettingInAttributes}
51723
51761
  * @memberof JsonApiOrganizationSettingIn
51724
51762
  */
51725
- attributes?: JsonApiUserSettingInAttributes;
51763
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51726
51764
  }
51727
51765
 
51728
51766
  /**
@@ -51765,10 +51803,10 @@ export declare interface JsonApiOrganizationSettingOut {
51765
51803
  id: string;
51766
51804
  /**
51767
51805
  *
51768
- * @type {JsonApiUserSettingInAttributes}
51806
+ * @type {JsonApiWorkspaceSettingInAttributes}
51769
51807
  * @memberof JsonApiOrganizationSettingOut
51770
51808
  */
51771
- attributes?: JsonApiUserSettingInAttributes;
51809
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51772
51810
  }
51773
51811
 
51774
51812
  /**
@@ -51811,10 +51849,10 @@ export declare interface JsonApiOrganizationSettingOutList {
51811
51849
  links?: ListLinks;
51812
51850
  /**
51813
51851
  *
51814
- * @type {JsonApiApiTokenOutListMeta}
51852
+ * @type {JsonApiColorPaletteOutListMeta}
51815
51853
  * @memberof JsonApiOrganizationSettingOutList
51816
51854
  */
51817
- meta?: JsonApiApiTokenOutListMeta;
51855
+ meta?: JsonApiColorPaletteOutListMeta;
51818
51856
  }
51819
51857
 
51820
51858
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
@@ -51843,10 +51881,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
51843
51881
  id: string;
51844
51882
  /**
51845
51883
  *
51846
- * @type {JsonApiUserSettingInAttributes}
51884
+ * @type {JsonApiWorkspaceSettingInAttributes}
51847
51885
  * @memberof JsonApiOrganizationSettingOutWithLinks
51848
51886
  */
51849
- attributes?: JsonApiUserSettingInAttributes;
51887
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51850
51888
  /**
51851
51889
  *
51852
51890
  * @type {ObjectLinks}
@@ -51881,10 +51919,10 @@ export declare interface JsonApiOrganizationSettingPatch {
51881
51919
  id: string;
51882
51920
  /**
51883
51921
  *
51884
- * @type {JsonApiUserSettingInAttributes}
51922
+ * @type {JsonApiWorkspaceSettingInAttributes}
51885
51923
  * @memberof JsonApiOrganizationSettingPatch
51886
51924
  */
51887
- attributes?: JsonApiUserSettingInAttributes;
51925
+ attributes?: JsonApiWorkspaceSettingInAttributes;
51888
51926
  }
51889
51927
 
51890
51928
  /**
@@ -51927,10 +51965,10 @@ export declare interface JsonApiThemeIn {
51927
51965
  id: string;
51928
51966
  /**
51929
51967
  *
51930
- * @type {JsonApiColorPaletteInAttributes}
51968
+ * @type {JsonApiColorPaletteOutAttributes}
51931
51969
  * @memberof JsonApiThemeIn
51932
51970
  */
51933
- attributes: JsonApiColorPaletteInAttributes;
51971
+ attributes: JsonApiColorPaletteOutAttributes;
51934
51972
  }
51935
51973
 
51936
51974
  /**
@@ -51973,10 +52011,10 @@ export declare interface JsonApiThemeOut {
51973
52011
  id: string;
51974
52012
  /**
51975
52013
  *
51976
- * @type {JsonApiColorPaletteInAttributes}
52014
+ * @type {JsonApiColorPaletteOutAttributes}
51977
52015
  * @memberof JsonApiThemeOut
51978
52016
  */
51979
- attributes: JsonApiColorPaletteInAttributes;
52017
+ attributes: JsonApiColorPaletteOutAttributes;
51980
52018
  }
51981
52019
 
51982
52020
  /**
@@ -52019,10 +52057,10 @@ export declare interface JsonApiThemeOutList {
52019
52057
  links?: ListLinks;
52020
52058
  /**
52021
52059
  *
52022
- * @type {JsonApiApiTokenOutListMeta}
52060
+ * @type {JsonApiColorPaletteOutListMeta}
52023
52061
  * @memberof JsonApiThemeOutList
52024
52062
  */
52025
- meta?: JsonApiApiTokenOutListMeta;
52063
+ meta?: JsonApiColorPaletteOutListMeta;
52026
52064
  }
52027
52065
 
52028
52066
  export declare const JsonApiThemeOutTypeEnum: {
@@ -52051,10 +52089,10 @@ export declare interface JsonApiThemeOutWithLinks {
52051
52089
  id: string;
52052
52090
  /**
52053
52091
  *
52054
- * @type {JsonApiColorPaletteInAttributes}
52092
+ * @type {JsonApiColorPaletteOutAttributes}
52055
52093
  * @memberof JsonApiThemeOutWithLinks
52056
52094
  */
52057
- attributes: JsonApiColorPaletteInAttributes;
52095
+ attributes: JsonApiColorPaletteOutAttributes;
52058
52096
  /**
52059
52097
  *
52060
52098
  * @type {ObjectLinks}
@@ -52135,16 +52173,54 @@ export declare interface JsonApiUserDataFilterIn {
52135
52173
  id: string;
52136
52174
  /**
52137
52175
  *
52138
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
52176
+ * @type {JsonApiUserDataFilterInAttributes}
52139
52177
  * @memberof JsonApiUserDataFilterIn
52140
52178
  */
52141
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
52179
+ attributes: JsonApiUserDataFilterInAttributes;
52142
52180
  /**
52143
52181
  *
52144
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
52182
+ * @type {JsonApiUserDataFilterInRelationships}
52145
52183
  * @memberof JsonApiUserDataFilterIn
52146
52184
  */
52147
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
52185
+ relationships?: JsonApiUserDataFilterInRelationships;
52186
+ }
52187
+
52188
+ /**
52189
+ *
52190
+ * @export
52191
+ * @interface JsonApiUserDataFilterInAttributes
52192
+ */
52193
+ export declare interface JsonApiUserDataFilterInAttributes {
52194
+ /**
52195
+ *
52196
+ * @type {string}
52197
+ * @memberof JsonApiUserDataFilterInAttributes
52198
+ */
52199
+ title?: string;
52200
+ /**
52201
+ *
52202
+ * @type {string}
52203
+ * @memberof JsonApiUserDataFilterInAttributes
52204
+ */
52205
+ description?: string;
52206
+ /**
52207
+ *
52208
+ * @type {Array<string>}
52209
+ * @memberof JsonApiUserDataFilterInAttributes
52210
+ */
52211
+ tags?: Array<string>;
52212
+ /**
52213
+ *
52214
+ * @type {boolean}
52215
+ * @memberof JsonApiUserDataFilterInAttributes
52216
+ */
52217
+ areRelationsValid?: boolean;
52218
+ /**
52219
+ *
52220
+ * @type {string}
52221
+ * @memberof JsonApiUserDataFilterInAttributes
52222
+ */
52223
+ maql: string;
52148
52224
  }
52149
52225
 
52150
52226
  /**
@@ -52161,6 +52237,40 @@ export declare interface JsonApiUserDataFilterInDocument {
52161
52237
  data: JsonApiUserDataFilterIn;
52162
52238
  }
52163
52239
 
52240
+ /**
52241
+ *
52242
+ * @export
52243
+ * @interface JsonApiUserDataFilterInRelationships
52244
+ */
52245
+ export declare interface JsonApiUserDataFilterInRelationships {
52246
+ /**
52247
+ *
52248
+ * @type {JsonApiFilterViewInRelationshipsUser}
52249
+ * @memberof JsonApiUserDataFilterInRelationships
52250
+ */
52251
+ user?: JsonApiFilterViewInRelationshipsUser;
52252
+ /**
52253
+ *
52254
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
52255
+ * @memberof JsonApiUserDataFilterInRelationships
52256
+ */
52257
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
52258
+ }
52259
+
52260
+ /**
52261
+ *
52262
+ * @export
52263
+ * @interface JsonApiUserDataFilterInRelationshipsUserGroup
52264
+ */
52265
+ export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
52266
+ /**
52267
+ *
52268
+ * @type {JsonApiUserGroupToOneLinkage}
52269
+ * @memberof JsonApiUserDataFilterInRelationshipsUserGroup
52270
+ */
52271
+ data: JsonApiUserGroupToOneLinkage | null;
52272
+ }
52273
+
52164
52274
  export declare const JsonApiUserDataFilterInTypeEnum: {
52165
52275
  readonly USER_DATA_FILTER: "userDataFilter";
52166
52276
  };
@@ -52193,10 +52303,10 @@ export declare interface JsonApiUserDataFilterOut {
52193
52303
  meta?: JsonApiVisualizationObjectOutMeta;
52194
52304
  /**
52195
52305
  *
52196
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
52306
+ * @type {JsonApiUserDataFilterInAttributes}
52197
52307
  * @memberof JsonApiUserDataFilterOut
52198
52308
  */
52199
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
52309
+ attributes: JsonApiUserDataFilterInAttributes;
52200
52310
  /**
52201
52311
  *
52202
52312
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -52257,10 +52367,10 @@ export declare interface JsonApiUserDataFilterOutList {
52257
52367
  links?: ListLinks;
52258
52368
  /**
52259
52369
  *
52260
- * @type {JsonApiApiTokenOutListMeta}
52370
+ * @type {JsonApiColorPaletteOutListMeta}
52261
52371
  * @memberof JsonApiUserDataFilterOutList
52262
52372
  */
52263
- meta?: JsonApiApiTokenOutListMeta;
52373
+ meta?: JsonApiColorPaletteOutListMeta;
52264
52374
  /**
52265
52375
  * Included resources
52266
52376
  * @type {Array<JsonApiUserDataFilterOutIncludes>}
@@ -52277,16 +52387,16 @@ export declare interface JsonApiUserDataFilterOutList {
52277
52387
  export declare interface JsonApiUserDataFilterOutRelationships {
52278
52388
  /**
52279
52389
  *
52280
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
52390
+ * @type {JsonApiFilterViewInRelationshipsUser}
52281
52391
  * @memberof JsonApiUserDataFilterOutRelationships
52282
52392
  */
52283
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
52393
+ user?: JsonApiFilterViewInRelationshipsUser;
52284
52394
  /**
52285
52395
  *
52286
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
52396
+ * @type {JsonApiUserDataFilterInRelationshipsUserGroup}
52287
52397
  * @memberof JsonApiUserDataFilterOutRelationships
52288
52398
  */
52289
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
52399
+ userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
52290
52400
  /**
52291
52401
  *
52292
52402
  * @type {JsonApiVisualizationObjectOutRelationshipsFacts}
@@ -52351,10 +52461,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
52351
52461
  meta?: JsonApiVisualizationObjectOutMeta;
52352
52462
  /**
52353
52463
  *
52354
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
52464
+ * @type {JsonApiUserDataFilterInAttributes}
52355
52465
  * @memberof JsonApiUserDataFilterOutWithLinks
52356
52466
  */
52357
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
52467
+ attributes: JsonApiUserDataFilterInAttributes;
52358
52468
  /**
52359
52469
  *
52360
52470
  * @type {JsonApiUserDataFilterOutRelationships}
@@ -52401,10 +52511,10 @@ export declare interface JsonApiUserDataFilterPatch {
52401
52511
  attributes: JsonApiUserDataFilterPatchAttributes;
52402
52512
  /**
52403
52513
  *
52404
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
52514
+ * @type {JsonApiUserDataFilterInRelationships}
52405
52515
  * @memberof JsonApiUserDataFilterPatch
52406
52516
  */
52407
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
52517
+ relationships?: JsonApiUserDataFilterInRelationships;
52408
52518
  }
52409
52519
 
52410
52520
  /**
@@ -52474,65 +52584,27 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
52474
52584
  /**
52475
52585
  * Object type
52476
52586
  * @type {string}
52477
- * @memberof JsonApiUserDataFilterPostOptionalId
52478
- */
52479
- type: JsonApiUserDataFilterPostOptionalIdTypeEnum;
52480
- /**
52481
- * API identifier of an object
52482
- * @type {string}
52483
- * @memberof JsonApiUserDataFilterPostOptionalId
52484
- */
52485
- id?: string;
52486
- /**
52487
- *
52488
- * @type {JsonApiUserDataFilterPostOptionalIdAttributes}
52489
- * @memberof JsonApiUserDataFilterPostOptionalId
52490
- */
52491
- attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
52492
- /**
52493
- *
52494
- * @type {JsonApiUserDataFilterPostOptionalIdRelationships}
52495
- * @memberof JsonApiUserDataFilterPostOptionalId
52496
- */
52497
- relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
52498
- }
52499
-
52500
- /**
52501
- *
52502
- * @export
52503
- * @interface JsonApiUserDataFilterPostOptionalIdAttributes
52504
- */
52505
- export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
52506
- /**
52507
- *
52508
- * @type {string}
52509
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
52510
- */
52511
- title?: string;
52512
- /**
52513
- *
52514
- * @type {string}
52515
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
52587
+ * @memberof JsonApiUserDataFilterPostOptionalId
52516
52588
  */
52517
- description?: string;
52589
+ type: JsonApiUserDataFilterPostOptionalIdTypeEnum;
52518
52590
  /**
52519
- *
52520
- * @type {Array<string>}
52521
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
52591
+ * API identifier of an object
52592
+ * @type {string}
52593
+ * @memberof JsonApiUserDataFilterPostOptionalId
52522
52594
  */
52523
- tags?: Array<string>;
52595
+ id?: string;
52524
52596
  /**
52525
52597
  *
52526
- * @type {boolean}
52527
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
52598
+ * @type {JsonApiUserDataFilterInAttributes}
52599
+ * @memberof JsonApiUserDataFilterPostOptionalId
52528
52600
  */
52529
- areRelationsValid?: boolean;
52601
+ attributes: JsonApiUserDataFilterInAttributes;
52530
52602
  /**
52531
52603
  *
52532
- * @type {string}
52533
- * @memberof JsonApiUserDataFilterPostOptionalIdAttributes
52604
+ * @type {JsonApiUserDataFilterInRelationships}
52605
+ * @memberof JsonApiUserDataFilterPostOptionalId
52534
52606
  */
52535
- maql: string;
52607
+ relationships?: JsonApiUserDataFilterInRelationships;
52536
52608
  }
52537
52609
 
52538
52610
  /**
@@ -52549,26 +52621,6 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
52549
52621
  data: JsonApiUserDataFilterPostOptionalId;
52550
52622
  }
52551
52623
 
52552
- /**
52553
- *
52554
- * @export
52555
- * @interface JsonApiUserDataFilterPostOptionalIdRelationships
52556
- */
52557
- export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
52558
- /**
52559
- *
52560
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
52561
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
52562
- */
52563
- user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
52564
- /**
52565
- *
52566
- * @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
52567
- * @memberof JsonApiUserDataFilterPostOptionalIdRelationships
52568
- */
52569
- userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
52570
- }
52571
-
52572
52624
  export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
52573
52625
  readonly USER_DATA_FILTER: "userDataFilter";
52574
52626
  };
@@ -52745,10 +52797,10 @@ export declare interface JsonApiUserGroupOutList {
52745
52797
  links?: ListLinks;
52746
52798
  /**
52747
52799
  *
52748
- * @type {JsonApiApiTokenOutListMeta}
52800
+ * @type {JsonApiColorPaletteOutListMeta}
52749
52801
  * @memberof JsonApiUserGroupOutList
52750
52802
  */
52751
- meta?: JsonApiApiTokenOutListMeta;
52803
+ meta?: JsonApiColorPaletteOutListMeta;
52752
52804
  /**
52753
52805
  * Included resources
52754
52806
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -52998,10 +53050,10 @@ export declare interface JsonApiUserIdentifierOutList {
52998
53050
  links?: ListLinks;
52999
53051
  /**
53000
53052
  *
53001
- * @type {JsonApiApiTokenOutListMeta}
53053
+ * @type {JsonApiColorPaletteOutListMeta}
53002
53054
  * @memberof JsonApiUserIdentifierOutList
53003
53055
  */
53004
- meta?: JsonApiApiTokenOutListMeta;
53056
+ meta?: JsonApiColorPaletteOutListMeta;
53005
53057
  }
53006
53058
 
53007
53059
  export declare const JsonApiUserIdentifierOutTypeEnum: {
@@ -53243,10 +53295,10 @@ export declare interface JsonApiUserOutList {
53243
53295
  links?: ListLinks;
53244
53296
  /**
53245
53297
  *
53246
- * @type {JsonApiApiTokenOutListMeta}
53298
+ * @type {JsonApiColorPaletteOutListMeta}
53247
53299
  * @memberof JsonApiUserOutList
53248
53300
  */
53249
- meta?: JsonApiApiTokenOutListMeta;
53301
+ meta?: JsonApiColorPaletteOutListMeta;
53250
53302
  /**
53251
53303
  * Included resources
53252
53304
  * @type {Array<JsonApiUserGroupOutWithLinks>}
@@ -53405,57 +53457,12 @@ export declare interface JsonApiUserSettingIn {
53405
53457
  id: string;
53406
53458
  /**
53407
53459
  *
53408
- * @type {JsonApiUserSettingInAttributes}
53460
+ * @type {JsonApiWorkspaceSettingInAttributes}
53409
53461
  * @memberof JsonApiUserSettingIn
53410
53462
  */
53411
- attributes?: JsonApiUserSettingInAttributes;
53412
- }
53413
-
53414
- /**
53415
- *
53416
- * @export
53417
- * @interface JsonApiUserSettingInAttributes
53418
- */
53419
- export declare interface JsonApiUserSettingInAttributes {
53420
- /**
53421
- * Free-form JSON content. Maximum supported length is 15000 characters.
53422
- * @type {object}
53423
- * @memberof JsonApiUserSettingInAttributes
53424
- */
53425
- content?: object;
53426
- /**
53427
- *
53428
- * @type {string}
53429
- * @memberof JsonApiUserSettingInAttributes
53430
- */
53431
- type?: JsonApiUserSettingInAttributesTypeEnum;
53463
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53432
53464
  }
53433
53465
 
53434
- export declare const JsonApiUserSettingInAttributesTypeEnum: {
53435
- readonly TIMEZONE: "TIMEZONE";
53436
- readonly ACTIVE_THEME: "ACTIVE_THEME";
53437
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
53438
- readonly WHITE_LABELING: "WHITE_LABELING";
53439
- readonly LOCALE: "LOCALE";
53440
- readonly METADATA_LOCALE: "METADATA_LOCALE";
53441
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
53442
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
53443
- readonly WEEK_START: "WEEK_START";
53444
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
53445
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
53446
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
53447
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
53448
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
53449
- readonly ALERT: "ALERT";
53450
- readonly SEPARATORS: "SEPARATORS";
53451
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
53452
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
53453
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
53454
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
53455
- };
53456
-
53457
- export declare type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
53458
-
53459
53466
  /**
53460
53467
  *
53461
53468
  * @export
@@ -53496,10 +53503,10 @@ export declare interface JsonApiUserSettingOut {
53496
53503
  id: string;
53497
53504
  /**
53498
53505
  *
53499
- * @type {JsonApiUserSettingInAttributes}
53506
+ * @type {JsonApiWorkspaceSettingInAttributes}
53500
53507
  * @memberof JsonApiUserSettingOut
53501
53508
  */
53502
- attributes?: JsonApiUserSettingInAttributes;
53509
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53503
53510
  }
53504
53511
 
53505
53512
  /**
@@ -53542,10 +53549,10 @@ export declare interface JsonApiUserSettingOutList {
53542
53549
  links?: ListLinks;
53543
53550
  /**
53544
53551
  *
53545
- * @type {JsonApiApiTokenOutListMeta}
53552
+ * @type {JsonApiColorPaletteOutListMeta}
53546
53553
  * @memberof JsonApiUserSettingOutList
53547
53554
  */
53548
- meta?: JsonApiApiTokenOutListMeta;
53555
+ meta?: JsonApiColorPaletteOutListMeta;
53549
53556
  }
53550
53557
 
53551
53558
  export declare const JsonApiUserSettingOutTypeEnum: {
@@ -53574,10 +53581,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
53574
53581
  id: string;
53575
53582
  /**
53576
53583
  *
53577
- * @type {JsonApiUserSettingInAttributes}
53584
+ * @type {JsonApiWorkspaceSettingInAttributes}
53578
53585
  * @memberof JsonApiUserSettingOutWithLinks
53579
53586
  */
53580
- attributes?: JsonApiUserSettingInAttributes;
53587
+ attributes?: JsonApiWorkspaceSettingInAttributes;
53581
53588
  /**
53582
53589
  *
53583
53590
  * @type {ObjectLinks}
@@ -53619,10 +53626,10 @@ export declare interface JsonApiVisualizationObjectIn {
53619
53626
  id: string;
53620
53627
  /**
53621
53628
  *
53622
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
53629
+ * @type {JsonApiAnalyticalDashboardInAttributes}
53623
53630
  * @memberof JsonApiVisualizationObjectIn
53624
53631
  */
53625
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
53632
+ attributes: JsonApiAnalyticalDashboardInAttributes;
53626
53633
  }
53627
53634
 
53628
53635
  /**
@@ -53805,10 +53812,10 @@ export declare interface JsonApiVisualizationObjectOutList {
53805
53812
  links?: ListLinks;
53806
53813
  /**
53807
53814
  *
53808
- * @type {JsonApiApiTokenOutListMeta}
53815
+ * @type {JsonApiColorPaletteOutListMeta}
53809
53816
  * @memberof JsonApiVisualizationObjectOutList
53810
53817
  */
53811
- meta?: JsonApiApiTokenOutListMeta;
53818
+ meta?: JsonApiColorPaletteOutListMeta;
53812
53819
  /**
53813
53820
  * Included resources
53814
53821
  * @type {Array<JsonApiMetricOutIncludes>}
@@ -54114,10 +54121,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
54114
54121
  id?: string;
54115
54122
  /**
54116
54123
  *
54117
- * @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
54124
+ * @type {JsonApiAnalyticalDashboardInAttributes}
54118
54125
  * @memberof JsonApiVisualizationObjectPostOptionalId
54119
54126
  */
54120
- attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
54127
+ attributes: JsonApiAnalyticalDashboardInAttributes;
54121
54128
  }
54122
54129
 
54123
54130
  /**
@@ -54335,10 +54342,10 @@ export declare interface JsonApiWorkspaceDataFilterOutList {
54335
54342
  links?: ListLinks;
54336
54343
  /**
54337
54344
  *
54338
- * @type {JsonApiApiTokenOutListMeta}
54345
+ * @type {JsonApiColorPaletteOutListMeta}
54339
54346
  * @memberof JsonApiWorkspaceDataFilterOutList
54340
54347
  */
54341
- meta?: JsonApiApiTokenOutListMeta;
54348
+ meta?: JsonApiColorPaletteOutListMeta;
54342
54349
  /**
54343
54350
  * Included resources
54344
54351
  * @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
@@ -54699,10 +54706,10 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
54699
54706
  links?: ListLinks;
54700
54707
  /**
54701
54708
  *
54702
- * @type {JsonApiApiTokenOutListMeta}
54709
+ * @type {JsonApiColorPaletteOutListMeta}
54703
54710
  * @memberof JsonApiWorkspaceDataFilterSettingOutList
54704
54711
  */
54705
- meta?: JsonApiApiTokenOutListMeta;
54712
+ meta?: JsonApiColorPaletteOutListMeta;
54706
54713
  /**
54707
54714
  * Included resources
54708
54715
  * @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
@@ -54846,87 +54853,16 @@ export declare interface JsonApiWorkspaceIn {
54846
54853
  id: string;
54847
54854
  /**
54848
54855
  *
54849
- * @type {JsonApiWorkspaceInAttributes}
54856
+ * @type {JsonApiWorkspaceOutAttributes}
54850
54857
  * @memberof JsonApiWorkspaceIn
54851
54858
  */
54852
- attributes?: JsonApiWorkspaceInAttributes;
54859
+ attributes?: JsonApiWorkspaceOutAttributes;
54853
54860
  /**
54854
54861
  *
54855
- * @type {JsonApiWorkspaceInRelationships}
54862
+ * @type {JsonApiWorkspaceOutRelationships}
54856
54863
  * @memberof JsonApiWorkspaceIn
54857
54864
  */
54858
- relationships?: JsonApiWorkspaceInRelationships;
54859
- }
54860
-
54861
- /**
54862
- *
54863
- * @export
54864
- * @interface JsonApiWorkspaceInAttributes
54865
- */
54866
- export declare interface JsonApiWorkspaceInAttributes {
54867
- /**
54868
- *
54869
- * @type {string}
54870
- * @memberof JsonApiWorkspaceInAttributes
54871
- */
54872
- name?: string | null;
54873
- /**
54874
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
54875
- * @type {string}
54876
- * @memberof JsonApiWorkspaceInAttributes
54877
- * @deprecated
54878
- */
54879
- earlyAccess?: string | null;
54880
- /**
54881
- * The early access feature identifiers. They are used to enable experimental features.
54882
- * @type {Array<string>}
54883
- * @memberof JsonApiWorkspaceInAttributes
54884
- */
54885
- earlyAccessValues?: Array<string> | null;
54886
- /**
54887
- *
54888
- * @type {string}
54889
- * @memberof JsonApiWorkspaceInAttributes
54890
- */
54891
- description?: string | null;
54892
- /**
54893
- * Custom prefix of entity identifiers in workspace
54894
- * @type {string}
54895
- * @memberof JsonApiWorkspaceInAttributes
54896
- */
54897
- prefix?: string | null;
54898
- /**
54899
- *
54900
- * @type {number}
54901
- * @memberof JsonApiWorkspaceInAttributes
54902
- */
54903
- cacheExtraLimit?: number;
54904
- /**
54905
- *
54906
- * @type {JsonApiWorkspaceInAttributesDataSource}
54907
- * @memberof JsonApiWorkspaceInAttributes
54908
- */
54909
- dataSource?: JsonApiWorkspaceInAttributesDataSource;
54910
- }
54911
-
54912
- /**
54913
- * 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.
54914
- * @export
54915
- * @interface JsonApiWorkspaceInAttributesDataSource
54916
- */
54917
- export declare interface JsonApiWorkspaceInAttributesDataSource {
54918
- /**
54919
- * The ID of the used data source.
54920
- * @type {string}
54921
- * @memberof JsonApiWorkspaceInAttributesDataSource
54922
- */
54923
- id: string;
54924
- /**
54925
- * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
54926
- * @type {Array<string>}
54927
- * @memberof JsonApiWorkspaceInAttributesDataSource
54928
- */
54929
- schemaPath?: Array<string>;
54865
+ relationships?: JsonApiWorkspaceOutRelationships;
54930
54866
  }
54931
54867
 
54932
54868
  /**
@@ -54943,34 +54879,6 @@ export declare interface JsonApiWorkspaceInDocument {
54943
54879
  data: JsonApiWorkspaceIn;
54944
54880
  }
54945
54881
 
54946
- /**
54947
- *
54948
- * @export
54949
- * @interface JsonApiWorkspaceInRelationships
54950
- */
54951
- export declare interface JsonApiWorkspaceInRelationships {
54952
- /**
54953
- *
54954
- * @type {JsonApiWorkspaceInRelationshipsParent}
54955
- * @memberof JsonApiWorkspaceInRelationships
54956
- */
54957
- parent?: JsonApiWorkspaceInRelationshipsParent;
54958
- }
54959
-
54960
- /**
54961
- *
54962
- * @export
54963
- * @interface JsonApiWorkspaceInRelationshipsParent
54964
- */
54965
- export declare interface JsonApiWorkspaceInRelationshipsParent {
54966
- /**
54967
- *
54968
- * @type {JsonApiWorkspaceToOneLinkage}
54969
- * @memberof JsonApiWorkspaceInRelationshipsParent
54970
- */
54971
- data: JsonApiWorkspaceToOneLinkage | null;
54972
- }
54973
-
54974
54882
  export declare const JsonApiWorkspaceInTypeEnum: {
54975
54883
  readonly WORKSPACE: "workspace";
54976
54884
  };
@@ -55029,16 +54937,87 @@ export declare interface JsonApiWorkspaceOut {
55029
54937
  meta?: JsonApiWorkspaceOutMeta;
55030
54938
  /**
55031
54939
  *
55032
- * @type {JsonApiWorkspaceInAttributes}
54940
+ * @type {JsonApiWorkspaceOutAttributes}
55033
54941
  * @memberof JsonApiWorkspaceOut
55034
54942
  */
55035
- attributes?: JsonApiWorkspaceInAttributes;
54943
+ attributes?: JsonApiWorkspaceOutAttributes;
55036
54944
  /**
55037
54945
  *
55038
- * @type {JsonApiWorkspaceInRelationships}
54946
+ * @type {JsonApiWorkspaceOutRelationships}
55039
54947
  * @memberof JsonApiWorkspaceOut
55040
54948
  */
55041
- relationships?: JsonApiWorkspaceInRelationships;
54949
+ relationships?: JsonApiWorkspaceOutRelationships;
54950
+ }
54951
+
54952
+ /**
54953
+ *
54954
+ * @export
54955
+ * @interface JsonApiWorkspaceOutAttributes
54956
+ */
54957
+ export declare interface JsonApiWorkspaceOutAttributes {
54958
+ /**
54959
+ *
54960
+ * @type {string}
54961
+ * @memberof JsonApiWorkspaceOutAttributes
54962
+ */
54963
+ name?: string | null;
54964
+ /**
54965
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
54966
+ * @type {string}
54967
+ * @memberof JsonApiWorkspaceOutAttributes
54968
+ * @deprecated
54969
+ */
54970
+ earlyAccess?: string | null;
54971
+ /**
54972
+ * The early access feature identifiers. They are used to enable experimental features.
54973
+ * @type {Array<string>}
54974
+ * @memberof JsonApiWorkspaceOutAttributes
54975
+ */
54976
+ earlyAccessValues?: Array<string> | null;
54977
+ /**
54978
+ *
54979
+ * @type {string}
54980
+ * @memberof JsonApiWorkspaceOutAttributes
54981
+ */
54982
+ description?: string | null;
54983
+ /**
54984
+ * Custom prefix of entity identifiers in workspace
54985
+ * @type {string}
54986
+ * @memberof JsonApiWorkspaceOutAttributes
54987
+ */
54988
+ prefix?: string | null;
54989
+ /**
54990
+ *
54991
+ * @type {number}
54992
+ * @memberof JsonApiWorkspaceOutAttributes
54993
+ */
54994
+ cacheExtraLimit?: number;
54995
+ /**
54996
+ *
54997
+ * @type {JsonApiWorkspaceOutAttributesDataSource}
54998
+ * @memberof JsonApiWorkspaceOutAttributes
54999
+ */
55000
+ dataSource?: JsonApiWorkspaceOutAttributesDataSource;
55001
+ }
55002
+
55003
+ /**
55004
+ * 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.
55005
+ * @export
55006
+ * @interface JsonApiWorkspaceOutAttributesDataSource
55007
+ */
55008
+ export declare interface JsonApiWorkspaceOutAttributesDataSource {
55009
+ /**
55010
+ * The ID of the used data source.
55011
+ * @type {string}
55012
+ * @memberof JsonApiWorkspaceOutAttributesDataSource
55013
+ */
55014
+ id: string;
55015
+ /**
55016
+ * The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
55017
+ * @type {Array<string>}
55018
+ * @memberof JsonApiWorkspaceOutAttributesDataSource
55019
+ */
55020
+ schemaPath?: Array<string>;
55042
55021
  }
55043
55022
 
55044
55023
  /**
@@ -55087,10 +55066,10 @@ export declare interface JsonApiWorkspaceOutList {
55087
55066
  links?: ListLinks;
55088
55067
  /**
55089
55068
  *
55090
- * @type {JsonApiApiTokenOutListMeta}
55069
+ * @type {JsonApiColorPaletteOutListMeta}
55091
55070
  * @memberof JsonApiWorkspaceOutList
55092
55071
  */
55093
- meta?: JsonApiApiTokenOutListMeta;
55072
+ meta?: JsonApiColorPaletteOutListMeta;
55094
55073
  /**
55095
55074
  * Included resources
55096
55075
  * @type {Array<JsonApiWorkspaceOutWithLinks>}
@@ -55199,6 +55178,34 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
55199
55178
 
55200
55179
  export declare type JsonApiWorkspaceOutMetaPermissionsEnum = typeof JsonApiWorkspaceOutMetaPermissionsEnum[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
55201
55180
 
55181
+ /**
55182
+ *
55183
+ * @export
55184
+ * @interface JsonApiWorkspaceOutRelationships
55185
+ */
55186
+ export declare interface JsonApiWorkspaceOutRelationships {
55187
+ /**
55188
+ *
55189
+ * @type {JsonApiWorkspaceOutRelationshipsParent}
55190
+ * @memberof JsonApiWorkspaceOutRelationships
55191
+ */
55192
+ parent?: JsonApiWorkspaceOutRelationshipsParent;
55193
+ }
55194
+
55195
+ /**
55196
+ *
55197
+ * @export
55198
+ * @interface JsonApiWorkspaceOutRelationshipsParent
55199
+ */
55200
+ export declare interface JsonApiWorkspaceOutRelationshipsParent {
55201
+ /**
55202
+ *
55203
+ * @type {JsonApiWorkspaceToOneLinkage}
55204
+ * @memberof JsonApiWorkspaceOutRelationshipsParent
55205
+ */
55206
+ data: JsonApiWorkspaceToOneLinkage | null;
55207
+ }
55208
+
55202
55209
  export declare const JsonApiWorkspaceOutTypeEnum: {
55203
55210
  readonly WORKSPACE: "workspace";
55204
55211
  };
@@ -55231,16 +55238,16 @@ export declare interface JsonApiWorkspaceOutWithLinks {
55231
55238
  meta?: JsonApiWorkspaceOutMeta;
55232
55239
  /**
55233
55240
  *
55234
- * @type {JsonApiWorkspaceInAttributes}
55241
+ * @type {JsonApiWorkspaceOutAttributes}
55235
55242
  * @memberof JsonApiWorkspaceOutWithLinks
55236
55243
  */
55237
- attributes?: JsonApiWorkspaceInAttributes;
55244
+ attributes?: JsonApiWorkspaceOutAttributes;
55238
55245
  /**
55239
55246
  *
55240
- * @type {JsonApiWorkspaceInRelationships}
55247
+ * @type {JsonApiWorkspaceOutRelationships}
55241
55248
  * @memberof JsonApiWorkspaceOutWithLinks
55242
55249
  */
55243
- relationships?: JsonApiWorkspaceInRelationships;
55250
+ relationships?: JsonApiWorkspaceOutRelationships;
55244
55251
  /**
55245
55252
  *
55246
55253
  * @type {ObjectLinks}
@@ -55275,16 +55282,16 @@ export declare interface JsonApiWorkspacePatch {
55275
55282
  id: string;
55276
55283
  /**
55277
55284
  *
55278
- * @type {JsonApiWorkspaceInAttributes}
55285
+ * @type {JsonApiWorkspaceOutAttributes}
55279
55286
  * @memberof JsonApiWorkspacePatch
55280
55287
  */
55281
- attributes?: JsonApiWorkspaceInAttributes;
55288
+ attributes?: JsonApiWorkspaceOutAttributes;
55282
55289
  /**
55283
55290
  *
55284
- * @type {JsonApiWorkspaceInRelationships}
55291
+ * @type {JsonApiWorkspaceOutRelationships}
55285
55292
  * @memberof JsonApiWorkspacePatch
55286
55293
  */
55287
- relationships?: JsonApiWorkspaceInRelationships;
55294
+ relationships?: JsonApiWorkspaceOutRelationships;
55288
55295
  }
55289
55296
 
55290
55297
  /**
@@ -55327,12 +55334,57 @@ export declare interface JsonApiWorkspaceSettingIn {
55327
55334
  id: string;
55328
55335
  /**
55329
55336
  *
55330
- * @type {JsonApiUserSettingInAttributes}
55337
+ * @type {JsonApiWorkspaceSettingInAttributes}
55331
55338
  * @memberof JsonApiWorkspaceSettingIn
55332
55339
  */
55333
- attributes?: JsonApiUserSettingInAttributes;
55340
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55341
+ }
55342
+
55343
+ /**
55344
+ *
55345
+ * @export
55346
+ * @interface JsonApiWorkspaceSettingInAttributes
55347
+ */
55348
+ export declare interface JsonApiWorkspaceSettingInAttributes {
55349
+ /**
55350
+ * Free-form JSON content. Maximum supported length is 15000 characters.
55351
+ * @type {object}
55352
+ * @memberof JsonApiWorkspaceSettingInAttributes
55353
+ */
55354
+ content?: object;
55355
+ /**
55356
+ *
55357
+ * @type {string}
55358
+ * @memberof JsonApiWorkspaceSettingInAttributes
55359
+ */
55360
+ type?: JsonApiWorkspaceSettingInAttributesTypeEnum;
55334
55361
  }
55335
55362
 
55363
+ export declare const JsonApiWorkspaceSettingInAttributesTypeEnum: {
55364
+ readonly TIMEZONE: "TIMEZONE";
55365
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
55366
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
55367
+ readonly WHITE_LABELING: "WHITE_LABELING";
55368
+ readonly LOCALE: "LOCALE";
55369
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
55370
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
55371
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
55372
+ readonly WEEK_START: "WEEK_START";
55373
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
55374
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
55375
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
55376
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
55377
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
55378
+ readonly ALERT: "ALERT";
55379
+ readonly SEPARATORS: "SEPARATORS";
55380
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
55381
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
55382
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
55383
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
55384
+ };
55385
+
55386
+ export declare type JsonApiWorkspaceSettingInAttributesTypeEnum = typeof JsonApiWorkspaceSettingInAttributesTypeEnum[keyof typeof JsonApiWorkspaceSettingInAttributesTypeEnum];
55387
+
55336
55388
  /**
55337
55389
  *
55338
55390
  * @export
@@ -55379,10 +55431,10 @@ export declare interface JsonApiWorkspaceSettingOut {
55379
55431
  meta?: JsonApiVisualizationObjectOutMeta;
55380
55432
  /**
55381
55433
  *
55382
- * @type {JsonApiUserSettingInAttributes}
55434
+ * @type {JsonApiWorkspaceSettingInAttributes}
55383
55435
  * @memberof JsonApiWorkspaceSettingOut
55384
55436
  */
55385
- attributes?: JsonApiUserSettingInAttributes;
55437
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55386
55438
  }
55387
55439
 
55388
55440
  /**
@@ -55425,10 +55477,10 @@ export declare interface JsonApiWorkspaceSettingOutList {
55425
55477
  links?: ListLinks;
55426
55478
  /**
55427
55479
  *
55428
- * @type {JsonApiApiTokenOutListMeta}
55480
+ * @type {JsonApiColorPaletteOutListMeta}
55429
55481
  * @memberof JsonApiWorkspaceSettingOutList
55430
55482
  */
55431
- meta?: JsonApiApiTokenOutListMeta;
55483
+ meta?: JsonApiColorPaletteOutListMeta;
55432
55484
  }
55433
55485
 
55434
55486
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
@@ -55463,10 +55515,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
55463
55515
  meta?: JsonApiVisualizationObjectOutMeta;
55464
55516
  /**
55465
55517
  *
55466
- * @type {JsonApiUserSettingInAttributes}
55518
+ * @type {JsonApiWorkspaceSettingInAttributes}
55467
55519
  * @memberof JsonApiWorkspaceSettingOutWithLinks
55468
55520
  */
55469
- attributes?: JsonApiUserSettingInAttributes;
55521
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55470
55522
  /**
55471
55523
  *
55472
55524
  * @type {ObjectLinks}
@@ -55501,10 +55553,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
55501
55553
  id: string;
55502
55554
  /**
55503
55555
  *
55504
- * @type {JsonApiUserSettingInAttributes}
55556
+ * @type {JsonApiWorkspaceSettingInAttributes}
55505
55557
  * @memberof JsonApiWorkspaceSettingPatch
55506
55558
  */
55507
- attributes?: JsonApiUserSettingInAttributes;
55559
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55508
55560
  }
55509
55561
 
55510
55562
  /**
@@ -55547,10 +55599,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
55547
55599
  id?: string;
55548
55600
  /**
55549
55601
  *
55550
- * @type {JsonApiUserSettingInAttributes}
55602
+ * @type {JsonApiWorkspaceSettingInAttributes}
55551
55603
  * @memberof JsonApiWorkspaceSettingPostOptionalId
55552
55604
  */
55553
- attributes?: JsonApiUserSettingInAttributes;
55605
+ attributes?: JsonApiWorkspaceSettingInAttributes;
55554
55606
  }
55555
55607
 
55556
55608
  /**