@gooddata/api-client-tiger 10.43.0-alpha.4 → 10.43.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +784 -716
- package/esm/generated/automation-json-api/api.d.ts +28 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +9 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +28 -5
- package/esm/generated/metadata-json-api/api.d.ts +687 -657
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +69 -54
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8972 -8935
- package/package.json +3 -3
|
@@ -1094,6 +1094,10 @@ export interface DeclarativeAutomation {
|
|
|
1094
1094
|
* Current state of the automation.
|
|
1095
1095
|
*/
|
|
1096
1096
|
state?: DeclarativeAutomationStateEnum;
|
|
1097
|
+
/**
|
|
1098
|
+
* Specify automation evaluation mode.
|
|
1099
|
+
*/
|
|
1100
|
+
evaluationMode?: DeclarativeAutomationEvaluationModeEnum;
|
|
1097
1101
|
schedule?: AutomationSchedule;
|
|
1098
1102
|
alert?: AutomationAlert;
|
|
1099
1103
|
tabularExports?: Array<AutomationTabularExport>;
|
|
@@ -1126,6 +1130,11 @@ export declare const DeclarativeAutomationStateEnum: {
|
|
|
1126
1130
|
readonly PAUSED: "PAUSED";
|
|
1127
1131
|
};
|
|
1128
1132
|
export type DeclarativeAutomationStateEnum = (typeof DeclarativeAutomationStateEnum)[keyof typeof DeclarativeAutomationStateEnum];
|
|
1133
|
+
export declare const DeclarativeAutomationEvaluationModeEnum: {
|
|
1134
|
+
readonly SHARED: "SHARED";
|
|
1135
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
1136
|
+
};
|
|
1137
|
+
export type DeclarativeAutomationEvaluationModeEnum = (typeof DeclarativeAutomationEvaluationModeEnum)[keyof typeof DeclarativeAutomationEvaluationModeEnum];
|
|
1129
1138
|
/**
|
|
1130
1139
|
* Color palette and its properties.
|
|
1131
1140
|
*/
|
|
@@ -2180,6 +2189,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
2180
2189
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
2181
2190
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
2182
2191
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
2192
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
2183
2193
|
};
|
|
2184
2194
|
export type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
2185
2195
|
export interface DeclarativeSingleWorkspacePermission {
|
|
@@ -3095,7 +3105,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
3095
3105
|
* API identifier of an object
|
|
3096
3106
|
*/
|
|
3097
3107
|
id: string;
|
|
3098
|
-
meta?:
|
|
3108
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3099
3109
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3100
3110
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3101
3111
|
}
|
|
@@ -3145,14 +3155,14 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3145
3155
|
export interface JsonApiAggregatedFactOutList {
|
|
3146
3156
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3147
3157
|
links?: ListLinks;
|
|
3148
|
-
meta?:
|
|
3158
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3149
3159
|
/**
|
|
3150
3160
|
* Included resources
|
|
3151
3161
|
*/
|
|
3152
3162
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
3153
3163
|
}
|
|
3154
3164
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
3155
|
-
dataset?:
|
|
3165
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3156
3166
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
3157
3167
|
}
|
|
3158
3168
|
export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
|
|
@@ -3167,7 +3177,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
|
|
|
3167
3177
|
* API identifier of an object
|
|
3168
3178
|
*/
|
|
3169
3179
|
id: string;
|
|
3170
|
-
meta?:
|
|
3180
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3171
3181
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3172
3182
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3173
3183
|
links?: ObjectLinks;
|
|
@@ -3188,7 +3198,7 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3188
3198
|
* API identifier of an object
|
|
3189
3199
|
*/
|
|
3190
3200
|
id: string;
|
|
3191
|
-
attributes:
|
|
3201
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
3192
3202
|
}
|
|
3193
3203
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3194
3204
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -3221,13 +3231,25 @@ export interface JsonApiAnalyticalDashboardOut {
|
|
|
3221
3231
|
*/
|
|
3222
3232
|
id: string;
|
|
3223
3233
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3224
|
-
attributes:
|
|
3234
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
3225
3235
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3226
3236
|
}
|
|
3227
3237
|
export declare const JsonApiAnalyticalDashboardOutTypeEnum: {
|
|
3228
3238
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3229
3239
|
};
|
|
3230
3240
|
export type JsonApiAnalyticalDashboardOutTypeEnum = (typeof JsonApiAnalyticalDashboardOutTypeEnum)[keyof typeof JsonApiAnalyticalDashboardOutTypeEnum];
|
|
3241
|
+
export interface JsonApiAnalyticalDashboardOutAttributes {
|
|
3242
|
+
title?: string;
|
|
3243
|
+
description?: string;
|
|
3244
|
+
tags?: Array<string>;
|
|
3245
|
+
areRelationsValid?: boolean;
|
|
3246
|
+
/**
|
|
3247
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3248
|
+
*/
|
|
3249
|
+
content: object;
|
|
3250
|
+
createdAt?: string;
|
|
3251
|
+
modifiedAt?: string;
|
|
3252
|
+
}
|
|
3231
3253
|
export interface JsonApiAnalyticalDashboardOutDocument {
|
|
3232
3254
|
data: JsonApiAnalyticalDashboardOut;
|
|
3233
3255
|
links?: ObjectLinks;
|
|
@@ -3246,7 +3268,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3246
3268
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3247
3269
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3248
3270
|
links?: ListLinks;
|
|
3249
|
-
meta?:
|
|
3271
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3250
3272
|
/**
|
|
3251
3273
|
* Included resources
|
|
3252
3274
|
*/
|
|
@@ -3257,7 +3279,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
3257
3279
|
* List of valid permissions for a logged-in user.
|
|
3258
3280
|
*/
|
|
3259
3281
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
3260
|
-
origin?:
|
|
3282
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
3261
3283
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
3262
3284
|
}
|
|
3263
3285
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
@@ -3272,14 +3294,29 @@ export interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
3272
3294
|
*/
|
|
3273
3295
|
private: boolean;
|
|
3274
3296
|
}
|
|
3297
|
+
export interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
3298
|
+
/**
|
|
3299
|
+
* defines type of the origin of the entity
|
|
3300
|
+
*/
|
|
3301
|
+
originType: JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
3302
|
+
/**
|
|
3303
|
+
* defines id of the workspace where the entity comes from
|
|
3304
|
+
*/
|
|
3305
|
+
originId: string;
|
|
3306
|
+
}
|
|
3307
|
+
export declare const JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum: {
|
|
3308
|
+
readonly NATIVE: "NATIVE";
|
|
3309
|
+
readonly PARENT: "PARENT";
|
|
3310
|
+
};
|
|
3311
|
+
export type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = (typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum];
|
|
3275
3312
|
export interface JsonApiAnalyticalDashboardOutRelationships {
|
|
3276
|
-
createdBy?:
|
|
3277
|
-
modifiedBy?:
|
|
3313
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3314
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3278
3315
|
visualizationObjects?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
3279
3316
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
3280
|
-
labels?:
|
|
3281
|
-
metrics?:
|
|
3282
|
-
datasets?:
|
|
3317
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
3318
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
3319
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
3283
3320
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
3284
3321
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
3285
3322
|
}
|
|
@@ -3289,18 +3326,39 @@ export interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards
|
|
|
3289
3326
|
*/
|
|
3290
3327
|
data: Array<JsonApiAnalyticalDashboardLinkage>;
|
|
3291
3328
|
}
|
|
3329
|
+
export interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
3330
|
+
data: JsonApiUserIdentifierLinkage | null;
|
|
3331
|
+
}
|
|
3292
3332
|
export interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
3293
3333
|
/**
|
|
3294
3334
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3295
3335
|
*/
|
|
3296
3336
|
data: Array<JsonApiDashboardPluginLinkage>;
|
|
3297
3337
|
}
|
|
3338
|
+
export interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
3339
|
+
/**
|
|
3340
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3341
|
+
*/
|
|
3342
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
3343
|
+
}
|
|
3298
3344
|
export interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
3299
3345
|
/**
|
|
3300
3346
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3301
3347
|
*/
|
|
3302
3348
|
data: Array<JsonApiFilterContextLinkage>;
|
|
3303
3349
|
}
|
|
3350
|
+
export interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
3351
|
+
/**
|
|
3352
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3353
|
+
*/
|
|
3354
|
+
data: Array<JsonApiLabelLinkage>;
|
|
3355
|
+
}
|
|
3356
|
+
export interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
3357
|
+
/**
|
|
3358
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3359
|
+
*/
|
|
3360
|
+
data: Array<JsonApiMetricLinkage>;
|
|
3361
|
+
}
|
|
3304
3362
|
export interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
3305
3363
|
/**
|
|
3306
3364
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -3317,7 +3375,7 @@ export interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
3317
3375
|
*/
|
|
3318
3376
|
id: string;
|
|
3319
3377
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3320
|
-
attributes:
|
|
3378
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
3321
3379
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3322
3380
|
links?: ObjectLinks;
|
|
3323
3381
|
}
|
|
@@ -3368,12 +3426,22 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3368
3426
|
* API identifier of an object
|
|
3369
3427
|
*/
|
|
3370
3428
|
id?: string;
|
|
3371
|
-
attributes:
|
|
3429
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
3372
3430
|
}
|
|
3373
3431
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3374
3432
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3375
3433
|
};
|
|
3376
3434
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
|
|
3435
|
+
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
3436
|
+
title?: string;
|
|
3437
|
+
description?: string;
|
|
3438
|
+
tags?: Array<string>;
|
|
3439
|
+
areRelationsValid?: boolean;
|
|
3440
|
+
/**
|
|
3441
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3442
|
+
*/
|
|
3443
|
+
content: object;
|
|
3444
|
+
}
|
|
3377
3445
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
3378
3446
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
3379
3447
|
}
|
|
@@ -3431,7 +3499,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3431
3499
|
export interface JsonApiApiTokenOutList {
|
|
3432
3500
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3433
3501
|
links?: ListLinks;
|
|
3434
|
-
meta?:
|
|
3502
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3435
3503
|
}
|
|
3436
3504
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3437
3505
|
/**
|
|
@@ -3503,7 +3571,7 @@ export interface JsonApiAttributeHierarchyOut {
|
|
|
3503
3571
|
* API identifier of an object
|
|
3504
3572
|
*/
|
|
3505
3573
|
id: string;
|
|
3506
|
-
meta?:
|
|
3574
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3507
3575
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3508
3576
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3509
3577
|
}
|
|
@@ -3541,16 +3609,16 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3541
3609
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3542
3610
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3543
3611
|
links?: ListLinks;
|
|
3544
|
-
meta?:
|
|
3612
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3545
3613
|
/**
|
|
3546
3614
|
* Included resources
|
|
3547
3615
|
*/
|
|
3548
3616
|
included?: Array<JsonApiAttributeHierarchyOutIncludes>;
|
|
3549
3617
|
}
|
|
3550
3618
|
export interface JsonApiAttributeHierarchyOutRelationships {
|
|
3551
|
-
createdBy?:
|
|
3552
|
-
modifiedBy?:
|
|
3553
|
-
attributes?:
|
|
3619
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3620
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3621
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
3554
3622
|
}
|
|
3555
3623
|
export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
3556
3624
|
/**
|
|
@@ -3561,7 +3629,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
3561
3629
|
* API identifier of an object
|
|
3562
3630
|
*/
|
|
3563
3631
|
id: string;
|
|
3564
|
-
meta?:
|
|
3632
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3565
3633
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3566
3634
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3567
3635
|
links?: ObjectLinks;
|
|
@@ -3614,7 +3682,7 @@ export interface JsonApiAttributeOut {
|
|
|
3614
3682
|
* API identifier of an object
|
|
3615
3683
|
*/
|
|
3616
3684
|
id: string;
|
|
3617
|
-
meta?:
|
|
3685
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3618
3686
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3619
3687
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3620
3688
|
}
|
|
@@ -3685,16 +3753,16 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3685
3753
|
export interface JsonApiAttributeOutList {
|
|
3686
3754
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3687
3755
|
links?: ListLinks;
|
|
3688
|
-
meta?:
|
|
3756
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3689
3757
|
/**
|
|
3690
3758
|
* Included resources
|
|
3691
3759
|
*/
|
|
3692
3760
|
included?: Array<JsonApiAttributeOutIncludes>;
|
|
3693
3761
|
}
|
|
3694
3762
|
export interface JsonApiAttributeOutRelationships {
|
|
3695
|
-
dataset?:
|
|
3763
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3696
3764
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3697
|
-
labels?:
|
|
3765
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
3698
3766
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
3699
3767
|
}
|
|
3700
3768
|
export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
@@ -3703,6 +3771,9 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
3703
3771
|
*/
|
|
3704
3772
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
3705
3773
|
}
|
|
3774
|
+
export interface JsonApiAttributeOutRelationshipsDataset {
|
|
3775
|
+
data: JsonApiDatasetLinkage | null;
|
|
3776
|
+
}
|
|
3706
3777
|
export interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
3707
3778
|
data: JsonApiLabelLinkage | null;
|
|
3708
3779
|
}
|
|
@@ -3715,7 +3786,7 @@ export interface JsonApiAttributeOutWithLinks {
|
|
|
3715
3786
|
* API identifier of an object
|
|
3716
3787
|
*/
|
|
3717
3788
|
id: string;
|
|
3718
|
-
meta?:
|
|
3789
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3719
3790
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3720
3791
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3721
3792
|
links?: ObjectLinks;
|
|
@@ -3752,37 +3823,46 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3752
3823
|
* Additional details to be included in the automated message.
|
|
3753
3824
|
*/
|
|
3754
3825
|
details?: object;
|
|
3755
|
-
metadata?:
|
|
3826
|
+
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
3756
3827
|
/**
|
|
3757
3828
|
* Current state of the automation.
|
|
3758
3829
|
*/
|
|
3759
3830
|
state?: JsonApiAutomationInAttributesStateEnum;
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3831
|
+
/**
|
|
3832
|
+
* Specify automation evaluation mode.
|
|
3833
|
+
*/
|
|
3834
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3835
|
+
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
3836
|
+
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
3837
|
+
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
3838
|
+
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
3839
|
+
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
3840
|
+
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
3841
|
+
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
3842
|
+
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
3768
3843
|
/**
|
|
3769
3844
|
* External recipients of the automation action results.
|
|
3770
3845
|
*/
|
|
3771
|
-
externalRecipients?: Array<
|
|
3846
|
+
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
3772
3847
|
}
|
|
3773
3848
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3774
3849
|
readonly ACTIVE: "ACTIVE";
|
|
3775
3850
|
readonly PAUSED: "PAUSED";
|
|
3776
3851
|
};
|
|
3777
3852
|
export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
3853
|
+
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
3854
|
+
readonly SHARED: "SHARED";
|
|
3855
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3856
|
+
};
|
|
3857
|
+
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3778
3858
|
export interface JsonApiAutomationInDocument {
|
|
3779
3859
|
data: JsonApiAutomationIn;
|
|
3780
3860
|
}
|
|
3781
3861
|
export interface JsonApiAutomationInRelationships {
|
|
3782
|
-
notificationChannel?:
|
|
3862
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
3783
3863
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
3784
|
-
exportDefinitions?:
|
|
3785
|
-
recipients?:
|
|
3864
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
3865
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
3786
3866
|
}
|
|
3787
3867
|
/**
|
|
3788
3868
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
@@ -3807,110 +3887,14 @@ export interface JsonApiAutomationOut {
|
|
|
3807
3887
|
* API identifier of an object
|
|
3808
3888
|
*/
|
|
3809
3889
|
id: string;
|
|
3810
|
-
meta?:
|
|
3811
|
-
attributes?:
|
|
3890
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3891
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
3812
3892
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3813
3893
|
}
|
|
3814
3894
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
3815
3895
|
readonly AUTOMATION: "automation";
|
|
3816
3896
|
};
|
|
3817
3897
|
export type JsonApiAutomationOutTypeEnum = (typeof JsonApiAutomationOutTypeEnum)[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
3818
|
-
export interface JsonApiAutomationOutAttributes {
|
|
3819
|
-
title?: string;
|
|
3820
|
-
description?: string;
|
|
3821
|
-
tags?: Array<string>;
|
|
3822
|
-
areRelationsValid?: boolean;
|
|
3823
|
-
/**
|
|
3824
|
-
* Additional details to be included in the automated message.
|
|
3825
|
-
*/
|
|
3826
|
-
details?: object;
|
|
3827
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
3828
|
-
/**
|
|
3829
|
-
* Current state of the automation.
|
|
3830
|
-
*/
|
|
3831
|
-
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
3832
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
3833
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
3834
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
3835
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
3836
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
3837
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
3838
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
3839
|
-
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
3840
|
-
/**
|
|
3841
|
-
* External recipients of the automation action results.
|
|
3842
|
-
*/
|
|
3843
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
3844
|
-
createdAt?: string;
|
|
3845
|
-
modifiedAt?: string;
|
|
3846
|
-
}
|
|
3847
|
-
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
3848
|
-
readonly ACTIVE: "ACTIVE";
|
|
3849
|
-
readonly PAUSED: "PAUSED";
|
|
3850
|
-
};
|
|
3851
|
-
export type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
3852
|
-
export interface JsonApiAutomationOutAttributesAlert {
|
|
3853
|
-
execution: AlertAfm;
|
|
3854
|
-
condition: AlertCondition;
|
|
3855
|
-
/**
|
|
3856
|
-
* 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.
|
|
3857
|
-
*/
|
|
3858
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
3859
|
-
}
|
|
3860
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
3861
|
-
readonly ALWAYS: "ALWAYS";
|
|
3862
|
-
readonly ONCE: "ONCE";
|
|
3863
|
-
};
|
|
3864
|
-
export type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
3865
|
-
export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
3866
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
3867
|
-
}
|
|
3868
|
-
export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
3869
|
-
/**
|
|
3870
|
-
* E-mail address to send notifications from.
|
|
3871
|
-
*/
|
|
3872
|
-
email: string;
|
|
3873
|
-
}
|
|
3874
|
-
export interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
3875
|
-
requestPayload: ImageExportRequest;
|
|
3876
|
-
}
|
|
3877
|
-
/**
|
|
3878
|
-
* Additional information for the automation.
|
|
3879
|
-
*/
|
|
3880
|
-
export interface JsonApiAutomationOutAttributesMetadata {
|
|
3881
|
-
widget?: string;
|
|
3882
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
3883
|
-
}
|
|
3884
|
-
export interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
3885
|
-
requestPayload: RawExportAutomationRequest;
|
|
3886
|
-
}
|
|
3887
|
-
export interface JsonApiAutomationOutAttributesSchedule {
|
|
3888
|
-
/**
|
|
3889
|
-
* 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.
|
|
3890
|
-
*/
|
|
3891
|
-
cron: string;
|
|
3892
|
-
/**
|
|
3893
|
-
* Human-readable description of the cron expression.
|
|
3894
|
-
*/
|
|
3895
|
-
cronDescription?: string;
|
|
3896
|
-
/**
|
|
3897
|
-
* Timezone in which the schedule is defined.
|
|
3898
|
-
*/
|
|
3899
|
-
timezone: string;
|
|
3900
|
-
/**
|
|
3901
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3902
|
-
*/
|
|
3903
|
-
firstRun?: string;
|
|
3904
|
-
}
|
|
3905
|
-
export interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
3906
|
-
requestPayload: SlidesExportRequest;
|
|
3907
|
-
}
|
|
3908
|
-
export interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
3909
|
-
requestPayload: TabularExportRequest;
|
|
3910
|
-
}
|
|
3911
|
-
export interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
3912
|
-
requestPayload: VisualExportRequest;
|
|
3913
|
-
}
|
|
3914
3898
|
export interface JsonApiAutomationOutDocument {
|
|
3915
3899
|
data: JsonApiAutomationOut;
|
|
3916
3900
|
links?: ObjectLinks;
|
|
@@ -3929,41 +3913,20 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
3929
3913
|
export interface JsonApiAutomationOutList {
|
|
3930
3914
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
3931
3915
|
links?: ListLinks;
|
|
3932
|
-
meta?:
|
|
3916
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3933
3917
|
/**
|
|
3934
3918
|
* Included resources
|
|
3935
3919
|
*/
|
|
3936
3920
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3937
3921
|
}
|
|
3938
3922
|
export interface JsonApiAutomationOutRelationships {
|
|
3939
|
-
notificationChannel?:
|
|
3923
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
3940
3924
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
3941
|
-
createdBy?:
|
|
3942
|
-
modifiedBy?:
|
|
3943
|
-
exportDefinitions?:
|
|
3944
|
-
recipients?:
|
|
3945
|
-
automationResults?:
|
|
3946
|
-
}
|
|
3947
|
-
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
3948
|
-
/**
|
|
3949
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3950
|
-
*/
|
|
3951
|
-
data: Array<JsonApiAutomationResultLinkage>;
|
|
3952
|
-
}
|
|
3953
|
-
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
3954
|
-
/**
|
|
3955
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3956
|
-
*/
|
|
3957
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3958
|
-
}
|
|
3959
|
-
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
3960
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
3961
|
-
}
|
|
3962
|
-
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
3963
|
-
/**
|
|
3964
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3965
|
-
*/
|
|
3966
|
-
data: Array<JsonApiUserLinkage>;
|
|
3925
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3926
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3927
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
3928
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
3929
|
+
automationResults?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
3967
3930
|
}
|
|
3968
3931
|
export interface JsonApiAutomationOutWithLinks {
|
|
3969
3932
|
/**
|
|
@@ -3974,8 +3937,8 @@ export interface JsonApiAutomationOutWithLinks {
|
|
|
3974
3937
|
* API identifier of an object
|
|
3975
3938
|
*/
|
|
3976
3939
|
id: string;
|
|
3977
|
-
meta?:
|
|
3978
|
-
attributes?:
|
|
3940
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
3941
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
3979
3942
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3980
3943
|
links?: ObjectLinks;
|
|
3981
3944
|
}
|
|
@@ -4128,10 +4091,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4128
4091
|
export interface JsonApiColorPaletteOutList {
|
|
4129
4092
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4130
4093
|
links?: ListLinks;
|
|
4131
|
-
meta?:
|
|
4132
|
-
}
|
|
4133
|
-
export interface JsonApiColorPaletteOutListMeta {
|
|
4134
|
-
page?: PageMetadata;
|
|
4094
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4135
4095
|
}
|
|
4136
4096
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4137
4097
|
/**
|
|
@@ -4189,19 +4149,12 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4189
4149
|
* API identifier of an object
|
|
4190
4150
|
*/
|
|
4191
4151
|
id: string;
|
|
4192
|
-
attributes?:
|
|
4152
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4193
4153
|
}
|
|
4194
4154
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4195
4155
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4196
4156
|
};
|
|
4197
4157
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4198
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4199
|
-
lastRotation?: string;
|
|
4200
|
-
/**
|
|
4201
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4202
|
-
*/
|
|
4203
|
-
rotationInterval?: string;
|
|
4204
|
-
}
|
|
4205
4158
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4206
4159
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4207
4160
|
}
|
|
@@ -4217,12 +4170,19 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4217
4170
|
* API identifier of an object
|
|
4218
4171
|
*/
|
|
4219
4172
|
id: string;
|
|
4220
|
-
attributes?:
|
|
4173
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4221
4174
|
}
|
|
4222
4175
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4223
4176
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4224
4177
|
};
|
|
4225
4178
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = (typeof JsonApiCookieSecurityConfigurationOutTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
4179
|
+
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
4180
|
+
lastRotation?: string;
|
|
4181
|
+
/**
|
|
4182
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4183
|
+
*/
|
|
4184
|
+
rotationInterval?: string;
|
|
4185
|
+
}
|
|
4226
4186
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
4227
4187
|
data: JsonApiCookieSecurityConfigurationOut;
|
|
4228
4188
|
links?: ObjectLinks;
|
|
@@ -4239,7 +4199,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4239
4199
|
* API identifier of an object
|
|
4240
4200
|
*/
|
|
4241
4201
|
id: string;
|
|
4242
|
-
attributes?:
|
|
4202
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4243
4203
|
}
|
|
4244
4204
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4245
4205
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4300,7 +4260,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4300
4260
|
export interface JsonApiCspDirectiveOutList {
|
|
4301
4261
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4302
4262
|
links?: ListLinks;
|
|
4303
|
-
meta?:
|
|
4263
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4304
4264
|
}
|
|
4305
4265
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4306
4266
|
/**
|
|
@@ -4354,7 +4314,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4354
4314
|
* API identifier of an object
|
|
4355
4315
|
*/
|
|
4356
4316
|
id: string;
|
|
4357
|
-
attributes:
|
|
4317
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4358
4318
|
}
|
|
4359
4319
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4360
4320
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4375,20 +4335,13 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4375
4335
|
* API identifier of an object
|
|
4376
4336
|
*/
|
|
4377
4337
|
id: string;
|
|
4378
|
-
meta?:
|
|
4379
|
-
attributes:
|
|
4338
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
4339
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4380
4340
|
}
|
|
4381
4341
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4382
4342
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4383
4343
|
};
|
|
4384
4344
|
export type JsonApiCustomApplicationSettingOutTypeEnum = (typeof JsonApiCustomApplicationSettingOutTypeEnum)[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
4385
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
4386
|
-
applicationName: string;
|
|
4387
|
-
/**
|
|
4388
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4389
|
-
*/
|
|
4390
|
-
content: object;
|
|
4391
|
-
}
|
|
4392
4345
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4393
4346
|
data: JsonApiCustomApplicationSettingOut;
|
|
4394
4347
|
links?: ObjectLinks;
|
|
@@ -4399,7 +4352,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4399
4352
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4400
4353
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4401
4354
|
links?: ListLinks;
|
|
4402
|
-
meta?:
|
|
4355
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4403
4356
|
}
|
|
4404
4357
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4405
4358
|
/**
|
|
@@ -4410,8 +4363,8 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4410
4363
|
* API identifier of an object
|
|
4411
4364
|
*/
|
|
4412
4365
|
id: string;
|
|
4413
|
-
meta?:
|
|
4414
|
-
attributes:
|
|
4366
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
4367
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4415
4368
|
links?: ObjectLinks;
|
|
4416
4369
|
}
|
|
4417
4370
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4458,12 +4411,19 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4458
4411
|
* API identifier of an object
|
|
4459
4412
|
*/
|
|
4460
4413
|
id?: string;
|
|
4461
|
-
attributes:
|
|
4414
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4462
4415
|
}
|
|
4463
4416
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4464
4417
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4465
4418
|
};
|
|
4466
4419
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
|
|
4420
|
+
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
4421
|
+
applicationName: string;
|
|
4422
|
+
/**
|
|
4423
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4424
|
+
*/
|
|
4425
|
+
content: object;
|
|
4426
|
+
}
|
|
4467
4427
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4468
4428
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
4469
4429
|
}
|
|
@@ -4479,22 +4439,12 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4479
4439
|
* API identifier of an object
|
|
4480
4440
|
*/
|
|
4481
4441
|
id: string;
|
|
4482
|
-
attributes?:
|
|
4442
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4483
4443
|
}
|
|
4484
4444
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4485
4445
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4486
4446
|
};
|
|
4487
4447
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
4488
|
-
export interface JsonApiDashboardPluginInAttributes {
|
|
4489
|
-
title?: string;
|
|
4490
|
-
description?: string;
|
|
4491
|
-
tags?: Array<string>;
|
|
4492
|
-
areRelationsValid?: boolean;
|
|
4493
|
-
/**
|
|
4494
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4495
|
-
*/
|
|
4496
|
-
content?: object;
|
|
4497
|
-
}
|
|
4498
4448
|
export interface JsonApiDashboardPluginInDocument {
|
|
4499
4449
|
data: JsonApiDashboardPluginIn;
|
|
4500
4450
|
}
|
|
@@ -4521,7 +4471,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
4521
4471
|
* API identifier of an object
|
|
4522
4472
|
*/
|
|
4523
4473
|
id: string;
|
|
4524
|
-
meta?:
|
|
4474
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
4525
4475
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4526
4476
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4527
4477
|
}
|
|
@@ -4555,15 +4505,15 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4555
4505
|
export interface JsonApiDashboardPluginOutList {
|
|
4556
4506
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4557
4507
|
links?: ListLinks;
|
|
4558
|
-
meta?:
|
|
4508
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4559
4509
|
/**
|
|
4560
4510
|
* Included resources
|
|
4561
4511
|
*/
|
|
4562
4512
|
included?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
4563
4513
|
}
|
|
4564
4514
|
export interface JsonApiDashboardPluginOutRelationships {
|
|
4565
|
-
createdBy?:
|
|
4566
|
-
modifiedBy?:
|
|
4515
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
4516
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
4567
4517
|
}
|
|
4568
4518
|
export interface JsonApiDashboardPluginOutWithLinks {
|
|
4569
4519
|
/**
|
|
@@ -4574,7 +4524,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
4574
4524
|
* API identifier of an object
|
|
4575
4525
|
*/
|
|
4576
4526
|
id: string;
|
|
4577
|
-
meta?:
|
|
4527
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
4578
4528
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4579
4529
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4580
4530
|
links?: ObjectLinks;
|
|
@@ -4595,7 +4545,7 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4595
4545
|
* API identifier of an object
|
|
4596
4546
|
*/
|
|
4597
4547
|
id: string;
|
|
4598
|
-
attributes?:
|
|
4548
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4599
4549
|
}
|
|
4600
4550
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4601
4551
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4616,12 +4566,22 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4616
4566
|
* API identifier of an object
|
|
4617
4567
|
*/
|
|
4618
4568
|
id?: string;
|
|
4619
|
-
attributes?:
|
|
4569
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4620
4570
|
}
|
|
4621
4571
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4622
4572
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4623
4573
|
};
|
|
4624
4574
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
4575
|
+
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4576
|
+
title?: string;
|
|
4577
|
+
description?: string;
|
|
4578
|
+
tags?: Array<string>;
|
|
4579
|
+
areRelationsValid?: boolean;
|
|
4580
|
+
/**
|
|
4581
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4582
|
+
*/
|
|
4583
|
+
content?: object;
|
|
4584
|
+
}
|
|
4625
4585
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4626
4586
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4627
4587
|
}
|
|
@@ -4688,7 +4648,7 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4688
4648
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4689
4649
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4690
4650
|
links?: ListLinks;
|
|
4691
|
-
meta?:
|
|
4651
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4692
4652
|
}
|
|
4693
4653
|
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4694
4654
|
/**
|
|
@@ -4944,7 +4904,7 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
4944
4904
|
export interface JsonApiDataSourceOutList {
|
|
4945
4905
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
4946
4906
|
links?: ListLinks;
|
|
4947
|
-
meta?:
|
|
4907
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4948
4908
|
}
|
|
4949
4909
|
export interface JsonApiDataSourceOutWithLinks {
|
|
4950
4910
|
/**
|
|
@@ -5095,7 +5055,7 @@ export interface JsonApiDatasetOut {
|
|
|
5095
5055
|
* API identifier of an object
|
|
5096
5056
|
*/
|
|
5097
5057
|
id: string;
|
|
5098
|
-
meta?:
|
|
5058
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5099
5059
|
attributes: JsonApiDatasetOutAttributes;
|
|
5100
5060
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5101
5061
|
}
|
|
@@ -5206,35 +5166,17 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5206
5166
|
export interface JsonApiDatasetOutList {
|
|
5207
5167
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5208
5168
|
links?: ListLinks;
|
|
5209
|
-
meta?:
|
|
5169
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5210
5170
|
/**
|
|
5211
5171
|
* Included resources
|
|
5212
5172
|
*/
|
|
5213
5173
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
5214
5174
|
}
|
|
5215
|
-
export interface JsonApiDatasetOutMeta {
|
|
5216
|
-
origin?: JsonApiDatasetOutMetaOrigin;
|
|
5217
|
-
}
|
|
5218
|
-
export interface JsonApiDatasetOutMetaOrigin {
|
|
5219
|
-
/**
|
|
5220
|
-
* defines type of the origin of the entity
|
|
5221
|
-
*/
|
|
5222
|
-
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
5223
|
-
/**
|
|
5224
|
-
* defines id of the workspace where the entity comes from
|
|
5225
|
-
*/
|
|
5226
|
-
originId: string;
|
|
5227
|
-
}
|
|
5228
|
-
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
5229
|
-
readonly NATIVE: "NATIVE";
|
|
5230
|
-
readonly PARENT: "PARENT";
|
|
5231
|
-
};
|
|
5232
|
-
export type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
5233
5175
|
export interface JsonApiDatasetOutRelationships {
|
|
5234
|
-
attributes?:
|
|
5235
|
-
facts?:
|
|
5176
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5177
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
5236
5178
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
5237
|
-
references?:
|
|
5179
|
+
references?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
5238
5180
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
5239
5181
|
}
|
|
5240
5182
|
export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
@@ -5243,24 +5185,6 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
5243
5185
|
*/
|
|
5244
5186
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
5245
5187
|
}
|
|
5246
|
-
export interface JsonApiDatasetOutRelationshipsAttributes {
|
|
5247
|
-
/**
|
|
5248
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5249
|
-
*/
|
|
5250
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
5251
|
-
}
|
|
5252
|
-
export interface JsonApiDatasetOutRelationshipsFacts {
|
|
5253
|
-
/**
|
|
5254
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5255
|
-
*/
|
|
5256
|
-
data: Array<JsonApiFactLinkage>;
|
|
5257
|
-
}
|
|
5258
|
-
export interface JsonApiDatasetOutRelationshipsReferences {
|
|
5259
|
-
/**
|
|
5260
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5261
|
-
*/
|
|
5262
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
5263
|
-
}
|
|
5264
5188
|
export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
5265
5189
|
/**
|
|
5266
5190
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -5276,7 +5200,7 @@ export interface JsonApiDatasetOutWithLinks {
|
|
|
5276
5200
|
* API identifier of an object
|
|
5277
5201
|
*/
|
|
5278
5202
|
id: string;
|
|
5279
|
-
meta?:
|
|
5203
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5280
5204
|
attributes: JsonApiDatasetOutAttributes;
|
|
5281
5205
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5282
5206
|
links?: ObjectLinks;
|
|
@@ -5317,7 +5241,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5317
5241
|
export interface JsonApiEntitlementOutList {
|
|
5318
5242
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5319
5243
|
links?: ListLinks;
|
|
5320
|
-
meta?:
|
|
5244
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5321
5245
|
}
|
|
5322
5246
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5323
5247
|
/**
|
|
@@ -5347,27 +5271,16 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5347
5271
|
* API identifier of an object
|
|
5348
5272
|
*/
|
|
5349
5273
|
id: string;
|
|
5350
|
-
attributes?:
|
|
5351
|
-
relationships?:
|
|
5274
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5275
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5352
5276
|
}
|
|
5353
5277
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5354
5278
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5355
5279
|
};
|
|
5356
5280
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
5357
|
-
export interface JsonApiExportDefinitionInAttributes {
|
|
5358
|
-
title?: string;
|
|
5359
|
-
description?: string;
|
|
5360
|
-
tags?: Array<string>;
|
|
5361
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5362
|
-
areRelationsValid?: boolean;
|
|
5363
|
-
}
|
|
5364
5281
|
export interface JsonApiExportDefinitionInDocument {
|
|
5365
5282
|
data: JsonApiExportDefinitionIn;
|
|
5366
5283
|
}
|
|
5367
|
-
export interface JsonApiExportDefinitionInRelationships {
|
|
5368
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5369
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5370
|
-
}
|
|
5371
5284
|
/**
|
|
5372
5285
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
5373
5286
|
*/
|
|
@@ -5391,7 +5304,7 @@ export interface JsonApiExportDefinitionOut {
|
|
|
5391
5304
|
* API identifier of an object
|
|
5392
5305
|
*/
|
|
5393
5306
|
id: string;
|
|
5394
|
-
meta?:
|
|
5307
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5395
5308
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5396
5309
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5397
5310
|
}
|
|
@@ -5431,18 +5344,21 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5431
5344
|
export interface JsonApiExportDefinitionOutList {
|
|
5432
5345
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5433
5346
|
links?: ListLinks;
|
|
5434
|
-
meta?:
|
|
5347
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5435
5348
|
/**
|
|
5436
5349
|
* Included resources
|
|
5437
5350
|
*/
|
|
5438
5351
|
included?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
5439
5352
|
}
|
|
5353
|
+
export interface JsonApiExportDefinitionOutMeta {
|
|
5354
|
+
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
5355
|
+
}
|
|
5440
5356
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5441
5357
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5442
5358
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5443
5359
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5444
|
-
createdBy?:
|
|
5445
|
-
modifiedBy?:
|
|
5360
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
5361
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
5446
5362
|
}
|
|
5447
5363
|
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
5448
5364
|
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
@@ -5462,7 +5378,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
|
|
|
5462
5378
|
* API identifier of an object
|
|
5463
5379
|
*/
|
|
5464
5380
|
id: string;
|
|
5465
|
-
meta?:
|
|
5381
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5466
5382
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5467
5383
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5468
5384
|
links?: ObjectLinks;
|
|
@@ -5483,8 +5399,8 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5483
5399
|
* API identifier of an object
|
|
5484
5400
|
*/
|
|
5485
5401
|
id: string;
|
|
5486
|
-
attributes?:
|
|
5487
|
-
relationships?:
|
|
5402
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5403
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5488
5404
|
}
|
|
5489
5405
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5490
5406
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5505,16 +5421,27 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5505
5421
|
* API identifier of an object
|
|
5506
5422
|
*/
|
|
5507
5423
|
id?: string;
|
|
5508
|
-
attributes?:
|
|
5509
|
-
relationships?:
|
|
5424
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5425
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5510
5426
|
}
|
|
5511
5427
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5512
5428
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5513
5429
|
};
|
|
5514
5430
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
5431
|
+
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
5432
|
+
title?: string;
|
|
5433
|
+
description?: string;
|
|
5434
|
+
tags?: Array<string>;
|
|
5435
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5436
|
+
areRelationsValid?: boolean;
|
|
5437
|
+
}
|
|
5515
5438
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5516
5439
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5517
5440
|
}
|
|
5441
|
+
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5442
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5443
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5444
|
+
}
|
|
5518
5445
|
/**
|
|
5519
5446
|
* JSON:API representation of exportTemplate entity.
|
|
5520
5447
|
*/
|
|
@@ -5605,7 +5532,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5605
5532
|
export interface JsonApiExportTemplateOutList {
|
|
5606
5533
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5607
5534
|
links?: ListLinks;
|
|
5608
|
-
meta?:
|
|
5535
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5609
5536
|
}
|
|
5610
5537
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5611
5538
|
/**
|
|
@@ -5696,7 +5623,7 @@ export interface JsonApiFactOut {
|
|
|
5696
5623
|
* API identifier of an object
|
|
5697
5624
|
*/
|
|
5698
5625
|
id: string;
|
|
5699
|
-
meta?:
|
|
5626
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5700
5627
|
attributes?: JsonApiFactOutAttributes;
|
|
5701
5628
|
relationships?: JsonApiFactOutRelationships;
|
|
5702
5629
|
}
|
|
@@ -5736,17 +5663,14 @@ export interface JsonApiFactOutDocument {
|
|
|
5736
5663
|
export interface JsonApiFactOutList {
|
|
5737
5664
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5738
5665
|
links?: ListLinks;
|
|
5739
|
-
meta?:
|
|
5666
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5740
5667
|
/**
|
|
5741
5668
|
* Included resources
|
|
5742
5669
|
*/
|
|
5743
5670
|
included?: Array<JsonApiDatasetOutWithLinks>;
|
|
5744
5671
|
}
|
|
5745
5672
|
export interface JsonApiFactOutRelationships {
|
|
5746
|
-
dataset?:
|
|
5747
|
-
}
|
|
5748
|
-
export interface JsonApiFactOutRelationshipsDataset {
|
|
5749
|
-
data: JsonApiDatasetLinkage | null;
|
|
5673
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
5750
5674
|
}
|
|
5751
5675
|
export interface JsonApiFactOutWithLinks {
|
|
5752
5676
|
/**
|
|
@@ -5757,7 +5681,7 @@ export interface JsonApiFactOutWithLinks {
|
|
|
5757
5681
|
* API identifier of an object
|
|
5758
5682
|
*/
|
|
5759
5683
|
id: string;
|
|
5760
|
-
meta?:
|
|
5684
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5761
5685
|
attributes?: JsonApiFactOutAttributes;
|
|
5762
5686
|
relationships?: JsonApiFactOutRelationships;
|
|
5763
5687
|
links?: ObjectLinks;
|
|
@@ -5778,7 +5702,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5778
5702
|
* API identifier of an object
|
|
5779
5703
|
*/
|
|
5780
5704
|
id: string;
|
|
5781
|
-
attributes:
|
|
5705
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5782
5706
|
}
|
|
5783
5707
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5784
5708
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5810,24 +5734,14 @@ export interface JsonApiFilterContextOut {
|
|
|
5810
5734
|
* API identifier of an object
|
|
5811
5735
|
*/
|
|
5812
5736
|
id: string;
|
|
5813
|
-
meta?:
|
|
5814
|
-
attributes:
|
|
5737
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5738
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5815
5739
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5816
5740
|
}
|
|
5817
5741
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
5818
5742
|
readonly FILTER_CONTEXT: "filterContext";
|
|
5819
5743
|
};
|
|
5820
5744
|
export type JsonApiFilterContextOutTypeEnum = (typeof JsonApiFilterContextOutTypeEnum)[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
5821
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
5822
|
-
title?: string;
|
|
5823
|
-
description?: string;
|
|
5824
|
-
tags?: Array<string>;
|
|
5825
|
-
areRelationsValid?: boolean;
|
|
5826
|
-
/**
|
|
5827
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5828
|
-
*/
|
|
5829
|
-
content: object;
|
|
5830
|
-
}
|
|
5831
5745
|
export interface JsonApiFilterContextOutDocument {
|
|
5832
5746
|
data: JsonApiFilterContextOut;
|
|
5833
5747
|
links?: ObjectLinks;
|
|
@@ -5846,16 +5760,16 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5846
5760
|
export interface JsonApiFilterContextOutList {
|
|
5847
5761
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5848
5762
|
links?: ListLinks;
|
|
5849
|
-
meta?:
|
|
5763
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5850
5764
|
/**
|
|
5851
5765
|
* Included resources
|
|
5852
5766
|
*/
|
|
5853
5767
|
included?: Array<JsonApiFilterContextOutIncludes>;
|
|
5854
5768
|
}
|
|
5855
5769
|
export interface JsonApiFilterContextOutRelationships {
|
|
5856
|
-
attributes?:
|
|
5857
|
-
datasets?:
|
|
5858
|
-
labels?:
|
|
5770
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5771
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
5772
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
5859
5773
|
}
|
|
5860
5774
|
export interface JsonApiFilterContextOutWithLinks {
|
|
5861
5775
|
/**
|
|
@@ -5866,8 +5780,8 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5866
5780
|
* API identifier of an object
|
|
5867
5781
|
*/
|
|
5868
5782
|
id: string;
|
|
5869
|
-
meta?:
|
|
5870
|
-
attributes:
|
|
5783
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
5784
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5871
5785
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5872
5786
|
links?: ObjectLinks;
|
|
5873
5787
|
}
|
|
@@ -5908,7 +5822,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5908
5822
|
* API identifier of an object
|
|
5909
5823
|
*/
|
|
5910
5824
|
id?: string;
|
|
5911
|
-
attributes:
|
|
5825
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5912
5826
|
}
|
|
5913
5827
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5914
5828
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5929,16 +5843,34 @@ export interface JsonApiFilterViewIn {
|
|
|
5929
5843
|
* API identifier of an object
|
|
5930
5844
|
*/
|
|
5931
5845
|
id: string;
|
|
5932
|
-
attributes:
|
|
5933
|
-
relationships?:
|
|
5846
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5847
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5934
5848
|
}
|
|
5935
5849
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
5936
5850
|
readonly FILTER_VIEW: "filterView";
|
|
5937
5851
|
};
|
|
5938
5852
|
export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
5853
|
+
export interface JsonApiFilterViewInAttributes {
|
|
5854
|
+
title: string;
|
|
5855
|
+
description?: string;
|
|
5856
|
+
tags?: Array<string>;
|
|
5857
|
+
areRelationsValid?: boolean;
|
|
5858
|
+
/**
|
|
5859
|
+
* Indicator whether the filter view should by applied by default.
|
|
5860
|
+
*/
|
|
5861
|
+
isDefault?: boolean;
|
|
5862
|
+
/**
|
|
5863
|
+
* The respective filter context.
|
|
5864
|
+
*/
|
|
5865
|
+
content: object;
|
|
5866
|
+
}
|
|
5939
5867
|
export interface JsonApiFilterViewInDocument {
|
|
5940
5868
|
data: JsonApiFilterViewIn;
|
|
5941
5869
|
}
|
|
5870
|
+
export interface JsonApiFilterViewInRelationships {
|
|
5871
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5872
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5873
|
+
}
|
|
5942
5874
|
/**
|
|
5943
5875
|
* JSON:API representation of filterView entity.
|
|
5944
5876
|
*/
|
|
@@ -5951,27 +5883,13 @@ export interface JsonApiFilterViewOut {
|
|
|
5951
5883
|
* API identifier of an object
|
|
5952
5884
|
*/
|
|
5953
5885
|
id: string;
|
|
5954
|
-
attributes:
|
|
5955
|
-
relationships?:
|
|
5886
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5887
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5956
5888
|
}
|
|
5957
5889
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
5958
5890
|
readonly FILTER_VIEW: "filterView";
|
|
5959
5891
|
};
|
|
5960
5892
|
export type JsonApiFilterViewOutTypeEnum = (typeof JsonApiFilterViewOutTypeEnum)[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
5961
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
5962
|
-
title: string;
|
|
5963
|
-
description?: string;
|
|
5964
|
-
tags?: Array<string>;
|
|
5965
|
-
areRelationsValid?: boolean;
|
|
5966
|
-
/**
|
|
5967
|
-
* Indicator whether the filter view should by applied by default.
|
|
5968
|
-
*/
|
|
5969
|
-
isDefault?: boolean;
|
|
5970
|
-
/**
|
|
5971
|
-
* The respective filter context.
|
|
5972
|
-
*/
|
|
5973
|
-
content: object;
|
|
5974
|
-
}
|
|
5975
5893
|
export interface JsonApiFilterViewOutDocument {
|
|
5976
5894
|
data: JsonApiFilterViewOut;
|
|
5977
5895
|
links?: ObjectLinks;
|
|
@@ -5990,19 +5908,12 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
5990
5908
|
export interface JsonApiFilterViewOutList {
|
|
5991
5909
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
5992
5910
|
links?: ListLinks;
|
|
5993
|
-
meta?:
|
|
5911
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5994
5912
|
/**
|
|
5995
5913
|
* Included resources
|
|
5996
5914
|
*/
|
|
5997
5915
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
5998
5916
|
}
|
|
5999
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
6000
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6001
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
6002
|
-
}
|
|
6003
|
-
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
6004
|
-
data: JsonApiUserLinkage | null;
|
|
6005
|
-
}
|
|
6006
5917
|
export interface JsonApiFilterViewOutWithLinks {
|
|
6007
5918
|
/**
|
|
6008
5919
|
* Object type
|
|
@@ -6012,8 +5923,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
6012
5923
|
* API identifier of an object
|
|
6013
5924
|
*/
|
|
6014
5925
|
id: string;
|
|
6015
|
-
attributes:
|
|
6016
|
-
relationships?:
|
|
5926
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5927
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6017
5928
|
links?: ObjectLinks;
|
|
6018
5929
|
}
|
|
6019
5930
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6033,7 +5944,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6033
5944
|
*/
|
|
6034
5945
|
id: string;
|
|
6035
5946
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6036
|
-
relationships?:
|
|
5947
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6037
5948
|
}
|
|
6038
5949
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6039
5950
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6068,69 +5979,12 @@ export interface JsonApiIdentityProviderIn {
|
|
|
6068
5979
|
* API identifier of an object
|
|
6069
5980
|
*/
|
|
6070
5981
|
id: string;
|
|
6071
|
-
attributes?:
|
|
5982
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
6072
5983
|
}
|
|
6073
5984
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
6074
5985
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6075
5986
|
};
|
|
6076
5987
|
export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
6077
|
-
export interface JsonApiIdentityProviderInAttributes {
|
|
6078
|
-
/**
|
|
6079
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
6080
|
-
*/
|
|
6081
|
-
identifiers?: Array<string>;
|
|
6082
|
-
/**
|
|
6083
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
6084
|
-
*/
|
|
6085
|
-
customClaimMapping?: {
|
|
6086
|
-
[key: string]: string;
|
|
6087
|
-
};
|
|
6088
|
-
/**
|
|
6089
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
6090
|
-
*/
|
|
6091
|
-
samlMetadata?: string;
|
|
6092
|
-
/**
|
|
6093
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6094
|
-
*/
|
|
6095
|
-
oauthClientId?: string;
|
|
6096
|
-
/**
|
|
6097
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6098
|
-
*/
|
|
6099
|
-
oauthClientSecret?: string;
|
|
6100
|
-
/**
|
|
6101
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6102
|
-
*/
|
|
6103
|
-
oauthIssuerLocation?: string;
|
|
6104
|
-
/**
|
|
6105
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
6106
|
-
*/
|
|
6107
|
-
oauthIssuerId?: string;
|
|
6108
|
-
/**
|
|
6109
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6110
|
-
*/
|
|
6111
|
-
oauthSubjectIdClaim?: string;
|
|
6112
|
-
/**
|
|
6113
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
6114
|
-
*/
|
|
6115
|
-
oauthCustomAuthAttributes?: {
|
|
6116
|
-
[key: string]: string;
|
|
6117
|
-
};
|
|
6118
|
-
/**
|
|
6119
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6120
|
-
*/
|
|
6121
|
-
oauthCustomScopes?: Array<string> | null;
|
|
6122
|
-
/**
|
|
6123
|
-
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
6124
|
-
*/
|
|
6125
|
-
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
6126
|
-
}
|
|
6127
|
-
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
6128
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6129
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
6130
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
6131
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6132
|
-
};
|
|
6133
|
-
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
6134
5988
|
export interface JsonApiIdentityProviderInDocument {
|
|
6135
5989
|
data: JsonApiIdentityProviderIn;
|
|
6136
5990
|
}
|
|
@@ -6222,7 +6076,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6222
6076
|
export interface JsonApiIdentityProviderOutList {
|
|
6223
6077
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6224
6078
|
links?: ListLinks;
|
|
6225
|
-
meta?:
|
|
6079
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6226
6080
|
}
|
|
6227
6081
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6228
6082
|
/**
|
|
@@ -6252,12 +6106,69 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
6252
6106
|
* API identifier of an object
|
|
6253
6107
|
*/
|
|
6254
6108
|
id: string;
|
|
6255
|
-
attributes?:
|
|
6109
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
6256
6110
|
}
|
|
6257
6111
|
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
6258
6112
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6259
6113
|
};
|
|
6260
6114
|
export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
|
|
6115
|
+
export interface JsonApiIdentityProviderPatchAttributes {
|
|
6116
|
+
/**
|
|
6117
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
6118
|
+
*/
|
|
6119
|
+
identifiers?: Array<string>;
|
|
6120
|
+
/**
|
|
6121
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
6122
|
+
*/
|
|
6123
|
+
customClaimMapping?: {
|
|
6124
|
+
[key: string]: string;
|
|
6125
|
+
};
|
|
6126
|
+
/**
|
|
6127
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
6128
|
+
*/
|
|
6129
|
+
samlMetadata?: string;
|
|
6130
|
+
/**
|
|
6131
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6132
|
+
*/
|
|
6133
|
+
oauthClientId?: string;
|
|
6134
|
+
/**
|
|
6135
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6136
|
+
*/
|
|
6137
|
+
oauthClientSecret?: string;
|
|
6138
|
+
/**
|
|
6139
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6140
|
+
*/
|
|
6141
|
+
oauthIssuerLocation?: string;
|
|
6142
|
+
/**
|
|
6143
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
6144
|
+
*/
|
|
6145
|
+
oauthIssuerId?: string;
|
|
6146
|
+
/**
|
|
6147
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6148
|
+
*/
|
|
6149
|
+
oauthSubjectIdClaim?: string;
|
|
6150
|
+
/**
|
|
6151
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
6152
|
+
*/
|
|
6153
|
+
oauthCustomAuthAttributes?: {
|
|
6154
|
+
[key: string]: string;
|
|
6155
|
+
};
|
|
6156
|
+
/**
|
|
6157
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6158
|
+
*/
|
|
6159
|
+
oauthCustomScopes?: Array<string> | null;
|
|
6160
|
+
/**
|
|
6161
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
6162
|
+
*/
|
|
6163
|
+
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
6164
|
+
}
|
|
6165
|
+
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
6166
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6167
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
6168
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
6169
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6170
|
+
};
|
|
6171
|
+
export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
6261
6172
|
export interface JsonApiIdentityProviderPatchDocument {
|
|
6262
6173
|
data: JsonApiIdentityProviderPatch;
|
|
6263
6174
|
}
|
|
@@ -6313,7 +6224,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6313
6224
|
export interface JsonApiJwkOutList {
|
|
6314
6225
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6315
6226
|
links?: ListLinks;
|
|
6316
|
-
meta?:
|
|
6227
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6317
6228
|
}
|
|
6318
6229
|
export interface JsonApiJwkOutWithLinks {
|
|
6319
6230
|
/**
|
|
@@ -6375,7 +6286,7 @@ export interface JsonApiLabelOut {
|
|
|
6375
6286
|
* API identifier of an object
|
|
6376
6287
|
*/
|
|
6377
6288
|
id: string;
|
|
6378
|
-
meta?:
|
|
6289
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
6379
6290
|
attributes?: JsonApiLabelOutAttributes;
|
|
6380
6291
|
relationships?: JsonApiLabelOutRelationships;
|
|
6381
6292
|
}
|
|
@@ -6426,7 +6337,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6426
6337
|
export interface JsonApiLabelOutList {
|
|
6427
6338
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6428
6339
|
links?: ListLinks;
|
|
6429
|
-
meta?:
|
|
6340
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6430
6341
|
/**
|
|
6431
6342
|
* Included resources
|
|
6432
6343
|
*/
|
|
@@ -6447,7 +6358,7 @@ export interface JsonApiLabelOutWithLinks {
|
|
|
6447
6358
|
* API identifier of an object
|
|
6448
6359
|
*/
|
|
6449
6360
|
id: string;
|
|
6450
|
-
meta?:
|
|
6361
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
6451
6362
|
attributes?: JsonApiLabelOutAttributes;
|
|
6452
6363
|
relationships?: JsonApiLabelOutRelationships;
|
|
6453
6364
|
links?: ObjectLinks;
|
|
@@ -6563,7 +6474,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6563
6474
|
export interface JsonApiLlmEndpointOutList {
|
|
6564
6475
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6565
6476
|
links?: ListLinks;
|
|
6566
|
-
meta?:
|
|
6477
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6567
6478
|
}
|
|
6568
6479
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6569
6480
|
/**
|
|
@@ -6645,19 +6556,12 @@ export interface JsonApiMetricIn {
|
|
|
6645
6556
|
* API identifier of an object
|
|
6646
6557
|
*/
|
|
6647
6558
|
id: string;
|
|
6648
|
-
attributes:
|
|
6559
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6649
6560
|
}
|
|
6650
6561
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6651
6562
|
readonly METRIC: "metric";
|
|
6652
6563
|
};
|
|
6653
6564
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6654
|
-
export interface JsonApiMetricInAttributes {
|
|
6655
|
-
title?: string;
|
|
6656
|
-
description?: string;
|
|
6657
|
-
tags?: Array<string>;
|
|
6658
|
-
areRelationsValid?: boolean;
|
|
6659
|
-
content: JsonApiMetricOutAttributesContent;
|
|
6660
|
-
}
|
|
6661
6565
|
export interface JsonApiMetricInDocument {
|
|
6662
6566
|
data: JsonApiMetricIn;
|
|
6663
6567
|
}
|
|
@@ -6684,7 +6588,7 @@ export interface JsonApiMetricOut {
|
|
|
6684
6588
|
* API identifier of an object
|
|
6685
6589
|
*/
|
|
6686
6590
|
id: string;
|
|
6687
|
-
meta?:
|
|
6591
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
6688
6592
|
attributes: JsonApiMetricOutAttributes;
|
|
6689
6593
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6690
6594
|
}
|
|
@@ -6723,7 +6627,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6723
6627
|
export interface JsonApiMetricOutList {
|
|
6724
6628
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6725
6629
|
links?: ListLinks;
|
|
6726
|
-
meta?:
|
|
6630
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6727
6631
|
/**
|
|
6728
6632
|
* Included resources
|
|
6729
6633
|
*/
|
|
@@ -6738,7 +6642,7 @@ export interface JsonApiMetricOutWithLinks {
|
|
|
6738
6642
|
* API identifier of an object
|
|
6739
6643
|
*/
|
|
6740
6644
|
id: string;
|
|
6741
|
-
meta?:
|
|
6645
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
6742
6646
|
attributes: JsonApiMetricOutAttributes;
|
|
6743
6647
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6744
6648
|
links?: ObjectLinks;
|
|
@@ -6787,12 +6691,19 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6787
6691
|
* API identifier of an object
|
|
6788
6692
|
*/
|
|
6789
6693
|
id?: string;
|
|
6790
|
-
attributes:
|
|
6694
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6791
6695
|
}
|
|
6792
6696
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
6793
6697
|
readonly METRIC: "metric";
|
|
6794
6698
|
};
|
|
6795
6699
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
6700
|
+
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
6701
|
+
title?: string;
|
|
6702
|
+
description?: string;
|
|
6703
|
+
tags?: Array<string>;
|
|
6704
|
+
areRelationsValid?: boolean;
|
|
6705
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6706
|
+
}
|
|
6796
6707
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6797
6708
|
data: JsonApiMetricPostOptionalId;
|
|
6798
6709
|
}
|
|
@@ -6846,7 +6757,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
6846
6757
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
6847
6758
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
6848
6759
|
links?: ListLinks;
|
|
6849
|
-
meta?:
|
|
6760
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6850
6761
|
}
|
|
6851
6762
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
6852
6763
|
/**
|
|
@@ -6876,7 +6787,7 @@ export interface JsonApiNotificationChannelIn {
|
|
|
6876
6787
|
* API identifier of an object
|
|
6877
6788
|
*/
|
|
6878
6789
|
id: string;
|
|
6879
|
-
attributes?:
|
|
6790
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
6880
6791
|
}
|
|
6881
6792
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
6882
6793
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -6979,7 +6890,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
6979
6890
|
export interface JsonApiNotificationChannelOutList {
|
|
6980
6891
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
6981
6892
|
links?: ListLinks;
|
|
6982
|
-
meta?:
|
|
6893
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6983
6894
|
}
|
|
6984
6895
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
6985
6896
|
/**
|
|
@@ -7009,34 +6920,13 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
7009
6920
|
* API identifier of an object
|
|
7010
6921
|
*/
|
|
7011
6922
|
id: string;
|
|
7012
|
-
attributes?:
|
|
6923
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
7013
6924
|
}
|
|
7014
6925
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
7015
6926
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7016
6927
|
};
|
|
7017
6928
|
export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
7018
|
-
export interface
|
|
7019
|
-
data: JsonApiNotificationChannelPatch;
|
|
7020
|
-
}
|
|
7021
|
-
/**
|
|
7022
|
-
* JSON:API representation of notificationChannel entity.
|
|
7023
|
-
*/
|
|
7024
|
-
export interface JsonApiNotificationChannelPostOptionalId {
|
|
7025
|
-
/**
|
|
7026
|
-
* Object type
|
|
7027
|
-
*/
|
|
7028
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
7029
|
-
/**
|
|
7030
|
-
* API identifier of an object
|
|
7031
|
-
*/
|
|
7032
|
-
id?: string;
|
|
7033
|
-
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7034
|
-
}
|
|
7035
|
-
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7036
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7037
|
-
};
|
|
7038
|
-
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7039
|
-
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
6929
|
+
export interface JsonApiNotificationChannelPatchAttributes {
|
|
7040
6930
|
name?: string | null;
|
|
7041
6931
|
description?: string | null;
|
|
7042
6932
|
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
@@ -7047,7 +6937,7 @@ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
|
7047
6937
|
/**
|
|
7048
6938
|
* 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
|
|
7049
6939
|
*/
|
|
7050
|
-
dashboardLinkVisibility?:
|
|
6940
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
7051
6941
|
/**
|
|
7052
6942
|
* 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}}
|
|
7053
6943
|
*/
|
|
@@ -7055,29 +6945,50 @@ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
|
7055
6945
|
/**
|
|
7056
6946
|
* 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
|
|
7057
6947
|
*/
|
|
7058
|
-
allowedRecipients?:
|
|
6948
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
7059
6949
|
/**
|
|
7060
6950
|
* 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
|
|
7061
6951
|
*/
|
|
7062
|
-
inPlatformNotification?:
|
|
6952
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
7063
6953
|
}
|
|
7064
|
-
export declare const
|
|
6954
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
7065
6955
|
readonly HIDDEN: "HIDDEN";
|
|
7066
6956
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7067
6957
|
readonly ALL: "ALL";
|
|
7068
6958
|
};
|
|
7069
|
-
export type
|
|
7070
|
-
export declare const
|
|
6959
|
+
export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
6960
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
7071
6961
|
readonly CREATOR: "CREATOR";
|
|
7072
6962
|
readonly INTERNAL: "INTERNAL";
|
|
7073
6963
|
readonly EXTERNAL: "EXTERNAL";
|
|
7074
6964
|
};
|
|
7075
|
-
export type
|
|
7076
|
-
export declare const
|
|
6965
|
+
export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
6966
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
7077
6967
|
readonly DISABLED: "DISABLED";
|
|
7078
6968
|
readonly ENABLED: "ENABLED";
|
|
7079
6969
|
};
|
|
7080
|
-
export type
|
|
6970
|
+
export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
6971
|
+
export interface JsonApiNotificationChannelPatchDocument {
|
|
6972
|
+
data: JsonApiNotificationChannelPatch;
|
|
6973
|
+
}
|
|
6974
|
+
/**
|
|
6975
|
+
* JSON:API representation of notificationChannel entity.
|
|
6976
|
+
*/
|
|
6977
|
+
export interface JsonApiNotificationChannelPostOptionalId {
|
|
6978
|
+
/**
|
|
6979
|
+
* Object type
|
|
6980
|
+
*/
|
|
6981
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
6982
|
+
/**
|
|
6983
|
+
* API identifier of an object
|
|
6984
|
+
*/
|
|
6985
|
+
id?: string;
|
|
6986
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
6987
|
+
}
|
|
6988
|
+
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
6989
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
6990
|
+
};
|
|
6991
|
+
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7081
6992
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
7082
6993
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
7083
6994
|
}
|
|
@@ -7093,57 +7004,16 @@ export interface JsonApiOrganizationIn {
|
|
|
7093
7004
|
* API identifier of an object
|
|
7094
7005
|
*/
|
|
7095
7006
|
id: string;
|
|
7096
|
-
attributes?:
|
|
7097
|
-
relationships?:
|
|
7007
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7008
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7098
7009
|
}
|
|
7099
7010
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7100
7011
|
readonly ORGANIZATION: "organization";
|
|
7101
7012
|
};
|
|
7102
7013
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7103
|
-
export interface JsonApiOrganizationInAttributes {
|
|
7104
|
-
name?: string | null;
|
|
7105
|
-
hostname?: string;
|
|
7106
|
-
allowedOrigins?: Array<string>;
|
|
7107
|
-
oauthIssuerLocation?: string;
|
|
7108
|
-
oauthClientId?: string;
|
|
7109
|
-
oauthClientSecret?: string;
|
|
7110
|
-
/**
|
|
7111
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7112
|
-
* @deprecated
|
|
7113
|
-
*/
|
|
7114
|
-
earlyAccess?: string | null;
|
|
7115
|
-
/**
|
|
7116
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7117
|
-
*/
|
|
7118
|
-
earlyAccessValues?: Array<string> | null;
|
|
7119
|
-
/**
|
|
7120
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
7121
|
-
*/
|
|
7122
|
-
oauthIssuerId?: string;
|
|
7123
|
-
/**
|
|
7124
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
7125
|
-
*/
|
|
7126
|
-
oauthSubjectIdClaim?: string;
|
|
7127
|
-
/**
|
|
7128
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
7129
|
-
*/
|
|
7130
|
-
oauthCustomAuthAttributes?: {
|
|
7131
|
-
[key: string]: string;
|
|
7132
|
-
};
|
|
7133
|
-
/**
|
|
7134
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
7135
|
-
*/
|
|
7136
|
-
oauthCustomScopes?: Array<string> | null;
|
|
7137
|
-
}
|
|
7138
7014
|
export interface JsonApiOrganizationInDocument {
|
|
7139
7015
|
data: JsonApiOrganizationIn;
|
|
7140
7016
|
}
|
|
7141
|
-
export interface JsonApiOrganizationInRelationships {
|
|
7142
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7143
|
-
}
|
|
7144
|
-
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7145
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7146
|
-
}
|
|
7147
7017
|
/**
|
|
7148
7018
|
* JSON:API representation of organization entity.
|
|
7149
7019
|
*/
|
|
@@ -7232,9 +7102,18 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7232
7102
|
};
|
|
7233
7103
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7234
7104
|
export interface JsonApiOrganizationOutRelationships {
|
|
7235
|
-
bootstrapUser?:
|
|
7236
|
-
bootstrapUserGroup?:
|
|
7237
|
-
identityProvider?:
|
|
7105
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7106
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7107
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
7108
|
+
}
|
|
7109
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7110
|
+
data: JsonApiUserLinkage | null;
|
|
7111
|
+
}
|
|
7112
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7113
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7114
|
+
}
|
|
7115
|
+
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
7116
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7238
7117
|
}
|
|
7239
7118
|
/**
|
|
7240
7119
|
* JSON:API representation of patching organization entity.
|
|
@@ -7248,16 +7127,54 @@ export interface JsonApiOrganizationPatch {
|
|
|
7248
7127
|
* API identifier of an object
|
|
7249
7128
|
*/
|
|
7250
7129
|
id: string;
|
|
7251
|
-
attributes?:
|
|
7252
|
-
relationships?:
|
|
7130
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7131
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7253
7132
|
}
|
|
7254
7133
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7255
7134
|
readonly ORGANIZATION: "organization";
|
|
7256
7135
|
};
|
|
7257
7136
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
7137
|
+
export interface JsonApiOrganizationPatchAttributes {
|
|
7138
|
+
name?: string | null;
|
|
7139
|
+
hostname?: string;
|
|
7140
|
+
allowedOrigins?: Array<string>;
|
|
7141
|
+
oauthIssuerLocation?: string;
|
|
7142
|
+
oauthClientId?: string;
|
|
7143
|
+
oauthClientSecret?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7146
|
+
* @deprecated
|
|
7147
|
+
*/
|
|
7148
|
+
earlyAccess?: string | null;
|
|
7149
|
+
/**
|
|
7150
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7151
|
+
*/
|
|
7152
|
+
earlyAccessValues?: Array<string> | null;
|
|
7153
|
+
/**
|
|
7154
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
7155
|
+
*/
|
|
7156
|
+
oauthIssuerId?: string;
|
|
7157
|
+
/**
|
|
7158
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
7159
|
+
*/
|
|
7160
|
+
oauthSubjectIdClaim?: string;
|
|
7161
|
+
/**
|
|
7162
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
7163
|
+
*/
|
|
7164
|
+
oauthCustomAuthAttributes?: {
|
|
7165
|
+
[key: string]: string;
|
|
7166
|
+
};
|
|
7167
|
+
/**
|
|
7168
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
7169
|
+
*/
|
|
7170
|
+
oauthCustomScopes?: Array<string> | null;
|
|
7171
|
+
}
|
|
7258
7172
|
export interface JsonApiOrganizationPatchDocument {
|
|
7259
7173
|
data: JsonApiOrganizationPatch;
|
|
7260
7174
|
}
|
|
7175
|
+
export interface JsonApiOrganizationPatchRelationships {
|
|
7176
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
7177
|
+
}
|
|
7261
7178
|
/**
|
|
7262
7179
|
* JSON:API representation of organizationSetting entity.
|
|
7263
7180
|
*/
|
|
@@ -7270,7 +7187,7 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7270
7187
|
* API identifier of an object
|
|
7271
7188
|
*/
|
|
7272
7189
|
id: string;
|
|
7273
|
-
attributes?:
|
|
7190
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7274
7191
|
}
|
|
7275
7192
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7276
7193
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7291,7 +7208,7 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7291
7208
|
* API identifier of an object
|
|
7292
7209
|
*/
|
|
7293
7210
|
id: string;
|
|
7294
|
-
attributes?:
|
|
7211
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7295
7212
|
}
|
|
7296
7213
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7297
7214
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7307,7 +7224,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7307
7224
|
export interface JsonApiOrganizationSettingOutList {
|
|
7308
7225
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7309
7226
|
links?: ListLinks;
|
|
7310
|
-
meta?:
|
|
7227
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7311
7228
|
}
|
|
7312
7229
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7313
7230
|
/**
|
|
@@ -7318,7 +7235,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7318
7235
|
* API identifier of an object
|
|
7319
7236
|
*/
|
|
7320
7237
|
id: string;
|
|
7321
|
-
attributes?:
|
|
7238
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7322
7239
|
links?: ObjectLinks;
|
|
7323
7240
|
}
|
|
7324
7241
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7337,7 +7254,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7337
7254
|
* API identifier of an object
|
|
7338
7255
|
*/
|
|
7339
7256
|
id: string;
|
|
7340
|
-
attributes?:
|
|
7257
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7341
7258
|
}
|
|
7342
7259
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7343
7260
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7395,7 +7312,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7395
7312
|
export interface JsonApiThemeOutList {
|
|
7396
7313
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7397
7314
|
links?: ListLinks;
|
|
7398
|
-
meta?:
|
|
7315
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7399
7316
|
}
|
|
7400
7317
|
export interface JsonApiThemeOutWithLinks {
|
|
7401
7318
|
/**
|
|
@@ -7446,8 +7363,8 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7446
7363
|
* API identifier of an object
|
|
7447
7364
|
*/
|
|
7448
7365
|
id: string;
|
|
7449
|
-
attributes:
|
|
7450
|
-
relationships?:
|
|
7366
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7367
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7451
7368
|
}
|
|
7452
7369
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7453
7370
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7456,10 +7373,6 @@ export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTyp
|
|
|
7456
7373
|
export interface JsonApiUserDataFilterInDocument {
|
|
7457
7374
|
data: JsonApiUserDataFilterIn;
|
|
7458
7375
|
}
|
|
7459
|
-
export interface JsonApiUserDataFilterInRelationships {
|
|
7460
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
7461
|
-
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
7462
|
-
}
|
|
7463
7376
|
/**
|
|
7464
7377
|
* JSON:API representation of userDataFilter entity.
|
|
7465
7378
|
*/
|
|
@@ -7472,21 +7385,14 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7472
7385
|
* API identifier of an object
|
|
7473
7386
|
*/
|
|
7474
7387
|
id: string;
|
|
7475
|
-
meta?:
|
|
7476
|
-
attributes:
|
|
7388
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
7389
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7477
7390
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7478
7391
|
}
|
|
7479
7392
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
7480
7393
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7481
7394
|
};
|
|
7482
7395
|
export type JsonApiUserDataFilterOutTypeEnum = (typeof JsonApiUserDataFilterOutTypeEnum)[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
7483
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
7484
|
-
title?: string;
|
|
7485
|
-
description?: string;
|
|
7486
|
-
tags?: Array<string>;
|
|
7487
|
-
areRelationsValid?: boolean;
|
|
7488
|
-
maql: string;
|
|
7489
|
-
}
|
|
7490
7396
|
export interface JsonApiUserDataFilterOutDocument {
|
|
7491
7397
|
data: JsonApiUserDataFilterOut;
|
|
7492
7398
|
links?: ObjectLinks;
|
|
@@ -7505,23 +7411,20 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7505
7411
|
export interface JsonApiUserDataFilterOutList {
|
|
7506
7412
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7507
7413
|
links?: ListLinks;
|
|
7508
|
-
meta?:
|
|
7414
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7509
7415
|
/**
|
|
7510
7416
|
* Included resources
|
|
7511
7417
|
*/
|
|
7512
7418
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7513
7419
|
}
|
|
7514
7420
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7515
|
-
user?:
|
|
7516
|
-
userGroup?:
|
|
7517
|
-
facts?:
|
|
7518
|
-
attributes?:
|
|
7519
|
-
labels?:
|
|
7520
|
-
metrics?:
|
|
7521
|
-
datasets?:
|
|
7522
|
-
}
|
|
7523
|
-
export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
7524
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7421
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7422
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7423
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7424
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7425
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
7426
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
7427
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
7525
7428
|
}
|
|
7526
7429
|
export interface JsonApiUserDataFilterOutWithLinks {
|
|
7527
7430
|
/**
|
|
@@ -7532,8 +7435,8 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7532
7435
|
* API identifier of an object
|
|
7533
7436
|
*/
|
|
7534
7437
|
id: string;
|
|
7535
|
-
meta?:
|
|
7536
|
-
attributes:
|
|
7438
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
7439
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7537
7440
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7538
7441
|
links?: ObjectLinks;
|
|
7539
7442
|
}
|
|
@@ -7554,7 +7457,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7554
7457
|
*/
|
|
7555
7458
|
id: string;
|
|
7556
7459
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7557
|
-
relationships?:
|
|
7460
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7558
7461
|
}
|
|
7559
7462
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7560
7463
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7582,16 +7485,27 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7582
7485
|
* API identifier of an object
|
|
7583
7486
|
*/
|
|
7584
7487
|
id?: string;
|
|
7585
|
-
attributes:
|
|
7586
|
-
relationships?:
|
|
7488
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7489
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7587
7490
|
}
|
|
7588
7491
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7589
7492
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7590
7493
|
};
|
|
7591
7494
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
|
|
7495
|
+
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
7496
|
+
title?: string;
|
|
7497
|
+
description?: string;
|
|
7498
|
+
tags?: Array<string>;
|
|
7499
|
+
areRelationsValid?: boolean;
|
|
7500
|
+
maql: string;
|
|
7501
|
+
}
|
|
7592
7502
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7593
7503
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7594
7504
|
}
|
|
7505
|
+
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7506
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7507
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7508
|
+
}
|
|
7595
7509
|
/**
|
|
7596
7510
|
* JSON:API representation of userGroup entity.
|
|
7597
7511
|
*/
|
|
@@ -7661,7 +7575,7 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7661
7575
|
export interface JsonApiUserGroupOutList {
|
|
7662
7576
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7663
7577
|
links?: ListLinks;
|
|
7664
|
-
meta?:
|
|
7578
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7665
7579
|
/**
|
|
7666
7580
|
* Included resources
|
|
7667
7581
|
*/
|
|
@@ -7753,7 +7667,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
7753
7667
|
export interface JsonApiUserIdentifierOutList {
|
|
7754
7668
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7755
7669
|
links?: ListLinks;
|
|
7756
|
-
meta?:
|
|
7670
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7757
7671
|
}
|
|
7758
7672
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
7759
7673
|
/**
|
|
@@ -7843,7 +7757,7 @@ export interface JsonApiUserOutDocument {
|
|
|
7843
7757
|
export interface JsonApiUserOutList {
|
|
7844
7758
|
data: Array<JsonApiUserOutWithLinks>;
|
|
7845
7759
|
links?: ListLinks;
|
|
7846
|
-
meta?:
|
|
7760
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7847
7761
|
/**
|
|
7848
7762
|
* Included resources
|
|
7849
7763
|
*/
|
|
@@ -7909,12 +7823,51 @@ export interface JsonApiUserSettingIn {
|
|
|
7909
7823
|
* API identifier of an object
|
|
7910
7824
|
*/
|
|
7911
7825
|
id: string;
|
|
7912
|
-
attributes?:
|
|
7826
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7913
7827
|
}
|
|
7914
7828
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
7915
7829
|
readonly USER_SETTING: "userSetting";
|
|
7916
7830
|
};
|
|
7917
7831
|
export type JsonApiUserSettingInTypeEnum = (typeof JsonApiUserSettingInTypeEnum)[keyof typeof JsonApiUserSettingInTypeEnum];
|
|
7832
|
+
export interface JsonApiUserSettingInAttributes {
|
|
7833
|
+
/**
|
|
7834
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7835
|
+
*/
|
|
7836
|
+
content?: object;
|
|
7837
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
7838
|
+
}
|
|
7839
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
7840
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
7841
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7842
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7843
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7844
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7845
|
+
readonly LOCALE: "LOCALE";
|
|
7846
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7847
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7848
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7849
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7850
|
+
readonly WEEK_START: "WEEK_START";
|
|
7851
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7852
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7853
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7854
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7855
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7856
|
+
readonly ALERT: "ALERT";
|
|
7857
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
7858
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7859
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7860
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7861
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7862
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7863
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7864
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7865
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7866
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7867
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7868
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7869
|
+
};
|
|
7870
|
+
export type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
7918
7871
|
export interface JsonApiUserSettingInDocument {
|
|
7919
7872
|
data: JsonApiUserSettingIn;
|
|
7920
7873
|
}
|
|
@@ -7930,7 +7883,7 @@ export interface JsonApiUserSettingOut {
|
|
|
7930
7883
|
* API identifier of an object
|
|
7931
7884
|
*/
|
|
7932
7885
|
id: string;
|
|
7933
|
-
attributes?:
|
|
7886
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7934
7887
|
}
|
|
7935
7888
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
7936
7889
|
readonly USER_SETTING: "userSetting";
|
|
@@ -7946,7 +7899,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
7946
7899
|
export interface JsonApiUserSettingOutList {
|
|
7947
7900
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
7948
7901
|
links?: ListLinks;
|
|
7949
|
-
meta?:
|
|
7902
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7950
7903
|
}
|
|
7951
7904
|
export interface JsonApiUserSettingOutWithLinks {
|
|
7952
7905
|
/**
|
|
@@ -7957,7 +7910,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
7957
7910
|
* API identifier of an object
|
|
7958
7911
|
*/
|
|
7959
7912
|
id: string;
|
|
7960
|
-
attributes?:
|
|
7913
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
7961
7914
|
links?: ObjectLinks;
|
|
7962
7915
|
}
|
|
7963
7916
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -7976,7 +7929,7 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
7976
7929
|
* API identifier of an object
|
|
7977
7930
|
*/
|
|
7978
7931
|
id: string;
|
|
7979
|
-
attributes:
|
|
7932
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
7980
7933
|
}
|
|
7981
7934
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
7982
7935
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -8008,26 +7961,14 @@ export interface JsonApiVisualizationObjectOut {
|
|
|
8008
7961
|
* API identifier of an object
|
|
8009
7962
|
*/
|
|
8010
7963
|
id: string;
|
|
8011
|
-
meta?:
|
|
8012
|
-
attributes:
|
|
7964
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
7965
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
8013
7966
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8014
7967
|
}
|
|
8015
7968
|
export declare const JsonApiVisualizationObjectOutTypeEnum: {
|
|
8016
7969
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8017
7970
|
};
|
|
8018
7971
|
export type JsonApiVisualizationObjectOutTypeEnum = (typeof JsonApiVisualizationObjectOutTypeEnum)[keyof typeof JsonApiVisualizationObjectOutTypeEnum];
|
|
8019
|
-
export interface JsonApiVisualizationObjectOutAttributes {
|
|
8020
|
-
title?: string;
|
|
8021
|
-
description?: string;
|
|
8022
|
-
tags?: Array<string>;
|
|
8023
|
-
areRelationsValid?: boolean;
|
|
8024
|
-
/**
|
|
8025
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8026
|
-
*/
|
|
8027
|
-
content: object;
|
|
8028
|
-
createdAt?: string;
|
|
8029
|
-
modifiedAt?: string;
|
|
8030
|
-
}
|
|
8031
7972
|
export interface JsonApiVisualizationObjectOutDocument {
|
|
8032
7973
|
data: JsonApiVisualizationObjectOut;
|
|
8033
7974
|
links?: ObjectLinks;
|
|
@@ -8042,35 +7983,32 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8042
7983
|
export interface JsonApiVisualizationObjectOutList {
|
|
8043
7984
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8044
7985
|
links?: ListLinks;
|
|
8045
|
-
meta?:
|
|
7986
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8046
7987
|
/**
|
|
8047
7988
|
* Included resources
|
|
8048
7989
|
*/
|
|
8049
7990
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
8050
7991
|
}
|
|
8051
7992
|
export interface JsonApiVisualizationObjectOutRelationships {
|
|
8052
|
-
createdBy?:
|
|
8053
|
-
modifiedBy?:
|
|
8054
|
-
facts?:
|
|
8055
|
-
attributes?:
|
|
8056
|
-
labels?:
|
|
8057
|
-
metrics?:
|
|
8058
|
-
datasets?:
|
|
8059
|
-
}
|
|
8060
|
-
export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
8061
|
-
data: JsonApiUserIdentifierLinkage | null;
|
|
7993
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
7994
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
7995
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7996
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7997
|
+
labels?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
7998
|
+
metrics?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
7999
|
+
datasets?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
8062
8000
|
}
|
|
8063
|
-
export interface
|
|
8001
|
+
export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
8064
8002
|
/**
|
|
8065
8003
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8066
8004
|
*/
|
|
8067
|
-
data: Array<
|
|
8005
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
8068
8006
|
}
|
|
8069
|
-
export interface
|
|
8007
|
+
export interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
8070
8008
|
/**
|
|
8071
8009
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8072
8010
|
*/
|
|
8073
|
-
data: Array<
|
|
8011
|
+
data: Array<JsonApiFactLinkage>;
|
|
8074
8012
|
}
|
|
8075
8013
|
export interface JsonApiVisualizationObjectOutWithLinks {
|
|
8076
8014
|
/**
|
|
@@ -8081,8 +8019,8 @@ export interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
8081
8019
|
* API identifier of an object
|
|
8082
8020
|
*/
|
|
8083
8021
|
id: string;
|
|
8084
|
-
meta?:
|
|
8085
|
-
attributes:
|
|
8022
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8023
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
8086
8024
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8087
8025
|
links?: ObjectLinks;
|
|
8088
8026
|
}
|
|
@@ -8123,7 +8061,7 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8123
8061
|
* API identifier of an object
|
|
8124
8062
|
*/
|
|
8125
8063
|
id?: string;
|
|
8126
|
-
attributes:
|
|
8064
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
8127
8065
|
}
|
|
8128
8066
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8129
8067
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -8144,13 +8082,118 @@ export interface JsonApiWorkspaceAutomationOut {
|
|
|
8144
8082
|
* API identifier of an object
|
|
8145
8083
|
*/
|
|
8146
8084
|
id: string;
|
|
8147
|
-
attributes?:
|
|
8085
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
8148
8086
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
8149
8087
|
}
|
|
8150
8088
|
export declare const JsonApiWorkspaceAutomationOutTypeEnum: {
|
|
8151
8089
|
readonly WORKSPACE_AUTOMATION: "workspaceAutomation";
|
|
8152
8090
|
};
|
|
8153
8091
|
export type JsonApiWorkspaceAutomationOutTypeEnum = (typeof JsonApiWorkspaceAutomationOutTypeEnum)[keyof typeof JsonApiWorkspaceAutomationOutTypeEnum];
|
|
8092
|
+
export interface JsonApiWorkspaceAutomationOutAttributes {
|
|
8093
|
+
title?: string;
|
|
8094
|
+
description?: string;
|
|
8095
|
+
tags?: Array<string>;
|
|
8096
|
+
areRelationsValid?: boolean;
|
|
8097
|
+
/**
|
|
8098
|
+
* Additional details to be included in the automated message.
|
|
8099
|
+
*/
|
|
8100
|
+
details?: object;
|
|
8101
|
+
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
8102
|
+
/**
|
|
8103
|
+
* Current state of the automation.
|
|
8104
|
+
*/
|
|
8105
|
+
state?: JsonApiWorkspaceAutomationOutAttributesStateEnum;
|
|
8106
|
+
/**
|
|
8107
|
+
* Specify automation evaluation mode.
|
|
8108
|
+
*/
|
|
8109
|
+
evaluationMode?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
8110
|
+
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
8111
|
+
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
8112
|
+
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
8113
|
+
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
8114
|
+
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
8115
|
+
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
8116
|
+
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
8117
|
+
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
8118
|
+
/**
|
|
8119
|
+
* External recipients of the automation action results.
|
|
8120
|
+
*/
|
|
8121
|
+
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
8122
|
+
createdAt?: string;
|
|
8123
|
+
modifiedAt?: string;
|
|
8124
|
+
}
|
|
8125
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesStateEnum: {
|
|
8126
|
+
readonly ACTIVE: "ACTIVE";
|
|
8127
|
+
readonly PAUSED: "PAUSED";
|
|
8128
|
+
};
|
|
8129
|
+
export type JsonApiWorkspaceAutomationOutAttributesStateEnum = (typeof JsonApiWorkspaceAutomationOutAttributesStateEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesStateEnum];
|
|
8130
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum: {
|
|
8131
|
+
readonly SHARED: "SHARED";
|
|
8132
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
8133
|
+
};
|
|
8134
|
+
export type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum];
|
|
8135
|
+
export interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
8136
|
+
execution: AlertAfm;
|
|
8137
|
+
condition: AlertCondition;
|
|
8138
|
+
/**
|
|
8139
|
+
* 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.
|
|
8140
|
+
*/
|
|
8141
|
+
trigger?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
8142
|
+
}
|
|
8143
|
+
export declare const JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum: {
|
|
8144
|
+
readonly ALWAYS: "ALWAYS";
|
|
8145
|
+
readonly ONCE: "ONCE";
|
|
8146
|
+
};
|
|
8147
|
+
export type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum];
|
|
8148
|
+
export interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
8149
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
8150
|
+
}
|
|
8151
|
+
export interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
8152
|
+
/**
|
|
8153
|
+
* E-mail address to send notifications from.
|
|
8154
|
+
*/
|
|
8155
|
+
email: string;
|
|
8156
|
+
}
|
|
8157
|
+
export interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
8158
|
+
requestPayload: ImageExportRequest;
|
|
8159
|
+
}
|
|
8160
|
+
/**
|
|
8161
|
+
* Additional information for the automation.
|
|
8162
|
+
*/
|
|
8163
|
+
export interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
8164
|
+
widget?: string;
|
|
8165
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
8166
|
+
}
|
|
8167
|
+
export interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
8168
|
+
requestPayload: RawExportAutomationRequest;
|
|
8169
|
+
}
|
|
8170
|
+
export interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
8171
|
+
/**
|
|
8172
|
+
* 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.
|
|
8173
|
+
*/
|
|
8174
|
+
cron: string;
|
|
8175
|
+
/**
|
|
8176
|
+
* Human-readable description of the cron expression.
|
|
8177
|
+
*/
|
|
8178
|
+
cronDescription?: string;
|
|
8179
|
+
/**
|
|
8180
|
+
* Timezone in which the schedule is defined.
|
|
8181
|
+
*/
|
|
8182
|
+
timezone: string;
|
|
8183
|
+
/**
|
|
8184
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
8185
|
+
*/
|
|
8186
|
+
firstRun?: string;
|
|
8187
|
+
}
|
|
8188
|
+
export interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
8189
|
+
requestPayload: SlidesExportRequest;
|
|
8190
|
+
}
|
|
8191
|
+
export interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
8192
|
+
requestPayload: TabularExportRequest;
|
|
8193
|
+
}
|
|
8194
|
+
export interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
8195
|
+
requestPayload: VisualExportRequest;
|
|
8196
|
+
}
|
|
8154
8197
|
/**
|
|
8155
8198
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
8156
8199
|
*/
|
|
@@ -8161,21 +8204,45 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8161
8204
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8162
8205
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8163
8206
|
links?: ListLinks;
|
|
8164
|
-
meta?:
|
|
8207
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8165
8208
|
/**
|
|
8166
8209
|
* Included resources
|
|
8167
8210
|
*/
|
|
8168
8211
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
8169
8212
|
}
|
|
8213
|
+
export interface JsonApiWorkspaceAutomationOutListMeta {
|
|
8214
|
+
page?: PageMetadata;
|
|
8215
|
+
}
|
|
8170
8216
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8171
8217
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8172
|
-
notificationChannel?:
|
|
8218
|
+
notificationChannel?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
8173
8219
|
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
8174
|
-
createdBy?:
|
|
8175
|
-
modifiedBy?:
|
|
8176
|
-
exportDefinitions?:
|
|
8177
|
-
recipients?:
|
|
8178
|
-
automationResults?:
|
|
8220
|
+
createdBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
8221
|
+
modifiedBy?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
8222
|
+
exportDefinitions?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
8223
|
+
recipients?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
8224
|
+
automationResults?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
8225
|
+
}
|
|
8226
|
+
export interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
|
|
8227
|
+
/**
|
|
8228
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8229
|
+
*/
|
|
8230
|
+
data: Array<JsonApiAutomationResultLinkage>;
|
|
8231
|
+
}
|
|
8232
|
+
export interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
|
|
8233
|
+
/**
|
|
8234
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8235
|
+
*/
|
|
8236
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
8237
|
+
}
|
|
8238
|
+
export interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
|
|
8239
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
8240
|
+
}
|
|
8241
|
+
export interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
8242
|
+
/**
|
|
8243
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8244
|
+
*/
|
|
8245
|
+
data: Array<JsonApiUserLinkage>;
|
|
8179
8246
|
}
|
|
8180
8247
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
8181
8248
|
/**
|
|
@@ -8186,7 +8253,7 @@ export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
8186
8253
|
* API identifier of an object
|
|
8187
8254
|
*/
|
|
8188
8255
|
id: string;
|
|
8189
|
-
attributes?:
|
|
8256
|
+
attributes?: JsonApiWorkspaceAutomationOutAttributes;
|
|
8190
8257
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
8191
8258
|
links?: ObjectLinks;
|
|
8192
8259
|
}
|
|
@@ -8239,7 +8306,7 @@ export interface JsonApiWorkspaceDataFilterOut {
|
|
|
8239
8306
|
* API identifier of an object
|
|
8240
8307
|
*/
|
|
8241
8308
|
id: string;
|
|
8242
|
-
meta?:
|
|
8309
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8243
8310
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8244
8311
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8245
8312
|
}
|
|
@@ -8266,7 +8333,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8266
8333
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8267
8334
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8268
8335
|
links?: ListLinks;
|
|
8269
|
-
meta?:
|
|
8336
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8270
8337
|
/**
|
|
8271
8338
|
* Included resources
|
|
8272
8339
|
*/
|
|
@@ -8290,7 +8357,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
8290
8357
|
* API identifier of an object
|
|
8291
8358
|
*/
|
|
8292
8359
|
id: string;
|
|
8293
|
-
meta?:
|
|
8360
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8294
8361
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8295
8362
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8296
8363
|
links?: ObjectLinks;
|
|
@@ -8333,16 +8400,27 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8333
8400
|
* API identifier of an object
|
|
8334
8401
|
*/
|
|
8335
8402
|
id: string;
|
|
8336
|
-
attributes?:
|
|
8337
|
-
relationships?:
|
|
8403
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8404
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8338
8405
|
}
|
|
8339
8406
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8340
8407
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8341
8408
|
};
|
|
8342
8409
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
8410
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8411
|
+
title?: string;
|
|
8412
|
+
description?: string;
|
|
8413
|
+
filterValues?: Array<string>;
|
|
8414
|
+
}
|
|
8343
8415
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8344
8416
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
8345
8417
|
}
|
|
8418
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8419
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8420
|
+
}
|
|
8421
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8422
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8423
|
+
}
|
|
8346
8424
|
/**
|
|
8347
8425
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8348
8426
|
*/
|
|
@@ -8366,19 +8444,14 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8366
8444
|
* API identifier of an object
|
|
8367
8445
|
*/
|
|
8368
8446
|
id: string;
|
|
8369
|
-
meta?:
|
|
8370
|
-
attributes?:
|
|
8371
|
-
relationships?:
|
|
8447
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8448
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8449
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8372
8450
|
}
|
|
8373
8451
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8374
8452
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8375
8453
|
};
|
|
8376
8454
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
8377
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
8378
|
-
title?: string;
|
|
8379
|
-
description?: string;
|
|
8380
|
-
filterValues?: Array<string>;
|
|
8381
|
-
}
|
|
8382
8455
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
8383
8456
|
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
8384
8457
|
links?: ObjectLinks;
|
|
@@ -8393,18 +8466,12 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8393
8466
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8394
8467
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8395
8468
|
links?: ListLinks;
|
|
8396
|
-
meta?:
|
|
8469
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8397
8470
|
/**
|
|
8398
8471
|
* Included resources
|
|
8399
8472
|
*/
|
|
8400
8473
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8401
8474
|
}
|
|
8402
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
8403
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
8404
|
-
}
|
|
8405
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
8406
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8407
|
-
}
|
|
8408
8475
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
8409
8476
|
/**
|
|
8410
8477
|
* Object type
|
|
@@ -8414,9 +8481,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8414
8481
|
* API identifier of an object
|
|
8415
8482
|
*/
|
|
8416
8483
|
id: string;
|
|
8417
|
-
meta?:
|
|
8418
|
-
attributes?:
|
|
8419
|
-
relationships?:
|
|
8484
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8485
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8486
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8420
8487
|
links?: ObjectLinks;
|
|
8421
8488
|
}
|
|
8422
8489
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8435,8 +8502,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8435
8502
|
* API identifier of an object
|
|
8436
8503
|
*/
|
|
8437
8504
|
id: string;
|
|
8438
|
-
attributes?:
|
|
8439
|
-
relationships?:
|
|
8505
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8506
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8440
8507
|
}
|
|
8441
8508
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8442
8509
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8544,7 +8611,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8544
8611
|
export interface JsonApiWorkspaceOutList {
|
|
8545
8612
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8546
8613
|
links?: ListLinks;
|
|
8547
|
-
meta?:
|
|
8614
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8548
8615
|
/**
|
|
8549
8616
|
* Included resources
|
|
8550
8617
|
*/
|
|
@@ -8655,7 +8722,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8655
8722
|
* API identifier of an object
|
|
8656
8723
|
*/
|
|
8657
8724
|
id: string;
|
|
8658
|
-
attributes?:
|
|
8725
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
8659
8726
|
}
|
|
8660
8727
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8661
8728
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8676,51 +8743,13 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8676
8743
|
* API identifier of an object
|
|
8677
8744
|
*/
|
|
8678
8745
|
id: string;
|
|
8679
|
-
meta?:
|
|
8680
|
-
attributes?:
|
|
8746
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8747
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
8681
8748
|
}
|
|
8682
8749
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
8683
8750
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
8684
8751
|
};
|
|
8685
8752
|
export type JsonApiWorkspaceSettingOutTypeEnum = (typeof JsonApiWorkspaceSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutTypeEnum];
|
|
8686
|
-
export interface JsonApiWorkspaceSettingOutAttributes {
|
|
8687
|
-
/**
|
|
8688
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8689
|
-
*/
|
|
8690
|
-
content?: object;
|
|
8691
|
-
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
8692
|
-
}
|
|
8693
|
-
export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
|
|
8694
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
8695
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
8696
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
8697
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
8698
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
8699
|
-
readonly LOCALE: "LOCALE";
|
|
8700
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
8701
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
8702
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
8703
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
8704
|
-
readonly WEEK_START: "WEEK_START";
|
|
8705
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
8706
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
8707
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
8708
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
8709
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
8710
|
-
readonly ALERT: "ALERT";
|
|
8711
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
8712
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
8713
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
8714
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
8715
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
8716
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
8717
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
8718
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
8719
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
8720
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
8721
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
8722
|
-
};
|
|
8723
|
-
export type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
|
|
8724
8753
|
export interface JsonApiWorkspaceSettingOutDocument {
|
|
8725
8754
|
data: JsonApiWorkspaceSettingOut;
|
|
8726
8755
|
links?: ObjectLinks;
|
|
@@ -8731,7 +8760,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
8731
8760
|
export interface JsonApiWorkspaceSettingOutList {
|
|
8732
8761
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
8733
8762
|
links?: ListLinks;
|
|
8734
|
-
meta?:
|
|
8763
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8735
8764
|
}
|
|
8736
8765
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
8737
8766
|
/**
|
|
@@ -8742,8 +8771,8 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
8742
8771
|
* API identifier of an object
|
|
8743
8772
|
*/
|
|
8744
8773
|
id: string;
|
|
8745
|
-
meta?:
|
|
8746
|
-
attributes?:
|
|
8774
|
+
meta?: JsonApiExportDefinitionOutMeta;
|
|
8775
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
8747
8776
|
links?: ObjectLinks;
|
|
8748
8777
|
}
|
|
8749
8778
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -8762,7 +8791,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
8762
8791
|
* API identifier of an object
|
|
8763
8792
|
*/
|
|
8764
8793
|
id: string;
|
|
8765
|
-
attributes?:
|
|
8794
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
8766
8795
|
}
|
|
8767
8796
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
8768
8797
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8783,7 +8812,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
8783
8812
|
* API identifier of an object
|
|
8784
8813
|
*/
|
|
8785
8814
|
id?: string;
|
|
8786
|
-
attributes?:
|
|
8815
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
8787
8816
|
}
|
|
8788
8817
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
8789
8818
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9470,6 +9499,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
9470
9499
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
9471
9500
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
9472
9501
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
9502
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
9473
9503
|
};
|
|
9474
9504
|
export type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
9475
9505
|
export interface RsaSpecification {
|