@gooddata/api-client-tiger 10.44.0-alpha.1 → 10.44.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +964 -852
- package/esm/generated/metadata-json-api/api.d.ts +895 -785
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +223 -71
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9785 -9765
- package/package.json +3 -3
|
@@ -3105,7 +3105,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
3105
3105
|
* API identifier of an object
|
|
3106
3106
|
*/
|
|
3107
3107
|
id: string;
|
|
3108
|
-
meta?:
|
|
3108
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3109
3109
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3110
3110
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3111
3111
|
}
|
|
@@ -3155,7 +3155,7 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3155
3155
|
export interface JsonApiAggregatedFactOutList {
|
|
3156
3156
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3157
3157
|
links?: ListLinks;
|
|
3158
|
-
meta?:
|
|
3158
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3159
3159
|
/**
|
|
3160
3160
|
* Included resources
|
|
3161
3161
|
*/
|
|
@@ -3177,7 +3177,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
|
|
|
3177
3177
|
* API identifier of an object
|
|
3178
3178
|
*/
|
|
3179
3179
|
id: string;
|
|
3180
|
-
meta?:
|
|
3180
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3181
3181
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3182
3182
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3183
3183
|
links?: ObjectLinks;
|
|
@@ -3198,12 +3198,22 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3198
3198
|
* API identifier of an object
|
|
3199
3199
|
*/
|
|
3200
3200
|
id: string;
|
|
3201
|
-
attributes:
|
|
3201
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3202
3202
|
}
|
|
3203
3203
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3204
3204
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3205
3205
|
};
|
|
3206
3206
|
export type JsonApiAnalyticalDashboardInTypeEnum = (typeof JsonApiAnalyticalDashboardInTypeEnum)[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
3207
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
3208
|
+
title?: string;
|
|
3209
|
+
description?: string;
|
|
3210
|
+
tags?: Array<string>;
|
|
3211
|
+
areRelationsValid?: boolean;
|
|
3212
|
+
/**
|
|
3213
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3214
|
+
*/
|
|
3215
|
+
content: object;
|
|
3216
|
+
}
|
|
3207
3217
|
export interface JsonApiAnalyticalDashboardInDocument {
|
|
3208
3218
|
data: JsonApiAnalyticalDashboardIn;
|
|
3209
3219
|
}
|
|
@@ -3231,25 +3241,13 @@ export interface JsonApiAnalyticalDashboardOut {
|
|
|
3231
3241
|
*/
|
|
3232
3242
|
id: string;
|
|
3233
3243
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3234
|
-
attributes:
|
|
3244
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
3235
3245
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3236
3246
|
}
|
|
3237
3247
|
export declare const JsonApiAnalyticalDashboardOutTypeEnum: {
|
|
3238
3248
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3239
3249
|
};
|
|
3240
3250
|
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
|
-
}
|
|
3253
3251
|
export interface JsonApiAnalyticalDashboardOutDocument {
|
|
3254
3252
|
data: JsonApiAnalyticalDashboardOut;
|
|
3255
3253
|
links?: ObjectLinks;
|
|
@@ -3268,7 +3266,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3268
3266
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3269
3267
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3270
3268
|
links?: ListLinks;
|
|
3271
|
-
meta?:
|
|
3269
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3272
3270
|
/**
|
|
3273
3271
|
* Included resources
|
|
3274
3272
|
*/
|
|
@@ -3279,7 +3277,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
3279
3277
|
* List of valid permissions for a logged-in user.
|
|
3280
3278
|
*/
|
|
3281
3279
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
3282
|
-
origin?:
|
|
3280
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
3283
3281
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
3284
3282
|
}
|
|
3285
3283
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
@@ -3294,29 +3292,14 @@ export interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
3294
3292
|
*/
|
|
3295
3293
|
private: boolean;
|
|
3296
3294
|
}
|
|
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];
|
|
3312
3295
|
export interface JsonApiAnalyticalDashboardOutRelationships {
|
|
3313
|
-
createdBy?:
|
|
3314
|
-
modifiedBy?:
|
|
3296
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3297
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3315
3298
|
visualizationObjects?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
3316
3299
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
3317
|
-
labels?:
|
|
3318
|
-
metrics?:
|
|
3319
|
-
datasets?:
|
|
3300
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3301
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
3302
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
3320
3303
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
3321
3304
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
3322
3305
|
}
|
|
@@ -3326,39 +3309,18 @@ export interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards
|
|
|
3326
3309
|
*/
|
|
3327
3310
|
data: Array<JsonApiAnalyticalDashboardLinkage>;
|
|
3328
3311
|
}
|
|
3329
|
-
export interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
3330
|
-
data: JsonApiUserIdentifierLinkage | null;
|
|
3331
|
-
}
|
|
3332
3312
|
export interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
3333
3313
|
/**
|
|
3334
3314
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3335
3315
|
*/
|
|
3336
3316
|
data: Array<JsonApiDashboardPluginLinkage>;
|
|
3337
3317
|
}
|
|
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
|
-
}
|
|
3344
3318
|
export interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
3345
3319
|
/**
|
|
3346
3320
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3347
3321
|
*/
|
|
3348
3322
|
data: Array<JsonApiFilterContextLinkage>;
|
|
3349
3323
|
}
|
|
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
|
-
}
|
|
3362
3324
|
export interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
3363
3325
|
/**
|
|
3364
3326
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -3375,7 +3337,7 @@ export interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
3375
3337
|
*/
|
|
3376
3338
|
id: string;
|
|
3377
3339
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3378
|
-
attributes:
|
|
3340
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
3379
3341
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3380
3342
|
links?: ObjectLinks;
|
|
3381
3343
|
}
|
|
@@ -3426,22 +3388,12 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3426
3388
|
* API identifier of an object
|
|
3427
3389
|
*/
|
|
3428
3390
|
id?: string;
|
|
3429
|
-
attributes:
|
|
3391
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3430
3392
|
}
|
|
3431
3393
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3432
3394
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3433
3395
|
};
|
|
3434
3396
|
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
|
-
}
|
|
3445
3397
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
3446
3398
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
3447
3399
|
}
|
|
@@ -3499,7 +3451,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3499
3451
|
export interface JsonApiApiTokenOutList {
|
|
3500
3452
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3501
3453
|
links?: ListLinks;
|
|
3502
|
-
meta?:
|
|
3454
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3503
3455
|
}
|
|
3504
3456
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3505
3457
|
/**
|
|
@@ -3571,7 +3523,7 @@ export interface JsonApiAttributeHierarchyOut {
|
|
|
3571
3523
|
* API identifier of an object
|
|
3572
3524
|
*/
|
|
3573
3525
|
id: string;
|
|
3574
|
-
meta?:
|
|
3526
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3575
3527
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3576
3528
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3577
3529
|
}
|
|
@@ -3609,15 +3561,15 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3609
3561
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3610
3562
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3611
3563
|
links?: ListLinks;
|
|
3612
|
-
meta?:
|
|
3564
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3613
3565
|
/**
|
|
3614
3566
|
* Included resources
|
|
3615
3567
|
*/
|
|
3616
3568
|
included?: Array<JsonApiAttributeHierarchyOutIncludes>;
|
|
3617
3569
|
}
|
|
3618
3570
|
export interface JsonApiAttributeHierarchyOutRelationships {
|
|
3619
|
-
createdBy?:
|
|
3620
|
-
modifiedBy?:
|
|
3571
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3572
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3621
3573
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
3622
3574
|
}
|
|
3623
3575
|
export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
@@ -3629,7 +3581,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
3629
3581
|
* API identifier of an object
|
|
3630
3582
|
*/
|
|
3631
3583
|
id: string;
|
|
3632
|
-
meta?:
|
|
3584
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3633
3585
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3634
3586
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3635
3587
|
links?: ObjectLinks;
|
|
@@ -3682,7 +3634,7 @@ export interface JsonApiAttributeOut {
|
|
|
3682
3634
|
* API identifier of an object
|
|
3683
3635
|
*/
|
|
3684
3636
|
id: string;
|
|
3685
|
-
meta?:
|
|
3637
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3686
3638
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3687
3639
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3688
3640
|
}
|
|
@@ -3753,7 +3705,7 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3753
3705
|
export interface JsonApiAttributeOutList {
|
|
3754
3706
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3755
3707
|
links?: ListLinks;
|
|
3756
|
-
meta?:
|
|
3708
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3757
3709
|
/**
|
|
3758
3710
|
* Included resources
|
|
3759
3711
|
*/
|
|
@@ -3762,7 +3714,7 @@ export interface JsonApiAttributeOutList {
|
|
|
3762
3714
|
export interface JsonApiAttributeOutRelationships {
|
|
3763
3715
|
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3764
3716
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3765
|
-
labels?:
|
|
3717
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3766
3718
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
3767
3719
|
}
|
|
3768
3720
|
export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
@@ -3786,7 +3738,7 @@ export interface JsonApiAttributeOutWithLinks {
|
|
|
3786
3738
|
* API identifier of an object
|
|
3787
3739
|
*/
|
|
3788
3740
|
id: string;
|
|
3789
|
-
meta?:
|
|
3741
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3790
3742
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3791
3743
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3792
3744
|
links?: ObjectLinks;
|
|
@@ -3823,7 +3775,7 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3823
3775
|
* Additional details to be included in the automated message.
|
|
3824
3776
|
*/
|
|
3825
3777
|
details?: object;
|
|
3826
|
-
metadata?:
|
|
3778
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3827
3779
|
/**
|
|
3828
3780
|
* Current state of the automation.
|
|
3829
3781
|
*/
|
|
@@ -3832,18 +3784,18 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3832
3784
|
* Specify automation evaluation mode.
|
|
3833
3785
|
*/
|
|
3834
3786
|
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3835
|
-
schedule?:
|
|
3836
|
-
alert?:
|
|
3837
|
-
tabularExports?: Array<
|
|
3838
|
-
visualExports?: Array<
|
|
3839
|
-
imageExports?: Array<
|
|
3840
|
-
rawExports?: Array<
|
|
3841
|
-
slidesExports?: Array<
|
|
3842
|
-
dashboardTabularExports?: Array<
|
|
3787
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3788
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3789
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3790
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3791
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3792
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3793
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3794
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3843
3795
|
/**
|
|
3844
3796
|
* External recipients of the automation action results.
|
|
3845
3797
|
*/
|
|
3846
|
-
externalRecipients?: Array<
|
|
3798
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3847
3799
|
}
|
|
3848
3800
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3849
3801
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -3855,14 +3807,94 @@ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
|
3855
3807
|
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3856
3808
|
};
|
|
3857
3809
|
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3810
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
3811
|
+
execution: AlertAfm;
|
|
3812
|
+
condition: AlertCondition;
|
|
3813
|
+
/**
|
|
3814
|
+
* 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.
|
|
3815
|
+
*/
|
|
3816
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
3817
|
+
}
|
|
3818
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
3819
|
+
readonly ALWAYS: "ALWAYS";
|
|
3820
|
+
readonly ONCE: "ONCE";
|
|
3821
|
+
};
|
|
3822
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
3823
|
+
export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
3824
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
3825
|
+
}
|
|
3826
|
+
export interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
3827
|
+
/**
|
|
3828
|
+
* E-mail address to send notifications from.
|
|
3829
|
+
*/
|
|
3830
|
+
email: string;
|
|
3831
|
+
}
|
|
3832
|
+
export interface JsonApiAutomationInAttributesImageExportsInner {
|
|
3833
|
+
requestPayload: ImageExportRequest;
|
|
3834
|
+
}
|
|
3835
|
+
/**
|
|
3836
|
+
* Additional information for the automation.
|
|
3837
|
+
*/
|
|
3838
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
3839
|
+
widget?: string;
|
|
3840
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
3841
|
+
}
|
|
3842
|
+
export interface JsonApiAutomationInAttributesRawExportsInner {
|
|
3843
|
+
requestPayload: RawExportAutomationRequest;
|
|
3844
|
+
}
|
|
3845
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
3846
|
+
/**
|
|
3847
|
+
* 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.
|
|
3848
|
+
*/
|
|
3849
|
+
cron: string;
|
|
3850
|
+
/**
|
|
3851
|
+
* Human-readable description of the cron expression.
|
|
3852
|
+
*/
|
|
3853
|
+
cronDescription?: string;
|
|
3854
|
+
/**
|
|
3855
|
+
* Timezone in which the schedule is defined.
|
|
3856
|
+
*/
|
|
3857
|
+
timezone: string;
|
|
3858
|
+
/**
|
|
3859
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3860
|
+
*/
|
|
3861
|
+
firstRun?: string;
|
|
3862
|
+
}
|
|
3863
|
+
export interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
3864
|
+
requestPayload: SlidesExportRequest;
|
|
3865
|
+
}
|
|
3866
|
+
export interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
3867
|
+
requestPayload: TabularExportRequest;
|
|
3868
|
+
}
|
|
3869
|
+
export interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
3870
|
+
requestPayload: VisualExportRequest;
|
|
3871
|
+
}
|
|
3858
3872
|
export interface JsonApiAutomationInDocument {
|
|
3859
3873
|
data: JsonApiAutomationIn;
|
|
3860
3874
|
}
|
|
3861
3875
|
export interface JsonApiAutomationInRelationships {
|
|
3862
|
-
notificationChannel?:
|
|
3863
|
-
analyticalDashboard?:
|
|
3864
|
-
exportDefinitions?:
|
|
3865
|
-
recipients?:
|
|
3876
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3877
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3878
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3879
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3880
|
+
}
|
|
3881
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3882
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3883
|
+
}
|
|
3884
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3885
|
+
/**
|
|
3886
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3887
|
+
*/
|
|
3888
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3889
|
+
}
|
|
3890
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3891
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
3892
|
+
}
|
|
3893
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3894
|
+
/**
|
|
3895
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3896
|
+
*/
|
|
3897
|
+
data: Array<JsonApiUserLinkage>;
|
|
3866
3898
|
}
|
|
3867
3899
|
/**
|
|
3868
3900
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
@@ -3887,14 +3919,57 @@ export interface JsonApiAutomationOut {
|
|
|
3887
3919
|
* API identifier of an object
|
|
3888
3920
|
*/
|
|
3889
3921
|
id: string;
|
|
3890
|
-
meta?:
|
|
3891
|
-
attributes?:
|
|
3922
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3923
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
3892
3924
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3893
3925
|
}
|
|
3894
3926
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
3895
3927
|
readonly AUTOMATION: "automation";
|
|
3896
3928
|
};
|
|
3897
3929
|
export type JsonApiAutomationOutTypeEnum = (typeof JsonApiAutomationOutTypeEnum)[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
3930
|
+
export interface JsonApiAutomationOutAttributes {
|
|
3931
|
+
title?: string;
|
|
3932
|
+
description?: string;
|
|
3933
|
+
tags?: Array<string>;
|
|
3934
|
+
areRelationsValid?: boolean;
|
|
3935
|
+
/**
|
|
3936
|
+
* Additional details to be included in the automated message.
|
|
3937
|
+
*/
|
|
3938
|
+
details?: object;
|
|
3939
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3940
|
+
/**
|
|
3941
|
+
* Current state of the automation.
|
|
3942
|
+
*/
|
|
3943
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
3944
|
+
/**
|
|
3945
|
+
* Specify automation evaluation mode.
|
|
3946
|
+
*/
|
|
3947
|
+
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3948
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3949
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3950
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3951
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3952
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3953
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3954
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3955
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3956
|
+
/**
|
|
3957
|
+
* External recipients of the automation action results.
|
|
3958
|
+
*/
|
|
3959
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3960
|
+
createdAt?: string;
|
|
3961
|
+
modifiedAt?: string;
|
|
3962
|
+
}
|
|
3963
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
3964
|
+
readonly ACTIVE: "ACTIVE";
|
|
3965
|
+
readonly PAUSED: "PAUSED";
|
|
3966
|
+
};
|
|
3967
|
+
export type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
3968
|
+
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
3969
|
+
readonly SHARED: "SHARED";
|
|
3970
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3971
|
+
};
|
|
3972
|
+
export type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
3898
3973
|
export interface JsonApiAutomationOutDocument {
|
|
3899
3974
|
data: JsonApiAutomationOut;
|
|
3900
3975
|
links?: ObjectLinks;
|
|
@@ -3913,20 +3988,26 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
3913
3988
|
export interface JsonApiAutomationOutList {
|
|
3914
3989
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
3915
3990
|
links?: ListLinks;
|
|
3916
|
-
meta?:
|
|
3991
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3917
3992
|
/**
|
|
3918
3993
|
* Included resources
|
|
3919
3994
|
*/
|
|
3920
3995
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3921
3996
|
}
|
|
3922
3997
|
export interface JsonApiAutomationOutRelationships {
|
|
3923
|
-
notificationChannel?:
|
|
3924
|
-
analyticalDashboard?:
|
|
3925
|
-
createdBy?:
|
|
3926
|
-
modifiedBy?:
|
|
3927
|
-
exportDefinitions?:
|
|
3928
|
-
recipients?:
|
|
3929
|
-
automationResults?:
|
|
3998
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3999
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
4000
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4001
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4002
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
4003
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
4004
|
+
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
4005
|
+
}
|
|
4006
|
+
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
4007
|
+
/**
|
|
4008
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4009
|
+
*/
|
|
4010
|
+
data: Array<JsonApiAutomationResultLinkage>;
|
|
3930
4011
|
}
|
|
3931
4012
|
export interface JsonApiAutomationOutWithLinks {
|
|
3932
4013
|
/**
|
|
@@ -3937,8 +4018,8 @@ export interface JsonApiAutomationOutWithLinks {
|
|
|
3937
4018
|
* API identifier of an object
|
|
3938
4019
|
*/
|
|
3939
4020
|
id: string;
|
|
3940
|
-
meta?:
|
|
3941
|
-
attributes?:
|
|
4021
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4022
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
3942
4023
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3943
4024
|
links?: ObjectLinks;
|
|
3944
4025
|
}
|
|
@@ -4047,12 +4128,19 @@ export interface JsonApiColorPaletteIn {
|
|
|
4047
4128
|
* API identifier of an object
|
|
4048
4129
|
*/
|
|
4049
4130
|
id: string;
|
|
4050
|
-
attributes:
|
|
4131
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4051
4132
|
}
|
|
4052
4133
|
export declare const JsonApiColorPaletteInTypeEnum: {
|
|
4053
4134
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4054
4135
|
};
|
|
4055
4136
|
export type JsonApiColorPaletteInTypeEnum = (typeof JsonApiColorPaletteInTypeEnum)[keyof typeof JsonApiColorPaletteInTypeEnum];
|
|
4137
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
4138
|
+
name: string;
|
|
4139
|
+
/**
|
|
4140
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4141
|
+
*/
|
|
4142
|
+
content: object;
|
|
4143
|
+
}
|
|
4056
4144
|
export interface JsonApiColorPaletteInDocument {
|
|
4057
4145
|
data: JsonApiColorPaletteIn;
|
|
4058
4146
|
}
|
|
@@ -4068,19 +4156,12 @@ export interface JsonApiColorPaletteOut {
|
|
|
4068
4156
|
* API identifier of an object
|
|
4069
4157
|
*/
|
|
4070
4158
|
id: string;
|
|
4071
|
-
attributes:
|
|
4159
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4072
4160
|
}
|
|
4073
4161
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
4074
4162
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4075
4163
|
};
|
|
4076
4164
|
export type JsonApiColorPaletteOutTypeEnum = (typeof JsonApiColorPaletteOutTypeEnum)[keyof typeof JsonApiColorPaletteOutTypeEnum];
|
|
4077
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
4078
|
-
name: string;
|
|
4079
|
-
/**
|
|
4080
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4081
|
-
*/
|
|
4082
|
-
content: object;
|
|
4083
|
-
}
|
|
4084
4165
|
export interface JsonApiColorPaletteOutDocument {
|
|
4085
4166
|
data: JsonApiColorPaletteOut;
|
|
4086
4167
|
links?: ObjectLinks;
|
|
@@ -4091,7 +4172,10 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4091
4172
|
export interface JsonApiColorPaletteOutList {
|
|
4092
4173
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4093
4174
|
links?: ListLinks;
|
|
4094
|
-
meta?:
|
|
4175
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4176
|
+
}
|
|
4177
|
+
export interface JsonApiColorPaletteOutListMeta {
|
|
4178
|
+
page?: PageMetadata;
|
|
4095
4179
|
}
|
|
4096
4180
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4097
4181
|
/**
|
|
@@ -4102,7 +4186,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
4102
4186
|
* API identifier of an object
|
|
4103
4187
|
*/
|
|
4104
4188
|
id: string;
|
|
4105
|
-
attributes:
|
|
4189
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4106
4190
|
links?: ObjectLinks;
|
|
4107
4191
|
}
|
|
4108
4192
|
export declare const JsonApiColorPaletteOutWithLinksTypeEnum: {
|
|
@@ -4220,12 +4304,15 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4220
4304
|
* API identifier of an object
|
|
4221
4305
|
*/
|
|
4222
4306
|
id: string;
|
|
4223
|
-
attributes:
|
|
4307
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4224
4308
|
}
|
|
4225
4309
|
export declare const JsonApiCspDirectiveInTypeEnum: {
|
|
4226
4310
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4227
4311
|
};
|
|
4228
4312
|
export type JsonApiCspDirectiveInTypeEnum = (typeof JsonApiCspDirectiveInTypeEnum)[keyof typeof JsonApiCspDirectiveInTypeEnum];
|
|
4313
|
+
export interface JsonApiCspDirectiveInAttributes {
|
|
4314
|
+
sources: Array<string>;
|
|
4315
|
+
}
|
|
4229
4316
|
export interface JsonApiCspDirectiveInDocument {
|
|
4230
4317
|
data: JsonApiCspDirectiveIn;
|
|
4231
4318
|
}
|
|
@@ -4241,15 +4328,12 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4241
4328
|
* API identifier of an object
|
|
4242
4329
|
*/
|
|
4243
4330
|
id: string;
|
|
4244
|
-
attributes:
|
|
4331
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4245
4332
|
}
|
|
4246
4333
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
4247
4334
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4248
4335
|
};
|
|
4249
4336
|
export type JsonApiCspDirectiveOutTypeEnum = (typeof JsonApiCspDirectiveOutTypeEnum)[keyof typeof JsonApiCspDirectiveOutTypeEnum];
|
|
4250
|
-
export interface JsonApiCspDirectiveOutAttributes {
|
|
4251
|
-
sources: Array<string>;
|
|
4252
|
-
}
|
|
4253
4337
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4254
4338
|
data: JsonApiCspDirectiveOut;
|
|
4255
4339
|
links?: ObjectLinks;
|
|
@@ -4260,7 +4344,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4260
4344
|
export interface JsonApiCspDirectiveOutList {
|
|
4261
4345
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4262
4346
|
links?: ListLinks;
|
|
4263
|
-
meta?:
|
|
4347
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4264
4348
|
}
|
|
4265
4349
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4266
4350
|
/**
|
|
@@ -4271,7 +4355,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4271
4355
|
* API identifier of an object
|
|
4272
4356
|
*/
|
|
4273
4357
|
id: string;
|
|
4274
|
-
attributes:
|
|
4358
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4275
4359
|
links?: ObjectLinks;
|
|
4276
4360
|
}
|
|
4277
4361
|
export declare const JsonApiCspDirectiveOutWithLinksTypeEnum: {
|
|
@@ -4314,12 +4398,19 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4314
4398
|
* API identifier of an object
|
|
4315
4399
|
*/
|
|
4316
4400
|
id: string;
|
|
4317
|
-
attributes:
|
|
4401
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4318
4402
|
}
|
|
4319
4403
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4320
4404
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4321
4405
|
};
|
|
4322
4406
|
export type JsonApiCustomApplicationSettingInTypeEnum = (typeof JsonApiCustomApplicationSettingInTypeEnum)[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
4407
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
4408
|
+
applicationName: string;
|
|
4409
|
+
/**
|
|
4410
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4411
|
+
*/
|
|
4412
|
+
content: object;
|
|
4413
|
+
}
|
|
4323
4414
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
4324
4415
|
data: JsonApiCustomApplicationSettingIn;
|
|
4325
4416
|
}
|
|
@@ -4335,8 +4426,8 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4335
4426
|
* API identifier of an object
|
|
4336
4427
|
*/
|
|
4337
4428
|
id: string;
|
|
4338
|
-
meta?:
|
|
4339
|
-
attributes:
|
|
4429
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4430
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4340
4431
|
}
|
|
4341
4432
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4342
4433
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4352,7 +4443,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4352
4443
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4353
4444
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4354
4445
|
links?: ListLinks;
|
|
4355
|
-
meta?:
|
|
4446
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4356
4447
|
}
|
|
4357
4448
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4358
4449
|
/**
|
|
@@ -4363,8 +4454,8 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4363
4454
|
* API identifier of an object
|
|
4364
4455
|
*/
|
|
4365
4456
|
id: string;
|
|
4366
|
-
meta?:
|
|
4367
|
-
attributes:
|
|
4457
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4458
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4368
4459
|
links?: ObjectLinks;
|
|
4369
4460
|
}
|
|
4370
4461
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4411,19 +4502,12 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4411
4502
|
* API identifier of an object
|
|
4412
4503
|
*/
|
|
4413
4504
|
id?: string;
|
|
4414
|
-
attributes:
|
|
4505
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4415
4506
|
}
|
|
4416
4507
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4417
4508
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4418
4509
|
};
|
|
4419
4510
|
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
|
-
}
|
|
4427
4511
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4428
4512
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
4429
4513
|
}
|
|
@@ -4439,12 +4523,22 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4439
4523
|
* API identifier of an object
|
|
4440
4524
|
*/
|
|
4441
4525
|
id: string;
|
|
4442
|
-
attributes?:
|
|
4526
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4443
4527
|
}
|
|
4444
4528
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4445
4529
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4446
4530
|
};
|
|
4447
4531
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
4532
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
4533
|
+
title?: string;
|
|
4534
|
+
description?: string;
|
|
4535
|
+
tags?: Array<string>;
|
|
4536
|
+
areRelationsValid?: boolean;
|
|
4537
|
+
/**
|
|
4538
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4539
|
+
*/
|
|
4540
|
+
content?: object;
|
|
4541
|
+
}
|
|
4448
4542
|
export interface JsonApiDashboardPluginInDocument {
|
|
4449
4543
|
data: JsonApiDashboardPluginIn;
|
|
4450
4544
|
}
|
|
@@ -4471,7 +4565,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
4471
4565
|
* API identifier of an object
|
|
4472
4566
|
*/
|
|
4473
4567
|
id: string;
|
|
4474
|
-
meta?:
|
|
4568
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4475
4569
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4476
4570
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4477
4571
|
}
|
|
@@ -4505,15 +4599,15 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4505
4599
|
export interface JsonApiDashboardPluginOutList {
|
|
4506
4600
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4507
4601
|
links?: ListLinks;
|
|
4508
|
-
meta?:
|
|
4602
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4509
4603
|
/**
|
|
4510
4604
|
* Included resources
|
|
4511
4605
|
*/
|
|
4512
4606
|
included?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
4513
4607
|
}
|
|
4514
4608
|
export interface JsonApiDashboardPluginOutRelationships {
|
|
4515
|
-
createdBy?:
|
|
4516
|
-
modifiedBy?:
|
|
4609
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4610
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4517
4611
|
}
|
|
4518
4612
|
export interface JsonApiDashboardPluginOutWithLinks {
|
|
4519
4613
|
/**
|
|
@@ -4524,7 +4618,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
4524
4618
|
* API identifier of an object
|
|
4525
4619
|
*/
|
|
4526
4620
|
id: string;
|
|
4527
|
-
meta?:
|
|
4621
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4528
4622
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4529
4623
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4530
4624
|
links?: ObjectLinks;
|
|
@@ -4545,7 +4639,7 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4545
4639
|
* API identifier of an object
|
|
4546
4640
|
*/
|
|
4547
4641
|
id: string;
|
|
4548
|
-
attributes?:
|
|
4642
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4549
4643
|
}
|
|
4550
4644
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4551
4645
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4566,22 +4660,12 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4566
4660
|
* API identifier of an object
|
|
4567
4661
|
*/
|
|
4568
4662
|
id?: string;
|
|
4569
|
-
attributes?:
|
|
4663
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4570
4664
|
}
|
|
4571
4665
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4572
4666
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4573
4667
|
};
|
|
4574
4668
|
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
|
-
}
|
|
4585
4669
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4586
4670
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4587
4671
|
}
|
|
@@ -4597,7 +4681,7 @@ export interface JsonApiDataSourceIdentifierOut {
|
|
|
4597
4681
|
* API identifier of an object
|
|
4598
4682
|
*/
|
|
4599
4683
|
id: string;
|
|
4600
|
-
meta?:
|
|
4684
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4601
4685
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4602
4686
|
}
|
|
4603
4687
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
@@ -4648,19 +4732,8 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4648
4732
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4649
4733
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4650
4734
|
links?: ListLinks;
|
|
4651
|
-
meta?:
|
|
4652
|
-
}
|
|
4653
|
-
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4654
|
-
/**
|
|
4655
|
-
* List of valid permissions for a logged-in user.
|
|
4656
|
-
*/
|
|
4657
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
4735
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4658
4736
|
}
|
|
4659
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
4660
|
-
readonly MANAGE: "MANAGE";
|
|
4661
|
-
readonly USE: "USE";
|
|
4662
|
-
};
|
|
4663
|
-
export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
4664
4737
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4665
4738
|
/**
|
|
4666
4739
|
* Object type
|
|
@@ -4670,7 +4743,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
4670
4743
|
* API identifier of an object
|
|
4671
4744
|
*/
|
|
4672
4745
|
id: string;
|
|
4673
|
-
meta?:
|
|
4746
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4674
4747
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4675
4748
|
links?: ObjectLinks;
|
|
4676
4749
|
}
|
|
@@ -4744,7 +4817,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4744
4817
|
/**
|
|
4745
4818
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4746
4819
|
*/
|
|
4747
|
-
parameters?: Array<
|
|
4820
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4748
4821
|
/**
|
|
4749
4822
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4750
4823
|
*/
|
|
@@ -4784,6 +4857,10 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
|
4784
4857
|
readonly NEVER: "NEVER";
|
|
4785
4858
|
};
|
|
4786
4859
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
|
|
4860
|
+
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
4861
|
+
name: string;
|
|
4862
|
+
value: string;
|
|
4863
|
+
}
|
|
4787
4864
|
export interface JsonApiDataSourceInDocument {
|
|
4788
4865
|
data: JsonApiDataSourceIn;
|
|
4789
4866
|
}
|
|
@@ -4799,7 +4876,7 @@ export interface JsonApiDataSourceOut {
|
|
|
4799
4876
|
* API identifier of an object
|
|
4800
4877
|
*/
|
|
4801
4878
|
id: string;
|
|
4802
|
-
meta?:
|
|
4879
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4803
4880
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4804
4881
|
}
|
|
4805
4882
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -4834,11 +4911,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4834
4911
|
/**
|
|
4835
4912
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4836
4913
|
*/
|
|
4837
|
-
parameters?: Array<
|
|
4914
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4838
4915
|
/**
|
|
4839
4916
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
4840
4917
|
*/
|
|
4841
|
-
decodedParameters?: Array<
|
|
4918
|
+
decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4842
4919
|
/**
|
|
4843
4920
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4844
4921
|
*/
|
|
@@ -4890,10 +4967,6 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
|
|
|
4890
4967
|
readonly ACCESS_TOKEN: "ACCESS_TOKEN";
|
|
4891
4968
|
};
|
|
4892
4969
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
|
|
4893
|
-
export interface JsonApiDataSourceOutAttributesParametersInner {
|
|
4894
|
-
name: string;
|
|
4895
|
-
value: string;
|
|
4896
|
-
}
|
|
4897
4970
|
export interface JsonApiDataSourceOutDocument {
|
|
4898
4971
|
data: JsonApiDataSourceOut;
|
|
4899
4972
|
links?: ObjectLinks;
|
|
@@ -4904,8 +4977,19 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
4904
4977
|
export interface JsonApiDataSourceOutList {
|
|
4905
4978
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
4906
4979
|
links?: ListLinks;
|
|
4907
|
-
meta?:
|
|
4980
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4981
|
+
}
|
|
4982
|
+
export interface JsonApiDataSourceOutMeta {
|
|
4983
|
+
/**
|
|
4984
|
+
* List of valid permissions for a logged-in user.
|
|
4985
|
+
*/
|
|
4986
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
4908
4987
|
}
|
|
4988
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
4989
|
+
readonly MANAGE: "MANAGE";
|
|
4990
|
+
readonly USE: "USE";
|
|
4991
|
+
};
|
|
4992
|
+
export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
4909
4993
|
export interface JsonApiDataSourceOutWithLinks {
|
|
4910
4994
|
/**
|
|
4911
4995
|
* Object type
|
|
@@ -4915,7 +4999,7 @@ export interface JsonApiDataSourceOutWithLinks {
|
|
|
4915
4999
|
* API identifier of an object
|
|
4916
5000
|
*/
|
|
4917
5001
|
id: string;
|
|
4918
|
-
meta?:
|
|
5002
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4919
5003
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4920
5004
|
links?: ObjectLinks;
|
|
4921
5005
|
}
|
|
@@ -4989,7 +5073,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
4989
5073
|
/**
|
|
4990
5074
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4991
5075
|
*/
|
|
4992
|
-
parameters?: Array<
|
|
5076
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4993
5077
|
/**
|
|
4994
5078
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4995
5079
|
*/
|
|
@@ -5055,7 +5139,7 @@ export interface JsonApiDatasetOut {
|
|
|
5055
5139
|
* API identifier of an object
|
|
5056
5140
|
*/
|
|
5057
5141
|
id: string;
|
|
5058
|
-
meta?:
|
|
5142
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5059
5143
|
attributes: JsonApiDatasetOutAttributes;
|
|
5060
5144
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5061
5145
|
}
|
|
@@ -5166,7 +5250,7 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5166
5250
|
export interface JsonApiDatasetOutList {
|
|
5167
5251
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5168
5252
|
links?: ListLinks;
|
|
5169
|
-
meta?:
|
|
5253
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5170
5254
|
/**
|
|
5171
5255
|
* Included resources
|
|
5172
5256
|
*/
|
|
@@ -5176,7 +5260,7 @@ export interface JsonApiDatasetOutRelationships {
|
|
|
5176
5260
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5177
5261
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
5178
5262
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
5179
|
-
references?:
|
|
5263
|
+
references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
5180
5264
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
5181
5265
|
}
|
|
5182
5266
|
export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
@@ -5200,7 +5284,7 @@ export interface JsonApiDatasetOutWithLinks {
|
|
|
5200
5284
|
* API identifier of an object
|
|
5201
5285
|
*/
|
|
5202
5286
|
id: string;
|
|
5203
|
-
meta?:
|
|
5287
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5204
5288
|
attributes: JsonApiDatasetOutAttributes;
|
|
5205
5289
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5206
5290
|
links?: ObjectLinks;
|
|
@@ -5241,7 +5325,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5241
5325
|
export interface JsonApiEntitlementOutList {
|
|
5242
5326
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5243
5327
|
links?: ListLinks;
|
|
5244
|
-
meta?:
|
|
5328
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5245
5329
|
}
|
|
5246
5330
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5247
5331
|
/**
|
|
@@ -5271,16 +5355,27 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5271
5355
|
* API identifier of an object
|
|
5272
5356
|
*/
|
|
5273
5357
|
id: string;
|
|
5274
|
-
attributes?:
|
|
5275
|
-
relationships?:
|
|
5358
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5359
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5276
5360
|
}
|
|
5277
5361
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5278
5362
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5279
5363
|
};
|
|
5280
5364
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
5365
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
5366
|
+
title?: string;
|
|
5367
|
+
description?: string;
|
|
5368
|
+
tags?: Array<string>;
|
|
5369
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5370
|
+
areRelationsValid?: boolean;
|
|
5371
|
+
}
|
|
5281
5372
|
export interface JsonApiExportDefinitionInDocument {
|
|
5282
5373
|
data: JsonApiExportDefinitionIn;
|
|
5283
5374
|
}
|
|
5375
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
5376
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5377
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5378
|
+
}
|
|
5284
5379
|
/**
|
|
5285
5380
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
5286
5381
|
*/
|
|
@@ -5304,7 +5399,7 @@ export interface JsonApiExportDefinitionOut {
|
|
|
5304
5399
|
* API identifier of an object
|
|
5305
5400
|
*/
|
|
5306
5401
|
id: string;
|
|
5307
|
-
meta?:
|
|
5402
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5308
5403
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5309
5404
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5310
5405
|
}
|
|
@@ -5344,24 +5439,18 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5344
5439
|
export interface JsonApiExportDefinitionOutList {
|
|
5345
5440
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5346
5441
|
links?: ListLinks;
|
|
5347
|
-
meta?:
|
|
5442
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5348
5443
|
/**
|
|
5349
5444
|
* Included resources
|
|
5350
5445
|
*/
|
|
5351
5446
|
included?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
5352
5447
|
}
|
|
5353
|
-
export interface JsonApiExportDefinitionOutMeta {
|
|
5354
|
-
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
5355
|
-
}
|
|
5356
5448
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5357
5449
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5358
|
-
analyticalDashboard?:
|
|
5450
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5359
5451
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5360
|
-
createdBy?:
|
|
5361
|
-
modifiedBy?:
|
|
5362
|
-
}
|
|
5363
|
-
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
5364
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
5452
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5453
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5365
5454
|
}
|
|
5366
5455
|
export interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
5367
5456
|
data: JsonApiAutomationLinkage | null;
|
|
@@ -5378,7 +5467,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
|
|
|
5378
5467
|
* API identifier of an object
|
|
5379
5468
|
*/
|
|
5380
5469
|
id: string;
|
|
5381
|
-
meta?:
|
|
5470
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5382
5471
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5383
5472
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5384
5473
|
links?: ObjectLinks;
|
|
@@ -5399,8 +5488,8 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5399
5488
|
* API identifier of an object
|
|
5400
5489
|
*/
|
|
5401
5490
|
id: string;
|
|
5402
|
-
attributes?:
|
|
5403
|
-
relationships?:
|
|
5491
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5492
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5404
5493
|
}
|
|
5405
5494
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5406
5495
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5421,27 +5510,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5421
5510
|
* API identifier of an object
|
|
5422
5511
|
*/
|
|
5423
5512
|
id?: string;
|
|
5424
|
-
attributes?:
|
|
5425
|
-
relationships?:
|
|
5513
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5514
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5426
5515
|
}
|
|
5427
5516
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5428
5517
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5429
5518
|
};
|
|
5430
5519
|
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
|
-
}
|
|
5438
5520
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5439
5521
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5440
5522
|
}
|
|
5441
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5442
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5443
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5444
|
-
}
|
|
5445
5523
|
/**
|
|
5446
5524
|
* JSON:API representation of exportTemplate entity.
|
|
5447
5525
|
*/
|
|
@@ -5454,7 +5532,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5454
5532
|
* API identifier of an object
|
|
5455
5533
|
*/
|
|
5456
5534
|
id: string;
|
|
5457
|
-
attributes:
|
|
5535
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5458
5536
|
}
|
|
5459
5537
|
export declare const JsonApiExportTemplateInTypeEnum: {
|
|
5460
5538
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
@@ -5475,75 +5553,34 @@ export interface JsonApiExportTemplateOut {
|
|
|
5475
5553
|
* API identifier of an object
|
|
5476
5554
|
*/
|
|
5477
5555
|
id: string;
|
|
5478
|
-
attributes:
|
|
5556
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5479
5557
|
}
|
|
5480
5558
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
5481
5559
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5482
5560
|
};
|
|
5483
5561
|
export type JsonApiExportTemplateOutTypeEnum = (typeof JsonApiExportTemplateOutTypeEnum)[keyof typeof JsonApiExportTemplateOutTypeEnum];
|
|
5484
|
-
export interface
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
*/
|
|
5488
|
-
name: string;
|
|
5489
|
-
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5490
|
-
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5562
|
+
export interface JsonApiExportTemplateOutDocument {
|
|
5563
|
+
data: JsonApiExportTemplateOut;
|
|
5564
|
+
links?: ObjectLinks;
|
|
5491
5565
|
}
|
|
5492
5566
|
/**
|
|
5493
|
-
*
|
|
5567
|
+
* A JSON:API document with a list of resources
|
|
5494
5568
|
*/
|
|
5495
|
-
export interface
|
|
5569
|
+
export interface JsonApiExportTemplateOutList {
|
|
5570
|
+
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5571
|
+
links?: ListLinks;
|
|
5572
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5573
|
+
}
|
|
5574
|
+
export interface JsonApiExportTemplateOutWithLinks {
|
|
5496
5575
|
/**
|
|
5497
|
-
*
|
|
5498
|
-
*/
|
|
5499
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5500
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
5501
|
-
introSlide?: IntroSlideTemplate | null;
|
|
5502
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
5503
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5504
|
-
}
|
|
5505
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5506
|
-
readonly PDF: "PDF";
|
|
5507
|
-
readonly PPTX: "PPTX";
|
|
5508
|
-
};
|
|
5509
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5510
|
-
/**
|
|
5511
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5512
|
-
*/
|
|
5513
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5514
|
-
/**
|
|
5515
|
-
* Export types this template applies to.
|
|
5516
|
-
*/
|
|
5517
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5518
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5519
|
-
}
|
|
5520
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5521
|
-
readonly PDF: "PDF";
|
|
5522
|
-
readonly PPTX: "PPTX";
|
|
5523
|
-
};
|
|
5524
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5525
|
-
export interface JsonApiExportTemplateOutDocument {
|
|
5526
|
-
data: JsonApiExportTemplateOut;
|
|
5527
|
-
links?: ObjectLinks;
|
|
5528
|
-
}
|
|
5529
|
-
/**
|
|
5530
|
-
* A JSON:API document with a list of resources
|
|
5531
|
-
*/
|
|
5532
|
-
export interface JsonApiExportTemplateOutList {
|
|
5533
|
-
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5534
|
-
links?: ListLinks;
|
|
5535
|
-
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5536
|
-
}
|
|
5537
|
-
export interface JsonApiExportTemplateOutWithLinks {
|
|
5538
|
-
/**
|
|
5539
|
-
* Object type
|
|
5576
|
+
* Object type
|
|
5540
5577
|
*/
|
|
5541
5578
|
type: JsonApiExportTemplateOutWithLinksTypeEnum;
|
|
5542
5579
|
/**
|
|
5543
5580
|
* API identifier of an object
|
|
5544
5581
|
*/
|
|
5545
5582
|
id: string;
|
|
5546
|
-
attributes:
|
|
5583
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5547
5584
|
links?: ObjectLinks;
|
|
5548
5585
|
}
|
|
5549
5586
|
export declare const JsonApiExportTemplateOutWithLinksTypeEnum: {
|
|
@@ -5573,8 +5610,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5573
5610
|
* User-facing name of the Slides template.
|
|
5574
5611
|
*/
|
|
5575
5612
|
name?: string;
|
|
5576
|
-
dashboardSlidesTemplate?:
|
|
5577
|
-
widgetSlidesTemplate?:
|
|
5613
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5614
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5578
5615
|
}
|
|
5579
5616
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5580
5617
|
data: JsonApiExportTemplatePatch;
|
|
@@ -5591,12 +5628,53 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5591
5628
|
* API identifier of an object
|
|
5592
5629
|
*/
|
|
5593
5630
|
id?: string;
|
|
5594
|
-
attributes:
|
|
5631
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5595
5632
|
}
|
|
5596
5633
|
export declare const JsonApiExportTemplatePostOptionalIdTypeEnum: {
|
|
5597
5634
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5598
5635
|
};
|
|
5599
5636
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = (typeof JsonApiExportTemplatePostOptionalIdTypeEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdTypeEnum];
|
|
5637
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5638
|
+
/**
|
|
5639
|
+
* User-facing name of the Slides template.
|
|
5640
|
+
*/
|
|
5641
|
+
name: string;
|
|
5642
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5643
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5644
|
+
}
|
|
5645
|
+
/**
|
|
5646
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5647
|
+
*/
|
|
5648
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5649
|
+
/**
|
|
5650
|
+
* Export types this template applies to.
|
|
5651
|
+
*/
|
|
5652
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5653
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
5654
|
+
introSlide?: IntroSlideTemplate | null;
|
|
5655
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
5656
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5657
|
+
}
|
|
5658
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5659
|
+
readonly PDF: "PDF";
|
|
5660
|
+
readonly PPTX: "PPTX";
|
|
5661
|
+
};
|
|
5662
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5663
|
+
/**
|
|
5664
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5665
|
+
*/
|
|
5666
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5667
|
+
/**
|
|
5668
|
+
* Export types this template applies to.
|
|
5669
|
+
*/
|
|
5670
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5671
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5672
|
+
}
|
|
5673
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5674
|
+
readonly PDF: "PDF";
|
|
5675
|
+
readonly PPTX: "PPTX";
|
|
5676
|
+
};
|
|
5677
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5600
5678
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5601
5679
|
data: JsonApiExportTemplatePostOptionalId;
|
|
5602
5680
|
}
|
|
@@ -5623,7 +5701,7 @@ export interface JsonApiFactOut {
|
|
|
5623
5701
|
* API identifier of an object
|
|
5624
5702
|
*/
|
|
5625
5703
|
id: string;
|
|
5626
|
-
meta?:
|
|
5704
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5627
5705
|
attributes?: JsonApiFactOutAttributes;
|
|
5628
5706
|
relationships?: JsonApiFactOutRelationships;
|
|
5629
5707
|
}
|
|
@@ -5663,7 +5741,7 @@ export interface JsonApiFactOutDocument {
|
|
|
5663
5741
|
export interface JsonApiFactOutList {
|
|
5664
5742
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5665
5743
|
links?: ListLinks;
|
|
5666
|
-
meta?:
|
|
5744
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5667
5745
|
/**
|
|
5668
5746
|
* Included resources
|
|
5669
5747
|
*/
|
|
@@ -5681,7 +5759,7 @@ export interface JsonApiFactOutWithLinks {
|
|
|
5681
5759
|
* API identifier of an object
|
|
5682
5760
|
*/
|
|
5683
5761
|
id: string;
|
|
5684
|
-
meta?:
|
|
5762
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5685
5763
|
attributes?: JsonApiFactOutAttributes;
|
|
5686
5764
|
relationships?: JsonApiFactOutRelationships;
|
|
5687
5765
|
links?: ObjectLinks;
|
|
@@ -5702,7 +5780,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5702
5780
|
* API identifier of an object
|
|
5703
5781
|
*/
|
|
5704
5782
|
id: string;
|
|
5705
|
-
attributes:
|
|
5783
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5706
5784
|
}
|
|
5707
5785
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5708
5786
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5734,8 +5812,8 @@ export interface JsonApiFilterContextOut {
|
|
|
5734
5812
|
* API identifier of an object
|
|
5735
5813
|
*/
|
|
5736
5814
|
id: string;
|
|
5737
|
-
meta?:
|
|
5738
|
-
attributes:
|
|
5815
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5816
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5739
5817
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5740
5818
|
}
|
|
5741
5819
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
@@ -5760,7 +5838,7 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5760
5838
|
export interface JsonApiFilterContextOutList {
|
|
5761
5839
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5762
5840
|
links?: ListLinks;
|
|
5763
|
-
meta?:
|
|
5841
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5764
5842
|
/**
|
|
5765
5843
|
* Included resources
|
|
5766
5844
|
*/
|
|
@@ -5768,8 +5846,8 @@ export interface JsonApiFilterContextOutList {
|
|
|
5768
5846
|
}
|
|
5769
5847
|
export interface JsonApiFilterContextOutRelationships {
|
|
5770
5848
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5771
|
-
datasets?:
|
|
5772
|
-
labels?:
|
|
5849
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
5850
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
5773
5851
|
}
|
|
5774
5852
|
export interface JsonApiFilterContextOutWithLinks {
|
|
5775
5853
|
/**
|
|
@@ -5780,8 +5858,8 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5780
5858
|
* API identifier of an object
|
|
5781
5859
|
*/
|
|
5782
5860
|
id: string;
|
|
5783
|
-
meta?:
|
|
5784
|
-
attributes:
|
|
5861
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5862
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5785
5863
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5786
5864
|
links?: ObjectLinks;
|
|
5787
5865
|
}
|
|
@@ -5822,7 +5900,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5822
5900
|
* API identifier of an object
|
|
5823
5901
|
*/
|
|
5824
5902
|
id?: string;
|
|
5825
|
-
attributes:
|
|
5903
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5826
5904
|
}
|
|
5827
5905
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5828
5906
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5868,7 +5946,7 @@ export interface JsonApiFilterViewInDocument {
|
|
|
5868
5946
|
data: JsonApiFilterViewIn;
|
|
5869
5947
|
}
|
|
5870
5948
|
export interface JsonApiFilterViewInRelationships {
|
|
5871
|
-
analyticalDashboard?:
|
|
5949
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5872
5950
|
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5873
5951
|
}
|
|
5874
5952
|
/**
|
|
@@ -5908,7 +5986,7 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
5908
5986
|
export interface JsonApiFilterViewOutList {
|
|
5909
5987
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
5910
5988
|
links?: ListLinks;
|
|
5911
|
-
meta?:
|
|
5989
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5912
5990
|
/**
|
|
5913
5991
|
* Included resources
|
|
5914
5992
|
*/
|
|
@@ -5979,12 +6057,69 @@ export interface JsonApiIdentityProviderIn {
|
|
|
5979
6057
|
* API identifier of an object
|
|
5980
6058
|
*/
|
|
5981
6059
|
id: string;
|
|
5982
|
-
attributes?:
|
|
6060
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
5983
6061
|
}
|
|
5984
6062
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
5985
6063
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
5986
6064
|
};
|
|
5987
6065
|
export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
6066
|
+
export interface JsonApiIdentityProviderInAttributes {
|
|
6067
|
+
/**
|
|
6068
|
+
* 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.
|
|
6069
|
+
*/
|
|
6070
|
+
identifiers?: Array<string>;
|
|
6071
|
+
/**
|
|
6072
|
+
* 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.
|
|
6073
|
+
*/
|
|
6074
|
+
customClaimMapping?: {
|
|
6075
|
+
[key: string]: string;
|
|
6076
|
+
};
|
|
6077
|
+
/**
|
|
6078
|
+
* 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.
|
|
6079
|
+
*/
|
|
6080
|
+
samlMetadata?: string;
|
|
6081
|
+
/**
|
|
6082
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6083
|
+
*/
|
|
6084
|
+
oauthClientId?: string;
|
|
6085
|
+
/**
|
|
6086
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6087
|
+
*/
|
|
6088
|
+
oauthClientSecret?: string;
|
|
6089
|
+
/**
|
|
6090
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6091
|
+
*/
|
|
6092
|
+
oauthIssuerLocation?: string;
|
|
6093
|
+
/**
|
|
6094
|
+
* 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.
|
|
6095
|
+
*/
|
|
6096
|
+
oauthIssuerId?: string;
|
|
6097
|
+
/**
|
|
6098
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6099
|
+
*/
|
|
6100
|
+
oauthSubjectIdClaim?: string;
|
|
6101
|
+
/**
|
|
6102
|
+
* 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.
|
|
6103
|
+
*/
|
|
6104
|
+
oauthCustomAuthAttributes?: {
|
|
6105
|
+
[key: string]: string;
|
|
6106
|
+
};
|
|
6107
|
+
/**
|
|
6108
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6109
|
+
*/
|
|
6110
|
+
oauthCustomScopes?: Array<string> | null;
|
|
6111
|
+
/**
|
|
6112
|
+
* 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.
|
|
6113
|
+
*/
|
|
6114
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
6115
|
+
}
|
|
6116
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
6117
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6118
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
6119
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
6120
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6121
|
+
};
|
|
6122
|
+
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
5988
6123
|
export interface JsonApiIdentityProviderInDocument {
|
|
5989
6124
|
data: JsonApiIdentityProviderIn;
|
|
5990
6125
|
}
|
|
@@ -6076,7 +6211,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6076
6211
|
export interface JsonApiIdentityProviderOutList {
|
|
6077
6212
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6078
6213
|
links?: ListLinks;
|
|
6079
|
-
meta?:
|
|
6214
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6080
6215
|
}
|
|
6081
6216
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6082
6217
|
/**
|
|
@@ -6106,69 +6241,12 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
6106
6241
|
* API identifier of an object
|
|
6107
6242
|
*/
|
|
6108
6243
|
id: string;
|
|
6109
|
-
attributes?:
|
|
6244
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
6110
6245
|
}
|
|
6111
6246
|
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
6112
6247
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6113
6248
|
};
|
|
6114
6249
|
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];
|
|
6172
6250
|
export interface JsonApiIdentityProviderPatchDocument {
|
|
6173
6251
|
data: JsonApiIdentityProviderPatch;
|
|
6174
6252
|
}
|
|
@@ -6184,12 +6262,15 @@ export interface JsonApiJwkIn {
|
|
|
6184
6262
|
* API identifier of an object
|
|
6185
6263
|
*/
|
|
6186
6264
|
id: string;
|
|
6187
|
-
attributes?:
|
|
6265
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6188
6266
|
}
|
|
6189
6267
|
export declare const JsonApiJwkInTypeEnum: {
|
|
6190
6268
|
readonly JWK: "jwk";
|
|
6191
6269
|
};
|
|
6192
6270
|
export type JsonApiJwkInTypeEnum = (typeof JsonApiJwkInTypeEnum)[keyof typeof JsonApiJwkInTypeEnum];
|
|
6271
|
+
export interface JsonApiJwkInAttributes {
|
|
6272
|
+
content?: RsaSpecification;
|
|
6273
|
+
}
|
|
6193
6274
|
export interface JsonApiJwkInDocument {
|
|
6194
6275
|
data: JsonApiJwkIn;
|
|
6195
6276
|
}
|
|
@@ -6205,15 +6286,12 @@ export interface JsonApiJwkOut {
|
|
|
6205
6286
|
* API identifier of an object
|
|
6206
6287
|
*/
|
|
6207
6288
|
id: string;
|
|
6208
|
-
attributes?:
|
|
6289
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6209
6290
|
}
|
|
6210
6291
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
6211
6292
|
readonly JWK: "jwk";
|
|
6212
6293
|
};
|
|
6213
6294
|
export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
|
|
6214
|
-
export interface JsonApiJwkOutAttributes {
|
|
6215
|
-
content?: RsaSpecification;
|
|
6216
|
-
}
|
|
6217
6295
|
export interface JsonApiJwkOutDocument {
|
|
6218
6296
|
data: JsonApiJwkOut;
|
|
6219
6297
|
links?: ObjectLinks;
|
|
@@ -6224,7 +6302,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6224
6302
|
export interface JsonApiJwkOutList {
|
|
6225
6303
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6226
6304
|
links?: ListLinks;
|
|
6227
|
-
meta?:
|
|
6305
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6228
6306
|
}
|
|
6229
6307
|
export interface JsonApiJwkOutWithLinks {
|
|
6230
6308
|
/**
|
|
@@ -6235,7 +6313,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
6235
6313
|
* API identifier of an object
|
|
6236
6314
|
*/
|
|
6237
6315
|
id: string;
|
|
6238
|
-
attributes?:
|
|
6316
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6239
6317
|
links?: ObjectLinks;
|
|
6240
6318
|
}
|
|
6241
6319
|
export declare const JsonApiJwkOutWithLinksTypeEnum: {
|
|
@@ -6254,7 +6332,7 @@ export interface JsonApiJwkPatch {
|
|
|
6254
6332
|
* API identifier of an object
|
|
6255
6333
|
*/
|
|
6256
6334
|
id: string;
|
|
6257
|
-
attributes?:
|
|
6335
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6258
6336
|
}
|
|
6259
6337
|
export declare const JsonApiJwkPatchTypeEnum: {
|
|
6260
6338
|
readonly JWK: "jwk";
|
|
@@ -6286,7 +6364,7 @@ export interface JsonApiLabelOut {
|
|
|
6286
6364
|
* API identifier of an object
|
|
6287
6365
|
*/
|
|
6288
6366
|
id: string;
|
|
6289
|
-
meta?:
|
|
6367
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6290
6368
|
attributes?: JsonApiLabelOutAttributes;
|
|
6291
6369
|
relationships?: JsonApiLabelOutRelationships;
|
|
6292
6370
|
}
|
|
@@ -6337,7 +6415,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6337
6415
|
export interface JsonApiLabelOutList {
|
|
6338
6416
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6339
6417
|
links?: ListLinks;
|
|
6340
|
-
meta?:
|
|
6418
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6341
6419
|
/**
|
|
6342
6420
|
* Included resources
|
|
6343
6421
|
*/
|
|
@@ -6358,7 +6436,7 @@ export interface JsonApiLabelOutWithLinks {
|
|
|
6358
6436
|
* API identifier of an object
|
|
6359
6437
|
*/
|
|
6360
6438
|
id: string;
|
|
6361
|
-
meta?:
|
|
6439
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6362
6440
|
attributes?: JsonApiLabelOutAttributes;
|
|
6363
6441
|
relationships?: JsonApiLabelOutRelationships;
|
|
6364
6442
|
links?: ObjectLinks;
|
|
@@ -6474,7 +6552,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6474
6552
|
export interface JsonApiLlmEndpointOutList {
|
|
6475
6553
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6476
6554
|
links?: ListLinks;
|
|
6477
|
-
meta?:
|
|
6555
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6478
6556
|
}
|
|
6479
6557
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6480
6558
|
/**
|
|
@@ -6556,12 +6634,19 @@ export interface JsonApiMetricIn {
|
|
|
6556
6634
|
* API identifier of an object
|
|
6557
6635
|
*/
|
|
6558
6636
|
id: string;
|
|
6559
|
-
attributes:
|
|
6637
|
+
attributes: JsonApiMetricInAttributes;
|
|
6560
6638
|
}
|
|
6561
6639
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6562
6640
|
readonly METRIC: "metric";
|
|
6563
6641
|
};
|
|
6564
6642
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6643
|
+
export interface JsonApiMetricInAttributes {
|
|
6644
|
+
title?: string;
|
|
6645
|
+
description?: string;
|
|
6646
|
+
tags?: Array<string>;
|
|
6647
|
+
areRelationsValid?: boolean;
|
|
6648
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6649
|
+
}
|
|
6565
6650
|
export interface JsonApiMetricInDocument {
|
|
6566
6651
|
data: JsonApiMetricIn;
|
|
6567
6652
|
}
|
|
@@ -6588,7 +6673,7 @@ export interface JsonApiMetricOut {
|
|
|
6588
6673
|
* API identifier of an object
|
|
6589
6674
|
*/
|
|
6590
6675
|
id: string;
|
|
6591
|
-
meta?:
|
|
6676
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6592
6677
|
attributes: JsonApiMetricOutAttributes;
|
|
6593
6678
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6594
6679
|
}
|
|
@@ -6627,7 +6712,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6627
6712
|
export interface JsonApiMetricOutList {
|
|
6628
6713
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6629
6714
|
links?: ListLinks;
|
|
6630
|
-
meta?:
|
|
6715
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6631
6716
|
/**
|
|
6632
6717
|
* Included resources
|
|
6633
6718
|
*/
|
|
@@ -6642,7 +6727,7 @@ export interface JsonApiMetricOutWithLinks {
|
|
|
6642
6727
|
* API identifier of an object
|
|
6643
6728
|
*/
|
|
6644
6729
|
id: string;
|
|
6645
|
-
meta?:
|
|
6730
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6646
6731
|
attributes: JsonApiMetricOutAttributes;
|
|
6647
6732
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6648
6733
|
links?: ObjectLinks;
|
|
@@ -6691,19 +6776,12 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6691
6776
|
* API identifier of an object
|
|
6692
6777
|
*/
|
|
6693
6778
|
id?: string;
|
|
6694
|
-
attributes:
|
|
6779
|
+
attributes: JsonApiMetricInAttributes;
|
|
6695
6780
|
}
|
|
6696
6781
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
6697
6782
|
readonly METRIC: "metric";
|
|
6698
6783
|
};
|
|
6699
6784
|
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
|
-
}
|
|
6707
6785
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6708
6786
|
data: JsonApiMetricPostOptionalId;
|
|
6709
6787
|
}
|
|
@@ -6757,7 +6835,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
6757
6835
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
6758
6836
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
6759
6837
|
links?: ListLinks;
|
|
6760
|
-
meta?:
|
|
6838
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6761
6839
|
}
|
|
6762
6840
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
6763
6841
|
/**
|
|
@@ -6787,7 +6865,7 @@ export interface JsonApiNotificationChannelIn {
|
|
|
6787
6865
|
* API identifier of an object
|
|
6788
6866
|
*/
|
|
6789
6867
|
id: string;
|
|
6790
|
-
attributes?:
|
|
6868
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
6791
6869
|
}
|
|
6792
6870
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
6793
6871
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -6828,7 +6906,7 @@ export type JsonApiNotificationChannelOutTypeEnum = (typeof JsonApiNotificationC
|
|
|
6828
6906
|
export interface JsonApiNotificationChannelOutAttributes {
|
|
6829
6907
|
name?: string | null;
|
|
6830
6908
|
description?: string | null;
|
|
6831
|
-
destination?:
|
|
6909
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
6832
6910
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
6833
6911
|
/**
|
|
6834
6912
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
@@ -6875,11 +6953,6 @@ export declare const JsonApiNotificationChannelOutAttributesInPlatformNotificati
|
|
|
6875
6953
|
readonly ENABLED: "ENABLED";
|
|
6876
6954
|
};
|
|
6877
6955
|
export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum];
|
|
6878
|
-
/**
|
|
6879
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
6880
|
-
* The destination where the notifications are to be sent.
|
|
6881
|
-
*/
|
|
6882
|
-
export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
6883
6956
|
export interface JsonApiNotificationChannelOutDocument {
|
|
6884
6957
|
data: JsonApiNotificationChannelOut;
|
|
6885
6958
|
links?: ObjectLinks;
|
|
@@ -6890,7 +6963,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
6890
6963
|
export interface JsonApiNotificationChannelOutList {
|
|
6891
6964
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
6892
6965
|
links?: ListLinks;
|
|
6893
|
-
meta?:
|
|
6966
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6894
6967
|
}
|
|
6895
6968
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
6896
6969
|
/**
|
|
@@ -6920,16 +6993,37 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
6920
6993
|
* API identifier of an object
|
|
6921
6994
|
*/
|
|
6922
6995
|
id: string;
|
|
6923
|
-
attributes?:
|
|
6996
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
6924
6997
|
}
|
|
6925
6998
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
6926
6999
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
6927
7000
|
};
|
|
6928
7001
|
export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
6929
|
-
export interface
|
|
7002
|
+
export interface JsonApiNotificationChannelPatchDocument {
|
|
7003
|
+
data: JsonApiNotificationChannelPatch;
|
|
7004
|
+
}
|
|
7005
|
+
/**
|
|
7006
|
+
* JSON:API representation of notificationChannel entity.
|
|
7007
|
+
*/
|
|
7008
|
+
export interface JsonApiNotificationChannelPostOptionalId {
|
|
7009
|
+
/**
|
|
7010
|
+
* Object type
|
|
7011
|
+
*/
|
|
7012
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
7013
|
+
/**
|
|
7014
|
+
* API identifier of an object
|
|
7015
|
+
*/
|
|
7016
|
+
id?: string;
|
|
7017
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7018
|
+
}
|
|
7019
|
+
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7020
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7021
|
+
};
|
|
7022
|
+
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7023
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
6930
7024
|
name?: string | null;
|
|
6931
7025
|
description?: string | null;
|
|
6932
|
-
destination?:
|
|
7026
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
6933
7027
|
/**
|
|
6934
7028
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
6935
7029
|
*/
|
|
@@ -6937,7 +7031,7 @@ export interface JsonApiNotificationChannelPatchAttributes {
|
|
|
6937
7031
|
/**
|
|
6938
7032
|
* 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
|
|
6939
7033
|
*/
|
|
6940
|
-
dashboardLinkVisibility?:
|
|
7034
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
6941
7035
|
/**
|
|
6942
7036
|
* 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}}
|
|
6943
7037
|
*/
|
|
@@ -6945,50 +7039,34 @@ export interface JsonApiNotificationChannelPatchAttributes {
|
|
|
6945
7039
|
/**
|
|
6946
7040
|
* 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
|
|
6947
7041
|
*/
|
|
6948
|
-
allowedRecipients?:
|
|
7042
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
6949
7043
|
/**
|
|
6950
7044
|
* 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
|
|
6951
7045
|
*/
|
|
6952
|
-
inPlatformNotification?:
|
|
7046
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
6953
7047
|
}
|
|
6954
|
-
export declare const
|
|
7048
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
6955
7049
|
readonly HIDDEN: "HIDDEN";
|
|
6956
7050
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
6957
7051
|
readonly ALL: "ALL";
|
|
6958
7052
|
};
|
|
6959
|
-
export type
|
|
6960
|
-
export declare const
|
|
7053
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
7054
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
6961
7055
|
readonly CREATOR: "CREATOR";
|
|
6962
7056
|
readonly INTERNAL: "INTERNAL";
|
|
6963
7057
|
readonly EXTERNAL: "EXTERNAL";
|
|
6964
7058
|
};
|
|
6965
|
-
export type
|
|
6966
|
-
export declare const
|
|
7059
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
7060
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
6967
7061
|
readonly DISABLED: "DISABLED";
|
|
6968
7062
|
readonly ENABLED: "ENABLED";
|
|
6969
7063
|
};
|
|
6970
|
-
export type
|
|
6971
|
-
export interface JsonApiNotificationChannelPatchDocument {
|
|
6972
|
-
data: JsonApiNotificationChannelPatch;
|
|
6973
|
-
}
|
|
7064
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
6974
7065
|
/**
|
|
6975
|
-
*
|
|
7066
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
7067
|
+
* The destination where the notifications are to be sent.
|
|
6976
7068
|
*/
|
|
6977
|
-
export
|
|
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];
|
|
7069
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
6992
7070
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
6993
7071
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
6994
7072
|
}
|
|
@@ -7004,16 +7082,54 @@ export interface JsonApiOrganizationIn {
|
|
|
7004
7082
|
* API identifier of an object
|
|
7005
7083
|
*/
|
|
7006
7084
|
id: string;
|
|
7007
|
-
attributes?:
|
|
7008
|
-
relationships?:
|
|
7085
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
7086
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
7009
7087
|
}
|
|
7010
7088
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7011
7089
|
readonly ORGANIZATION: "organization";
|
|
7012
7090
|
};
|
|
7013
7091
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7092
|
+
export interface JsonApiOrganizationInAttributes {
|
|
7093
|
+
name?: string | null;
|
|
7094
|
+
hostname?: string;
|
|
7095
|
+
allowedOrigins?: Array<string>;
|
|
7096
|
+
oauthIssuerLocation?: string;
|
|
7097
|
+
oauthClientId?: string;
|
|
7098
|
+
oauthClientSecret?: string;
|
|
7099
|
+
/**
|
|
7100
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7101
|
+
* @deprecated
|
|
7102
|
+
*/
|
|
7103
|
+
earlyAccess?: string | null;
|
|
7104
|
+
/**
|
|
7105
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7106
|
+
*/
|
|
7107
|
+
earlyAccessValues?: Array<string> | null;
|
|
7108
|
+
/**
|
|
7109
|
+
* 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.
|
|
7110
|
+
*/
|
|
7111
|
+
oauthIssuerId?: string;
|
|
7112
|
+
/**
|
|
7113
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
7114
|
+
*/
|
|
7115
|
+
oauthSubjectIdClaim?: string;
|
|
7116
|
+
/**
|
|
7117
|
+
* 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.
|
|
7118
|
+
*/
|
|
7119
|
+
oauthCustomAuthAttributes?: {
|
|
7120
|
+
[key: string]: string;
|
|
7121
|
+
};
|
|
7122
|
+
/**
|
|
7123
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
7124
|
+
*/
|
|
7125
|
+
oauthCustomScopes?: Array<string> | null;
|
|
7126
|
+
}
|
|
7014
7127
|
export interface JsonApiOrganizationInDocument {
|
|
7015
7128
|
data: JsonApiOrganizationIn;
|
|
7016
7129
|
}
|
|
7130
|
+
export interface JsonApiOrganizationInRelationships {
|
|
7131
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
7132
|
+
}
|
|
7017
7133
|
/**
|
|
7018
7134
|
* JSON:API representation of organization entity.
|
|
7019
7135
|
*/
|
|
@@ -7127,54 +7243,16 @@ export interface JsonApiOrganizationPatch {
|
|
|
7127
7243
|
* API identifier of an object
|
|
7128
7244
|
*/
|
|
7129
7245
|
id: string;
|
|
7130
|
-
attributes?:
|
|
7131
|
-
relationships?:
|
|
7246
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
7247
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
7132
7248
|
}
|
|
7133
7249
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7134
7250
|
readonly ORGANIZATION: "organization";
|
|
7135
7251
|
};
|
|
7136
7252
|
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
|
-
}
|
|
7172
7253
|
export interface JsonApiOrganizationPatchDocument {
|
|
7173
7254
|
data: JsonApiOrganizationPatch;
|
|
7174
7255
|
}
|
|
7175
|
-
export interface JsonApiOrganizationPatchRelationships {
|
|
7176
|
-
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
7177
|
-
}
|
|
7178
7256
|
/**
|
|
7179
7257
|
* JSON:API representation of organizationSetting entity.
|
|
7180
7258
|
*/
|
|
@@ -7187,12 +7265,51 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7187
7265
|
* API identifier of an object
|
|
7188
7266
|
*/
|
|
7189
7267
|
id: string;
|
|
7190
|
-
attributes?:
|
|
7268
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7191
7269
|
}
|
|
7192
7270
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7193
7271
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7194
7272
|
};
|
|
7195
7273
|
export type JsonApiOrganizationSettingInTypeEnum = (typeof JsonApiOrganizationSettingInTypeEnum)[keyof typeof JsonApiOrganizationSettingInTypeEnum];
|
|
7274
|
+
export interface JsonApiOrganizationSettingInAttributes {
|
|
7275
|
+
/**
|
|
7276
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7277
|
+
*/
|
|
7278
|
+
content?: object;
|
|
7279
|
+
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7280
|
+
}
|
|
7281
|
+
export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
7282
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
7283
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7284
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7285
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7286
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7287
|
+
readonly LOCALE: "LOCALE";
|
|
7288
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7289
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7290
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7291
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7292
|
+
readonly WEEK_START: "WEEK_START";
|
|
7293
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7294
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7295
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7296
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7297
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7298
|
+
readonly ALERT: "ALERT";
|
|
7299
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
7300
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7301
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7302
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7303
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7304
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7305
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7306
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7307
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7308
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7309
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7310
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7311
|
+
};
|
|
7312
|
+
export type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
7196
7313
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7197
7314
|
data: JsonApiOrganizationSettingIn;
|
|
7198
7315
|
}
|
|
@@ -7208,7 +7325,7 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7208
7325
|
* API identifier of an object
|
|
7209
7326
|
*/
|
|
7210
7327
|
id: string;
|
|
7211
|
-
attributes?:
|
|
7328
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7212
7329
|
}
|
|
7213
7330
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7214
7331
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7224,7 +7341,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7224
7341
|
export interface JsonApiOrganizationSettingOutList {
|
|
7225
7342
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7226
7343
|
links?: ListLinks;
|
|
7227
|
-
meta?:
|
|
7344
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7228
7345
|
}
|
|
7229
7346
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7230
7347
|
/**
|
|
@@ -7235,7 +7352,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7235
7352
|
* API identifier of an object
|
|
7236
7353
|
*/
|
|
7237
7354
|
id: string;
|
|
7238
|
-
attributes?:
|
|
7355
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7239
7356
|
links?: ObjectLinks;
|
|
7240
7357
|
}
|
|
7241
7358
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7254,7 +7371,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7254
7371
|
* API identifier of an object
|
|
7255
7372
|
*/
|
|
7256
7373
|
id: string;
|
|
7257
|
-
attributes?:
|
|
7374
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7258
7375
|
}
|
|
7259
7376
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7260
7377
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7275,7 +7392,7 @@ export interface JsonApiThemeIn {
|
|
|
7275
7392
|
* API identifier of an object
|
|
7276
7393
|
*/
|
|
7277
7394
|
id: string;
|
|
7278
|
-
attributes:
|
|
7395
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7279
7396
|
}
|
|
7280
7397
|
export declare const JsonApiThemeInTypeEnum: {
|
|
7281
7398
|
readonly THEME: "theme";
|
|
@@ -7296,7 +7413,7 @@ export interface JsonApiThemeOut {
|
|
|
7296
7413
|
* API identifier of an object
|
|
7297
7414
|
*/
|
|
7298
7415
|
id: string;
|
|
7299
|
-
attributes:
|
|
7416
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7300
7417
|
}
|
|
7301
7418
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
7302
7419
|
readonly THEME: "theme";
|
|
@@ -7312,7 +7429,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7312
7429
|
export interface JsonApiThemeOutList {
|
|
7313
7430
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7314
7431
|
links?: ListLinks;
|
|
7315
|
-
meta?:
|
|
7432
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7316
7433
|
}
|
|
7317
7434
|
export interface JsonApiThemeOutWithLinks {
|
|
7318
7435
|
/**
|
|
@@ -7323,7 +7440,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
7323
7440
|
* API identifier of an object
|
|
7324
7441
|
*/
|
|
7325
7442
|
id: string;
|
|
7326
|
-
attributes:
|
|
7443
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7327
7444
|
links?: ObjectLinks;
|
|
7328
7445
|
}
|
|
7329
7446
|
export declare const JsonApiThemeOutWithLinksTypeEnum: {
|
|
@@ -7363,16 +7480,27 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7363
7480
|
* API identifier of an object
|
|
7364
7481
|
*/
|
|
7365
7482
|
id: string;
|
|
7366
|
-
attributes:
|
|
7367
|
-
relationships?:
|
|
7483
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7484
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7368
7485
|
}
|
|
7369
7486
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7370
7487
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7371
7488
|
};
|
|
7372
7489
|
export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTypeEnum)[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
7490
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
7491
|
+
title?: string;
|
|
7492
|
+
description?: string;
|
|
7493
|
+
tags?: Array<string>;
|
|
7494
|
+
areRelationsValid?: boolean;
|
|
7495
|
+
maql: string;
|
|
7496
|
+
}
|
|
7373
7497
|
export interface JsonApiUserDataFilterInDocument {
|
|
7374
7498
|
data: JsonApiUserDataFilterIn;
|
|
7375
7499
|
}
|
|
7500
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
7501
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7502
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7503
|
+
}
|
|
7376
7504
|
/**
|
|
7377
7505
|
* JSON:API representation of userDataFilter entity.
|
|
7378
7506
|
*/
|
|
@@ -7385,8 +7513,8 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7385
7513
|
* API identifier of an object
|
|
7386
7514
|
*/
|
|
7387
7515
|
id: string;
|
|
7388
|
-
meta?:
|
|
7389
|
-
attributes:
|
|
7516
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7517
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7390
7518
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7391
7519
|
}
|
|
7392
7520
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -7411,7 +7539,7 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7411
7539
|
export interface JsonApiUserDataFilterOutList {
|
|
7412
7540
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7413
7541
|
links?: ListLinks;
|
|
7414
|
-
meta?:
|
|
7542
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7415
7543
|
/**
|
|
7416
7544
|
* Included resources
|
|
7417
7545
|
*/
|
|
@@ -7422,9 +7550,9 @@ export interface JsonApiUserDataFilterOutRelationships {
|
|
|
7422
7550
|
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7423
7551
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7424
7552
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7425
|
-
labels?:
|
|
7426
|
-
metrics?:
|
|
7427
|
-
datasets?:
|
|
7553
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
7554
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
7555
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
7428
7556
|
}
|
|
7429
7557
|
export interface JsonApiUserDataFilterOutWithLinks {
|
|
7430
7558
|
/**
|
|
@@ -7435,8 +7563,8 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7435
7563
|
* API identifier of an object
|
|
7436
7564
|
*/
|
|
7437
7565
|
id: string;
|
|
7438
|
-
meta?:
|
|
7439
|
-
attributes:
|
|
7566
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7567
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7440
7568
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7441
7569
|
links?: ObjectLinks;
|
|
7442
7570
|
}
|
|
@@ -7457,7 +7585,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7457
7585
|
*/
|
|
7458
7586
|
id: string;
|
|
7459
7587
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7460
|
-
relationships?:
|
|
7588
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7461
7589
|
}
|
|
7462
7590
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7463
7591
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7485,27 +7613,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7485
7613
|
* API identifier of an object
|
|
7486
7614
|
*/
|
|
7487
7615
|
id?: string;
|
|
7488
|
-
attributes:
|
|
7489
|
-
relationships?:
|
|
7616
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7617
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7490
7618
|
}
|
|
7491
7619
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7492
7620
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7493
7621
|
};
|
|
7494
7622
|
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
|
-
}
|
|
7502
7623
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7503
7624
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7504
7625
|
}
|
|
7505
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7506
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7507
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7508
|
-
}
|
|
7509
7626
|
/**
|
|
7510
7627
|
* JSON:API representation of userGroup entity.
|
|
7511
7628
|
*/
|
|
@@ -7518,16 +7635,28 @@ export interface JsonApiUserGroupIn {
|
|
|
7518
7635
|
* API identifier of an object
|
|
7519
7636
|
*/
|
|
7520
7637
|
id: string;
|
|
7521
|
-
attributes?:
|
|
7522
|
-
relationships?:
|
|
7638
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7639
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7523
7640
|
}
|
|
7524
7641
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
7525
7642
|
readonly USER_GROUP: "userGroup";
|
|
7526
7643
|
};
|
|
7527
7644
|
export type JsonApiUserGroupInTypeEnum = (typeof JsonApiUserGroupInTypeEnum)[keyof typeof JsonApiUserGroupInTypeEnum];
|
|
7645
|
+
export interface JsonApiUserGroupInAttributes {
|
|
7646
|
+
name?: string;
|
|
7647
|
+
}
|
|
7528
7648
|
export interface JsonApiUserGroupInDocument {
|
|
7529
7649
|
data: JsonApiUserGroupIn;
|
|
7530
7650
|
}
|
|
7651
|
+
export interface JsonApiUserGroupInRelationships {
|
|
7652
|
+
parents?: JsonApiUserGroupInRelationshipsParents;
|
|
7653
|
+
}
|
|
7654
|
+
export interface JsonApiUserGroupInRelationshipsParents {
|
|
7655
|
+
/**
|
|
7656
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7657
|
+
*/
|
|
7658
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
7659
|
+
}
|
|
7531
7660
|
/**
|
|
7532
7661
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7533
7662
|
*/
|
|
@@ -7551,16 +7680,13 @@ export interface JsonApiUserGroupOut {
|
|
|
7551
7680
|
* API identifier of an object
|
|
7552
7681
|
*/
|
|
7553
7682
|
id: string;
|
|
7554
|
-
attributes?:
|
|
7555
|
-
relationships?:
|
|
7683
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7684
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7556
7685
|
}
|
|
7557
7686
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
7558
7687
|
readonly USER_GROUP: "userGroup";
|
|
7559
7688
|
};
|
|
7560
7689
|
export type JsonApiUserGroupOutTypeEnum = (typeof JsonApiUserGroupOutTypeEnum)[keyof typeof JsonApiUserGroupOutTypeEnum];
|
|
7561
|
-
export interface JsonApiUserGroupOutAttributes {
|
|
7562
|
-
name?: string;
|
|
7563
|
-
}
|
|
7564
7690
|
export interface JsonApiUserGroupOutDocument {
|
|
7565
7691
|
data: JsonApiUserGroupOut;
|
|
7566
7692
|
links?: ObjectLinks;
|
|
@@ -7575,15 +7701,12 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7575
7701
|
export interface JsonApiUserGroupOutList {
|
|
7576
7702
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7577
7703
|
links?: ListLinks;
|
|
7578
|
-
meta?:
|
|
7704
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7579
7705
|
/**
|
|
7580
7706
|
* Included resources
|
|
7581
7707
|
*/
|
|
7582
7708
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7583
7709
|
}
|
|
7584
|
-
export interface JsonApiUserGroupOutRelationships {
|
|
7585
|
-
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
7586
|
-
}
|
|
7587
7710
|
export interface JsonApiUserGroupOutWithLinks {
|
|
7588
7711
|
/**
|
|
7589
7712
|
* Object type
|
|
@@ -7593,8 +7716,8 @@ export interface JsonApiUserGroupOutWithLinks {
|
|
|
7593
7716
|
* API identifier of an object
|
|
7594
7717
|
*/
|
|
7595
7718
|
id: string;
|
|
7596
|
-
attributes?:
|
|
7597
|
-
relationships?:
|
|
7719
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7720
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7598
7721
|
links?: ObjectLinks;
|
|
7599
7722
|
}
|
|
7600
7723
|
export declare const JsonApiUserGroupOutWithLinksTypeEnum: {
|
|
@@ -7613,8 +7736,8 @@ export interface JsonApiUserGroupPatch {
|
|
|
7613
7736
|
* API identifier of an object
|
|
7614
7737
|
*/
|
|
7615
7738
|
id: string;
|
|
7616
|
-
attributes?:
|
|
7617
|
-
relationships?:
|
|
7739
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7740
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7618
7741
|
}
|
|
7619
7742
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
7620
7743
|
readonly USER_GROUP: "userGroup";
|
|
@@ -7667,7 +7790,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
7667
7790
|
export interface JsonApiUserIdentifierOutList {
|
|
7668
7791
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7669
7792
|
links?: ListLinks;
|
|
7670
|
-
meta?:
|
|
7793
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7671
7794
|
}
|
|
7672
7795
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
7673
7796
|
/**
|
|
@@ -7697,16 +7820,25 @@ export interface JsonApiUserIn {
|
|
|
7697
7820
|
* API identifier of an object
|
|
7698
7821
|
*/
|
|
7699
7822
|
id: string;
|
|
7700
|
-
attributes?:
|
|
7701
|
-
relationships?:
|
|
7823
|
+
attributes?: JsonApiUserInAttributes;
|
|
7824
|
+
relationships?: JsonApiUserInRelationships;
|
|
7702
7825
|
}
|
|
7703
7826
|
export declare const JsonApiUserInTypeEnum: {
|
|
7704
7827
|
readonly USER: "user";
|
|
7705
7828
|
};
|
|
7706
7829
|
export type JsonApiUserInTypeEnum = (typeof JsonApiUserInTypeEnum)[keyof typeof JsonApiUserInTypeEnum];
|
|
7830
|
+
export interface JsonApiUserInAttributes {
|
|
7831
|
+
authenticationId?: string;
|
|
7832
|
+
firstname?: string;
|
|
7833
|
+
lastname?: string;
|
|
7834
|
+
email?: string;
|
|
7835
|
+
}
|
|
7707
7836
|
export interface JsonApiUserInDocument {
|
|
7708
7837
|
data: JsonApiUserIn;
|
|
7709
7838
|
}
|
|
7839
|
+
export interface JsonApiUserInRelationships {
|
|
7840
|
+
userGroups?: JsonApiUserGroupInRelationshipsParents;
|
|
7841
|
+
}
|
|
7710
7842
|
/**
|
|
7711
7843
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7712
7844
|
*/
|
|
@@ -7730,19 +7862,13 @@ export interface JsonApiUserOut {
|
|
|
7730
7862
|
* API identifier of an object
|
|
7731
7863
|
*/
|
|
7732
7864
|
id: string;
|
|
7733
|
-
attributes?:
|
|
7734
|
-
relationships?:
|
|
7865
|
+
attributes?: JsonApiUserInAttributes;
|
|
7866
|
+
relationships?: JsonApiUserInRelationships;
|
|
7735
7867
|
}
|
|
7736
7868
|
export declare const JsonApiUserOutTypeEnum: {
|
|
7737
7869
|
readonly USER: "user";
|
|
7738
7870
|
};
|
|
7739
7871
|
export type JsonApiUserOutTypeEnum = (typeof JsonApiUserOutTypeEnum)[keyof typeof JsonApiUserOutTypeEnum];
|
|
7740
|
-
export interface JsonApiUserOutAttributes {
|
|
7741
|
-
authenticationId?: string;
|
|
7742
|
-
firstname?: string;
|
|
7743
|
-
lastname?: string;
|
|
7744
|
-
email?: string;
|
|
7745
|
-
}
|
|
7746
7872
|
export interface JsonApiUserOutDocument {
|
|
7747
7873
|
data: JsonApiUserOut;
|
|
7748
7874
|
links?: ObjectLinks;
|
|
@@ -7757,21 +7883,12 @@ export interface JsonApiUserOutDocument {
|
|
|
7757
7883
|
export interface JsonApiUserOutList {
|
|
7758
7884
|
data: Array<JsonApiUserOutWithLinks>;
|
|
7759
7885
|
links?: ListLinks;
|
|
7760
|
-
meta?:
|
|
7886
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7761
7887
|
/**
|
|
7762
7888
|
* Included resources
|
|
7763
7889
|
*/
|
|
7764
7890
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7765
7891
|
}
|
|
7766
|
-
export interface JsonApiUserOutRelationships {
|
|
7767
|
-
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
7768
|
-
}
|
|
7769
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
7770
|
-
/**
|
|
7771
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7772
|
-
*/
|
|
7773
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
7774
|
-
}
|
|
7775
7892
|
export interface JsonApiUserOutWithLinks {
|
|
7776
7893
|
/**
|
|
7777
7894
|
* Object type
|
|
@@ -7781,8 +7898,8 @@ export interface JsonApiUserOutWithLinks {
|
|
|
7781
7898
|
* API identifier of an object
|
|
7782
7899
|
*/
|
|
7783
7900
|
id: string;
|
|
7784
|
-
attributes?:
|
|
7785
|
-
relationships?:
|
|
7901
|
+
attributes?: JsonApiUserInAttributes;
|
|
7902
|
+
relationships?: JsonApiUserInRelationships;
|
|
7786
7903
|
links?: ObjectLinks;
|
|
7787
7904
|
}
|
|
7788
7905
|
export declare const JsonApiUserOutWithLinksTypeEnum: {
|
|
@@ -7801,8 +7918,8 @@ export interface JsonApiUserPatch {
|
|
|
7801
7918
|
* API identifier of an object
|
|
7802
7919
|
*/
|
|
7803
7920
|
id: string;
|
|
7804
|
-
attributes?:
|
|
7805
|
-
relationships?:
|
|
7921
|
+
attributes?: JsonApiUserInAttributes;
|
|
7922
|
+
relationships?: JsonApiUserInRelationships;
|
|
7806
7923
|
}
|
|
7807
7924
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
7808
7925
|
readonly USER: "user";
|
|
@@ -7823,51 +7940,12 @@ export interface JsonApiUserSettingIn {
|
|
|
7823
7940
|
* API identifier of an object
|
|
7824
7941
|
*/
|
|
7825
7942
|
id: string;
|
|
7826
|
-
attributes?:
|
|
7943
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7827
7944
|
}
|
|
7828
7945
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
7829
7946
|
readonly USER_SETTING: "userSetting";
|
|
7830
7947
|
};
|
|
7831
7948
|
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];
|
|
7871
7949
|
export interface JsonApiUserSettingInDocument {
|
|
7872
7950
|
data: JsonApiUserSettingIn;
|
|
7873
7951
|
}
|
|
@@ -7883,7 +7961,7 @@ export interface JsonApiUserSettingOut {
|
|
|
7883
7961
|
* API identifier of an object
|
|
7884
7962
|
*/
|
|
7885
7963
|
id: string;
|
|
7886
|
-
attributes?:
|
|
7964
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7887
7965
|
}
|
|
7888
7966
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
7889
7967
|
readonly USER_SETTING: "userSetting";
|
|
@@ -7899,7 +7977,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
7899
7977
|
export interface JsonApiUserSettingOutList {
|
|
7900
7978
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
7901
7979
|
links?: ListLinks;
|
|
7902
|
-
meta?:
|
|
7980
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7903
7981
|
}
|
|
7904
7982
|
export interface JsonApiUserSettingOutWithLinks {
|
|
7905
7983
|
/**
|
|
@@ -7910,7 +7988,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
7910
7988
|
* API identifier of an object
|
|
7911
7989
|
*/
|
|
7912
7990
|
id: string;
|
|
7913
|
-
attributes?:
|
|
7991
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7914
7992
|
links?: ObjectLinks;
|
|
7915
7993
|
}
|
|
7916
7994
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -7929,7 +8007,7 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
7929
8007
|
* API identifier of an object
|
|
7930
8008
|
*/
|
|
7931
8009
|
id: string;
|
|
7932
|
-
attributes:
|
|
8010
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
7933
8011
|
}
|
|
7934
8012
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
7935
8013
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -7961,14 +8039,26 @@ export interface JsonApiVisualizationObjectOut {
|
|
|
7961
8039
|
* API identifier of an object
|
|
7962
8040
|
*/
|
|
7963
8041
|
id: string;
|
|
7964
|
-
meta?:
|
|
7965
|
-
attributes:
|
|
8042
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8043
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
7966
8044
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
7967
8045
|
}
|
|
7968
8046
|
export declare const JsonApiVisualizationObjectOutTypeEnum: {
|
|
7969
8047
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
7970
8048
|
};
|
|
7971
8049
|
export type JsonApiVisualizationObjectOutTypeEnum = (typeof JsonApiVisualizationObjectOutTypeEnum)[keyof typeof JsonApiVisualizationObjectOutTypeEnum];
|
|
8050
|
+
export interface JsonApiVisualizationObjectOutAttributes {
|
|
8051
|
+
title?: string;
|
|
8052
|
+
description?: string;
|
|
8053
|
+
tags?: Array<string>;
|
|
8054
|
+
areRelationsValid?: boolean;
|
|
8055
|
+
/**
|
|
8056
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8057
|
+
*/
|
|
8058
|
+
content: object;
|
|
8059
|
+
createdAt?: string;
|
|
8060
|
+
modifiedAt?: string;
|
|
8061
|
+
}
|
|
7972
8062
|
export interface JsonApiVisualizationObjectOutDocument {
|
|
7973
8063
|
data: JsonApiVisualizationObjectOut;
|
|
7974
8064
|
links?: ObjectLinks;
|
|
@@ -7983,20 +8073,38 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
7983
8073
|
export interface JsonApiVisualizationObjectOutList {
|
|
7984
8074
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
7985
8075
|
links?: ListLinks;
|
|
7986
|
-
meta?:
|
|
8076
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7987
8077
|
/**
|
|
7988
8078
|
* Included resources
|
|
7989
8079
|
*/
|
|
7990
|
-
included?: Array<JsonApiMetricOutIncludes>;
|
|
8080
|
+
included?: Array<JsonApiMetricOutIncludes>;
|
|
8081
|
+
}
|
|
8082
|
+
export interface JsonApiVisualizationObjectOutMeta {
|
|
8083
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
8084
|
+
}
|
|
8085
|
+
export interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
8086
|
+
/**
|
|
8087
|
+
* defines type of the origin of the entity
|
|
8088
|
+
*/
|
|
8089
|
+
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
8090
|
+
/**
|
|
8091
|
+
* defines id of the workspace where the entity comes from
|
|
8092
|
+
*/
|
|
8093
|
+
originId: string;
|
|
7991
8094
|
}
|
|
8095
|
+
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
8096
|
+
readonly NATIVE: "NATIVE";
|
|
8097
|
+
readonly PARENT: "PARENT";
|
|
8098
|
+
};
|
|
8099
|
+
export type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
7992
8100
|
export interface JsonApiVisualizationObjectOutRelationships {
|
|
7993
|
-
createdBy?:
|
|
7994
|
-
modifiedBy?:
|
|
8101
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8102
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7995
8103
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7996
8104
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7997
|
-
labels?:
|
|
7998
|
-
metrics?:
|
|
7999
|
-
datasets?:
|
|
8105
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
8106
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
8107
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
8000
8108
|
}
|
|
8001
8109
|
export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
8002
8110
|
/**
|
|
@@ -8004,12 +8112,33 @@ export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
|
8004
8112
|
*/
|
|
8005
8113
|
data: Array<JsonApiAttributeLinkage>;
|
|
8006
8114
|
}
|
|
8115
|
+
export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
8116
|
+
data: JsonApiUserIdentifierLinkage | null;
|
|
8117
|
+
}
|
|
8118
|
+
export interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
8119
|
+
/**
|
|
8120
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8121
|
+
*/
|
|
8122
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
8123
|
+
}
|
|
8007
8124
|
export interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
8008
8125
|
/**
|
|
8009
8126
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8010
8127
|
*/
|
|
8011
8128
|
data: Array<JsonApiFactLinkage>;
|
|
8012
8129
|
}
|
|
8130
|
+
export interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
8131
|
+
/**
|
|
8132
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8133
|
+
*/
|
|
8134
|
+
data: Array<JsonApiLabelLinkage>;
|
|
8135
|
+
}
|
|
8136
|
+
export interface JsonApiVisualizationObjectOutRelationshipsMetrics {
|
|
8137
|
+
/**
|
|
8138
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8139
|
+
*/
|
|
8140
|
+
data: Array<JsonApiMetricLinkage>;
|
|
8141
|
+
}
|
|
8013
8142
|
export interface JsonApiVisualizationObjectOutWithLinks {
|
|
8014
8143
|
/**
|
|
8015
8144
|
* Object type
|
|
@@ -8019,8 +8148,8 @@ export interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
8019
8148
|
* API identifier of an object
|
|
8020
8149
|
*/
|
|
8021
8150
|
id: string;
|
|
8022
|
-
meta?:
|
|
8023
|
-
attributes:
|
|
8151
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8152
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
8024
8153
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8025
8154
|
links?: ObjectLinks;
|
|
8026
8155
|
}
|
|
@@ -8061,7 +8190,7 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8061
8190
|
* API identifier of an object
|
|
8062
8191
|
*/
|
|
8063
8192
|
id?: string;
|
|
8064
|
-
attributes:
|
|
8193
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
8065
8194
|
}
|
|
8066
8195
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8067
8196
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -8082,118 +8211,13 @@ export interface JsonApiWorkspaceAutomationOut {
|
|
|
8082
8211
|
* API identifier of an object
|
|
8083
8212
|
*/
|
|
8084
8213
|
id: string;
|
|
8085
|
-
attributes?:
|
|
8214
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
8086
8215
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
8087
8216
|
}
|
|
8088
8217
|
export declare const JsonApiWorkspaceAutomationOutTypeEnum: {
|
|
8089
8218
|
readonly WORKSPACE_AUTOMATION: "workspaceAutomation";
|
|
8090
8219
|
};
|
|
8091
8220
|
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
|
-
}
|
|
8197
8221
|
/**
|
|
8198
8222
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
8199
8223
|
*/
|
|
@@ -8204,45 +8228,21 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8204
8228
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8205
8229
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8206
8230
|
links?: ListLinks;
|
|
8207
|
-
meta?:
|
|
8231
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8208
8232
|
/**
|
|
8209
8233
|
* Included resources
|
|
8210
8234
|
*/
|
|
8211
8235
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
8212
8236
|
}
|
|
8213
|
-
export interface JsonApiWorkspaceAutomationOutListMeta {
|
|
8214
|
-
page?: PageMetadata;
|
|
8215
|
-
}
|
|
8216
8237
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8217
|
-
workspace?:
|
|
8218
|
-
notificationChannel?:
|
|
8219
|
-
analyticalDashboard?:
|
|
8220
|
-
createdBy?:
|
|
8221
|
-
modifiedBy?:
|
|
8222
|
-
exportDefinitions?:
|
|
8223
|
-
recipients?:
|
|
8224
|
-
automationResults?:
|
|
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>;
|
|
8238
|
+
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
8239
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
8240
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
8241
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8242
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8243
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
8244
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
8245
|
+
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8246
8246
|
}
|
|
8247
8247
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
8248
8248
|
/**
|
|
@@ -8253,7 +8253,7 @@ export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
8253
8253
|
* API identifier of an object
|
|
8254
8254
|
*/
|
|
8255
8255
|
id: string;
|
|
8256
|
-
attributes?:
|
|
8256
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
8257
8257
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
8258
8258
|
links?: ObjectLinks;
|
|
8259
8259
|
}
|
|
@@ -8306,7 +8306,7 @@ export interface JsonApiWorkspaceDataFilterOut {
|
|
|
8306
8306
|
* API identifier of an object
|
|
8307
8307
|
*/
|
|
8308
8308
|
id: string;
|
|
8309
|
-
meta?:
|
|
8309
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8310
8310
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8311
8311
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8312
8312
|
}
|
|
@@ -8333,7 +8333,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8333
8333
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8334
8334
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8335
8335
|
links?: ListLinks;
|
|
8336
|
-
meta?:
|
|
8336
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8337
8337
|
/**
|
|
8338
8338
|
* Included resources
|
|
8339
8339
|
*/
|
|
@@ -8357,7 +8357,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
8357
8357
|
* API identifier of an object
|
|
8358
8358
|
*/
|
|
8359
8359
|
id: string;
|
|
8360
|
-
meta?:
|
|
8360
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8361
8361
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8362
8362
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8363
8363
|
links?: ObjectLinks;
|
|
@@ -8444,7 +8444,7 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8444
8444
|
* API identifier of an object
|
|
8445
8445
|
*/
|
|
8446
8446
|
id: string;
|
|
8447
|
-
meta?:
|
|
8447
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8448
8448
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8449
8449
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8450
8450
|
}
|
|
@@ -8466,7 +8466,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8466
8466
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8467
8467
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8468
8468
|
links?: ListLinks;
|
|
8469
|
-
meta?:
|
|
8469
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8470
8470
|
/**
|
|
8471
8471
|
* Included resources
|
|
8472
8472
|
*/
|
|
@@ -8481,7 +8481,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8481
8481
|
* API identifier of an object
|
|
8482
8482
|
*/
|
|
8483
8483
|
id: string;
|
|
8484
|
-
meta?:
|
|
8484
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8485
8485
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8486
8486
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8487
8487
|
links?: ObjectLinks;
|
|
@@ -8524,16 +8524,54 @@ export interface JsonApiWorkspaceIn {
|
|
|
8524
8524
|
* API identifier of an object
|
|
8525
8525
|
*/
|
|
8526
8526
|
id: string;
|
|
8527
|
-
attributes?:
|
|
8528
|
-
relationships?:
|
|
8527
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8528
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8529
8529
|
}
|
|
8530
8530
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
8531
8531
|
readonly WORKSPACE: "workspace";
|
|
8532
8532
|
};
|
|
8533
8533
|
export type JsonApiWorkspaceInTypeEnum = (typeof JsonApiWorkspaceInTypeEnum)[keyof typeof JsonApiWorkspaceInTypeEnum];
|
|
8534
|
+
export interface JsonApiWorkspaceInAttributes {
|
|
8535
|
+
name?: string | null;
|
|
8536
|
+
/**
|
|
8537
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8538
|
+
* @deprecated
|
|
8539
|
+
*/
|
|
8540
|
+
earlyAccess?: string | null;
|
|
8541
|
+
/**
|
|
8542
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
8543
|
+
*/
|
|
8544
|
+
earlyAccessValues?: Array<string> | null;
|
|
8545
|
+
description?: string | null;
|
|
8546
|
+
/**
|
|
8547
|
+
* Custom prefix of entity identifiers in workspace
|
|
8548
|
+
*/
|
|
8549
|
+
prefix?: string | null;
|
|
8550
|
+
cacheExtraLimit?: number;
|
|
8551
|
+
dataSource?: JsonApiWorkspaceInAttributesDataSource;
|
|
8552
|
+
}
|
|
8553
|
+
/**
|
|
8554
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
8555
|
+
*/
|
|
8556
|
+
export interface JsonApiWorkspaceInAttributesDataSource {
|
|
8557
|
+
/**
|
|
8558
|
+
* The ID of the used data source.
|
|
8559
|
+
*/
|
|
8560
|
+
id: string;
|
|
8561
|
+
/**
|
|
8562
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8563
|
+
*/
|
|
8564
|
+
schemaPath?: Array<string>;
|
|
8565
|
+
}
|
|
8534
8566
|
export interface JsonApiWorkspaceInDocument {
|
|
8535
8567
|
data: JsonApiWorkspaceIn;
|
|
8536
8568
|
}
|
|
8569
|
+
export interface JsonApiWorkspaceInRelationships {
|
|
8570
|
+
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
8571
|
+
}
|
|
8572
|
+
export interface JsonApiWorkspaceInRelationshipsParent {
|
|
8573
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
8574
|
+
}
|
|
8537
8575
|
/**
|
|
8538
8576
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8539
8577
|
*/
|
|
@@ -8558,45 +8596,13 @@ export interface JsonApiWorkspaceOut {
|
|
|
8558
8596
|
*/
|
|
8559
8597
|
id: string;
|
|
8560
8598
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8561
|
-
attributes?:
|
|
8562
|
-
relationships?:
|
|
8599
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8600
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8563
8601
|
}
|
|
8564
8602
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
8565
8603
|
readonly WORKSPACE: "workspace";
|
|
8566
8604
|
};
|
|
8567
8605
|
export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
|
|
8568
|
-
export interface JsonApiWorkspaceOutAttributes {
|
|
8569
|
-
name?: string | null;
|
|
8570
|
-
/**
|
|
8571
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8572
|
-
* @deprecated
|
|
8573
|
-
*/
|
|
8574
|
-
earlyAccess?: string | null;
|
|
8575
|
-
/**
|
|
8576
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
8577
|
-
*/
|
|
8578
|
-
earlyAccessValues?: Array<string> | null;
|
|
8579
|
-
description?: string | null;
|
|
8580
|
-
/**
|
|
8581
|
-
* Custom prefix of entity identifiers in workspace
|
|
8582
|
-
*/
|
|
8583
|
-
prefix?: string | null;
|
|
8584
|
-
cacheExtraLimit?: number;
|
|
8585
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
8586
|
-
}
|
|
8587
|
-
/**
|
|
8588
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
8589
|
-
*/
|
|
8590
|
-
export interface JsonApiWorkspaceOutAttributesDataSource {
|
|
8591
|
-
/**
|
|
8592
|
-
* The ID of the used data source.
|
|
8593
|
-
*/
|
|
8594
|
-
id: string;
|
|
8595
|
-
/**
|
|
8596
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8597
|
-
*/
|
|
8598
|
-
schemaPath?: Array<string>;
|
|
8599
|
-
}
|
|
8600
8606
|
export interface JsonApiWorkspaceOutDocument {
|
|
8601
8607
|
data: JsonApiWorkspaceOut;
|
|
8602
8608
|
links?: ObjectLinks;
|
|
@@ -8611,7 +8617,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8611
8617
|
export interface JsonApiWorkspaceOutList {
|
|
8612
8618
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8613
8619
|
links?: ListLinks;
|
|
8614
|
-
meta?:
|
|
8620
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8615
8621
|
/**
|
|
8616
8622
|
* Included resources
|
|
8617
8623
|
*/
|
|
@@ -8664,12 +8670,6 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
|
|
|
8664
8670
|
*/
|
|
8665
8671
|
childrenCount: number;
|
|
8666
8672
|
}
|
|
8667
|
-
export interface JsonApiWorkspaceOutRelationships {
|
|
8668
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8669
|
-
}
|
|
8670
|
-
export interface JsonApiWorkspaceOutRelationshipsParent {
|
|
8671
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
8672
|
-
}
|
|
8673
8673
|
export interface JsonApiWorkspaceOutWithLinks {
|
|
8674
8674
|
/**
|
|
8675
8675
|
* Object type
|
|
@@ -8680,8 +8680,8 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
8680
8680
|
*/
|
|
8681
8681
|
id: string;
|
|
8682
8682
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8683
|
-
attributes?:
|
|
8684
|
-
relationships?:
|
|
8683
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8684
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8685
8685
|
links?: ObjectLinks;
|
|
8686
8686
|
}
|
|
8687
8687
|
export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
|
|
@@ -8700,8 +8700,8 @@ export interface JsonApiWorkspacePatch {
|
|
|
8700
8700
|
* API identifier of an object
|
|
8701
8701
|
*/
|
|
8702
8702
|
id: string;
|
|
8703
|
-
attributes?:
|
|
8704
|
-
relationships?:
|
|
8703
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8704
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8705
8705
|
}
|
|
8706
8706
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
8707
8707
|
readonly WORKSPACE: "workspace";
|
|
@@ -8722,7 +8722,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8722
8722
|
* API identifier of an object
|
|
8723
8723
|
*/
|
|
8724
8724
|
id: string;
|
|
8725
|
-
attributes?:
|
|
8725
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8726
8726
|
}
|
|
8727
8727
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8728
8728
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8743,8 +8743,8 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8743
8743
|
* API identifier of an object
|
|
8744
8744
|
*/
|
|
8745
8745
|
id: string;
|
|
8746
|
-
meta?:
|
|
8747
|
-
attributes?:
|
|
8746
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8747
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8748
8748
|
}
|
|
8749
8749
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
8750
8750
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8760,7 +8760,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
8760
8760
|
export interface JsonApiWorkspaceSettingOutList {
|
|
8761
8761
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
8762
8762
|
links?: ListLinks;
|
|
8763
|
-
meta?:
|
|
8763
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8764
8764
|
}
|
|
8765
8765
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
8766
8766
|
/**
|
|
@@ -8771,8 +8771,8 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
8771
8771
|
* API identifier of an object
|
|
8772
8772
|
*/
|
|
8773
8773
|
id: string;
|
|
8774
|
-
meta?:
|
|
8775
|
-
attributes?:
|
|
8774
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8775
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8776
8776
|
links?: ObjectLinks;
|
|
8777
8777
|
}
|
|
8778
8778
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -8791,7 +8791,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
8791
8791
|
* API identifier of an object
|
|
8792
8792
|
*/
|
|
8793
8793
|
id: string;
|
|
8794
|
-
attributes?:
|
|
8794
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8795
8795
|
}
|
|
8796
8796
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
8797
8797
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8812,7 +8812,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
8812
8812
|
* API identifier of an object
|
|
8813
8813
|
*/
|
|
8814
8814
|
id?: string;
|
|
8815
|
-
attributes?:
|
|
8815
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8816
8816
|
}
|
|
8817
8817
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
8818
8818
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -10968,6 +10968,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10968
10968
|
* @throws {RequiredError}
|
|
10969
10969
|
*/
|
|
10970
10970
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10971
|
+
/**
|
|
10972
|
+
*
|
|
10973
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
10974
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
10975
|
+
* @param {*} [options] Override http request option.
|
|
10976
|
+
* @throws {RequiredError}
|
|
10977
|
+
*/
|
|
10978
|
+
unsubscribeOrganizationAutomations: (organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10971
10979
|
/**
|
|
10972
10980
|
*
|
|
10973
10981
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -11319,6 +11327,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
11319
11327
|
* @throws {RequiredError}
|
|
11320
11328
|
*/
|
|
11321
11329
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11330
|
+
/**
|
|
11331
|
+
*
|
|
11332
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
11333
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
11334
|
+
* @param {*} [options] Override http request option.
|
|
11335
|
+
* @throws {RequiredError}
|
|
11336
|
+
*/
|
|
11337
|
+
unsubscribeOrganizationAutomations(organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11322
11338
|
/**
|
|
11323
11339
|
*
|
|
11324
11340
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -11648,6 +11664,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
11648
11664
|
* @throws {RequiredError}
|
|
11649
11665
|
*/
|
|
11650
11666
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11667
|
+
/**
|
|
11668
|
+
*
|
|
11669
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
11670
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
11671
|
+
* @param {*} [options] Override http request option.
|
|
11672
|
+
* @throws {RequiredError}
|
|
11673
|
+
*/
|
|
11674
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11651
11675
|
/**
|
|
11652
11676
|
*
|
|
11653
11677
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -12013,6 +12037,15 @@ export interface ActionsApiInterface {
|
|
|
12013
12037
|
* @memberof ActionsApiInterface
|
|
12014
12038
|
*/
|
|
12015
12039
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12040
|
+
/**
|
|
12041
|
+
*
|
|
12042
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
12043
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
12044
|
+
* @param {*} [options] Override http request option.
|
|
12045
|
+
* @throws {RequiredError}
|
|
12046
|
+
* @memberof ActionsApiInterface
|
|
12047
|
+
*/
|
|
12048
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12016
12049
|
/**
|
|
12017
12050
|
*
|
|
12018
12051
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -12598,6 +12631,19 @@ export interface ActionsApiUnsubscribeAutomationRequest {
|
|
|
12598
12631
|
*/
|
|
12599
12632
|
readonly automationId: string;
|
|
12600
12633
|
}
|
|
12634
|
+
/**
|
|
12635
|
+
* Request parameters for unsubscribeOrganizationAutomations operation in ActionsApi.
|
|
12636
|
+
* @export
|
|
12637
|
+
* @interface ActionsApiUnsubscribeOrganizationAutomationsRequest
|
|
12638
|
+
*/
|
|
12639
|
+
export interface ActionsApiUnsubscribeOrganizationAutomationsRequest {
|
|
12640
|
+
/**
|
|
12641
|
+
*
|
|
12642
|
+
* @type {OrganizationAutomationManagementBulkRequest}
|
|
12643
|
+
* @memberof ActionsApiUnsubscribeOrganizationAutomations
|
|
12644
|
+
*/
|
|
12645
|
+
readonly organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest;
|
|
12646
|
+
}
|
|
12601
12647
|
/**
|
|
12602
12648
|
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in ActionsApi.
|
|
12603
12649
|
* @export
|
|
@@ -12995,6 +13041,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
12995
13041
|
* @memberof ActionsApi
|
|
12996
13042
|
*/
|
|
12997
13043
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13044
|
+
/**
|
|
13045
|
+
*
|
|
13046
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
13047
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
13048
|
+
* @param {*} [options] Override http request option.
|
|
13049
|
+
* @throws {RequiredError}
|
|
13050
|
+
* @memberof ActionsApi
|
|
13051
|
+
*/
|
|
13052
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12998
13053
|
/**
|
|
12999
13054
|
*
|
|
13000
13055
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -15155,6 +15210,14 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
15155
15210
|
* @throws {RequiredError}
|
|
15156
15211
|
*/
|
|
15157
15212
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15213
|
+
/**
|
|
15214
|
+
*
|
|
15215
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
15216
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
15217
|
+
* @param {*} [options] Override http request option.
|
|
15218
|
+
* @throws {RequiredError}
|
|
15219
|
+
*/
|
|
15220
|
+
unsubscribeOrganizationAutomations: (organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15158
15221
|
/**
|
|
15159
15222
|
*
|
|
15160
15223
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -15350,6 +15413,14 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
15350
15413
|
* @throws {RequiredError}
|
|
15351
15414
|
*/
|
|
15352
15415
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15416
|
+
/**
|
|
15417
|
+
*
|
|
15418
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
15419
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
15420
|
+
* @param {*} [options] Override http request option.
|
|
15421
|
+
* @throws {RequiredError}
|
|
15422
|
+
*/
|
|
15423
|
+
unsubscribeOrganizationAutomations(organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15353
15424
|
/**
|
|
15354
15425
|
*
|
|
15355
15426
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -15512,6 +15583,14 @@ export declare const AutomationsApiFactory: (configuration?: Configuration, base
|
|
|
15512
15583
|
* @throws {RequiredError}
|
|
15513
15584
|
*/
|
|
15514
15585
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15586
|
+
/**
|
|
15587
|
+
*
|
|
15588
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
15589
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
15590
|
+
* @param {*} [options] Override http request option.
|
|
15591
|
+
* @throws {RequiredError}
|
|
15592
|
+
*/
|
|
15593
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15515
15594
|
/**
|
|
15516
15595
|
*
|
|
15517
15596
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -15686,6 +15765,15 @@ export interface AutomationsApiInterface {
|
|
|
15686
15765
|
* @memberof AutomationsApiInterface
|
|
15687
15766
|
*/
|
|
15688
15767
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15768
|
+
/**
|
|
15769
|
+
*
|
|
15770
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
15771
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
15772
|
+
* @param {*} [options] Override http request option.
|
|
15773
|
+
* @throws {RequiredError}
|
|
15774
|
+
* @memberof AutomationsApiInterface
|
|
15775
|
+
*/
|
|
15776
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15689
15777
|
/**
|
|
15690
15778
|
*
|
|
15691
15779
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -16107,6 +16195,19 @@ export interface AutomationsApiUnsubscribeAutomationRequest {
|
|
|
16107
16195
|
*/
|
|
16108
16196
|
readonly automationId: string;
|
|
16109
16197
|
}
|
|
16198
|
+
/**
|
|
16199
|
+
* Request parameters for unsubscribeOrganizationAutomations operation in AutomationsApi.
|
|
16200
|
+
* @export
|
|
16201
|
+
* @interface AutomationsApiUnsubscribeOrganizationAutomationsRequest
|
|
16202
|
+
*/
|
|
16203
|
+
export interface AutomationsApiUnsubscribeOrganizationAutomationsRequest {
|
|
16204
|
+
/**
|
|
16205
|
+
*
|
|
16206
|
+
* @type {OrganizationAutomationManagementBulkRequest}
|
|
16207
|
+
* @memberof AutomationsApiUnsubscribeOrganizationAutomations
|
|
16208
|
+
*/
|
|
16209
|
+
readonly organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest;
|
|
16210
|
+
}
|
|
16110
16211
|
/**
|
|
16111
16212
|
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in AutomationsApi.
|
|
16112
16213
|
* @export
|
|
@@ -16326,6 +16427,15 @@ export declare class AutomationsApi extends BaseAPI implements AutomationsApiInt
|
|
|
16326
16427
|
* @memberof AutomationsApi
|
|
16327
16428
|
*/
|
|
16328
16429
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16430
|
+
/**
|
|
16431
|
+
*
|
|
16432
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
16433
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
16434
|
+
* @param {*} [options] Override http request option.
|
|
16435
|
+
* @throws {RequiredError}
|
|
16436
|
+
* @memberof AutomationsApi
|
|
16437
|
+
*/
|
|
16438
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16329
16439
|
/**
|
|
16330
16440
|
*
|
|
16331
16441
|
* @summary Unsubscribe from selected automations in the workspace
|