@gooddata/api-client-tiger 11.8.0-alpha.0 → 11.8.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +905 -853
- package/esm/generated/afm-rest-api/api.d.ts +36 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +3 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +87 -3
- package/esm/generated/metadata-json-api/api.d.ts +772 -752
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +61 -55
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9021 -8956
- package/esm/generated/scan-json-api/api.d.ts +0 -8
- 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 +0 -10
- package/package.json +4 -4
|
@@ -453,6 +453,7 @@ export declare const ColumnOverrideLabelTypeEnum: {
|
|
|
453
453
|
readonly GEO: "GEO";
|
|
454
454
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
455
455
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
456
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
456
457
|
readonly IMAGE: "IMAGE";
|
|
457
458
|
};
|
|
458
459
|
export type ColumnOverrideLabelTypeEnum = (typeof ColumnOverrideLabelTypeEnum)[keyof typeof ColumnOverrideLabelTypeEnum];
|
|
@@ -1194,10 +1195,6 @@ export interface DeclarativeColumn {
|
|
|
1194
1195
|
* Referenced table (Foreign key)
|
|
1195
1196
|
*/
|
|
1196
1197
|
referencedTableColumn?: string;
|
|
1197
|
-
/**
|
|
1198
|
-
* Column description/comment from database
|
|
1199
|
-
*/
|
|
1200
|
-
description?: string;
|
|
1201
1198
|
}
|
|
1202
1199
|
export declare const DeclarativeColumnDataTypeEnum: {
|
|
1203
1200
|
readonly INT: "INT";
|
|
@@ -1800,6 +1797,7 @@ export interface DeclarativeLabel {
|
|
|
1800
1797
|
* Determines if the label is hidden from AI features.
|
|
1801
1798
|
*/
|
|
1802
1799
|
isHidden?: boolean;
|
|
1800
|
+
geoAreaConfig?: GeoAreaConfig;
|
|
1803
1801
|
}
|
|
1804
1802
|
export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
|
|
1805
1803
|
readonly INT: "INT";
|
|
@@ -1817,6 +1815,7 @@ export declare const DeclarativeLabelValueTypeEnum: {
|
|
|
1817
1815
|
readonly GEO: "GEO";
|
|
1818
1816
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
1819
1817
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
1818
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
1820
1819
|
readonly IMAGE: "IMAGE";
|
|
1821
1820
|
};
|
|
1822
1821
|
export type DeclarativeLabelValueTypeEnum = (typeof DeclarativeLabelValueTypeEnum)[keyof typeof DeclarativeLabelValueTypeEnum];
|
|
@@ -2203,6 +2202,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
2203
2202
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
2204
2203
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
2205
2204
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
2205
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
2206
2206
|
};
|
|
2207
2207
|
export type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
2208
2208
|
export interface DeclarativeSingleWorkspacePermission {
|
|
@@ -2906,6 +2906,16 @@ export interface GenerateLdmRequest {
|
|
|
2906
2906
|
*/
|
|
2907
2907
|
workspaceId?: string;
|
|
2908
2908
|
}
|
|
2909
|
+
/**
|
|
2910
|
+
* Configuration specific to geo area labels.
|
|
2911
|
+
*/
|
|
2912
|
+
export interface GeoAreaConfig {
|
|
2913
|
+
collection: GeoCollection;
|
|
2914
|
+
}
|
|
2915
|
+
export interface GeoCollection {
|
|
2916
|
+
id: string;
|
|
2917
|
+
matchingProperty?: string;
|
|
2918
|
+
}
|
|
2909
2919
|
/**
|
|
2910
2920
|
* A grain identifier.
|
|
2911
2921
|
*/
|
|
@@ -3181,7 +3191,7 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3181
3191
|
export interface JsonApiAggregatedFactOutList {
|
|
3182
3192
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3183
3193
|
links?: ListLinks;
|
|
3184
|
-
meta?:
|
|
3194
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3185
3195
|
/**
|
|
3186
3196
|
* Included resources
|
|
3187
3197
|
*/
|
|
@@ -3224,7 +3234,7 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3224
3234
|
* API identifier of an object
|
|
3225
3235
|
*/
|
|
3226
3236
|
id: string;
|
|
3227
|
-
attributes:
|
|
3237
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
3228
3238
|
}
|
|
3229
3239
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3230
3240
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -3294,7 +3304,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3294
3304
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3295
3305
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3296
3306
|
links?: ListLinks;
|
|
3297
|
-
meta?:
|
|
3307
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3298
3308
|
/**
|
|
3299
3309
|
* Included resources
|
|
3300
3310
|
*/
|
|
@@ -3416,22 +3426,12 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3416
3426
|
* API identifier of an object
|
|
3417
3427
|
*/
|
|
3418
3428
|
id?: string;
|
|
3419
|
-
attributes:
|
|
3429
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
3420
3430
|
}
|
|
3421
3431
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3422
3432
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3423
3433
|
};
|
|
3424
3434
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
|
|
3425
|
-
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
3426
|
-
title?: string;
|
|
3427
|
-
description?: string;
|
|
3428
|
-
tags?: Array<string>;
|
|
3429
|
-
areRelationsValid?: boolean;
|
|
3430
|
-
/**
|
|
3431
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3432
|
-
*/
|
|
3433
|
-
content: object;
|
|
3434
|
-
}
|
|
3435
3435
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
3436
3436
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
3437
3437
|
}
|
|
@@ -3489,7 +3489,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3489
3489
|
export interface JsonApiApiTokenOutList {
|
|
3490
3490
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3491
3491
|
links?: ListLinks;
|
|
3492
|
-
meta?:
|
|
3492
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3493
3493
|
}
|
|
3494
3494
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3495
3495
|
/**
|
|
@@ -3519,22 +3519,12 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
3519
3519
|
* API identifier of an object
|
|
3520
3520
|
*/
|
|
3521
3521
|
id: string;
|
|
3522
|
-
attributes?:
|
|
3522
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3523
3523
|
}
|
|
3524
3524
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
3525
3525
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3526
3526
|
};
|
|
3527
3527
|
export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
3528
|
-
export interface JsonApiAttributeHierarchyInAttributes {
|
|
3529
|
-
title?: string;
|
|
3530
|
-
description?: string;
|
|
3531
|
-
tags?: Array<string>;
|
|
3532
|
-
areRelationsValid?: boolean;
|
|
3533
|
-
/**
|
|
3534
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3535
|
-
*/
|
|
3536
|
-
content?: object;
|
|
3537
|
-
}
|
|
3538
3528
|
export interface JsonApiAttributeHierarchyInDocument {
|
|
3539
3529
|
data: JsonApiAttributeHierarchyIn;
|
|
3540
3530
|
}
|
|
@@ -3599,7 +3589,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3599
3589
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3600
3590
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3601
3591
|
links?: ListLinks;
|
|
3602
|
-
meta?:
|
|
3592
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3603
3593
|
/**
|
|
3604
3594
|
* Included resources
|
|
3605
3595
|
*/
|
|
@@ -3640,12 +3630,22 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
3640
3630
|
* API identifier of an object
|
|
3641
3631
|
*/
|
|
3642
3632
|
id: string;
|
|
3643
|
-
attributes?:
|
|
3633
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3644
3634
|
}
|
|
3645
3635
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
3646
3636
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3647
3637
|
};
|
|
3648
3638
|
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
3649
|
export interface JsonApiAttributeHierarchyPatchDocument {
|
|
3650
3650
|
data: JsonApiAttributeHierarchyPatch;
|
|
3651
3651
|
}
|
|
@@ -3744,7 +3744,7 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3744
3744
|
export interface JsonApiAttributeOutList {
|
|
3745
3745
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3746
3746
|
links?: ListLinks;
|
|
3747
|
-
meta?:
|
|
3747
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
3748
3748
|
/**
|
|
3749
3749
|
* Included resources
|
|
3750
3750
|
*/
|
|
@@ -3798,144 +3798,16 @@ export interface JsonApiAutomationIn {
|
|
|
3798
3798
|
* API identifier of an object
|
|
3799
3799
|
*/
|
|
3800
3800
|
id: string;
|
|
3801
|
-
attributes?:
|
|
3802
|
-
relationships?:
|
|
3801
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
3802
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
3803
3803
|
}
|
|
3804
3804
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
3805
3805
|
readonly AUTOMATION: "automation";
|
|
3806
3806
|
};
|
|
3807
3807
|
export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
3808
|
-
export interface JsonApiAutomationInAttributes {
|
|
3809
|
-
title?: string;
|
|
3810
|
-
description?: string;
|
|
3811
|
-
tags?: Array<string>;
|
|
3812
|
-
areRelationsValid?: boolean;
|
|
3813
|
-
/**
|
|
3814
|
-
* Additional details to be included in the automated message.
|
|
3815
|
-
*/
|
|
3816
|
-
details?: object;
|
|
3817
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3818
|
-
/**
|
|
3819
|
-
* Current state of the automation.
|
|
3820
|
-
*/
|
|
3821
|
-
state?: JsonApiAutomationInAttributesStateEnum;
|
|
3822
|
-
/**
|
|
3823
|
-
* Specify automation evaluation mode.
|
|
3824
|
-
*/
|
|
3825
|
-
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3826
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3827
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
3828
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3829
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3830
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3831
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3832
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3833
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3834
|
-
/**
|
|
3835
|
-
* External recipients of the automation action results.
|
|
3836
|
-
*/
|
|
3837
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3838
|
-
}
|
|
3839
|
-
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3840
|
-
readonly ACTIVE: "ACTIVE";
|
|
3841
|
-
readonly PAUSED: "PAUSED";
|
|
3842
|
-
};
|
|
3843
|
-
export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
3844
|
-
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
3845
|
-
readonly SHARED: "SHARED";
|
|
3846
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3847
|
-
};
|
|
3848
|
-
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3849
|
-
export interface JsonApiAutomationInAttributesAlert {
|
|
3850
|
-
execution: AlertAfm;
|
|
3851
|
-
condition: AlertCondition;
|
|
3852
|
-
/**
|
|
3853
|
-
* 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.
|
|
3854
|
-
*/
|
|
3855
|
-
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
3856
|
-
}
|
|
3857
|
-
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
3858
|
-
readonly ALWAYS: "ALWAYS";
|
|
3859
|
-
readonly ONCE: "ONCE";
|
|
3860
|
-
};
|
|
3861
|
-
export type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
3862
|
-
export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
3863
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
3864
|
-
}
|
|
3865
|
-
export interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
3866
|
-
/**
|
|
3867
|
-
* E-mail address to send notifications from.
|
|
3868
|
-
*/
|
|
3869
|
-
email: string;
|
|
3870
|
-
}
|
|
3871
|
-
export interface JsonApiAutomationInAttributesImageExportsInner {
|
|
3872
|
-
requestPayload: ImageExportRequest;
|
|
3873
|
-
}
|
|
3874
|
-
/**
|
|
3875
|
-
* Additional information for the automation.
|
|
3876
|
-
*/
|
|
3877
|
-
export interface JsonApiAutomationInAttributesMetadata {
|
|
3878
|
-
[key: string]: any;
|
|
3879
|
-
widget?: string;
|
|
3880
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
3881
|
-
}
|
|
3882
|
-
export interface JsonApiAutomationInAttributesRawExportsInner {
|
|
3883
|
-
requestPayload: RawExportAutomationRequest;
|
|
3884
|
-
}
|
|
3885
|
-
export interface JsonApiAutomationInAttributesSchedule {
|
|
3886
|
-
/**
|
|
3887
|
-
* 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.
|
|
3888
|
-
*/
|
|
3889
|
-
cron: string;
|
|
3890
|
-
/**
|
|
3891
|
-
* Human-readable description of the cron expression.
|
|
3892
|
-
*/
|
|
3893
|
-
cronDescription?: string;
|
|
3894
|
-
/**
|
|
3895
|
-
* Timezone in which the schedule is defined.
|
|
3896
|
-
*/
|
|
3897
|
-
timezone: string;
|
|
3898
|
-
/**
|
|
3899
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3900
|
-
*/
|
|
3901
|
-
firstRun?: string;
|
|
3902
|
-
}
|
|
3903
|
-
export interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
3904
|
-
requestPayload: SlidesExportRequest;
|
|
3905
|
-
}
|
|
3906
|
-
export interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
3907
|
-
requestPayload: TabularExportRequest;
|
|
3908
|
-
}
|
|
3909
|
-
export interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
3910
|
-
requestPayload: VisualExportRequest;
|
|
3911
|
-
}
|
|
3912
3808
|
export interface JsonApiAutomationInDocument {
|
|
3913
3809
|
data: JsonApiAutomationIn;
|
|
3914
3810
|
}
|
|
3915
|
-
export interface JsonApiAutomationInRelationships {
|
|
3916
|
-
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3917
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3918
|
-
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3919
|
-
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3920
|
-
}
|
|
3921
|
-
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3922
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3923
|
-
}
|
|
3924
|
-
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3925
|
-
/**
|
|
3926
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3927
|
-
*/
|
|
3928
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3929
|
-
}
|
|
3930
|
-
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3931
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
3932
|
-
}
|
|
3933
|
-
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3934
|
-
/**
|
|
3935
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3936
|
-
*/
|
|
3937
|
-
data: Array<JsonApiUserLinkage>;
|
|
3938
|
-
}
|
|
3939
3811
|
/**
|
|
3940
3812
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3941
3813
|
*/
|
|
@@ -3976,7 +3848,7 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3976
3848
|
* Additional details to be included in the automated message.
|
|
3977
3849
|
*/
|
|
3978
3850
|
details?: object;
|
|
3979
|
-
metadata?:
|
|
3851
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
3980
3852
|
/**
|
|
3981
3853
|
* Current state of the automation.
|
|
3982
3854
|
*/
|
|
@@ -3985,18 +3857,18 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3985
3857
|
* Specify automation evaluation mode.
|
|
3986
3858
|
*/
|
|
3987
3859
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3988
|
-
schedule?:
|
|
3989
|
-
alert?:
|
|
3990
|
-
tabularExports?: Array<
|
|
3991
|
-
visualExports?: Array<
|
|
3992
|
-
imageExports?: Array<
|
|
3993
|
-
rawExports?: Array<
|
|
3994
|
-
slidesExports?: Array<
|
|
3995
|
-
dashboardTabularExports?: Array<
|
|
3860
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
3861
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
3862
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
3863
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
3864
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
3865
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
3866
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
3867
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
3996
3868
|
/**
|
|
3997
3869
|
* External recipients of the automation action results.
|
|
3998
3870
|
*/
|
|
3999
|
-
externalRecipients?: Array<
|
|
3871
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
4000
3872
|
createdAt?: string;
|
|
4001
3873
|
modifiedAt?: string;
|
|
4002
3874
|
}
|
|
@@ -4028,19 +3900,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
4028
3900
|
export interface JsonApiAutomationOutList {
|
|
4029
3901
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
4030
3902
|
links?: ListLinks;
|
|
4031
|
-
meta?:
|
|
3903
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4032
3904
|
/**
|
|
4033
3905
|
* Included resources
|
|
4034
3906
|
*/
|
|
4035
3907
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
4036
3908
|
}
|
|
4037
3909
|
export interface JsonApiAutomationOutRelationships {
|
|
4038
|
-
notificationChannel?:
|
|
4039
|
-
analyticalDashboard?:
|
|
3910
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
3911
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
4040
3912
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4041
3913
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4042
|
-
exportDefinitions?:
|
|
4043
|
-
recipients?:
|
|
3914
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
3915
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
4044
3916
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
4045
3917
|
}
|
|
4046
3918
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
@@ -4079,16 +3951,144 @@ export interface JsonApiAutomationPatch {
|
|
|
4079
3951
|
* API identifier of an object
|
|
4080
3952
|
*/
|
|
4081
3953
|
id: string;
|
|
4082
|
-
attributes?:
|
|
4083
|
-
relationships?:
|
|
3954
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
3955
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
4084
3956
|
}
|
|
4085
3957
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
4086
3958
|
readonly AUTOMATION: "automation";
|
|
4087
3959
|
};
|
|
4088
3960
|
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
|
+
}
|
|
4089
4065
|
export interface JsonApiAutomationPatchDocument {
|
|
4090
4066
|
data: JsonApiAutomationPatch;
|
|
4091
4067
|
}
|
|
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
4092
|
/**
|
|
4093
4093
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4094
4094
|
*/
|
|
@@ -4212,10 +4212,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4212
4212
|
export interface JsonApiColorPaletteOutList {
|
|
4213
4213
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4214
4214
|
links?: ListLinks;
|
|
4215
|
-
meta?:
|
|
4216
|
-
}
|
|
4217
|
-
export interface JsonApiColorPaletteOutListMeta {
|
|
4218
|
-
page?: PageMetadata;
|
|
4215
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4219
4216
|
}
|
|
4220
4217
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4221
4218
|
/**
|
|
@@ -4273,19 +4270,12 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4273
4270
|
* API identifier of an object
|
|
4274
4271
|
*/
|
|
4275
4272
|
id: string;
|
|
4276
|
-
attributes?:
|
|
4273
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4277
4274
|
}
|
|
4278
4275
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4279
4276
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4280
4277
|
};
|
|
4281
4278
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4282
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4283
|
-
lastRotation?: string;
|
|
4284
|
-
/**
|
|
4285
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4286
|
-
*/
|
|
4287
|
-
rotationInterval?: string;
|
|
4288
|
-
}
|
|
4289
4279
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4290
4280
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4291
4281
|
}
|
|
@@ -4301,7 +4291,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4301
4291
|
* API identifier of an object
|
|
4302
4292
|
*/
|
|
4303
4293
|
id: string;
|
|
4304
|
-
attributes?:
|
|
4294
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4305
4295
|
}
|
|
4306
4296
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4307
4297
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4323,12 +4313,19 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4323
4313
|
* API identifier of an object
|
|
4324
4314
|
*/
|
|
4325
4315
|
id: string;
|
|
4326
|
-
attributes?:
|
|
4316
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4327
4317
|
}
|
|
4328
4318
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4329
4319
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4330
4320
|
};
|
|
4331
4321
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
4322
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4323
|
+
lastRotation?: string;
|
|
4324
|
+
/**
|
|
4325
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4326
|
+
*/
|
|
4327
|
+
rotationInterval?: string;
|
|
4328
|
+
}
|
|
4332
4329
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4333
4330
|
data: JsonApiCookieSecurityConfigurationPatch;
|
|
4334
4331
|
}
|
|
@@ -4384,7 +4381,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4384
4381
|
export interface JsonApiCspDirectiveOutList {
|
|
4385
4382
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4386
4383
|
links?: ListLinks;
|
|
4387
|
-
meta?:
|
|
4384
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4388
4385
|
}
|
|
4389
4386
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4390
4387
|
/**
|
|
@@ -4438,7 +4435,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4438
4435
|
* API identifier of an object
|
|
4439
4436
|
*/
|
|
4440
4437
|
id: string;
|
|
4441
|
-
attributes:
|
|
4438
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4442
4439
|
}
|
|
4443
4440
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4444
4441
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4460,12 +4457,19 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4460
4457
|
*/
|
|
4461
4458
|
id: string;
|
|
4462
4459
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4463
|
-
attributes:
|
|
4460
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4464
4461
|
}
|
|
4465
4462
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4466
4463
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4467
4464
|
};
|
|
4468
4465
|
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
|
+
}
|
|
4469
4473
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4470
4474
|
data: JsonApiCustomApplicationSettingOut;
|
|
4471
4475
|
links?: ObjectLinks;
|
|
@@ -4476,7 +4480,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4476
4480
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4477
4481
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4478
4482
|
links?: ListLinks;
|
|
4479
|
-
meta?:
|
|
4483
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4480
4484
|
}
|
|
4481
4485
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4482
4486
|
/**
|
|
@@ -4488,7 +4492,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4488
4492
|
*/
|
|
4489
4493
|
id: string;
|
|
4490
4494
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4491
|
-
attributes:
|
|
4495
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4492
4496
|
links?: ObjectLinks;
|
|
4493
4497
|
}
|
|
4494
4498
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4535,19 +4539,12 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4535
4539
|
* API identifier of an object
|
|
4536
4540
|
*/
|
|
4537
4541
|
id?: string;
|
|
4538
|
-
attributes:
|
|
4542
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4539
4543
|
}
|
|
4540
4544
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4541
4545
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4542
4546
|
};
|
|
4543
4547
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
|
|
4544
|
-
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
4545
|
-
applicationName: string;
|
|
4546
|
-
/**
|
|
4547
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4548
|
-
*/
|
|
4549
|
-
content: object;
|
|
4550
|
-
}
|
|
4551
4548
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4552
4549
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
4553
4550
|
}
|
|
@@ -4563,7 +4560,7 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4563
4560
|
* API identifier of an object
|
|
4564
4561
|
*/
|
|
4565
4562
|
id: string;
|
|
4566
|
-
attributes?:
|
|
4563
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4567
4564
|
}
|
|
4568
4565
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4569
4566
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4629,7 +4626,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4629
4626
|
export interface JsonApiDashboardPluginOutList {
|
|
4630
4627
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4631
4628
|
links?: ListLinks;
|
|
4632
|
-
meta?:
|
|
4629
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4633
4630
|
/**
|
|
4634
4631
|
* Included resources
|
|
4635
4632
|
*/
|
|
@@ -4669,12 +4666,22 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4669
4666
|
* API identifier of an object
|
|
4670
4667
|
*/
|
|
4671
4668
|
id: string;
|
|
4672
|
-
attributes?:
|
|
4669
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4673
4670
|
}
|
|
4674
4671
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4675
4672
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4676
4673
|
};
|
|
4677
4674
|
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
|
+
}
|
|
4678
4685
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
4679
4686
|
data: JsonApiDashboardPluginPatch;
|
|
4680
4687
|
}
|
|
@@ -4690,22 +4697,12 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4690
4697
|
* API identifier of an object
|
|
4691
4698
|
*/
|
|
4692
4699
|
id?: string;
|
|
4693
|
-
attributes?:
|
|
4700
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4694
4701
|
}
|
|
4695
4702
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4696
4703
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4697
4704
|
};
|
|
4698
4705
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
4699
|
-
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4700
|
-
title?: string;
|
|
4701
|
-
description?: string;
|
|
4702
|
-
tags?: Array<string>;
|
|
4703
|
-
areRelationsValid?: boolean;
|
|
4704
|
-
/**
|
|
4705
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4706
|
-
*/
|
|
4707
|
-
content?: object;
|
|
4708
|
-
}
|
|
4709
4706
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4710
4707
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4711
4708
|
}
|
|
@@ -4721,7 +4718,7 @@ export interface JsonApiDataSourceIdentifierOut {
|
|
|
4721
4718
|
* API identifier of an object
|
|
4722
4719
|
*/
|
|
4723
4720
|
id: string;
|
|
4724
|
-
meta?:
|
|
4721
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4725
4722
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4726
4723
|
}
|
|
4727
4724
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
@@ -4772,19 +4769,8 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4772
4769
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4773
4770
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4774
4771
|
links?: ListLinks;
|
|
4775
|
-
meta?:
|
|
4776
|
-
}
|
|
4777
|
-
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4778
|
-
/**
|
|
4779
|
-
* List of valid permissions for a logged-in user.
|
|
4780
|
-
*/
|
|
4781
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
4772
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
4782
4773
|
}
|
|
4783
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
4784
|
-
readonly MANAGE: "MANAGE";
|
|
4785
|
-
readonly USE: "USE";
|
|
4786
|
-
};
|
|
4787
|
-
export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
4788
4774
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4789
4775
|
/**
|
|
4790
4776
|
* Object type
|
|
@@ -4794,7 +4780,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
4794
4780
|
* API identifier of an object
|
|
4795
4781
|
*/
|
|
4796
4782
|
id: string;
|
|
4797
|
-
meta?:
|
|
4783
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4798
4784
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4799
4785
|
links?: ObjectLinks;
|
|
4800
4786
|
}
|
|
@@ -4868,7 +4854,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4868
4854
|
/**
|
|
4869
4855
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4870
4856
|
*/
|
|
4871
|
-
parameters?: Array<
|
|
4857
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
4872
4858
|
/**
|
|
4873
4859
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4874
4860
|
*/
|
|
@@ -4923,7 +4909,7 @@ export interface JsonApiDataSourceOut {
|
|
|
4923
4909
|
* API identifier of an object
|
|
4924
4910
|
*/
|
|
4925
4911
|
id: string;
|
|
4926
|
-
meta?:
|
|
4912
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4927
4913
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4928
4914
|
}
|
|
4929
4915
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -4958,11 +4944,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4958
4944
|
/**
|
|
4959
4945
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4960
4946
|
*/
|
|
4961
|
-
parameters?: Array<
|
|
4947
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
4962
4948
|
/**
|
|
4963
4949
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
4964
4950
|
*/
|
|
4965
|
-
decodedParameters?: Array<
|
|
4951
|
+
decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
4966
4952
|
/**
|
|
4967
4953
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4968
4954
|
*/
|
|
@@ -5014,10 +5000,6 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
|
|
|
5014
5000
|
readonly ACCESS_TOKEN: "ACCESS_TOKEN";
|
|
5015
5001
|
};
|
|
5016
5002
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
|
|
5017
|
-
export interface JsonApiDataSourceOutAttributesParametersInner {
|
|
5018
|
-
name: string;
|
|
5019
|
-
value: string;
|
|
5020
|
-
}
|
|
5021
5003
|
export interface JsonApiDataSourceOutDocument {
|
|
5022
5004
|
data: JsonApiDataSourceOut;
|
|
5023
5005
|
links?: ObjectLinks;
|
|
@@ -5028,8 +5010,19 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
5028
5010
|
export interface JsonApiDataSourceOutList {
|
|
5029
5011
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
5030
5012
|
links?: ListLinks;
|
|
5031
|
-
meta?:
|
|
5013
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5014
|
+
}
|
|
5015
|
+
export interface JsonApiDataSourceOutMeta {
|
|
5016
|
+
/**
|
|
5017
|
+
* List of valid permissions for a logged-in user.
|
|
5018
|
+
*/
|
|
5019
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
5032
5020
|
}
|
|
5021
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
5022
|
+
readonly MANAGE: "MANAGE";
|
|
5023
|
+
readonly USE: "USE";
|
|
5024
|
+
};
|
|
5025
|
+
export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
5033
5026
|
export interface JsonApiDataSourceOutWithLinks {
|
|
5034
5027
|
/**
|
|
5035
5028
|
* Object type
|
|
@@ -5039,7 +5032,7 @@ export interface JsonApiDataSourceOutWithLinks {
|
|
|
5039
5032
|
* API identifier of an object
|
|
5040
5033
|
*/
|
|
5041
5034
|
id: string;
|
|
5042
|
-
meta?:
|
|
5035
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
5043
5036
|
attributes: JsonApiDataSourceOutAttributes;
|
|
5044
5037
|
links?: ObjectLinks;
|
|
5045
5038
|
}
|
|
@@ -5113,7 +5106,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
5113
5106
|
/**
|
|
5114
5107
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5115
5108
|
*/
|
|
5116
|
-
parameters?: Array<
|
|
5109
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
5117
5110
|
/**
|
|
5118
5111
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5119
5112
|
*/
|
|
@@ -5153,6 +5146,10 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
5153
5146
|
readonly NEVER: "NEVER";
|
|
5154
5147
|
};
|
|
5155
5148
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
5149
|
+
export interface JsonApiDataSourcePatchAttributesParametersInner {
|
|
5150
|
+
name: string;
|
|
5151
|
+
value: string;
|
|
5152
|
+
}
|
|
5156
5153
|
export interface JsonApiDataSourcePatchDocument {
|
|
5157
5154
|
data: JsonApiDataSourcePatch;
|
|
5158
5155
|
}
|
|
@@ -5290,7 +5287,7 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5290
5287
|
export interface JsonApiDatasetOutList {
|
|
5291
5288
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5292
5289
|
links?: ListLinks;
|
|
5293
|
-
meta?:
|
|
5290
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5294
5291
|
/**
|
|
5295
5292
|
* Included resources
|
|
5296
5293
|
*/
|
|
@@ -5365,7 +5362,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5365
5362
|
export interface JsonApiEntitlementOutList {
|
|
5366
5363
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5367
5364
|
links?: ListLinks;
|
|
5368
|
-
meta?:
|
|
5365
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5369
5366
|
}
|
|
5370
5367
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5371
5368
|
/**
|
|
@@ -5395,8 +5392,8 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5395
5392
|
* API identifier of an object
|
|
5396
5393
|
*/
|
|
5397
5394
|
id: string;
|
|
5398
|
-
attributes?:
|
|
5399
|
-
relationships?:
|
|
5395
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5396
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5400
5397
|
}
|
|
5401
5398
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5402
5399
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5468,7 +5465,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5468
5465
|
export interface JsonApiExportDefinitionOutList {
|
|
5469
5466
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5470
5467
|
links?: ListLinks;
|
|
5471
|
-
meta?:
|
|
5468
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5472
5469
|
/**
|
|
5473
5470
|
* Included resources
|
|
5474
5471
|
*/
|
|
@@ -5476,7 +5473,7 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
5476
5473
|
}
|
|
5477
5474
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5478
5475
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5479
|
-
analyticalDashboard?:
|
|
5476
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5480
5477
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5481
5478
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5482
5479
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -5517,16 +5514,27 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5517
5514
|
* API identifier of an object
|
|
5518
5515
|
*/
|
|
5519
5516
|
id: string;
|
|
5520
|
-
attributes?:
|
|
5521
|
-
relationships?:
|
|
5517
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5518
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5522
5519
|
}
|
|
5523
5520
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5524
5521
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5525
5522
|
};
|
|
5526
5523
|
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
|
+
}
|
|
5527
5531
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
5528
5532
|
data: JsonApiExportDefinitionPatch;
|
|
5529
5533
|
}
|
|
5534
|
+
export interface JsonApiExportDefinitionPatchRelationships {
|
|
5535
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5536
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5537
|
+
}
|
|
5530
5538
|
/**
|
|
5531
5539
|
* JSON:API representation of exportDefinition entity.
|
|
5532
5540
|
*/
|
|
@@ -5539,27 +5547,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5539
5547
|
* API identifier of an object
|
|
5540
5548
|
*/
|
|
5541
5549
|
id?: string;
|
|
5542
|
-
attributes?:
|
|
5543
|
-
relationships?:
|
|
5550
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5551
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5544
5552
|
}
|
|
5545
5553
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5546
5554
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5547
5555
|
};
|
|
5548
5556
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
5549
|
-
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
5550
|
-
title?: string;
|
|
5551
|
-
description?: string;
|
|
5552
|
-
tags?: Array<string>;
|
|
5553
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5554
|
-
areRelationsValid?: boolean;
|
|
5555
|
-
}
|
|
5556
5557
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5557
5558
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5558
5559
|
}
|
|
5559
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5560
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5561
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5562
|
-
}
|
|
5563
5560
|
/**
|
|
5564
5561
|
* JSON:API representation of exportTemplate entity.
|
|
5565
5562
|
*/
|
|
@@ -5604,42 +5601,9 @@ export interface JsonApiExportTemplateOutAttributes {
|
|
|
5604
5601
|
* User-facing name of the Slides template.
|
|
5605
5602
|
*/
|
|
5606
5603
|
name: string;
|
|
5607
|
-
dashboardSlidesTemplate?:
|
|
5608
|
-
widgetSlidesTemplate?:
|
|
5609
|
-
}
|
|
5610
|
-
/**
|
|
5611
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5612
|
-
*/
|
|
5613
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5614
|
-
/**
|
|
5615
|
-
* Export types this template applies to.
|
|
5616
|
-
*/
|
|
5617
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5618
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
5619
|
-
introSlide?: IntroSlideTemplate | null;
|
|
5620
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
5621
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5604
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
|
|
5605
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
|
|
5622
5606
|
}
|
|
5623
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5624
|
-
readonly PDF: "PDF";
|
|
5625
|
-
readonly PPTX: "PPTX";
|
|
5626
|
-
};
|
|
5627
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5628
|
-
/**
|
|
5629
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5630
|
-
*/
|
|
5631
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5632
|
-
/**
|
|
5633
|
-
* Export types this template applies to.
|
|
5634
|
-
*/
|
|
5635
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5636
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5637
|
-
}
|
|
5638
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5639
|
-
readonly PDF: "PDF";
|
|
5640
|
-
readonly PPTX: "PPTX";
|
|
5641
|
-
};
|
|
5642
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5643
5607
|
export interface JsonApiExportTemplateOutDocument {
|
|
5644
5608
|
data: JsonApiExportTemplateOut;
|
|
5645
5609
|
links?: ObjectLinks;
|
|
@@ -5650,7 +5614,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5650
5614
|
export interface JsonApiExportTemplateOutList {
|
|
5651
5615
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5652
5616
|
links?: ListLinks;
|
|
5653
|
-
meta?:
|
|
5617
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5654
5618
|
}
|
|
5655
5619
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5656
5620
|
/**
|
|
@@ -5691,9 +5655,42 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5691
5655
|
* User-facing name of the Slides template.
|
|
5692
5656
|
*/
|
|
5693
5657
|
name?: string;
|
|
5694
|
-
dashboardSlidesTemplate?:
|
|
5695
|
-
widgetSlidesTemplate?:
|
|
5658
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
|
|
5659
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
|
|
5660
|
+
}
|
|
5661
|
+
/**
|
|
5662
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5663
|
+
*/
|
|
5664
|
+
export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
|
|
5665
|
+
/**
|
|
5666
|
+
* Export types this template applies to.
|
|
5667
|
+
*/
|
|
5668
|
+
appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5669
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
5670
|
+
introSlide?: IntroSlideTemplate | null;
|
|
5671
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
5672
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5673
|
+
}
|
|
5674
|
+
export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5675
|
+
readonly PDF: "PDF";
|
|
5676
|
+
readonly PPTX: "PPTX";
|
|
5677
|
+
};
|
|
5678
|
+
export type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5679
|
+
/**
|
|
5680
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5681
|
+
*/
|
|
5682
|
+
export interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
|
|
5683
|
+
/**
|
|
5684
|
+
* Export types this template applies to.
|
|
5685
|
+
*/
|
|
5686
|
+
appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5687
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5696
5688
|
}
|
|
5689
|
+
export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5690
|
+
readonly PDF: "PDF";
|
|
5691
|
+
readonly PPTX: "PPTX";
|
|
5692
|
+
};
|
|
5693
|
+
export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5697
5694
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5698
5695
|
data: JsonApiExportTemplatePatch;
|
|
5699
5696
|
}
|
|
@@ -5782,7 +5779,7 @@ export interface JsonApiFactOutDocument {
|
|
|
5782
5779
|
export interface JsonApiFactOutList {
|
|
5783
5780
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5784
5781
|
links?: ListLinks;
|
|
5785
|
-
meta?:
|
|
5782
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5786
5783
|
/**
|
|
5787
5784
|
* Included resources
|
|
5788
5785
|
*/
|
|
@@ -5821,7 +5818,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5821
5818
|
* API identifier of an object
|
|
5822
5819
|
*/
|
|
5823
5820
|
id: string;
|
|
5824
|
-
attributes:
|
|
5821
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5825
5822
|
}
|
|
5826
5823
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5827
5824
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5854,13 +5851,23 @@ export interface JsonApiFilterContextOut {
|
|
|
5854
5851
|
*/
|
|
5855
5852
|
id: string;
|
|
5856
5853
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5857
|
-
attributes:
|
|
5854
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5858
5855
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5859
5856
|
}
|
|
5860
5857
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
5861
5858
|
readonly FILTER_CONTEXT: "filterContext";
|
|
5862
5859
|
};
|
|
5863
5860
|
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
|
+
}
|
|
5864
5871
|
export interface JsonApiFilterContextOutDocument {
|
|
5865
5872
|
data: JsonApiFilterContextOut;
|
|
5866
5873
|
links?: ObjectLinks;
|
|
@@ -5879,7 +5886,7 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5879
5886
|
export interface JsonApiFilterContextOutList {
|
|
5880
5887
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5881
5888
|
links?: ListLinks;
|
|
5882
|
-
meta?:
|
|
5889
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
5883
5890
|
/**
|
|
5884
5891
|
* Included resources
|
|
5885
5892
|
*/
|
|
@@ -5900,7 +5907,7 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5900
5907
|
*/
|
|
5901
5908
|
id: string;
|
|
5902
5909
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5903
|
-
attributes:
|
|
5910
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5904
5911
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5905
5912
|
links?: ObjectLinks;
|
|
5906
5913
|
}
|
|
@@ -5941,7 +5948,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5941
5948
|
* API identifier of an object
|
|
5942
5949
|
*/
|
|
5943
5950
|
id?: string;
|
|
5944
|
-
attributes:
|
|
5951
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5945
5952
|
}
|
|
5946
5953
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5947
5954
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5962,34 +5969,16 @@ export interface JsonApiFilterViewIn {
|
|
|
5962
5969
|
* API identifier of an object
|
|
5963
5970
|
*/
|
|
5964
5971
|
id: string;
|
|
5965
|
-
attributes:
|
|
5966
|
-
relationships?:
|
|
5972
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
5973
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
5967
5974
|
}
|
|
5968
5975
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
5969
5976
|
readonly FILTER_VIEW: "filterView";
|
|
5970
5977
|
};
|
|
5971
5978
|
export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
5972
|
-
export interface JsonApiFilterViewInAttributes {
|
|
5973
|
-
title: string;
|
|
5974
|
-
description?: string;
|
|
5975
|
-
tags?: Array<string>;
|
|
5976
|
-
areRelationsValid?: boolean;
|
|
5977
|
-
/**
|
|
5978
|
-
* Indicator whether the filter view should by applied by default.
|
|
5979
|
-
*/
|
|
5980
|
-
isDefault?: boolean;
|
|
5981
|
-
/**
|
|
5982
|
-
* The respective filter context.
|
|
5983
|
-
*/
|
|
5984
|
-
content: object;
|
|
5985
|
-
}
|
|
5986
5979
|
export interface JsonApiFilterViewInDocument {
|
|
5987
5980
|
data: JsonApiFilterViewIn;
|
|
5988
5981
|
}
|
|
5989
|
-
export interface JsonApiFilterViewInRelationships {
|
|
5990
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5991
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5992
|
-
}
|
|
5993
5982
|
/**
|
|
5994
5983
|
* JSON:API representation of filterView entity.
|
|
5995
5984
|
*/
|
|
@@ -6002,13 +5991,27 @@ export interface JsonApiFilterViewOut {
|
|
|
6002
5991
|
* API identifier of an object
|
|
6003
5992
|
*/
|
|
6004
5993
|
id: string;
|
|
6005
|
-
attributes:
|
|
6006
|
-
relationships?:
|
|
5994
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
5995
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6007
5996
|
}
|
|
6008
5997
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
6009
5998
|
readonly FILTER_VIEW: "filterView";
|
|
6010
5999
|
};
|
|
6011
6000
|
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
|
+
}
|
|
6012
6015
|
export interface JsonApiFilterViewOutDocument {
|
|
6013
6016
|
data: JsonApiFilterViewOut;
|
|
6014
6017
|
links?: ObjectLinks;
|
|
@@ -6027,7 +6030,7 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
6027
6030
|
export interface JsonApiFilterViewOutList {
|
|
6028
6031
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
6029
6032
|
links?: ListLinks;
|
|
6030
|
-
meta?:
|
|
6033
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6031
6034
|
/**
|
|
6032
6035
|
* Included resources
|
|
6033
6036
|
*/
|
|
@@ -6042,8 +6045,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
6042
6045
|
* API identifier of an object
|
|
6043
6046
|
*/
|
|
6044
6047
|
id: string;
|
|
6045
|
-
attributes:
|
|
6046
|
-
relationships?:
|
|
6048
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
6049
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6047
6050
|
links?: ObjectLinks;
|
|
6048
6051
|
}
|
|
6049
6052
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6063,7 +6066,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6063
6066
|
*/
|
|
6064
6067
|
id: string;
|
|
6065
6068
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6066
|
-
relationships?:
|
|
6069
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6067
6070
|
}
|
|
6068
6071
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6069
6072
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6086,6 +6089,13 @@ export interface JsonApiFilterViewPatchAttributes {
|
|
|
6086
6089
|
export interface JsonApiFilterViewPatchDocument {
|
|
6087
6090
|
data: JsonApiFilterViewPatch;
|
|
6088
6091
|
}
|
|
6092
|
+
export interface JsonApiFilterViewPatchRelationships {
|
|
6093
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6094
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
6095
|
+
}
|
|
6096
|
+
export interface JsonApiFilterViewPatchRelationshipsUser {
|
|
6097
|
+
data: JsonApiUserLinkage | null;
|
|
6098
|
+
}
|
|
6089
6099
|
/**
|
|
6090
6100
|
* JSON:API representation of identityProvider entity.
|
|
6091
6101
|
*/
|
|
@@ -6098,69 +6108,12 @@ export interface JsonApiIdentityProviderIn {
|
|
|
6098
6108
|
* API identifier of an object
|
|
6099
6109
|
*/
|
|
6100
6110
|
id: string;
|
|
6101
|
-
attributes?:
|
|
6111
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
6102
6112
|
}
|
|
6103
6113
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
6104
6114
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6105
6115
|
};
|
|
6106
6116
|
export type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
6107
|
-
export interface JsonApiIdentityProviderInAttributes {
|
|
6108
|
-
/**
|
|
6109
|
-
* 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.
|
|
6110
|
-
*/
|
|
6111
|
-
identifiers?: Array<string>;
|
|
6112
|
-
/**
|
|
6113
|
-
* 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.
|
|
6114
|
-
*/
|
|
6115
|
-
customClaimMapping?: {
|
|
6116
|
-
[key: string]: string;
|
|
6117
|
-
};
|
|
6118
|
-
/**
|
|
6119
|
-
* 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.
|
|
6120
|
-
*/
|
|
6121
|
-
samlMetadata?: string;
|
|
6122
|
-
/**
|
|
6123
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6124
|
-
*/
|
|
6125
|
-
oauthClientId?: string;
|
|
6126
|
-
/**
|
|
6127
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6128
|
-
*/
|
|
6129
|
-
oauthClientSecret?: string;
|
|
6130
|
-
/**
|
|
6131
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
6132
|
-
*/
|
|
6133
|
-
oauthIssuerLocation?: string;
|
|
6134
|
-
/**
|
|
6135
|
-
* 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.
|
|
6136
|
-
*/
|
|
6137
|
-
oauthIssuerId?: string;
|
|
6138
|
-
/**
|
|
6139
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
6140
|
-
*/
|
|
6141
|
-
oauthSubjectIdClaim?: string;
|
|
6142
|
-
/**
|
|
6143
|
-
* 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.
|
|
6144
|
-
*/
|
|
6145
|
-
oauthCustomAuthAttributes?: {
|
|
6146
|
-
[key: string]: string;
|
|
6147
|
-
};
|
|
6148
|
-
/**
|
|
6149
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
6150
|
-
*/
|
|
6151
|
-
oauthCustomScopes?: Array<string> | null;
|
|
6152
|
-
/**
|
|
6153
|
-
* 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.
|
|
6154
|
-
*/
|
|
6155
|
-
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
6156
|
-
}
|
|
6157
|
-
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
6158
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
6159
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
6160
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
6161
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
6162
|
-
};
|
|
6163
|
-
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
6164
6117
|
export interface JsonApiIdentityProviderInDocument {
|
|
6165
6118
|
data: JsonApiIdentityProviderIn;
|
|
6166
6119
|
}
|
|
@@ -6252,7 +6205,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6252
6205
|
export interface JsonApiIdentityProviderOutList {
|
|
6253
6206
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6254
6207
|
links?: ListLinks;
|
|
6255
|
-
meta?:
|
|
6208
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6256
6209
|
}
|
|
6257
6210
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6258
6211
|
/**
|
|
@@ -6282,12 +6235,69 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
6282
6235
|
* API identifier of an object
|
|
6283
6236
|
*/
|
|
6284
6237
|
id: string;
|
|
6285
|
-
attributes?:
|
|
6238
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
6286
6239
|
}
|
|
6287
6240
|
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
6288
6241
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
6289
6242
|
};
|
|
6290
6243
|
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];
|
|
6291
6301
|
export interface JsonApiIdentityProviderPatchDocument {
|
|
6292
6302
|
data: JsonApiIdentityProviderPatch;
|
|
6293
6303
|
}
|
|
@@ -6303,7 +6313,7 @@ export interface JsonApiJwkIn {
|
|
|
6303
6313
|
* API identifier of an object
|
|
6304
6314
|
*/
|
|
6305
6315
|
id: string;
|
|
6306
|
-
attributes?:
|
|
6316
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
6307
6317
|
}
|
|
6308
6318
|
export declare const JsonApiJwkInTypeEnum: {
|
|
6309
6319
|
readonly JWK: "jwk";
|
|
@@ -6324,15 +6334,12 @@ export interface JsonApiJwkOut {
|
|
|
6324
6334
|
* API identifier of an object
|
|
6325
6335
|
*/
|
|
6326
6336
|
id: string;
|
|
6327
|
-
attributes?:
|
|
6337
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
6328
6338
|
}
|
|
6329
6339
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
6330
6340
|
readonly JWK: "jwk";
|
|
6331
6341
|
};
|
|
6332
6342
|
export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
|
|
6333
|
-
export interface JsonApiJwkOutAttributes {
|
|
6334
|
-
content?: RsaSpecification;
|
|
6335
|
-
}
|
|
6336
6343
|
export interface JsonApiJwkOutDocument {
|
|
6337
6344
|
data: JsonApiJwkOut;
|
|
6338
6345
|
links?: ObjectLinks;
|
|
@@ -6343,7 +6350,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6343
6350
|
export interface JsonApiJwkOutList {
|
|
6344
6351
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6345
6352
|
links?: ListLinks;
|
|
6346
|
-
meta?:
|
|
6353
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6347
6354
|
}
|
|
6348
6355
|
export interface JsonApiJwkOutWithLinks {
|
|
6349
6356
|
/**
|
|
@@ -6354,7 +6361,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
6354
6361
|
* API identifier of an object
|
|
6355
6362
|
*/
|
|
6356
6363
|
id: string;
|
|
6357
|
-
attributes?:
|
|
6364
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
6358
6365
|
links?: ObjectLinks;
|
|
6359
6366
|
}
|
|
6360
6367
|
export declare const JsonApiJwkOutWithLinksTypeEnum: {
|
|
@@ -6373,12 +6380,15 @@ export interface JsonApiJwkPatch {
|
|
|
6373
6380
|
* API identifier of an object
|
|
6374
6381
|
*/
|
|
6375
6382
|
id: string;
|
|
6376
|
-
attributes?:
|
|
6383
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
6377
6384
|
}
|
|
6378
6385
|
export declare const JsonApiJwkPatchTypeEnum: {
|
|
6379
6386
|
readonly JWK: "jwk";
|
|
6380
6387
|
};
|
|
6381
6388
|
export type JsonApiJwkPatchTypeEnum = (typeof JsonApiJwkPatchTypeEnum)[keyof typeof JsonApiJwkPatchTypeEnum];
|
|
6389
|
+
export interface JsonApiJwkPatchAttributes {
|
|
6390
|
+
content?: RsaSpecification;
|
|
6391
|
+
}
|
|
6382
6392
|
export interface JsonApiJwkPatchDocument {
|
|
6383
6393
|
data: JsonApiJwkPatch;
|
|
6384
6394
|
}
|
|
@@ -6422,6 +6432,7 @@ export interface JsonApiLabelOutAttributes {
|
|
|
6422
6432
|
sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
|
|
6423
6433
|
valueType?: JsonApiLabelOutAttributesValueTypeEnum;
|
|
6424
6434
|
isHidden?: boolean;
|
|
6435
|
+
geoAreaConfig?: JsonApiLabelOutAttributesGeoAreaConfig;
|
|
6425
6436
|
areRelationsValid?: boolean;
|
|
6426
6437
|
}
|
|
6427
6438
|
export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
|
|
@@ -6440,9 +6451,16 @@ export declare const JsonApiLabelOutAttributesValueTypeEnum: {
|
|
|
6440
6451
|
readonly GEO: "GEO";
|
|
6441
6452
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
6442
6453
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
6454
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
6443
6455
|
readonly IMAGE: "IMAGE";
|
|
6444
6456
|
};
|
|
6445
6457
|
export type JsonApiLabelOutAttributesValueTypeEnum = (typeof JsonApiLabelOutAttributesValueTypeEnum)[keyof typeof JsonApiLabelOutAttributesValueTypeEnum];
|
|
6458
|
+
/**
|
|
6459
|
+
* Configuration specific to geo area labels.
|
|
6460
|
+
*/
|
|
6461
|
+
export interface JsonApiLabelOutAttributesGeoAreaConfig {
|
|
6462
|
+
collection: GeoCollection;
|
|
6463
|
+
}
|
|
6446
6464
|
export interface JsonApiLabelOutDocument {
|
|
6447
6465
|
data: JsonApiLabelOut;
|
|
6448
6466
|
links?: ObjectLinks;
|
|
@@ -6457,7 +6475,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6457
6475
|
export interface JsonApiLabelOutList {
|
|
6458
6476
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6459
6477
|
links?: ListLinks;
|
|
6460
|
-
meta?:
|
|
6478
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6461
6479
|
/**
|
|
6462
6480
|
* Included resources
|
|
6463
6481
|
*/
|
|
@@ -6594,7 +6612,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6594
6612
|
export interface JsonApiLlmEndpointOutList {
|
|
6595
6613
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6596
6614
|
links?: ListLinks;
|
|
6597
|
-
meta?:
|
|
6615
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6598
6616
|
}
|
|
6599
6617
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6600
6618
|
/**
|
|
@@ -6676,27 +6694,54 @@ export interface JsonApiMemoryItemIn {
|
|
|
6676
6694
|
* API identifier of an object
|
|
6677
6695
|
*/
|
|
6678
6696
|
id: string;
|
|
6679
|
-
attributes:
|
|
6697
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
6680
6698
|
}
|
|
6681
6699
|
export declare const JsonApiMemoryItemInTypeEnum: {
|
|
6682
6700
|
readonly MEMORY_ITEM: "memoryItem";
|
|
6683
6701
|
};
|
|
6684
6702
|
export type JsonApiMemoryItemInTypeEnum = (typeof JsonApiMemoryItemInTypeEnum)[keyof typeof JsonApiMemoryItemInTypeEnum];
|
|
6685
|
-
export interface
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
*/
|
|
6691
|
-
export interface JsonApiMemoryItemOut {
|
|
6703
|
+
export interface JsonApiMemoryItemInAttributes {
|
|
6704
|
+
title?: string;
|
|
6705
|
+
description?: string;
|
|
6706
|
+
tags?: Array<string>;
|
|
6707
|
+
areRelationsValid?: boolean;
|
|
6692
6708
|
/**
|
|
6693
|
-
*
|
|
6709
|
+
* Strategy defining when the memory item should be applied
|
|
6694
6710
|
*/
|
|
6695
|
-
|
|
6711
|
+
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
6696
6712
|
/**
|
|
6697
|
-
*
|
|
6713
|
+
* The text that will be injected into the system prompt
|
|
6698
6714
|
*/
|
|
6699
|
-
|
|
6715
|
+
instruction: string;
|
|
6716
|
+
/**
|
|
6717
|
+
* Set of unique strings used for semantic similarity filtering
|
|
6718
|
+
*/
|
|
6719
|
+
keywords?: Array<string>;
|
|
6720
|
+
/**
|
|
6721
|
+
* Whether memory item is disabled
|
|
6722
|
+
*/
|
|
6723
|
+
isDisabled?: boolean;
|
|
6724
|
+
}
|
|
6725
|
+
export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
|
|
6726
|
+
readonly ALWAYS: "ALWAYS";
|
|
6727
|
+
readonly AUTO: "AUTO";
|
|
6728
|
+
};
|
|
6729
|
+
export type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
|
|
6730
|
+
export interface JsonApiMemoryItemInDocument {
|
|
6731
|
+
data: JsonApiMemoryItemIn;
|
|
6732
|
+
}
|
|
6733
|
+
/**
|
|
6734
|
+
* JSON:API representation of memoryItem entity.
|
|
6735
|
+
*/
|
|
6736
|
+
export interface JsonApiMemoryItemOut {
|
|
6737
|
+
/**
|
|
6738
|
+
* Object type
|
|
6739
|
+
*/
|
|
6740
|
+
type: JsonApiMemoryItemOutTypeEnum;
|
|
6741
|
+
/**
|
|
6742
|
+
* API identifier of an object
|
|
6743
|
+
*/
|
|
6744
|
+
id: string;
|
|
6700
6745
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6701
6746
|
attributes: JsonApiMemoryItemOutAttributes;
|
|
6702
6747
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
@@ -6748,7 +6793,7 @@ export interface JsonApiMemoryItemOutDocument {
|
|
|
6748
6793
|
export interface JsonApiMemoryItemOutList {
|
|
6749
6794
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
6750
6795
|
links?: ListLinks;
|
|
6751
|
-
meta?:
|
|
6796
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6752
6797
|
/**
|
|
6753
6798
|
* Included resources
|
|
6754
6799
|
*/
|
|
@@ -6832,39 +6877,12 @@ export interface JsonApiMemoryItemPostOptionalId {
|
|
|
6832
6877
|
* API identifier of an object
|
|
6833
6878
|
*/
|
|
6834
6879
|
id?: string;
|
|
6835
|
-
attributes:
|
|
6880
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
6836
6881
|
}
|
|
6837
6882
|
export declare const JsonApiMemoryItemPostOptionalIdTypeEnum: {
|
|
6838
6883
|
readonly MEMORY_ITEM: "memoryItem";
|
|
6839
6884
|
};
|
|
6840
6885
|
export type JsonApiMemoryItemPostOptionalIdTypeEnum = (typeof JsonApiMemoryItemPostOptionalIdTypeEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdTypeEnum];
|
|
6841
|
-
export interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
6842
|
-
title?: string;
|
|
6843
|
-
description?: string;
|
|
6844
|
-
tags?: Array<string>;
|
|
6845
|
-
areRelationsValid?: boolean;
|
|
6846
|
-
/**
|
|
6847
|
-
* Strategy defining when the memory item should be applied
|
|
6848
|
-
*/
|
|
6849
|
-
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
6850
|
-
/**
|
|
6851
|
-
* The text that will be injected into the system prompt
|
|
6852
|
-
*/
|
|
6853
|
-
instruction: string;
|
|
6854
|
-
/**
|
|
6855
|
-
* Set of unique strings used for semantic similarity filtering
|
|
6856
|
-
*/
|
|
6857
|
-
keywords?: Array<string>;
|
|
6858
|
-
/**
|
|
6859
|
-
* Whether memory item is disabled
|
|
6860
|
-
*/
|
|
6861
|
-
isDisabled?: boolean;
|
|
6862
|
-
}
|
|
6863
|
-
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
6864
|
-
readonly ALWAYS: "ALWAYS";
|
|
6865
|
-
readonly AUTO: "AUTO";
|
|
6866
|
-
};
|
|
6867
|
-
export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
6868
6886
|
export interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
6869
6887
|
data: JsonApiMemoryItemPostOptionalId;
|
|
6870
6888
|
}
|
|
@@ -6880,12 +6898,20 @@ export interface JsonApiMetricIn {
|
|
|
6880
6898
|
* API identifier of an object
|
|
6881
6899
|
*/
|
|
6882
6900
|
id: string;
|
|
6883
|
-
attributes:
|
|
6901
|
+
attributes: JsonApiMetricInAttributes;
|
|
6884
6902
|
}
|
|
6885
6903
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6886
6904
|
readonly METRIC: "metric";
|
|
6887
6905
|
};
|
|
6888
6906
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6907
|
+
export interface JsonApiMetricInAttributes {
|
|
6908
|
+
title?: string;
|
|
6909
|
+
description?: string;
|
|
6910
|
+
tags?: Array<string>;
|
|
6911
|
+
areRelationsValid?: boolean;
|
|
6912
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6913
|
+
isHidden?: boolean;
|
|
6914
|
+
}
|
|
6889
6915
|
export interface JsonApiMetricInDocument {
|
|
6890
6916
|
data: JsonApiMetricIn;
|
|
6891
6917
|
}
|
|
@@ -6952,7 +6978,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6952
6978
|
export interface JsonApiMetricOutList {
|
|
6953
6979
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6954
6980
|
links?: ListLinks;
|
|
6955
|
-
meta?:
|
|
6981
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
6956
6982
|
/**
|
|
6957
6983
|
* Included resources
|
|
6958
6984
|
*/
|
|
@@ -7017,20 +7043,12 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
7017
7043
|
* API identifier of an object
|
|
7018
7044
|
*/
|
|
7019
7045
|
id?: string;
|
|
7020
|
-
attributes:
|
|
7046
|
+
attributes: JsonApiMetricInAttributes;
|
|
7021
7047
|
}
|
|
7022
7048
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
7023
7049
|
readonly METRIC: "metric";
|
|
7024
7050
|
};
|
|
7025
7051
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
7026
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
7027
|
-
title?: string;
|
|
7028
|
-
description?: string;
|
|
7029
|
-
tags?: Array<string>;
|
|
7030
|
-
areRelationsValid?: boolean;
|
|
7031
|
-
content: JsonApiMetricOutAttributesContent;
|
|
7032
|
-
isHidden?: boolean;
|
|
7033
|
-
}
|
|
7034
7052
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
7035
7053
|
data: JsonApiMetricPostOptionalId;
|
|
7036
7054
|
}
|
|
@@ -7084,7 +7102,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
7084
7102
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
7085
7103
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
7086
7104
|
links?: ListLinks;
|
|
7087
|
-
meta?:
|
|
7105
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7088
7106
|
}
|
|
7089
7107
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
7090
7108
|
/**
|
|
@@ -7114,54 +7132,12 @@ export interface JsonApiNotificationChannelIn {
|
|
|
7114
7132
|
* API identifier of an object
|
|
7115
7133
|
*/
|
|
7116
7134
|
id: string;
|
|
7117
|
-
attributes?:
|
|
7135
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
7118
7136
|
}
|
|
7119
7137
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
7120
7138
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7121
7139
|
};
|
|
7122
7140
|
export type JsonApiNotificationChannelInTypeEnum = (typeof JsonApiNotificationChannelInTypeEnum)[keyof typeof JsonApiNotificationChannelInTypeEnum];
|
|
7123
|
-
export interface JsonApiNotificationChannelInAttributes {
|
|
7124
|
-
name?: string | null;
|
|
7125
|
-
description?: string | null;
|
|
7126
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
7127
|
-
/**
|
|
7128
|
-
* 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}
|
|
7129
|
-
*/
|
|
7130
|
-
customDashboardUrl?: string;
|
|
7131
|
-
/**
|
|
7132
|
-
* 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
|
|
7133
|
-
*/
|
|
7134
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
7135
|
-
/**
|
|
7136
|
-
* 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}}
|
|
7137
|
-
*/
|
|
7138
|
-
notificationSource?: string;
|
|
7139
|
-
/**
|
|
7140
|
-
* 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
|
|
7141
|
-
*/
|
|
7142
|
-
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
7143
|
-
/**
|
|
7144
|
-
* 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
|
|
7145
|
-
*/
|
|
7146
|
-
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
7147
|
-
}
|
|
7148
|
-
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
7149
|
-
readonly HIDDEN: "HIDDEN";
|
|
7150
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7151
|
-
readonly ALL: "ALL";
|
|
7152
|
-
};
|
|
7153
|
-
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
7154
|
-
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
7155
|
-
readonly CREATOR: "CREATOR";
|
|
7156
|
-
readonly INTERNAL: "INTERNAL";
|
|
7157
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
7158
|
-
};
|
|
7159
|
-
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
7160
|
-
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
7161
|
-
readonly DISABLED: "DISABLED";
|
|
7162
|
-
readonly ENABLED: "ENABLED";
|
|
7163
|
-
};
|
|
7164
|
-
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
7165
7141
|
export interface JsonApiNotificationChannelInDocument {
|
|
7166
7142
|
data: JsonApiNotificationChannelIn;
|
|
7167
7143
|
}
|
|
@@ -7197,7 +7173,7 @@ export type JsonApiNotificationChannelOutTypeEnum = (typeof JsonApiNotificationC
|
|
|
7197
7173
|
export interface JsonApiNotificationChannelOutAttributes {
|
|
7198
7174
|
name?: string | null;
|
|
7199
7175
|
description?: string | null;
|
|
7200
|
-
destination?:
|
|
7176
|
+
destination?: JsonApiNotificationChannelPatchAttributesDestination;
|
|
7201
7177
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
7202
7178
|
/**
|
|
7203
7179
|
* 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}
|
|
@@ -7244,11 +7220,6 @@ export declare const JsonApiNotificationChannelOutAttributesInPlatformNotificati
|
|
|
7244
7220
|
readonly ENABLED: "ENABLED";
|
|
7245
7221
|
};
|
|
7246
7222
|
export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum];
|
|
7247
|
-
/**
|
|
7248
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
7249
|
-
* The destination where the notifications are to be sent.
|
|
7250
|
-
*/
|
|
7251
|
-
export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
7252
7223
|
export interface JsonApiNotificationChannelOutDocument {
|
|
7253
7224
|
data: JsonApiNotificationChannelOut;
|
|
7254
7225
|
links?: ObjectLinks;
|
|
@@ -7259,7 +7230,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
7259
7230
|
export interface JsonApiNotificationChannelOutList {
|
|
7260
7231
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
7261
7232
|
links?: ListLinks;
|
|
7262
|
-
meta?:
|
|
7233
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7263
7234
|
}
|
|
7264
7235
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
7265
7236
|
/**
|
|
@@ -7289,12 +7260,59 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
7289
7260
|
* API identifier of an object
|
|
7290
7261
|
*/
|
|
7291
7262
|
id: string;
|
|
7292
|
-
attributes?:
|
|
7263
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
7293
7264
|
}
|
|
7294
7265
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
7295
7266
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7296
7267
|
};
|
|
7297
7268
|
export type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
7269
|
+
export interface JsonApiNotificationChannelPatchAttributes {
|
|
7270
|
+
name?: string | null;
|
|
7271
|
+
description?: string | null;
|
|
7272
|
+
destination?: JsonApiNotificationChannelPatchAttributesDestination;
|
|
7273
|
+
/**
|
|
7274
|
+
* 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
|
+
*/
|
|
7276
|
+
customDashboardUrl?: string;
|
|
7277
|
+
/**
|
|
7278
|
+
* 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
|
+
*/
|
|
7280
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
7281
|
+
/**
|
|
7282
|
+
* 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
|
+
*/
|
|
7284
|
+
notificationSource?: string;
|
|
7285
|
+
/**
|
|
7286
|
+
* 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
|
+
*/
|
|
7288
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
7289
|
+
/**
|
|
7290
|
+
* 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
|
+
*/
|
|
7292
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
7293
|
+
}
|
|
7294
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
7295
|
+
readonly HIDDEN: "HIDDEN";
|
|
7296
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7297
|
+
readonly ALL: "ALL";
|
|
7298
|
+
};
|
|
7299
|
+
export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
7300
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
7301
|
+
readonly CREATOR: "CREATOR";
|
|
7302
|
+
readonly INTERNAL: "INTERNAL";
|
|
7303
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
7304
|
+
};
|
|
7305
|
+
export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
7306
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
7307
|
+
readonly DISABLED: "DISABLED";
|
|
7308
|
+
readonly ENABLED: "ENABLED";
|
|
7309
|
+
};
|
|
7310
|
+
export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
7311
|
+
/**
|
|
7312
|
+
* @type JsonApiNotificationChannelPatchAttributesDestination
|
|
7313
|
+
* The destination where the notifications are to be sent.
|
|
7314
|
+
*/
|
|
7315
|
+
export type JsonApiNotificationChannelPatchAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
7298
7316
|
export interface JsonApiNotificationChannelPatchDocument {
|
|
7299
7317
|
data: JsonApiNotificationChannelPatch;
|
|
7300
7318
|
}
|
|
@@ -7310,7 +7328,7 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
7310
7328
|
* API identifier of an object
|
|
7311
7329
|
*/
|
|
7312
7330
|
id?: string;
|
|
7313
|
-
attributes?:
|
|
7331
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
7314
7332
|
}
|
|
7315
7333
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7316
7334
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -7331,36 +7349,16 @@ export interface JsonApiOrganizationIn {
|
|
|
7331
7349
|
* API identifier of an object
|
|
7332
7350
|
*/
|
|
7333
7351
|
id: string;
|
|
7334
|
-
attributes?:
|
|
7335
|
-
relationships?:
|
|
7352
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7353
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7336
7354
|
}
|
|
7337
7355
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7338
7356
|
readonly ORGANIZATION: "organization";
|
|
7339
7357
|
};
|
|
7340
7358
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7341
|
-
export interface JsonApiOrganizationInAttributes {
|
|
7342
|
-
name?: string | null;
|
|
7343
|
-
hostname?: string;
|
|
7344
|
-
allowedOrigins?: Array<string>;
|
|
7345
|
-
/**
|
|
7346
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7347
|
-
* @deprecated
|
|
7348
|
-
*/
|
|
7349
|
-
earlyAccess?: string | null;
|
|
7350
|
-
/**
|
|
7351
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7352
|
-
*/
|
|
7353
|
-
earlyAccessValues?: Array<string> | null;
|
|
7354
|
-
}
|
|
7355
7359
|
export interface JsonApiOrganizationInDocument {
|
|
7356
7360
|
data: JsonApiOrganizationIn;
|
|
7357
7361
|
}
|
|
7358
|
-
export interface JsonApiOrganizationInRelationships {
|
|
7359
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7360
|
-
}
|
|
7361
|
-
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7362
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7363
|
-
}
|
|
7364
7362
|
/**
|
|
7365
7363
|
* JSON:API representation of organization entity.
|
|
7366
7364
|
*/
|
|
@@ -7429,15 +7427,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7429
7427
|
};
|
|
7430
7428
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7431
7429
|
export interface JsonApiOrganizationOutRelationships {
|
|
7432
|
-
bootstrapUser?:
|
|
7433
|
-
bootstrapUserGroup?:
|
|
7434
|
-
identityProvider?:
|
|
7435
|
-
}
|
|
7436
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7437
|
-
data: JsonApiUserLinkage | null;
|
|
7438
|
-
}
|
|
7439
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7440
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7430
|
+
bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
|
|
7431
|
+
bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
7432
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7441
7433
|
}
|
|
7442
7434
|
/**
|
|
7443
7435
|
* JSON:API representation of patching organization entity.
|
|
@@ -7451,16 +7443,36 @@ export interface JsonApiOrganizationPatch {
|
|
|
7451
7443
|
* API identifier of an object
|
|
7452
7444
|
*/
|
|
7453
7445
|
id: string;
|
|
7454
|
-
attributes?:
|
|
7455
|
-
relationships?:
|
|
7446
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7447
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7456
7448
|
}
|
|
7457
7449
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7458
7450
|
readonly ORGANIZATION: "organization";
|
|
7459
7451
|
};
|
|
7460
7452
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
7453
|
+
export interface JsonApiOrganizationPatchAttributes {
|
|
7454
|
+
name?: string | null;
|
|
7455
|
+
hostname?: string;
|
|
7456
|
+
allowedOrigins?: Array<string>;
|
|
7457
|
+
/**
|
|
7458
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7459
|
+
* @deprecated
|
|
7460
|
+
*/
|
|
7461
|
+
earlyAccess?: string | null;
|
|
7462
|
+
/**
|
|
7463
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7464
|
+
*/
|
|
7465
|
+
earlyAccessValues?: Array<string> | null;
|
|
7466
|
+
}
|
|
7461
7467
|
export interface JsonApiOrganizationPatchDocument {
|
|
7462
7468
|
data: JsonApiOrganizationPatch;
|
|
7463
7469
|
}
|
|
7470
|
+
export interface JsonApiOrganizationPatchRelationships {
|
|
7471
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7472
|
+
}
|
|
7473
|
+
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
7474
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7475
|
+
}
|
|
7464
7476
|
/**
|
|
7465
7477
|
* JSON:API representation of organizationSetting entity.
|
|
7466
7478
|
*/
|
|
@@ -7473,7 +7485,7 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7473
7485
|
* API identifier of an object
|
|
7474
7486
|
*/
|
|
7475
7487
|
id: string;
|
|
7476
|
-
attributes?:
|
|
7488
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
7477
7489
|
}
|
|
7478
7490
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7479
7491
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7494,54 +7506,12 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7494
7506
|
* API identifier of an object
|
|
7495
7507
|
*/
|
|
7496
7508
|
id: string;
|
|
7497
|
-
attributes?:
|
|
7509
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
7498
7510
|
}
|
|
7499
7511
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7500
7512
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7501
7513
|
};
|
|
7502
7514
|
export type JsonApiOrganizationSettingOutTypeEnum = (typeof JsonApiOrganizationSettingOutTypeEnum)[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
7503
|
-
export interface JsonApiOrganizationSettingOutAttributes {
|
|
7504
|
-
/**
|
|
7505
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7506
|
-
*/
|
|
7507
|
-
content?: object;
|
|
7508
|
-
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
7509
|
-
}
|
|
7510
|
-
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
7511
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
7512
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7513
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7514
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7515
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7516
|
-
readonly LOCALE: "LOCALE";
|
|
7517
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7518
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7519
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7520
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7521
|
-
readonly WEEK_START: "WEEK_START";
|
|
7522
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7523
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7524
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7525
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7526
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7527
|
-
readonly ALERT: "ALERT";
|
|
7528
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
7529
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7530
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7531
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7532
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7533
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7534
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7535
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7536
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7537
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7538
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7539
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7540
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7541
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7542
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7543
|
-
};
|
|
7544
|
-
export type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
7545
7515
|
export interface JsonApiOrganizationSettingOutDocument {
|
|
7546
7516
|
data: JsonApiOrganizationSettingOut;
|
|
7547
7517
|
links?: ObjectLinks;
|
|
@@ -7552,7 +7522,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7552
7522
|
export interface JsonApiOrganizationSettingOutList {
|
|
7553
7523
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7554
7524
|
links?: ListLinks;
|
|
7555
|
-
meta?:
|
|
7525
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7556
7526
|
}
|
|
7557
7527
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7558
7528
|
/**
|
|
@@ -7563,7 +7533,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7563
7533
|
* API identifier of an object
|
|
7564
7534
|
*/
|
|
7565
7535
|
id: string;
|
|
7566
|
-
attributes?:
|
|
7536
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
7567
7537
|
links?: ObjectLinks;
|
|
7568
7538
|
}
|
|
7569
7539
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7582,12 +7552,55 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7582
7552
|
* API identifier of an object
|
|
7583
7553
|
*/
|
|
7584
7554
|
id: string;
|
|
7585
|
-
attributes?:
|
|
7555
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
7586
7556
|
}
|
|
7587
7557
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7588
7558
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7589
7559
|
};
|
|
7590
7560
|
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];
|
|
7591
7604
|
export interface JsonApiOrganizationSettingPatchDocument {
|
|
7592
7605
|
data: JsonApiOrganizationSettingPatch;
|
|
7593
7606
|
}
|
|
@@ -7640,7 +7653,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7640
7653
|
export interface JsonApiThemeOutList {
|
|
7641
7654
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7642
7655
|
links?: ListLinks;
|
|
7643
|
-
meta?:
|
|
7656
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7644
7657
|
}
|
|
7645
7658
|
export interface JsonApiThemeOutWithLinks {
|
|
7646
7659
|
/**
|
|
@@ -7691,8 +7704,8 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7691
7704
|
* API identifier of an object
|
|
7692
7705
|
*/
|
|
7693
7706
|
id: string;
|
|
7694
|
-
attributes:
|
|
7695
|
-
relationships?:
|
|
7707
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7708
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7696
7709
|
}
|
|
7697
7710
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7698
7711
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7714,13 +7727,20 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7714
7727
|
*/
|
|
7715
7728
|
id: string;
|
|
7716
7729
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7717
|
-
attributes:
|
|
7730
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7718
7731
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7719
7732
|
}
|
|
7720
7733
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
7721
7734
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7722
7735
|
};
|
|
7723
7736
|
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
|
+
}
|
|
7724
7744
|
export interface JsonApiUserDataFilterOutDocument {
|
|
7725
7745
|
data: JsonApiUserDataFilterOut;
|
|
7726
7746
|
links?: ObjectLinks;
|
|
@@ -7739,15 +7759,15 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7739
7759
|
export interface JsonApiUserDataFilterOutList {
|
|
7740
7760
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7741
7761
|
links?: ListLinks;
|
|
7742
|
-
meta?:
|
|
7762
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7743
7763
|
/**
|
|
7744
7764
|
* Included resources
|
|
7745
7765
|
*/
|
|
7746
7766
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7747
7767
|
}
|
|
7748
7768
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7749
|
-
user?:
|
|
7750
|
-
userGroup?:
|
|
7769
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
7770
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
7751
7771
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7752
7772
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7753
7773
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -7764,7 +7784,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7764
7784
|
*/
|
|
7765
7785
|
id: string;
|
|
7766
7786
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7767
|
-
attributes:
|
|
7787
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7768
7788
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7769
7789
|
links?: ObjectLinks;
|
|
7770
7790
|
}
|
|
@@ -7785,7 +7805,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7785
7805
|
*/
|
|
7786
7806
|
id: string;
|
|
7787
7807
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7788
|
-
relationships?:
|
|
7808
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7789
7809
|
}
|
|
7790
7810
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7791
7811
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7801,6 +7821,13 @@ export interface JsonApiUserDataFilterPatchAttributes {
|
|
|
7801
7821
|
export interface JsonApiUserDataFilterPatchDocument {
|
|
7802
7822
|
data: JsonApiUserDataFilterPatch;
|
|
7803
7823
|
}
|
|
7824
|
+
export interface JsonApiUserDataFilterPatchRelationships {
|
|
7825
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
7826
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
7827
|
+
}
|
|
7828
|
+
export interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
7829
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7830
|
+
}
|
|
7804
7831
|
/**
|
|
7805
7832
|
* JSON:API representation of userDataFilter entity.
|
|
7806
7833
|
*/
|
|
@@ -7813,27 +7840,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7813
7840
|
* API identifier of an object
|
|
7814
7841
|
*/
|
|
7815
7842
|
id?: string;
|
|
7816
|
-
attributes:
|
|
7817
|
-
relationships?:
|
|
7843
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7844
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7818
7845
|
}
|
|
7819
7846
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7820
7847
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7821
7848
|
};
|
|
7822
7849
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
|
|
7823
|
-
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
7824
|
-
title?: string;
|
|
7825
|
-
description?: string;
|
|
7826
|
-
tags?: Array<string>;
|
|
7827
|
-
areRelationsValid?: boolean;
|
|
7828
|
-
maql: string;
|
|
7829
|
-
}
|
|
7830
7850
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7831
7851
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7832
7852
|
}
|
|
7833
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7834
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7835
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7836
|
-
}
|
|
7837
7853
|
/**
|
|
7838
7854
|
* JSON:API representation of userGroup entity.
|
|
7839
7855
|
*/
|
|
@@ -7846,8 +7862,8 @@ export interface JsonApiUserGroupIn {
|
|
|
7846
7862
|
* API identifier of an object
|
|
7847
7863
|
*/
|
|
7848
7864
|
id: string;
|
|
7849
|
-
attributes?:
|
|
7850
|
-
relationships?:
|
|
7865
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
7866
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
7851
7867
|
}
|
|
7852
7868
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
7853
7869
|
readonly USER_GROUP: "userGroup";
|
|
@@ -7879,16 +7895,13 @@ export interface JsonApiUserGroupOut {
|
|
|
7879
7895
|
* API identifier of an object
|
|
7880
7896
|
*/
|
|
7881
7897
|
id: string;
|
|
7882
|
-
attributes?:
|
|
7883
|
-
relationships?:
|
|
7898
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
7899
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
7884
7900
|
}
|
|
7885
7901
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
7886
7902
|
readonly USER_GROUP: "userGroup";
|
|
7887
7903
|
};
|
|
7888
7904
|
export type JsonApiUserGroupOutTypeEnum = (typeof JsonApiUserGroupOutTypeEnum)[keyof typeof JsonApiUserGroupOutTypeEnum];
|
|
7889
|
-
export interface JsonApiUserGroupOutAttributes {
|
|
7890
|
-
name?: string;
|
|
7891
|
-
}
|
|
7892
7905
|
export interface JsonApiUserGroupOutDocument {
|
|
7893
7906
|
data: JsonApiUserGroupOut;
|
|
7894
7907
|
links?: ObjectLinks;
|
|
@@ -7903,21 +7916,12 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7903
7916
|
export interface JsonApiUserGroupOutList {
|
|
7904
7917
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7905
7918
|
links?: ListLinks;
|
|
7906
|
-
meta?:
|
|
7919
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
7907
7920
|
/**
|
|
7908
7921
|
* Included resources
|
|
7909
7922
|
*/
|
|
7910
7923
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7911
7924
|
}
|
|
7912
|
-
export interface JsonApiUserGroupOutRelationships {
|
|
7913
|
-
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
7914
|
-
}
|
|
7915
|
-
export interface JsonApiUserGroupOutRelationshipsParents {
|
|
7916
|
-
/**
|
|
7917
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7918
|
-
*/
|
|
7919
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
7920
|
-
}
|
|
7921
7925
|
export interface JsonApiUserGroupOutWithLinks {
|
|
7922
7926
|
/**
|
|
7923
7927
|
* Object type
|
|
@@ -7927,8 +7931,8 @@ export interface JsonApiUserGroupOutWithLinks {
|
|
|
7927
7931
|
* API identifier of an object
|
|
7928
7932
|
*/
|
|
7929
7933
|
id: string;
|
|
7930
|
-
attributes?:
|
|
7931
|
-
relationships?:
|
|
7934
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
7935
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
7932
7936
|
links?: ObjectLinks;
|
|
7933
7937
|
}
|
|
7934
7938
|
export declare const JsonApiUserGroupOutWithLinksTypeEnum: {
|
|
@@ -7947,16 +7951,28 @@ export interface JsonApiUserGroupPatch {
|
|
|
7947
7951
|
* API identifier of an object
|
|
7948
7952
|
*/
|
|
7949
7953
|
id: string;
|
|
7950
|
-
attributes?:
|
|
7951
|
-
relationships?:
|
|
7954
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
7955
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
7952
7956
|
}
|
|
7953
7957
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
7954
7958
|
readonly USER_GROUP: "userGroup";
|
|
7955
7959
|
};
|
|
7956
7960
|
export type JsonApiUserGroupPatchTypeEnum = (typeof JsonApiUserGroupPatchTypeEnum)[keyof typeof JsonApiUserGroupPatchTypeEnum];
|
|
7961
|
+
export interface JsonApiUserGroupPatchAttributes {
|
|
7962
|
+
name?: string;
|
|
7963
|
+
}
|
|
7957
7964
|
export interface JsonApiUserGroupPatchDocument {
|
|
7958
7965
|
data: JsonApiUserGroupPatch;
|
|
7959
7966
|
}
|
|
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
|
+
}
|
|
7960
7976
|
/**
|
|
7961
7977
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7962
7978
|
*/
|
|
@@ -8001,7 +8017,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
8001
8017
|
export interface JsonApiUserIdentifierOutList {
|
|
8002
8018
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
8003
8019
|
links?: ListLinks;
|
|
8004
|
-
meta?:
|
|
8020
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8005
8021
|
}
|
|
8006
8022
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
8007
8023
|
/**
|
|
@@ -8031,8 +8047,8 @@ export interface JsonApiUserIn {
|
|
|
8031
8047
|
* API identifier of an object
|
|
8032
8048
|
*/
|
|
8033
8049
|
id: string;
|
|
8034
|
-
attributes?:
|
|
8035
|
-
relationships?:
|
|
8050
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
8051
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
8036
8052
|
}
|
|
8037
8053
|
export declare const JsonApiUserInTypeEnum: {
|
|
8038
8054
|
readonly USER: "user";
|
|
@@ -8064,19 +8080,13 @@ export interface JsonApiUserOut {
|
|
|
8064
8080
|
* API identifier of an object
|
|
8065
8081
|
*/
|
|
8066
8082
|
id: string;
|
|
8067
|
-
attributes?:
|
|
8068
|
-
relationships?:
|
|
8083
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
8084
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
8069
8085
|
}
|
|
8070
8086
|
export declare const JsonApiUserOutTypeEnum: {
|
|
8071
8087
|
readonly USER: "user";
|
|
8072
8088
|
};
|
|
8073
8089
|
export type JsonApiUserOutTypeEnum = (typeof JsonApiUserOutTypeEnum)[keyof typeof JsonApiUserOutTypeEnum];
|
|
8074
|
-
export interface JsonApiUserOutAttributes {
|
|
8075
|
-
authenticationId?: string;
|
|
8076
|
-
firstname?: string;
|
|
8077
|
-
lastname?: string;
|
|
8078
|
-
email?: string;
|
|
8079
|
-
}
|
|
8080
8090
|
export interface JsonApiUserOutDocument {
|
|
8081
8091
|
data: JsonApiUserOut;
|
|
8082
8092
|
links?: ObjectLinks;
|
|
@@ -8091,15 +8101,12 @@ export interface JsonApiUserOutDocument {
|
|
|
8091
8101
|
export interface JsonApiUserOutList {
|
|
8092
8102
|
data: Array<JsonApiUserOutWithLinks>;
|
|
8093
8103
|
links?: ListLinks;
|
|
8094
|
-
meta?:
|
|
8104
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8095
8105
|
/**
|
|
8096
8106
|
* Included resources
|
|
8097
8107
|
*/
|
|
8098
8108
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
8099
8109
|
}
|
|
8100
|
-
export interface JsonApiUserOutRelationships {
|
|
8101
|
-
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
8102
|
-
}
|
|
8103
8110
|
export interface JsonApiUserOutWithLinks {
|
|
8104
8111
|
/**
|
|
8105
8112
|
* Object type
|
|
@@ -8109,8 +8116,8 @@ export interface JsonApiUserOutWithLinks {
|
|
|
8109
8116
|
* API identifier of an object
|
|
8110
8117
|
*/
|
|
8111
8118
|
id: string;
|
|
8112
|
-
attributes?:
|
|
8113
|
-
relationships?:
|
|
8119
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
8120
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
8114
8121
|
links?: ObjectLinks;
|
|
8115
8122
|
}
|
|
8116
8123
|
export declare const JsonApiUserOutWithLinksTypeEnum: {
|
|
@@ -8129,16 +8136,25 @@ export interface JsonApiUserPatch {
|
|
|
8129
8136
|
* API identifier of an object
|
|
8130
8137
|
*/
|
|
8131
8138
|
id: string;
|
|
8132
|
-
attributes?:
|
|
8133
|
-
relationships?:
|
|
8139
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
8140
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
8134
8141
|
}
|
|
8135
8142
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
8136
8143
|
readonly USER: "user";
|
|
8137
8144
|
};
|
|
8138
8145
|
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
|
+
}
|
|
8139
8152
|
export interface JsonApiUserPatchDocument {
|
|
8140
8153
|
data: JsonApiUserPatch;
|
|
8141
8154
|
}
|
|
8155
|
+
export interface JsonApiUserPatchRelationships {
|
|
8156
|
+
userGroups?: JsonApiUserGroupPatchRelationshipsParents;
|
|
8157
|
+
}
|
|
8142
8158
|
/**
|
|
8143
8159
|
* JSON:API representation of userSetting entity.
|
|
8144
8160
|
*/
|
|
@@ -8151,7 +8167,7 @@ export interface JsonApiUserSettingIn {
|
|
|
8151
8167
|
* API identifier of an object
|
|
8152
8168
|
*/
|
|
8153
8169
|
id: string;
|
|
8154
|
-
attributes?:
|
|
8170
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
8155
8171
|
}
|
|
8156
8172
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
8157
8173
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8172,7 +8188,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8172
8188
|
* API identifier of an object
|
|
8173
8189
|
*/
|
|
8174
8190
|
id: string;
|
|
8175
|
-
attributes?:
|
|
8191
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
8176
8192
|
}
|
|
8177
8193
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
8178
8194
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8188,7 +8204,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
8188
8204
|
export interface JsonApiUserSettingOutList {
|
|
8189
8205
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
8190
8206
|
links?: ListLinks;
|
|
8191
|
-
meta?:
|
|
8207
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8192
8208
|
}
|
|
8193
8209
|
export interface JsonApiUserSettingOutWithLinks {
|
|
8194
8210
|
/**
|
|
@@ -8199,7 +8215,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8199
8215
|
* API identifier of an object
|
|
8200
8216
|
*/
|
|
8201
8217
|
id: string;
|
|
8202
|
-
attributes?:
|
|
8218
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
8203
8219
|
links?: ObjectLinks;
|
|
8204
8220
|
}
|
|
8205
8221
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -8218,12 +8234,23 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
8218
8234
|
* API identifier of an object
|
|
8219
8235
|
*/
|
|
8220
8236
|
id: string;
|
|
8221
|
-
attributes:
|
|
8237
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8222
8238
|
}
|
|
8223
8239
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
8224
8240
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8225
8241
|
};
|
|
8226
8242
|
export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
|
|
8243
|
+
export interface JsonApiVisualizationObjectInAttributes {
|
|
8244
|
+
title?: string;
|
|
8245
|
+
description?: string;
|
|
8246
|
+
tags?: Array<string>;
|
|
8247
|
+
areRelationsValid?: boolean;
|
|
8248
|
+
/**
|
|
8249
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8250
|
+
*/
|
|
8251
|
+
content: object;
|
|
8252
|
+
isHidden?: boolean;
|
|
8253
|
+
}
|
|
8227
8254
|
export interface JsonApiVisualizationObjectInDocument {
|
|
8228
8255
|
data: JsonApiVisualizationObjectIn;
|
|
8229
8256
|
}
|
|
@@ -8285,7 +8312,7 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8285
8312
|
export interface JsonApiVisualizationObjectOutList {
|
|
8286
8313
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8287
8314
|
links?: ListLinks;
|
|
8288
|
-
meta?:
|
|
8315
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8289
8316
|
/**
|
|
8290
8317
|
* Included resources
|
|
8291
8318
|
*/
|
|
@@ -8413,23 +8440,12 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8413
8440
|
* API identifier of an object
|
|
8414
8441
|
*/
|
|
8415
8442
|
id?: string;
|
|
8416
|
-
attributes:
|
|
8443
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8417
8444
|
}
|
|
8418
8445
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8419
8446
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8420
8447
|
};
|
|
8421
8448
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
|
|
8422
|
-
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
8423
|
-
title?: string;
|
|
8424
|
-
description?: string;
|
|
8425
|
-
tags?: Array<string>;
|
|
8426
|
-
areRelationsValid?: boolean;
|
|
8427
|
-
/**
|
|
8428
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8429
|
-
*/
|
|
8430
|
-
content: object;
|
|
8431
|
-
isHidden?: boolean;
|
|
8432
|
-
}
|
|
8433
8449
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
8434
8450
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
8435
8451
|
}
|
|
@@ -8462,20 +8478,23 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8462
8478
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8463
8479
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8464
8480
|
links?: ListLinks;
|
|
8465
|
-
meta?:
|
|
8481
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8466
8482
|
/**
|
|
8467
8483
|
* Included resources
|
|
8468
8484
|
*/
|
|
8469
8485
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
8470
8486
|
}
|
|
8487
|
+
export interface JsonApiWorkspaceAutomationOutListMeta {
|
|
8488
|
+
page?: PageMetadata;
|
|
8489
|
+
}
|
|
8471
8490
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8472
|
-
workspace?:
|
|
8473
|
-
notificationChannel?:
|
|
8474
|
-
analyticalDashboard?:
|
|
8491
|
+
workspace?: JsonApiWorkspacePatchRelationshipsParent;
|
|
8492
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
8493
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
8475
8494
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8476
8495
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8477
|
-
exportDefinitions?:
|
|
8478
|
-
recipients?:
|
|
8496
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
8497
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
8479
8498
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8480
8499
|
}
|
|
8481
8500
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -8567,7 +8586,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8567
8586
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8568
8587
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8569
8588
|
links?: ListLinks;
|
|
8570
|
-
meta?:
|
|
8589
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8571
8590
|
/**
|
|
8572
8591
|
* Included resources
|
|
8573
8592
|
*/
|
|
@@ -8634,27 +8653,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8634
8653
|
* API identifier of an object
|
|
8635
8654
|
*/
|
|
8636
8655
|
id: string;
|
|
8637
|
-
attributes?:
|
|
8638
|
-
relationships?:
|
|
8656
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8657
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8639
8658
|
}
|
|
8640
8659
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8641
8660
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8642
8661
|
};
|
|
8643
8662
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
8644
|
-
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8645
|
-
title?: string;
|
|
8646
|
-
description?: string;
|
|
8647
|
-
filterValues?: Array<string>;
|
|
8648
|
-
}
|
|
8649
8663
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8650
8664
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
8651
8665
|
}
|
|
8652
|
-
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8653
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8654
|
-
}
|
|
8655
|
-
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8656
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8657
|
-
}
|
|
8658
8666
|
/**
|
|
8659
8667
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8660
8668
|
*/
|
|
@@ -8679,8 +8687,8 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8679
8687
|
*/
|
|
8680
8688
|
id: string;
|
|
8681
8689
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8682
|
-
attributes?:
|
|
8683
|
-
relationships?:
|
|
8690
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8691
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8684
8692
|
}
|
|
8685
8693
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8686
8694
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8700,7 +8708,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8700
8708
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8701
8709
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8702
8710
|
links?: ListLinks;
|
|
8703
|
-
meta?:
|
|
8711
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8704
8712
|
/**
|
|
8705
8713
|
* Included resources
|
|
8706
8714
|
*/
|
|
@@ -8716,8 +8724,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8716
8724
|
*/
|
|
8717
8725
|
id: string;
|
|
8718
8726
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8719
|
-
attributes?:
|
|
8720
|
-
relationships?:
|
|
8727
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8728
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8721
8729
|
links?: ObjectLinks;
|
|
8722
8730
|
}
|
|
8723
8731
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8736,16 +8744,27 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8736
8744
|
* API identifier of an object
|
|
8737
8745
|
*/
|
|
8738
8746
|
id: string;
|
|
8739
|
-
attributes?:
|
|
8740
|
-
relationships?:
|
|
8747
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8748
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8741
8749
|
}
|
|
8742
8750
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8743
8751
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8744
8752
|
};
|
|
8745
8753
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
8754
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
8755
|
+
title?: string;
|
|
8756
|
+
description?: string;
|
|
8757
|
+
filterValues?: Array<string>;
|
|
8758
|
+
}
|
|
8746
8759
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
8747
8760
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
8748
8761
|
}
|
|
8762
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
8763
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
8764
|
+
}
|
|
8765
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
8766
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8767
|
+
}
|
|
8749
8768
|
/**
|
|
8750
8769
|
* JSON:API representation of workspace entity.
|
|
8751
8770
|
*/
|
|
@@ -8758,8 +8777,8 @@ export interface JsonApiWorkspaceIn {
|
|
|
8758
8777
|
* API identifier of an object
|
|
8759
8778
|
*/
|
|
8760
8779
|
id: string;
|
|
8761
|
-
attributes?:
|
|
8762
|
-
relationships?:
|
|
8780
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
8781
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
8763
8782
|
}
|
|
8764
8783
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
8765
8784
|
readonly WORKSPACE: "workspace";
|
|
@@ -8792,45 +8811,13 @@ export interface JsonApiWorkspaceOut {
|
|
|
8792
8811
|
*/
|
|
8793
8812
|
id: string;
|
|
8794
8813
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8795
|
-
attributes?:
|
|
8796
|
-
relationships?:
|
|
8814
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
8815
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
8797
8816
|
}
|
|
8798
8817
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
8799
8818
|
readonly WORKSPACE: "workspace";
|
|
8800
8819
|
};
|
|
8801
8820
|
export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
|
|
8802
|
-
export interface JsonApiWorkspaceOutAttributes {
|
|
8803
|
-
name?: string | null;
|
|
8804
|
-
/**
|
|
8805
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8806
|
-
* @deprecated
|
|
8807
|
-
*/
|
|
8808
|
-
earlyAccess?: string | null;
|
|
8809
|
-
/**
|
|
8810
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
8811
|
-
*/
|
|
8812
|
-
earlyAccessValues?: Array<string> | null;
|
|
8813
|
-
description?: string | null;
|
|
8814
|
-
/**
|
|
8815
|
-
* Custom prefix of entity identifiers in workspace
|
|
8816
|
-
*/
|
|
8817
|
-
prefix?: string | null;
|
|
8818
|
-
cacheExtraLimit?: number;
|
|
8819
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
8820
|
-
}
|
|
8821
|
-
/**
|
|
8822
|
-
* 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.
|
|
8823
|
-
*/
|
|
8824
|
-
export interface JsonApiWorkspaceOutAttributesDataSource {
|
|
8825
|
-
/**
|
|
8826
|
-
* The ID of the used data source.
|
|
8827
|
-
*/
|
|
8828
|
-
id: string;
|
|
8829
|
-
/**
|
|
8830
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8831
|
-
*/
|
|
8832
|
-
schemaPath?: Array<string>;
|
|
8833
|
-
}
|
|
8834
8821
|
export interface JsonApiWorkspaceOutDocument {
|
|
8835
8822
|
data: JsonApiWorkspaceOut;
|
|
8836
8823
|
links?: ObjectLinks;
|
|
@@ -8845,7 +8832,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8845
8832
|
export interface JsonApiWorkspaceOutList {
|
|
8846
8833
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8847
8834
|
links?: ListLinks;
|
|
8848
|
-
meta?:
|
|
8835
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8849
8836
|
/**
|
|
8850
8837
|
* Included resources
|
|
8851
8838
|
*/
|
|
@@ -8898,12 +8885,6 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
|
|
|
8898
8885
|
*/
|
|
8899
8886
|
childrenCount: number;
|
|
8900
8887
|
}
|
|
8901
|
-
export interface JsonApiWorkspaceOutRelationships {
|
|
8902
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8903
|
-
}
|
|
8904
|
-
export interface JsonApiWorkspaceOutRelationshipsParent {
|
|
8905
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
8906
|
-
}
|
|
8907
8888
|
export interface JsonApiWorkspaceOutWithLinks {
|
|
8908
8889
|
/**
|
|
8909
8890
|
* Object type
|
|
@@ -8914,8 +8895,8 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
8914
8895
|
*/
|
|
8915
8896
|
id: string;
|
|
8916
8897
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8917
|
-
attributes?:
|
|
8918
|
-
relationships?:
|
|
8898
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
8899
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
8919
8900
|
links?: ObjectLinks;
|
|
8920
8901
|
}
|
|
8921
8902
|
export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
|
|
@@ -8934,16 +8915,54 @@ export interface JsonApiWorkspacePatch {
|
|
|
8934
8915
|
* API identifier of an object
|
|
8935
8916
|
*/
|
|
8936
8917
|
id: string;
|
|
8937
|
-
attributes?:
|
|
8938
|
-
relationships?:
|
|
8918
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
8919
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
8939
8920
|
}
|
|
8940
8921
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
8941
8922
|
readonly WORKSPACE: "workspace";
|
|
8942
8923
|
};
|
|
8943
8924
|
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
|
+
}
|
|
8944
8957
|
export interface JsonApiWorkspacePatchDocument {
|
|
8945
8958
|
data: JsonApiWorkspacePatch;
|
|
8946
8959
|
}
|
|
8960
|
+
export interface JsonApiWorkspacePatchRelationships {
|
|
8961
|
+
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
8962
|
+
}
|
|
8963
|
+
export interface JsonApiWorkspacePatchRelationshipsParent {
|
|
8964
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
8965
|
+
}
|
|
8947
8966
|
/**
|
|
8948
8967
|
* JSON:API representation of workspaceSetting entity.
|
|
8949
8968
|
*/
|
|
@@ -8956,7 +8975,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8956
8975
|
* API identifier of an object
|
|
8957
8976
|
*/
|
|
8958
8977
|
id: string;
|
|
8959
|
-
attributes?:
|
|
8978
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
8960
8979
|
}
|
|
8961
8980
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8962
8981
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8978,7 +8997,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8978
8997
|
*/
|
|
8979
8998
|
id: string;
|
|
8980
8999
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8981
|
-
attributes?:
|
|
9000
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
8982
9001
|
}
|
|
8983
9002
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
8984
9003
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8994,7 +9013,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
8994
9013
|
export interface JsonApiWorkspaceSettingOutList {
|
|
8995
9014
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
8996
9015
|
links?: ListLinks;
|
|
8997
|
-
meta?:
|
|
9016
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
8998
9017
|
}
|
|
8999
9018
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
9000
9019
|
/**
|
|
@@ -9006,7 +9025,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
9006
9025
|
*/
|
|
9007
9026
|
id: string;
|
|
9008
9027
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
9009
|
-
attributes?:
|
|
9028
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
9010
9029
|
links?: ObjectLinks;
|
|
9011
9030
|
}
|
|
9012
9031
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -9025,7 +9044,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
9025
9044
|
* API identifier of an object
|
|
9026
9045
|
*/
|
|
9027
9046
|
id: string;
|
|
9028
|
-
attributes?:
|
|
9047
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
9029
9048
|
}
|
|
9030
9049
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
9031
9050
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9046,7 +9065,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
9046
9065
|
* API identifier of an object
|
|
9047
9066
|
*/
|
|
9048
9067
|
id?: string;
|
|
9049
|
-
attributes?:
|
|
9068
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
9050
9069
|
}
|
|
9051
9070
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
9052
9071
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9737,6 +9756,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
9737
9756
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
9738
9757
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
9739
9758
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
9759
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
9740
9760
|
};
|
|
9741
9761
|
export type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
9742
9762
|
export interface RsaSpecification {
|