@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +859 -753
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +1 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js.map +1 -1
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +155 -10
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +144 -8
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +82 -2
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +650 -646
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +39 -39
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +7767 -7761
- package/esm/generated/scan-json-api/api.d.ts +8 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +11 -0
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -1195,6 +1195,10 @@ export interface DeclarativeColumn {
|
|
|
1195
1195
|
* Referenced table (Foreign key)
|
|
1196
1196
|
*/
|
|
1197
1197
|
referencedTableColumn?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* Column description/comment from database
|
|
1200
|
+
*/
|
|
1201
|
+
description?: string;
|
|
1198
1202
|
}
|
|
1199
1203
|
export declare const DeclarativeColumnDataTypeEnum: {
|
|
1200
1204
|
readonly INT: "INT";
|
|
@@ -3191,12 +3195,15 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3191
3195
|
export interface JsonApiAggregatedFactOutList {
|
|
3192
3196
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3193
3197
|
links?: ListLinks;
|
|
3194
|
-
meta?:
|
|
3198
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3195
3199
|
/**
|
|
3196
3200
|
* Included resources
|
|
3197
3201
|
*/
|
|
3198
3202
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
3199
3203
|
}
|
|
3204
|
+
export interface JsonApiAggregatedFactOutListMeta {
|
|
3205
|
+
page?: PageMetadata;
|
|
3206
|
+
}
|
|
3200
3207
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
3201
3208
|
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3202
3209
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
@@ -3234,12 +3241,22 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3234
3241
|
* API identifier of an object
|
|
3235
3242
|
*/
|
|
3236
3243
|
id: string;
|
|
3237
|
-
attributes:
|
|
3244
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3238
3245
|
}
|
|
3239
3246
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3240
3247
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3241
3248
|
};
|
|
3242
3249
|
export type JsonApiAnalyticalDashboardInTypeEnum = (typeof JsonApiAnalyticalDashboardInTypeEnum)[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
3250
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
3251
|
+
title?: string;
|
|
3252
|
+
description?: string;
|
|
3253
|
+
tags?: Array<string>;
|
|
3254
|
+
areRelationsValid?: boolean;
|
|
3255
|
+
/**
|
|
3256
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3257
|
+
*/
|
|
3258
|
+
content: object;
|
|
3259
|
+
}
|
|
3243
3260
|
export interface JsonApiAnalyticalDashboardInDocument {
|
|
3244
3261
|
data: JsonApiAnalyticalDashboardIn;
|
|
3245
3262
|
}
|
|
@@ -3304,7 +3321,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3304
3321
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3305
3322
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3306
3323
|
links?: ListLinks;
|
|
3307
|
-
meta?:
|
|
3324
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3308
3325
|
/**
|
|
3309
3326
|
* Included resources
|
|
3310
3327
|
*/
|
|
@@ -3426,7 +3443,7 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3426
3443
|
* API identifier of an object
|
|
3427
3444
|
*/
|
|
3428
3445
|
id?: string;
|
|
3429
|
-
attributes:
|
|
3446
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3430
3447
|
}
|
|
3431
3448
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3432
3449
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -3489,7 +3506,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3489
3506
|
export interface JsonApiApiTokenOutList {
|
|
3490
3507
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3491
3508
|
links?: ListLinks;
|
|
3492
|
-
meta?:
|
|
3509
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3493
3510
|
}
|
|
3494
3511
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3495
3512
|
/**
|
|
@@ -3519,12 +3536,22 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
3519
3536
|
* API identifier of an object
|
|
3520
3537
|
*/
|
|
3521
3538
|
id: string;
|
|
3522
|
-
attributes?:
|
|
3539
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
3523
3540
|
}
|
|
3524
3541
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
3525
3542
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3526
3543
|
};
|
|
3527
3544
|
export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
3545
|
+
export interface JsonApiAttributeHierarchyInAttributes {
|
|
3546
|
+
title?: string;
|
|
3547
|
+
description?: string;
|
|
3548
|
+
tags?: Array<string>;
|
|
3549
|
+
areRelationsValid?: boolean;
|
|
3550
|
+
/**
|
|
3551
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3552
|
+
*/
|
|
3553
|
+
content?: object;
|
|
3554
|
+
}
|
|
3528
3555
|
export interface JsonApiAttributeHierarchyInDocument {
|
|
3529
3556
|
data: JsonApiAttributeHierarchyIn;
|
|
3530
3557
|
}
|
|
@@ -3589,7 +3616,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3589
3616
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3590
3617
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3591
3618
|
links?: ListLinks;
|
|
3592
|
-
meta?:
|
|
3619
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3593
3620
|
/**
|
|
3594
3621
|
* Included resources
|
|
3595
3622
|
*/
|
|
@@ -3630,22 +3657,12 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
3630
3657
|
* API identifier of an object
|
|
3631
3658
|
*/
|
|
3632
3659
|
id: string;
|
|
3633
|
-
attributes?:
|
|
3660
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
3634
3661
|
}
|
|
3635
3662
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
3636
3663
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3637
3664
|
};
|
|
3638
3665
|
export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
3639
|
-
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
3640
|
-
title?: string;
|
|
3641
|
-
description?: string;
|
|
3642
|
-
tags?: Array<string>;
|
|
3643
|
-
areRelationsValid?: boolean;
|
|
3644
|
-
/**
|
|
3645
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3646
|
-
*/
|
|
3647
|
-
content?: object;
|
|
3648
|
-
}
|
|
3649
3666
|
export interface JsonApiAttributeHierarchyPatchDocument {
|
|
3650
3667
|
data: JsonApiAttributeHierarchyPatch;
|
|
3651
3668
|
}
|
|
@@ -3744,7 +3761,7 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3744
3761
|
export interface JsonApiAttributeOutList {
|
|
3745
3762
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3746
3763
|
links?: ListLinks;
|
|
3747
|
-
meta?:
|
|
3764
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3748
3765
|
/**
|
|
3749
3766
|
* Included resources
|
|
3750
3767
|
*/
|
|
@@ -3798,16 +3815,144 @@ export interface JsonApiAutomationIn {
|
|
|
3798
3815
|
* API identifier of an object
|
|
3799
3816
|
*/
|
|
3800
3817
|
id: string;
|
|
3801
|
-
attributes?:
|
|
3802
|
-
relationships?:
|
|
3818
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
3819
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
3803
3820
|
}
|
|
3804
3821
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
3805
3822
|
readonly AUTOMATION: "automation";
|
|
3806
3823
|
};
|
|
3807
3824
|
export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
3825
|
+
export interface JsonApiAutomationInAttributes {
|
|
3826
|
+
title?: string;
|
|
3827
|
+
description?: string;
|
|
3828
|
+
tags?: Array<string>;
|
|
3829
|
+
areRelationsValid?: boolean;
|
|
3830
|
+
/**
|
|
3831
|
+
* Additional details to be included in the automated message.
|
|
3832
|
+
*/
|
|
3833
|
+
details?: object;
|
|
3834
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3835
|
+
/**
|
|
3836
|
+
* Current state of the automation.
|
|
3837
|
+
*/
|
|
3838
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
3839
|
+
/**
|
|
3840
|
+
* Specify automation evaluation mode.
|
|
3841
|
+
*/
|
|
3842
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3843
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3844
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3845
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3846
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3847
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3848
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3849
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3850
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3851
|
+
/**
|
|
3852
|
+
* External recipients of the automation action results.
|
|
3853
|
+
*/
|
|
3854
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3855
|
+
}
|
|
3856
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3857
|
+
readonly ACTIVE: "ACTIVE";
|
|
3858
|
+
readonly PAUSED: "PAUSED";
|
|
3859
|
+
};
|
|
3860
|
+
export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
3861
|
+
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
3862
|
+
readonly SHARED: "SHARED";
|
|
3863
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3864
|
+
};
|
|
3865
|
+
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3866
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
3867
|
+
execution: AlertAfm;
|
|
3868
|
+
condition: AlertCondition;
|
|
3869
|
+
/**
|
|
3870
|
+
* 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.
|
|
3871
|
+
*/
|
|
3872
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
3873
|
+
}
|
|
3874
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
3875
|
+
readonly ALWAYS: "ALWAYS";
|
|
3876
|
+
readonly ONCE: "ONCE";
|
|
3877
|
+
};
|
|
3878
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
3879
|
+
export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
3880
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
3881
|
+
}
|
|
3882
|
+
export interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
3883
|
+
/**
|
|
3884
|
+
* E-mail address to send notifications from.
|
|
3885
|
+
*/
|
|
3886
|
+
email: string;
|
|
3887
|
+
}
|
|
3888
|
+
export interface JsonApiAutomationInAttributesImageExportsInner {
|
|
3889
|
+
requestPayload: ImageExportRequest;
|
|
3890
|
+
}
|
|
3891
|
+
/**
|
|
3892
|
+
* Additional information for the automation.
|
|
3893
|
+
*/
|
|
3894
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
3895
|
+
[key: string]: any;
|
|
3896
|
+
widget?: string;
|
|
3897
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
3898
|
+
}
|
|
3899
|
+
export interface JsonApiAutomationInAttributesRawExportsInner {
|
|
3900
|
+
requestPayload: RawExportAutomationRequest;
|
|
3901
|
+
}
|
|
3902
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
3903
|
+
/**
|
|
3904
|
+
* 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.
|
|
3905
|
+
*/
|
|
3906
|
+
cron: string;
|
|
3907
|
+
/**
|
|
3908
|
+
* Human-readable description of the cron expression.
|
|
3909
|
+
*/
|
|
3910
|
+
cronDescription?: string;
|
|
3911
|
+
/**
|
|
3912
|
+
* Timezone in which the schedule is defined.
|
|
3913
|
+
*/
|
|
3914
|
+
timezone: string;
|
|
3915
|
+
/**
|
|
3916
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3917
|
+
*/
|
|
3918
|
+
firstRun?: string;
|
|
3919
|
+
}
|
|
3920
|
+
export interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
3921
|
+
requestPayload: SlidesExportRequest;
|
|
3922
|
+
}
|
|
3923
|
+
export interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
3924
|
+
requestPayload: TabularExportRequest;
|
|
3925
|
+
}
|
|
3926
|
+
export interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
3927
|
+
requestPayload: VisualExportRequest;
|
|
3928
|
+
}
|
|
3808
3929
|
export interface JsonApiAutomationInDocument {
|
|
3809
3930
|
data: JsonApiAutomationIn;
|
|
3810
3931
|
}
|
|
3932
|
+
export interface JsonApiAutomationInRelationships {
|
|
3933
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3934
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3935
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3936
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3937
|
+
}
|
|
3938
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3939
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3940
|
+
}
|
|
3941
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3942
|
+
/**
|
|
3943
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3944
|
+
*/
|
|
3945
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3946
|
+
}
|
|
3947
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3948
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
3949
|
+
}
|
|
3950
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3951
|
+
/**
|
|
3952
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3953
|
+
*/
|
|
3954
|
+
data: Array<JsonApiUserLinkage>;
|
|
3955
|
+
}
|
|
3811
3956
|
/**
|
|
3812
3957
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3813
3958
|
*/
|
|
@@ -3848,7 +3993,7 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3848
3993
|
* Additional details to be included in the automated message.
|
|
3849
3994
|
*/
|
|
3850
3995
|
details?: object;
|
|
3851
|
-
metadata?:
|
|
3996
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3852
3997
|
/**
|
|
3853
3998
|
* Current state of the automation.
|
|
3854
3999
|
*/
|
|
@@ -3857,18 +4002,18 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3857
4002
|
* Specify automation evaluation mode.
|
|
3858
4003
|
*/
|
|
3859
4004
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3860
|
-
schedule?:
|
|
3861
|
-
alert?:
|
|
3862
|
-
tabularExports?: Array<
|
|
3863
|
-
visualExports?: Array<
|
|
3864
|
-
imageExports?: Array<
|
|
3865
|
-
rawExports?: Array<
|
|
3866
|
-
slidesExports?: Array<
|
|
3867
|
-
dashboardTabularExports?: Array<
|
|
4005
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
4006
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
4007
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
4008
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
4009
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
4010
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
4011
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
4012
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3868
4013
|
/**
|
|
3869
4014
|
* External recipients of the automation action results.
|
|
3870
4015
|
*/
|
|
3871
|
-
externalRecipients?: Array<
|
|
4016
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3872
4017
|
createdAt?: string;
|
|
3873
4018
|
modifiedAt?: string;
|
|
3874
4019
|
}
|
|
@@ -3900,19 +4045,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
3900
4045
|
export interface JsonApiAutomationOutList {
|
|
3901
4046
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
3902
4047
|
links?: ListLinks;
|
|
3903
|
-
meta?:
|
|
4048
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3904
4049
|
/**
|
|
3905
4050
|
* Included resources
|
|
3906
4051
|
*/
|
|
3907
4052
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3908
4053
|
}
|
|
3909
4054
|
export interface JsonApiAutomationOutRelationships {
|
|
3910
|
-
notificationChannel?:
|
|
3911
|
-
analyticalDashboard?:
|
|
4055
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
4056
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3912
4057
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3913
4058
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3914
|
-
exportDefinitions?:
|
|
3915
|
-
recipients?:
|
|
4059
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
4060
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3916
4061
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
3917
4062
|
}
|
|
3918
4063
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
@@ -3951,144 +4096,16 @@ export interface JsonApiAutomationPatch {
|
|
|
3951
4096
|
* API identifier of an object
|
|
3952
4097
|
*/
|
|
3953
4098
|
id: string;
|
|
3954
|
-
attributes?:
|
|
3955
|
-
relationships?:
|
|
4099
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
4100
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
3956
4101
|
}
|
|
3957
4102
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
3958
4103
|
readonly AUTOMATION: "automation";
|
|
3959
4104
|
};
|
|
3960
4105
|
export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
3961
|
-
export interface JsonApiAutomationPatchAttributes {
|
|
3962
|
-
title?: string;
|
|
3963
|
-
description?: string;
|
|
3964
|
-
tags?: Array<string>;
|
|
3965
|
-
areRelationsValid?: boolean;
|
|
3966
|
-
/**
|
|
3967
|
-
* Additional details to be included in the automated message.
|
|
3968
|
-
*/
|
|
3969
|
-
details?: object;
|
|
3970
|
-
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
3971
|
-
/**
|
|
3972
|
-
* Current state of the automation.
|
|
3973
|
-
*/
|
|
3974
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
3975
|
-
/**
|
|
3976
|
-
* Specify automation evaluation mode.
|
|
3977
|
-
*/
|
|
3978
|
-
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
3979
|
-
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
3980
|
-
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
3981
|
-
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
3982
|
-
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
3983
|
-
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
3984
|
-
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
3985
|
-
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
3986
|
-
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
3987
|
-
/**
|
|
3988
|
-
* External recipients of the automation action results.
|
|
3989
|
-
*/
|
|
3990
|
-
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
3991
|
-
}
|
|
3992
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
3993
|
-
readonly ACTIVE: "ACTIVE";
|
|
3994
|
-
readonly PAUSED: "PAUSED";
|
|
3995
|
-
};
|
|
3996
|
-
export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
3997
|
-
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
3998
|
-
readonly SHARED: "SHARED";
|
|
3999
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
4000
|
-
};
|
|
4001
|
-
export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
4002
|
-
export interface JsonApiAutomationPatchAttributesAlert {
|
|
4003
|
-
execution: AlertAfm;
|
|
4004
|
-
condition: AlertCondition;
|
|
4005
|
-
/**
|
|
4006
|
-
* 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.
|
|
4007
|
-
*/
|
|
4008
|
-
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
4009
|
-
}
|
|
4010
|
-
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
4011
|
-
readonly ALWAYS: "ALWAYS";
|
|
4012
|
-
readonly ONCE: "ONCE";
|
|
4013
|
-
};
|
|
4014
|
-
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
4015
|
-
export interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
4016
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
4017
|
-
}
|
|
4018
|
-
export interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
4019
|
-
/**
|
|
4020
|
-
* E-mail address to send notifications from.
|
|
4021
|
-
*/
|
|
4022
|
-
email: string;
|
|
4023
|
-
}
|
|
4024
|
-
export interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
4025
|
-
requestPayload: ImageExportRequest;
|
|
4026
|
-
}
|
|
4027
|
-
/**
|
|
4028
|
-
* Additional information for the automation.
|
|
4029
|
-
*/
|
|
4030
|
-
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
4031
|
-
[key: string]: any;
|
|
4032
|
-
widget?: string;
|
|
4033
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
4034
|
-
}
|
|
4035
|
-
export interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
4036
|
-
requestPayload: RawExportAutomationRequest;
|
|
4037
|
-
}
|
|
4038
|
-
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
4039
|
-
/**
|
|
4040
|
-
* 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.
|
|
4041
|
-
*/
|
|
4042
|
-
cron: string;
|
|
4043
|
-
/**
|
|
4044
|
-
* Human-readable description of the cron expression.
|
|
4045
|
-
*/
|
|
4046
|
-
cronDescription?: string;
|
|
4047
|
-
/**
|
|
4048
|
-
* Timezone in which the schedule is defined.
|
|
4049
|
-
*/
|
|
4050
|
-
timezone: string;
|
|
4051
|
-
/**
|
|
4052
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
4053
|
-
*/
|
|
4054
|
-
firstRun?: string;
|
|
4055
|
-
}
|
|
4056
|
-
export interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
4057
|
-
requestPayload: SlidesExportRequest;
|
|
4058
|
-
}
|
|
4059
|
-
export interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
4060
|
-
requestPayload: TabularExportRequest;
|
|
4061
|
-
}
|
|
4062
|
-
export interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
4063
|
-
requestPayload: VisualExportRequest;
|
|
4064
|
-
}
|
|
4065
4106
|
export interface JsonApiAutomationPatchDocument {
|
|
4066
4107
|
data: JsonApiAutomationPatch;
|
|
4067
4108
|
}
|
|
4068
|
-
export interface JsonApiAutomationPatchRelationships {
|
|
4069
|
-
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
4070
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
4071
|
-
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
4072
|
-
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
4073
|
-
}
|
|
4074
|
-
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
4075
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
4076
|
-
}
|
|
4077
|
-
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
4078
|
-
/**
|
|
4079
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4080
|
-
*/
|
|
4081
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
4082
|
-
}
|
|
4083
|
-
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
4084
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
4085
|
-
}
|
|
4086
|
-
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
4087
|
-
/**
|
|
4088
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4089
|
-
*/
|
|
4090
|
-
data: Array<JsonApiUserLinkage>;
|
|
4091
|
-
}
|
|
4092
4109
|
/**
|
|
4093
4110
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4094
4111
|
*/
|
|
@@ -4168,12 +4185,19 @@ export interface JsonApiColorPaletteIn {
|
|
|
4168
4185
|
* API identifier of an object
|
|
4169
4186
|
*/
|
|
4170
4187
|
id: string;
|
|
4171
|
-
attributes:
|
|
4188
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4172
4189
|
}
|
|
4173
4190
|
export declare const JsonApiColorPaletteInTypeEnum: {
|
|
4174
4191
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4175
4192
|
};
|
|
4176
4193
|
export type JsonApiColorPaletteInTypeEnum = (typeof JsonApiColorPaletteInTypeEnum)[keyof typeof JsonApiColorPaletteInTypeEnum];
|
|
4194
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
4195
|
+
name: string;
|
|
4196
|
+
/**
|
|
4197
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4198
|
+
*/
|
|
4199
|
+
content: object;
|
|
4200
|
+
}
|
|
4177
4201
|
export interface JsonApiColorPaletteInDocument {
|
|
4178
4202
|
data: JsonApiColorPaletteIn;
|
|
4179
4203
|
}
|
|
@@ -4189,19 +4213,12 @@ export interface JsonApiColorPaletteOut {
|
|
|
4189
4213
|
* API identifier of an object
|
|
4190
4214
|
*/
|
|
4191
4215
|
id: string;
|
|
4192
|
-
attributes:
|
|
4216
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4193
4217
|
}
|
|
4194
4218
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
4195
4219
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4196
4220
|
};
|
|
4197
4221
|
export type JsonApiColorPaletteOutTypeEnum = (typeof JsonApiColorPaletteOutTypeEnum)[keyof typeof JsonApiColorPaletteOutTypeEnum];
|
|
4198
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
4199
|
-
name: string;
|
|
4200
|
-
/**
|
|
4201
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4202
|
-
*/
|
|
4203
|
-
content: object;
|
|
4204
|
-
}
|
|
4205
4222
|
export interface JsonApiColorPaletteOutDocument {
|
|
4206
4223
|
data: JsonApiColorPaletteOut;
|
|
4207
4224
|
links?: ObjectLinks;
|
|
@@ -4212,7 +4229,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4212
4229
|
export interface JsonApiColorPaletteOutList {
|
|
4213
4230
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4214
4231
|
links?: ListLinks;
|
|
4215
|
-
meta?:
|
|
4232
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4216
4233
|
}
|
|
4217
4234
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4218
4235
|
/**
|
|
@@ -4223,7 +4240,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
4223
4240
|
* API identifier of an object
|
|
4224
4241
|
*/
|
|
4225
4242
|
id: string;
|
|
4226
|
-
attributes:
|
|
4243
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4227
4244
|
links?: ObjectLinks;
|
|
4228
4245
|
}
|
|
4229
4246
|
export declare const JsonApiColorPaletteOutWithLinksTypeEnum: {
|
|
@@ -4341,12 +4358,15 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4341
4358
|
* API identifier of an object
|
|
4342
4359
|
*/
|
|
4343
4360
|
id: string;
|
|
4344
|
-
attributes:
|
|
4361
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4345
4362
|
}
|
|
4346
4363
|
export declare const JsonApiCspDirectiveInTypeEnum: {
|
|
4347
4364
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4348
4365
|
};
|
|
4349
4366
|
export type JsonApiCspDirectiveInTypeEnum = (typeof JsonApiCspDirectiveInTypeEnum)[keyof typeof JsonApiCspDirectiveInTypeEnum];
|
|
4367
|
+
export interface JsonApiCspDirectiveInAttributes {
|
|
4368
|
+
sources: Array<string>;
|
|
4369
|
+
}
|
|
4350
4370
|
export interface JsonApiCspDirectiveInDocument {
|
|
4351
4371
|
data: JsonApiCspDirectiveIn;
|
|
4352
4372
|
}
|
|
@@ -4362,15 +4382,12 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4362
4382
|
* API identifier of an object
|
|
4363
4383
|
*/
|
|
4364
4384
|
id: string;
|
|
4365
|
-
attributes:
|
|
4385
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4366
4386
|
}
|
|
4367
4387
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
4368
4388
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4369
4389
|
};
|
|
4370
4390
|
export type JsonApiCspDirectiveOutTypeEnum = (typeof JsonApiCspDirectiveOutTypeEnum)[keyof typeof JsonApiCspDirectiveOutTypeEnum];
|
|
4371
|
-
export interface JsonApiCspDirectiveOutAttributes {
|
|
4372
|
-
sources: Array<string>;
|
|
4373
|
-
}
|
|
4374
4391
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4375
4392
|
data: JsonApiCspDirectiveOut;
|
|
4376
4393
|
links?: ObjectLinks;
|
|
@@ -4381,7 +4398,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4381
4398
|
export interface JsonApiCspDirectiveOutList {
|
|
4382
4399
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4383
4400
|
links?: ListLinks;
|
|
4384
|
-
meta?:
|
|
4401
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4385
4402
|
}
|
|
4386
4403
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4387
4404
|
/**
|
|
@@ -4392,7 +4409,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4392
4409
|
* API identifier of an object
|
|
4393
4410
|
*/
|
|
4394
4411
|
id: string;
|
|
4395
|
-
attributes:
|
|
4412
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4396
4413
|
links?: ObjectLinks;
|
|
4397
4414
|
}
|
|
4398
4415
|
export declare const JsonApiCspDirectiveOutWithLinksTypeEnum: {
|
|
@@ -4435,12 +4452,19 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4435
4452
|
* API identifier of an object
|
|
4436
4453
|
*/
|
|
4437
4454
|
id: string;
|
|
4438
|
-
attributes:
|
|
4455
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4439
4456
|
}
|
|
4440
4457
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4441
4458
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4442
4459
|
};
|
|
4443
4460
|
export type JsonApiCustomApplicationSettingInTypeEnum = (typeof JsonApiCustomApplicationSettingInTypeEnum)[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
4461
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
4462
|
+
applicationName: string;
|
|
4463
|
+
/**
|
|
4464
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4465
|
+
*/
|
|
4466
|
+
content: object;
|
|
4467
|
+
}
|
|
4444
4468
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
4445
4469
|
data: JsonApiCustomApplicationSettingIn;
|
|
4446
4470
|
}
|
|
@@ -4457,19 +4481,12 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4457
4481
|
*/
|
|
4458
4482
|
id: string;
|
|
4459
4483
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4460
|
-
attributes:
|
|
4484
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4461
4485
|
}
|
|
4462
4486
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4463
4487
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4464
4488
|
};
|
|
4465
4489
|
export type JsonApiCustomApplicationSettingOutTypeEnum = (typeof JsonApiCustomApplicationSettingOutTypeEnum)[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
4466
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
4467
|
-
applicationName: string;
|
|
4468
|
-
/**
|
|
4469
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4470
|
-
*/
|
|
4471
|
-
content: object;
|
|
4472
|
-
}
|
|
4473
4490
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4474
4491
|
data: JsonApiCustomApplicationSettingOut;
|
|
4475
4492
|
links?: ObjectLinks;
|
|
@@ -4480,7 +4497,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4480
4497
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4481
4498
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4482
4499
|
links?: ListLinks;
|
|
4483
|
-
meta?:
|
|
4500
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4484
4501
|
}
|
|
4485
4502
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4486
4503
|
/**
|
|
@@ -4492,7 +4509,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4492
4509
|
*/
|
|
4493
4510
|
id: string;
|
|
4494
4511
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4495
|
-
attributes:
|
|
4512
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4496
4513
|
links?: ObjectLinks;
|
|
4497
4514
|
}
|
|
4498
4515
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4539,7 +4556,7 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4539
4556
|
* API identifier of an object
|
|
4540
4557
|
*/
|
|
4541
4558
|
id?: string;
|
|
4542
|
-
attributes:
|
|
4559
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4543
4560
|
}
|
|
4544
4561
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4545
4562
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4560,12 +4577,22 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4560
4577
|
* API identifier of an object
|
|
4561
4578
|
*/
|
|
4562
4579
|
id: string;
|
|
4563
|
-
attributes?:
|
|
4580
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4564
4581
|
}
|
|
4565
4582
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4566
4583
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4567
4584
|
};
|
|
4568
4585
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
4586
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
4587
|
+
title?: string;
|
|
4588
|
+
description?: string;
|
|
4589
|
+
tags?: Array<string>;
|
|
4590
|
+
areRelationsValid?: boolean;
|
|
4591
|
+
/**
|
|
4592
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4593
|
+
*/
|
|
4594
|
+
content?: object;
|
|
4595
|
+
}
|
|
4569
4596
|
export interface JsonApiDashboardPluginInDocument {
|
|
4570
4597
|
data: JsonApiDashboardPluginIn;
|
|
4571
4598
|
}
|
|
@@ -4626,7 +4653,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4626
4653
|
export interface JsonApiDashboardPluginOutList {
|
|
4627
4654
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4628
4655
|
links?: ListLinks;
|
|
4629
|
-
meta?:
|
|
4656
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4630
4657
|
/**
|
|
4631
4658
|
* Included resources
|
|
4632
4659
|
*/
|
|
@@ -4666,22 +4693,12 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4666
4693
|
* API identifier of an object
|
|
4667
4694
|
*/
|
|
4668
4695
|
id: string;
|
|
4669
|
-
attributes?:
|
|
4696
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4670
4697
|
}
|
|
4671
4698
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4672
4699
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4673
4700
|
};
|
|
4674
4701
|
export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
4675
|
-
export interface JsonApiDashboardPluginPatchAttributes {
|
|
4676
|
-
title?: string;
|
|
4677
|
-
description?: string;
|
|
4678
|
-
tags?: Array<string>;
|
|
4679
|
-
areRelationsValid?: boolean;
|
|
4680
|
-
/**
|
|
4681
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4682
|
-
*/
|
|
4683
|
-
content?: object;
|
|
4684
|
-
}
|
|
4685
4702
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
4686
4703
|
data: JsonApiDashboardPluginPatch;
|
|
4687
4704
|
}
|
|
@@ -4697,7 +4714,7 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4697
4714
|
* API identifier of an object
|
|
4698
4715
|
*/
|
|
4699
4716
|
id?: string;
|
|
4700
|
-
attributes?:
|
|
4717
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4701
4718
|
}
|
|
4702
4719
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4703
4720
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4769,7 +4786,7 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4769
4786
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4770
4787
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4771
4788
|
links?: ListLinks;
|
|
4772
|
-
meta?:
|
|
4789
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4773
4790
|
}
|
|
4774
4791
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4775
4792
|
/**
|
|
@@ -4854,7 +4871,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4854
4871
|
/**
|
|
4855
4872
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4856
4873
|
*/
|
|
4857
|
-
parameters?: Array<
|
|
4874
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4858
4875
|
/**
|
|
4859
4876
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4860
4877
|
*/
|
|
@@ -4894,6 +4911,10 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
|
4894
4911
|
readonly NEVER: "NEVER";
|
|
4895
4912
|
};
|
|
4896
4913
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
|
|
4914
|
+
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
4915
|
+
name: string;
|
|
4916
|
+
value: string;
|
|
4917
|
+
}
|
|
4897
4918
|
export interface JsonApiDataSourceInDocument {
|
|
4898
4919
|
data: JsonApiDataSourceIn;
|
|
4899
4920
|
}
|
|
@@ -4944,11 +4965,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4944
4965
|
/**
|
|
4945
4966
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4946
4967
|
*/
|
|
4947
|
-
parameters?: Array<
|
|
4968
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4948
4969
|
/**
|
|
4949
4970
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
4950
4971
|
*/
|
|
4951
|
-
decodedParameters?: Array<
|
|
4972
|
+
decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4952
4973
|
/**
|
|
4953
4974
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4954
4975
|
*/
|
|
@@ -5010,7 +5031,7 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
5010
5031
|
export interface JsonApiDataSourceOutList {
|
|
5011
5032
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
5012
5033
|
links?: ListLinks;
|
|
5013
|
-
meta?:
|
|
5034
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5014
5035
|
}
|
|
5015
5036
|
export interface JsonApiDataSourceOutMeta {
|
|
5016
5037
|
/**
|
|
@@ -5106,7 +5127,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
5106
5127
|
/**
|
|
5107
5128
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5108
5129
|
*/
|
|
5109
|
-
parameters?: Array<
|
|
5130
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5110
5131
|
/**
|
|
5111
5132
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5112
5133
|
*/
|
|
@@ -5146,10 +5167,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
5146
5167
|
readonly NEVER: "NEVER";
|
|
5147
5168
|
};
|
|
5148
5169
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
5149
|
-
export interface JsonApiDataSourcePatchAttributesParametersInner {
|
|
5150
|
-
name: string;
|
|
5151
|
-
value: string;
|
|
5152
|
-
}
|
|
5153
5170
|
export interface JsonApiDataSourcePatchDocument {
|
|
5154
5171
|
data: JsonApiDataSourcePatch;
|
|
5155
5172
|
}
|
|
@@ -5287,7 +5304,7 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5287
5304
|
export interface JsonApiDatasetOutList {
|
|
5288
5305
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5289
5306
|
links?: ListLinks;
|
|
5290
|
-
meta?:
|
|
5307
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5291
5308
|
/**
|
|
5292
5309
|
* Included resources
|
|
5293
5310
|
*/
|
|
@@ -5362,7 +5379,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5362
5379
|
export interface JsonApiEntitlementOutList {
|
|
5363
5380
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5364
5381
|
links?: ListLinks;
|
|
5365
|
-
meta?:
|
|
5382
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5366
5383
|
}
|
|
5367
5384
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5368
5385
|
/**
|
|
@@ -5392,16 +5409,27 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5392
5409
|
* API identifier of an object
|
|
5393
5410
|
*/
|
|
5394
5411
|
id: string;
|
|
5395
|
-
attributes?:
|
|
5396
|
-
relationships?:
|
|
5412
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5413
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5397
5414
|
}
|
|
5398
5415
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5399
5416
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5400
5417
|
};
|
|
5401
5418
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
5419
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
5420
|
+
title?: string;
|
|
5421
|
+
description?: string;
|
|
5422
|
+
tags?: Array<string>;
|
|
5423
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5424
|
+
areRelationsValid?: boolean;
|
|
5425
|
+
}
|
|
5402
5426
|
export interface JsonApiExportDefinitionInDocument {
|
|
5403
5427
|
data: JsonApiExportDefinitionIn;
|
|
5404
5428
|
}
|
|
5429
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
5430
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5431
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5432
|
+
}
|
|
5405
5433
|
/**
|
|
5406
5434
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
5407
5435
|
*/
|
|
@@ -5465,7 +5493,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5465
5493
|
export interface JsonApiExportDefinitionOutList {
|
|
5466
5494
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5467
5495
|
links?: ListLinks;
|
|
5468
|
-
meta?:
|
|
5496
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5469
5497
|
/**
|
|
5470
5498
|
* Included resources
|
|
5471
5499
|
*/
|
|
@@ -5473,7 +5501,7 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
5473
5501
|
}
|
|
5474
5502
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5475
5503
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5476
|
-
analyticalDashboard?:
|
|
5504
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5477
5505
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5478
5506
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5479
5507
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -5514,27 +5542,16 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5514
5542
|
* API identifier of an object
|
|
5515
5543
|
*/
|
|
5516
5544
|
id: string;
|
|
5517
|
-
attributes?:
|
|
5518
|
-
relationships?:
|
|
5545
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5546
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5519
5547
|
}
|
|
5520
5548
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5521
5549
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5522
5550
|
};
|
|
5523
5551
|
export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
5524
|
-
export interface JsonApiExportDefinitionPatchAttributes {
|
|
5525
|
-
title?: string;
|
|
5526
|
-
description?: string;
|
|
5527
|
-
tags?: Array<string>;
|
|
5528
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5529
|
-
areRelationsValid?: boolean;
|
|
5530
|
-
}
|
|
5531
5552
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
5532
5553
|
data: JsonApiExportDefinitionPatch;
|
|
5533
5554
|
}
|
|
5534
|
-
export interface JsonApiExportDefinitionPatchRelationships {
|
|
5535
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5536
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5537
|
-
}
|
|
5538
5555
|
/**
|
|
5539
5556
|
* JSON:API representation of exportDefinition entity.
|
|
5540
5557
|
*/
|
|
@@ -5547,8 +5564,8 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5547
5564
|
* API identifier of an object
|
|
5548
5565
|
*/
|
|
5549
5566
|
id?: string;
|
|
5550
|
-
attributes?:
|
|
5551
|
-
relationships?:
|
|
5567
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5568
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5552
5569
|
}
|
|
5553
5570
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5554
5571
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5569,7 +5586,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5569
5586
|
* API identifier of an object
|
|
5570
5587
|
*/
|
|
5571
5588
|
id: string;
|
|
5572
|
-
attributes:
|
|
5589
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5573
5590
|
}
|
|
5574
5591
|
export declare const JsonApiExportTemplateInTypeEnum: {
|
|
5575
5592
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
@@ -5590,20 +5607,12 @@ export interface JsonApiExportTemplateOut {
|
|
|
5590
5607
|
* API identifier of an object
|
|
5591
5608
|
*/
|
|
5592
5609
|
id: string;
|
|
5593
|
-
attributes:
|
|
5610
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5594
5611
|
}
|
|
5595
5612
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
5596
5613
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5597
5614
|
};
|
|
5598
5615
|
export type JsonApiExportTemplateOutTypeEnum = (typeof JsonApiExportTemplateOutTypeEnum)[keyof typeof JsonApiExportTemplateOutTypeEnum];
|
|
5599
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5600
|
-
/**
|
|
5601
|
-
* User-facing name of the Slides template.
|
|
5602
|
-
*/
|
|
5603
|
-
name: string;
|
|
5604
|
-
dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
|
|
5605
|
-
widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
|
|
5606
|
-
}
|
|
5607
5616
|
export interface JsonApiExportTemplateOutDocument {
|
|
5608
5617
|
data: JsonApiExportTemplateOut;
|
|
5609
5618
|
links?: ObjectLinks;
|
|
@@ -5614,7 +5623,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5614
5623
|
export interface JsonApiExportTemplateOutList {
|
|
5615
5624
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5616
5625
|
links?: ListLinks;
|
|
5617
|
-
meta?:
|
|
5626
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5618
5627
|
}
|
|
5619
5628
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5620
5629
|
/**
|
|
@@ -5625,7 +5634,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5625
5634
|
* API identifier of an object
|
|
5626
5635
|
*/
|
|
5627
5636
|
id: string;
|
|
5628
|
-
attributes:
|
|
5637
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5629
5638
|
links?: ObjectLinks;
|
|
5630
5639
|
}
|
|
5631
5640
|
export declare const JsonApiExportTemplateOutWithLinksTypeEnum: {
|
|
@@ -5655,63 +5664,71 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5655
5664
|
* User-facing name of the Slides template.
|
|
5656
5665
|
*/
|
|
5657
5666
|
name?: string;
|
|
5658
|
-
dashboardSlidesTemplate?:
|
|
5659
|
-
widgetSlidesTemplate?:
|
|
5667
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5668
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5669
|
+
}
|
|
5670
|
+
export interface JsonApiExportTemplatePatchDocument {
|
|
5671
|
+
data: JsonApiExportTemplatePatch;
|
|
5672
|
+
}
|
|
5673
|
+
/**
|
|
5674
|
+
* JSON:API representation of exportTemplate entity.
|
|
5675
|
+
*/
|
|
5676
|
+
export interface JsonApiExportTemplatePostOptionalId {
|
|
5677
|
+
/**
|
|
5678
|
+
* Object type
|
|
5679
|
+
*/
|
|
5680
|
+
type: JsonApiExportTemplatePostOptionalIdTypeEnum;
|
|
5681
|
+
/**
|
|
5682
|
+
* API identifier of an object
|
|
5683
|
+
*/
|
|
5684
|
+
id?: string;
|
|
5685
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5686
|
+
}
|
|
5687
|
+
export declare const JsonApiExportTemplatePostOptionalIdTypeEnum: {
|
|
5688
|
+
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5689
|
+
};
|
|
5690
|
+
export type JsonApiExportTemplatePostOptionalIdTypeEnum = (typeof JsonApiExportTemplatePostOptionalIdTypeEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdTypeEnum];
|
|
5691
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5692
|
+
/**
|
|
5693
|
+
* User-facing name of the Slides template.
|
|
5694
|
+
*/
|
|
5695
|
+
name: string;
|
|
5696
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5697
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5660
5698
|
}
|
|
5661
5699
|
/**
|
|
5662
5700
|
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5663
5701
|
*/
|
|
5664
|
-
export interface
|
|
5702
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5665
5703
|
/**
|
|
5666
5704
|
* Export types this template applies to.
|
|
5667
5705
|
*/
|
|
5668
|
-
appliedOn: Array<
|
|
5706
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5669
5707
|
coverSlide?: CoverSlideTemplate | null;
|
|
5670
5708
|
introSlide?: IntroSlideTemplate | null;
|
|
5671
5709
|
sectionSlide?: SectionSlideTemplate | null;
|
|
5672
5710
|
contentSlide?: ContentSlideTemplate | null;
|
|
5673
5711
|
}
|
|
5674
|
-
export declare const
|
|
5712
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5675
5713
|
readonly PDF: "PDF";
|
|
5676
5714
|
readonly PPTX: "PPTX";
|
|
5677
5715
|
};
|
|
5678
|
-
export type
|
|
5716
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5679
5717
|
/**
|
|
5680
5718
|
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5681
5719
|
*/
|
|
5682
|
-
export interface
|
|
5720
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5683
5721
|
/**
|
|
5684
5722
|
* Export types this template applies to.
|
|
5685
5723
|
*/
|
|
5686
|
-
appliedOn: Array<
|
|
5724
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5687
5725
|
contentSlide?: ContentSlideTemplate | null;
|
|
5688
5726
|
}
|
|
5689
|
-
export declare const
|
|
5727
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5690
5728
|
readonly PDF: "PDF";
|
|
5691
5729
|
readonly PPTX: "PPTX";
|
|
5692
5730
|
};
|
|
5693
|
-
export type
|
|
5694
|
-
export interface JsonApiExportTemplatePatchDocument {
|
|
5695
|
-
data: JsonApiExportTemplatePatch;
|
|
5696
|
-
}
|
|
5697
|
-
/**
|
|
5698
|
-
* JSON:API representation of exportTemplate entity.
|
|
5699
|
-
*/
|
|
5700
|
-
export interface JsonApiExportTemplatePostOptionalId {
|
|
5701
|
-
/**
|
|
5702
|
-
* Object type
|
|
5703
|
-
*/
|
|
5704
|
-
type: JsonApiExportTemplatePostOptionalIdTypeEnum;
|
|
5705
|
-
/**
|
|
5706
|
-
* API identifier of an object
|
|
5707
|
-
*/
|
|
5708
|
-
id?: string;
|
|
5709
|
-
attributes: JsonApiExportTemplateOutAttributes;
|
|
5710
|
-
}
|
|
5711
|
-
export declare const JsonApiExportTemplatePostOptionalIdTypeEnum: {
|
|
5712
|
-
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5713
|
-
};
|
|
5714
|
-
export type JsonApiExportTemplatePostOptionalIdTypeEnum = (typeof JsonApiExportTemplatePostOptionalIdTypeEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdTypeEnum];
|
|
5731
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5715
5732
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5716
5733
|
data: JsonApiExportTemplatePostOptionalId;
|
|
5717
5734
|
}
|
|
@@ -5779,7 +5796,7 @@ export interface JsonApiFactOutDocument {
|
|
|
5779
5796
|
export interface JsonApiFactOutList {
|
|
5780
5797
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5781
5798
|
links?: ListLinks;
|
|
5782
|
-
meta?:
|
|
5799
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5783
5800
|
/**
|
|
5784
5801
|
* Included resources
|
|
5785
5802
|
*/
|
|
@@ -5818,7 +5835,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5818
5835
|
* API identifier of an object
|
|
5819
5836
|
*/
|
|
5820
5837
|
id: string;
|
|
5821
|
-
attributes:
|
|
5838
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5822
5839
|
}
|
|
5823
5840
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5824
5841
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5851,23 +5868,13 @@ export interface JsonApiFilterContextOut {
|
|
|
5851
5868
|
*/
|
|
5852
5869
|
id: string;
|
|
5853
5870
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5854
|
-
attributes:
|
|
5871
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5855
5872
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5856
5873
|
}
|
|
5857
5874
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
5858
5875
|
readonly FILTER_CONTEXT: "filterContext";
|
|
5859
5876
|
};
|
|
5860
5877
|
export type JsonApiFilterContextOutTypeEnum = (typeof JsonApiFilterContextOutTypeEnum)[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
5861
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
5862
|
-
title?: string;
|
|
5863
|
-
description?: string;
|
|
5864
|
-
tags?: Array<string>;
|
|
5865
|
-
areRelationsValid?: boolean;
|
|
5866
|
-
/**
|
|
5867
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5868
|
-
*/
|
|
5869
|
-
content: object;
|
|
5870
|
-
}
|
|
5871
5878
|
export interface JsonApiFilterContextOutDocument {
|
|
5872
5879
|
data: JsonApiFilterContextOut;
|
|
5873
5880
|
links?: ObjectLinks;
|
|
@@ -5886,7 +5893,7 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5886
5893
|
export interface JsonApiFilterContextOutList {
|
|
5887
5894
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5888
5895
|
links?: ListLinks;
|
|
5889
|
-
meta?:
|
|
5896
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5890
5897
|
/**
|
|
5891
5898
|
* Included resources
|
|
5892
5899
|
*/
|
|
@@ -5907,7 +5914,7 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5907
5914
|
*/
|
|
5908
5915
|
id: string;
|
|
5909
5916
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5910
|
-
attributes:
|
|
5917
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5911
5918
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5912
5919
|
links?: ObjectLinks;
|
|
5913
5920
|
}
|
|
@@ -5948,7 +5955,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5948
5955
|
* API identifier of an object
|
|
5949
5956
|
*/
|
|
5950
5957
|
id?: string;
|
|
5951
|
-
attributes:
|
|
5958
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5952
5959
|
}
|
|
5953
5960
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5954
5961
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5969,16 +5976,37 @@ export interface JsonApiFilterViewIn {
|
|
|
5969
5976
|
* API identifier of an object
|
|
5970
5977
|
*/
|
|
5971
5978
|
id: string;
|
|
5972
|
-
attributes:
|
|
5973
|
-
relationships?:
|
|
5979
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5980
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5974
5981
|
}
|
|
5975
5982
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
5976
5983
|
readonly FILTER_VIEW: "filterView";
|
|
5977
5984
|
};
|
|
5978
5985
|
export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
5986
|
+
export interface JsonApiFilterViewInAttributes {
|
|
5987
|
+
title: string;
|
|
5988
|
+
description?: string;
|
|
5989
|
+
tags?: Array<string>;
|
|
5990
|
+
areRelationsValid?: boolean;
|
|
5991
|
+
/**
|
|
5992
|
+
* Indicator whether the filter view should by applied by default.
|
|
5993
|
+
*/
|
|
5994
|
+
isDefault?: boolean;
|
|
5995
|
+
/**
|
|
5996
|
+
* The respective filter context.
|
|
5997
|
+
*/
|
|
5998
|
+
content: object;
|
|
5999
|
+
}
|
|
5979
6000
|
export interface JsonApiFilterViewInDocument {
|
|
5980
6001
|
data: JsonApiFilterViewIn;
|
|
5981
6002
|
}
|
|
6003
|
+
export interface JsonApiFilterViewInRelationships {
|
|
6004
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
6005
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
6006
|
+
}
|
|
6007
|
+
export interface JsonApiFilterViewInRelationshipsUser {
|
|
6008
|
+
data: JsonApiUserLinkage | null;
|
|
6009
|
+
}
|
|
5982
6010
|
/**
|
|
5983
6011
|
* JSON:API representation of filterView entity.
|
|
5984
6012
|
*/
|
|
@@ -5991,27 +6019,13 @@ export interface JsonApiFilterViewOut {
|
|
|
5991
6019
|
* API identifier of an object
|
|
5992
6020
|
*/
|
|
5993
6021
|
id: string;
|
|
5994
|
-
attributes:
|
|
5995
|
-
relationships?:
|
|
6022
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
6023
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5996
6024
|
}
|
|
5997
6025
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
5998
6026
|
readonly FILTER_VIEW: "filterView";
|
|
5999
6027
|
};
|
|
6000
6028
|
export type JsonApiFilterViewOutTypeEnum = (typeof JsonApiFilterViewOutTypeEnum)[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
6001
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
6002
|
-
title: string;
|
|
6003
|
-
description?: string;
|
|
6004
|
-
tags?: Array<string>;
|
|
6005
|
-
areRelationsValid?: boolean;
|
|
6006
|
-
/**
|
|
6007
|
-
* Indicator whether the filter view should by applied by default.
|
|
6008
|
-
*/
|
|
6009
|
-
isDefault?: boolean;
|
|
6010
|
-
/**
|
|
6011
|
-
* The respective filter context.
|
|
6012
|
-
*/
|
|
6013
|
-
content: object;
|
|
6014
|
-
}
|
|
6015
6029
|
export interface JsonApiFilterViewOutDocument {
|
|
6016
6030
|
data: JsonApiFilterViewOut;
|
|
6017
6031
|
links?: ObjectLinks;
|
|
@@ -6030,7 +6044,7 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
6030
6044
|
export interface JsonApiFilterViewOutList {
|
|
6031
6045
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
6032
6046
|
links?: ListLinks;
|
|
6033
|
-
meta?:
|
|
6047
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6034
6048
|
/**
|
|
6035
6049
|
* Included resources
|
|
6036
6050
|
*/
|
|
@@ -6045,8 +6059,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
6045
6059
|
* API identifier of an object
|
|
6046
6060
|
*/
|
|
6047
6061
|
id: string;
|
|
6048
|
-
attributes:
|
|
6049
|
-
relationships?:
|
|
6062
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
6063
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6050
6064
|
links?: ObjectLinks;
|
|
6051
6065
|
}
|
|
6052
6066
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6066,7 +6080,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6066
6080
|
*/
|
|
6067
6081
|
id: string;
|
|
6068
6082
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6069
|
-
relationships?:
|
|
6083
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6070
6084
|
}
|
|
6071
6085
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6072
6086
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6089,13 +6103,6 @@ export interface JsonApiFilterViewPatchAttributes {
|
|
|
6089
6103
|
export interface JsonApiFilterViewPatchDocument {
|
|
6090
6104
|
data: JsonApiFilterViewPatch;
|
|
6091
6105
|
}
|
|
6092
|
-
export interface JsonApiFilterViewPatchRelationships {
|
|
6093
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6094
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
6095
|
-
}
|
|
6096
|
-
export interface JsonApiFilterViewPatchRelationshipsUser {
|
|
6097
|
-
data: JsonApiUserLinkage | null;
|
|
6098
|
-
}
|
|
6099
6106
|
/**
|
|
6100
6107
|
* JSON:API representation of identityProvider entity.
|
|
6101
6108
|
*/
|
|
@@ -6108,12 +6115,69 @@ export interface JsonApiIdentityProviderIn {
|
|
|
6108
6115
|
* API identifier of an object
|
|
6109
6116
|
*/
|
|
6110
6117
|
id: string;
|
|
6111
|
-
attributes?:
|
|
6118
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
6112
6119
|
}
|
|
6113
6120
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
6114
6121
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6115
6122
|
};
|
|
6116
6123
|
export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
6124
|
+
export interface JsonApiIdentityProviderInAttributes {
|
|
6125
|
+
/**
|
|
6126
|
+
* 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.
|
|
6127
|
+
*/
|
|
6128
|
+
identifiers?: Array<string>;
|
|
6129
|
+
/**
|
|
6130
|
+
* 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.
|
|
6131
|
+
*/
|
|
6132
|
+
customClaimMapping?: {
|
|
6133
|
+
[key: string]: string;
|
|
6134
|
+
};
|
|
6135
|
+
/**
|
|
6136
|
+
* 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.
|
|
6137
|
+
*/
|
|
6138
|
+
samlMetadata?: string;
|
|
6139
|
+
/**
|
|
6140
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6141
|
+
*/
|
|
6142
|
+
oauthClientId?: string;
|
|
6143
|
+
/**
|
|
6144
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6145
|
+
*/
|
|
6146
|
+
oauthClientSecret?: string;
|
|
6147
|
+
/**
|
|
6148
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6149
|
+
*/
|
|
6150
|
+
oauthIssuerLocation?: string;
|
|
6151
|
+
/**
|
|
6152
|
+
* 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.
|
|
6153
|
+
*/
|
|
6154
|
+
oauthIssuerId?: string;
|
|
6155
|
+
/**
|
|
6156
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6157
|
+
*/
|
|
6158
|
+
oauthSubjectIdClaim?: string;
|
|
6159
|
+
/**
|
|
6160
|
+
* 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.
|
|
6161
|
+
*/
|
|
6162
|
+
oauthCustomAuthAttributes?: {
|
|
6163
|
+
[key: string]: string;
|
|
6164
|
+
};
|
|
6165
|
+
/**
|
|
6166
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6167
|
+
*/
|
|
6168
|
+
oauthCustomScopes?: Array<string> | null;
|
|
6169
|
+
/**
|
|
6170
|
+
* 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.
|
|
6171
|
+
*/
|
|
6172
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
6173
|
+
}
|
|
6174
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
6175
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6176
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
6177
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
6178
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6179
|
+
};
|
|
6180
|
+
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
6117
6181
|
export interface JsonApiIdentityProviderInDocument {
|
|
6118
6182
|
data: JsonApiIdentityProviderIn;
|
|
6119
6183
|
}
|
|
@@ -6205,7 +6269,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6205
6269
|
export interface JsonApiIdentityProviderOutList {
|
|
6206
6270
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6207
6271
|
links?: ListLinks;
|
|
6208
|
-
meta?:
|
|
6272
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6209
6273
|
}
|
|
6210
6274
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6211
6275
|
/**
|
|
@@ -6235,69 +6299,12 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
6235
6299
|
* API identifier of an object
|
|
6236
6300
|
*/
|
|
6237
6301
|
id: string;
|
|
6238
|
-
attributes?:
|
|
6302
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
6239
6303
|
}
|
|
6240
6304
|
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
6241
6305
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6242
6306
|
};
|
|
6243
6307
|
export type JsonApiIdentityProviderPatchTypeEnum = (typeof JsonApiIdentityProviderPatchTypeEnum)[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
|
|
6244
|
-
export interface JsonApiIdentityProviderPatchAttributes {
|
|
6245
|
-
/**
|
|
6246
|
-
* 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.
|
|
6247
|
-
*/
|
|
6248
|
-
identifiers?: Array<string>;
|
|
6249
|
-
/**
|
|
6250
|
-
* 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.
|
|
6251
|
-
*/
|
|
6252
|
-
customClaimMapping?: {
|
|
6253
|
-
[key: string]: string;
|
|
6254
|
-
};
|
|
6255
|
-
/**
|
|
6256
|
-
* 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.
|
|
6257
|
-
*/
|
|
6258
|
-
samlMetadata?: string;
|
|
6259
|
-
/**
|
|
6260
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6261
|
-
*/
|
|
6262
|
-
oauthClientId?: string;
|
|
6263
|
-
/**
|
|
6264
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6265
|
-
*/
|
|
6266
|
-
oauthClientSecret?: string;
|
|
6267
|
-
/**
|
|
6268
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6269
|
-
*/
|
|
6270
|
-
oauthIssuerLocation?: string;
|
|
6271
|
-
/**
|
|
6272
|
-
* 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.
|
|
6273
|
-
*/
|
|
6274
|
-
oauthIssuerId?: string;
|
|
6275
|
-
/**
|
|
6276
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6277
|
-
*/
|
|
6278
|
-
oauthSubjectIdClaim?: string;
|
|
6279
|
-
/**
|
|
6280
|
-
* 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.
|
|
6281
|
-
*/
|
|
6282
|
-
oauthCustomAuthAttributes?: {
|
|
6283
|
-
[key: string]: string;
|
|
6284
|
-
};
|
|
6285
|
-
/**
|
|
6286
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6287
|
-
*/
|
|
6288
|
-
oauthCustomScopes?: Array<string> | null;
|
|
6289
|
-
/**
|
|
6290
|
-
* 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.
|
|
6291
|
-
*/
|
|
6292
|
-
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
6293
|
-
}
|
|
6294
|
-
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
6295
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6296
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
6297
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
6298
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6299
|
-
};
|
|
6300
|
-
export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
6301
6308
|
export interface JsonApiIdentityProviderPatchDocument {
|
|
6302
6309
|
data: JsonApiIdentityProviderPatch;
|
|
6303
6310
|
}
|
|
@@ -6313,12 +6320,15 @@ export interface JsonApiJwkIn {
|
|
|
6313
6320
|
* API identifier of an object
|
|
6314
6321
|
*/
|
|
6315
6322
|
id: string;
|
|
6316
|
-
attributes?:
|
|
6323
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6317
6324
|
}
|
|
6318
6325
|
export declare const JsonApiJwkInTypeEnum: {
|
|
6319
6326
|
readonly JWK: "jwk";
|
|
6320
6327
|
};
|
|
6321
6328
|
export type JsonApiJwkInTypeEnum = (typeof JsonApiJwkInTypeEnum)[keyof typeof JsonApiJwkInTypeEnum];
|
|
6329
|
+
export interface JsonApiJwkInAttributes {
|
|
6330
|
+
content?: RsaSpecification;
|
|
6331
|
+
}
|
|
6322
6332
|
export interface JsonApiJwkInDocument {
|
|
6323
6333
|
data: JsonApiJwkIn;
|
|
6324
6334
|
}
|
|
@@ -6334,7 +6344,7 @@ export interface JsonApiJwkOut {
|
|
|
6334
6344
|
* API identifier of an object
|
|
6335
6345
|
*/
|
|
6336
6346
|
id: string;
|
|
6337
|
-
attributes?:
|
|
6347
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6338
6348
|
}
|
|
6339
6349
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
6340
6350
|
readonly JWK: "jwk";
|
|
@@ -6350,7 +6360,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6350
6360
|
export interface JsonApiJwkOutList {
|
|
6351
6361
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6352
6362
|
links?: ListLinks;
|
|
6353
|
-
meta?:
|
|
6363
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6354
6364
|
}
|
|
6355
6365
|
export interface JsonApiJwkOutWithLinks {
|
|
6356
6366
|
/**
|
|
@@ -6361,7 +6371,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
6361
6371
|
* API identifier of an object
|
|
6362
6372
|
*/
|
|
6363
6373
|
id: string;
|
|
6364
|
-
attributes?:
|
|
6374
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6365
6375
|
links?: ObjectLinks;
|
|
6366
6376
|
}
|
|
6367
6377
|
export declare const JsonApiJwkOutWithLinksTypeEnum: {
|
|
@@ -6380,15 +6390,12 @@ export interface JsonApiJwkPatch {
|
|
|
6380
6390
|
* API identifier of an object
|
|
6381
6391
|
*/
|
|
6382
6392
|
id: string;
|
|
6383
|
-
attributes?:
|
|
6393
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6384
6394
|
}
|
|
6385
6395
|
export declare const JsonApiJwkPatchTypeEnum: {
|
|
6386
6396
|
readonly JWK: "jwk";
|
|
6387
6397
|
};
|
|
6388
6398
|
export type JsonApiJwkPatchTypeEnum = (typeof JsonApiJwkPatchTypeEnum)[keyof typeof JsonApiJwkPatchTypeEnum];
|
|
6389
|
-
export interface JsonApiJwkPatchAttributes {
|
|
6390
|
-
content?: RsaSpecification;
|
|
6391
|
-
}
|
|
6392
6399
|
export interface JsonApiJwkPatchDocument {
|
|
6393
6400
|
data: JsonApiJwkPatch;
|
|
6394
6401
|
}
|
|
@@ -6475,7 +6482,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6475
6482
|
export interface JsonApiLabelOutList {
|
|
6476
6483
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6477
6484
|
links?: ListLinks;
|
|
6478
|
-
meta?:
|
|
6485
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6479
6486
|
/**
|
|
6480
6487
|
* Included resources
|
|
6481
6488
|
*/
|
|
@@ -6612,7 +6619,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6612
6619
|
export interface JsonApiLlmEndpointOutList {
|
|
6613
6620
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6614
6621
|
links?: ListLinks;
|
|
6615
|
-
meta?:
|
|
6622
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6616
6623
|
}
|
|
6617
6624
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6618
6625
|
/**
|
|
@@ -6793,7 +6800,7 @@ export interface JsonApiMemoryItemOutDocument {
|
|
|
6793
6800
|
export interface JsonApiMemoryItemOutList {
|
|
6794
6801
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
6795
6802
|
links?: ListLinks;
|
|
6796
|
-
meta?:
|
|
6803
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6797
6804
|
/**
|
|
6798
6805
|
* Included resources
|
|
6799
6806
|
*/
|
|
@@ -6978,7 +6985,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6978
6985
|
export interface JsonApiMetricOutList {
|
|
6979
6986
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6980
6987
|
links?: ListLinks;
|
|
6981
|
-
meta?:
|
|
6988
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6982
6989
|
/**
|
|
6983
6990
|
* Included resources
|
|
6984
6991
|
*/
|
|
@@ -7102,7 +7109,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
7102
7109
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
7103
7110
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
7104
7111
|
links?: ListLinks;
|
|
7105
|
-
meta?:
|
|
7112
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7106
7113
|
}
|
|
7107
7114
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
7108
7115
|
/**
|
|
@@ -7132,7 +7139,7 @@ export interface JsonApiNotificationChannelIn {
|
|
|
7132
7139
|
* API identifier of an object
|
|
7133
7140
|
*/
|
|
7134
7141
|
id: string;
|
|
7135
|
-
attributes?:
|
|
7142
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7136
7143
|
}
|
|
7137
7144
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
7138
7145
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -7173,7 +7180,7 @@ export type JsonApiNotificationChannelOutTypeEnum = (typeof JsonApiNotificationC
|
|
|
7173
7180
|
export interface JsonApiNotificationChannelOutAttributes {
|
|
7174
7181
|
name?: string | null;
|
|
7175
7182
|
description?: string | null;
|
|
7176
|
-
destination?:
|
|
7183
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
7177
7184
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
7178
7185
|
/**
|
|
7179
7186
|
* 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}
|
|
@@ -7230,7 +7237,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
7230
7237
|
export interface JsonApiNotificationChannelOutList {
|
|
7231
7238
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
7232
7239
|
links?: ListLinks;
|
|
7233
|
-
meta?:
|
|
7240
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7234
7241
|
}
|
|
7235
7242
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
7236
7243
|
/**
|
|
@@ -7260,16 +7267,37 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
7260
7267
|
* API identifier of an object
|
|
7261
7268
|
*/
|
|
7262
7269
|
id: string;
|
|
7263
|
-
attributes?:
|
|
7270
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7264
7271
|
}
|
|
7265
7272
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
7266
7273
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7267
7274
|
};
|
|
7268
7275
|
export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
7269
|
-
export interface
|
|
7276
|
+
export interface JsonApiNotificationChannelPatchDocument {
|
|
7277
|
+
data: JsonApiNotificationChannelPatch;
|
|
7278
|
+
}
|
|
7279
|
+
/**
|
|
7280
|
+
* JSON:API representation of notificationChannel entity.
|
|
7281
|
+
*/
|
|
7282
|
+
export interface JsonApiNotificationChannelPostOptionalId {
|
|
7283
|
+
/**
|
|
7284
|
+
* Object type
|
|
7285
|
+
*/
|
|
7286
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
7287
|
+
/**
|
|
7288
|
+
* API identifier of an object
|
|
7289
|
+
*/
|
|
7290
|
+
id?: string;
|
|
7291
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7292
|
+
}
|
|
7293
|
+
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7294
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7295
|
+
};
|
|
7296
|
+
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7297
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
7270
7298
|
name?: string | null;
|
|
7271
7299
|
description?: string | null;
|
|
7272
|
-
destination?:
|
|
7300
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
7273
7301
|
/**
|
|
7274
7302
|
* 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}
|
|
7275
7303
|
*/
|
|
@@ -7277,7 +7305,7 @@ export interface JsonApiNotificationChannelPatchAttributes {
|
|
|
7277
7305
|
/**
|
|
7278
7306
|
* 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
|
|
7279
7307
|
*/
|
|
7280
|
-
dashboardLinkVisibility?:
|
|
7308
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
7281
7309
|
/**
|
|
7282
7310
|
* 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}}
|
|
7283
7311
|
*/
|
|
@@ -7285,55 +7313,34 @@ export interface JsonApiNotificationChannelPatchAttributes {
|
|
|
7285
7313
|
/**
|
|
7286
7314
|
* 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
|
|
7287
7315
|
*/
|
|
7288
|
-
allowedRecipients?:
|
|
7316
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
7289
7317
|
/**
|
|
7290
7318
|
* 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
|
|
7291
7319
|
*/
|
|
7292
|
-
inPlatformNotification?:
|
|
7320
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
7293
7321
|
}
|
|
7294
|
-
export declare const
|
|
7322
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
7295
7323
|
readonly HIDDEN: "HIDDEN";
|
|
7296
7324
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7297
7325
|
readonly ALL: "ALL";
|
|
7298
7326
|
};
|
|
7299
|
-
export type
|
|
7300
|
-
export declare const
|
|
7327
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
7328
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
7301
7329
|
readonly CREATOR: "CREATOR";
|
|
7302
7330
|
readonly INTERNAL: "INTERNAL";
|
|
7303
7331
|
readonly EXTERNAL: "EXTERNAL";
|
|
7304
7332
|
};
|
|
7305
|
-
export type
|
|
7306
|
-
export declare const
|
|
7333
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
7334
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
7307
7335
|
readonly DISABLED: "DISABLED";
|
|
7308
7336
|
readonly ENABLED: "ENABLED";
|
|
7309
7337
|
};
|
|
7310
|
-
export type
|
|
7338
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
7311
7339
|
/**
|
|
7312
|
-
* @type
|
|
7340
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
7313
7341
|
* The destination where the notifications are to be sent.
|
|
7314
7342
|
*/
|
|
7315
|
-
export type
|
|
7316
|
-
export interface JsonApiNotificationChannelPatchDocument {
|
|
7317
|
-
data: JsonApiNotificationChannelPatch;
|
|
7318
|
-
}
|
|
7319
|
-
/**
|
|
7320
|
-
* JSON:API representation of notificationChannel entity.
|
|
7321
|
-
*/
|
|
7322
|
-
export interface JsonApiNotificationChannelPostOptionalId {
|
|
7323
|
-
/**
|
|
7324
|
-
* Object type
|
|
7325
|
-
*/
|
|
7326
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
7327
|
-
/**
|
|
7328
|
-
* API identifier of an object
|
|
7329
|
-
*/
|
|
7330
|
-
id?: string;
|
|
7331
|
-
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
7332
|
-
}
|
|
7333
|
-
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7334
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7335
|
-
};
|
|
7336
|
-
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7343
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
7337
7344
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
7338
7345
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
7339
7346
|
}
|
|
@@ -7427,8 +7434,8 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7427
7434
|
};
|
|
7428
7435
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7429
7436
|
export interface JsonApiOrganizationOutRelationships {
|
|
7430
|
-
bootstrapUser?:
|
|
7431
|
-
bootstrapUserGroup?:
|
|
7437
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
7438
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7432
7439
|
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7433
7440
|
}
|
|
7434
7441
|
/**
|
|
@@ -7485,12 +7492,55 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7485
7492
|
* API identifier of an object
|
|
7486
7493
|
*/
|
|
7487
7494
|
id: string;
|
|
7488
|
-
attributes?:
|
|
7495
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7489
7496
|
}
|
|
7490
7497
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7491
7498
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7492
7499
|
};
|
|
7493
7500
|
export type JsonApiOrganizationSettingInTypeEnum = (typeof JsonApiOrganizationSettingInTypeEnum)[keyof typeof JsonApiOrganizationSettingInTypeEnum];
|
|
7501
|
+
export interface JsonApiOrganizationSettingInAttributes {
|
|
7502
|
+
/**
|
|
7503
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7504
|
+
*/
|
|
7505
|
+
content?: object;
|
|
7506
|
+
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7507
|
+
}
|
|
7508
|
+
export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
7509
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
7510
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7511
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7512
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7513
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7514
|
+
readonly LOCALE: "LOCALE";
|
|
7515
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7516
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7517
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7518
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7519
|
+
readonly WEEK_START: "WEEK_START";
|
|
7520
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7521
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7522
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7523
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7524
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7525
|
+
readonly ALERT: "ALERT";
|
|
7526
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
7527
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7528
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7529
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7530
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7531
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7532
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7533
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7534
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7535
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7536
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7537
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7538
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7539
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7540
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7541
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
7542
|
+
};
|
|
7543
|
+
export type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
7494
7544
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7495
7545
|
data: JsonApiOrganizationSettingIn;
|
|
7496
7546
|
}
|
|
@@ -7506,7 +7556,7 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7506
7556
|
* API identifier of an object
|
|
7507
7557
|
*/
|
|
7508
7558
|
id: string;
|
|
7509
|
-
attributes?:
|
|
7559
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7510
7560
|
}
|
|
7511
7561
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7512
7562
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7522,7 +7572,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7522
7572
|
export interface JsonApiOrganizationSettingOutList {
|
|
7523
7573
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7524
7574
|
links?: ListLinks;
|
|
7525
|
-
meta?:
|
|
7575
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7526
7576
|
}
|
|
7527
7577
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7528
7578
|
/**
|
|
@@ -7533,7 +7583,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7533
7583
|
* API identifier of an object
|
|
7534
7584
|
*/
|
|
7535
7585
|
id: string;
|
|
7536
|
-
attributes?:
|
|
7586
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7537
7587
|
links?: ObjectLinks;
|
|
7538
7588
|
}
|
|
7539
7589
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7552,55 +7602,12 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7552
7602
|
* API identifier of an object
|
|
7553
7603
|
*/
|
|
7554
7604
|
id: string;
|
|
7555
|
-
attributes?:
|
|
7605
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7556
7606
|
}
|
|
7557
7607
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7558
7608
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7559
7609
|
};
|
|
7560
7610
|
export type JsonApiOrganizationSettingPatchTypeEnum = (typeof JsonApiOrganizationSettingPatchTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchTypeEnum];
|
|
7561
|
-
export interface JsonApiOrganizationSettingPatchAttributes {
|
|
7562
|
-
/**
|
|
7563
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7564
|
-
*/
|
|
7565
|
-
content?: object;
|
|
7566
|
-
type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
|
|
7567
|
-
}
|
|
7568
|
-
export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
|
|
7569
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
7570
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7571
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7572
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7573
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7574
|
-
readonly LOCALE: "LOCALE";
|
|
7575
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7576
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7577
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7578
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7579
|
-
readonly WEEK_START: "WEEK_START";
|
|
7580
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7581
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7582
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7583
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7584
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7585
|
-
readonly ALERT: "ALERT";
|
|
7586
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
7587
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7588
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7589
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7590
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7591
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7592
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7593
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7594
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7595
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7596
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7597
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7598
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7599
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7600
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7601
|
-
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
7602
|
-
};
|
|
7603
|
-
export type JsonApiOrganizationSettingPatchAttributesTypeEnum = (typeof JsonApiOrganizationSettingPatchAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
|
|
7604
7611
|
export interface JsonApiOrganizationSettingPatchDocument {
|
|
7605
7612
|
data: JsonApiOrganizationSettingPatch;
|
|
7606
7613
|
}
|
|
@@ -7616,7 +7623,7 @@ export interface JsonApiThemeIn {
|
|
|
7616
7623
|
* API identifier of an object
|
|
7617
7624
|
*/
|
|
7618
7625
|
id: string;
|
|
7619
|
-
attributes:
|
|
7626
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7620
7627
|
}
|
|
7621
7628
|
export declare const JsonApiThemeInTypeEnum: {
|
|
7622
7629
|
readonly THEME: "theme";
|
|
@@ -7637,7 +7644,7 @@ export interface JsonApiThemeOut {
|
|
|
7637
7644
|
* API identifier of an object
|
|
7638
7645
|
*/
|
|
7639
7646
|
id: string;
|
|
7640
|
-
attributes:
|
|
7647
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7641
7648
|
}
|
|
7642
7649
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
7643
7650
|
readonly THEME: "theme";
|
|
@@ -7653,7 +7660,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7653
7660
|
export interface JsonApiThemeOutList {
|
|
7654
7661
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7655
7662
|
links?: ListLinks;
|
|
7656
|
-
meta?:
|
|
7663
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7657
7664
|
}
|
|
7658
7665
|
export interface JsonApiThemeOutWithLinks {
|
|
7659
7666
|
/**
|
|
@@ -7664,7 +7671,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
7664
7671
|
* API identifier of an object
|
|
7665
7672
|
*/
|
|
7666
7673
|
id: string;
|
|
7667
|
-
attributes:
|
|
7674
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7668
7675
|
links?: ObjectLinks;
|
|
7669
7676
|
}
|
|
7670
7677
|
export declare const JsonApiThemeOutWithLinksTypeEnum: {
|
|
@@ -7704,16 +7711,30 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7704
7711
|
* API identifier of an object
|
|
7705
7712
|
*/
|
|
7706
7713
|
id: string;
|
|
7707
|
-
attributes:
|
|
7708
|
-
relationships?:
|
|
7714
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7715
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7709
7716
|
}
|
|
7710
7717
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7711
7718
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7712
7719
|
};
|
|
7713
7720
|
export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTypeEnum)[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
7721
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
7722
|
+
title?: string;
|
|
7723
|
+
description?: string;
|
|
7724
|
+
tags?: Array<string>;
|
|
7725
|
+
areRelationsValid?: boolean;
|
|
7726
|
+
maql: string;
|
|
7727
|
+
}
|
|
7714
7728
|
export interface JsonApiUserDataFilterInDocument {
|
|
7715
7729
|
data: JsonApiUserDataFilterIn;
|
|
7716
7730
|
}
|
|
7731
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
7732
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
7733
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7734
|
+
}
|
|
7735
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
7736
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7737
|
+
}
|
|
7717
7738
|
/**
|
|
7718
7739
|
* JSON:API representation of userDataFilter entity.
|
|
7719
7740
|
*/
|
|
@@ -7727,20 +7748,13 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7727
7748
|
*/
|
|
7728
7749
|
id: string;
|
|
7729
7750
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7730
|
-
attributes:
|
|
7751
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7731
7752
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7732
7753
|
}
|
|
7733
7754
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
7734
7755
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7735
7756
|
};
|
|
7736
7757
|
export type JsonApiUserDataFilterOutTypeEnum = (typeof JsonApiUserDataFilterOutTypeEnum)[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
7737
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
7738
|
-
title?: string;
|
|
7739
|
-
description?: string;
|
|
7740
|
-
tags?: Array<string>;
|
|
7741
|
-
areRelationsValid?: boolean;
|
|
7742
|
-
maql: string;
|
|
7743
|
-
}
|
|
7744
7758
|
export interface JsonApiUserDataFilterOutDocument {
|
|
7745
7759
|
data: JsonApiUserDataFilterOut;
|
|
7746
7760
|
links?: ObjectLinks;
|
|
@@ -7759,15 +7773,15 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7759
7773
|
export interface JsonApiUserDataFilterOutList {
|
|
7760
7774
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7761
7775
|
links?: ListLinks;
|
|
7762
|
-
meta?:
|
|
7776
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7763
7777
|
/**
|
|
7764
7778
|
* Included resources
|
|
7765
7779
|
*/
|
|
7766
7780
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7767
7781
|
}
|
|
7768
7782
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7769
|
-
user?:
|
|
7770
|
-
userGroup?:
|
|
7783
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
7784
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7771
7785
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7772
7786
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7773
7787
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -7784,7 +7798,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7784
7798
|
*/
|
|
7785
7799
|
id: string;
|
|
7786
7800
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7787
|
-
attributes:
|
|
7801
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7788
7802
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7789
7803
|
links?: ObjectLinks;
|
|
7790
7804
|
}
|
|
@@ -7805,7 +7819,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7805
7819
|
*/
|
|
7806
7820
|
id: string;
|
|
7807
7821
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7808
|
-
relationships?:
|
|
7822
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7809
7823
|
}
|
|
7810
7824
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7811
7825
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7821,13 +7835,6 @@ export interface JsonApiUserDataFilterPatchAttributes {
|
|
|
7821
7835
|
export interface JsonApiUserDataFilterPatchDocument {
|
|
7822
7836
|
data: JsonApiUserDataFilterPatch;
|
|
7823
7837
|
}
|
|
7824
|
-
export interface JsonApiUserDataFilterPatchRelationships {
|
|
7825
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
7826
|
-
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
7827
|
-
}
|
|
7828
|
-
export interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
7829
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7830
|
-
}
|
|
7831
7838
|
/**
|
|
7832
7839
|
* JSON:API representation of userDataFilter entity.
|
|
7833
7840
|
*/
|
|
@@ -7840,8 +7847,8 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7840
7847
|
* API identifier of an object
|
|
7841
7848
|
*/
|
|
7842
7849
|
id?: string;
|
|
7843
|
-
attributes:
|
|
7844
|
-
relationships?:
|
|
7850
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7851
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7845
7852
|
}
|
|
7846
7853
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7847
7854
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7862,16 +7869,28 @@ export interface JsonApiUserGroupIn {
|
|
|
7862
7869
|
* API identifier of an object
|
|
7863
7870
|
*/
|
|
7864
7871
|
id: string;
|
|
7865
|
-
attributes?:
|
|
7866
|
-
relationships?:
|
|
7872
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7873
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7867
7874
|
}
|
|
7868
7875
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
7869
7876
|
readonly USER_GROUP: "userGroup";
|
|
7870
7877
|
};
|
|
7871
7878
|
export type JsonApiUserGroupInTypeEnum = (typeof JsonApiUserGroupInTypeEnum)[keyof typeof JsonApiUserGroupInTypeEnum];
|
|
7879
|
+
export interface JsonApiUserGroupInAttributes {
|
|
7880
|
+
name?: string;
|
|
7881
|
+
}
|
|
7872
7882
|
export interface JsonApiUserGroupInDocument {
|
|
7873
7883
|
data: JsonApiUserGroupIn;
|
|
7874
7884
|
}
|
|
7885
|
+
export interface JsonApiUserGroupInRelationships {
|
|
7886
|
+
parents?: JsonApiUserGroupInRelationshipsParents;
|
|
7887
|
+
}
|
|
7888
|
+
export interface JsonApiUserGroupInRelationshipsParents {
|
|
7889
|
+
/**
|
|
7890
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7891
|
+
*/
|
|
7892
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
7893
|
+
}
|
|
7875
7894
|
/**
|
|
7876
7895
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7877
7896
|
*/
|
|
@@ -7895,8 +7914,8 @@ export interface JsonApiUserGroupOut {
|
|
|
7895
7914
|
* API identifier of an object
|
|
7896
7915
|
*/
|
|
7897
7916
|
id: string;
|
|
7898
|
-
attributes?:
|
|
7899
|
-
relationships?:
|
|
7917
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7918
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7900
7919
|
}
|
|
7901
7920
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
7902
7921
|
readonly USER_GROUP: "userGroup";
|
|
@@ -7916,7 +7935,7 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7916
7935
|
export interface JsonApiUserGroupOutList {
|
|
7917
7936
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7918
7937
|
links?: ListLinks;
|
|
7919
|
-
meta?:
|
|
7938
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7920
7939
|
/**
|
|
7921
7940
|
* Included resources
|
|
7922
7941
|
*/
|
|
@@ -7931,8 +7950,8 @@ export interface JsonApiUserGroupOutWithLinks {
|
|
|
7931
7950
|
* API identifier of an object
|
|
7932
7951
|
*/
|
|
7933
7952
|
id: string;
|
|
7934
|
-
attributes?:
|
|
7935
|
-
relationships?:
|
|
7953
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7954
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7936
7955
|
links?: ObjectLinks;
|
|
7937
7956
|
}
|
|
7938
7957
|
export declare const JsonApiUserGroupOutWithLinksTypeEnum: {
|
|
@@ -7951,28 +7970,16 @@ export interface JsonApiUserGroupPatch {
|
|
|
7951
7970
|
* API identifier of an object
|
|
7952
7971
|
*/
|
|
7953
7972
|
id: string;
|
|
7954
|
-
attributes?:
|
|
7955
|
-
relationships?:
|
|
7973
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7974
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7956
7975
|
}
|
|
7957
7976
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
7958
7977
|
readonly USER_GROUP: "userGroup";
|
|
7959
7978
|
};
|
|
7960
7979
|
export type JsonApiUserGroupPatchTypeEnum = (typeof JsonApiUserGroupPatchTypeEnum)[keyof typeof JsonApiUserGroupPatchTypeEnum];
|
|
7961
|
-
export interface JsonApiUserGroupPatchAttributes {
|
|
7962
|
-
name?: string;
|
|
7963
|
-
}
|
|
7964
7980
|
export interface JsonApiUserGroupPatchDocument {
|
|
7965
7981
|
data: JsonApiUserGroupPatch;
|
|
7966
7982
|
}
|
|
7967
|
-
export interface JsonApiUserGroupPatchRelationships {
|
|
7968
|
-
parents?: JsonApiUserGroupPatchRelationshipsParents;
|
|
7969
|
-
}
|
|
7970
|
-
export interface JsonApiUserGroupPatchRelationshipsParents {
|
|
7971
|
-
/**
|
|
7972
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7973
|
-
*/
|
|
7974
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
7975
|
-
}
|
|
7976
7983
|
/**
|
|
7977
7984
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7978
7985
|
*/
|
|
@@ -8017,7 +8024,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
8017
8024
|
export interface JsonApiUserIdentifierOutList {
|
|
8018
8025
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
8019
8026
|
links?: ListLinks;
|
|
8020
|
-
meta?:
|
|
8027
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8021
8028
|
}
|
|
8022
8029
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
8023
8030
|
/**
|
|
@@ -8047,16 +8054,25 @@ export interface JsonApiUserIn {
|
|
|
8047
8054
|
* API identifier of an object
|
|
8048
8055
|
*/
|
|
8049
8056
|
id: string;
|
|
8050
|
-
attributes?:
|
|
8051
|
-
relationships?:
|
|
8057
|
+
attributes?: JsonApiUserInAttributes;
|
|
8058
|
+
relationships?: JsonApiUserInRelationships;
|
|
8052
8059
|
}
|
|
8053
8060
|
export declare const JsonApiUserInTypeEnum: {
|
|
8054
8061
|
readonly USER: "user";
|
|
8055
8062
|
};
|
|
8056
8063
|
export type JsonApiUserInTypeEnum = (typeof JsonApiUserInTypeEnum)[keyof typeof JsonApiUserInTypeEnum];
|
|
8064
|
+
export interface JsonApiUserInAttributes {
|
|
8065
|
+
authenticationId?: string;
|
|
8066
|
+
firstname?: string;
|
|
8067
|
+
lastname?: string;
|
|
8068
|
+
email?: string;
|
|
8069
|
+
}
|
|
8057
8070
|
export interface JsonApiUserInDocument {
|
|
8058
8071
|
data: JsonApiUserIn;
|
|
8059
8072
|
}
|
|
8073
|
+
export interface JsonApiUserInRelationships {
|
|
8074
|
+
userGroups?: JsonApiUserGroupInRelationshipsParents;
|
|
8075
|
+
}
|
|
8060
8076
|
/**
|
|
8061
8077
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8062
8078
|
*/
|
|
@@ -8080,8 +8096,8 @@ export interface JsonApiUserOut {
|
|
|
8080
8096
|
* API identifier of an object
|
|
8081
8097
|
*/
|
|
8082
8098
|
id: string;
|
|
8083
|
-
attributes?:
|
|
8084
|
-
relationships?:
|
|
8099
|
+
attributes?: JsonApiUserInAttributes;
|
|
8100
|
+
relationships?: JsonApiUserInRelationships;
|
|
8085
8101
|
}
|
|
8086
8102
|
export declare const JsonApiUserOutTypeEnum: {
|
|
8087
8103
|
readonly USER: "user";
|
|
@@ -8101,7 +8117,7 @@ export interface JsonApiUserOutDocument {
|
|
|
8101
8117
|
export interface JsonApiUserOutList {
|
|
8102
8118
|
data: Array<JsonApiUserOutWithLinks>;
|
|
8103
8119
|
links?: ListLinks;
|
|
8104
|
-
meta?:
|
|
8120
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8105
8121
|
/**
|
|
8106
8122
|
* Included resources
|
|
8107
8123
|
*/
|
|
@@ -8116,8 +8132,8 @@ export interface JsonApiUserOutWithLinks {
|
|
|
8116
8132
|
* API identifier of an object
|
|
8117
8133
|
*/
|
|
8118
8134
|
id: string;
|
|
8119
|
-
attributes?:
|
|
8120
|
-
relationships?:
|
|
8135
|
+
attributes?: JsonApiUserInAttributes;
|
|
8136
|
+
relationships?: JsonApiUserInRelationships;
|
|
8121
8137
|
links?: ObjectLinks;
|
|
8122
8138
|
}
|
|
8123
8139
|
export declare const JsonApiUserOutWithLinksTypeEnum: {
|
|
@@ -8136,25 +8152,16 @@ export interface JsonApiUserPatch {
|
|
|
8136
8152
|
* API identifier of an object
|
|
8137
8153
|
*/
|
|
8138
8154
|
id: string;
|
|
8139
|
-
attributes?:
|
|
8140
|
-
relationships?:
|
|
8155
|
+
attributes?: JsonApiUserInAttributes;
|
|
8156
|
+
relationships?: JsonApiUserInRelationships;
|
|
8141
8157
|
}
|
|
8142
8158
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
8143
8159
|
readonly USER: "user";
|
|
8144
8160
|
};
|
|
8145
8161
|
export type JsonApiUserPatchTypeEnum = (typeof JsonApiUserPatchTypeEnum)[keyof typeof JsonApiUserPatchTypeEnum];
|
|
8146
|
-
export interface JsonApiUserPatchAttributes {
|
|
8147
|
-
authenticationId?: string;
|
|
8148
|
-
firstname?: string;
|
|
8149
|
-
lastname?: string;
|
|
8150
|
-
email?: string;
|
|
8151
|
-
}
|
|
8152
8162
|
export interface JsonApiUserPatchDocument {
|
|
8153
8163
|
data: JsonApiUserPatch;
|
|
8154
8164
|
}
|
|
8155
|
-
export interface JsonApiUserPatchRelationships {
|
|
8156
|
-
userGroups?: JsonApiUserGroupPatchRelationshipsParents;
|
|
8157
|
-
}
|
|
8158
8165
|
/**
|
|
8159
8166
|
* JSON:API representation of userSetting entity.
|
|
8160
8167
|
*/
|
|
@@ -8167,7 +8174,7 @@ export interface JsonApiUserSettingIn {
|
|
|
8167
8174
|
* API identifier of an object
|
|
8168
8175
|
*/
|
|
8169
8176
|
id: string;
|
|
8170
|
-
attributes?:
|
|
8177
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8171
8178
|
}
|
|
8172
8179
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
8173
8180
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8188,7 +8195,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8188
8195
|
* API identifier of an object
|
|
8189
8196
|
*/
|
|
8190
8197
|
id: string;
|
|
8191
|
-
attributes?:
|
|
8198
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8192
8199
|
}
|
|
8193
8200
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
8194
8201
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8204,7 +8211,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
8204
8211
|
export interface JsonApiUserSettingOutList {
|
|
8205
8212
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
8206
8213
|
links?: ListLinks;
|
|
8207
|
-
meta?:
|
|
8214
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8208
8215
|
}
|
|
8209
8216
|
export interface JsonApiUserSettingOutWithLinks {
|
|
8210
8217
|
/**
|
|
@@ -8215,7 +8222,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8215
8222
|
* API identifier of an object
|
|
8216
8223
|
*/
|
|
8217
8224
|
id: string;
|
|
8218
|
-
attributes?:
|
|
8225
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8219
8226
|
links?: ObjectLinks;
|
|
8220
8227
|
}
|
|
8221
8228
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -8312,7 +8319,7 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8312
8319
|
export interface JsonApiVisualizationObjectOutList {
|
|
8313
8320
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8314
8321
|
links?: ListLinks;
|
|
8315
|
-
meta?:
|
|
8322
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8316
8323
|
/**
|
|
8317
8324
|
* Included resources
|
|
8318
8325
|
*/
|
|
@@ -8478,23 +8485,20 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8478
8485
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8479
8486
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8480
8487
|
links?: ListLinks;
|
|
8481
|
-
meta?:
|
|
8488
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8482
8489
|
/**
|
|
8483
8490
|
* Included resources
|
|
8484
8491
|
*/
|
|
8485
8492
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
8486
8493
|
}
|
|
8487
|
-
export interface JsonApiWorkspaceAutomationOutListMeta {
|
|
8488
|
-
page?: PageMetadata;
|
|
8489
|
-
}
|
|
8490
8494
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8491
|
-
workspace?:
|
|
8492
|
-
notificationChannel?:
|
|
8493
|
-
analyticalDashboard?:
|
|
8495
|
+
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
8496
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
8497
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
8494
8498
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8495
8499
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8496
|
-
exportDefinitions?:
|
|
8497
|
-
recipients?:
|
|
8500
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
8501
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
8498
8502
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8499
8503
|
}
|
|
8500
8504
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -8586,7 +8590,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8586
8590
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8587
8591
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8588
8592
|
links?: ListLinks;
|
|
8589
|
-
meta?:
|
|
8593
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8590
8594
|
/**
|
|
8591
8595
|
* Included resources
|
|
8592
8596
|
*/
|
|
@@ -8653,16 +8657,27 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8653
8657
|
* API identifier of an object
|
|
8654
8658
|
*/
|
|
8655
8659
|
id: string;
|
|
8656
|
-
attributes?:
|
|
8657
|
-
relationships?:
|
|
8660
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8661
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8658
8662
|
}
|
|
8659
8663
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8660
8664
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8661
8665
|
};
|
|
8662
8666
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
8667
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8668
|
+
title?: string;
|
|
8669
|
+
description?: string;
|
|
8670
|
+
filterValues?: Array<string>;
|
|
8671
|
+
}
|
|
8663
8672
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8664
8673
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
8665
8674
|
}
|
|
8675
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8676
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8677
|
+
}
|
|
8678
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8679
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8680
|
+
}
|
|
8666
8681
|
/**
|
|
8667
8682
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8668
8683
|
*/
|
|
@@ -8687,8 +8702,8 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8687
8702
|
*/
|
|
8688
8703
|
id: string;
|
|
8689
8704
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8690
|
-
attributes?:
|
|
8691
|
-
relationships?:
|
|
8705
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8706
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8692
8707
|
}
|
|
8693
8708
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8694
8709
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8708,7 +8723,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8708
8723
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8709
8724
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8710
8725
|
links?: ListLinks;
|
|
8711
|
-
meta?:
|
|
8726
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8712
8727
|
/**
|
|
8713
8728
|
* Included resources
|
|
8714
8729
|
*/
|
|
@@ -8724,8 +8739,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8724
8739
|
*/
|
|
8725
8740
|
id: string;
|
|
8726
8741
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8727
|
-
attributes?:
|
|
8728
|
-
relationships?:
|
|
8742
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8743
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8729
8744
|
links?: ObjectLinks;
|
|
8730
8745
|
}
|
|
8731
8746
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8744,27 +8759,16 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8744
8759
|
* API identifier of an object
|
|
8745
8760
|
*/
|
|
8746
8761
|
id: string;
|
|
8747
|
-
attributes?:
|
|
8748
|
-
relationships?:
|
|
8762
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8763
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8749
8764
|
}
|
|
8750
8765
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8751
8766
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8752
8767
|
};
|
|
8753
8768
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
8754
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
8755
|
-
title?: string;
|
|
8756
|
-
description?: string;
|
|
8757
|
-
filterValues?: Array<string>;
|
|
8758
|
-
}
|
|
8759
8769
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
8760
8770
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
8761
8771
|
}
|
|
8762
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
8763
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
8764
|
-
}
|
|
8765
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
8766
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8767
|
-
}
|
|
8768
8772
|
/**
|
|
8769
8773
|
* JSON:API representation of workspace entity.
|
|
8770
8774
|
*/
|
|
@@ -8777,16 +8781,54 @@ export interface JsonApiWorkspaceIn {
|
|
|
8777
8781
|
* API identifier of an object
|
|
8778
8782
|
*/
|
|
8779
8783
|
id: string;
|
|
8780
|
-
attributes?:
|
|
8781
|
-
relationships?:
|
|
8784
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8785
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8782
8786
|
}
|
|
8783
8787
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
8784
8788
|
readonly WORKSPACE: "workspace";
|
|
8785
8789
|
};
|
|
8786
8790
|
export type JsonApiWorkspaceInTypeEnum = (typeof JsonApiWorkspaceInTypeEnum)[keyof typeof JsonApiWorkspaceInTypeEnum];
|
|
8791
|
+
export interface JsonApiWorkspaceInAttributes {
|
|
8792
|
+
name?: string | null;
|
|
8793
|
+
/**
|
|
8794
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8795
|
+
* @deprecated
|
|
8796
|
+
*/
|
|
8797
|
+
earlyAccess?: string | null;
|
|
8798
|
+
/**
|
|
8799
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
8800
|
+
*/
|
|
8801
|
+
earlyAccessValues?: Array<string> | null;
|
|
8802
|
+
description?: string | null;
|
|
8803
|
+
/**
|
|
8804
|
+
* Custom prefix of entity identifiers in workspace
|
|
8805
|
+
*/
|
|
8806
|
+
prefix?: string | null;
|
|
8807
|
+
cacheExtraLimit?: number;
|
|
8808
|
+
dataSource?: JsonApiWorkspaceInAttributesDataSource;
|
|
8809
|
+
}
|
|
8810
|
+
/**
|
|
8811
|
+
* 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.
|
|
8812
|
+
*/
|
|
8813
|
+
export interface JsonApiWorkspaceInAttributesDataSource {
|
|
8814
|
+
/**
|
|
8815
|
+
* The ID of the used data source.
|
|
8816
|
+
*/
|
|
8817
|
+
id: string;
|
|
8818
|
+
/**
|
|
8819
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8820
|
+
*/
|
|
8821
|
+
schemaPath?: Array<string>;
|
|
8822
|
+
}
|
|
8787
8823
|
export interface JsonApiWorkspaceInDocument {
|
|
8788
8824
|
data: JsonApiWorkspaceIn;
|
|
8789
8825
|
}
|
|
8826
|
+
export interface JsonApiWorkspaceInRelationships {
|
|
8827
|
+
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
8828
|
+
}
|
|
8829
|
+
export interface JsonApiWorkspaceInRelationshipsParent {
|
|
8830
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
8831
|
+
}
|
|
8790
8832
|
/**
|
|
8791
8833
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8792
8834
|
*/
|
|
@@ -8811,8 +8853,8 @@ export interface JsonApiWorkspaceOut {
|
|
|
8811
8853
|
*/
|
|
8812
8854
|
id: string;
|
|
8813
8855
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8814
|
-
attributes?:
|
|
8815
|
-
relationships?:
|
|
8856
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8857
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8816
8858
|
}
|
|
8817
8859
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
8818
8860
|
readonly WORKSPACE: "workspace";
|
|
@@ -8832,7 +8874,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8832
8874
|
export interface JsonApiWorkspaceOutList {
|
|
8833
8875
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8834
8876
|
links?: ListLinks;
|
|
8835
|
-
meta?:
|
|
8877
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8836
8878
|
/**
|
|
8837
8879
|
* Included resources
|
|
8838
8880
|
*/
|
|
@@ -8895,8 +8937,8 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
8895
8937
|
*/
|
|
8896
8938
|
id: string;
|
|
8897
8939
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8898
|
-
attributes?:
|
|
8899
|
-
relationships?:
|
|
8940
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8941
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8900
8942
|
links?: ObjectLinks;
|
|
8901
8943
|
}
|
|
8902
8944
|
export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
|
|
@@ -8915,54 +8957,16 @@ export interface JsonApiWorkspacePatch {
|
|
|
8915
8957
|
* API identifier of an object
|
|
8916
8958
|
*/
|
|
8917
8959
|
id: string;
|
|
8918
|
-
attributes?:
|
|
8919
|
-
relationships?:
|
|
8960
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8961
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8920
8962
|
}
|
|
8921
8963
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
8922
8964
|
readonly WORKSPACE: "workspace";
|
|
8923
8965
|
};
|
|
8924
8966
|
export type JsonApiWorkspacePatchTypeEnum = (typeof JsonApiWorkspacePatchTypeEnum)[keyof typeof JsonApiWorkspacePatchTypeEnum];
|
|
8925
|
-
export interface JsonApiWorkspacePatchAttributes {
|
|
8926
|
-
name?: string | null;
|
|
8927
|
-
/**
|
|
8928
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8929
|
-
* @deprecated
|
|
8930
|
-
*/
|
|
8931
|
-
earlyAccess?: string | null;
|
|
8932
|
-
/**
|
|
8933
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
8934
|
-
*/
|
|
8935
|
-
earlyAccessValues?: Array<string> | null;
|
|
8936
|
-
description?: string | null;
|
|
8937
|
-
/**
|
|
8938
|
-
* Custom prefix of entity identifiers in workspace
|
|
8939
|
-
*/
|
|
8940
|
-
prefix?: string | null;
|
|
8941
|
-
cacheExtraLimit?: number;
|
|
8942
|
-
dataSource?: JsonApiWorkspacePatchAttributesDataSource;
|
|
8943
|
-
}
|
|
8944
|
-
/**
|
|
8945
|
-
* 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.
|
|
8946
|
-
*/
|
|
8947
|
-
export interface JsonApiWorkspacePatchAttributesDataSource {
|
|
8948
|
-
/**
|
|
8949
|
-
* The ID of the used data source.
|
|
8950
|
-
*/
|
|
8951
|
-
id: string;
|
|
8952
|
-
/**
|
|
8953
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8954
|
-
*/
|
|
8955
|
-
schemaPath?: Array<string>;
|
|
8956
|
-
}
|
|
8957
8967
|
export interface JsonApiWorkspacePatchDocument {
|
|
8958
8968
|
data: JsonApiWorkspacePatch;
|
|
8959
8969
|
}
|
|
8960
|
-
export interface JsonApiWorkspacePatchRelationships {
|
|
8961
|
-
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
8962
|
-
}
|
|
8963
|
-
export interface JsonApiWorkspacePatchRelationshipsParent {
|
|
8964
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
8965
|
-
}
|
|
8966
8970
|
/**
|
|
8967
8971
|
* JSON:API representation of workspaceSetting entity.
|
|
8968
8972
|
*/
|
|
@@ -8975,7 +8979,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8975
8979
|
* API identifier of an object
|
|
8976
8980
|
*/
|
|
8977
8981
|
id: string;
|
|
8978
|
-
attributes?:
|
|
8982
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8979
8983
|
}
|
|
8980
8984
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8981
8985
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8997,7 +9001,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8997
9001
|
*/
|
|
8998
9002
|
id: string;
|
|
8999
9003
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
9000
|
-
attributes?:
|
|
9004
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9001
9005
|
}
|
|
9002
9006
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
9003
9007
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9013,7 +9017,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
9013
9017
|
export interface JsonApiWorkspaceSettingOutList {
|
|
9014
9018
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
9015
9019
|
links?: ListLinks;
|
|
9016
|
-
meta?:
|
|
9020
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
9017
9021
|
}
|
|
9018
9022
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
9019
9023
|
/**
|
|
@@ -9025,7 +9029,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
9025
9029
|
*/
|
|
9026
9030
|
id: string;
|
|
9027
9031
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
9028
|
-
attributes?:
|
|
9032
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9029
9033
|
links?: ObjectLinks;
|
|
9030
9034
|
}
|
|
9031
9035
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -9044,7 +9048,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
9044
9048
|
* API identifier of an object
|
|
9045
9049
|
*/
|
|
9046
9050
|
id: string;
|
|
9047
|
-
attributes?:
|
|
9051
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9048
9052
|
}
|
|
9049
9053
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
9050
9054
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9065,7 +9069,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
9065
9069
|
* API identifier of an object
|
|
9066
9070
|
*/
|
|
9067
9071
|
id?: string;
|
|
9068
|
-
attributes?:
|
|
9072
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9069
9073
|
}
|
|
9070
9074
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
9071
9075
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|