@gooddata/api-client-tiger 11.13.0-alpha.0 → 11.13.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +397 -236
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +358 -221
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +3544 -1084
- package/esm/index.d.ts +4 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +5 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -18962,6 +18962,7 @@ export declare type DefaultSmtpTypeEnum = "DEFAULT_SMTP";
|
|
|
18962
18962
|
|
|
18963
18963
|
declare const defaultTigerClient: ITigerClient;
|
|
18964
18964
|
export default defaultTigerClient;
|
|
18965
|
+
export { defaultTigerClient }
|
|
18965
18966
|
|
|
18966
18967
|
/**
|
|
18967
18968
|
* Request to delete files from the storage.
|
|
@@ -42220,7 +42221,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
42220
42221
|
* API identifier of an object
|
|
42221
42222
|
*/
|
|
42222
42223
|
id: string;
|
|
42223
|
-
meta?:
|
|
42224
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42224
42225
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
42225
42226
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
42226
42227
|
}
|
|
@@ -42258,7 +42259,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
42258
42259
|
export declare interface JsonApiAggregatedFactOutList {
|
|
42259
42260
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
42260
42261
|
links?: ListLinks;
|
|
42261
|
-
meta?:
|
|
42262
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
42262
42263
|
/**
|
|
42263
42264
|
* Included resources
|
|
42264
42265
|
*/
|
|
@@ -42266,7 +42267,7 @@ export declare interface JsonApiAggregatedFactOutList {
|
|
|
42266
42267
|
}
|
|
42267
42268
|
|
|
42268
42269
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
42269
|
-
dataset?:
|
|
42270
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
42270
42271
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
42271
42272
|
}
|
|
42272
42273
|
|
|
@@ -42285,7 +42286,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
42285
42286
|
* API identifier of an object
|
|
42286
42287
|
*/
|
|
42287
42288
|
id: string;
|
|
42288
|
-
meta?:
|
|
42289
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42289
42290
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
42290
42291
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
42291
42292
|
links?: ObjectLinks;
|
|
@@ -42374,7 +42375,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
42374
42375
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
42375
42376
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
42376
42377
|
links?: ListLinks;
|
|
42377
|
-
meta?:
|
|
42378
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
42378
42379
|
/**
|
|
42379
42380
|
* Included resources
|
|
42380
42381
|
*/
|
|
@@ -42386,7 +42387,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
42386
42387
|
* List of valid permissions for a logged-in user.
|
|
42387
42388
|
*/
|
|
42388
42389
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
42389
|
-
origin?:
|
|
42390
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
42390
42391
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
42391
42392
|
}
|
|
42392
42393
|
|
|
@@ -42397,16 +42398,29 @@ export declare interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
42397
42398
|
private: boolean;
|
|
42398
42399
|
}
|
|
42399
42400
|
|
|
42401
|
+
export declare interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
42402
|
+
/**
|
|
42403
|
+
* defines type of the origin of the entity
|
|
42404
|
+
*/
|
|
42405
|
+
originType: JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
42406
|
+
/**
|
|
42407
|
+
* defines id of the workspace where the entity comes from
|
|
42408
|
+
*/
|
|
42409
|
+
originId: string;
|
|
42410
|
+
}
|
|
42411
|
+
|
|
42412
|
+
export declare type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
|
|
42413
|
+
|
|
42400
42414
|
export declare type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = "EDIT" | "SHARE" | "VIEW";
|
|
42401
42415
|
|
|
42402
42416
|
export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
42403
|
-
createdBy?:
|
|
42404
|
-
modifiedBy?:
|
|
42417
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
42418
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
42405
42419
|
visualizationObjects?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
42406
42420
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
42407
|
-
labels?:
|
|
42408
|
-
metrics?:
|
|
42409
|
-
datasets?:
|
|
42421
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
42422
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
42423
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
42410
42424
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
42411
42425
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
42412
42426
|
}
|
|
@@ -42418,6 +42432,10 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDas
|
|
|
42418
42432
|
data: Array<JsonApiAnalyticalDashboardLinkage>;
|
|
42419
42433
|
}
|
|
42420
42434
|
|
|
42435
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
42436
|
+
data: JsonApiUserIdentifierLinkage | null;
|
|
42437
|
+
}
|
|
42438
|
+
|
|
42421
42439
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
42422
42440
|
/**
|
|
42423
42441
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -42425,6 +42443,13 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlug
|
|
|
42425
42443
|
data: Array<JsonApiDashboardPluginLinkage>;
|
|
42426
42444
|
}
|
|
42427
42445
|
|
|
42446
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
42447
|
+
/**
|
|
42448
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
42449
|
+
*/
|
|
42450
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
42451
|
+
}
|
|
42452
|
+
|
|
42428
42453
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
42429
42454
|
/**
|
|
42430
42455
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -42432,6 +42457,20 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContext
|
|
|
42432
42457
|
data: Array<JsonApiFilterContextLinkage>;
|
|
42433
42458
|
}
|
|
42434
42459
|
|
|
42460
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
42461
|
+
/**
|
|
42462
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
42463
|
+
*/
|
|
42464
|
+
data: Array<JsonApiLabelLinkage>;
|
|
42465
|
+
}
|
|
42466
|
+
|
|
42467
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
42468
|
+
/**
|
|
42469
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
42470
|
+
*/
|
|
42471
|
+
data: Array<JsonApiMetricLinkage>;
|
|
42472
|
+
}
|
|
42473
|
+
|
|
42435
42474
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
42436
42475
|
/**
|
|
42437
42476
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -42575,7 +42614,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
42575
42614
|
export declare interface JsonApiApiTokenOutList {
|
|
42576
42615
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
42577
42616
|
links?: ListLinks;
|
|
42578
|
-
meta?:
|
|
42617
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
42579
42618
|
}
|
|
42580
42619
|
|
|
42581
42620
|
export declare type JsonApiApiTokenOutTypeEnum = "apiToken";
|
|
@@ -42649,7 +42688,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
42649
42688
|
* API identifier of an object
|
|
42650
42689
|
*/
|
|
42651
42690
|
id: string;
|
|
42652
|
-
meta?:
|
|
42691
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42653
42692
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
42654
42693
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
42655
42694
|
}
|
|
@@ -42687,7 +42726,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
42687
42726
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
42688
42727
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
42689
42728
|
links?: ListLinks;
|
|
42690
|
-
meta?:
|
|
42729
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
42691
42730
|
/**
|
|
42692
42731
|
* Included resources
|
|
42693
42732
|
*/
|
|
@@ -42695,9 +42734,9 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
42695
42734
|
}
|
|
42696
42735
|
|
|
42697
42736
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
42698
|
-
createdBy?:
|
|
42699
|
-
modifiedBy?:
|
|
42700
|
-
attributes?:
|
|
42737
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
42738
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
42739
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
42701
42740
|
}
|
|
42702
42741
|
|
|
42703
42742
|
export declare type JsonApiAttributeHierarchyOutTypeEnum = "attributeHierarchy";
|
|
@@ -42711,7 +42750,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
42711
42750
|
* API identifier of an object
|
|
42712
42751
|
*/
|
|
42713
42752
|
id: string;
|
|
42714
|
-
meta?:
|
|
42753
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42715
42754
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
42716
42755
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
42717
42756
|
links?: ObjectLinks;
|
|
@@ -42762,7 +42801,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
42762
42801
|
* API identifier of an object
|
|
42763
42802
|
*/
|
|
42764
42803
|
id: string;
|
|
42765
|
-
meta?:
|
|
42804
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42766
42805
|
attributes?: JsonApiAttributeOutAttributes;
|
|
42767
42806
|
relationships?: JsonApiAttributeOutRelationships;
|
|
42768
42807
|
}
|
|
@@ -42807,7 +42846,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
42807
42846
|
export declare interface JsonApiAttributeOutList {
|
|
42808
42847
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
42809
42848
|
links?: ListLinks;
|
|
42810
|
-
meta?:
|
|
42849
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
42811
42850
|
/**
|
|
42812
42851
|
* Included resources
|
|
42813
42852
|
*/
|
|
@@ -42815,9 +42854,9 @@ export declare interface JsonApiAttributeOutList {
|
|
|
42815
42854
|
}
|
|
42816
42855
|
|
|
42817
42856
|
export declare interface JsonApiAttributeOutRelationships {
|
|
42818
|
-
dataset?:
|
|
42857
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
42819
42858
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
42820
|
-
labels?:
|
|
42859
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
42821
42860
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
42822
42861
|
}
|
|
42823
42862
|
|
|
@@ -42828,10 +42867,6 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
42828
42867
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
42829
42868
|
}
|
|
42830
42869
|
|
|
42831
|
-
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
42832
|
-
data: JsonApiDatasetLinkage | null;
|
|
42833
|
-
}
|
|
42834
|
-
|
|
42835
42870
|
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
42836
42871
|
data: JsonApiLabelLinkage | null;
|
|
42837
42872
|
}
|
|
@@ -42847,7 +42882,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
42847
42882
|
* API identifier of an object
|
|
42848
42883
|
*/
|
|
42849
42884
|
id: string;
|
|
42850
|
-
meta?:
|
|
42885
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
42851
42886
|
attributes?: JsonApiAttributeOutAttributes;
|
|
42852
42887
|
relationships?: JsonApiAttributeOutRelationships;
|
|
42853
42888
|
links?: ObjectLinks;
|
|
@@ -43067,8 +43102,8 @@ export declare interface JsonApiAutomationOut {
|
|
|
43067
43102
|
* API identifier of an object
|
|
43068
43103
|
*/
|
|
43069
43104
|
id: string;
|
|
43070
|
-
meta?:
|
|
43071
|
-
attributes?:
|
|
43105
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43106
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
43072
43107
|
relationships?: JsonApiAutomationOutRelationships;
|
|
43073
43108
|
}
|
|
43074
43109
|
|
|
@@ -43130,7 +43165,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
43130
43165
|
export declare interface JsonApiAutomationOutList {
|
|
43131
43166
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
43132
43167
|
links?: ListLinks;
|
|
43133
|
-
meta?:
|
|
43168
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43134
43169
|
/**
|
|
43135
43170
|
* Included resources
|
|
43136
43171
|
*/
|
|
@@ -43140,8 +43175,8 @@ export declare interface JsonApiAutomationOutList {
|
|
|
43140
43175
|
export declare interface JsonApiAutomationOutRelationships {
|
|
43141
43176
|
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
43142
43177
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
43143
|
-
createdBy?:
|
|
43144
|
-
modifiedBy?:
|
|
43178
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43179
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43145
43180
|
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
43146
43181
|
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
43147
43182
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
@@ -43165,8 +43200,8 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
43165
43200
|
* API identifier of an object
|
|
43166
43201
|
*/
|
|
43167
43202
|
id: string;
|
|
43168
|
-
meta?:
|
|
43169
|
-
attributes?:
|
|
43203
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43204
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
43170
43205
|
relationships?: JsonApiAutomationOutRelationships;
|
|
43171
43206
|
links?: ObjectLinks;
|
|
43172
43207
|
}
|
|
@@ -43242,7 +43277,7 @@ export declare type JsonApiAutomationResultOutAttributesStatusEnum = "SUCCESS" |
|
|
|
43242
43277
|
export declare interface JsonApiAutomationResultOutList {
|
|
43243
43278
|
data: Array<JsonApiAutomationResultOutWithLinks>;
|
|
43244
43279
|
links?: ListLinks;
|
|
43245
|
-
meta?:
|
|
43280
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43246
43281
|
/**
|
|
43247
43282
|
* Included resources
|
|
43248
43283
|
*/
|
|
@@ -43326,11 +43361,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
43326
43361
|
export declare interface JsonApiColorPaletteOutList {
|
|
43327
43362
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
43328
43363
|
links?: ListLinks;
|
|
43329
|
-
meta?:
|
|
43330
|
-
}
|
|
43331
|
-
|
|
43332
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
43333
|
-
page?: PageMetadata;
|
|
43364
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43334
43365
|
}
|
|
43335
43366
|
|
|
43336
43367
|
export declare type JsonApiColorPaletteOutTypeEnum = "colorPalette";
|
|
@@ -43502,7 +43533,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
43502
43533
|
export declare interface JsonApiCspDirectiveOutList {
|
|
43503
43534
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
43504
43535
|
links?: ListLinks;
|
|
43505
|
-
meta?:
|
|
43536
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43506
43537
|
}
|
|
43507
43538
|
|
|
43508
43539
|
export declare type JsonApiCspDirectiveOutTypeEnum = "cspDirective";
|
|
@@ -43580,7 +43611,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
43580
43611
|
* API identifier of an object
|
|
43581
43612
|
*/
|
|
43582
43613
|
id: string;
|
|
43583
|
-
meta?:
|
|
43614
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43584
43615
|
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
43585
43616
|
}
|
|
43586
43617
|
|
|
@@ -43595,7 +43626,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
43595
43626
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
43596
43627
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
43597
43628
|
links?: ListLinks;
|
|
43598
|
-
meta?:
|
|
43629
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43599
43630
|
}
|
|
43600
43631
|
|
|
43601
43632
|
export declare type JsonApiCustomApplicationSettingOutTypeEnum = "customApplicationSetting";
|
|
@@ -43609,7 +43640,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
43609
43640
|
* API identifier of an object
|
|
43610
43641
|
*/
|
|
43611
43642
|
id: string;
|
|
43612
|
-
meta?:
|
|
43643
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43613
43644
|
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
43614
43645
|
links?: ObjectLinks;
|
|
43615
43646
|
}
|
|
@@ -43689,6 +43720,17 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
43689
43720
|
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
43690
43721
|
}
|
|
43691
43722
|
|
|
43723
|
+
export declare interface JsonApiDashboardPluginInAttributes {
|
|
43724
|
+
title?: string;
|
|
43725
|
+
description?: string;
|
|
43726
|
+
tags?: Array<string>;
|
|
43727
|
+
areRelationsValid?: boolean;
|
|
43728
|
+
/**
|
|
43729
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43730
|
+
*/
|
|
43731
|
+
content?: object;
|
|
43732
|
+
}
|
|
43733
|
+
|
|
43692
43734
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
43693
43735
|
data: JsonApiDashboardPluginIn;
|
|
43694
43736
|
}
|
|
@@ -43717,7 +43759,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
43717
43759
|
* API identifier of an object
|
|
43718
43760
|
*/
|
|
43719
43761
|
id: string;
|
|
43720
|
-
meta?:
|
|
43762
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43721
43763
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
43722
43764
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
43723
43765
|
}
|
|
@@ -43750,7 +43792,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
43750
43792
|
export declare interface JsonApiDashboardPluginOutList {
|
|
43751
43793
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
43752
43794
|
links?: ListLinks;
|
|
43753
|
-
meta?:
|
|
43795
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43754
43796
|
/**
|
|
43755
43797
|
* Included resources
|
|
43756
43798
|
*/
|
|
@@ -43758,8 +43800,8 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
43758
43800
|
}
|
|
43759
43801
|
|
|
43760
43802
|
export declare interface JsonApiDashboardPluginOutRelationships {
|
|
43761
|
-
createdBy?:
|
|
43762
|
-
modifiedBy?:
|
|
43803
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43804
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43763
43805
|
}
|
|
43764
43806
|
|
|
43765
43807
|
export declare type JsonApiDashboardPluginOutTypeEnum = "dashboardPlugin";
|
|
@@ -43773,7 +43815,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
43773
43815
|
* API identifier of an object
|
|
43774
43816
|
*/
|
|
43775
43817
|
id: string;
|
|
43776
|
-
meta?:
|
|
43818
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43777
43819
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
43778
43820
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
43779
43821
|
links?: ObjectLinks;
|
|
@@ -43856,7 +43898,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
43856
43898
|
* API identifier of an object
|
|
43857
43899
|
*/
|
|
43858
43900
|
id: string;
|
|
43859
|
-
meta?:
|
|
43901
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43860
43902
|
attributes: JsonApiDatasetOutAttributes;
|
|
43861
43903
|
relationships?: JsonApiDatasetOutRelationships;
|
|
43862
43904
|
}
|
|
@@ -43942,7 +43984,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
43942
43984
|
export declare interface JsonApiDatasetOutList {
|
|
43943
43985
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
43944
43986
|
links?: ListLinks;
|
|
43945
|
-
meta?:
|
|
43987
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43946
43988
|
/**
|
|
43947
43989
|
* Included resources
|
|
43948
43990
|
*/
|
|
@@ -43950,10 +43992,10 @@ export declare interface JsonApiDatasetOutList {
|
|
|
43950
43992
|
}
|
|
43951
43993
|
|
|
43952
43994
|
export declare interface JsonApiDatasetOutRelationships {
|
|
43953
|
-
attributes?:
|
|
43954
|
-
facts?:
|
|
43995
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
43996
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
43955
43997
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
43956
|
-
references?:
|
|
43998
|
+
references?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
43957
43999
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
43958
44000
|
}
|
|
43959
44001
|
|
|
@@ -43964,6 +44006,20 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
43964
44006
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
43965
44007
|
}
|
|
43966
44008
|
|
|
44009
|
+
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
44010
|
+
/**
|
|
44011
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44012
|
+
*/
|
|
44013
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
44014
|
+
}
|
|
44015
|
+
|
|
44016
|
+
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
44017
|
+
/**
|
|
44018
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44019
|
+
*/
|
|
44020
|
+
data: Array<JsonApiFactLinkage>;
|
|
44021
|
+
}
|
|
44022
|
+
|
|
43967
44023
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
43968
44024
|
/**
|
|
43969
44025
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43982,7 +44038,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
43982
44038
|
* API identifier of an object
|
|
43983
44039
|
*/
|
|
43984
44040
|
id: string;
|
|
43985
|
-
meta?:
|
|
44041
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43986
44042
|
attributes: JsonApiDatasetOutAttributes;
|
|
43987
44043
|
relationships?: JsonApiDatasetOutRelationships;
|
|
43988
44044
|
links?: ObjectLinks;
|
|
@@ -44052,7 +44108,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
44052
44108
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
44053
44109
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
44054
44110
|
links?: ListLinks;
|
|
44055
|
-
meta?:
|
|
44111
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44056
44112
|
}
|
|
44057
44113
|
|
|
44058
44114
|
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
@@ -44243,7 +44299,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
44243
44299
|
export declare interface JsonApiDataSourceOutList {
|
|
44244
44300
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
44245
44301
|
links?: ListLinks;
|
|
44246
|
-
meta?:
|
|
44302
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44247
44303
|
}
|
|
44248
44304
|
|
|
44249
44305
|
export declare type JsonApiDataSourceOutTypeEnum = "dataSource";
|
|
@@ -44375,7 +44431,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
44375
44431
|
export declare interface JsonApiEntitlementOutList {
|
|
44376
44432
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
44377
44433
|
links?: ListLinks;
|
|
44378
|
-
meta?:
|
|
44434
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44379
44435
|
}
|
|
44380
44436
|
|
|
44381
44437
|
export declare type JsonApiEntitlementOutTypeEnum = "entitlement";
|
|
@@ -44411,10 +44467,23 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
44411
44467
|
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
44412
44468
|
}
|
|
44413
44469
|
|
|
44470
|
+
export declare interface JsonApiExportDefinitionInAttributes {
|
|
44471
|
+
title?: string;
|
|
44472
|
+
description?: string;
|
|
44473
|
+
tags?: Array<string>;
|
|
44474
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
44475
|
+
areRelationsValid?: boolean;
|
|
44476
|
+
}
|
|
44477
|
+
|
|
44414
44478
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
44415
44479
|
data: JsonApiExportDefinitionIn;
|
|
44416
44480
|
}
|
|
44417
44481
|
|
|
44482
|
+
export declare interface JsonApiExportDefinitionInRelationships {
|
|
44483
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
44484
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44485
|
+
}
|
|
44486
|
+
|
|
44418
44487
|
export declare type JsonApiExportDefinitionInTypeEnum = "exportDefinition";
|
|
44419
44488
|
|
|
44420
44489
|
/**
|
|
@@ -44439,7 +44508,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
44439
44508
|
* API identifier of an object
|
|
44440
44509
|
*/
|
|
44441
44510
|
id: string;
|
|
44442
|
-
meta?:
|
|
44511
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44443
44512
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
44444
44513
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
44445
44514
|
}
|
|
@@ -44480,19 +44549,27 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
44480
44549
|
export declare interface JsonApiExportDefinitionOutList {
|
|
44481
44550
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
44482
44551
|
links?: ListLinks;
|
|
44483
|
-
meta?:
|
|
44552
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44484
44553
|
/**
|
|
44485
44554
|
* Included resources
|
|
44486
44555
|
*/
|
|
44487
44556
|
included?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
44488
44557
|
}
|
|
44489
44558
|
|
|
44559
|
+
export declare interface JsonApiExportDefinitionOutMeta {
|
|
44560
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
44561
|
+
}
|
|
44562
|
+
|
|
44490
44563
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
44491
44564
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
44492
44565
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
44493
44566
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
44494
|
-
createdBy?:
|
|
44495
|
-
modifiedBy?:
|
|
44567
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44568
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44569
|
+
}
|
|
44570
|
+
|
|
44571
|
+
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
44572
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
44496
44573
|
}
|
|
44497
44574
|
|
|
44498
44575
|
export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
@@ -44514,7 +44591,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
44514
44591
|
* API identifier of an object
|
|
44515
44592
|
*/
|
|
44516
44593
|
id: string;
|
|
44517
|
-
meta?:
|
|
44594
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44518
44595
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
44519
44596
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
44520
44597
|
links?: ObjectLinks;
|
|
@@ -44664,7 +44741,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
44664
44741
|
export declare interface JsonApiExportTemplateOutList {
|
|
44665
44742
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
44666
44743
|
links?: ListLinks;
|
|
44667
|
-
meta?:
|
|
44744
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44668
44745
|
}
|
|
44669
44746
|
|
|
44670
44747
|
export declare type JsonApiExportTemplateOutTypeEnum = "exportTemplate";
|
|
@@ -44757,7 +44834,7 @@ export declare interface JsonApiFactOut {
|
|
|
44757
44834
|
* API identifier of an object
|
|
44758
44835
|
*/
|
|
44759
44836
|
id: string;
|
|
44760
|
-
meta?:
|
|
44837
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44761
44838
|
attributes?: JsonApiFactOutAttributes;
|
|
44762
44839
|
relationships?: JsonApiFactOutRelationships;
|
|
44763
44840
|
}
|
|
@@ -44789,7 +44866,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
44789
44866
|
export declare interface JsonApiFactOutList {
|
|
44790
44867
|
data: Array<JsonApiFactOutWithLinks>;
|
|
44791
44868
|
links?: ListLinks;
|
|
44792
|
-
meta?:
|
|
44869
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44793
44870
|
/**
|
|
44794
44871
|
* Included resources
|
|
44795
44872
|
*/
|
|
@@ -44797,7 +44874,11 @@ export declare interface JsonApiFactOutList {
|
|
|
44797
44874
|
}
|
|
44798
44875
|
|
|
44799
44876
|
export declare interface JsonApiFactOutRelationships {
|
|
44800
|
-
dataset?:
|
|
44877
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
44878
|
+
}
|
|
44879
|
+
|
|
44880
|
+
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
44881
|
+
data: JsonApiDatasetLinkage | null;
|
|
44801
44882
|
}
|
|
44802
44883
|
|
|
44803
44884
|
export declare type JsonApiFactOutTypeEnum = "fact";
|
|
@@ -44811,7 +44892,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
44811
44892
|
* API identifier of an object
|
|
44812
44893
|
*/
|
|
44813
44894
|
id: string;
|
|
44814
|
-
meta?:
|
|
44895
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44815
44896
|
attributes?: JsonApiFactOutAttributes;
|
|
44816
44897
|
relationships?: JsonApiFactOutRelationships;
|
|
44817
44898
|
links?: ObjectLinks;
|
|
@@ -44883,7 +44964,7 @@ export declare interface JsonApiFilterContextOut {
|
|
|
44883
44964
|
* API identifier of an object
|
|
44884
44965
|
*/
|
|
44885
44966
|
id: string;
|
|
44886
|
-
meta?:
|
|
44967
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44887
44968
|
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
44888
44969
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
44889
44970
|
}
|
|
@@ -44908,7 +44989,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
44908
44989
|
export declare interface JsonApiFilterContextOutList {
|
|
44909
44990
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
44910
44991
|
links?: ListLinks;
|
|
44911
|
-
meta?:
|
|
44992
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44912
44993
|
/**
|
|
44913
44994
|
* Included resources
|
|
44914
44995
|
*/
|
|
@@ -44916,9 +44997,9 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
44916
44997
|
}
|
|
44917
44998
|
|
|
44918
44999
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
44919
|
-
attributes?:
|
|
44920
|
-
datasets?:
|
|
44921
|
-
labels?:
|
|
45000
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
45001
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
45002
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
44922
45003
|
}
|
|
44923
45004
|
|
|
44924
45005
|
export declare type JsonApiFilterContextOutTypeEnum = "filterContext";
|
|
@@ -44932,7 +45013,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
44932
45013
|
* API identifier of an object
|
|
44933
45014
|
*/
|
|
44934
45015
|
id: string;
|
|
44935
|
-
meta?:
|
|
45016
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44936
45017
|
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
44937
45018
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
44938
45019
|
links?: ObjectLinks;
|
|
@@ -45060,13 +45141,18 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
45060
45141
|
export declare interface JsonApiFilterViewOutList {
|
|
45061
45142
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
45062
45143
|
links?: ListLinks;
|
|
45063
|
-
meta?:
|
|
45144
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45064
45145
|
/**
|
|
45065
45146
|
* Included resources
|
|
45066
45147
|
*/
|
|
45067
45148
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
45068
45149
|
}
|
|
45069
45150
|
|
|
45151
|
+
export declare interface JsonApiFilterViewOutRelationships {
|
|
45152
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
45153
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
45154
|
+
}
|
|
45155
|
+
|
|
45070
45156
|
export declare type JsonApiFilterViewOutTypeEnum = "filterView";
|
|
45071
45157
|
|
|
45072
45158
|
export declare interface JsonApiFilterViewOutWithLinks {
|
|
@@ -45282,7 +45368,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
45282
45368
|
export declare interface JsonApiIdentityProviderOutList {
|
|
45283
45369
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
45284
45370
|
links?: ListLinks;
|
|
45285
|
-
meta?:
|
|
45371
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45286
45372
|
}
|
|
45287
45373
|
|
|
45288
45374
|
export declare type JsonApiIdentityProviderOutTypeEnum = "identityProvider";
|
|
@@ -45374,7 +45460,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
45374
45460
|
export declare interface JsonApiJwkOutList {
|
|
45375
45461
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
45376
45462
|
links?: ListLinks;
|
|
45377
|
-
meta?:
|
|
45463
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45378
45464
|
}
|
|
45379
45465
|
|
|
45380
45466
|
export declare type JsonApiJwkOutTypeEnum = "jwk";
|
|
@@ -45437,7 +45523,7 @@ export declare interface JsonApiLabelOut {
|
|
|
45437
45523
|
* API identifier of an object
|
|
45438
45524
|
*/
|
|
45439
45525
|
id: string;
|
|
45440
|
-
meta?:
|
|
45526
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45441
45527
|
attributes?: JsonApiLabelOutAttributes;
|
|
45442
45528
|
relationships?: JsonApiLabelOutRelationships;
|
|
45443
45529
|
}
|
|
@@ -45488,7 +45574,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
45488
45574
|
export declare interface JsonApiLabelOutList {
|
|
45489
45575
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
45490
45576
|
links?: ListLinks;
|
|
45491
|
-
meta?:
|
|
45577
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45492
45578
|
/**
|
|
45493
45579
|
* Included resources
|
|
45494
45580
|
*/
|
|
@@ -45514,7 +45600,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
45514
45600
|
* API identifier of an object
|
|
45515
45601
|
*/
|
|
45516
45602
|
id: string;
|
|
45517
|
-
meta?:
|
|
45603
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45518
45604
|
attributes?: JsonApiLabelOutAttributes;
|
|
45519
45605
|
relationships?: JsonApiLabelOutRelationships;
|
|
45520
45606
|
links?: ObjectLinks;
|
|
@@ -45652,7 +45738,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
45652
45738
|
export declare interface JsonApiLlmEndpointOutList {
|
|
45653
45739
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
45654
45740
|
links?: ListLinks;
|
|
45655
|
-
meta?:
|
|
45741
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45656
45742
|
}
|
|
45657
45743
|
|
|
45658
45744
|
export declare type JsonApiLlmEndpointOutTypeEnum = "llmEndpoint";
|
|
@@ -45734,9 +45820,34 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
45734
45820
|
* API identifier of an object
|
|
45735
45821
|
*/
|
|
45736
45822
|
id: string;
|
|
45737
|
-
attributes:
|
|
45823
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
45824
|
+
}
|
|
45825
|
+
|
|
45826
|
+
export declare interface JsonApiMemoryItemInAttributes {
|
|
45827
|
+
title?: string;
|
|
45828
|
+
description?: string;
|
|
45829
|
+
tags?: Array<string>;
|
|
45830
|
+
areRelationsValid?: boolean;
|
|
45831
|
+
/**
|
|
45832
|
+
* Strategy defining when the memory item should be applied
|
|
45833
|
+
*/
|
|
45834
|
+
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
45835
|
+
/**
|
|
45836
|
+
* The text that will be injected into the system prompt
|
|
45837
|
+
*/
|
|
45838
|
+
instruction: string;
|
|
45839
|
+
/**
|
|
45840
|
+
* Set of unique strings used for semantic similarity filtering
|
|
45841
|
+
*/
|
|
45842
|
+
keywords?: Array<string>;
|
|
45843
|
+
/**
|
|
45844
|
+
* Whether memory item is disabled
|
|
45845
|
+
*/
|
|
45846
|
+
isDisabled?: boolean;
|
|
45738
45847
|
}
|
|
45739
45848
|
|
|
45849
|
+
export declare type JsonApiMemoryItemInAttributesStrategyEnum = "ALWAYS" | "AUTO";
|
|
45850
|
+
|
|
45740
45851
|
export declare interface JsonApiMemoryItemInDocument {
|
|
45741
45852
|
data: JsonApiMemoryItemIn;
|
|
45742
45853
|
}
|
|
@@ -45755,7 +45866,7 @@ export declare interface JsonApiMemoryItemOut {
|
|
|
45755
45866
|
* API identifier of an object
|
|
45756
45867
|
*/
|
|
45757
45868
|
id: string;
|
|
45758
|
-
meta?:
|
|
45869
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45759
45870
|
attributes: JsonApiMemoryItemOutAttributes;
|
|
45760
45871
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45761
45872
|
}
|
|
@@ -45802,7 +45913,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
45802
45913
|
export declare interface JsonApiMemoryItemOutList {
|
|
45803
45914
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
45804
45915
|
links?: ListLinks;
|
|
45805
|
-
meta?:
|
|
45916
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45806
45917
|
/**
|
|
45807
45918
|
* Included resources
|
|
45808
45919
|
*/
|
|
@@ -45820,7 +45931,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
|
|
|
45820
45931
|
* API identifier of an object
|
|
45821
45932
|
*/
|
|
45822
45933
|
id: string;
|
|
45823
|
-
meta?:
|
|
45934
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45824
45935
|
attributes: JsonApiMemoryItemOutAttributes;
|
|
45825
45936
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45826
45937
|
links?: ObjectLinks;
|
|
@@ -45886,34 +45997,9 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
45886
45997
|
* API identifier of an object
|
|
45887
45998
|
*/
|
|
45888
45999
|
id?: string;
|
|
45889
|
-
attributes:
|
|
45890
|
-
}
|
|
45891
|
-
|
|
45892
|
-
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
45893
|
-
title?: string;
|
|
45894
|
-
description?: string;
|
|
45895
|
-
tags?: Array<string>;
|
|
45896
|
-
areRelationsValid?: boolean;
|
|
45897
|
-
/**
|
|
45898
|
-
* Strategy defining when the memory item should be applied
|
|
45899
|
-
*/
|
|
45900
|
-
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
45901
|
-
/**
|
|
45902
|
-
* The text that will be injected into the system prompt
|
|
45903
|
-
*/
|
|
45904
|
-
instruction: string;
|
|
45905
|
-
/**
|
|
45906
|
-
* Set of unique strings used for semantic similarity filtering
|
|
45907
|
-
*/
|
|
45908
|
-
keywords?: Array<string>;
|
|
45909
|
-
/**
|
|
45910
|
-
* Whether memory item is disabled
|
|
45911
|
-
*/
|
|
45912
|
-
isDisabled?: boolean;
|
|
46000
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
45913
46001
|
}
|
|
45914
46002
|
|
|
45915
|
-
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = "ALWAYS" | "AUTO";
|
|
45916
|
-
|
|
45917
46003
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
45918
46004
|
data: JsonApiMemoryItemPostOptionalId;
|
|
45919
46005
|
}
|
|
@@ -45932,7 +46018,16 @@ export declare interface JsonApiMetricIn {
|
|
|
45932
46018
|
* API identifier of an object
|
|
45933
46019
|
*/
|
|
45934
46020
|
id: string;
|
|
45935
|
-
attributes:
|
|
46021
|
+
attributes: JsonApiMetricInAttributes;
|
|
46022
|
+
}
|
|
46023
|
+
|
|
46024
|
+
export declare interface JsonApiMetricInAttributes {
|
|
46025
|
+
title?: string;
|
|
46026
|
+
description?: string;
|
|
46027
|
+
tags?: Array<string>;
|
|
46028
|
+
areRelationsValid?: boolean;
|
|
46029
|
+
content: JsonApiMetricOutAttributesContent;
|
|
46030
|
+
isHidden?: boolean;
|
|
45936
46031
|
}
|
|
45937
46032
|
|
|
45938
46033
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -45963,7 +46058,7 @@ export declare interface JsonApiMetricOut {
|
|
|
45963
46058
|
* API identifier of an object
|
|
45964
46059
|
*/
|
|
45965
46060
|
id: string;
|
|
45966
|
-
meta?:
|
|
46061
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45967
46062
|
attributes: JsonApiMetricOutAttributes;
|
|
45968
46063
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
45969
46064
|
}
|
|
@@ -46010,7 +46105,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
46010
46105
|
export declare interface JsonApiMetricOutList {
|
|
46011
46106
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
46012
46107
|
links?: ListLinks;
|
|
46013
|
-
meta?:
|
|
46108
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46014
46109
|
/**
|
|
46015
46110
|
* Included resources
|
|
46016
46111
|
*/
|
|
@@ -46028,7 +46123,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
46028
46123
|
* API identifier of an object
|
|
46029
46124
|
*/
|
|
46030
46125
|
id: string;
|
|
46031
|
-
meta?:
|
|
46126
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46032
46127
|
attributes: JsonApiMetricOutAttributes;
|
|
46033
46128
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
46034
46129
|
links?: ObjectLinks;
|
|
@@ -46078,16 +46173,7 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
46078
46173
|
* API identifier of an object
|
|
46079
46174
|
*/
|
|
46080
46175
|
id?: string;
|
|
46081
|
-
attributes:
|
|
46082
|
-
}
|
|
46083
|
-
|
|
46084
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
46085
|
-
title?: string;
|
|
46086
|
-
description?: string;
|
|
46087
|
-
tags?: Array<string>;
|
|
46088
|
-
areRelationsValid?: boolean;
|
|
46089
|
-
content: JsonApiMetricOutAttributesContent;
|
|
46090
|
-
isHidden?: boolean;
|
|
46176
|
+
attributes: JsonApiMetricInAttributes;
|
|
46091
46177
|
}
|
|
46092
46178
|
|
|
46093
46179
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -46136,7 +46222,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
46136
46222
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
46137
46223
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
46138
46224
|
links?: ListLinks;
|
|
46139
|
-
meta?:
|
|
46225
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46140
46226
|
}
|
|
46141
46227
|
|
|
46142
46228
|
export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = "notificationChannelIdentifier";
|
|
@@ -46286,7 +46372,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
46286
46372
|
export declare interface JsonApiNotificationChannelOutList {
|
|
46287
46373
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
46288
46374
|
links?: ListLinks;
|
|
46289
|
-
meta?:
|
|
46375
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46290
46376
|
}
|
|
46291
46377
|
|
|
46292
46378
|
export declare type JsonApiNotificationChannelOutTypeEnum = "notificationChannel";
|
|
@@ -46541,7 +46627,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
46541
46627
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
46542
46628
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
46543
46629
|
links?: ListLinks;
|
|
46544
|
-
meta?:
|
|
46630
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46545
46631
|
}
|
|
46546
46632
|
|
|
46547
46633
|
export declare type JsonApiOrganizationSettingOutTypeEnum = "organizationSetting";
|
|
@@ -46629,7 +46715,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
46629
46715
|
export declare interface JsonApiThemeOutList {
|
|
46630
46716
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
46631
46717
|
links?: ListLinks;
|
|
46632
|
-
meta?:
|
|
46718
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46633
46719
|
}
|
|
46634
46720
|
|
|
46635
46721
|
export declare type JsonApiThemeOutTypeEnum = "theme";
|
|
@@ -46690,6 +46776,11 @@ export declare interface JsonApiUserDataFilterInDocument {
|
|
|
46690
46776
|
data: JsonApiUserDataFilterIn;
|
|
46691
46777
|
}
|
|
46692
46778
|
|
|
46779
|
+
export declare interface JsonApiUserDataFilterInRelationships {
|
|
46780
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
46781
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
46782
|
+
}
|
|
46783
|
+
|
|
46693
46784
|
export declare type JsonApiUserDataFilterInTypeEnum = "userDataFilter";
|
|
46694
46785
|
|
|
46695
46786
|
/**
|
|
@@ -46704,7 +46795,7 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
46704
46795
|
* API identifier of an object
|
|
46705
46796
|
*/
|
|
46706
46797
|
id: string;
|
|
46707
|
-
meta?:
|
|
46798
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46708
46799
|
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
46709
46800
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
46710
46801
|
}
|
|
@@ -46729,7 +46820,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
46729
46820
|
export declare interface JsonApiUserDataFilterOutList {
|
|
46730
46821
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
46731
46822
|
links?: ListLinks;
|
|
46732
|
-
meta?:
|
|
46823
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46733
46824
|
/**
|
|
46734
46825
|
* Included resources
|
|
46735
46826
|
*/
|
|
@@ -46739,11 +46830,11 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
46739
46830
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
46740
46831
|
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
46741
46832
|
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
46742
|
-
facts?:
|
|
46743
|
-
attributes?:
|
|
46744
|
-
labels?:
|
|
46745
|
-
metrics?:
|
|
46746
|
-
datasets?:
|
|
46833
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
46834
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
46835
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
46836
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
46837
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
46747
46838
|
}
|
|
46748
46839
|
|
|
46749
46840
|
export declare type JsonApiUserDataFilterOutTypeEnum = "userDataFilter";
|
|
@@ -46757,7 +46848,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
46757
46848
|
* API identifier of an object
|
|
46758
46849
|
*/
|
|
46759
46850
|
id: string;
|
|
46760
|
-
meta?:
|
|
46851
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46761
46852
|
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
46762
46853
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
46763
46854
|
links?: ObjectLinks;
|
|
@@ -46897,7 +46988,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
46897
46988
|
export declare interface JsonApiUserGroupOutList {
|
|
46898
46989
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
46899
46990
|
links?: ListLinks;
|
|
46900
|
-
meta?:
|
|
46991
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46901
46992
|
/**
|
|
46902
46993
|
* Included resources
|
|
46903
46994
|
*/
|
|
@@ -46990,7 +47081,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
46990
47081
|
export declare interface JsonApiUserIdentifierOutList {
|
|
46991
47082
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
46992
47083
|
links?: ListLinks;
|
|
46993
|
-
meta?:
|
|
47084
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46994
47085
|
}
|
|
46995
47086
|
|
|
46996
47087
|
export declare type JsonApiUserIdentifierOutTypeEnum = "userIdentifier";
|
|
@@ -47080,7 +47171,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
47080
47171
|
export declare interface JsonApiUserOutList {
|
|
47081
47172
|
data: Array<JsonApiUserOutWithLinks>;
|
|
47082
47173
|
links?: ListLinks;
|
|
47083
|
-
meta?:
|
|
47174
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47084
47175
|
/**
|
|
47085
47176
|
* Included resources
|
|
47086
47177
|
*/
|
|
@@ -47185,7 +47276,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
47185
47276
|
export declare interface JsonApiUserSettingOutList {
|
|
47186
47277
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
47187
47278
|
links?: ListLinks;
|
|
47188
|
-
meta?:
|
|
47279
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47189
47280
|
}
|
|
47190
47281
|
|
|
47191
47282
|
export declare type JsonApiUserSettingOutTypeEnum = "userSetting";
|
|
@@ -47217,7 +47308,19 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
47217
47308
|
* API identifier of an object
|
|
47218
47309
|
*/
|
|
47219
47310
|
id: string;
|
|
47220
|
-
attributes:
|
|
47311
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
47312
|
+
}
|
|
47313
|
+
|
|
47314
|
+
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
47315
|
+
title?: string;
|
|
47316
|
+
description?: string;
|
|
47317
|
+
tags?: Array<string>;
|
|
47318
|
+
areRelationsValid?: boolean;
|
|
47319
|
+
/**
|
|
47320
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
47321
|
+
*/
|
|
47322
|
+
content: object;
|
|
47323
|
+
isHidden?: boolean;
|
|
47221
47324
|
}
|
|
47222
47325
|
|
|
47223
47326
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -47248,7 +47351,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
47248
47351
|
* API identifier of an object
|
|
47249
47352
|
*/
|
|
47250
47353
|
id: string;
|
|
47251
|
-
meta?:
|
|
47354
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47252
47355
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
47253
47356
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47254
47357
|
}
|
|
@@ -47282,77 +47385,21 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
47282
47385
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
47283
47386
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
47284
47387
|
links?: ListLinks;
|
|
47285
|
-
meta?:
|
|
47388
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47286
47389
|
/**
|
|
47287
47390
|
* Included resources
|
|
47288
47391
|
*/
|
|
47289
47392
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
47290
47393
|
}
|
|
47291
47394
|
|
|
47292
|
-
export declare interface JsonApiVisualizationObjectOutMeta {
|
|
47293
|
-
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
47294
|
-
}
|
|
47295
|
-
|
|
47296
|
-
export declare interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
47297
|
-
/**
|
|
47298
|
-
* defines type of the origin of the entity
|
|
47299
|
-
*/
|
|
47300
|
-
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
47301
|
-
/**
|
|
47302
|
-
* defines id of the workspace where the entity comes from
|
|
47303
|
-
*/
|
|
47304
|
-
originId: string;
|
|
47305
|
-
}
|
|
47306
|
-
|
|
47307
|
-
export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
|
|
47308
|
-
|
|
47309
47395
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
47310
|
-
createdBy?:
|
|
47311
|
-
modifiedBy?:
|
|
47312
|
-
facts?:
|
|
47313
|
-
attributes?:
|
|
47314
|
-
labels?:
|
|
47315
|
-
metrics?:
|
|
47316
|
-
datasets?:
|
|
47317
|
-
}
|
|
47318
|
-
|
|
47319
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
47320
|
-
/**
|
|
47321
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
47322
|
-
*/
|
|
47323
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
47324
|
-
}
|
|
47325
|
-
|
|
47326
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
47327
|
-
data: JsonApiUserIdentifierLinkage | null;
|
|
47328
|
-
}
|
|
47329
|
-
|
|
47330
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
47331
|
-
/**
|
|
47332
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
47333
|
-
*/
|
|
47334
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
47335
|
-
}
|
|
47336
|
-
|
|
47337
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
47338
|
-
/**
|
|
47339
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
47340
|
-
*/
|
|
47341
|
-
data: Array<JsonApiFactLinkage>;
|
|
47342
|
-
}
|
|
47343
|
-
|
|
47344
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
47345
|
-
/**
|
|
47346
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
47347
|
-
*/
|
|
47348
|
-
data: Array<JsonApiLabelLinkage>;
|
|
47349
|
-
}
|
|
47350
|
-
|
|
47351
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsMetrics {
|
|
47352
|
-
/**
|
|
47353
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
47354
|
-
*/
|
|
47355
|
-
data: Array<JsonApiMetricLinkage>;
|
|
47396
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
47397
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
47398
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
47399
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
47400
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
47401
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
47402
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
47356
47403
|
}
|
|
47357
47404
|
|
|
47358
47405
|
export declare type JsonApiVisualizationObjectOutTypeEnum = "visualizationObject";
|
|
@@ -47366,7 +47413,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
47366
47413
|
* API identifier of an object
|
|
47367
47414
|
*/
|
|
47368
47415
|
id: string;
|
|
47369
|
-
meta?:
|
|
47416
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47370
47417
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
47371
47418
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47372
47419
|
links?: ObjectLinks;
|
|
@@ -47419,19 +47466,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
47419
47466
|
* API identifier of an object
|
|
47420
47467
|
*/
|
|
47421
47468
|
id?: string;
|
|
47422
|
-
attributes:
|
|
47423
|
-
}
|
|
47424
|
-
|
|
47425
|
-
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
47426
|
-
title?: string;
|
|
47427
|
-
description?: string;
|
|
47428
|
-
tags?: Array<string>;
|
|
47429
|
-
areRelationsValid?: boolean;
|
|
47430
|
-
/**
|
|
47431
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
47432
|
-
*/
|
|
47433
|
-
content: object;
|
|
47434
|
-
isHidden?: boolean;
|
|
47469
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
47435
47470
|
}
|
|
47436
47471
|
|
|
47437
47472
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -47452,10 +47487,118 @@ export declare interface JsonApiWorkspaceAutomationOut {
|
|
|
47452
47487
|
* API identifier of an object
|
|
47453
47488
|
*/
|
|
47454
47489
|
id: string;
|
|
47455
|
-
attributes?:
|
|
47490
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
47456
47491
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
47457
47492
|
}
|
|
47458
47493
|
|
|
47494
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
47495
|
+
title?: string;
|
|
47496
|
+
description?: string;
|
|
47497
|
+
tags?: Array<string>;
|
|
47498
|
+
areRelationsValid?: boolean;
|
|
47499
|
+
/**
|
|
47500
|
+
* Additional details to be included in the automated message.
|
|
47501
|
+
*/
|
|
47502
|
+
details?: object;
|
|
47503
|
+
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
47504
|
+
/**
|
|
47505
|
+
* Current state of the automation.
|
|
47506
|
+
*/
|
|
47507
|
+
state?: JsonApiWorkspaceAutomationOutAttributesStateEnum;
|
|
47508
|
+
/**
|
|
47509
|
+
* Specify automation evaluation mode.
|
|
47510
|
+
*/
|
|
47511
|
+
evaluationMode?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
47512
|
+
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
47513
|
+
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
47514
|
+
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
47515
|
+
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
47516
|
+
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
47517
|
+
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
47518
|
+
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
47519
|
+
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
47520
|
+
/**
|
|
47521
|
+
* External recipients of the automation action results.
|
|
47522
|
+
*/
|
|
47523
|
+
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
47524
|
+
createdAt?: string;
|
|
47525
|
+
modifiedAt?: string;
|
|
47526
|
+
}
|
|
47527
|
+
|
|
47528
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
47529
|
+
execution: AlertAfm;
|
|
47530
|
+
condition: AlertCondition;
|
|
47531
|
+
/**
|
|
47532
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
47533
|
+
*/
|
|
47534
|
+
trigger?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
47535
|
+
}
|
|
47536
|
+
|
|
47537
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = "ALWAYS" | "ONCE";
|
|
47538
|
+
|
|
47539
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
47540
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
47541
|
+
}
|
|
47542
|
+
|
|
47543
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
|
|
47544
|
+
|
|
47545
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
47546
|
+
/**
|
|
47547
|
+
* E-mail address to send notifications from.
|
|
47548
|
+
*/
|
|
47549
|
+
email: string;
|
|
47550
|
+
}
|
|
47551
|
+
|
|
47552
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
47553
|
+
requestPayload: ImageExportRequest;
|
|
47554
|
+
}
|
|
47555
|
+
|
|
47556
|
+
/**
|
|
47557
|
+
* Additional information for the automation.
|
|
47558
|
+
*/
|
|
47559
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
47560
|
+
[key: string]: any;
|
|
47561
|
+
widget?: string;
|
|
47562
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
47563
|
+
}
|
|
47564
|
+
|
|
47565
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
47566
|
+
requestPayload: RawExportAutomationRequest;
|
|
47567
|
+
}
|
|
47568
|
+
|
|
47569
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
47570
|
+
/**
|
|
47571
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
47572
|
+
*/
|
|
47573
|
+
cron: string;
|
|
47574
|
+
/**
|
|
47575
|
+
* Human-readable description of the cron expression.
|
|
47576
|
+
*/
|
|
47577
|
+
cronDescription?: string;
|
|
47578
|
+
/**
|
|
47579
|
+
* Timezone in which the schedule is defined.
|
|
47580
|
+
*/
|
|
47581
|
+
timezone: string;
|
|
47582
|
+
/**
|
|
47583
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
47584
|
+
*/
|
|
47585
|
+
firstRun?: string;
|
|
47586
|
+
}
|
|
47587
|
+
|
|
47588
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
47589
|
+
requestPayload: SlidesExportRequest;
|
|
47590
|
+
}
|
|
47591
|
+
|
|
47592
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = "ACTIVE" | "PAUSED";
|
|
47593
|
+
|
|
47594
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
47595
|
+
requestPayload: TabularExportRequest;
|
|
47596
|
+
}
|
|
47597
|
+
|
|
47598
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
47599
|
+
requestPayload: VisualExportRequest;
|
|
47600
|
+
}
|
|
47601
|
+
|
|
47459
47602
|
/**
|
|
47460
47603
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
47461
47604
|
*/
|
|
@@ -47467,19 +47610,23 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
47467
47610
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
47468
47611
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
47469
47612
|
links?: ListLinks;
|
|
47470
|
-
meta?:
|
|
47613
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47471
47614
|
/**
|
|
47472
47615
|
* Included resources
|
|
47473
47616
|
*/
|
|
47474
47617
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
47475
47618
|
}
|
|
47476
47619
|
|
|
47620
|
+
export declare interface JsonApiWorkspaceAutomationOutListMeta {
|
|
47621
|
+
page?: PageMetadata;
|
|
47622
|
+
}
|
|
47623
|
+
|
|
47477
47624
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
47478
47625
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
47479
47626
|
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
47480
47627
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47481
|
-
createdBy?:
|
|
47482
|
-
modifiedBy?:
|
|
47628
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
47629
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
47483
47630
|
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
47484
47631
|
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
47485
47632
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
@@ -47496,7 +47643,7 @@ export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
47496
47643
|
* API identifier of an object
|
|
47497
47644
|
*/
|
|
47498
47645
|
id: string;
|
|
47499
|
-
attributes?:
|
|
47646
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
47500
47647
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
47501
47648
|
links?: ObjectLinks;
|
|
47502
47649
|
}
|
|
@@ -47547,7 +47694,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
47547
47694
|
* API identifier of an object
|
|
47548
47695
|
*/
|
|
47549
47696
|
id: string;
|
|
47550
|
-
meta?:
|
|
47697
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47551
47698
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
47552
47699
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
47553
47700
|
}
|
|
@@ -47573,7 +47720,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
47573
47720
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
47574
47721
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
47575
47722
|
links?: ListLinks;
|
|
47576
|
-
meta?:
|
|
47723
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47577
47724
|
/**
|
|
47578
47725
|
* Included resources
|
|
47579
47726
|
*/
|
|
@@ -47602,7 +47749,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
47602
47749
|
* API identifier of an object
|
|
47603
47750
|
*/
|
|
47604
47751
|
id: string;
|
|
47605
|
-
meta?:
|
|
47752
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47606
47753
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
47607
47754
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
47608
47755
|
links?: ObjectLinks;
|
|
@@ -47690,11 +47837,17 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
47690
47837
|
* API identifier of an object
|
|
47691
47838
|
*/
|
|
47692
47839
|
id: string;
|
|
47693
|
-
meta?:
|
|
47840
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47694
47841
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
47695
47842
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
47696
47843
|
}
|
|
47697
47844
|
|
|
47845
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
47846
|
+
title?: string;
|
|
47847
|
+
description?: string;
|
|
47848
|
+
filterValues?: Array<string>;
|
|
47849
|
+
}
|
|
47850
|
+
|
|
47698
47851
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
47699
47852
|
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
47700
47853
|
links?: ObjectLinks;
|
|
@@ -47710,13 +47863,21 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
47710
47863
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
47711
47864
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
47712
47865
|
links?: ListLinks;
|
|
47713
|
-
meta?:
|
|
47866
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47714
47867
|
/**
|
|
47715
47868
|
* Included resources
|
|
47716
47869
|
*/
|
|
47717
47870
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
47718
47871
|
}
|
|
47719
47872
|
|
|
47873
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
47874
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
47875
|
+
}
|
|
47876
|
+
|
|
47877
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
47878
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
47879
|
+
}
|
|
47880
|
+
|
|
47720
47881
|
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = "workspaceDataFilterSetting";
|
|
47721
47882
|
|
|
47722
47883
|
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
@@ -47728,7 +47889,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
47728
47889
|
* API identifier of an object
|
|
47729
47890
|
*/
|
|
47730
47891
|
id: string;
|
|
47731
|
-
meta?:
|
|
47892
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47732
47893
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
47733
47894
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
47734
47895
|
links?: ObjectLinks;
|
|
@@ -47856,7 +48017,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
47856
48017
|
export declare interface JsonApiWorkspaceOutList {
|
|
47857
48018
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
47858
48019
|
links?: ListLinks;
|
|
47859
|
-
meta?:
|
|
48020
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47860
48021
|
/**
|
|
47861
48022
|
* Included resources
|
|
47862
48023
|
*/
|
|
@@ -47986,7 +48147,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
47986
48147
|
* API identifier of an object
|
|
47987
48148
|
*/
|
|
47988
48149
|
id: string;
|
|
47989
|
-
meta?:
|
|
48150
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47990
48151
|
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
47991
48152
|
}
|
|
47992
48153
|
|
|
@@ -48001,7 +48162,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
48001
48162
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
48002
48163
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
48003
48164
|
links?: ListLinks;
|
|
48004
|
-
meta?:
|
|
48165
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48005
48166
|
}
|
|
48006
48167
|
|
|
48007
48168
|
export declare type JsonApiWorkspaceSettingOutTypeEnum = "workspaceSetting";
|
|
@@ -48015,7 +48176,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
48015
48176
|
* API identifier of an object
|
|
48016
48177
|
*/
|
|
48017
48178
|
id: string;
|
|
48018
|
-
meta?:
|
|
48179
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
48019
48180
|
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
48020
48181
|
links?: ObjectLinks;
|
|
48021
48182
|
}
|