@gooddata/api-client-tiger 11.12.0-alpha.2 → 11.12.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +678 -680
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +0 -6
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +2 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +6 -0
- package/esm/generated/automation-json-api/api.d.ts +4 -3
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +6 -4
- package/esm/generated/metadata-json-api/api.d.ts +615 -614
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +6380 -6378
- package/package.json +4 -4
|
@@ -116,7 +116,7 @@ export interface AlertAfm {
|
|
|
116
116
|
*/
|
|
117
117
|
attributes?: Array<AttributeItem>;
|
|
118
118
|
/**
|
|
119
|
-
* Various filter types to filter execution result. For anomaly detection, exactly one date filter
|
|
119
|
+
* Various filter types to filter execution result. For anomaly detection, exactly one dataset is specified in the condition. The AFM may contain multiple date filters for different datasets, but only the date filter matching the dataset from the condition is used for anomaly detection.
|
|
120
120
|
*/
|
|
121
121
|
filters: Array<FilterDefinition>;
|
|
122
122
|
/**
|
|
@@ -143,11 +143,12 @@ export interface AnomalyDetection {
|
|
|
143
143
|
/**
|
|
144
144
|
* Sensitivity level for anomaly detection
|
|
145
145
|
*/
|
|
146
|
-
sensitivity
|
|
146
|
+
sensitivity: AnomalyDetectionSensitivityEnum;
|
|
147
147
|
/**
|
|
148
148
|
* Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
|
|
149
149
|
*/
|
|
150
150
|
granularity: AnomalyDetectionGranularityEnum;
|
|
151
|
+
dataset: AfmObjectIdentifierDataset;
|
|
151
152
|
}
|
|
152
153
|
export type AnomalyDetectionSensitivityEnum = "LOW" | "MEDIUM" | "HIGH";
|
|
153
154
|
export type AnomalyDetectionGranularityEnum = "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR";
|
|
@@ -2614,7 +2615,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
2614
2615
|
* API identifier of an object
|
|
2615
2616
|
*/
|
|
2616
2617
|
id: string;
|
|
2617
|
-
meta?:
|
|
2618
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
2618
2619
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
2619
2620
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
2620
2621
|
}
|
|
@@ -2647,17 +2648,14 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
2647
2648
|
export interface JsonApiAggregatedFactOutList {
|
|
2648
2649
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
2649
2650
|
links?: ListLinks;
|
|
2650
|
-
meta?:
|
|
2651
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
2651
2652
|
/**
|
|
2652
2653
|
* Included resources
|
|
2653
2654
|
*/
|
|
2654
2655
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
2655
2656
|
}
|
|
2656
|
-
export interface JsonApiAggregatedFactOutListMeta {
|
|
2657
|
-
page?: PageMetadata;
|
|
2658
|
-
}
|
|
2659
2657
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
2660
|
-
dataset?:
|
|
2658
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
2661
2659
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
2662
2660
|
}
|
|
2663
2661
|
export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
|
|
@@ -2672,7 +2670,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
|
|
|
2672
2670
|
* API identifier of an object
|
|
2673
2671
|
*/
|
|
2674
2672
|
id: string;
|
|
2675
|
-
meta?:
|
|
2673
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
2676
2674
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
2677
2675
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
2678
2676
|
links?: ObjectLinks;
|
|
@@ -2690,7 +2688,7 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
2690
2688
|
* API identifier of an object
|
|
2691
2689
|
*/
|
|
2692
2690
|
id: string;
|
|
2693
|
-
attributes:
|
|
2691
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
2694
2692
|
}
|
|
2695
2693
|
export type JsonApiAnalyticalDashboardInTypeEnum = "analyticalDashboard";
|
|
2696
2694
|
export interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -2751,7 +2749,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
2751
2749
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
2752
2750
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
2753
2751
|
links?: ListLinks;
|
|
2754
|
-
meta?:
|
|
2752
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
2755
2753
|
/**
|
|
2756
2754
|
* Included resources
|
|
2757
2755
|
*/
|
|
@@ -2762,7 +2760,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
2762
2760
|
* List of valid permissions for a logged-in user.
|
|
2763
2761
|
*/
|
|
2764
2762
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
2765
|
-
origin?:
|
|
2763
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
2766
2764
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
2767
2765
|
}
|
|
2768
2766
|
export type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = "EDIT" | "SHARE" | "VIEW";
|
|
@@ -2779,7 +2777,7 @@ export interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
2779
2777
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
2780
2778
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
2781
2779
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
2782
|
-
datasets?:
|
|
2780
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
2783
2781
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
2784
2782
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
2785
2783
|
}
|
|
@@ -2862,9 +2860,19 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
2862
2860
|
* API identifier of an object
|
|
2863
2861
|
*/
|
|
2864
2862
|
id?: string;
|
|
2865
|
-
attributes:
|
|
2863
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
2866
2864
|
}
|
|
2867
2865
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = "analyticalDashboard";
|
|
2866
|
+
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
2867
|
+
title?: string;
|
|
2868
|
+
description?: string;
|
|
2869
|
+
tags?: Array<string>;
|
|
2870
|
+
areRelationsValid?: boolean;
|
|
2871
|
+
/**
|
|
2872
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
2873
|
+
*/
|
|
2874
|
+
content: object;
|
|
2875
|
+
}
|
|
2868
2876
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
2869
2877
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
2870
2878
|
}
|
|
@@ -2916,7 +2924,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
2916
2924
|
export interface JsonApiApiTokenOutList {
|
|
2917
2925
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
2918
2926
|
links?: ListLinks;
|
|
2919
|
-
meta?:
|
|
2927
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
2920
2928
|
}
|
|
2921
2929
|
export interface JsonApiApiTokenOutWithLinks {
|
|
2922
2930
|
/**
|
|
@@ -2979,7 +2987,7 @@ export interface JsonApiAttributeHierarchyOut {
|
|
|
2979
2987
|
* API identifier of an object
|
|
2980
2988
|
*/
|
|
2981
2989
|
id: string;
|
|
2982
|
-
meta?:
|
|
2990
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
2983
2991
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
2984
2992
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
2985
2993
|
}
|
|
@@ -3014,7 +3022,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3014
3022
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3015
3023
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3016
3024
|
links?: ListLinks;
|
|
3017
|
-
meta?:
|
|
3025
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3018
3026
|
/**
|
|
3019
3027
|
* Included resources
|
|
3020
3028
|
*/
|
|
@@ -3023,7 +3031,7 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
3023
3031
|
export interface JsonApiAttributeHierarchyOutRelationships {
|
|
3024
3032
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3025
3033
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3026
|
-
attributes?:
|
|
3034
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
3027
3035
|
}
|
|
3028
3036
|
export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
3029
3037
|
/**
|
|
@@ -3034,7 +3042,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
3034
3042
|
* API identifier of an object
|
|
3035
3043
|
*/
|
|
3036
3044
|
id: string;
|
|
3037
|
-
meta?:
|
|
3045
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3038
3046
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3039
3047
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3040
3048
|
links?: ObjectLinks;
|
|
@@ -3078,7 +3086,7 @@ export interface JsonApiAttributeOut {
|
|
|
3078
3086
|
* API identifier of an object
|
|
3079
3087
|
*/
|
|
3080
3088
|
id: string;
|
|
3081
|
-
meta?:
|
|
3089
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3082
3090
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3083
3091
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3084
3092
|
}
|
|
@@ -3117,14 +3125,14 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3117
3125
|
export interface JsonApiAttributeOutList {
|
|
3118
3126
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3119
3127
|
links?: ListLinks;
|
|
3120
|
-
meta?:
|
|
3128
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3121
3129
|
/**
|
|
3122
3130
|
* Included resources
|
|
3123
3131
|
*/
|
|
3124
3132
|
included?: Array<JsonApiAttributeOutIncludes>;
|
|
3125
3133
|
}
|
|
3126
3134
|
export interface JsonApiAttributeOutRelationships {
|
|
3127
|
-
dataset?:
|
|
3135
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3128
3136
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3129
3137
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3130
3138
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -3135,6 +3143,9 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
3135
3143
|
*/
|
|
3136
3144
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
3137
3145
|
}
|
|
3146
|
+
export interface JsonApiAttributeOutRelationshipsDataset {
|
|
3147
|
+
data: JsonApiDatasetLinkage | null;
|
|
3148
|
+
}
|
|
3138
3149
|
export interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
3139
3150
|
data: JsonApiLabelLinkage | null;
|
|
3140
3151
|
}
|
|
@@ -3147,7 +3158,7 @@ export interface JsonApiAttributeOutWithLinks {
|
|
|
3147
3158
|
* API identifier of an object
|
|
3148
3159
|
*/
|
|
3149
3160
|
id: string;
|
|
3150
|
-
meta?:
|
|
3161
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3151
3162
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3152
3163
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3153
3164
|
links?: ObjectLinks;
|
|
@@ -3206,7 +3217,7 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3206
3217
|
* Additional details to be included in the automated message.
|
|
3207
3218
|
*/
|
|
3208
3219
|
details?: object;
|
|
3209
|
-
metadata?:
|
|
3220
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3210
3221
|
/**
|
|
3211
3222
|
* Current state of the automation.
|
|
3212
3223
|
*/
|
|
@@ -3215,29 +3226,106 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3215
3226
|
* Specify automation evaluation mode.
|
|
3216
3227
|
*/
|
|
3217
3228
|
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3218
|
-
schedule?:
|
|
3219
|
-
alert?:
|
|
3220
|
-
tabularExports?: Array<
|
|
3221
|
-
visualExports?: Array<
|
|
3222
|
-
imageExports?: Array<
|
|
3223
|
-
rawExports?: Array<
|
|
3224
|
-
slidesExports?: Array<
|
|
3225
|
-
dashboardTabularExports?: Array<
|
|
3229
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3230
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3231
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3232
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3233
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3234
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3235
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3236
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3226
3237
|
/**
|
|
3227
3238
|
* External recipients of the automation action results.
|
|
3228
3239
|
*/
|
|
3229
|
-
externalRecipients?: Array<
|
|
3240
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3230
3241
|
}
|
|
3231
3242
|
export type JsonApiAutomationInAttributesStateEnum = "ACTIVE" | "PAUSED";
|
|
3232
3243
|
export type JsonApiAutomationInAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
|
|
3244
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
3245
|
+
execution: AlertAfm;
|
|
3246
|
+
condition: AlertCondition;
|
|
3247
|
+
/**
|
|
3248
|
+
* 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.
|
|
3249
|
+
*/
|
|
3250
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
3251
|
+
}
|
|
3252
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = "ALWAYS" | "ONCE";
|
|
3253
|
+
export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
3254
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
3255
|
+
}
|
|
3256
|
+
export interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
3257
|
+
/**
|
|
3258
|
+
* E-mail address to send notifications from.
|
|
3259
|
+
*/
|
|
3260
|
+
email: string;
|
|
3261
|
+
}
|
|
3262
|
+
export interface JsonApiAutomationInAttributesImageExportsInner {
|
|
3263
|
+
requestPayload: ImageExportRequest;
|
|
3264
|
+
}
|
|
3265
|
+
/**
|
|
3266
|
+
* Additional information for the automation.
|
|
3267
|
+
*/
|
|
3268
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
3269
|
+
[key: string]: any;
|
|
3270
|
+
widget?: string;
|
|
3271
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
3272
|
+
}
|
|
3273
|
+
export interface JsonApiAutomationInAttributesRawExportsInner {
|
|
3274
|
+
requestPayload: RawExportAutomationRequest;
|
|
3275
|
+
}
|
|
3276
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
3277
|
+
/**
|
|
3278
|
+
* 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.
|
|
3279
|
+
*/
|
|
3280
|
+
cron: string;
|
|
3281
|
+
/**
|
|
3282
|
+
* Human-readable description of the cron expression.
|
|
3283
|
+
*/
|
|
3284
|
+
cronDescription?: string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Timezone in which the schedule is defined.
|
|
3287
|
+
*/
|
|
3288
|
+
timezone: string;
|
|
3289
|
+
/**
|
|
3290
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3291
|
+
*/
|
|
3292
|
+
firstRun?: string;
|
|
3293
|
+
}
|
|
3294
|
+
export interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
3295
|
+
requestPayload: SlidesExportRequest;
|
|
3296
|
+
}
|
|
3297
|
+
export interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
3298
|
+
requestPayload: TabularExportRequest;
|
|
3299
|
+
}
|
|
3300
|
+
export interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
3301
|
+
requestPayload: VisualExportRequest;
|
|
3302
|
+
}
|
|
3233
3303
|
export interface JsonApiAutomationInDocument {
|
|
3234
3304
|
data: JsonApiAutomationIn;
|
|
3235
3305
|
}
|
|
3236
3306
|
export interface JsonApiAutomationInRelationships {
|
|
3237
|
-
notificationChannel?:
|
|
3238
|
-
analyticalDashboard?:
|
|
3239
|
-
exportDefinitions?:
|
|
3240
|
-
recipients?:
|
|
3307
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3308
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3309
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3310
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3311
|
+
}
|
|
3312
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3313
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3314
|
+
}
|
|
3315
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3316
|
+
/**
|
|
3317
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3318
|
+
*/
|
|
3319
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3320
|
+
}
|
|
3321
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3322
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
3323
|
+
}
|
|
3324
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3325
|
+
/**
|
|
3326
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3327
|
+
*/
|
|
3328
|
+
data: Array<JsonApiUserLinkage>;
|
|
3241
3329
|
}
|
|
3242
3330
|
/**
|
|
3243
3331
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
@@ -3259,7 +3347,7 @@ export interface JsonApiAutomationOut {
|
|
|
3259
3347
|
* API identifier of an object
|
|
3260
3348
|
*/
|
|
3261
3349
|
id: string;
|
|
3262
|
-
meta?:
|
|
3350
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3263
3351
|
attributes?: JsonApiAutomationOutAttributes;
|
|
3264
3352
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3265
3353
|
}
|
|
@@ -3273,7 +3361,7 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3273
3361
|
* Additional details to be included in the automated message.
|
|
3274
3362
|
*/
|
|
3275
3363
|
details?: object;
|
|
3276
|
-
metadata?:
|
|
3364
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3277
3365
|
/**
|
|
3278
3366
|
* Current state of the automation.
|
|
3279
3367
|
*/
|
|
@@ -3282,82 +3370,23 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3282
3370
|
* Specify automation evaluation mode.
|
|
3283
3371
|
*/
|
|
3284
3372
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3285
|
-
schedule?:
|
|
3286
|
-
alert?:
|
|
3287
|
-
tabularExports?: Array<
|
|
3288
|
-
visualExports?: Array<
|
|
3289
|
-
imageExports?: Array<
|
|
3290
|
-
rawExports?: Array<
|
|
3291
|
-
slidesExports?: Array<
|
|
3292
|
-
dashboardTabularExports?: Array<
|
|
3373
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3374
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3375
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3376
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3377
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3378
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3379
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3380
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3293
3381
|
/**
|
|
3294
3382
|
* External recipients of the automation action results.
|
|
3295
3383
|
*/
|
|
3296
|
-
externalRecipients?: Array<
|
|
3384
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3297
3385
|
createdAt?: string;
|
|
3298
3386
|
modifiedAt?: string;
|
|
3299
3387
|
}
|
|
3300
3388
|
export type JsonApiAutomationOutAttributesStateEnum = "ACTIVE" | "PAUSED";
|
|
3301
3389
|
export type JsonApiAutomationOutAttributesEvaluationModeEnum = "SHARED" | "PER_RECIPIENT";
|
|
3302
|
-
export interface JsonApiAutomationOutAttributesAlert {
|
|
3303
|
-
execution: AlertAfm;
|
|
3304
|
-
condition: AlertCondition;
|
|
3305
|
-
/**
|
|
3306
|
-
* 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.
|
|
3307
|
-
*/
|
|
3308
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
3309
|
-
}
|
|
3310
|
-
export type JsonApiAutomationOutAttributesAlertTriggerEnum = "ALWAYS" | "ONCE";
|
|
3311
|
-
export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
3312
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
3313
|
-
}
|
|
3314
|
-
export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
3315
|
-
/**
|
|
3316
|
-
* E-mail address to send notifications from.
|
|
3317
|
-
*/
|
|
3318
|
-
email: string;
|
|
3319
|
-
}
|
|
3320
|
-
export interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
3321
|
-
requestPayload: ImageExportRequest;
|
|
3322
|
-
}
|
|
3323
|
-
/**
|
|
3324
|
-
* Additional information for the automation.
|
|
3325
|
-
*/
|
|
3326
|
-
export interface JsonApiAutomationOutAttributesMetadata {
|
|
3327
|
-
[key: string]: any;
|
|
3328
|
-
widget?: string;
|
|
3329
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
3330
|
-
}
|
|
3331
|
-
export interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
3332
|
-
requestPayload: RawExportAutomationRequest;
|
|
3333
|
-
}
|
|
3334
|
-
export interface JsonApiAutomationOutAttributesSchedule {
|
|
3335
|
-
/**
|
|
3336
|
-
* 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.
|
|
3337
|
-
*/
|
|
3338
|
-
cron: string;
|
|
3339
|
-
/**
|
|
3340
|
-
* Human-readable description of the cron expression.
|
|
3341
|
-
*/
|
|
3342
|
-
cronDescription?: string;
|
|
3343
|
-
/**
|
|
3344
|
-
* Timezone in which the schedule is defined.
|
|
3345
|
-
*/
|
|
3346
|
-
timezone: string;
|
|
3347
|
-
/**
|
|
3348
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3349
|
-
*/
|
|
3350
|
-
firstRun?: string;
|
|
3351
|
-
}
|
|
3352
|
-
export interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
3353
|
-
requestPayload: SlidesExportRequest;
|
|
3354
|
-
}
|
|
3355
|
-
export interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
3356
|
-
requestPayload: TabularExportRequest;
|
|
3357
|
-
}
|
|
3358
|
-
export interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
3359
|
-
requestPayload: VisualExportRequest;
|
|
3360
|
-
}
|
|
3361
3390
|
export interface JsonApiAutomationOutDocument {
|
|
3362
3391
|
data: JsonApiAutomationOut;
|
|
3363
3392
|
links?: ObjectLinks;
|
|
@@ -3376,45 +3405,27 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
3376
3405
|
export interface JsonApiAutomationOutList {
|
|
3377
3406
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
3378
3407
|
links?: ListLinks;
|
|
3379
|
-
meta?:
|
|
3408
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3380
3409
|
/**
|
|
3381
3410
|
* Included resources
|
|
3382
3411
|
*/
|
|
3383
3412
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3384
3413
|
}
|
|
3385
3414
|
export interface JsonApiAutomationOutRelationships {
|
|
3386
|
-
notificationChannel?:
|
|
3387
|
-
analyticalDashboard?:
|
|
3415
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3416
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3388
3417
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3389
3418
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3390
|
-
exportDefinitions?:
|
|
3391
|
-
recipients?:
|
|
3419
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3420
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3392
3421
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
3393
3422
|
}
|
|
3394
|
-
export interface JsonApiAutomationOutRelationshipsAnalyticalDashboard {
|
|
3395
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3396
|
-
}
|
|
3397
3423
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
3398
3424
|
/**
|
|
3399
3425
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3400
3426
|
*/
|
|
3401
3427
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
3402
3428
|
}
|
|
3403
|
-
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
3404
|
-
/**
|
|
3405
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3406
|
-
*/
|
|
3407
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3408
|
-
}
|
|
3409
|
-
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
3410
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
3411
|
-
}
|
|
3412
|
-
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
3413
|
-
/**
|
|
3414
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3415
|
-
*/
|
|
3416
|
-
data: Array<JsonApiUserLinkage>;
|
|
3417
|
-
}
|
|
3418
3429
|
export interface JsonApiAutomationOutWithLinks {
|
|
3419
3430
|
/**
|
|
3420
3431
|
* Object type
|
|
@@ -3424,7 +3435,7 @@ export interface JsonApiAutomationOutWithLinks {
|
|
|
3424
3435
|
* API identifier of an object
|
|
3425
3436
|
*/
|
|
3426
3437
|
id: string;
|
|
3427
|
-
meta?:
|
|
3438
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3428
3439
|
attributes?: JsonApiAutomationOutAttributes;
|
|
3429
3440
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3430
3441
|
links?: ObjectLinks;
|
|
@@ -3492,17 +3503,14 @@ export type JsonApiAutomationResultOutAttributesStatusEnum = "SUCCESS" | "FAILED
|
|
|
3492
3503
|
export interface JsonApiAutomationResultOutList {
|
|
3493
3504
|
data: Array<JsonApiAutomationResultOutWithLinks>;
|
|
3494
3505
|
links?: ListLinks;
|
|
3495
|
-
meta?:
|
|
3506
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3496
3507
|
/**
|
|
3497
3508
|
* Included resources
|
|
3498
3509
|
*/
|
|
3499
3510
|
included?: Array<JsonApiAutomationOutWithLinks>;
|
|
3500
3511
|
}
|
|
3501
3512
|
export interface JsonApiAutomationResultOutRelationships {
|
|
3502
|
-
automation?:
|
|
3503
|
-
}
|
|
3504
|
-
export interface JsonApiAutomationResultOutRelationshipsAutomation {
|
|
3505
|
-
data: JsonApiAutomationLinkage | null;
|
|
3513
|
+
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
3506
3514
|
}
|
|
3507
3515
|
export interface JsonApiAutomationResultOutWithLinks {
|
|
3508
3516
|
/**
|
|
@@ -3530,16 +3538,9 @@ export interface JsonApiColorPaletteIn {
|
|
|
3530
3538
|
* API identifier of an object
|
|
3531
3539
|
*/
|
|
3532
3540
|
id: string;
|
|
3533
|
-
attributes:
|
|
3541
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
3534
3542
|
}
|
|
3535
3543
|
export type JsonApiColorPaletteInTypeEnum = "colorPalette";
|
|
3536
|
-
export interface JsonApiColorPaletteInAttributes {
|
|
3537
|
-
name: string;
|
|
3538
|
-
/**
|
|
3539
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3540
|
-
*/
|
|
3541
|
-
content: object;
|
|
3542
|
-
}
|
|
3543
3544
|
export interface JsonApiColorPaletteInDocument {
|
|
3544
3545
|
data: JsonApiColorPaletteIn;
|
|
3545
3546
|
}
|
|
@@ -3555,9 +3556,16 @@ export interface JsonApiColorPaletteOut {
|
|
|
3555
3556
|
* API identifier of an object
|
|
3556
3557
|
*/
|
|
3557
3558
|
id: string;
|
|
3558
|
-
attributes:
|
|
3559
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
3559
3560
|
}
|
|
3560
3561
|
export type JsonApiColorPaletteOutTypeEnum = "colorPalette";
|
|
3562
|
+
export interface JsonApiColorPaletteOutAttributes {
|
|
3563
|
+
name: string;
|
|
3564
|
+
/**
|
|
3565
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3566
|
+
*/
|
|
3567
|
+
content: object;
|
|
3568
|
+
}
|
|
3561
3569
|
export interface JsonApiColorPaletteOutDocument {
|
|
3562
3570
|
data: JsonApiColorPaletteOut;
|
|
3563
3571
|
links?: ObjectLinks;
|
|
@@ -3568,7 +3576,10 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
3568
3576
|
export interface JsonApiColorPaletteOutList {
|
|
3569
3577
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
3570
3578
|
links?: ListLinks;
|
|
3571
|
-
meta?:
|
|
3579
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3580
|
+
}
|
|
3581
|
+
export interface JsonApiColorPaletteOutListMeta {
|
|
3582
|
+
page?: PageMetadata;
|
|
3572
3583
|
}
|
|
3573
3584
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
3574
3585
|
/**
|
|
@@ -3579,7 +3590,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
3579
3590
|
* API identifier of an object
|
|
3580
3591
|
*/
|
|
3581
3592
|
id: string;
|
|
3582
|
-
attributes:
|
|
3593
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
3583
3594
|
links?: ObjectLinks;
|
|
3584
3595
|
}
|
|
3585
3596
|
export type JsonApiColorPaletteOutWithLinksTypeEnum = "colorPalette";
|
|
@@ -3682,12 +3693,9 @@ export interface JsonApiCspDirectiveIn {
|
|
|
3682
3693
|
* API identifier of an object
|
|
3683
3694
|
*/
|
|
3684
3695
|
id: string;
|
|
3685
|
-
attributes:
|
|
3696
|
+
attributes: JsonApiCspDirectiveOutAttributes;
|
|
3686
3697
|
}
|
|
3687
3698
|
export type JsonApiCspDirectiveInTypeEnum = "cspDirective";
|
|
3688
|
-
export interface JsonApiCspDirectiveInAttributes {
|
|
3689
|
-
sources: Array<string>;
|
|
3690
|
-
}
|
|
3691
3699
|
export interface JsonApiCspDirectiveInDocument {
|
|
3692
3700
|
data: JsonApiCspDirectiveIn;
|
|
3693
3701
|
}
|
|
@@ -3703,9 +3711,12 @@ export interface JsonApiCspDirectiveOut {
|
|
|
3703
3711
|
* API identifier of an object
|
|
3704
3712
|
*/
|
|
3705
3713
|
id: string;
|
|
3706
|
-
attributes:
|
|
3714
|
+
attributes: JsonApiCspDirectiveOutAttributes;
|
|
3707
3715
|
}
|
|
3708
3716
|
export type JsonApiCspDirectiveOutTypeEnum = "cspDirective";
|
|
3717
|
+
export interface JsonApiCspDirectiveOutAttributes {
|
|
3718
|
+
sources: Array<string>;
|
|
3719
|
+
}
|
|
3709
3720
|
export interface JsonApiCspDirectiveOutDocument {
|
|
3710
3721
|
data: JsonApiCspDirectiveOut;
|
|
3711
3722
|
links?: ObjectLinks;
|
|
@@ -3716,7 +3727,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
3716
3727
|
export interface JsonApiCspDirectiveOutList {
|
|
3717
3728
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
3718
3729
|
links?: ListLinks;
|
|
3719
|
-
meta?:
|
|
3730
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3720
3731
|
}
|
|
3721
3732
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
3722
3733
|
/**
|
|
@@ -3727,7 +3738,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
3727
3738
|
* API identifier of an object
|
|
3728
3739
|
*/
|
|
3729
3740
|
id: string;
|
|
3730
|
-
attributes:
|
|
3741
|
+
attributes: JsonApiCspDirectiveOutAttributes;
|
|
3731
3742
|
links?: ObjectLinks;
|
|
3732
3743
|
}
|
|
3733
3744
|
export type JsonApiCspDirectiveOutWithLinksTypeEnum = "cspDirective";
|
|
@@ -3764,7 +3775,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
3764
3775
|
* API identifier of an object
|
|
3765
3776
|
*/
|
|
3766
3777
|
id: string;
|
|
3767
|
-
attributes:
|
|
3778
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
3768
3779
|
}
|
|
3769
3780
|
export type JsonApiCustomApplicationSettingInTypeEnum = "customApplicationSetting";
|
|
3770
3781
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -3782,17 +3793,10 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
3782
3793
|
* API identifier of an object
|
|
3783
3794
|
*/
|
|
3784
3795
|
id: string;
|
|
3785
|
-
meta?:
|
|
3786
|
-
attributes:
|
|
3796
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3797
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
3787
3798
|
}
|
|
3788
3799
|
export type JsonApiCustomApplicationSettingOutTypeEnum = "customApplicationSetting";
|
|
3789
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
3790
|
-
applicationName: string;
|
|
3791
|
-
/**
|
|
3792
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3793
|
-
*/
|
|
3794
|
-
content: object;
|
|
3795
|
-
}
|
|
3796
3800
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
3797
3801
|
data: JsonApiCustomApplicationSettingOut;
|
|
3798
3802
|
links?: ObjectLinks;
|
|
@@ -3803,7 +3807,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
3803
3807
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
3804
3808
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
3805
3809
|
links?: ListLinks;
|
|
3806
|
-
meta?:
|
|
3810
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3807
3811
|
}
|
|
3808
3812
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
3809
3813
|
/**
|
|
@@ -3814,8 +3818,8 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
3814
3818
|
* API identifier of an object
|
|
3815
3819
|
*/
|
|
3816
3820
|
id: string;
|
|
3817
|
-
meta?:
|
|
3818
|
-
attributes:
|
|
3821
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3822
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
3819
3823
|
links?: ObjectLinks;
|
|
3820
3824
|
}
|
|
3821
3825
|
export type JsonApiCustomApplicationSettingOutWithLinksTypeEnum = "customApplicationSetting";
|
|
@@ -3856,9 +3860,16 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
3856
3860
|
* API identifier of an object
|
|
3857
3861
|
*/
|
|
3858
3862
|
id?: string;
|
|
3859
|
-
attributes:
|
|
3863
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
3860
3864
|
}
|
|
3861
3865
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = "customApplicationSetting";
|
|
3866
|
+
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
3867
|
+
applicationName: string;
|
|
3868
|
+
/**
|
|
3869
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3870
|
+
*/
|
|
3871
|
+
content: object;
|
|
3872
|
+
}
|
|
3862
3873
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
3863
3874
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
3864
3875
|
}
|
|
@@ -3874,19 +3885,9 @@ export interface JsonApiDashboardPluginIn {
|
|
|
3874
3885
|
* API identifier of an object
|
|
3875
3886
|
*/
|
|
3876
3887
|
id: string;
|
|
3877
|
-
attributes?:
|
|
3888
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
3878
3889
|
}
|
|
3879
3890
|
export type JsonApiDashboardPluginInTypeEnum = "dashboardPlugin";
|
|
3880
|
-
export interface JsonApiDashboardPluginInAttributes {
|
|
3881
|
-
title?: string;
|
|
3882
|
-
description?: string;
|
|
3883
|
-
tags?: Array<string>;
|
|
3884
|
-
areRelationsValid?: boolean;
|
|
3885
|
-
/**
|
|
3886
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3887
|
-
*/
|
|
3888
|
-
content?: object;
|
|
3889
|
-
}
|
|
3890
3891
|
export interface JsonApiDashboardPluginInDocument {
|
|
3891
3892
|
data: JsonApiDashboardPluginIn;
|
|
3892
3893
|
}
|
|
@@ -3910,7 +3911,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
3910
3911
|
* API identifier of an object
|
|
3911
3912
|
*/
|
|
3912
3913
|
id: string;
|
|
3913
|
-
meta?:
|
|
3914
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3914
3915
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
3915
3916
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
3916
3917
|
}
|
|
@@ -3941,7 +3942,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
3941
3942
|
export interface JsonApiDashboardPluginOutList {
|
|
3942
3943
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
3943
3944
|
links?: ListLinks;
|
|
3944
|
-
meta?:
|
|
3945
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3945
3946
|
/**
|
|
3946
3947
|
* Included resources
|
|
3947
3948
|
*/
|
|
@@ -3960,7 +3961,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
3960
3961
|
* API identifier of an object
|
|
3961
3962
|
*/
|
|
3962
3963
|
id: string;
|
|
3963
|
-
meta?:
|
|
3964
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3964
3965
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
3965
3966
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
3966
3967
|
links?: ObjectLinks;
|
|
@@ -3978,7 +3979,7 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
3978
3979
|
* API identifier of an object
|
|
3979
3980
|
*/
|
|
3980
3981
|
id: string;
|
|
3981
|
-
attributes?:
|
|
3982
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
3982
3983
|
}
|
|
3983
3984
|
export type JsonApiDashboardPluginPatchTypeEnum = "dashboardPlugin";
|
|
3984
3985
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -3996,9 +3997,19 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
3996
3997
|
* API identifier of an object
|
|
3997
3998
|
*/
|
|
3998
3999
|
id?: string;
|
|
3999
|
-
attributes?:
|
|
4000
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4000
4001
|
}
|
|
4001
4002
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = "dashboardPlugin";
|
|
4003
|
+
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4004
|
+
title?: string;
|
|
4005
|
+
description?: string;
|
|
4006
|
+
tags?: Array<string>;
|
|
4007
|
+
areRelationsValid?: boolean;
|
|
4008
|
+
/**
|
|
4009
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4010
|
+
*/
|
|
4011
|
+
content?: object;
|
|
4012
|
+
}
|
|
4002
4013
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4003
4014
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4004
4015
|
}
|
|
@@ -4014,7 +4025,7 @@ export interface JsonApiDataSourceIdentifierOut {
|
|
|
4014
4025
|
* API identifier of an object
|
|
4015
4026
|
*/
|
|
4016
4027
|
id: string;
|
|
4017
|
-
meta?:
|
|
4028
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
4018
4029
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4019
4030
|
}
|
|
4020
4031
|
export type JsonApiDataSourceIdentifierOutTypeEnum = "dataSourceIdentifier";
|
|
@@ -4034,8 +4045,15 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4034
4045
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4035
4046
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4036
4047
|
links?: ListLinks;
|
|
4037
|
-
meta?:
|
|
4048
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4049
|
+
}
|
|
4050
|
+
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4051
|
+
/**
|
|
4052
|
+
* List of valid permissions for a logged-in user.
|
|
4053
|
+
*/
|
|
4054
|
+
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
4038
4055
|
}
|
|
4056
|
+
export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = "MANAGE" | "USE";
|
|
4039
4057
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4040
4058
|
/**
|
|
4041
4059
|
* Object type
|
|
@@ -4045,7 +4063,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
4045
4063
|
* API identifier of an object
|
|
4046
4064
|
*/
|
|
4047
4065
|
id: string;
|
|
4048
|
-
meta?:
|
|
4066
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
4049
4067
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4050
4068
|
links?: ObjectLinks;
|
|
4051
4069
|
}
|
|
@@ -4113,7 +4131,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4113
4131
|
/**
|
|
4114
4132
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4115
4133
|
*/
|
|
4116
|
-
parameters?: Array<
|
|
4134
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
4117
4135
|
/**
|
|
4118
4136
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4119
4137
|
*/
|
|
@@ -4121,10 +4139,6 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4121
4139
|
}
|
|
4122
4140
|
export type JsonApiDataSourceInAttributesTypeEnum = "POSTGRESQL" | "REDSHIFT" | "VERTICA" | "SNOWFLAKE" | "ADS" | "BIGQUERY" | "MSSQL" | "PRESTO" | "DREMIO" | "DRILL" | "GREENPLUM" | "AZURESQL" | "SYNAPSESQL" | "DATABRICKS" | "GDSTORAGE" | "CLICKHOUSE" | "MYSQL" | "MARIADB" | "ORACLE" | "PINOT" | "SINGLESTORE" | "MOTHERDUCK" | "FLEXCONNECT" | "STARROCKS" | "ATHENA" | "MONGODB";
|
|
4123
4141
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = "ALWAYS" | "NEVER";
|
|
4124
|
-
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
4125
|
-
name: string;
|
|
4126
|
-
value: string;
|
|
4127
|
-
}
|
|
4128
4142
|
export interface JsonApiDataSourceInDocument {
|
|
4129
4143
|
data: JsonApiDataSourceIn;
|
|
4130
4144
|
}
|
|
@@ -4140,7 +4154,7 @@ export interface JsonApiDataSourceOut {
|
|
|
4140
4154
|
* API identifier of an object
|
|
4141
4155
|
*/
|
|
4142
4156
|
id: string;
|
|
4143
|
-
meta?:
|
|
4157
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
4144
4158
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4145
4159
|
}
|
|
4146
4160
|
export type JsonApiDataSourceOutTypeEnum = "dataSource";
|
|
@@ -4172,11 +4186,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4172
4186
|
/**
|
|
4173
4187
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4174
4188
|
*/
|
|
4175
|
-
parameters?: Array<
|
|
4189
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
4176
4190
|
/**
|
|
4177
4191
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
4178
4192
|
*/
|
|
4179
|
-
decodedParameters?: Array<
|
|
4193
|
+
decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
4180
4194
|
/**
|
|
4181
4195
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4182
4196
|
*/
|
|
@@ -4189,6 +4203,10 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4189
4203
|
export type JsonApiDataSourceOutAttributesTypeEnum = "POSTGRESQL" | "REDSHIFT" | "VERTICA" | "SNOWFLAKE" | "ADS" | "BIGQUERY" | "MSSQL" | "PRESTO" | "DREMIO" | "DRILL" | "GREENPLUM" | "AZURESQL" | "SYNAPSESQL" | "DATABRICKS" | "GDSTORAGE" | "CLICKHOUSE" | "MYSQL" | "MARIADB" | "ORACLE" | "PINOT" | "SINGLESTORE" | "MOTHERDUCK" | "FLEXCONNECT" | "STARROCKS" | "ATHENA" | "MONGODB";
|
|
4190
4204
|
export type JsonApiDataSourceOutAttributesCacheStrategyEnum = "ALWAYS" | "NEVER";
|
|
4191
4205
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = "USERNAME_PASSWORD" | "TOKEN" | "KEY_PAIR" | "CLIENT_SECRET" | "ACCESS_TOKEN";
|
|
4206
|
+
export interface JsonApiDataSourceOutAttributesParametersInner {
|
|
4207
|
+
name: string;
|
|
4208
|
+
value: string;
|
|
4209
|
+
}
|
|
4192
4210
|
export interface JsonApiDataSourceOutDocument {
|
|
4193
4211
|
data: JsonApiDataSourceOut;
|
|
4194
4212
|
links?: ObjectLinks;
|
|
@@ -4199,15 +4217,8 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
4199
4217
|
export interface JsonApiDataSourceOutList {
|
|
4200
4218
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
4201
4219
|
links?: ListLinks;
|
|
4202
|
-
meta?:
|
|
4203
|
-
}
|
|
4204
|
-
export interface JsonApiDataSourceOutMeta {
|
|
4205
|
-
/**
|
|
4206
|
-
* List of valid permissions for a logged-in user.
|
|
4207
|
-
*/
|
|
4208
|
-
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
4220
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4209
4221
|
}
|
|
4210
|
-
export type JsonApiDataSourceOutMetaPermissionsEnum = "MANAGE" | "USE";
|
|
4211
4222
|
export interface JsonApiDataSourceOutWithLinks {
|
|
4212
4223
|
/**
|
|
4213
4224
|
* Object type
|
|
@@ -4217,7 +4228,7 @@ export interface JsonApiDataSourceOutWithLinks {
|
|
|
4217
4228
|
* API identifier of an object
|
|
4218
4229
|
*/
|
|
4219
4230
|
id: string;
|
|
4220
|
-
meta?:
|
|
4231
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
4221
4232
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4222
4233
|
links?: ObjectLinks;
|
|
4223
4234
|
}
|
|
@@ -4285,7 +4296,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
4285
4296
|
/**
|
|
4286
4297
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4287
4298
|
*/
|
|
4288
|
-
parameters?: Array<
|
|
4299
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
4289
4300
|
/**
|
|
4290
4301
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4291
4302
|
*/
|
|
@@ -4316,7 +4327,7 @@ export interface JsonApiDatasetOut {
|
|
|
4316
4327
|
* API identifier of an object
|
|
4317
4328
|
*/
|
|
4318
4329
|
id: string;
|
|
4319
|
-
meta?:
|
|
4330
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4320
4331
|
attributes: JsonApiDatasetOutAttributes;
|
|
4321
4332
|
relationships?: JsonApiDatasetOutRelationships;
|
|
4322
4333
|
}
|
|
@@ -4389,31 +4400,17 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
4389
4400
|
export interface JsonApiDatasetOutList {
|
|
4390
4401
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
4391
4402
|
links?: ListLinks;
|
|
4392
|
-
meta?:
|
|
4403
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4393
4404
|
/**
|
|
4394
4405
|
* Included resources
|
|
4395
4406
|
*/
|
|
4396
4407
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
4397
4408
|
}
|
|
4398
|
-
export interface JsonApiDatasetOutMeta {
|
|
4399
|
-
origin?: JsonApiDatasetOutMetaOrigin;
|
|
4400
|
-
}
|
|
4401
|
-
export interface JsonApiDatasetOutMetaOrigin {
|
|
4402
|
-
/**
|
|
4403
|
-
* defines type of the origin of the entity
|
|
4404
|
-
*/
|
|
4405
|
-
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
4406
|
-
/**
|
|
4407
|
-
* defines id of the workspace where the entity comes from
|
|
4408
|
-
*/
|
|
4409
|
-
originId: string;
|
|
4410
|
-
}
|
|
4411
|
-
export type JsonApiDatasetOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
|
|
4412
4409
|
export interface JsonApiDatasetOutRelationships {
|
|
4413
|
-
attributes?:
|
|
4414
|
-
facts?:
|
|
4410
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
4411
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
4415
4412
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
4416
|
-
references?:
|
|
4413
|
+
references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
4417
4414
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
4418
4415
|
}
|
|
4419
4416
|
export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
@@ -4422,24 +4419,6 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
4422
4419
|
*/
|
|
4423
4420
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
4424
4421
|
}
|
|
4425
|
-
export interface JsonApiDatasetOutRelationshipsAttributes {
|
|
4426
|
-
/**
|
|
4427
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4428
|
-
*/
|
|
4429
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
4430
|
-
}
|
|
4431
|
-
export interface JsonApiDatasetOutRelationshipsFacts {
|
|
4432
|
-
/**
|
|
4433
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4434
|
-
*/
|
|
4435
|
-
data: Array<JsonApiFactLinkage>;
|
|
4436
|
-
}
|
|
4437
|
-
export interface JsonApiDatasetOutRelationshipsReferences {
|
|
4438
|
-
/**
|
|
4439
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4440
|
-
*/
|
|
4441
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
4442
|
-
}
|
|
4443
4422
|
export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
4444
4423
|
/**
|
|
4445
4424
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -4455,7 +4434,7 @@ export interface JsonApiDatasetOutWithLinks {
|
|
|
4455
4434
|
* API identifier of an object
|
|
4456
4435
|
*/
|
|
4457
4436
|
id: string;
|
|
4458
|
-
meta?:
|
|
4437
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4459
4438
|
attributes: JsonApiDatasetOutAttributes;
|
|
4460
4439
|
relationships?: JsonApiDatasetOutRelationships;
|
|
4461
4440
|
links?: ObjectLinks;
|
|
@@ -4513,7 +4492,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
4513
4492
|
export interface JsonApiEntitlementOutList {
|
|
4514
4493
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
4515
4494
|
links?: ListLinks;
|
|
4516
|
-
meta?:
|
|
4495
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4517
4496
|
}
|
|
4518
4497
|
export interface JsonApiEntitlementOutWithLinks {
|
|
4519
4498
|
/**
|
|
@@ -4540,24 +4519,13 @@ export interface JsonApiExportDefinitionIn {
|
|
|
4540
4519
|
* API identifier of an object
|
|
4541
4520
|
*/
|
|
4542
4521
|
id: string;
|
|
4543
|
-
attributes?:
|
|
4544
|
-
relationships?:
|
|
4522
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
4523
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
4545
4524
|
}
|
|
4546
4525
|
export type JsonApiExportDefinitionInTypeEnum = "exportDefinition";
|
|
4547
|
-
export interface JsonApiExportDefinitionInAttributes {
|
|
4548
|
-
title?: string;
|
|
4549
|
-
description?: string;
|
|
4550
|
-
tags?: Array<string>;
|
|
4551
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
4552
|
-
areRelationsValid?: boolean;
|
|
4553
|
-
}
|
|
4554
4526
|
export interface JsonApiExportDefinitionInDocument {
|
|
4555
4527
|
data: JsonApiExportDefinitionIn;
|
|
4556
4528
|
}
|
|
4557
|
-
export interface JsonApiExportDefinitionInRelationships {
|
|
4558
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
4559
|
-
analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
|
|
4560
|
-
}
|
|
4561
4529
|
/**
|
|
4562
4530
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4563
4531
|
*/
|
|
@@ -4578,7 +4546,7 @@ export interface JsonApiExportDefinitionOut {
|
|
|
4578
4546
|
* API identifier of an object
|
|
4579
4547
|
*/
|
|
4580
4548
|
id: string;
|
|
4581
|
-
meta?:
|
|
4549
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4582
4550
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
4583
4551
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
4584
4552
|
}
|
|
@@ -4615,7 +4583,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
4615
4583
|
export interface JsonApiExportDefinitionOutList {
|
|
4616
4584
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
4617
4585
|
links?: ListLinks;
|
|
4618
|
-
meta?:
|
|
4586
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4619
4587
|
/**
|
|
4620
4588
|
* Included resources
|
|
4621
4589
|
*/
|
|
@@ -4623,11 +4591,14 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
4623
4591
|
}
|
|
4624
4592
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
4625
4593
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
4626
|
-
analyticalDashboard?:
|
|
4627
|
-
automation?:
|
|
4594
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
4595
|
+
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
4628
4596
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4629
4597
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4630
4598
|
}
|
|
4599
|
+
export interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
4600
|
+
data: JsonApiAutomationLinkage | null;
|
|
4601
|
+
}
|
|
4631
4602
|
export interface JsonApiExportDefinitionOutRelationshipsVisualizationObject {
|
|
4632
4603
|
data: JsonApiVisualizationObjectLinkage | null;
|
|
4633
4604
|
}
|
|
@@ -4640,7 +4611,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
|
|
|
4640
4611
|
* API identifier of an object
|
|
4641
4612
|
*/
|
|
4642
4613
|
id: string;
|
|
4643
|
-
meta?:
|
|
4614
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4644
4615
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
4645
4616
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
4646
4617
|
links?: ObjectLinks;
|
|
@@ -4658,8 +4629,8 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
4658
4629
|
* API identifier of an object
|
|
4659
4630
|
*/
|
|
4660
4631
|
id: string;
|
|
4661
|
-
attributes?:
|
|
4662
|
-
relationships?:
|
|
4632
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
4633
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
4663
4634
|
}
|
|
4664
4635
|
export type JsonApiExportDefinitionPatchTypeEnum = "exportDefinition";
|
|
4665
4636
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
@@ -4677,13 +4648,24 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
4677
4648
|
* API identifier of an object
|
|
4678
4649
|
*/
|
|
4679
4650
|
id?: string;
|
|
4680
|
-
attributes?:
|
|
4681
|
-
relationships?:
|
|
4651
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
4652
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
4682
4653
|
}
|
|
4683
4654
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = "exportDefinition";
|
|
4655
|
+
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
4656
|
+
title?: string;
|
|
4657
|
+
description?: string;
|
|
4658
|
+
tags?: Array<string>;
|
|
4659
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
4660
|
+
areRelationsValid?: boolean;
|
|
4661
|
+
}
|
|
4684
4662
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
4685
4663
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
4686
4664
|
}
|
|
4665
|
+
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
4666
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
4667
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
4668
|
+
}
|
|
4687
4669
|
/**
|
|
4688
4670
|
* JSON:API representation of exportTemplate entity.
|
|
4689
4671
|
*/
|
|
@@ -4696,7 +4678,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
4696
4678
|
* API identifier of an object
|
|
4697
4679
|
*/
|
|
4698
4680
|
id: string;
|
|
4699
|
-
attributes:
|
|
4681
|
+
attributes: JsonApiExportTemplateOutAttributes;
|
|
4700
4682
|
}
|
|
4701
4683
|
export type JsonApiExportTemplateInTypeEnum = "exportTemplate";
|
|
4702
4684
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -4714,22 +4696,55 @@ export interface JsonApiExportTemplateOut {
|
|
|
4714
4696
|
* API identifier of an object
|
|
4715
4697
|
*/
|
|
4716
4698
|
id: string;
|
|
4717
|
-
attributes:
|
|
4699
|
+
attributes: JsonApiExportTemplateOutAttributes;
|
|
4718
4700
|
}
|
|
4719
4701
|
export type JsonApiExportTemplateOutTypeEnum = "exportTemplate";
|
|
4720
|
-
export interface
|
|
4721
|
-
|
|
4722
|
-
|
|
4702
|
+
export interface JsonApiExportTemplateOutAttributes {
|
|
4703
|
+
/**
|
|
4704
|
+
* User-facing name of the Slides template.
|
|
4705
|
+
*/
|
|
4706
|
+
name: string;
|
|
4707
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
4708
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
4723
4709
|
}
|
|
4724
4710
|
/**
|
|
4725
|
-
*
|
|
4711
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
4726
4712
|
*/
|
|
4727
|
-
export interface
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4713
|
+
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
4714
|
+
/**
|
|
4715
|
+
* Export types this template applies to.
|
|
4716
|
+
*/
|
|
4717
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
4718
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
4719
|
+
introSlide?: IntroSlideTemplate | null;
|
|
4720
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
4721
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
4722
|
+
}
|
|
4723
|
+
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
4724
|
+
/**
|
|
4725
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
4726
|
+
*/
|
|
4727
|
+
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
4728
|
+
/**
|
|
4729
|
+
* Export types this template applies to.
|
|
4730
|
+
*/
|
|
4731
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
4732
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
4733
|
+
}
|
|
4734
|
+
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
4735
|
+
export interface JsonApiExportTemplateOutDocument {
|
|
4736
|
+
data: JsonApiExportTemplateOut;
|
|
4737
|
+
links?: ObjectLinks;
|
|
4738
|
+
}
|
|
4739
|
+
/**
|
|
4740
|
+
* A JSON:API document with a list of resources
|
|
4741
|
+
*/
|
|
4742
|
+
export interface JsonApiExportTemplateOutList {
|
|
4743
|
+
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
4744
|
+
links?: ListLinks;
|
|
4745
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4746
|
+
}
|
|
4747
|
+
export interface JsonApiExportTemplateOutWithLinks {
|
|
4733
4748
|
/**
|
|
4734
4749
|
* Object type
|
|
4735
4750
|
*/
|
|
@@ -4738,7 +4753,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
4738
4753
|
* API identifier of an object
|
|
4739
4754
|
*/
|
|
4740
4755
|
id: string;
|
|
4741
|
-
attributes:
|
|
4756
|
+
attributes: JsonApiExportTemplateOutAttributes;
|
|
4742
4757
|
links?: ObjectLinks;
|
|
4743
4758
|
}
|
|
4744
4759
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = "exportTemplate";
|
|
@@ -4762,8 +4777,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
4762
4777
|
* User-facing name of the Slides template.
|
|
4763
4778
|
*/
|
|
4764
4779
|
name?: string;
|
|
4765
|
-
dashboardSlidesTemplate?:
|
|
4766
|
-
widgetSlidesTemplate?:
|
|
4780
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
4781
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
4767
4782
|
}
|
|
4768
4783
|
export interface JsonApiExportTemplatePatchDocument {
|
|
4769
4784
|
data: JsonApiExportTemplatePatch;
|
|
@@ -4780,42 +4795,9 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
4780
4795
|
* API identifier of an object
|
|
4781
4796
|
*/
|
|
4782
4797
|
id?: string;
|
|
4783
|
-
attributes:
|
|
4798
|
+
attributes: JsonApiExportTemplateOutAttributes;
|
|
4784
4799
|
}
|
|
4785
4800
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = "exportTemplate";
|
|
4786
|
-
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
4787
|
-
/**
|
|
4788
|
-
* User-facing name of the Slides template.
|
|
4789
|
-
*/
|
|
4790
|
-
name: string;
|
|
4791
|
-
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
4792
|
-
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
4793
|
-
}
|
|
4794
|
-
/**
|
|
4795
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
4796
|
-
*/
|
|
4797
|
-
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
4798
|
-
/**
|
|
4799
|
-
* Export types this template applies to.
|
|
4800
|
-
*/
|
|
4801
|
-
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
4802
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
4803
|
-
introSlide?: IntroSlideTemplate | null;
|
|
4804
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
4805
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
4806
|
-
}
|
|
4807
|
-
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
4808
|
-
/**
|
|
4809
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
4810
|
-
*/
|
|
4811
|
-
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
4812
|
-
/**
|
|
4813
|
-
* Export types this template applies to.
|
|
4814
|
-
*/
|
|
4815
|
-
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
4816
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
4817
|
-
}
|
|
4818
|
-
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = "PDF" | "PPTX";
|
|
4819
4801
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
4820
4802
|
data: JsonApiExportTemplatePostOptionalId;
|
|
4821
4803
|
}
|
|
@@ -4839,7 +4821,7 @@ export interface JsonApiFactOut {
|
|
|
4839
4821
|
* API identifier of an object
|
|
4840
4822
|
*/
|
|
4841
4823
|
id: string;
|
|
4842
|
-
meta?:
|
|
4824
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4843
4825
|
attributes?: JsonApiFactOutAttributes;
|
|
4844
4826
|
relationships?: JsonApiFactOutRelationships;
|
|
4845
4827
|
}
|
|
@@ -4868,17 +4850,14 @@ export interface JsonApiFactOutDocument {
|
|
|
4868
4850
|
export interface JsonApiFactOutList {
|
|
4869
4851
|
data: Array<JsonApiFactOutWithLinks>;
|
|
4870
4852
|
links?: ListLinks;
|
|
4871
|
-
meta?:
|
|
4853
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4872
4854
|
/**
|
|
4873
4855
|
* Included resources
|
|
4874
4856
|
*/
|
|
4875
4857
|
included?: Array<JsonApiDatasetOutWithLinks>;
|
|
4876
4858
|
}
|
|
4877
4859
|
export interface JsonApiFactOutRelationships {
|
|
4878
|
-
dataset?:
|
|
4879
|
-
}
|
|
4880
|
-
export interface JsonApiFactOutRelationshipsDataset {
|
|
4881
|
-
data: JsonApiDatasetLinkage | null;
|
|
4860
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
4882
4861
|
}
|
|
4883
4862
|
export interface JsonApiFactOutWithLinks {
|
|
4884
4863
|
/**
|
|
@@ -4889,7 +4868,7 @@ export interface JsonApiFactOutWithLinks {
|
|
|
4889
4868
|
* API identifier of an object
|
|
4890
4869
|
*/
|
|
4891
4870
|
id: string;
|
|
4892
|
-
meta?:
|
|
4871
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4893
4872
|
attributes?: JsonApiFactOutAttributes;
|
|
4894
4873
|
relationships?: JsonApiFactOutRelationships;
|
|
4895
4874
|
links?: ObjectLinks;
|
|
@@ -4925,7 +4904,7 @@ export interface JsonApiFilterContextIn {
|
|
|
4925
4904
|
* API identifier of an object
|
|
4926
4905
|
*/
|
|
4927
4906
|
id: string;
|
|
4928
|
-
attributes:
|
|
4907
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
4929
4908
|
}
|
|
4930
4909
|
export type JsonApiFilterContextInTypeEnum = "filterContext";
|
|
4931
4910
|
export interface JsonApiFilterContextInDocument {
|
|
@@ -4951,21 +4930,11 @@ export interface JsonApiFilterContextOut {
|
|
|
4951
4930
|
* API identifier of an object
|
|
4952
4931
|
*/
|
|
4953
4932
|
id: string;
|
|
4954
|
-
meta?:
|
|
4955
|
-
attributes:
|
|
4933
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4934
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
4956
4935
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
4957
4936
|
}
|
|
4958
4937
|
export type JsonApiFilterContextOutTypeEnum = "filterContext";
|
|
4959
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
4960
|
-
title?: string;
|
|
4961
|
-
description?: string;
|
|
4962
|
-
tags?: Array<string>;
|
|
4963
|
-
areRelationsValid?: boolean;
|
|
4964
|
-
/**
|
|
4965
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4966
|
-
*/
|
|
4967
|
-
content: object;
|
|
4968
|
-
}
|
|
4969
4938
|
export interface JsonApiFilterContextOutDocument {
|
|
4970
4939
|
data: JsonApiFilterContextOut;
|
|
4971
4940
|
links?: ObjectLinks;
|
|
@@ -4984,15 +4953,15 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
4984
4953
|
export interface JsonApiFilterContextOutList {
|
|
4985
4954
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
4986
4955
|
links?: ListLinks;
|
|
4987
|
-
meta?:
|
|
4956
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4988
4957
|
/**
|
|
4989
4958
|
* Included resources
|
|
4990
4959
|
*/
|
|
4991
4960
|
included?: Array<JsonApiFilterContextOutIncludes>;
|
|
4992
4961
|
}
|
|
4993
4962
|
export interface JsonApiFilterContextOutRelationships {
|
|
4994
|
-
attributes?:
|
|
4995
|
-
datasets?:
|
|
4963
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
4964
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
4996
4965
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
4997
4966
|
}
|
|
4998
4967
|
export interface JsonApiFilterContextOutWithLinks {
|
|
@@ -5004,8 +4973,8 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5004
4973
|
* API identifier of an object
|
|
5005
4974
|
*/
|
|
5006
4975
|
id: string;
|
|
5007
|
-
meta?:
|
|
5008
|
-
attributes:
|
|
4976
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4977
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5009
4978
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5010
4979
|
links?: ObjectLinks;
|
|
5011
4980
|
}
|
|
@@ -5040,7 +5009,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5040
5009
|
* API identifier of an object
|
|
5041
5010
|
*/
|
|
5042
5011
|
id?: string;
|
|
5043
|
-
attributes:
|
|
5012
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5044
5013
|
}
|
|
5045
5014
|
export type JsonApiFilterContextPostOptionalIdTypeEnum = "filterContext";
|
|
5046
5015
|
export interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -5058,13 +5027,31 @@ export interface JsonApiFilterViewIn {
|
|
|
5058
5027
|
* API identifier of an object
|
|
5059
5028
|
*/
|
|
5060
5029
|
id: string;
|
|
5061
|
-
attributes:
|
|
5062
|
-
relationships?:
|
|
5030
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5031
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5063
5032
|
}
|
|
5064
5033
|
export type JsonApiFilterViewInTypeEnum = "filterView";
|
|
5034
|
+
export interface JsonApiFilterViewInAttributes {
|
|
5035
|
+
title: string;
|
|
5036
|
+
description?: string;
|
|
5037
|
+
tags?: Array<string>;
|
|
5038
|
+
areRelationsValid?: boolean;
|
|
5039
|
+
/**
|
|
5040
|
+
* Indicator whether the filter view should by applied by default.
|
|
5041
|
+
*/
|
|
5042
|
+
isDefault?: boolean;
|
|
5043
|
+
/**
|
|
5044
|
+
* The respective filter context.
|
|
5045
|
+
*/
|
|
5046
|
+
content: object;
|
|
5047
|
+
}
|
|
5065
5048
|
export interface JsonApiFilterViewInDocument {
|
|
5066
5049
|
data: JsonApiFilterViewIn;
|
|
5067
5050
|
}
|
|
5051
|
+
export interface JsonApiFilterViewInRelationships {
|
|
5052
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5053
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5054
|
+
}
|
|
5068
5055
|
/**
|
|
5069
5056
|
* JSON:API representation of filterView entity.
|
|
5070
5057
|
*/
|
|
@@ -5077,24 +5064,10 @@ export interface JsonApiFilterViewOut {
|
|
|
5077
5064
|
* API identifier of an object
|
|
5078
5065
|
*/
|
|
5079
5066
|
id: string;
|
|
5080
|
-
attributes:
|
|
5081
|
-
relationships?:
|
|
5067
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5068
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5082
5069
|
}
|
|
5083
5070
|
export type JsonApiFilterViewOutTypeEnum = "filterView";
|
|
5084
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
5085
|
-
title: string;
|
|
5086
|
-
description?: string;
|
|
5087
|
-
tags?: Array<string>;
|
|
5088
|
-
areRelationsValid?: boolean;
|
|
5089
|
-
/**
|
|
5090
|
-
* Indicator whether the filter view should by applied by default.
|
|
5091
|
-
*/
|
|
5092
|
-
isDefault?: boolean;
|
|
5093
|
-
/**
|
|
5094
|
-
* The respective filter context.
|
|
5095
|
-
*/
|
|
5096
|
-
content: object;
|
|
5097
|
-
}
|
|
5098
5071
|
export interface JsonApiFilterViewOutDocument {
|
|
5099
5072
|
data: JsonApiFilterViewOut;
|
|
5100
5073
|
links?: ObjectLinks;
|
|
@@ -5113,19 +5086,12 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
5113
5086
|
export interface JsonApiFilterViewOutList {
|
|
5114
5087
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
5115
5088
|
links?: ListLinks;
|
|
5116
|
-
meta?:
|
|
5089
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5117
5090
|
/**
|
|
5118
5091
|
* Included resources
|
|
5119
5092
|
*/
|
|
5120
5093
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
5121
5094
|
}
|
|
5122
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
5123
|
-
analyticalDashboard?: JsonApiAutomationOutRelationshipsAnalyticalDashboard;
|
|
5124
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
5125
|
-
}
|
|
5126
|
-
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
5127
|
-
data: JsonApiUserLinkage | null;
|
|
5128
|
-
}
|
|
5129
5095
|
export interface JsonApiFilterViewOutWithLinks {
|
|
5130
5096
|
/**
|
|
5131
5097
|
* Object type
|
|
@@ -5135,8 +5101,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
5135
5101
|
* API identifier of an object
|
|
5136
5102
|
*/
|
|
5137
5103
|
id: string;
|
|
5138
|
-
attributes:
|
|
5139
|
-
relationships?:
|
|
5104
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5105
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5140
5106
|
links?: ObjectLinks;
|
|
5141
5107
|
}
|
|
5142
5108
|
export type JsonApiFilterViewOutWithLinksTypeEnum = "filterView";
|
|
@@ -5153,7 +5119,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
5153
5119
|
*/
|
|
5154
5120
|
id: string;
|
|
5155
5121
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
5156
|
-
relationships?:
|
|
5122
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5157
5123
|
}
|
|
5158
5124
|
export type JsonApiFilterViewPatchTypeEnum = "filterView";
|
|
5159
5125
|
export interface JsonApiFilterViewPatchAttributes {
|
|
@@ -5318,7 +5284,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
5318
5284
|
export interface JsonApiIdentityProviderOutList {
|
|
5319
5285
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
5320
5286
|
links?: ListLinks;
|
|
5321
|
-
meta?:
|
|
5287
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5322
5288
|
}
|
|
5323
5289
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
5324
5290
|
/**
|
|
@@ -5363,12 +5329,9 @@ export interface JsonApiJwkIn {
|
|
|
5363
5329
|
* API identifier of an object
|
|
5364
5330
|
*/
|
|
5365
5331
|
id: string;
|
|
5366
|
-
attributes?:
|
|
5332
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
5367
5333
|
}
|
|
5368
5334
|
export type JsonApiJwkInTypeEnum = "jwk";
|
|
5369
|
-
export interface JsonApiJwkInAttributes {
|
|
5370
|
-
content?: RsaSpecification;
|
|
5371
|
-
}
|
|
5372
5335
|
export interface JsonApiJwkInDocument {
|
|
5373
5336
|
data: JsonApiJwkIn;
|
|
5374
5337
|
}
|
|
@@ -5384,9 +5347,12 @@ export interface JsonApiJwkOut {
|
|
|
5384
5347
|
* API identifier of an object
|
|
5385
5348
|
*/
|
|
5386
5349
|
id: string;
|
|
5387
|
-
attributes?:
|
|
5350
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
5388
5351
|
}
|
|
5389
5352
|
export type JsonApiJwkOutTypeEnum = "jwk";
|
|
5353
|
+
export interface JsonApiJwkOutAttributes {
|
|
5354
|
+
content?: RsaSpecification;
|
|
5355
|
+
}
|
|
5390
5356
|
export interface JsonApiJwkOutDocument {
|
|
5391
5357
|
data: JsonApiJwkOut;
|
|
5392
5358
|
links?: ObjectLinks;
|
|
@@ -5397,7 +5363,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
5397
5363
|
export interface JsonApiJwkOutList {
|
|
5398
5364
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
5399
5365
|
links?: ListLinks;
|
|
5400
|
-
meta?:
|
|
5366
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5401
5367
|
}
|
|
5402
5368
|
export interface JsonApiJwkOutWithLinks {
|
|
5403
5369
|
/**
|
|
@@ -5408,7 +5374,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
5408
5374
|
* API identifier of an object
|
|
5409
5375
|
*/
|
|
5410
5376
|
id: string;
|
|
5411
|
-
attributes?:
|
|
5377
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
5412
5378
|
links?: ObjectLinks;
|
|
5413
5379
|
}
|
|
5414
5380
|
export type JsonApiJwkOutWithLinksTypeEnum = "jwk";
|
|
@@ -5424,7 +5390,7 @@ export interface JsonApiJwkPatch {
|
|
|
5424
5390
|
* API identifier of an object
|
|
5425
5391
|
*/
|
|
5426
5392
|
id: string;
|
|
5427
|
-
attributes?:
|
|
5393
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
5428
5394
|
}
|
|
5429
5395
|
export type JsonApiJwkPatchTypeEnum = "jwk";
|
|
5430
5396
|
export interface JsonApiJwkPatchDocument {
|
|
@@ -5450,7 +5416,7 @@ export interface JsonApiLabelOut {
|
|
|
5450
5416
|
* API identifier of an object
|
|
5451
5417
|
*/
|
|
5452
5418
|
id: string;
|
|
5453
|
-
meta?:
|
|
5419
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5454
5420
|
attributes?: JsonApiLabelOutAttributes;
|
|
5455
5421
|
relationships?: JsonApiLabelOutRelationships;
|
|
5456
5422
|
}
|
|
@@ -5495,7 +5461,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
5495
5461
|
export interface JsonApiLabelOutList {
|
|
5496
5462
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
5497
5463
|
links?: ListLinks;
|
|
5498
|
-
meta?:
|
|
5464
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5499
5465
|
/**
|
|
5500
5466
|
* Included resources
|
|
5501
5467
|
*/
|
|
@@ -5516,7 +5482,7 @@ export interface JsonApiLabelOutWithLinks {
|
|
|
5516
5482
|
* API identifier of an object
|
|
5517
5483
|
*/
|
|
5518
5484
|
id: string;
|
|
5519
|
-
meta?:
|
|
5485
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5520
5486
|
attributes?: JsonApiLabelOutAttributes;
|
|
5521
5487
|
relationships?: JsonApiLabelOutRelationships;
|
|
5522
5488
|
links?: ObjectLinks;
|
|
@@ -5640,7 +5606,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
5640
5606
|
export interface JsonApiLlmEndpointOutList {
|
|
5641
5607
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
5642
5608
|
links?: ListLinks;
|
|
5643
|
-
meta?:
|
|
5609
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5644
5610
|
}
|
|
5645
5611
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
5646
5612
|
/**
|
|
@@ -5712,32 +5678,9 @@ export interface JsonApiMemoryItemIn {
|
|
|
5712
5678
|
* API identifier of an object
|
|
5713
5679
|
*/
|
|
5714
5680
|
id: string;
|
|
5715
|
-
attributes:
|
|
5681
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
5716
5682
|
}
|
|
5717
5683
|
export type JsonApiMemoryItemInTypeEnum = "memoryItem";
|
|
5718
|
-
export interface JsonApiMemoryItemInAttributes {
|
|
5719
|
-
title?: string;
|
|
5720
|
-
description?: string;
|
|
5721
|
-
tags?: Array<string>;
|
|
5722
|
-
areRelationsValid?: boolean;
|
|
5723
|
-
/**
|
|
5724
|
-
* Strategy defining when the memory item should be applied
|
|
5725
|
-
*/
|
|
5726
|
-
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
5727
|
-
/**
|
|
5728
|
-
* The text that will be injected into the system prompt
|
|
5729
|
-
*/
|
|
5730
|
-
instruction: string;
|
|
5731
|
-
/**
|
|
5732
|
-
* Set of unique strings used for semantic similarity filtering
|
|
5733
|
-
*/
|
|
5734
|
-
keywords?: Array<string>;
|
|
5735
|
-
/**
|
|
5736
|
-
* Whether memory item is disabled
|
|
5737
|
-
*/
|
|
5738
|
-
isDisabled?: boolean;
|
|
5739
|
-
}
|
|
5740
|
-
export type JsonApiMemoryItemInAttributesStrategyEnum = "ALWAYS" | "AUTO";
|
|
5741
5684
|
export interface JsonApiMemoryItemInDocument {
|
|
5742
5685
|
data: JsonApiMemoryItemIn;
|
|
5743
5686
|
}
|
|
@@ -5753,7 +5696,7 @@ export interface JsonApiMemoryItemOut {
|
|
|
5753
5696
|
* API identifier of an object
|
|
5754
5697
|
*/
|
|
5755
5698
|
id: string;
|
|
5756
|
-
meta?:
|
|
5699
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5757
5700
|
attributes: JsonApiMemoryItemOutAttributes;
|
|
5758
5701
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
5759
5702
|
}
|
|
@@ -5797,7 +5740,7 @@ export interface JsonApiMemoryItemOutDocument {
|
|
|
5797
5740
|
export interface JsonApiMemoryItemOutList {
|
|
5798
5741
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
5799
5742
|
links?: ListLinks;
|
|
5800
|
-
meta?:
|
|
5743
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5801
5744
|
/**
|
|
5802
5745
|
* Included resources
|
|
5803
5746
|
*/
|
|
@@ -5812,7 +5755,7 @@ export interface JsonApiMemoryItemOutWithLinks {
|
|
|
5812
5755
|
* API identifier of an object
|
|
5813
5756
|
*/
|
|
5814
5757
|
id: string;
|
|
5815
|
-
meta?:
|
|
5758
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5816
5759
|
attributes: JsonApiMemoryItemOutAttributes;
|
|
5817
5760
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
5818
5761
|
links?: ObjectLinks;
|
|
@@ -5871,9 +5814,32 @@ export interface JsonApiMemoryItemPostOptionalId {
|
|
|
5871
5814
|
* API identifier of an object
|
|
5872
5815
|
*/
|
|
5873
5816
|
id?: string;
|
|
5874
|
-
attributes:
|
|
5817
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
5875
5818
|
}
|
|
5876
5819
|
export type JsonApiMemoryItemPostOptionalIdTypeEnum = "memoryItem";
|
|
5820
|
+
export interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
5821
|
+
title?: string;
|
|
5822
|
+
description?: string;
|
|
5823
|
+
tags?: Array<string>;
|
|
5824
|
+
areRelationsValid?: boolean;
|
|
5825
|
+
/**
|
|
5826
|
+
* Strategy defining when the memory item should be applied
|
|
5827
|
+
*/
|
|
5828
|
+
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
5829
|
+
/**
|
|
5830
|
+
* The text that will be injected into the system prompt
|
|
5831
|
+
*/
|
|
5832
|
+
instruction: string;
|
|
5833
|
+
/**
|
|
5834
|
+
* Set of unique strings used for semantic similarity filtering
|
|
5835
|
+
*/
|
|
5836
|
+
keywords?: Array<string>;
|
|
5837
|
+
/**
|
|
5838
|
+
* Whether memory item is disabled
|
|
5839
|
+
*/
|
|
5840
|
+
isDisabled?: boolean;
|
|
5841
|
+
}
|
|
5842
|
+
export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = "ALWAYS" | "AUTO";
|
|
5877
5843
|
export interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
5878
5844
|
data: JsonApiMemoryItemPostOptionalId;
|
|
5879
5845
|
}
|
|
@@ -5889,17 +5855,9 @@ export interface JsonApiMetricIn {
|
|
|
5889
5855
|
* API identifier of an object
|
|
5890
5856
|
*/
|
|
5891
5857
|
id: string;
|
|
5892
|
-
attributes:
|
|
5858
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
5893
5859
|
}
|
|
5894
5860
|
export type JsonApiMetricInTypeEnum = "metric";
|
|
5895
|
-
export interface JsonApiMetricInAttributes {
|
|
5896
|
-
title?: string;
|
|
5897
|
-
description?: string;
|
|
5898
|
-
tags?: Array<string>;
|
|
5899
|
-
areRelationsValid?: boolean;
|
|
5900
|
-
content: JsonApiMetricOutAttributesContent;
|
|
5901
|
-
isHidden?: boolean;
|
|
5902
|
-
}
|
|
5903
5861
|
export interface JsonApiMetricInDocument {
|
|
5904
5862
|
data: JsonApiMetricIn;
|
|
5905
5863
|
}
|
|
@@ -5923,7 +5881,7 @@ export interface JsonApiMetricOut {
|
|
|
5923
5881
|
* API identifier of an object
|
|
5924
5882
|
*/
|
|
5925
5883
|
id: string;
|
|
5926
|
-
meta?:
|
|
5884
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5927
5885
|
attributes: JsonApiMetricOutAttributes;
|
|
5928
5886
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
5929
5887
|
}
|
|
@@ -5965,7 +5923,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
5965
5923
|
export interface JsonApiMetricOutList {
|
|
5966
5924
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
5967
5925
|
links?: ListLinks;
|
|
5968
|
-
meta?:
|
|
5926
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5969
5927
|
/**
|
|
5970
5928
|
* Included resources
|
|
5971
5929
|
*/
|
|
@@ -5980,7 +5938,7 @@ export interface JsonApiMetricOutWithLinks {
|
|
|
5980
5938
|
* API identifier of an object
|
|
5981
5939
|
*/
|
|
5982
5940
|
id: string;
|
|
5983
|
-
meta?:
|
|
5941
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5984
5942
|
attributes: JsonApiMetricOutAttributes;
|
|
5985
5943
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
5986
5944
|
links?: ObjectLinks;
|
|
@@ -6024,9 +5982,17 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6024
5982
|
* API identifier of an object
|
|
6025
5983
|
*/
|
|
6026
5984
|
id?: string;
|
|
6027
|
-
attributes:
|
|
5985
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6028
5986
|
}
|
|
6029
5987
|
export type JsonApiMetricPostOptionalIdTypeEnum = "metric";
|
|
5988
|
+
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
5989
|
+
title?: string;
|
|
5990
|
+
description?: string;
|
|
5991
|
+
tags?: Array<string>;
|
|
5992
|
+
areRelationsValid?: boolean;
|
|
5993
|
+
content: JsonApiMetricOutAttributesContent;
|
|
5994
|
+
isHidden?: boolean;
|
|
5995
|
+
}
|
|
6030
5996
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6031
5997
|
data: JsonApiMetricPostOptionalId;
|
|
6032
5998
|
}
|
|
@@ -6066,7 +6032,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
6066
6032
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
6067
6033
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
6068
6034
|
links?: ListLinks;
|
|
6069
|
-
meta?:
|
|
6035
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6070
6036
|
}
|
|
6071
6037
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
6072
6038
|
/**
|
|
@@ -6093,9 +6059,37 @@ export interface JsonApiNotificationChannelIn {
|
|
|
6093
6059
|
* API identifier of an object
|
|
6094
6060
|
*/
|
|
6095
6061
|
id: string;
|
|
6096
|
-
attributes?:
|
|
6062
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
6097
6063
|
}
|
|
6098
6064
|
export type JsonApiNotificationChannelInTypeEnum = "notificationChannel";
|
|
6065
|
+
export interface JsonApiNotificationChannelInAttributes {
|
|
6066
|
+
name?: string | null;
|
|
6067
|
+
description?: string | null;
|
|
6068
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
6069
|
+
/**
|
|
6070
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
6071
|
+
*/
|
|
6072
|
+
customDashboardUrl?: string;
|
|
6073
|
+
/**
|
|
6074
|
+
* 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
|
|
6075
|
+
*/
|
|
6076
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
6077
|
+
/**
|
|
6078
|
+
* 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}}
|
|
6079
|
+
*/
|
|
6080
|
+
notificationSource?: string;
|
|
6081
|
+
/**
|
|
6082
|
+
* 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
|
|
6083
|
+
*/
|
|
6084
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
6085
|
+
/**
|
|
6086
|
+
* 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
|
|
6087
|
+
*/
|
|
6088
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
6089
|
+
}
|
|
6090
|
+
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
|
|
6091
|
+
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
|
|
6092
|
+
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
|
|
6099
6093
|
export interface JsonApiNotificationChannelInDocument {
|
|
6100
6094
|
data: JsonApiNotificationChannelIn;
|
|
6101
6095
|
}
|
|
@@ -6167,7 +6161,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
6167
6161
|
export interface JsonApiNotificationChannelOutList {
|
|
6168
6162
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
6169
6163
|
links?: ListLinks;
|
|
6170
|
-
meta?:
|
|
6164
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6171
6165
|
}
|
|
6172
6166
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
6173
6167
|
/**
|
|
@@ -6194,7 +6188,7 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
6194
6188
|
* API identifier of an object
|
|
6195
6189
|
*/
|
|
6196
6190
|
id: string;
|
|
6197
|
-
attributes?:
|
|
6191
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
6198
6192
|
}
|
|
6199
6193
|
export type JsonApiNotificationChannelPatchTypeEnum = "notificationChannel";
|
|
6200
6194
|
export interface JsonApiNotificationChannelPatchDocument {
|
|
@@ -6212,37 +6206,9 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
6212
6206
|
* API identifier of an object
|
|
6213
6207
|
*/
|
|
6214
6208
|
id?: string;
|
|
6215
|
-
attributes?:
|
|
6209
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
6216
6210
|
}
|
|
6217
6211
|
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = "notificationChannel";
|
|
6218
|
-
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
6219
|
-
name?: string | null;
|
|
6220
|
-
description?: string | null;
|
|
6221
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
6222
|
-
/**
|
|
6223
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
6224
|
-
*/
|
|
6225
|
-
customDashboardUrl?: string;
|
|
6226
|
-
/**
|
|
6227
|
-
* 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
|
|
6228
|
-
*/
|
|
6229
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
6230
|
-
/**
|
|
6231
|
-
* 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}}
|
|
6232
|
-
*/
|
|
6233
|
-
notificationSource?: string;
|
|
6234
|
-
/**
|
|
6235
|
-
* 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
|
|
6236
|
-
*/
|
|
6237
|
-
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
6238
|
-
/**
|
|
6239
|
-
* 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
|
|
6240
|
-
*/
|
|
6241
|
-
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
6242
|
-
}
|
|
6243
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = "HIDDEN" | "INTERNAL_ONLY" | "ALL";
|
|
6244
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = "CREATOR" | "INTERNAL" | "EXTERNAL";
|
|
6245
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = "DISABLED" | "ENABLED";
|
|
6246
6212
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
6247
6213
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
6248
6214
|
}
|
|
@@ -6322,10 +6288,16 @@ export interface JsonApiOrganizationOutMeta {
|
|
|
6322
6288
|
}
|
|
6323
6289
|
export type JsonApiOrganizationOutMetaPermissionsEnum = "MANAGE" | "SELF_CREATE_TOKEN";
|
|
6324
6290
|
export interface JsonApiOrganizationOutRelationships {
|
|
6325
|
-
bootstrapUser?:
|
|
6326
|
-
bootstrapUserGroup?:
|
|
6291
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
6292
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
6327
6293
|
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
6328
6294
|
}
|
|
6295
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
6296
|
+
data: JsonApiUserLinkage | null;
|
|
6297
|
+
}
|
|
6298
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
6299
|
+
data: JsonApiUserGroupLinkage | null;
|
|
6300
|
+
}
|
|
6329
6301
|
/**
|
|
6330
6302
|
* JSON:API representation of patching organization entity.
|
|
6331
6303
|
*/
|
|
@@ -6377,7 +6349,7 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
6377
6349
|
* API identifier of an object
|
|
6378
6350
|
*/
|
|
6379
6351
|
id: string;
|
|
6380
|
-
attributes?:
|
|
6352
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6381
6353
|
}
|
|
6382
6354
|
export type JsonApiOrganizationSettingInTypeEnum = "organizationSetting";
|
|
6383
6355
|
export interface JsonApiOrganizationSettingInDocument {
|
|
@@ -6395,7 +6367,7 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
6395
6367
|
* API identifier of an object
|
|
6396
6368
|
*/
|
|
6397
6369
|
id: string;
|
|
6398
|
-
attributes?:
|
|
6370
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6399
6371
|
}
|
|
6400
6372
|
export type JsonApiOrganizationSettingOutTypeEnum = "organizationSetting";
|
|
6401
6373
|
export interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -6408,7 +6380,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
6408
6380
|
export interface JsonApiOrganizationSettingOutList {
|
|
6409
6381
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
6410
6382
|
links?: ListLinks;
|
|
6411
|
-
meta?:
|
|
6383
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6412
6384
|
}
|
|
6413
6385
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
6414
6386
|
/**
|
|
@@ -6419,7 +6391,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
6419
6391
|
* API identifier of an object
|
|
6420
6392
|
*/
|
|
6421
6393
|
id: string;
|
|
6422
|
-
attributes?:
|
|
6394
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6423
6395
|
links?: ObjectLinks;
|
|
6424
6396
|
}
|
|
6425
6397
|
export type JsonApiOrganizationSettingOutWithLinksTypeEnum = "organizationSetting";
|
|
@@ -6435,7 +6407,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
6435
6407
|
* API identifier of an object
|
|
6436
6408
|
*/
|
|
6437
6409
|
id: string;
|
|
6438
|
-
attributes?:
|
|
6410
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6439
6411
|
}
|
|
6440
6412
|
export type JsonApiOrganizationSettingPatchTypeEnum = "organizationSetting";
|
|
6441
6413
|
export interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -6453,7 +6425,7 @@ export interface JsonApiThemeIn {
|
|
|
6453
6425
|
* API identifier of an object
|
|
6454
6426
|
*/
|
|
6455
6427
|
id: string;
|
|
6456
|
-
attributes:
|
|
6428
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
6457
6429
|
}
|
|
6458
6430
|
export type JsonApiThemeInTypeEnum = "theme";
|
|
6459
6431
|
export interface JsonApiThemeInDocument {
|
|
@@ -6471,7 +6443,7 @@ export interface JsonApiThemeOut {
|
|
|
6471
6443
|
* API identifier of an object
|
|
6472
6444
|
*/
|
|
6473
6445
|
id: string;
|
|
6474
|
-
attributes:
|
|
6446
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
6475
6447
|
}
|
|
6476
6448
|
export type JsonApiThemeOutTypeEnum = "theme";
|
|
6477
6449
|
export interface JsonApiThemeOutDocument {
|
|
@@ -6484,7 +6456,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
6484
6456
|
export interface JsonApiThemeOutList {
|
|
6485
6457
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
6486
6458
|
links?: ListLinks;
|
|
6487
|
-
meta?:
|
|
6459
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6488
6460
|
}
|
|
6489
6461
|
export interface JsonApiThemeOutWithLinks {
|
|
6490
6462
|
/**
|
|
@@ -6495,7 +6467,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
6495
6467
|
* API identifier of an object
|
|
6496
6468
|
*/
|
|
6497
6469
|
id: string;
|
|
6498
|
-
attributes:
|
|
6470
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
6499
6471
|
links?: ObjectLinks;
|
|
6500
6472
|
}
|
|
6501
6473
|
export type JsonApiThemeOutWithLinksTypeEnum = "theme";
|
|
@@ -6529,17 +6501,13 @@ export interface JsonApiUserDataFilterIn {
|
|
|
6529
6501
|
* API identifier of an object
|
|
6530
6502
|
*/
|
|
6531
6503
|
id: string;
|
|
6532
|
-
attributes:
|
|
6533
|
-
relationships?:
|
|
6504
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
6505
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
6534
6506
|
}
|
|
6535
6507
|
export type JsonApiUserDataFilterInTypeEnum = "userDataFilter";
|
|
6536
6508
|
export interface JsonApiUserDataFilterInDocument {
|
|
6537
6509
|
data: JsonApiUserDataFilterIn;
|
|
6538
6510
|
}
|
|
6539
|
-
export interface JsonApiUserDataFilterInRelationships {
|
|
6540
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
6541
|
-
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
6542
|
-
}
|
|
6543
6511
|
/**
|
|
6544
6512
|
* JSON:API representation of userDataFilter entity.
|
|
6545
6513
|
*/
|
|
@@ -6552,18 +6520,11 @@ export interface JsonApiUserDataFilterOut {
|
|
|
6552
6520
|
* API identifier of an object
|
|
6553
6521
|
*/
|
|
6554
6522
|
id: string;
|
|
6555
|
-
meta?:
|
|
6556
|
-
attributes:
|
|
6523
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6524
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
6557
6525
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
6558
6526
|
}
|
|
6559
6527
|
export type JsonApiUserDataFilterOutTypeEnum = "userDataFilter";
|
|
6560
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
6561
|
-
title?: string;
|
|
6562
|
-
description?: string;
|
|
6563
|
-
tags?: Array<string>;
|
|
6564
|
-
areRelationsValid?: boolean;
|
|
6565
|
-
maql: string;
|
|
6566
|
-
}
|
|
6567
6528
|
export interface JsonApiUserDataFilterOutDocument {
|
|
6568
6529
|
data: JsonApiUserDataFilterOut;
|
|
6569
6530
|
links?: ObjectLinks;
|
|
@@ -6582,23 +6543,20 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
6582
6543
|
export interface JsonApiUserDataFilterOutList {
|
|
6583
6544
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
6584
6545
|
links?: ListLinks;
|
|
6585
|
-
meta?:
|
|
6546
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6586
6547
|
/**
|
|
6587
6548
|
* Included resources
|
|
6588
6549
|
*/
|
|
6589
6550
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
6590
6551
|
}
|
|
6591
6552
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
6592
|
-
user?:
|
|
6593
|
-
userGroup?:
|
|
6594
|
-
facts?:
|
|
6595
|
-
attributes?:
|
|
6553
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
6554
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
6555
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
6556
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
6596
6557
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
6597
6558
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
6598
|
-
datasets?:
|
|
6599
|
-
}
|
|
6600
|
-
export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
6601
|
-
data: JsonApiUserGroupLinkage | null;
|
|
6559
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
6602
6560
|
}
|
|
6603
6561
|
export interface JsonApiUserDataFilterOutWithLinks {
|
|
6604
6562
|
/**
|
|
@@ -6609,8 +6567,8 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
6609
6567
|
* API identifier of an object
|
|
6610
6568
|
*/
|
|
6611
6569
|
id: string;
|
|
6612
|
-
meta?:
|
|
6613
|
-
attributes:
|
|
6570
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6571
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
6614
6572
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
6615
6573
|
links?: ObjectLinks;
|
|
6616
6574
|
}
|
|
@@ -6628,7 +6586,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
6628
6586
|
*/
|
|
6629
6587
|
id: string;
|
|
6630
6588
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
6631
|
-
relationships?:
|
|
6589
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
6632
6590
|
}
|
|
6633
6591
|
export type JsonApiUserDataFilterPatchTypeEnum = "userDataFilter";
|
|
6634
6592
|
export interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -6653,13 +6611,24 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
6653
6611
|
* API identifier of an object
|
|
6654
6612
|
*/
|
|
6655
6613
|
id?: string;
|
|
6656
|
-
attributes:
|
|
6657
|
-
relationships?:
|
|
6614
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
6615
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
6658
6616
|
}
|
|
6659
6617
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = "userDataFilter";
|
|
6618
|
+
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
6619
|
+
title?: string;
|
|
6620
|
+
description?: string;
|
|
6621
|
+
tags?: Array<string>;
|
|
6622
|
+
areRelationsValid?: boolean;
|
|
6623
|
+
maql: string;
|
|
6624
|
+
}
|
|
6660
6625
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
6661
6626
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
6662
6627
|
}
|
|
6628
|
+
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
6629
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
6630
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
6631
|
+
}
|
|
6663
6632
|
/**
|
|
6664
6633
|
* JSON:API representation of userGroup entity.
|
|
6665
6634
|
*/
|
|
@@ -6720,7 +6689,7 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
6720
6689
|
export interface JsonApiUserGroupOutList {
|
|
6721
6690
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
6722
6691
|
links?: ListLinks;
|
|
6723
|
-
meta?:
|
|
6692
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6724
6693
|
/**
|
|
6725
6694
|
* Included resources
|
|
6726
6695
|
*/
|
|
@@ -6800,7 +6769,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
6800
6769
|
export interface JsonApiUserIdentifierOutList {
|
|
6801
6770
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
6802
6771
|
links?: ListLinks;
|
|
6803
|
-
meta?:
|
|
6772
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6804
6773
|
}
|
|
6805
6774
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
6806
6775
|
/**
|
|
@@ -6878,7 +6847,7 @@ export interface JsonApiUserOutDocument {
|
|
|
6878
6847
|
export interface JsonApiUserOutList {
|
|
6879
6848
|
data: Array<JsonApiUserOutWithLinks>;
|
|
6880
6849
|
links?: ListLinks;
|
|
6881
|
-
meta?:
|
|
6850
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6882
6851
|
/**
|
|
6883
6852
|
* Included resources
|
|
6884
6853
|
*/
|
|
@@ -6938,17 +6907,9 @@ export interface JsonApiUserSettingIn {
|
|
|
6938
6907
|
* API identifier of an object
|
|
6939
6908
|
*/
|
|
6940
6909
|
id: string;
|
|
6941
|
-
attributes?:
|
|
6910
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6942
6911
|
}
|
|
6943
6912
|
export type JsonApiUserSettingInTypeEnum = "userSetting";
|
|
6944
|
-
export interface JsonApiUserSettingInAttributes {
|
|
6945
|
-
/**
|
|
6946
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
6947
|
-
*/
|
|
6948
|
-
content?: object;
|
|
6949
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
6950
|
-
}
|
|
6951
|
-
export type JsonApiUserSettingInAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA";
|
|
6952
6913
|
export interface JsonApiUserSettingInDocument {
|
|
6953
6914
|
data: JsonApiUserSettingIn;
|
|
6954
6915
|
}
|
|
@@ -6964,7 +6925,7 @@ export interface JsonApiUserSettingOut {
|
|
|
6964
6925
|
* API identifier of an object
|
|
6965
6926
|
*/
|
|
6966
6927
|
id: string;
|
|
6967
|
-
attributes?:
|
|
6928
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6968
6929
|
}
|
|
6969
6930
|
export type JsonApiUserSettingOutTypeEnum = "userSetting";
|
|
6970
6931
|
export interface JsonApiUserSettingOutDocument {
|
|
@@ -6977,7 +6938,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
6977
6938
|
export interface JsonApiUserSettingOutList {
|
|
6978
6939
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
6979
6940
|
links?: ListLinks;
|
|
6980
|
-
meta?:
|
|
6941
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6981
6942
|
}
|
|
6982
6943
|
export interface JsonApiUserSettingOutWithLinks {
|
|
6983
6944
|
/**
|
|
@@ -6988,7 +6949,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
6988
6949
|
* API identifier of an object
|
|
6989
6950
|
*/
|
|
6990
6951
|
id: string;
|
|
6991
|
-
attributes?:
|
|
6952
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
6992
6953
|
links?: ObjectLinks;
|
|
6993
6954
|
}
|
|
6994
6955
|
export type JsonApiUserSettingOutWithLinksTypeEnum = "userSetting";
|
|
@@ -7004,20 +6965,9 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
7004
6965
|
* API identifier of an object
|
|
7005
6966
|
*/
|
|
7006
6967
|
id: string;
|
|
7007
|
-
attributes:
|
|
6968
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
7008
6969
|
}
|
|
7009
6970
|
export type JsonApiVisualizationObjectInTypeEnum = "visualizationObject";
|
|
7010
|
-
export interface JsonApiVisualizationObjectInAttributes {
|
|
7011
|
-
title?: string;
|
|
7012
|
-
description?: string;
|
|
7013
|
-
tags?: Array<string>;
|
|
7014
|
-
areRelationsValid?: boolean;
|
|
7015
|
-
/**
|
|
7016
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
7017
|
-
*/
|
|
7018
|
-
content: object;
|
|
7019
|
-
isHidden?: boolean;
|
|
7020
|
-
}
|
|
7021
6971
|
export interface JsonApiVisualizationObjectInDocument {
|
|
7022
6972
|
data: JsonApiVisualizationObjectIn;
|
|
7023
6973
|
}
|
|
@@ -7041,7 +6991,7 @@ export interface JsonApiVisualizationObjectOut {
|
|
|
7041
6991
|
* API identifier of an object
|
|
7042
6992
|
*/
|
|
7043
6993
|
id: string;
|
|
7044
|
-
meta?:
|
|
6994
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7045
6995
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
7046
6996
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
7047
6997
|
}
|
|
@@ -7073,24 +7023,56 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
7073
7023
|
export interface JsonApiVisualizationObjectOutList {
|
|
7074
7024
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
7075
7025
|
links?: ListLinks;
|
|
7076
|
-
meta?:
|
|
7026
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7077
7027
|
/**
|
|
7078
7028
|
* Included resources
|
|
7079
7029
|
*/
|
|
7080
7030
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
7081
7031
|
}
|
|
7032
|
+
export interface JsonApiVisualizationObjectOutMeta {
|
|
7033
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
7034
|
+
}
|
|
7035
|
+
export interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
7036
|
+
/**
|
|
7037
|
+
* defines type of the origin of the entity
|
|
7038
|
+
*/
|
|
7039
|
+
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
7040
|
+
/**
|
|
7041
|
+
* defines id of the workspace where the entity comes from
|
|
7042
|
+
*/
|
|
7043
|
+
originId: string;
|
|
7044
|
+
}
|
|
7045
|
+
export type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = "NATIVE" | "PARENT";
|
|
7082
7046
|
export interface JsonApiVisualizationObjectOutRelationships {
|
|
7083
7047
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7084
7048
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7085
|
-
facts?:
|
|
7086
|
-
attributes?:
|
|
7049
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7050
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7087
7051
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
7088
7052
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
7089
|
-
datasets?:
|
|
7053
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
7054
|
+
}
|
|
7055
|
+
export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
7056
|
+
/**
|
|
7057
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7058
|
+
*/
|
|
7059
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
7090
7060
|
}
|
|
7091
7061
|
export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
7092
7062
|
data: JsonApiUserIdentifierLinkage | null;
|
|
7093
7063
|
}
|
|
7064
|
+
export interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
7065
|
+
/**
|
|
7066
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7067
|
+
*/
|
|
7068
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
7069
|
+
}
|
|
7070
|
+
export interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
7071
|
+
/**
|
|
7072
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7073
|
+
*/
|
|
7074
|
+
data: Array<JsonApiFactLinkage>;
|
|
7075
|
+
}
|
|
7094
7076
|
export interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
7095
7077
|
/**
|
|
7096
7078
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -7112,7 +7094,7 @@ export interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
7112
7094
|
* API identifier of an object
|
|
7113
7095
|
*/
|
|
7114
7096
|
id: string;
|
|
7115
|
-
meta?:
|
|
7097
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7116
7098
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
7117
7099
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
7118
7100
|
links?: ObjectLinks;
|
|
@@ -7159,9 +7141,20 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
7159
7141
|
* API identifier of an object
|
|
7160
7142
|
*/
|
|
7161
7143
|
id?: string;
|
|
7162
|
-
attributes:
|
|
7144
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
7163
7145
|
}
|
|
7164
7146
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = "visualizationObject";
|
|
7147
|
+
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
7148
|
+
title?: string;
|
|
7149
|
+
description?: string;
|
|
7150
|
+
tags?: Array<string>;
|
|
7151
|
+
areRelationsValid?: boolean;
|
|
7152
|
+
/**
|
|
7153
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
7154
|
+
*/
|
|
7155
|
+
content: object;
|
|
7156
|
+
isHidden?: boolean;
|
|
7157
|
+
}
|
|
7165
7158
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
7166
7159
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
7167
7160
|
}
|
|
@@ -7191,20 +7184,20 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
7191
7184
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
7192
7185
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
7193
7186
|
links?: ListLinks;
|
|
7194
|
-
meta?:
|
|
7187
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7195
7188
|
/**
|
|
7196
7189
|
* Included resources
|
|
7197
7190
|
*/
|
|
7198
7191
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
7199
7192
|
}
|
|
7200
7193
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
7201
|
-
workspace?:
|
|
7202
|
-
notificationChannel?:
|
|
7203
|
-
analyticalDashboard?:
|
|
7194
|
+
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
7195
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
7196
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
7204
7197
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7205
7198
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7206
|
-
exportDefinitions?:
|
|
7207
|
-
recipients?:
|
|
7199
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
7200
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
7208
7201
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
7209
7202
|
}
|
|
7210
7203
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -7260,7 +7253,7 @@ export interface JsonApiWorkspaceDataFilterOut {
|
|
|
7260
7253
|
* API identifier of an object
|
|
7261
7254
|
*/
|
|
7262
7255
|
id: string;
|
|
7263
|
-
meta?:
|
|
7256
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7264
7257
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
7265
7258
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
7266
7259
|
}
|
|
@@ -7284,7 +7277,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
7284
7277
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
7285
7278
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
7286
7279
|
links?: ListLinks;
|
|
7287
|
-
meta?:
|
|
7280
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7288
7281
|
/**
|
|
7289
7282
|
* Included resources
|
|
7290
7283
|
*/
|
|
@@ -7308,7 +7301,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
7308
7301
|
* API identifier of an object
|
|
7309
7302
|
*/
|
|
7310
7303
|
id: string;
|
|
7311
|
-
meta?:
|
|
7304
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7312
7305
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
7313
7306
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
7314
7307
|
links?: ObjectLinks;
|
|
@@ -7345,13 +7338,24 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
7345
7338
|
* API identifier of an object
|
|
7346
7339
|
*/
|
|
7347
7340
|
id: string;
|
|
7348
|
-
attributes?:
|
|
7349
|
-
relationships?:
|
|
7341
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
7342
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
7350
7343
|
}
|
|
7351
7344
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = "workspaceDataFilterSetting";
|
|
7345
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
7346
|
+
title?: string;
|
|
7347
|
+
description?: string;
|
|
7348
|
+
filterValues?: Array<string>;
|
|
7349
|
+
}
|
|
7352
7350
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
7353
7351
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
7354
7352
|
}
|
|
7353
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
7354
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
7355
|
+
}
|
|
7356
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
7357
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
7358
|
+
}
|
|
7355
7359
|
/**
|
|
7356
7360
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7357
7361
|
*/
|
|
@@ -7372,16 +7376,11 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
7372
7376
|
* API identifier of an object
|
|
7373
7377
|
*/
|
|
7374
7378
|
id: string;
|
|
7375
|
-
meta?:
|
|
7376
|
-
attributes?:
|
|
7377
|
-
relationships?:
|
|
7379
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7380
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
7381
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
7378
7382
|
}
|
|
7379
7383
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = "workspaceDataFilterSetting";
|
|
7380
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
7381
|
-
title?: string;
|
|
7382
|
-
description?: string;
|
|
7383
|
-
filterValues?: Array<string>;
|
|
7384
|
-
}
|
|
7385
7384
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
7386
7385
|
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
7387
7386
|
links?: ObjectLinks;
|
|
@@ -7396,18 +7395,12 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
7396
7395
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
7397
7396
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
7398
7397
|
links?: ListLinks;
|
|
7399
|
-
meta?:
|
|
7398
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7400
7399
|
/**
|
|
7401
7400
|
* Included resources
|
|
7402
7401
|
*/
|
|
7403
7402
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
7404
7403
|
}
|
|
7405
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
7406
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
7407
|
-
}
|
|
7408
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
7409
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
7410
|
-
}
|
|
7411
7404
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
7412
7405
|
/**
|
|
7413
7406
|
* Object type
|
|
@@ -7417,9 +7410,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
7417
7410
|
* API identifier of an object
|
|
7418
7411
|
*/
|
|
7419
7412
|
id: string;
|
|
7420
|
-
meta?:
|
|
7421
|
-
attributes?:
|
|
7422
|
-
relationships?:
|
|
7413
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7414
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
7415
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
7423
7416
|
links?: ObjectLinks;
|
|
7424
7417
|
}
|
|
7425
7418
|
export type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = "workspaceDataFilterSetting";
|
|
@@ -7435,8 +7428,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
7435
7428
|
* API identifier of an object
|
|
7436
7429
|
*/
|
|
7437
7430
|
id: string;
|
|
7438
|
-
attributes?:
|
|
7439
|
-
relationships?:
|
|
7431
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
7432
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
7440
7433
|
}
|
|
7441
7434
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = "workspaceDataFilterSetting";
|
|
7442
7435
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -7454,11 +7447,39 @@ export interface JsonApiWorkspaceIn {
|
|
|
7454
7447
|
* API identifier of an object
|
|
7455
7448
|
*/
|
|
7456
7449
|
id: string;
|
|
7457
|
-
attributes?:
|
|
7458
|
-
relationships?:
|
|
7450
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
7451
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
7459
7452
|
}
|
|
7460
7453
|
export type JsonApiWorkspaceInTypeEnum = "workspace";
|
|
7461
|
-
export interface
|
|
7454
|
+
export interface JsonApiWorkspaceInDocument {
|
|
7455
|
+
data: JsonApiWorkspaceIn;
|
|
7456
|
+
}
|
|
7457
|
+
/**
|
|
7458
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7459
|
+
*/
|
|
7460
|
+
export interface JsonApiWorkspaceLinkage {
|
|
7461
|
+
id: string;
|
|
7462
|
+
type: JsonApiWorkspaceLinkageTypeEnum;
|
|
7463
|
+
}
|
|
7464
|
+
export type JsonApiWorkspaceLinkageTypeEnum = "workspace";
|
|
7465
|
+
/**
|
|
7466
|
+
* JSON:API representation of workspace entity.
|
|
7467
|
+
*/
|
|
7468
|
+
export interface JsonApiWorkspaceOut {
|
|
7469
|
+
/**
|
|
7470
|
+
* Object type
|
|
7471
|
+
*/
|
|
7472
|
+
type: JsonApiWorkspaceOutTypeEnum;
|
|
7473
|
+
/**
|
|
7474
|
+
* API identifier of an object
|
|
7475
|
+
*/
|
|
7476
|
+
id: string;
|
|
7477
|
+
meta?: JsonApiWorkspaceOutMeta;
|
|
7478
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
7479
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
7480
|
+
}
|
|
7481
|
+
export type JsonApiWorkspaceOutTypeEnum = "workspace";
|
|
7482
|
+
export interface JsonApiWorkspaceOutAttributes {
|
|
7462
7483
|
name?: string | null;
|
|
7463
7484
|
/**
|
|
7464
7485
|
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
@@ -7475,12 +7496,12 @@ export interface JsonApiWorkspaceInAttributes {
|
|
|
7475
7496
|
*/
|
|
7476
7497
|
prefix?: string | null;
|
|
7477
7498
|
cacheExtraLimit?: number;
|
|
7478
|
-
dataSource?:
|
|
7499
|
+
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
7479
7500
|
}
|
|
7480
7501
|
/**
|
|
7481
7502
|
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
7482
7503
|
*/
|
|
7483
|
-
export interface
|
|
7504
|
+
export interface JsonApiWorkspaceOutAttributesDataSource {
|
|
7484
7505
|
/**
|
|
7485
7506
|
* The ID of the used data source.
|
|
7486
7507
|
*/
|
|
@@ -7490,40 +7511,6 @@ export interface JsonApiWorkspaceInAttributesDataSource {
|
|
|
7490
7511
|
*/
|
|
7491
7512
|
schemaPath?: Array<string>;
|
|
7492
7513
|
}
|
|
7493
|
-
export interface JsonApiWorkspaceInDocument {
|
|
7494
|
-
data: JsonApiWorkspaceIn;
|
|
7495
|
-
}
|
|
7496
|
-
export interface JsonApiWorkspaceInRelationships {
|
|
7497
|
-
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
7498
|
-
}
|
|
7499
|
-
export interface JsonApiWorkspaceInRelationshipsParent {
|
|
7500
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
7501
|
-
}
|
|
7502
|
-
/**
|
|
7503
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7504
|
-
*/
|
|
7505
|
-
export interface JsonApiWorkspaceLinkage {
|
|
7506
|
-
id: string;
|
|
7507
|
-
type: JsonApiWorkspaceLinkageTypeEnum;
|
|
7508
|
-
}
|
|
7509
|
-
export type JsonApiWorkspaceLinkageTypeEnum = "workspace";
|
|
7510
|
-
/**
|
|
7511
|
-
* JSON:API representation of workspace entity.
|
|
7512
|
-
*/
|
|
7513
|
-
export interface JsonApiWorkspaceOut {
|
|
7514
|
-
/**
|
|
7515
|
-
* Object type
|
|
7516
|
-
*/
|
|
7517
|
-
type: JsonApiWorkspaceOutTypeEnum;
|
|
7518
|
-
/**
|
|
7519
|
-
* API identifier of an object
|
|
7520
|
-
*/
|
|
7521
|
-
id: string;
|
|
7522
|
-
meta?: JsonApiWorkspaceOutMeta;
|
|
7523
|
-
attributes?: JsonApiWorkspaceInAttributes;
|
|
7524
|
-
relationships?: JsonApiWorkspaceInRelationships;
|
|
7525
|
-
}
|
|
7526
|
-
export type JsonApiWorkspaceOutTypeEnum = "workspace";
|
|
7527
7514
|
export interface JsonApiWorkspaceOutDocument {
|
|
7528
7515
|
data: JsonApiWorkspaceOut;
|
|
7529
7516
|
links?: ObjectLinks;
|
|
@@ -7538,7 +7525,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
7538
7525
|
export interface JsonApiWorkspaceOutList {
|
|
7539
7526
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
7540
7527
|
links?: ListLinks;
|
|
7541
|
-
meta?:
|
|
7528
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7542
7529
|
/**
|
|
7543
7530
|
* Included resources
|
|
7544
7531
|
*/
|
|
@@ -7580,6 +7567,12 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
|
|
|
7580
7567
|
*/
|
|
7581
7568
|
childrenCount: number;
|
|
7582
7569
|
}
|
|
7570
|
+
export interface JsonApiWorkspaceOutRelationships {
|
|
7571
|
+
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
7572
|
+
}
|
|
7573
|
+
export interface JsonApiWorkspaceOutRelationshipsParent {
|
|
7574
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
7575
|
+
}
|
|
7583
7576
|
export interface JsonApiWorkspaceOutWithLinks {
|
|
7584
7577
|
/**
|
|
7585
7578
|
* Object type
|
|
@@ -7590,8 +7583,8 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
7590
7583
|
*/
|
|
7591
7584
|
id: string;
|
|
7592
7585
|
meta?: JsonApiWorkspaceOutMeta;
|
|
7593
|
-
attributes?:
|
|
7594
|
-
relationships?:
|
|
7586
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
7587
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
7595
7588
|
links?: ObjectLinks;
|
|
7596
7589
|
}
|
|
7597
7590
|
export type JsonApiWorkspaceOutWithLinksTypeEnum = "workspace";
|
|
@@ -7607,8 +7600,8 @@ export interface JsonApiWorkspacePatch {
|
|
|
7607
7600
|
* API identifier of an object
|
|
7608
7601
|
*/
|
|
7609
7602
|
id: string;
|
|
7610
|
-
attributes?:
|
|
7611
|
-
relationships?:
|
|
7603
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
7604
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
7612
7605
|
}
|
|
7613
7606
|
export type JsonApiWorkspacePatchTypeEnum = "workspace";
|
|
7614
7607
|
export interface JsonApiWorkspacePatchDocument {
|
|
@@ -7626,7 +7619,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
7626
7619
|
* API identifier of an object
|
|
7627
7620
|
*/
|
|
7628
7621
|
id: string;
|
|
7629
|
-
attributes?:
|
|
7622
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
7630
7623
|
}
|
|
7631
7624
|
export type JsonApiWorkspaceSettingInTypeEnum = "workspaceSetting";
|
|
7632
7625
|
export interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -7644,8 +7637,8 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
7644
7637
|
* API identifier of an object
|
|
7645
7638
|
*/
|
|
7646
7639
|
id: string;
|
|
7647
|
-
meta?:
|
|
7648
|
-
attributes?:
|
|
7640
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7641
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
7649
7642
|
}
|
|
7650
7643
|
export type JsonApiWorkspaceSettingOutTypeEnum = "workspaceSetting";
|
|
7651
7644
|
export interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -7658,7 +7651,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
7658
7651
|
export interface JsonApiWorkspaceSettingOutList {
|
|
7659
7652
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
7660
7653
|
links?: ListLinks;
|
|
7661
|
-
meta?:
|
|
7654
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7662
7655
|
}
|
|
7663
7656
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
7664
7657
|
/**
|
|
@@ -7669,8 +7662,8 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
7669
7662
|
* API identifier of an object
|
|
7670
7663
|
*/
|
|
7671
7664
|
id: string;
|
|
7672
|
-
meta?:
|
|
7673
|
-
attributes?:
|
|
7665
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7666
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
7674
7667
|
links?: ObjectLinks;
|
|
7675
7668
|
}
|
|
7676
7669
|
export type JsonApiWorkspaceSettingOutWithLinksTypeEnum = "workspaceSetting";
|
|
@@ -7686,7 +7679,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
7686
7679
|
* API identifier of an object
|
|
7687
7680
|
*/
|
|
7688
7681
|
id: string;
|
|
7689
|
-
attributes?:
|
|
7682
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
7690
7683
|
}
|
|
7691
7684
|
export type JsonApiWorkspaceSettingPatchTypeEnum = "workspaceSetting";
|
|
7692
7685
|
export interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -7704,9 +7697,17 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
7704
7697
|
* API identifier of an object
|
|
7705
7698
|
*/
|
|
7706
7699
|
id?: string;
|
|
7707
|
-
attributes?:
|
|
7700
|
+
attributes?: JsonApiWorkspaceSettingPostOptionalIdAttributes;
|
|
7708
7701
|
}
|
|
7709
7702
|
export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = "workspaceSetting";
|
|
7703
|
+
export interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
|
|
7704
|
+
/**
|
|
7705
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7706
|
+
*/
|
|
7707
|
+
content?: object;
|
|
7708
|
+
type?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
|
|
7709
|
+
}
|
|
7710
|
+
export type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = "TIMEZONE" | "ACTIVE_THEME" | "ACTIVE_COLOR_PALETTE" | "ACTIVE_LLM_ENDPOINT" | "WHITE_LABELING" | "LOCALE" | "METADATA_LOCALE" | "FORMAT_LOCALE" | "MAPBOX_TOKEN" | "AG_GRID_TOKEN" | "WEEK_START" | "FISCAL_YEAR" | "SHOW_HIDDEN_CATALOG_ITEMS" | "OPERATOR_OVERRIDES" | "TIMEZONE_VALIDATION_ENABLED" | "OPENAI_CONFIG" | "ENABLE_FILE_ANALYTICS" | "ALERT" | "SEPARATORS" | "DATE_FILTER_CONFIG" | "JIT_PROVISIONING" | "JWT_JIT_PROVISIONING" | "DASHBOARD_FILTERS_APPLY_MODE" | "ENABLE_SLIDES_EXPORT" | "ENABLE_SNAPSHOT_EXPORT" | "AI_RATE_LIMIT" | "ATTACHMENT_SIZE_LIMIT" | "ATTACHMENT_LINK_TTL" | "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE" | "ENABLE_DRILL_TO_URL_BY_DEFAULT" | "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS" | "ENABLE_AUTOMATION_EVALUATION_MODE" | "ENABLE_ACCESSIBILITY_MODE" | "REGISTERED_PLUGGABLE_APPLICATIONS" | "DATA_LOCALE" | "LDM_DEFAULT_LOCALE" | "EXPORT_RESULT_POLLING_TIMEOUT_SECONDS" | "MAX_ZOOM_LEVEL" | "SORT_CASE_SENSITIVE" | "METRIC_FORMAT_OVERRIDE" | "ENABLE_AI_ON_DATA";
|
|
7710
7711
|
export interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
7711
7712
|
data: JsonApiWorkspaceSettingPostOptionalId;
|
|
7712
7713
|
}
|