@gooddata/api-client-tiger 10.43.0-alpha.3 → 10.43.0-alpha.5
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 +784 -716
- package/esm/generated/automation-json-api/api.d.ts +28 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +9 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +28 -5
- package/esm/generated/metadata-json-api/api.d.ts +687 -657
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +69 -54
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8972 -8935
- package/package.json +3 -3
|
@@ -12776,26 +12776,58 @@ export declare interface AutomationSettings {
|
|
|
12776
12776
|
mergeHeaders?: boolean;
|
|
12777
12777
|
/**
|
|
12778
12778
|
* Print applied filters on top of the document. (PDF/HTML when visualizationObject is given)
|
|
12779
|
+
* @deprecated
|
|
12779
12780
|
*/
|
|
12780
12781
|
showFilters?: boolean;
|
|
12781
12782
|
/**
|
|
12782
12783
|
* Page size and orientation. (PDF)
|
|
12784
|
+
* @deprecated
|
|
12783
12785
|
*/
|
|
12784
12786
|
pdfPageSize?: string;
|
|
12785
12787
|
/**
|
|
12786
12788
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
12789
|
+
* @deprecated
|
|
12787
12790
|
*/
|
|
12788
12791
|
pdfTableStyle?: Array<AutomationPdfTableStyle>;
|
|
12789
12792
|
/**
|
|
12790
12793
|
* Top left header content. (PDF)
|
|
12794
|
+
* @deprecated
|
|
12791
12795
|
*/
|
|
12792
12796
|
pdfTopLeftContent?: string;
|
|
12793
12797
|
/**
|
|
12794
12798
|
* Top right header content. (PDF)
|
|
12799
|
+
* @deprecated
|
|
12795
12800
|
*/
|
|
12796
12801
|
pdfTopRightContent?: string;
|
|
12802
|
+
/**
|
|
12803
|
+
* Set page size. (PDF)
|
|
12804
|
+
*/
|
|
12805
|
+
pageSize?: AutomationSettingsPageSizeEnum;
|
|
12806
|
+
/**
|
|
12807
|
+
* Set page orientation. (PDF)
|
|
12808
|
+
*/
|
|
12809
|
+
pageOrientation?: AutomationSettingsPageOrientationEnum;
|
|
12810
|
+
/**
|
|
12811
|
+
* Show info page with export information.
|
|
12812
|
+
*/
|
|
12813
|
+
showInfoPage?: boolean;
|
|
12797
12814
|
}
|
|
12798
12815
|
|
|
12816
|
+
declare const AutomationSettingsPageOrientationEnum: {
|
|
12817
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
12818
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
12819
|
+
};
|
|
12820
|
+
|
|
12821
|
+
declare type AutomationSettingsPageOrientationEnum = (typeof AutomationSettingsPageOrientationEnum)[keyof typeof AutomationSettingsPageOrientationEnum];
|
|
12822
|
+
|
|
12823
|
+
declare const AutomationSettingsPageSizeEnum: {
|
|
12824
|
+
readonly A3: "A3";
|
|
12825
|
+
readonly A4: "A4";
|
|
12826
|
+
readonly LETTER: "LETTER";
|
|
12827
|
+
};
|
|
12828
|
+
|
|
12829
|
+
declare type AutomationSettingsPageSizeEnum = (typeof AutomationSettingsPageSizeEnum)[keyof typeof AutomationSettingsPageSizeEnum];
|
|
12830
|
+
|
|
12799
12831
|
/**
|
|
12800
12832
|
* Metric defined by referencing a MAQL metric or an LDM fact object with aggregation.
|
|
12801
12833
|
*/
|
|
@@ -19356,6 +19388,10 @@ export declare interface DeclarativeAutomation {
|
|
|
19356
19388
|
* Current state of the automation.
|
|
19357
19389
|
*/
|
|
19358
19390
|
state?: DeclarativeAutomationStateEnum;
|
|
19391
|
+
/**
|
|
19392
|
+
* Specify automation evaluation mode.
|
|
19393
|
+
*/
|
|
19394
|
+
evaluationMode?: DeclarativeAutomationEvaluationModeEnum;
|
|
19359
19395
|
schedule?: AutomationSchedule;
|
|
19360
19396
|
alert?: AutomationAlert;
|
|
19361
19397
|
tabularExports?: Array<AutomationTabularExport>;
|
|
@@ -19384,6 +19420,13 @@ export declare interface DeclarativeAutomation {
|
|
|
19384
19420
|
createdAt?: string | null;
|
|
19385
19421
|
}
|
|
19386
19422
|
|
|
19423
|
+
export declare const DeclarativeAutomationEvaluationModeEnum: {
|
|
19424
|
+
readonly SHARED: "SHARED";
|
|
19425
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
19426
|
+
};
|
|
19427
|
+
|
|
19428
|
+
export declare type DeclarativeAutomationEvaluationModeEnum = (typeof DeclarativeAutomationEvaluationModeEnum)[keyof typeof DeclarativeAutomationEvaluationModeEnum];
|
|
19429
|
+
|
|
19387
19430
|
export declare const DeclarativeAutomationStateEnum: {
|
|
19388
19431
|
readonly ACTIVE: "ACTIVE";
|
|
19389
19432
|
readonly PAUSED: "PAUSED";
|
|
@@ -20530,6 +20573,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
20530
20573
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
20531
20574
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
20532
20575
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
20576
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
20533
20577
|
};
|
|
20534
20578
|
|
|
20535
20579
|
export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
@@ -43507,7 +43551,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
43507
43551
|
* API identifier of an object
|
|
43508
43552
|
*/
|
|
43509
43553
|
id: string;
|
|
43510
|
-
meta?:
|
|
43554
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43511
43555
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43512
43556
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43513
43557
|
}
|
|
@@ -43561,7 +43605,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
43561
43605
|
export declare interface JsonApiAggregatedFactOutList {
|
|
43562
43606
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
43563
43607
|
links?: ListLinks;
|
|
43564
|
-
meta?:
|
|
43608
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43565
43609
|
/**
|
|
43566
43610
|
* Included resources
|
|
43567
43611
|
*/
|
|
@@ -43569,7 +43613,7 @@ export declare interface JsonApiAggregatedFactOutList {
|
|
|
43569
43613
|
}
|
|
43570
43614
|
|
|
43571
43615
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
43572
|
-
dataset?:
|
|
43616
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
43573
43617
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
43574
43618
|
}
|
|
43575
43619
|
|
|
@@ -43592,7 +43636,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
43592
43636
|
* API identifier of an object
|
|
43593
43637
|
*/
|
|
43594
43638
|
id: string;
|
|
43595
|
-
meta?:
|
|
43639
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43596
43640
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43597
43641
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43598
43642
|
links?: ObjectLinks;
|
|
@@ -43616,7 +43660,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
43616
43660
|
* API identifier of an object
|
|
43617
43661
|
*/
|
|
43618
43662
|
id: string;
|
|
43619
|
-
attributes:
|
|
43663
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
43620
43664
|
}
|
|
43621
43665
|
|
|
43622
43666
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -43656,10 +43700,23 @@ export declare interface JsonApiAnalyticalDashboardOut {
|
|
|
43656
43700
|
*/
|
|
43657
43701
|
id: string;
|
|
43658
43702
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
43659
|
-
attributes:
|
|
43703
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
43660
43704
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
43661
43705
|
}
|
|
43662
43706
|
|
|
43707
|
+
export declare interface JsonApiAnalyticalDashboardOutAttributes {
|
|
43708
|
+
title?: string;
|
|
43709
|
+
description?: string;
|
|
43710
|
+
tags?: Array<string>;
|
|
43711
|
+
areRelationsValid?: boolean;
|
|
43712
|
+
/**
|
|
43713
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43714
|
+
*/
|
|
43715
|
+
content: object;
|
|
43716
|
+
createdAt?: string;
|
|
43717
|
+
modifiedAt?: string;
|
|
43718
|
+
}
|
|
43719
|
+
|
|
43663
43720
|
export declare interface JsonApiAnalyticalDashboardOutDocument {
|
|
43664
43721
|
data: JsonApiAnalyticalDashboardOut;
|
|
43665
43722
|
links?: ObjectLinks;
|
|
@@ -43680,7 +43737,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
43680
43737
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
43681
43738
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
43682
43739
|
links?: ListLinks;
|
|
43683
|
-
meta?:
|
|
43740
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43684
43741
|
/**
|
|
43685
43742
|
* Included resources
|
|
43686
43743
|
*/
|
|
@@ -43692,7 +43749,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
43692
43749
|
* List of valid permissions for a logged-in user.
|
|
43693
43750
|
*/
|
|
43694
43751
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
43695
|
-
origin?:
|
|
43752
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
43696
43753
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
43697
43754
|
}
|
|
43698
43755
|
|
|
@@ -43703,6 +43760,24 @@ export declare interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
43703
43760
|
private: boolean;
|
|
43704
43761
|
}
|
|
43705
43762
|
|
|
43763
|
+
export declare interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
43764
|
+
/**
|
|
43765
|
+
* defines type of the origin of the entity
|
|
43766
|
+
*/
|
|
43767
|
+
originType: JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
43768
|
+
/**
|
|
43769
|
+
* defines id of the workspace where the entity comes from
|
|
43770
|
+
*/
|
|
43771
|
+
originId: string;
|
|
43772
|
+
}
|
|
43773
|
+
|
|
43774
|
+
export declare const JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum: {
|
|
43775
|
+
readonly NATIVE: "NATIVE";
|
|
43776
|
+
readonly PARENT: "PARENT";
|
|
43777
|
+
};
|
|
43778
|
+
|
|
43779
|
+
export declare type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = (typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum];
|
|
43780
|
+
|
|
43706
43781
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
43707
43782
|
readonly EDIT: "EDIT";
|
|
43708
43783
|
readonly SHARE: "SHARE";
|
|
@@ -43712,13 +43787,13 @@ export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
|
43712
43787
|
export declare type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = (typeof JsonApiAnalyticalDashboardOutMetaPermissionsEnum)[keyof typeof JsonApiAnalyticalDashboardOutMetaPermissionsEnum];
|
|
43713
43788
|
|
|
43714
43789
|
export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
43715
|
-
createdBy?:
|
|
43716
|
-
modifiedBy?:
|
|
43790
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43791
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
43717
43792
|
visualizationObjects?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
43718
43793
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
43719
|
-
labels?:
|
|
43720
|
-
metrics?:
|
|
43721
|
-
datasets?:
|
|
43794
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
43795
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
43796
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
43722
43797
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
43723
43798
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
43724
43799
|
}
|
|
@@ -43730,6 +43805,10 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDas
|
|
|
43730
43805
|
data: Array<JsonApiAnalyticalDashboardLinkage>;
|
|
43731
43806
|
}
|
|
43732
43807
|
|
|
43808
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
43809
|
+
data: JsonApiUserIdentifierLinkage | null;
|
|
43810
|
+
}
|
|
43811
|
+
|
|
43733
43812
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
43734
43813
|
/**
|
|
43735
43814
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43737,6 +43816,13 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlug
|
|
|
43737
43816
|
data: Array<JsonApiDashboardPluginLinkage>;
|
|
43738
43817
|
}
|
|
43739
43818
|
|
|
43819
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
43820
|
+
/**
|
|
43821
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43822
|
+
*/
|
|
43823
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
43824
|
+
}
|
|
43825
|
+
|
|
43740
43826
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
43741
43827
|
/**
|
|
43742
43828
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43744,6 +43830,20 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContext
|
|
|
43744
43830
|
data: Array<JsonApiFilterContextLinkage>;
|
|
43745
43831
|
}
|
|
43746
43832
|
|
|
43833
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
43834
|
+
/**
|
|
43835
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43836
|
+
*/
|
|
43837
|
+
data: Array<JsonApiLabelLinkage>;
|
|
43838
|
+
}
|
|
43839
|
+
|
|
43840
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
43841
|
+
/**
|
|
43842
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43843
|
+
*/
|
|
43844
|
+
data: Array<JsonApiMetricLinkage>;
|
|
43845
|
+
}
|
|
43846
|
+
|
|
43747
43847
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
43748
43848
|
/**
|
|
43749
43849
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43767,7 +43867,7 @@ export declare interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
43767
43867
|
*/
|
|
43768
43868
|
id: string;
|
|
43769
43869
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
43770
|
-
attributes:
|
|
43870
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
43771
43871
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
43772
43872
|
links?: ObjectLinks;
|
|
43773
43873
|
}
|
|
@@ -43826,7 +43926,18 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
43826
43926
|
* API identifier of an object
|
|
43827
43927
|
*/
|
|
43828
43928
|
id?: string;
|
|
43829
|
-
attributes:
|
|
43929
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
43930
|
+
}
|
|
43931
|
+
|
|
43932
|
+
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
43933
|
+
title?: string;
|
|
43934
|
+
description?: string;
|
|
43935
|
+
tags?: Array<string>;
|
|
43936
|
+
areRelationsValid?: boolean;
|
|
43937
|
+
/**
|
|
43938
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43939
|
+
*/
|
|
43940
|
+
content: object;
|
|
43830
43941
|
}
|
|
43831
43942
|
|
|
43832
43943
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -43896,7 +44007,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
43896
44007
|
export declare interface JsonApiApiTokenOutList {
|
|
43897
44008
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
43898
44009
|
links?: ListLinks;
|
|
43899
|
-
meta?:
|
|
44010
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
43900
44011
|
}
|
|
43901
44012
|
|
|
43902
44013
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -43986,7 +44097,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
43986
44097
|
* API identifier of an object
|
|
43987
44098
|
*/
|
|
43988
44099
|
id: string;
|
|
43989
|
-
meta?:
|
|
44100
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
43990
44101
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
43991
44102
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
43992
44103
|
}
|
|
@@ -44024,7 +44135,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
44024
44135
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
44025
44136
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
44026
44137
|
links?: ListLinks;
|
|
44027
|
-
meta?:
|
|
44138
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44028
44139
|
/**
|
|
44029
44140
|
* Included resources
|
|
44030
44141
|
*/
|
|
@@ -44032,9 +44143,9 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
44032
44143
|
}
|
|
44033
44144
|
|
|
44034
44145
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
44035
|
-
createdBy?:
|
|
44036
|
-
modifiedBy?:
|
|
44037
|
-
attributes?:
|
|
44146
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44147
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44148
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
44038
44149
|
}
|
|
44039
44150
|
|
|
44040
44151
|
export declare const JsonApiAttributeHierarchyOutTypeEnum: {
|
|
@@ -44052,7 +44163,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
44052
44163
|
* API identifier of an object
|
|
44053
44164
|
*/
|
|
44054
44165
|
id: string;
|
|
44055
|
-
meta?:
|
|
44166
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44056
44167
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44057
44168
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44058
44169
|
links?: ObjectLinks;
|
|
@@ -44115,7 +44226,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
44115
44226
|
* API identifier of an object
|
|
44116
44227
|
*/
|
|
44117
44228
|
id: string;
|
|
44118
|
-
meta?:
|
|
44229
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44119
44230
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44120
44231
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44121
44232
|
}
|
|
@@ -44192,7 +44303,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
44192
44303
|
export declare interface JsonApiAttributeOutList {
|
|
44193
44304
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
44194
44305
|
links?: ListLinks;
|
|
44195
|
-
meta?:
|
|
44306
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44196
44307
|
/**
|
|
44197
44308
|
* Included resources
|
|
44198
44309
|
*/
|
|
@@ -44200,9 +44311,9 @@ export declare interface JsonApiAttributeOutList {
|
|
|
44200
44311
|
}
|
|
44201
44312
|
|
|
44202
44313
|
export declare interface JsonApiAttributeOutRelationships {
|
|
44203
|
-
dataset?:
|
|
44314
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
44204
44315
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
44205
|
-
labels?:
|
|
44316
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
44206
44317
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
44207
44318
|
}
|
|
44208
44319
|
|
|
@@ -44213,6 +44324,10 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
44213
44324
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
44214
44325
|
}
|
|
44215
44326
|
|
|
44327
|
+
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
44328
|
+
data: JsonApiDatasetLinkage | null;
|
|
44329
|
+
}
|
|
44330
|
+
|
|
44216
44331
|
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
44217
44332
|
data: JsonApiLabelLinkage | null;
|
|
44218
44333
|
}
|
|
@@ -44232,7 +44347,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
44232
44347
|
* API identifier of an object
|
|
44233
44348
|
*/
|
|
44234
44349
|
id: string;
|
|
44235
|
-
meta?:
|
|
44350
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44236
44351
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44237
44352
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44238
44353
|
links?: ObjectLinks;
|
|
@@ -44269,25 +44384,36 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
44269
44384
|
* Additional details to be included in the automated message.
|
|
44270
44385
|
*/
|
|
44271
44386
|
details?: object;
|
|
44272
|
-
metadata?:
|
|
44387
|
+
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
44273
44388
|
/**
|
|
44274
44389
|
* Current state of the automation.
|
|
44275
44390
|
*/
|
|
44276
44391
|
state?: JsonApiAutomationInAttributesStateEnum;
|
|
44277
|
-
|
|
44278
|
-
|
|
44279
|
-
|
|
44280
|
-
|
|
44281
|
-
|
|
44282
|
-
|
|
44283
|
-
|
|
44284
|
-
|
|
44392
|
+
/**
|
|
44393
|
+
* Specify automation evaluation mode.
|
|
44394
|
+
*/
|
|
44395
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
44396
|
+
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
44397
|
+
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
44398
|
+
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
44399
|
+
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
44400
|
+
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
44401
|
+
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
44402
|
+
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
44403
|
+
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
44285
44404
|
/**
|
|
44286
44405
|
* External recipients of the automation action results.
|
|
44287
44406
|
*/
|
|
44288
|
-
externalRecipients?: Array<
|
|
44407
|
+
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
44289
44408
|
}
|
|
44290
44409
|
|
|
44410
|
+
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
44411
|
+
readonly SHARED: "SHARED";
|
|
44412
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
44413
|
+
};
|
|
44414
|
+
|
|
44415
|
+
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
44416
|
+
|
|
44291
44417
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
44292
44418
|
readonly ACTIVE: "ACTIVE";
|
|
44293
44419
|
readonly PAUSED: "PAUSED";
|
|
@@ -44300,10 +44426,10 @@ export declare interface JsonApiAutomationInDocument {
|
|
|
44300
44426
|
}
|
|
44301
44427
|
|
|
44302
44428
|
export declare interface JsonApiAutomationInRelationships {
|
|
44303
|
-
notificationChannel?:
|
|
44429
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
44304
44430
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44305
|
-
exportDefinitions?:
|
|
44306
|
-
recipients?:
|
|
44431
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
44432
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
44307
44433
|
}
|
|
44308
44434
|
|
|
44309
44435
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
@@ -44338,122 +44464,11 @@ export declare interface JsonApiAutomationOut {
|
|
|
44338
44464
|
* API identifier of an object
|
|
44339
44465
|
*/
|
|
44340
44466
|
id: string;
|
|
44341
|
-
meta?:
|
|
44342
|
-
attributes?:
|
|
44467
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44468
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
44343
44469
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44344
44470
|
}
|
|
44345
44471
|
|
|
44346
|
-
export declare interface JsonApiAutomationOutAttributes {
|
|
44347
|
-
title?: string;
|
|
44348
|
-
description?: string;
|
|
44349
|
-
tags?: Array<string>;
|
|
44350
|
-
areRelationsValid?: boolean;
|
|
44351
|
-
/**
|
|
44352
|
-
* Additional details to be included in the automated message.
|
|
44353
|
-
*/
|
|
44354
|
-
details?: object;
|
|
44355
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
44356
|
-
/**
|
|
44357
|
-
* Current state of the automation.
|
|
44358
|
-
*/
|
|
44359
|
-
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
44360
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
44361
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
44362
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
44363
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
44364
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
44365
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
44366
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
44367
|
-
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
44368
|
-
/**
|
|
44369
|
-
* External recipients of the automation action results.
|
|
44370
|
-
*/
|
|
44371
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
44372
|
-
createdAt?: string;
|
|
44373
|
-
modifiedAt?: string;
|
|
44374
|
-
}
|
|
44375
|
-
|
|
44376
|
-
export declare interface JsonApiAutomationOutAttributesAlert {
|
|
44377
|
-
execution: AlertAfm;
|
|
44378
|
-
condition: AlertCondition;
|
|
44379
|
-
/**
|
|
44380
|
-
* 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.
|
|
44381
|
-
*/
|
|
44382
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
44383
|
-
}
|
|
44384
|
-
|
|
44385
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
44386
|
-
readonly ALWAYS: "ALWAYS";
|
|
44387
|
-
readonly ONCE: "ONCE";
|
|
44388
|
-
};
|
|
44389
|
-
|
|
44390
|
-
export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
44391
|
-
|
|
44392
|
-
export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
44393
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
44394
|
-
}
|
|
44395
|
-
|
|
44396
|
-
export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
44397
|
-
/**
|
|
44398
|
-
* E-mail address to send notifications from.
|
|
44399
|
-
*/
|
|
44400
|
-
email: string;
|
|
44401
|
-
}
|
|
44402
|
-
|
|
44403
|
-
export declare interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
44404
|
-
requestPayload: ImageExportRequest;
|
|
44405
|
-
}
|
|
44406
|
-
|
|
44407
|
-
/**
|
|
44408
|
-
* Additional information for the automation.
|
|
44409
|
-
*/
|
|
44410
|
-
export declare interface JsonApiAutomationOutAttributesMetadata {
|
|
44411
|
-
widget?: string;
|
|
44412
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
44413
|
-
}
|
|
44414
|
-
|
|
44415
|
-
export declare interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
44416
|
-
requestPayload: RawExportAutomationRequest;
|
|
44417
|
-
}
|
|
44418
|
-
|
|
44419
|
-
export declare interface JsonApiAutomationOutAttributesSchedule {
|
|
44420
|
-
/**
|
|
44421
|
-
* 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.
|
|
44422
|
-
*/
|
|
44423
|
-
cron: string;
|
|
44424
|
-
/**
|
|
44425
|
-
* Human-readable description of the cron expression.
|
|
44426
|
-
*/
|
|
44427
|
-
cronDescription?: string;
|
|
44428
|
-
/**
|
|
44429
|
-
* Timezone in which the schedule is defined.
|
|
44430
|
-
*/
|
|
44431
|
-
timezone: string;
|
|
44432
|
-
/**
|
|
44433
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
44434
|
-
*/
|
|
44435
|
-
firstRun?: string;
|
|
44436
|
-
}
|
|
44437
|
-
|
|
44438
|
-
export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
44439
|
-
requestPayload: SlidesExportRequest;
|
|
44440
|
-
}
|
|
44441
|
-
|
|
44442
|
-
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
44443
|
-
readonly ACTIVE: "ACTIVE";
|
|
44444
|
-
readonly PAUSED: "PAUSED";
|
|
44445
|
-
};
|
|
44446
|
-
|
|
44447
|
-
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
44448
|
-
|
|
44449
|
-
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
44450
|
-
requestPayload: TabularExportRequest;
|
|
44451
|
-
}
|
|
44452
|
-
|
|
44453
|
-
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
44454
|
-
requestPayload: VisualExportRequest;
|
|
44455
|
-
}
|
|
44456
|
-
|
|
44457
44472
|
export declare interface JsonApiAutomationOutDocument {
|
|
44458
44473
|
data: JsonApiAutomationOut;
|
|
44459
44474
|
links?: ObjectLinks;
|
|
@@ -44474,7 +44489,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
44474
44489
|
export declare interface JsonApiAutomationOutList {
|
|
44475
44490
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
44476
44491
|
links?: ListLinks;
|
|
44477
|
-
meta?:
|
|
44492
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44478
44493
|
/**
|
|
44479
44494
|
* Included resources
|
|
44480
44495
|
*/
|
|
@@ -44482,38 +44497,13 @@ export declare interface JsonApiAutomationOutList {
|
|
|
44482
44497
|
}
|
|
44483
44498
|
|
|
44484
44499
|
export declare interface JsonApiAutomationOutRelationships {
|
|
44485
|
-
notificationChannel?:
|
|
44500
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
44486
44501
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44487
|
-
createdBy?:
|
|
44488
|
-
modifiedBy?:
|
|
44489
|
-
exportDefinitions?:
|
|
44490
|
-
recipients?:
|
|
44491
|
-
automationResults?:
|
|
44492
|
-
}
|
|
44493
|
-
|
|
44494
|
-
export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
44495
|
-
/**
|
|
44496
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44497
|
-
*/
|
|
44498
|
-
data: Array<JsonApiAutomationResultLinkage>;
|
|
44499
|
-
}
|
|
44500
|
-
|
|
44501
|
-
export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
44502
|
-
/**
|
|
44503
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44504
|
-
*/
|
|
44505
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
44506
|
-
}
|
|
44507
|
-
|
|
44508
|
-
export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
44509
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
44510
|
-
}
|
|
44511
|
-
|
|
44512
|
-
export declare interface JsonApiAutomationOutRelationshipsRecipients {
|
|
44513
|
-
/**
|
|
44514
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44515
|
-
*/
|
|
44516
|
-
data: Array<JsonApiUserLinkage>;
|
|
44502
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44503
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
44504
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
44505
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
44506
|
+
automationResults?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
44517
44507
|
}
|
|
44518
44508
|
|
|
44519
44509
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
@@ -44531,8 +44521,8 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
44531
44521
|
* API identifier of an object
|
|
44532
44522
|
*/
|
|
44533
44523
|
id: string;
|
|
44534
|
-
meta?:
|
|
44535
|
-
attributes?:
|
|
44524
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44525
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
44536
44526
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44537
44527
|
links?: ObjectLinks;
|
|
44538
44528
|
}
|
|
@@ -44708,11 +44698,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
44708
44698
|
export declare interface JsonApiColorPaletteOutList {
|
|
44709
44699
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
44710
44700
|
links?: ListLinks;
|
|
44711
|
-
meta?:
|
|
44712
|
-
}
|
|
44713
|
-
|
|
44714
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
44715
|
-
page?: PageMetadata;
|
|
44701
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44716
44702
|
}
|
|
44717
44703
|
|
|
44718
44704
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -44785,15 +44771,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
44785
44771
|
* API identifier of an object
|
|
44786
44772
|
*/
|
|
44787
44773
|
id: string;
|
|
44788
|
-
attributes?:
|
|
44789
|
-
}
|
|
44790
|
-
|
|
44791
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
44792
|
-
lastRotation?: string;
|
|
44793
|
-
/**
|
|
44794
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
44795
|
-
*/
|
|
44796
|
-
rotationInterval?: string;
|
|
44774
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
44797
44775
|
}
|
|
44798
44776
|
|
|
44799
44777
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -44818,7 +44796,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
44818
44796
|
* API identifier of an object
|
|
44819
44797
|
*/
|
|
44820
44798
|
id: string;
|
|
44821
|
-
attributes?:
|
|
44799
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
44800
|
+
}
|
|
44801
|
+
|
|
44802
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
44803
|
+
lastRotation?: string;
|
|
44804
|
+
/**
|
|
44805
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
44806
|
+
*/
|
|
44807
|
+
rotationInterval?: string;
|
|
44822
44808
|
}
|
|
44823
44809
|
|
|
44824
44810
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -44844,7 +44830,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
44844
44830
|
* API identifier of an object
|
|
44845
44831
|
*/
|
|
44846
44832
|
id: string;
|
|
44847
|
-
attributes?:
|
|
44833
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
44848
44834
|
}
|
|
44849
44835
|
|
|
44850
44836
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -44912,7 +44898,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
44912
44898
|
export declare interface JsonApiCspDirectiveOutList {
|
|
44913
44899
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
44914
44900
|
links?: ListLinks;
|
|
44915
|
-
meta?:
|
|
44901
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
44916
44902
|
}
|
|
44917
44903
|
|
|
44918
44904
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -44981,7 +44967,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
44981
44967
|
* API identifier of an object
|
|
44982
44968
|
*/
|
|
44983
44969
|
id: string;
|
|
44984
|
-
attributes:
|
|
44970
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
44985
44971
|
}
|
|
44986
44972
|
|
|
44987
44973
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -45006,16 +44992,8 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
45006
44992
|
* API identifier of an object
|
|
45007
44993
|
*/
|
|
45008
44994
|
id: string;
|
|
45009
|
-
meta?:
|
|
45010
|
-
attributes:
|
|
45011
|
-
}
|
|
45012
|
-
|
|
45013
|
-
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
45014
|
-
applicationName: string;
|
|
45015
|
-
/**
|
|
45016
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45017
|
-
*/
|
|
45018
|
-
content: object;
|
|
44995
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
44996
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
45019
44997
|
}
|
|
45020
44998
|
|
|
45021
44999
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -45029,7 +45007,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
45029
45007
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
45030
45008
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
45031
45009
|
links?: ListLinks;
|
|
45032
|
-
meta?:
|
|
45010
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45033
45011
|
}
|
|
45034
45012
|
|
|
45035
45013
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -45047,8 +45025,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
45047
45025
|
* API identifier of an object
|
|
45048
45026
|
*/
|
|
45049
45027
|
id: string;
|
|
45050
|
-
meta?:
|
|
45051
|
-
attributes:
|
|
45028
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45029
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
45052
45030
|
links?: ObjectLinks;
|
|
45053
45031
|
}
|
|
45054
45032
|
|
|
@@ -45103,7 +45081,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
45103
45081
|
* API identifier of an object
|
|
45104
45082
|
*/
|
|
45105
45083
|
id?: string;
|
|
45106
|
-
attributes:
|
|
45084
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
45085
|
+
}
|
|
45086
|
+
|
|
45087
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
45088
|
+
applicationName: string;
|
|
45089
|
+
/**
|
|
45090
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45091
|
+
*/
|
|
45092
|
+
content: object;
|
|
45107
45093
|
}
|
|
45108
45094
|
|
|
45109
45095
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -45128,18 +45114,7 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
45128
45114
|
* API identifier of an object
|
|
45129
45115
|
*/
|
|
45130
45116
|
id: string;
|
|
45131
|
-
attributes?:
|
|
45132
|
-
}
|
|
45133
|
-
|
|
45134
|
-
export declare interface JsonApiDashboardPluginInAttributes {
|
|
45135
|
-
title?: string;
|
|
45136
|
-
description?: string;
|
|
45137
|
-
tags?: Array<string>;
|
|
45138
|
-
areRelationsValid?: boolean;
|
|
45139
|
-
/**
|
|
45140
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45141
|
-
*/
|
|
45142
|
-
content?: object;
|
|
45117
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
45143
45118
|
}
|
|
45144
45119
|
|
|
45145
45120
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -45178,7 +45153,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
45178
45153
|
* API identifier of an object
|
|
45179
45154
|
*/
|
|
45180
45155
|
id: string;
|
|
45181
|
-
meta?:
|
|
45156
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45182
45157
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45183
45158
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45184
45159
|
}
|
|
@@ -45211,7 +45186,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
45211
45186
|
export declare interface JsonApiDashboardPluginOutList {
|
|
45212
45187
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
45213
45188
|
links?: ListLinks;
|
|
45214
|
-
meta?:
|
|
45189
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45215
45190
|
/**
|
|
45216
45191
|
* Included resources
|
|
45217
45192
|
*/
|
|
@@ -45219,8 +45194,8 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
45219
45194
|
}
|
|
45220
45195
|
|
|
45221
45196
|
export declare interface JsonApiDashboardPluginOutRelationships {
|
|
45222
|
-
createdBy?:
|
|
45223
|
-
modifiedBy?:
|
|
45197
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
45198
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
45224
45199
|
}
|
|
45225
45200
|
|
|
45226
45201
|
export declare const JsonApiDashboardPluginOutTypeEnum: {
|
|
@@ -45238,7 +45213,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
45238
45213
|
* API identifier of an object
|
|
45239
45214
|
*/
|
|
45240
45215
|
id: string;
|
|
45241
|
-
meta?:
|
|
45216
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45242
45217
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45243
45218
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45244
45219
|
links?: ObjectLinks;
|
|
@@ -45262,7 +45237,7 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
45262
45237
|
* API identifier of an object
|
|
45263
45238
|
*/
|
|
45264
45239
|
id: string;
|
|
45265
|
-
attributes?:
|
|
45240
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
45266
45241
|
}
|
|
45267
45242
|
|
|
45268
45243
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -45287,7 +45262,18 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
45287
45262
|
* API identifier of an object
|
|
45288
45263
|
*/
|
|
45289
45264
|
id?: string;
|
|
45290
|
-
attributes?:
|
|
45265
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
45266
|
+
}
|
|
45267
|
+
|
|
45268
|
+
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
45269
|
+
title?: string;
|
|
45270
|
+
description?: string;
|
|
45271
|
+
tags?: Array<string>;
|
|
45272
|
+
areRelationsValid?: boolean;
|
|
45273
|
+
/**
|
|
45274
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45275
|
+
*/
|
|
45276
|
+
content?: object;
|
|
45291
45277
|
}
|
|
45292
45278
|
|
|
45293
45279
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -45326,7 +45312,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
45326
45312
|
* API identifier of an object
|
|
45327
45313
|
*/
|
|
45328
45314
|
id: string;
|
|
45329
|
-
meta?:
|
|
45315
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45330
45316
|
attributes: JsonApiDatasetOutAttributes;
|
|
45331
45317
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45332
45318
|
}
|
|
@@ -45452,40 +45438,18 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
45452
45438
|
export declare interface JsonApiDatasetOutList {
|
|
45453
45439
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
45454
45440
|
links?: ListLinks;
|
|
45455
|
-
meta?:
|
|
45441
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45456
45442
|
/**
|
|
45457
45443
|
* Included resources
|
|
45458
45444
|
*/
|
|
45459
45445
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
45460
45446
|
}
|
|
45461
45447
|
|
|
45462
|
-
export declare interface JsonApiDatasetOutMeta {
|
|
45463
|
-
origin?: JsonApiDatasetOutMetaOrigin;
|
|
45464
|
-
}
|
|
45465
|
-
|
|
45466
|
-
export declare interface JsonApiDatasetOutMetaOrigin {
|
|
45467
|
-
/**
|
|
45468
|
-
* defines type of the origin of the entity
|
|
45469
|
-
*/
|
|
45470
|
-
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
45471
|
-
/**
|
|
45472
|
-
* defines id of the workspace where the entity comes from
|
|
45473
|
-
*/
|
|
45474
|
-
originId: string;
|
|
45475
|
-
}
|
|
45476
|
-
|
|
45477
|
-
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
45478
|
-
readonly NATIVE: "NATIVE";
|
|
45479
|
-
readonly PARENT: "PARENT";
|
|
45480
|
-
};
|
|
45481
|
-
|
|
45482
|
-
export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
45483
|
-
|
|
45484
45448
|
export declare interface JsonApiDatasetOutRelationships {
|
|
45485
|
-
attributes?:
|
|
45486
|
-
facts?:
|
|
45449
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
45450
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
45487
45451
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
45488
|
-
references?:
|
|
45452
|
+
references?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
45489
45453
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
45490
45454
|
}
|
|
45491
45455
|
|
|
@@ -45496,27 +45460,6 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
45496
45460
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
45497
45461
|
}
|
|
45498
45462
|
|
|
45499
|
-
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
45500
|
-
/**
|
|
45501
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45502
|
-
*/
|
|
45503
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
45504
|
-
}
|
|
45505
|
-
|
|
45506
|
-
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
45507
|
-
/**
|
|
45508
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45509
|
-
*/
|
|
45510
|
-
data: Array<JsonApiFactLinkage>;
|
|
45511
|
-
}
|
|
45512
|
-
|
|
45513
|
-
export declare interface JsonApiDatasetOutRelationshipsReferences {
|
|
45514
|
-
/**
|
|
45515
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45516
|
-
*/
|
|
45517
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
45518
|
-
}
|
|
45519
|
-
|
|
45520
45463
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
45521
45464
|
/**
|
|
45522
45465
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -45539,7 +45482,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
45539
45482
|
* API identifier of an object
|
|
45540
45483
|
*/
|
|
45541
45484
|
id: string;
|
|
45542
|
-
meta?:
|
|
45485
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
45543
45486
|
attributes: JsonApiDatasetOutAttributes;
|
|
45544
45487
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45545
45488
|
links?: ObjectLinks;
|
|
@@ -45615,7 +45558,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
45615
45558
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
45616
45559
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
45617
45560
|
links?: ListLinks;
|
|
45618
|
-
meta?:
|
|
45561
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45619
45562
|
}
|
|
45620
45563
|
|
|
45621
45564
|
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
@@ -45899,7 +45842,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
45899
45842
|
export declare interface JsonApiDataSourceOutList {
|
|
45900
45843
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
45901
45844
|
links?: ListLinks;
|
|
45902
|
-
meta?:
|
|
45845
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45903
45846
|
}
|
|
45904
45847
|
|
|
45905
45848
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -46077,7 +46020,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
46077
46020
|
export declare interface JsonApiEntitlementOutList {
|
|
46078
46021
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
46079
46022
|
links?: ListLinks;
|
|
46080
|
-
meta?:
|
|
46023
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46081
46024
|
}
|
|
46082
46025
|
|
|
46083
46026
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -46117,27 +46060,14 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
46117
46060
|
* API identifier of an object
|
|
46118
46061
|
*/
|
|
46119
46062
|
id: string;
|
|
46120
|
-
attributes?:
|
|
46121
|
-
relationships?:
|
|
46122
|
-
}
|
|
46123
|
-
|
|
46124
|
-
export declare interface JsonApiExportDefinitionInAttributes {
|
|
46125
|
-
title?: string;
|
|
46126
|
-
description?: string;
|
|
46127
|
-
tags?: Array<string>;
|
|
46128
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
46129
|
-
areRelationsValid?: boolean;
|
|
46063
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
46064
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
46130
46065
|
}
|
|
46131
46066
|
|
|
46132
46067
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
46133
46068
|
data: JsonApiExportDefinitionIn;
|
|
46134
46069
|
}
|
|
46135
46070
|
|
|
46136
|
-
export declare interface JsonApiExportDefinitionInRelationships {
|
|
46137
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46138
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46139
|
-
}
|
|
46140
|
-
|
|
46141
46071
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
46142
46072
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46143
46073
|
};
|
|
@@ -46170,7 +46100,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
46170
46100
|
* API identifier of an object
|
|
46171
46101
|
*/
|
|
46172
46102
|
id: string;
|
|
46173
|
-
meta?:
|
|
46103
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46174
46104
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46175
46105
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46176
46106
|
}
|
|
@@ -46211,19 +46141,23 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
46211
46141
|
export declare interface JsonApiExportDefinitionOutList {
|
|
46212
46142
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
46213
46143
|
links?: ListLinks;
|
|
46214
|
-
meta?:
|
|
46144
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46215
46145
|
/**
|
|
46216
46146
|
* Included resources
|
|
46217
46147
|
*/
|
|
46218
46148
|
included?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
46219
46149
|
}
|
|
46220
46150
|
|
|
46151
|
+
export declare interface JsonApiExportDefinitionOutMeta {
|
|
46152
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
46153
|
+
}
|
|
46154
|
+
|
|
46221
46155
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
46222
46156
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46223
46157
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46224
46158
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
46225
|
-
createdBy?:
|
|
46226
|
-
modifiedBy?:
|
|
46159
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
46160
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
46227
46161
|
}
|
|
46228
46162
|
|
|
46229
46163
|
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
@@ -46253,7 +46187,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
46253
46187
|
* API identifier of an object
|
|
46254
46188
|
*/
|
|
46255
46189
|
id: string;
|
|
46256
|
-
meta?:
|
|
46190
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46257
46191
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46258
46192
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46259
46193
|
links?: ObjectLinks;
|
|
@@ -46277,8 +46211,8 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
46277
46211
|
* API identifier of an object
|
|
46278
46212
|
*/
|
|
46279
46213
|
id: string;
|
|
46280
|
-
attributes?:
|
|
46281
|
-
relationships?:
|
|
46214
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
46215
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
46282
46216
|
}
|
|
46283
46217
|
|
|
46284
46218
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
@@ -46303,14 +46237,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
46303
46237
|
* API identifier of an object
|
|
46304
46238
|
*/
|
|
46305
46239
|
id?: string;
|
|
46306
|
-
attributes?:
|
|
46307
|
-
relationships?:
|
|
46240
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
46241
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
46242
|
+
}
|
|
46243
|
+
|
|
46244
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
46245
|
+
title?: string;
|
|
46246
|
+
description?: string;
|
|
46247
|
+
tags?: Array<string>;
|
|
46248
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
46249
|
+
areRelationsValid?: boolean;
|
|
46308
46250
|
}
|
|
46309
46251
|
|
|
46310
46252
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
46311
46253
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
46312
46254
|
}
|
|
46313
46255
|
|
|
46256
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
46257
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46258
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46259
|
+
}
|
|
46260
|
+
|
|
46314
46261
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
46315
46262
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46316
46263
|
};
|
|
@@ -46416,7 +46363,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
46416
46363
|
export declare interface JsonApiExportTemplateOutList {
|
|
46417
46364
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
46418
46365
|
links?: ListLinks;
|
|
46419
|
-
meta?:
|
|
46366
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46420
46367
|
}
|
|
46421
46368
|
|
|
46422
46369
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -46529,7 +46476,7 @@ export declare interface JsonApiFactOut {
|
|
|
46529
46476
|
* API identifier of an object
|
|
46530
46477
|
*/
|
|
46531
46478
|
id: string;
|
|
46532
|
-
meta?:
|
|
46479
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46533
46480
|
attributes?: JsonApiFactOutAttributes;
|
|
46534
46481
|
relationships?: JsonApiFactOutRelationships;
|
|
46535
46482
|
}
|
|
@@ -46570,7 +46517,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
46570
46517
|
export declare interface JsonApiFactOutList {
|
|
46571
46518
|
data: Array<JsonApiFactOutWithLinks>;
|
|
46572
46519
|
links?: ListLinks;
|
|
46573
|
-
meta?:
|
|
46520
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46574
46521
|
/**
|
|
46575
46522
|
* Included resources
|
|
46576
46523
|
*/
|
|
@@ -46578,11 +46525,7 @@ export declare interface JsonApiFactOutList {
|
|
|
46578
46525
|
}
|
|
46579
46526
|
|
|
46580
46527
|
export declare interface JsonApiFactOutRelationships {
|
|
46581
|
-
dataset?:
|
|
46582
|
-
}
|
|
46583
|
-
|
|
46584
|
-
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
46585
|
-
data: JsonApiDatasetLinkage | null;
|
|
46528
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
46586
46529
|
}
|
|
46587
46530
|
|
|
46588
46531
|
export declare const JsonApiFactOutTypeEnum: {
|
|
@@ -46600,7 +46543,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
46600
46543
|
* API identifier of an object
|
|
46601
46544
|
*/
|
|
46602
46545
|
id: string;
|
|
46603
|
-
meta?:
|
|
46546
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46604
46547
|
attributes?: JsonApiFactOutAttributes;
|
|
46605
46548
|
relationships?: JsonApiFactOutRelationships;
|
|
46606
46549
|
links?: ObjectLinks;
|
|
@@ -46624,7 +46567,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
46624
46567
|
* API identifier of an object
|
|
46625
46568
|
*/
|
|
46626
46569
|
id: string;
|
|
46627
|
-
attributes:
|
|
46570
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
46628
46571
|
}
|
|
46629
46572
|
|
|
46630
46573
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -46663,22 +46606,11 @@ export declare interface JsonApiFilterContextOut {
|
|
|
46663
46606
|
* API identifier of an object
|
|
46664
46607
|
*/
|
|
46665
46608
|
id: string;
|
|
46666
|
-
meta?:
|
|
46667
|
-
attributes:
|
|
46609
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46610
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
46668
46611
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46669
46612
|
}
|
|
46670
46613
|
|
|
46671
|
-
export declare interface JsonApiFilterContextOutAttributes {
|
|
46672
|
-
title?: string;
|
|
46673
|
-
description?: string;
|
|
46674
|
-
tags?: Array<string>;
|
|
46675
|
-
areRelationsValid?: boolean;
|
|
46676
|
-
/**
|
|
46677
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46678
|
-
*/
|
|
46679
|
-
content: object;
|
|
46680
|
-
}
|
|
46681
|
-
|
|
46682
46614
|
export declare interface JsonApiFilterContextOutDocument {
|
|
46683
46615
|
data: JsonApiFilterContextOut;
|
|
46684
46616
|
links?: ObjectLinks;
|
|
@@ -46699,7 +46631,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
46699
46631
|
export declare interface JsonApiFilterContextOutList {
|
|
46700
46632
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
46701
46633
|
links?: ListLinks;
|
|
46702
|
-
meta?:
|
|
46634
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46703
46635
|
/**
|
|
46704
46636
|
* Included resources
|
|
46705
46637
|
*/
|
|
@@ -46707,9 +46639,9 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
46707
46639
|
}
|
|
46708
46640
|
|
|
46709
46641
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
46710
|
-
attributes?:
|
|
46711
|
-
datasets?:
|
|
46712
|
-
labels?:
|
|
46642
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
46643
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
46644
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
46713
46645
|
}
|
|
46714
46646
|
|
|
46715
46647
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
@@ -46727,8 +46659,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
46727
46659
|
* API identifier of an object
|
|
46728
46660
|
*/
|
|
46729
46661
|
id: string;
|
|
46730
|
-
meta?:
|
|
46731
|
-
attributes:
|
|
46662
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
46663
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
46732
46664
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46733
46665
|
links?: ObjectLinks;
|
|
46734
46666
|
}
|
|
@@ -46776,7 +46708,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
46776
46708
|
* API identifier of an object
|
|
46777
46709
|
*/
|
|
46778
46710
|
id?: string;
|
|
46779
|
-
attributes:
|
|
46711
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
46780
46712
|
}
|
|
46781
46713
|
|
|
46782
46714
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -46801,14 +46733,34 @@ export declare interface JsonApiFilterViewIn {
|
|
|
46801
46733
|
* API identifier of an object
|
|
46802
46734
|
*/
|
|
46803
46735
|
id: string;
|
|
46804
|
-
attributes:
|
|
46805
|
-
relationships?:
|
|
46736
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
46737
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
46738
|
+
}
|
|
46739
|
+
|
|
46740
|
+
export declare interface JsonApiFilterViewInAttributes {
|
|
46741
|
+
title: string;
|
|
46742
|
+
description?: string;
|
|
46743
|
+
tags?: Array<string>;
|
|
46744
|
+
areRelationsValid?: boolean;
|
|
46745
|
+
/**
|
|
46746
|
+
* Indicator whether the filter view should by applied by default.
|
|
46747
|
+
*/
|
|
46748
|
+
isDefault?: boolean;
|
|
46749
|
+
/**
|
|
46750
|
+
* The respective filter context.
|
|
46751
|
+
*/
|
|
46752
|
+
content: object;
|
|
46806
46753
|
}
|
|
46807
46754
|
|
|
46808
46755
|
export declare interface JsonApiFilterViewInDocument {
|
|
46809
46756
|
data: JsonApiFilterViewIn;
|
|
46810
46757
|
}
|
|
46811
46758
|
|
|
46759
|
+
export declare interface JsonApiFilterViewInRelationships {
|
|
46760
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46761
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
46762
|
+
}
|
|
46763
|
+
|
|
46812
46764
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
46813
46765
|
readonly FILTER_VIEW: "filterView";
|
|
46814
46766
|
};
|
|
@@ -46827,23 +46779,8 @@ export declare interface JsonApiFilterViewOut {
|
|
|
46827
46779
|
* API identifier of an object
|
|
46828
46780
|
*/
|
|
46829
46781
|
id: string;
|
|
46830
|
-
attributes:
|
|
46831
|
-
relationships?:
|
|
46832
|
-
}
|
|
46833
|
-
|
|
46834
|
-
export declare interface JsonApiFilterViewOutAttributes {
|
|
46835
|
-
title: string;
|
|
46836
|
-
description?: string;
|
|
46837
|
-
tags?: Array<string>;
|
|
46838
|
-
areRelationsValid?: boolean;
|
|
46839
|
-
/**
|
|
46840
|
-
* Indicator whether the filter view should by applied by default.
|
|
46841
|
-
*/
|
|
46842
|
-
isDefault?: boolean;
|
|
46843
|
-
/**
|
|
46844
|
-
* The respective filter context.
|
|
46845
|
-
*/
|
|
46846
|
-
content: object;
|
|
46782
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
46783
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
46847
46784
|
}
|
|
46848
46785
|
|
|
46849
46786
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -46866,22 +46803,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
46866
46803
|
export declare interface JsonApiFilterViewOutList {
|
|
46867
46804
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
46868
46805
|
links?: ListLinks;
|
|
46869
|
-
meta?:
|
|
46806
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46870
46807
|
/**
|
|
46871
46808
|
* Included resources
|
|
46872
46809
|
*/
|
|
46873
46810
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
46874
46811
|
}
|
|
46875
46812
|
|
|
46876
|
-
export declare interface JsonApiFilterViewOutRelationships {
|
|
46877
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46878
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
46879
|
-
}
|
|
46880
|
-
|
|
46881
|
-
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
46882
|
-
data: JsonApiUserLinkage | null;
|
|
46883
|
-
}
|
|
46884
|
-
|
|
46885
46813
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
46886
46814
|
readonly FILTER_VIEW: "filterView";
|
|
46887
46815
|
};
|
|
@@ -46897,8 +46825,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
46897
46825
|
* API identifier of an object
|
|
46898
46826
|
*/
|
|
46899
46827
|
id: string;
|
|
46900
|
-
attributes:
|
|
46901
|
-
relationships?:
|
|
46828
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
46829
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
46902
46830
|
links?: ObjectLinks;
|
|
46903
46831
|
}
|
|
46904
46832
|
|
|
@@ -46921,7 +46849,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
46921
46849
|
*/
|
|
46922
46850
|
id: string;
|
|
46923
46851
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
46924
|
-
relationships?:
|
|
46852
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
46925
46853
|
}
|
|
46926
46854
|
|
|
46927
46855
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -46966,69 +46894,9 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
46966
46894
|
* API identifier of an object
|
|
46967
46895
|
*/
|
|
46968
46896
|
id: string;
|
|
46969
|
-
attributes?:
|
|
46970
|
-
}
|
|
46971
|
-
|
|
46972
|
-
export declare interface JsonApiIdentityProviderInAttributes {
|
|
46973
|
-
/**
|
|
46974
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
46975
|
-
*/
|
|
46976
|
-
identifiers?: Array<string>;
|
|
46977
|
-
/**
|
|
46978
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
46979
|
-
*/
|
|
46980
|
-
customClaimMapping?: {
|
|
46981
|
-
[key: string]: string;
|
|
46982
|
-
};
|
|
46983
|
-
/**
|
|
46984
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
46985
|
-
*/
|
|
46986
|
-
samlMetadata?: string;
|
|
46987
|
-
/**
|
|
46988
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46989
|
-
*/
|
|
46990
|
-
oauthClientId?: string;
|
|
46991
|
-
/**
|
|
46992
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46993
|
-
*/
|
|
46994
|
-
oauthClientSecret?: string;
|
|
46995
|
-
/**
|
|
46996
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
46997
|
-
*/
|
|
46998
|
-
oauthIssuerLocation?: string;
|
|
46999
|
-
/**
|
|
47000
|
-
* 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.
|
|
47001
|
-
*/
|
|
47002
|
-
oauthIssuerId?: string;
|
|
47003
|
-
/**
|
|
47004
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47005
|
-
*/
|
|
47006
|
-
oauthSubjectIdClaim?: string;
|
|
47007
|
-
/**
|
|
47008
|
-
* 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.
|
|
47009
|
-
*/
|
|
47010
|
-
oauthCustomAuthAttributes?: {
|
|
47011
|
-
[key: string]: string;
|
|
47012
|
-
};
|
|
47013
|
-
/**
|
|
47014
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47015
|
-
*/
|
|
47016
|
-
oauthCustomScopes?: Array<string> | null;
|
|
47017
|
-
/**
|
|
47018
|
-
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
47019
|
-
*/
|
|
47020
|
-
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
46897
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
47021
46898
|
}
|
|
47022
46899
|
|
|
47023
|
-
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
47024
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47025
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
47026
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
47027
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47028
|
-
};
|
|
47029
|
-
|
|
47030
|
-
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
47031
|
-
|
|
47032
46900
|
export declare interface JsonApiIdentityProviderInDocument {
|
|
47033
46901
|
data: JsonApiIdentityProviderIn;
|
|
47034
46902
|
}
|
|
@@ -47131,7 +46999,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
47131
46999
|
export declare interface JsonApiIdentityProviderOutList {
|
|
47132
47000
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
47133
47001
|
links?: ListLinks;
|
|
47134
|
-
meta?:
|
|
47002
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47135
47003
|
}
|
|
47136
47004
|
|
|
47137
47005
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -47171,9 +47039,69 @@ export declare interface JsonApiIdentityProviderPatch {
|
|
|
47171
47039
|
* API identifier of an object
|
|
47172
47040
|
*/
|
|
47173
47041
|
id: string;
|
|
47174
|
-
attributes?:
|
|
47042
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
47043
|
+
}
|
|
47044
|
+
|
|
47045
|
+
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
47046
|
+
/**
|
|
47047
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
47048
|
+
*/
|
|
47049
|
+
identifiers?: Array<string>;
|
|
47050
|
+
/**
|
|
47051
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
47052
|
+
*/
|
|
47053
|
+
customClaimMapping?: {
|
|
47054
|
+
[key: string]: string;
|
|
47055
|
+
};
|
|
47056
|
+
/**
|
|
47057
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
47058
|
+
*/
|
|
47059
|
+
samlMetadata?: string;
|
|
47060
|
+
/**
|
|
47061
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47062
|
+
*/
|
|
47063
|
+
oauthClientId?: string;
|
|
47064
|
+
/**
|
|
47065
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47066
|
+
*/
|
|
47067
|
+
oauthClientSecret?: string;
|
|
47068
|
+
/**
|
|
47069
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47070
|
+
*/
|
|
47071
|
+
oauthIssuerLocation?: string;
|
|
47072
|
+
/**
|
|
47073
|
+
* 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.
|
|
47074
|
+
*/
|
|
47075
|
+
oauthIssuerId?: string;
|
|
47076
|
+
/**
|
|
47077
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47078
|
+
*/
|
|
47079
|
+
oauthSubjectIdClaim?: string;
|
|
47080
|
+
/**
|
|
47081
|
+
* 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.
|
|
47082
|
+
*/
|
|
47083
|
+
oauthCustomAuthAttributes?: {
|
|
47084
|
+
[key: string]: string;
|
|
47085
|
+
};
|
|
47086
|
+
/**
|
|
47087
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47088
|
+
*/
|
|
47089
|
+
oauthCustomScopes?: Array<string> | null;
|
|
47090
|
+
/**
|
|
47091
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
47092
|
+
*/
|
|
47093
|
+
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
47175
47094
|
}
|
|
47176
47095
|
|
|
47096
|
+
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
47097
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47098
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
47099
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
47100
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47101
|
+
};
|
|
47102
|
+
|
|
47103
|
+
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
47104
|
+
|
|
47177
47105
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
47178
47106
|
data: JsonApiIdentityProviderPatch;
|
|
47179
47107
|
}
|
|
@@ -47239,7 +47167,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
47239
47167
|
export declare interface JsonApiJwkOutList {
|
|
47240
47168
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
47241
47169
|
links?: ListLinks;
|
|
47242
|
-
meta?:
|
|
47170
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47243
47171
|
}
|
|
47244
47172
|
|
|
47245
47173
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -47318,7 +47246,7 @@ export declare interface JsonApiLabelOut {
|
|
|
47318
47246
|
* API identifier of an object
|
|
47319
47247
|
*/
|
|
47320
47248
|
id: string;
|
|
47321
|
-
meta?:
|
|
47249
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47322
47250
|
attributes?: JsonApiLabelOutAttributes;
|
|
47323
47251
|
relationships?: JsonApiLabelOutRelationships;
|
|
47324
47252
|
}
|
|
@@ -47372,7 +47300,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
47372
47300
|
export declare interface JsonApiLabelOutList {
|
|
47373
47301
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
47374
47302
|
links?: ListLinks;
|
|
47375
|
-
meta?:
|
|
47303
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47376
47304
|
/**
|
|
47377
47305
|
* Included resources
|
|
47378
47306
|
*/
|
|
@@ -47402,7 +47330,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
47402
47330
|
* API identifier of an object
|
|
47403
47331
|
*/
|
|
47404
47332
|
id: string;
|
|
47405
|
-
meta?:
|
|
47333
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47406
47334
|
attributes?: JsonApiLabelOutAttributes;
|
|
47407
47335
|
relationships?: JsonApiLabelOutRelationships;
|
|
47408
47336
|
links?: ObjectLinks;
|
|
@@ -47529,7 +47457,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
47529
47457
|
export declare interface JsonApiLlmEndpointOutList {
|
|
47530
47458
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
47531
47459
|
links?: ListLinks;
|
|
47532
|
-
meta?:
|
|
47460
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47533
47461
|
}
|
|
47534
47462
|
|
|
47535
47463
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -47628,15 +47556,7 @@ export declare interface JsonApiMetricIn {
|
|
|
47628
47556
|
* API identifier of an object
|
|
47629
47557
|
*/
|
|
47630
47558
|
id: string;
|
|
47631
|
-
attributes:
|
|
47632
|
-
}
|
|
47633
|
-
|
|
47634
|
-
export declare interface JsonApiMetricInAttributes {
|
|
47635
|
-
title?: string;
|
|
47636
|
-
description?: string;
|
|
47637
|
-
tags?: Array<string>;
|
|
47638
|
-
areRelationsValid?: boolean;
|
|
47639
|
-
content: JsonApiMetricOutAttributesContent;
|
|
47559
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
47640
47560
|
}
|
|
47641
47561
|
|
|
47642
47562
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -47675,7 +47595,7 @@ export declare interface JsonApiMetricOut {
|
|
|
47675
47595
|
* API identifier of an object
|
|
47676
47596
|
*/
|
|
47677
47597
|
id: string;
|
|
47678
|
-
meta?:
|
|
47598
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47679
47599
|
attributes: JsonApiMetricOutAttributes;
|
|
47680
47600
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47681
47601
|
}
|
|
@@ -47715,7 +47635,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
47715
47635
|
export declare interface JsonApiMetricOutList {
|
|
47716
47636
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
47717
47637
|
links?: ListLinks;
|
|
47718
|
-
meta?:
|
|
47638
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47719
47639
|
/**
|
|
47720
47640
|
* Included resources
|
|
47721
47641
|
*/
|
|
@@ -47737,7 +47657,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
47737
47657
|
* API identifier of an object
|
|
47738
47658
|
*/
|
|
47739
47659
|
id: string;
|
|
47740
|
-
meta?:
|
|
47660
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
47741
47661
|
attributes: JsonApiMetricOutAttributes;
|
|
47742
47662
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47743
47663
|
links?: ObjectLinks;
|
|
@@ -47794,7 +47714,15 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
47794
47714
|
* API identifier of an object
|
|
47795
47715
|
*/
|
|
47796
47716
|
id?: string;
|
|
47797
|
-
attributes:
|
|
47717
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
47718
|
+
}
|
|
47719
|
+
|
|
47720
|
+
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
47721
|
+
title?: string;
|
|
47722
|
+
description?: string;
|
|
47723
|
+
tags?: Array<string>;
|
|
47724
|
+
areRelationsValid?: boolean;
|
|
47725
|
+
content: JsonApiMetricOutAttributesContent;
|
|
47798
47726
|
}
|
|
47799
47727
|
|
|
47800
47728
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -47860,7 +47788,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
47860
47788
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
47861
47789
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
47862
47790
|
links?: ListLinks;
|
|
47863
|
-
meta?:
|
|
47791
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47864
47792
|
}
|
|
47865
47793
|
|
|
47866
47794
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -47900,7 +47828,7 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
47900
47828
|
* API identifier of an object
|
|
47901
47829
|
*/
|
|
47902
47830
|
id: string;
|
|
47903
|
-
attributes?:
|
|
47831
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
47904
47832
|
}
|
|
47905
47833
|
|
|
47906
47834
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
@@ -48018,7 +47946,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
48018
47946
|
export declare interface JsonApiNotificationChannelOutList {
|
|
48019
47947
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
48020
47948
|
links?: ListLinks;
|
|
48021
|
-
meta?:
|
|
47949
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48022
47950
|
}
|
|
48023
47951
|
|
|
48024
47952
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -48058,35 +47986,10 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
48058
47986
|
* API identifier of an object
|
|
48059
47987
|
*/
|
|
48060
47988
|
id: string;
|
|
48061
|
-
attributes?:
|
|
48062
|
-
}
|
|
48063
|
-
|
|
48064
|
-
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48065
|
-
data: JsonApiNotificationChannelPatch;
|
|
48066
|
-
}
|
|
48067
|
-
|
|
48068
|
-
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48069
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48070
|
-
};
|
|
48071
|
-
|
|
48072
|
-
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48073
|
-
|
|
48074
|
-
/**
|
|
48075
|
-
* JSON:API representation of notificationChannel entity.
|
|
48076
|
-
*/
|
|
48077
|
-
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48078
|
-
/**
|
|
48079
|
-
* Object type
|
|
48080
|
-
*/
|
|
48081
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48082
|
-
/**
|
|
48083
|
-
* API identifier of an object
|
|
48084
|
-
*/
|
|
48085
|
-
id?: string;
|
|
48086
|
-
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
47989
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
48087
47990
|
}
|
|
48088
47991
|
|
|
48089
|
-
export declare interface
|
|
47992
|
+
export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
48090
47993
|
name?: string | null;
|
|
48091
47994
|
description?: string | null;
|
|
48092
47995
|
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
@@ -48097,7 +48000,7 @@ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
|
48097
48000
|
/**
|
|
48098
48001
|
* 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
|
|
48099
48002
|
*/
|
|
48100
|
-
dashboardLinkVisibility?:
|
|
48003
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
48101
48004
|
/**
|
|
48102
48005
|
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
48103
48006
|
*/
|
|
@@ -48105,35 +48008,60 @@ export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
|
48105
48008
|
/**
|
|
48106
48009
|
* 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
|
|
48107
48010
|
*/
|
|
48108
|
-
allowedRecipients?:
|
|
48011
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
48109
48012
|
/**
|
|
48110
48013
|
* 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
|
|
48111
48014
|
*/
|
|
48112
|
-
inPlatformNotification?:
|
|
48015
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
48113
48016
|
}
|
|
48114
48017
|
|
|
48115
|
-
export declare const
|
|
48018
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
48116
48019
|
readonly CREATOR: "CREATOR";
|
|
48117
48020
|
readonly INTERNAL: "INTERNAL";
|
|
48118
48021
|
readonly EXTERNAL: "EXTERNAL";
|
|
48119
48022
|
};
|
|
48120
48023
|
|
|
48121
|
-
export declare type
|
|
48024
|
+
export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
48122
48025
|
|
|
48123
|
-
export declare const
|
|
48026
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
48124
48027
|
readonly HIDDEN: "HIDDEN";
|
|
48125
48028
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
48126
48029
|
readonly ALL: "ALL";
|
|
48127
48030
|
};
|
|
48128
48031
|
|
|
48129
|
-
export declare type
|
|
48032
|
+
export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
48130
48033
|
|
|
48131
|
-
export declare const
|
|
48034
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
48132
48035
|
readonly DISABLED: "DISABLED";
|
|
48133
48036
|
readonly ENABLED: "ENABLED";
|
|
48134
48037
|
};
|
|
48135
48038
|
|
|
48136
|
-
export declare type
|
|
48039
|
+
export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
48040
|
+
|
|
48041
|
+
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48042
|
+
data: JsonApiNotificationChannelPatch;
|
|
48043
|
+
}
|
|
48044
|
+
|
|
48045
|
+
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48046
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48047
|
+
};
|
|
48048
|
+
|
|
48049
|
+
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48050
|
+
|
|
48051
|
+
/**
|
|
48052
|
+
* JSON:API representation of notificationChannel entity.
|
|
48053
|
+
*/
|
|
48054
|
+
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48055
|
+
/**
|
|
48056
|
+
* Object type
|
|
48057
|
+
*/
|
|
48058
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48059
|
+
/**
|
|
48060
|
+
* API identifier of an object
|
|
48061
|
+
*/
|
|
48062
|
+
id?: string;
|
|
48063
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
48064
|
+
}
|
|
48137
48065
|
|
|
48138
48066
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
48139
48067
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
@@ -48157,58 +48085,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
48157
48085
|
* API identifier of an object
|
|
48158
48086
|
*/
|
|
48159
48087
|
id: string;
|
|
48160
|
-
attributes?:
|
|
48161
|
-
relationships?:
|
|
48162
|
-
}
|
|
48163
|
-
|
|
48164
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
48165
|
-
name?: string | null;
|
|
48166
|
-
hostname?: string;
|
|
48167
|
-
allowedOrigins?: Array<string>;
|
|
48168
|
-
oauthIssuerLocation?: string;
|
|
48169
|
-
oauthClientId?: string;
|
|
48170
|
-
oauthClientSecret?: string;
|
|
48171
|
-
/**
|
|
48172
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48173
|
-
* @deprecated
|
|
48174
|
-
*/
|
|
48175
|
-
earlyAccess?: string | null;
|
|
48176
|
-
/**
|
|
48177
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
48178
|
-
*/
|
|
48179
|
-
earlyAccessValues?: Array<string> | null;
|
|
48180
|
-
/**
|
|
48181
|
-
* 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.
|
|
48182
|
-
*/
|
|
48183
|
-
oauthIssuerId?: string;
|
|
48184
|
-
/**
|
|
48185
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48186
|
-
*/
|
|
48187
|
-
oauthSubjectIdClaim?: string;
|
|
48188
|
-
/**
|
|
48189
|
-
* 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.
|
|
48190
|
-
*/
|
|
48191
|
-
oauthCustomAuthAttributes?: {
|
|
48192
|
-
[key: string]: string;
|
|
48193
|
-
};
|
|
48194
|
-
/**
|
|
48195
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48196
|
-
*/
|
|
48197
|
-
oauthCustomScopes?: Array<string> | null;
|
|
48088
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
48089
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
48198
48090
|
}
|
|
48199
48091
|
|
|
48200
48092
|
export declare interface JsonApiOrganizationInDocument {
|
|
48201
48093
|
data: JsonApiOrganizationIn;
|
|
48202
48094
|
}
|
|
48203
48095
|
|
|
48204
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
48205
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
48206
|
-
}
|
|
48207
|
-
|
|
48208
|
-
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
48209
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
48210
|
-
}
|
|
48211
|
-
|
|
48212
48096
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
48213
48097
|
readonly ORGANIZATION: "organization";
|
|
48214
48098
|
};
|
|
@@ -48309,9 +48193,21 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
48309
48193
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
48310
48194
|
|
|
48311
48195
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
48312
|
-
bootstrapUser?:
|
|
48313
|
-
bootstrapUserGroup?:
|
|
48314
|
-
identityProvider?:
|
|
48196
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48197
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48198
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
48199
|
+
}
|
|
48200
|
+
|
|
48201
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
48202
|
+
data: JsonApiUserLinkage | null;
|
|
48203
|
+
}
|
|
48204
|
+
|
|
48205
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
48206
|
+
data: JsonApiUserGroupLinkage | null;
|
|
48207
|
+
}
|
|
48208
|
+
|
|
48209
|
+
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
48210
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
48315
48211
|
}
|
|
48316
48212
|
|
|
48317
48213
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -48332,14 +48228,54 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
48332
48228
|
* API identifier of an object
|
|
48333
48229
|
*/
|
|
48334
48230
|
id: string;
|
|
48335
|
-
attributes?:
|
|
48336
|
-
relationships?:
|
|
48231
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
48232
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
48233
|
+
}
|
|
48234
|
+
|
|
48235
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
48236
|
+
name?: string | null;
|
|
48237
|
+
hostname?: string;
|
|
48238
|
+
allowedOrigins?: Array<string>;
|
|
48239
|
+
oauthIssuerLocation?: string;
|
|
48240
|
+
oauthClientId?: string;
|
|
48241
|
+
oauthClientSecret?: string;
|
|
48242
|
+
/**
|
|
48243
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48244
|
+
* @deprecated
|
|
48245
|
+
*/
|
|
48246
|
+
earlyAccess?: string | null;
|
|
48247
|
+
/**
|
|
48248
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
48249
|
+
*/
|
|
48250
|
+
earlyAccessValues?: Array<string> | null;
|
|
48251
|
+
/**
|
|
48252
|
+
* 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.
|
|
48253
|
+
*/
|
|
48254
|
+
oauthIssuerId?: string;
|
|
48255
|
+
/**
|
|
48256
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48257
|
+
*/
|
|
48258
|
+
oauthSubjectIdClaim?: string;
|
|
48259
|
+
/**
|
|
48260
|
+
* 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.
|
|
48261
|
+
*/
|
|
48262
|
+
oauthCustomAuthAttributes?: {
|
|
48263
|
+
[key: string]: string;
|
|
48264
|
+
};
|
|
48265
|
+
/**
|
|
48266
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48267
|
+
*/
|
|
48268
|
+
oauthCustomScopes?: Array<string> | null;
|
|
48337
48269
|
}
|
|
48338
48270
|
|
|
48339
48271
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
48340
48272
|
data: JsonApiOrganizationPatch;
|
|
48341
48273
|
}
|
|
48342
48274
|
|
|
48275
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
48276
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
48277
|
+
}
|
|
48278
|
+
|
|
48343
48279
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
48344
48280
|
readonly ORGANIZATION: "organization";
|
|
48345
48281
|
};
|
|
@@ -48358,7 +48294,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
48358
48294
|
* API identifier of an object
|
|
48359
48295
|
*/
|
|
48360
48296
|
id: string;
|
|
48361
|
-
attributes?:
|
|
48297
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
48362
48298
|
}
|
|
48363
48299
|
|
|
48364
48300
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -48383,7 +48319,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
48383
48319
|
* API identifier of an object
|
|
48384
48320
|
*/
|
|
48385
48321
|
id: string;
|
|
48386
|
-
attributes?:
|
|
48322
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
48387
48323
|
}
|
|
48388
48324
|
|
|
48389
48325
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -48397,7 +48333,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
48397
48333
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
48398
48334
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
48399
48335
|
links?: ListLinks;
|
|
48400
|
-
meta?:
|
|
48336
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48401
48337
|
}
|
|
48402
48338
|
|
|
48403
48339
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -48415,7 +48351,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
48415
48351
|
* API identifier of an object
|
|
48416
48352
|
*/
|
|
48417
48353
|
id: string;
|
|
48418
|
-
attributes?:
|
|
48354
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
48419
48355
|
links?: ObjectLinks;
|
|
48420
48356
|
}
|
|
48421
48357
|
|
|
@@ -48437,7 +48373,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
48437
48373
|
* API identifier of an object
|
|
48438
48374
|
*/
|
|
48439
48375
|
id: string;
|
|
48440
|
-
attributes?:
|
|
48376
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
48441
48377
|
}
|
|
48442
48378
|
|
|
48443
48379
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -48501,7 +48437,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
48501
48437
|
export declare interface JsonApiThemeOutList {
|
|
48502
48438
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
48503
48439
|
links?: ListLinks;
|
|
48504
|
-
meta?:
|
|
48440
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48505
48441
|
}
|
|
48506
48442
|
|
|
48507
48443
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -48566,19 +48502,14 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
48566
48502
|
* API identifier of an object
|
|
48567
48503
|
*/
|
|
48568
48504
|
id: string;
|
|
48569
|
-
attributes:
|
|
48570
|
-
relationships?:
|
|
48505
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
48506
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
48571
48507
|
}
|
|
48572
48508
|
|
|
48573
48509
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
48574
48510
|
data: JsonApiUserDataFilterIn;
|
|
48575
48511
|
}
|
|
48576
48512
|
|
|
48577
|
-
export declare interface JsonApiUserDataFilterInRelationships {
|
|
48578
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
48579
|
-
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
48580
|
-
}
|
|
48581
|
-
|
|
48582
48513
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
48583
48514
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
48584
48515
|
};
|
|
@@ -48597,19 +48528,11 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
48597
48528
|
* API identifier of an object
|
|
48598
48529
|
*/
|
|
48599
48530
|
id: string;
|
|
48600
|
-
meta?:
|
|
48601
|
-
attributes:
|
|
48531
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
48532
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
48602
48533
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48603
48534
|
}
|
|
48604
48535
|
|
|
48605
|
-
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
48606
|
-
title?: string;
|
|
48607
|
-
description?: string;
|
|
48608
|
-
tags?: Array<string>;
|
|
48609
|
-
areRelationsValid?: boolean;
|
|
48610
|
-
maql: string;
|
|
48611
|
-
}
|
|
48612
|
-
|
|
48613
48536
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
48614
48537
|
data: JsonApiUserDataFilterOut;
|
|
48615
48538
|
links?: ObjectLinks;
|
|
@@ -48630,7 +48553,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
48630
48553
|
export declare interface JsonApiUserDataFilterOutList {
|
|
48631
48554
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
48632
48555
|
links?: ListLinks;
|
|
48633
|
-
meta?:
|
|
48556
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48634
48557
|
/**
|
|
48635
48558
|
* Included resources
|
|
48636
48559
|
*/
|
|
@@ -48638,17 +48561,13 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
48638
48561
|
}
|
|
48639
48562
|
|
|
48640
48563
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
48641
|
-
user?:
|
|
48642
|
-
userGroup?:
|
|
48643
|
-
facts?:
|
|
48644
|
-
attributes?:
|
|
48645
|
-
labels?:
|
|
48646
|
-
metrics?:
|
|
48647
|
-
datasets?:
|
|
48648
|
-
}
|
|
48649
|
-
|
|
48650
|
-
export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
48651
|
-
data: JsonApiUserGroupLinkage | null;
|
|
48564
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48565
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48566
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
48567
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
48568
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
48569
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
48570
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
48652
48571
|
}
|
|
48653
48572
|
|
|
48654
48573
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -48666,8 +48585,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
48666
48585
|
* API identifier of an object
|
|
48667
48586
|
*/
|
|
48668
48587
|
id: string;
|
|
48669
|
-
meta?:
|
|
48670
|
-
attributes:
|
|
48588
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
48589
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
48671
48590
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48672
48591
|
links?: ObjectLinks;
|
|
48673
48592
|
}
|
|
@@ -48691,7 +48610,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
48691
48610
|
*/
|
|
48692
48611
|
id: string;
|
|
48693
48612
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
48694
|
-
relationships?:
|
|
48613
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
48695
48614
|
}
|
|
48696
48615
|
|
|
48697
48616
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -48724,14 +48643,27 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
48724
48643
|
* API identifier of an object
|
|
48725
48644
|
*/
|
|
48726
48645
|
id?: string;
|
|
48727
|
-
attributes:
|
|
48728
|
-
relationships?:
|
|
48646
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
48647
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
48648
|
+
}
|
|
48649
|
+
|
|
48650
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
48651
|
+
title?: string;
|
|
48652
|
+
description?: string;
|
|
48653
|
+
tags?: Array<string>;
|
|
48654
|
+
areRelationsValid?: boolean;
|
|
48655
|
+
maql: string;
|
|
48729
48656
|
}
|
|
48730
48657
|
|
|
48731
48658
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
48732
48659
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
48733
48660
|
}
|
|
48734
48661
|
|
|
48662
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
48663
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48664
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48665
|
+
}
|
|
48666
|
+
|
|
48735
48667
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
48736
48668
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
48737
48669
|
};
|
|
@@ -48813,7 +48745,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
48813
48745
|
export declare interface JsonApiUserGroupOutList {
|
|
48814
48746
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
48815
48747
|
links?: ListLinks;
|
|
48816
|
-
meta?:
|
|
48748
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48817
48749
|
/**
|
|
48818
48750
|
* Included resources
|
|
48819
48751
|
*/
|
|
@@ -48922,7 +48854,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
48922
48854
|
export declare interface JsonApiUserIdentifierOutList {
|
|
48923
48855
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
48924
48856
|
links?: ListLinks;
|
|
48925
|
-
meta?:
|
|
48857
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48926
48858
|
}
|
|
48927
48859
|
|
|
48928
48860
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -49028,7 +48960,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
49028
48960
|
export declare interface JsonApiUserOutList {
|
|
49029
48961
|
data: Array<JsonApiUserOutWithLinks>;
|
|
49030
48962
|
links?: ListLinks;
|
|
49031
|
-
meta?:
|
|
48963
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49032
48964
|
/**
|
|
49033
48965
|
* Included resources
|
|
49034
48966
|
*/
|
|
@@ -49110,9 +49042,51 @@ export declare interface JsonApiUserSettingIn {
|
|
|
49110
49042
|
* API identifier of an object
|
|
49111
49043
|
*/
|
|
49112
49044
|
id: string;
|
|
49113
|
-
attributes?:
|
|
49045
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
49114
49046
|
}
|
|
49115
49047
|
|
|
49048
|
+
export declare interface JsonApiUserSettingInAttributes {
|
|
49049
|
+
/**
|
|
49050
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
49051
|
+
*/
|
|
49052
|
+
content?: object;
|
|
49053
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
49054
|
+
}
|
|
49055
|
+
|
|
49056
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
49057
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
49058
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
49059
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
49060
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
49061
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
49062
|
+
readonly LOCALE: "LOCALE";
|
|
49063
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
49064
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
49065
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
49066
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
49067
|
+
readonly WEEK_START: "WEEK_START";
|
|
49068
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
49069
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
49070
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
49071
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
49072
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
49073
|
+
readonly ALERT: "ALERT";
|
|
49074
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
49075
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
49076
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
49077
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
49078
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
49079
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
49080
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
49081
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
49082
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
49083
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
49084
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
49085
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
49086
|
+
};
|
|
49087
|
+
|
|
49088
|
+
export declare type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
49089
|
+
|
|
49116
49090
|
export declare interface JsonApiUserSettingInDocument {
|
|
49117
49091
|
data: JsonApiUserSettingIn;
|
|
49118
49092
|
}
|
|
@@ -49135,7 +49109,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
49135
49109
|
* API identifier of an object
|
|
49136
49110
|
*/
|
|
49137
49111
|
id: string;
|
|
49138
|
-
attributes?:
|
|
49112
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
49139
49113
|
}
|
|
49140
49114
|
|
|
49141
49115
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -49149,7 +49123,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
49149
49123
|
export declare interface JsonApiUserSettingOutList {
|
|
49150
49124
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
49151
49125
|
links?: ListLinks;
|
|
49152
|
-
meta?:
|
|
49126
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49153
49127
|
}
|
|
49154
49128
|
|
|
49155
49129
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -49167,7 +49141,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
49167
49141
|
* API identifier of an object
|
|
49168
49142
|
*/
|
|
49169
49143
|
id: string;
|
|
49170
|
-
attributes?:
|
|
49144
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
49171
49145
|
links?: ObjectLinks;
|
|
49172
49146
|
}
|
|
49173
49147
|
|
|
@@ -49189,7 +49163,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
49189
49163
|
* API identifier of an object
|
|
49190
49164
|
*/
|
|
49191
49165
|
id: string;
|
|
49192
|
-
attributes:
|
|
49166
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
49193
49167
|
}
|
|
49194
49168
|
|
|
49195
49169
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -49228,24 +49202,11 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
49228
49202
|
* API identifier of an object
|
|
49229
49203
|
*/
|
|
49230
49204
|
id: string;
|
|
49231
|
-
meta?:
|
|
49232
|
-
attributes:
|
|
49205
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49206
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
49233
49207
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49234
49208
|
}
|
|
49235
49209
|
|
|
49236
|
-
export declare interface JsonApiVisualizationObjectOutAttributes {
|
|
49237
|
-
title?: string;
|
|
49238
|
-
description?: string;
|
|
49239
|
-
tags?: Array<string>;
|
|
49240
|
-
areRelationsValid?: boolean;
|
|
49241
|
-
/**
|
|
49242
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
49243
|
-
*/
|
|
49244
|
-
content: object;
|
|
49245
|
-
createdAt?: string;
|
|
49246
|
-
modifiedAt?: string;
|
|
49247
|
-
}
|
|
49248
|
-
|
|
49249
49210
|
export declare interface JsonApiVisualizationObjectOutDocument {
|
|
49250
49211
|
data: JsonApiVisualizationObjectOut;
|
|
49251
49212
|
links?: ObjectLinks;
|
|
@@ -49261,7 +49222,7 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
49261
49222
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
49262
49223
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
49263
49224
|
links?: ListLinks;
|
|
49264
|
-
meta?:
|
|
49225
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49265
49226
|
/**
|
|
49266
49227
|
* Included resources
|
|
49267
49228
|
*/
|
|
@@ -49269,31 +49230,27 @@ export declare interface JsonApiVisualizationObjectOutList {
|
|
|
49269
49230
|
}
|
|
49270
49231
|
|
|
49271
49232
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
49272
|
-
createdBy?:
|
|
49273
|
-
modifiedBy?:
|
|
49274
|
-
facts?:
|
|
49275
|
-
attributes?:
|
|
49276
|
-
labels?:
|
|
49277
|
-
metrics?:
|
|
49278
|
-
datasets?:
|
|
49233
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
49234
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
49235
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
49236
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
49237
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
49238
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
49239
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
49279
49240
|
}
|
|
49280
49241
|
|
|
49281
|
-
export declare interface
|
|
49282
|
-
data: JsonApiUserIdentifierLinkage | null;
|
|
49283
|
-
}
|
|
49284
|
-
|
|
49285
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
49242
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
49286
49243
|
/**
|
|
49287
49244
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49288
49245
|
*/
|
|
49289
|
-
data: Array<
|
|
49246
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
49290
49247
|
}
|
|
49291
49248
|
|
|
49292
|
-
export declare interface
|
|
49249
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
49293
49250
|
/**
|
|
49294
49251
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49295
49252
|
*/
|
|
49296
|
-
data: Array<
|
|
49253
|
+
data: Array<JsonApiFactLinkage>;
|
|
49297
49254
|
}
|
|
49298
49255
|
|
|
49299
49256
|
export declare const JsonApiVisualizationObjectOutTypeEnum: {
|
|
@@ -49311,8 +49268,8 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
49311
49268
|
* API identifier of an object
|
|
49312
49269
|
*/
|
|
49313
49270
|
id: string;
|
|
49314
|
-
meta?:
|
|
49315
|
-
attributes:
|
|
49271
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49272
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
49316
49273
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49317
49274
|
links?: ObjectLinks;
|
|
49318
49275
|
}
|
|
@@ -49360,7 +49317,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
49360
49317
|
* API identifier of an object
|
|
49361
49318
|
*/
|
|
49362
49319
|
id?: string;
|
|
49363
|
-
attributes:
|
|
49320
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
49364
49321
|
}
|
|
49365
49322
|
|
|
49366
49323
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -49385,10 +49342,132 @@ export declare interface JsonApiWorkspaceAutomationOut {
|
|
|
49385
49342
|
* API identifier of an object
|
|
49386
49343
|
*/
|
|
49387
49344
|
id: string;
|
|
49388
|
-
attributes?:
|
|
49345
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
49389
49346
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49390
49347
|
}
|
|
49391
49348
|
|
|
49349
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
49350
|
+
title?: string;
|
|
49351
|
+
description?: string;
|
|
49352
|
+
tags?: Array<string>;
|
|
49353
|
+
areRelationsValid?: boolean;
|
|
49354
|
+
/**
|
|
49355
|
+
* Additional details to be included in the automated message.
|
|
49356
|
+
*/
|
|
49357
|
+
details?: object;
|
|
49358
|
+
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
49359
|
+
/**
|
|
49360
|
+
* Current state of the automation.
|
|
49361
|
+
*/
|
|
49362
|
+
state?: JsonApiWorkspaceAutomationOutAttributesStateEnum;
|
|
49363
|
+
/**
|
|
49364
|
+
* Specify automation evaluation mode.
|
|
49365
|
+
*/
|
|
49366
|
+
evaluationMode?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
49367
|
+
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
49368
|
+
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
49369
|
+
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
49370
|
+
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
49371
|
+
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
49372
|
+
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
49373
|
+
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
49374
|
+
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
49375
|
+
/**
|
|
49376
|
+
* External recipients of the automation action results.
|
|
49377
|
+
*/
|
|
49378
|
+
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
49379
|
+
createdAt?: string;
|
|
49380
|
+
modifiedAt?: string;
|
|
49381
|
+
}
|
|
49382
|
+
|
|
49383
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
49384
|
+
execution: AlertAfm;
|
|
49385
|
+
condition: AlertCondition;
|
|
49386
|
+
/**
|
|
49387
|
+
* 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.
|
|
49388
|
+
*/
|
|
49389
|
+
trigger?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
49390
|
+
}
|
|
49391
|
+
|
|
49392
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum: {
|
|
49393
|
+
readonly ALWAYS: "ALWAYS";
|
|
49394
|
+
readonly ONCE: "ONCE";
|
|
49395
|
+
};
|
|
49396
|
+
|
|
49397
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum];
|
|
49398
|
+
|
|
49399
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
49400
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
49401
|
+
}
|
|
49402
|
+
|
|
49403
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum: {
|
|
49404
|
+
readonly SHARED: "SHARED";
|
|
49405
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
49406
|
+
};
|
|
49407
|
+
|
|
49408
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum];
|
|
49409
|
+
|
|
49410
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
49411
|
+
/**
|
|
49412
|
+
* E-mail address to send notifications from.
|
|
49413
|
+
*/
|
|
49414
|
+
email: string;
|
|
49415
|
+
}
|
|
49416
|
+
|
|
49417
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
49418
|
+
requestPayload: ImageExportRequest;
|
|
49419
|
+
}
|
|
49420
|
+
|
|
49421
|
+
/**
|
|
49422
|
+
* Additional information for the automation.
|
|
49423
|
+
*/
|
|
49424
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
49425
|
+
widget?: string;
|
|
49426
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
49427
|
+
}
|
|
49428
|
+
|
|
49429
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
49430
|
+
requestPayload: RawExportAutomationRequest;
|
|
49431
|
+
}
|
|
49432
|
+
|
|
49433
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
49434
|
+
/**
|
|
49435
|
+
* 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.
|
|
49436
|
+
*/
|
|
49437
|
+
cron: string;
|
|
49438
|
+
/**
|
|
49439
|
+
* Human-readable description of the cron expression.
|
|
49440
|
+
*/
|
|
49441
|
+
cronDescription?: string;
|
|
49442
|
+
/**
|
|
49443
|
+
* Timezone in which the schedule is defined.
|
|
49444
|
+
*/
|
|
49445
|
+
timezone: string;
|
|
49446
|
+
/**
|
|
49447
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
49448
|
+
*/
|
|
49449
|
+
firstRun?: string;
|
|
49450
|
+
}
|
|
49451
|
+
|
|
49452
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
49453
|
+
requestPayload: SlidesExportRequest;
|
|
49454
|
+
}
|
|
49455
|
+
|
|
49456
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesStateEnum: {
|
|
49457
|
+
readonly ACTIVE: "ACTIVE";
|
|
49458
|
+
readonly PAUSED: "PAUSED";
|
|
49459
|
+
};
|
|
49460
|
+
|
|
49461
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = (typeof JsonApiWorkspaceAutomationOutAttributesStateEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesStateEnum];
|
|
49462
|
+
|
|
49463
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
49464
|
+
requestPayload: TabularExportRequest;
|
|
49465
|
+
}
|
|
49466
|
+
|
|
49467
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
49468
|
+
requestPayload: VisualExportRequest;
|
|
49469
|
+
}
|
|
49470
|
+
|
|
49392
49471
|
/**
|
|
49393
49472
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
49394
49473
|
*/
|
|
@@ -49400,22 +49479,51 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
49400
49479
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
49401
49480
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
49402
49481
|
links?: ListLinks;
|
|
49403
|
-
meta?:
|
|
49482
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49404
49483
|
/**
|
|
49405
49484
|
* Included resources
|
|
49406
49485
|
*/
|
|
49407
49486
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
49408
49487
|
}
|
|
49409
49488
|
|
|
49489
|
+
export declare interface JsonApiWorkspaceAutomationOutListMeta {
|
|
49490
|
+
page?: PageMetadata;
|
|
49491
|
+
}
|
|
49492
|
+
|
|
49410
49493
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
49411
49494
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
49412
|
-
notificationChannel?:
|
|
49495
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
49413
49496
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
49414
|
-
createdBy?:
|
|
49415
|
-
modifiedBy?:
|
|
49416
|
-
exportDefinitions?:
|
|
49417
|
-
recipients?:
|
|
49418
|
-
automationResults?:
|
|
49497
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
49498
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
49499
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
49500
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
49501
|
+
automationResults?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
49502
|
+
}
|
|
49503
|
+
|
|
49504
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
|
|
49505
|
+
/**
|
|
49506
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49507
|
+
*/
|
|
49508
|
+
data: Array<JsonApiAutomationResultLinkage>;
|
|
49509
|
+
}
|
|
49510
|
+
|
|
49511
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
|
|
49512
|
+
/**
|
|
49513
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49514
|
+
*/
|
|
49515
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
49516
|
+
}
|
|
49517
|
+
|
|
49518
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
|
|
49519
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
49520
|
+
}
|
|
49521
|
+
|
|
49522
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
49523
|
+
/**
|
|
49524
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49525
|
+
*/
|
|
49526
|
+
data: Array<JsonApiUserLinkage>;
|
|
49419
49527
|
}
|
|
49420
49528
|
|
|
49421
49529
|
export declare const JsonApiWorkspaceAutomationOutTypeEnum: {
|
|
@@ -49433,7 +49541,7 @@ export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
49433
49541
|
* API identifier of an object
|
|
49434
49542
|
*/
|
|
49435
49543
|
id: string;
|
|
49436
|
-
attributes?:
|
|
49544
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
49437
49545
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49438
49546
|
links?: ObjectLinks;
|
|
49439
49547
|
}
|
|
@@ -49496,7 +49604,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
49496
49604
|
* API identifier of an object
|
|
49497
49605
|
*/
|
|
49498
49606
|
id: string;
|
|
49499
|
-
meta?:
|
|
49607
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49500
49608
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49501
49609
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49502
49610
|
}
|
|
@@ -49522,7 +49630,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
49522
49630
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
49523
49631
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49524
49632
|
links?: ListLinks;
|
|
49525
|
-
meta?:
|
|
49633
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49526
49634
|
/**
|
|
49527
49635
|
* Included resources
|
|
49528
49636
|
*/
|
|
@@ -49555,7 +49663,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
49555
49663
|
* API identifier of an object
|
|
49556
49664
|
*/
|
|
49557
49665
|
id: string;
|
|
49558
|
-
meta?:
|
|
49666
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49559
49667
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49560
49668
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49561
49669
|
links?: ObjectLinks;
|
|
@@ -49605,14 +49713,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
49605
49713
|
* API identifier of an object
|
|
49606
49714
|
*/
|
|
49607
49715
|
id: string;
|
|
49608
|
-
attributes?:
|
|
49609
|
-
relationships?:
|
|
49716
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49717
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49718
|
+
}
|
|
49719
|
+
|
|
49720
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
49721
|
+
title?: string;
|
|
49722
|
+
description?: string;
|
|
49723
|
+
filterValues?: Array<string>;
|
|
49610
49724
|
}
|
|
49611
49725
|
|
|
49612
49726
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
49613
49727
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
49614
49728
|
}
|
|
49615
49729
|
|
|
49730
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
49731
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
49732
|
+
}
|
|
49733
|
+
|
|
49734
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
49735
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
49736
|
+
}
|
|
49737
|
+
|
|
49616
49738
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
49617
49739
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
49618
49740
|
};
|
|
@@ -49645,15 +49767,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
49645
49767
|
* API identifier of an object
|
|
49646
49768
|
*/
|
|
49647
49769
|
id: string;
|
|
49648
|
-
meta?:
|
|
49649
|
-
attributes?:
|
|
49650
|
-
relationships?:
|
|
49651
|
-
}
|
|
49652
|
-
|
|
49653
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
49654
|
-
title?: string;
|
|
49655
|
-
description?: string;
|
|
49656
|
-
filterValues?: Array<string>;
|
|
49770
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49771
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49772
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49657
49773
|
}
|
|
49658
49774
|
|
|
49659
49775
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -49671,21 +49787,13 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
49671
49787
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
49672
49788
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
49673
49789
|
links?: ListLinks;
|
|
49674
|
-
meta?:
|
|
49790
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49675
49791
|
/**
|
|
49676
49792
|
* Included resources
|
|
49677
49793
|
*/
|
|
49678
49794
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49679
49795
|
}
|
|
49680
49796
|
|
|
49681
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
49682
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
49683
|
-
}
|
|
49684
|
-
|
|
49685
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
49686
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
49687
|
-
}
|
|
49688
|
-
|
|
49689
49797
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
49690
49798
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
49691
49799
|
};
|
|
@@ -49701,9 +49809,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
49701
49809
|
* API identifier of an object
|
|
49702
49810
|
*/
|
|
49703
49811
|
id: string;
|
|
49704
|
-
meta?:
|
|
49705
|
-
attributes?:
|
|
49706
|
-
relationships?:
|
|
49812
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
49813
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49814
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49707
49815
|
links?: ObjectLinks;
|
|
49708
49816
|
}
|
|
49709
49817
|
|
|
@@ -49725,8 +49833,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
49725
49833
|
* API identifier of an object
|
|
49726
49834
|
*/
|
|
49727
49835
|
id: string;
|
|
49728
|
-
attributes?:
|
|
49729
|
-
relationships?:
|
|
49836
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49837
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49730
49838
|
}
|
|
49731
49839
|
|
|
49732
49840
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -49845,7 +49953,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
49845
49953
|
export declare interface JsonApiWorkspaceOutList {
|
|
49846
49954
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
49847
49955
|
links?: ListLinks;
|
|
49848
|
-
meta?:
|
|
49956
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49849
49957
|
/**
|
|
49850
49958
|
* Included resources
|
|
49851
49959
|
*/
|
|
@@ -49978,7 +50086,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
49978
50086
|
* API identifier of an object
|
|
49979
50087
|
*/
|
|
49980
50088
|
id: string;
|
|
49981
|
-
attributes?:
|
|
50089
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
49982
50090
|
}
|
|
49983
50091
|
|
|
49984
50092
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -50003,51 +50111,10 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
50003
50111
|
* API identifier of an object
|
|
50004
50112
|
*/
|
|
50005
50113
|
id: string;
|
|
50006
|
-
meta?:
|
|
50007
|
-
attributes?:
|
|
50114
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
50115
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50008
50116
|
}
|
|
50009
50117
|
|
|
50010
|
-
export declare interface JsonApiWorkspaceSettingOutAttributes {
|
|
50011
|
-
/**
|
|
50012
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50013
|
-
*/
|
|
50014
|
-
content?: object;
|
|
50015
|
-
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
50016
|
-
}
|
|
50017
|
-
|
|
50018
|
-
export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
|
|
50019
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
50020
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50021
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50022
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50023
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50024
|
-
readonly LOCALE: "LOCALE";
|
|
50025
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50026
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50027
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50028
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50029
|
-
readonly WEEK_START: "WEEK_START";
|
|
50030
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50031
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50032
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50033
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50034
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50035
|
-
readonly ALERT: "ALERT";
|
|
50036
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
50037
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50038
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50039
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50040
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50041
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50042
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50043
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50044
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50045
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50046
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50047
|
-
};
|
|
50048
|
-
|
|
50049
|
-
export declare type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
|
|
50050
|
-
|
|
50051
50118
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
50052
50119
|
data: JsonApiWorkspaceSettingOut;
|
|
50053
50120
|
links?: ObjectLinks;
|
|
@@ -50059,7 +50126,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
50059
50126
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
50060
50127
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
50061
50128
|
links?: ListLinks;
|
|
50062
|
-
meta?:
|
|
50129
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50063
50130
|
}
|
|
50064
50131
|
|
|
50065
50132
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -50077,8 +50144,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
50077
50144
|
* API identifier of an object
|
|
50078
50145
|
*/
|
|
50079
50146
|
id: string;
|
|
50080
|
-
meta?:
|
|
50081
|
-
attributes?:
|
|
50147
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
50148
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50082
50149
|
links?: ObjectLinks;
|
|
50083
50150
|
}
|
|
50084
50151
|
|
|
@@ -50100,7 +50167,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
50100
50167
|
* API identifier of an object
|
|
50101
50168
|
*/
|
|
50102
50169
|
id: string;
|
|
50103
|
-
attributes?:
|
|
50170
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50104
50171
|
}
|
|
50105
50172
|
|
|
50106
50173
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -50125,7 +50192,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
50125
50192
|
* API identifier of an object
|
|
50126
50193
|
*/
|
|
50127
50194
|
id?: string;
|
|
50128
|
-
attributes?:
|
|
50195
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50129
50196
|
}
|
|
50130
50197
|
|
|
50131
50198
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -66814,6 +66881,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
66814
66881
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
66815
66882
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
66816
66883
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
66884
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
66817
66885
|
};
|
|
66818
66886
|
|
|
66819
66887
|
export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|