@gooddata/api-client-tiger 10.44.0-alpha.1 → 10.44.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +964 -852
- package/esm/generated/metadata-json-api/api.d.ts +895 -785
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +223 -71
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9785 -9765
- package/package.json +3 -3
|
@@ -378,6 +378,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
378
378
|
* @memberof ActionsApi
|
|
379
379
|
*/
|
|
380
380
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
|
|
381
|
+
/**
|
|
382
|
+
*
|
|
383
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
384
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
385
|
+
* @param {*} [options] Override http request option.
|
|
386
|
+
* @throws {RequiredError}
|
|
387
|
+
* @memberof ActionsApi
|
|
388
|
+
*/
|
|
389
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
|
|
381
390
|
/**
|
|
382
391
|
*
|
|
383
392
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -924,6 +933,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: MetadataConfi
|
|
|
924
933
|
* @throws {RequiredError}
|
|
925
934
|
*/
|
|
926
935
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
936
|
+
/**
|
|
937
|
+
*
|
|
938
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
939
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
940
|
+
* @param {*} [options] Override http request option.
|
|
941
|
+
* @throws {RequiredError}
|
|
942
|
+
*/
|
|
943
|
+
unsubscribeOrganizationAutomations: (organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
927
944
|
/**
|
|
928
945
|
*
|
|
929
946
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -1608,6 +1625,14 @@ export declare const ActionsApiFactory: (configuration?: MetadataConfiguration,
|
|
|
1608
1625
|
* @throws {RequiredError}
|
|
1609
1626
|
*/
|
|
1610
1627
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1628
|
+
/**
|
|
1629
|
+
*
|
|
1630
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
1631
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
1632
|
+
* @param {*} [options] Override http request option.
|
|
1633
|
+
* @throws {RequiredError}
|
|
1634
|
+
*/
|
|
1635
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1611
1636
|
/**
|
|
1612
1637
|
*
|
|
1613
1638
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -2022,6 +2047,14 @@ export declare const ActionsApiFp: (configuration?: MetadataConfiguration) => {
|
|
|
2022
2047
|
* @throws {RequiredError}
|
|
2023
2048
|
*/
|
|
2024
2049
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
2053
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
2054
|
+
* @param {*} [options] Override http request option.
|
|
2055
|
+
* @throws {RequiredError}
|
|
2056
|
+
*/
|
|
2057
|
+
unsubscribeOrganizationAutomations(organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2025
2058
|
/**
|
|
2026
2059
|
*
|
|
2027
2060
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -2520,6 +2553,15 @@ export declare interface ActionsApiInterface {
|
|
|
2520
2553
|
* @memberof ActionsApiInterface
|
|
2521
2554
|
*/
|
|
2522
2555
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2556
|
+
/**
|
|
2557
|
+
*
|
|
2558
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
2559
|
+
* @param {ActionsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
2560
|
+
* @param {*} [options] Override http request option.
|
|
2561
|
+
* @throws {RequiredError}
|
|
2562
|
+
* @memberof ActionsApiInterface
|
|
2563
|
+
*/
|
|
2564
|
+
unsubscribeOrganizationAutomations(requestParameters: ActionsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2523
2565
|
/**
|
|
2524
2566
|
*
|
|
2525
2567
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -3200,6 +3242,20 @@ export declare interface ActionsApiUnsubscribeAutomationRequest {
|
|
|
3200
3242
|
readonly automationId: string;
|
|
3201
3243
|
}
|
|
3202
3244
|
|
|
3245
|
+
/**
|
|
3246
|
+
* Request parameters for unsubscribeOrganizationAutomations operation in ActionsApi.
|
|
3247
|
+
* @export
|
|
3248
|
+
* @interface ActionsApiUnsubscribeOrganizationAutomationsRequest
|
|
3249
|
+
*/
|
|
3250
|
+
export declare interface ActionsApiUnsubscribeOrganizationAutomationsRequest {
|
|
3251
|
+
/**
|
|
3252
|
+
*
|
|
3253
|
+
* @type {OrganizationAutomationManagementBulkRequest}
|
|
3254
|
+
* @memberof ActionsApiUnsubscribeOrganizationAutomations
|
|
3255
|
+
*/
|
|
3256
|
+
readonly organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3203
3259
|
/**
|
|
3204
3260
|
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in ActionsApi.
|
|
3205
3261
|
* @export
|
|
@@ -11340,6 +11396,15 @@ export declare class AutomationsApi extends MetadataBaseApi implements Automatio
|
|
|
11340
11396
|
* @memberof AutomationsApi
|
|
11341
11397
|
*/
|
|
11342
11398
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
|
|
11399
|
+
/**
|
|
11400
|
+
*
|
|
11401
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
11402
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
11403
|
+
* @param {*} [options] Override http request option.
|
|
11404
|
+
* @throws {RequiredError}
|
|
11405
|
+
* @memberof AutomationsApi
|
|
11406
|
+
*/
|
|
11407
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any>>;
|
|
11343
11408
|
/**
|
|
11344
11409
|
*
|
|
11345
11410
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -11534,6 +11599,14 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: MetadataC
|
|
|
11534
11599
|
* @throws {RequiredError}
|
|
11535
11600
|
*/
|
|
11536
11601
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
11602
|
+
/**
|
|
11603
|
+
*
|
|
11604
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
11605
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
11606
|
+
* @param {*} [options] Override http request option.
|
|
11607
|
+
* @throws {RequiredError}
|
|
11608
|
+
*/
|
|
11609
|
+
unsubscribeOrganizationAutomations: (organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
11537
11610
|
/**
|
|
11538
11611
|
*
|
|
11539
11612
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -11789,6 +11862,14 @@ export declare const AutomationsApiFactory: (configuration?: MetadataConfigurati
|
|
|
11789
11862
|
* @throws {RequiredError}
|
|
11790
11863
|
*/
|
|
11791
11864
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11865
|
+
/**
|
|
11866
|
+
*
|
|
11867
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
11868
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
11869
|
+
* @param {*} [options] Override http request option.
|
|
11870
|
+
* @throws {RequiredError}
|
|
11871
|
+
*/
|
|
11872
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11792
11873
|
/**
|
|
11793
11874
|
*
|
|
11794
11875
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -11980,6 +12061,14 @@ export declare const AutomationsApiFp: (configuration?: MetadataConfiguration) =
|
|
|
11980
12061
|
* @throws {RequiredError}
|
|
11981
12062
|
*/
|
|
11982
12063
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12064
|
+
/**
|
|
12065
|
+
*
|
|
12066
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
12067
|
+
* @param {OrganizationAutomationManagementBulkRequest} organizationAutomationManagementBulkRequest
|
|
12068
|
+
* @param {*} [options] Override http request option.
|
|
12069
|
+
* @throws {RequiredError}
|
|
12070
|
+
*/
|
|
12071
|
+
unsubscribeOrganizationAutomations(organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11983
12072
|
/**
|
|
11984
12073
|
*
|
|
11985
12074
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -12330,6 +12419,15 @@ export declare interface AutomationsApiInterface {
|
|
|
12330
12419
|
* @memberof AutomationsApiInterface
|
|
12331
12420
|
*/
|
|
12332
12421
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12422
|
+
/**
|
|
12423
|
+
*
|
|
12424
|
+
* @summary Unsubscribe from selected automations across all workspaces
|
|
12425
|
+
* @param {AutomationsApiUnsubscribeOrganizationAutomationsRequest} requestParameters Request parameters.
|
|
12426
|
+
* @param {*} [options] Override http request option.
|
|
12427
|
+
* @throws {RequiredError}
|
|
12428
|
+
* @memberof AutomationsApiInterface
|
|
12429
|
+
*/
|
|
12430
|
+
unsubscribeOrganizationAutomations(requestParameters: AutomationsApiUnsubscribeOrganizationAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12333
12431
|
/**
|
|
12334
12432
|
*
|
|
12335
12433
|
* @summary Unsubscribe from selected automations in the workspace
|
|
@@ -12505,6 +12603,20 @@ export declare interface AutomationsApiUnsubscribeAutomationRequest {
|
|
|
12505
12603
|
readonly automationId: string;
|
|
12506
12604
|
}
|
|
12507
12605
|
|
|
12606
|
+
/**
|
|
12607
|
+
* Request parameters for unsubscribeOrganizationAutomations operation in AutomationsApi.
|
|
12608
|
+
* @export
|
|
12609
|
+
* @interface AutomationsApiUnsubscribeOrganizationAutomationsRequest
|
|
12610
|
+
*/
|
|
12611
|
+
export declare interface AutomationsApiUnsubscribeOrganizationAutomationsRequest {
|
|
12612
|
+
/**
|
|
12613
|
+
*
|
|
12614
|
+
* @type {OrganizationAutomationManagementBulkRequest}
|
|
12615
|
+
* @memberof AutomationsApiUnsubscribeOrganizationAutomations
|
|
12616
|
+
*/
|
|
12617
|
+
readonly organizationAutomationManagementBulkRequest: OrganizationAutomationManagementBulkRequest;
|
|
12618
|
+
}
|
|
12619
|
+
|
|
12508
12620
|
/**
|
|
12509
12621
|
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in AutomationsApi.
|
|
12510
12622
|
* @export
|
|
@@ -43551,7 +43663,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
43551
43663
|
* API identifier of an object
|
|
43552
43664
|
*/
|
|
43553
43665
|
id: string;
|
|
43554
|
-
meta?:
|
|
43666
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
43555
43667
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43556
43668
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43557
43669
|
}
|
|
@@ -43605,7 +43717,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
43605
43717
|
export declare interface JsonApiAggregatedFactOutList {
|
|
43606
43718
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
43607
43719
|
links?: ListLinks;
|
|
43608
|
-
meta?:
|
|
43720
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
43609
43721
|
/**
|
|
43610
43722
|
* Included resources
|
|
43611
43723
|
*/
|
|
@@ -43636,7 +43748,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
43636
43748
|
* API identifier of an object
|
|
43637
43749
|
*/
|
|
43638
43750
|
id: string;
|
|
43639
|
-
meta?:
|
|
43751
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
43640
43752
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43641
43753
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43642
43754
|
links?: ObjectLinks;
|
|
@@ -43660,7 +43772,18 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
43660
43772
|
* API identifier of an object
|
|
43661
43773
|
*/
|
|
43662
43774
|
id: string;
|
|
43663
|
-
attributes:
|
|
43775
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
43776
|
+
}
|
|
43777
|
+
|
|
43778
|
+
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
43779
|
+
title?: string;
|
|
43780
|
+
description?: string;
|
|
43781
|
+
tags?: Array<string>;
|
|
43782
|
+
areRelationsValid?: boolean;
|
|
43783
|
+
/**
|
|
43784
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43785
|
+
*/
|
|
43786
|
+
content: object;
|
|
43664
43787
|
}
|
|
43665
43788
|
|
|
43666
43789
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -43700,23 +43823,10 @@ export declare interface JsonApiAnalyticalDashboardOut {
|
|
|
43700
43823
|
*/
|
|
43701
43824
|
id: string;
|
|
43702
43825
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
43703
|
-
attributes:
|
|
43826
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
43704
43827
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
43705
43828
|
}
|
|
43706
43829
|
|
|
43707
|
-
export declare interface JsonApiAnalyticalDashboardOutAttributes {
|
|
43708
|
-
title?: string;
|
|
43709
|
-
description?: string;
|
|
43710
|
-
tags?: Array<string>;
|
|
43711
|
-
areRelationsValid?: boolean;
|
|
43712
|
-
/**
|
|
43713
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43714
|
-
*/
|
|
43715
|
-
content: object;
|
|
43716
|
-
createdAt?: string;
|
|
43717
|
-
modifiedAt?: string;
|
|
43718
|
-
}
|
|
43719
|
-
|
|
43720
43830
|
export declare interface JsonApiAnalyticalDashboardOutDocument {
|
|
43721
43831
|
data: JsonApiAnalyticalDashboardOut;
|
|
43722
43832
|
links?: ObjectLinks;
|
|
@@ -43737,7 +43847,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
43737
43847
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
43738
43848
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
43739
43849
|
links?: ListLinks;
|
|
43740
|
-
meta?:
|
|
43850
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
43741
43851
|
/**
|
|
43742
43852
|
* Included resources
|
|
43743
43853
|
*/
|
|
@@ -43749,7 +43859,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
43749
43859
|
* List of valid permissions for a logged-in user.
|
|
43750
43860
|
*/
|
|
43751
43861
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
43752
|
-
origin?:
|
|
43862
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
43753
43863
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
43754
43864
|
}
|
|
43755
43865
|
|
|
@@ -43760,24 +43870,6 @@ export declare interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
43760
43870
|
private: boolean;
|
|
43761
43871
|
}
|
|
43762
43872
|
|
|
43763
|
-
export declare interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
43764
|
-
/**
|
|
43765
|
-
* defines type of the origin of the entity
|
|
43766
|
-
*/
|
|
43767
|
-
originType: JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
43768
|
-
/**
|
|
43769
|
-
* defines id of the workspace where the entity comes from
|
|
43770
|
-
*/
|
|
43771
|
-
originId: string;
|
|
43772
|
-
}
|
|
43773
|
-
|
|
43774
|
-
export declare const JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum: {
|
|
43775
|
-
readonly NATIVE: "NATIVE";
|
|
43776
|
-
readonly PARENT: "PARENT";
|
|
43777
|
-
};
|
|
43778
|
-
|
|
43779
|
-
export declare type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = (typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum];
|
|
43780
|
-
|
|
43781
43873
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
43782
43874
|
readonly EDIT: "EDIT";
|
|
43783
43875
|
readonly SHARE: "SHARE";
|
|
@@ -43787,13 +43879,13 @@ export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
|
43787
43879
|
export declare type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = (typeof JsonApiAnalyticalDashboardOutMetaPermissionsEnum)[keyof typeof JsonApiAnalyticalDashboardOutMetaPermissionsEnum];
|
|
43788
43880
|
|
|
43789
43881
|
export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
43790
|
-
createdBy?:
|
|
43791
|
-
modifiedBy?:
|
|
43882
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
43883
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
43792
43884
|
visualizationObjects?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
43793
43885
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
43794
|
-
labels?:
|
|
43795
|
-
metrics?:
|
|
43796
|
-
datasets?:
|
|
43886
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
43887
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
43888
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
43797
43889
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
43798
43890
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
43799
43891
|
}
|
|
@@ -43805,10 +43897,6 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDas
|
|
|
43805
43897
|
data: Array<JsonApiAnalyticalDashboardLinkage>;
|
|
43806
43898
|
}
|
|
43807
43899
|
|
|
43808
|
-
export declare interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
43809
|
-
data: JsonApiUserIdentifierLinkage | null;
|
|
43810
|
-
}
|
|
43811
|
-
|
|
43812
43900
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
43813
43901
|
/**
|
|
43814
43902
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43816,13 +43904,6 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlug
|
|
|
43816
43904
|
data: Array<JsonApiDashboardPluginLinkage>;
|
|
43817
43905
|
}
|
|
43818
43906
|
|
|
43819
|
-
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
43820
|
-
/**
|
|
43821
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43822
|
-
*/
|
|
43823
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
43824
|
-
}
|
|
43825
|
-
|
|
43826
43907
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
43827
43908
|
/**
|
|
43828
43909
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43830,20 +43911,6 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContext
|
|
|
43830
43911
|
data: Array<JsonApiFilterContextLinkage>;
|
|
43831
43912
|
}
|
|
43832
43913
|
|
|
43833
|
-
export declare interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
43834
|
-
/**
|
|
43835
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43836
|
-
*/
|
|
43837
|
-
data: Array<JsonApiLabelLinkage>;
|
|
43838
|
-
}
|
|
43839
|
-
|
|
43840
|
-
export declare interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
43841
|
-
/**
|
|
43842
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
43843
|
-
*/
|
|
43844
|
-
data: Array<JsonApiMetricLinkage>;
|
|
43845
|
-
}
|
|
43846
|
-
|
|
43847
43914
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
43848
43915
|
/**
|
|
43849
43916
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -43867,7 +43934,7 @@ export declare interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
43867
43934
|
*/
|
|
43868
43935
|
id: string;
|
|
43869
43936
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
43870
|
-
attributes:
|
|
43937
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
43871
43938
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
43872
43939
|
links?: ObjectLinks;
|
|
43873
43940
|
}
|
|
@@ -43926,18 +43993,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
43926
43993
|
* API identifier of an object
|
|
43927
43994
|
*/
|
|
43928
43995
|
id?: string;
|
|
43929
|
-
attributes:
|
|
43930
|
-
}
|
|
43931
|
-
|
|
43932
|
-
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
43933
|
-
title?: string;
|
|
43934
|
-
description?: string;
|
|
43935
|
-
tags?: Array<string>;
|
|
43936
|
-
areRelationsValid?: boolean;
|
|
43937
|
-
/**
|
|
43938
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43939
|
-
*/
|
|
43940
|
-
content: object;
|
|
43996
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
43941
43997
|
}
|
|
43942
43998
|
|
|
43943
43999
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -44007,7 +44063,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
44007
44063
|
export declare interface JsonApiApiTokenOutList {
|
|
44008
44064
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
44009
44065
|
links?: ListLinks;
|
|
44010
|
-
meta?:
|
|
44066
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44011
44067
|
}
|
|
44012
44068
|
|
|
44013
44069
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -44097,7 +44153,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
44097
44153
|
* API identifier of an object
|
|
44098
44154
|
*/
|
|
44099
44155
|
id: string;
|
|
44100
|
-
meta?:
|
|
44156
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44101
44157
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44102
44158
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44103
44159
|
}
|
|
@@ -44135,7 +44191,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
44135
44191
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
44136
44192
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
44137
44193
|
links?: ListLinks;
|
|
44138
|
-
meta?:
|
|
44194
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44139
44195
|
/**
|
|
44140
44196
|
* Included resources
|
|
44141
44197
|
*/
|
|
@@ -44143,8 +44199,8 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
44143
44199
|
}
|
|
44144
44200
|
|
|
44145
44201
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
44146
|
-
createdBy?:
|
|
44147
|
-
modifiedBy?:
|
|
44202
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44203
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44148
44204
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
44149
44205
|
}
|
|
44150
44206
|
|
|
@@ -44163,7 +44219,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
44163
44219
|
* API identifier of an object
|
|
44164
44220
|
*/
|
|
44165
44221
|
id: string;
|
|
44166
|
-
meta?:
|
|
44222
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44167
44223
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44168
44224
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44169
44225
|
links?: ObjectLinks;
|
|
@@ -44226,7 +44282,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
44226
44282
|
* API identifier of an object
|
|
44227
44283
|
*/
|
|
44228
44284
|
id: string;
|
|
44229
|
-
meta?:
|
|
44285
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44230
44286
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44231
44287
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44232
44288
|
}
|
|
@@ -44303,7 +44359,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
44303
44359
|
export declare interface JsonApiAttributeOutList {
|
|
44304
44360
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
44305
44361
|
links?: ListLinks;
|
|
44306
|
-
meta?:
|
|
44362
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44307
44363
|
/**
|
|
44308
44364
|
* Included resources
|
|
44309
44365
|
*/
|
|
@@ -44313,7 +44369,7 @@ export declare interface JsonApiAttributeOutList {
|
|
|
44313
44369
|
export declare interface JsonApiAttributeOutRelationships {
|
|
44314
44370
|
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
44315
44371
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
44316
|
-
labels?:
|
|
44372
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
44317
44373
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
44318
44374
|
}
|
|
44319
44375
|
|
|
@@ -44347,7 +44403,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
44347
44403
|
* API identifier of an object
|
|
44348
44404
|
*/
|
|
44349
44405
|
id: string;
|
|
44350
|
-
meta?:
|
|
44406
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44351
44407
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44352
44408
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44353
44409
|
links?: ObjectLinks;
|
|
@@ -44384,7 +44440,7 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
44384
44440
|
* Additional details to be included in the automated message.
|
|
44385
44441
|
*/
|
|
44386
44442
|
details?: object;
|
|
44387
|
-
metadata?:
|
|
44443
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
44388
44444
|
/**
|
|
44389
44445
|
* Current state of the automation.
|
|
44390
44446
|
*/
|
|
@@ -44393,18 +44449,38 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
44393
44449
|
* Specify automation evaluation mode.
|
|
44394
44450
|
*/
|
|
44395
44451
|
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
44396
|
-
schedule?:
|
|
44397
|
-
alert?:
|
|
44398
|
-
tabularExports?: Array<
|
|
44399
|
-
visualExports?: Array<
|
|
44400
|
-
imageExports?: Array<
|
|
44401
|
-
rawExports?: Array<
|
|
44402
|
-
slidesExports?: Array<
|
|
44403
|
-
dashboardTabularExports?: Array<
|
|
44452
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
44453
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
44454
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
44455
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
44456
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
44457
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
44458
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
44459
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
44404
44460
|
/**
|
|
44405
44461
|
* External recipients of the automation action results.
|
|
44406
44462
|
*/
|
|
44407
|
-
externalRecipients?: Array<
|
|
44463
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
44464
|
+
}
|
|
44465
|
+
|
|
44466
|
+
export declare interface JsonApiAutomationInAttributesAlert {
|
|
44467
|
+
execution: AlertAfm;
|
|
44468
|
+
condition: AlertCondition;
|
|
44469
|
+
/**
|
|
44470
|
+
* 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.
|
|
44471
|
+
*/
|
|
44472
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
44473
|
+
}
|
|
44474
|
+
|
|
44475
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
44476
|
+
readonly ALWAYS: "ALWAYS";
|
|
44477
|
+
readonly ONCE: "ONCE";
|
|
44478
|
+
};
|
|
44479
|
+
|
|
44480
|
+
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
44481
|
+
|
|
44482
|
+
export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
44483
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
44408
44484
|
}
|
|
44409
44485
|
|
|
44410
44486
|
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
@@ -44414,6 +44490,52 @@ export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
|
44414
44490
|
|
|
44415
44491
|
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
44416
44492
|
|
|
44493
|
+
export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
44494
|
+
/**
|
|
44495
|
+
* E-mail address to send notifications from.
|
|
44496
|
+
*/
|
|
44497
|
+
email: string;
|
|
44498
|
+
}
|
|
44499
|
+
|
|
44500
|
+
export declare interface JsonApiAutomationInAttributesImageExportsInner {
|
|
44501
|
+
requestPayload: ImageExportRequest;
|
|
44502
|
+
}
|
|
44503
|
+
|
|
44504
|
+
/**
|
|
44505
|
+
* Additional information for the automation.
|
|
44506
|
+
*/
|
|
44507
|
+
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
44508
|
+
widget?: string;
|
|
44509
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
44510
|
+
}
|
|
44511
|
+
|
|
44512
|
+
export declare interface JsonApiAutomationInAttributesRawExportsInner {
|
|
44513
|
+
requestPayload: RawExportAutomationRequest;
|
|
44514
|
+
}
|
|
44515
|
+
|
|
44516
|
+
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
44517
|
+
/**
|
|
44518
|
+
* 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.
|
|
44519
|
+
*/
|
|
44520
|
+
cron: string;
|
|
44521
|
+
/**
|
|
44522
|
+
* Human-readable description of the cron expression.
|
|
44523
|
+
*/
|
|
44524
|
+
cronDescription?: string;
|
|
44525
|
+
/**
|
|
44526
|
+
* Timezone in which the schedule is defined.
|
|
44527
|
+
*/
|
|
44528
|
+
timezone: string;
|
|
44529
|
+
/**
|
|
44530
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
44531
|
+
*/
|
|
44532
|
+
firstRun?: string;
|
|
44533
|
+
}
|
|
44534
|
+
|
|
44535
|
+
export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
44536
|
+
requestPayload: SlidesExportRequest;
|
|
44537
|
+
}
|
|
44538
|
+
|
|
44417
44539
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
44418
44540
|
readonly ACTIVE: "ACTIVE";
|
|
44419
44541
|
readonly PAUSED: "PAUSED";
|
|
@@ -44421,15 +44543,45 @@ export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
|
44421
44543
|
|
|
44422
44544
|
export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
44423
44545
|
|
|
44546
|
+
export declare interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
44547
|
+
requestPayload: TabularExportRequest;
|
|
44548
|
+
}
|
|
44549
|
+
|
|
44550
|
+
export declare interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
44551
|
+
requestPayload: VisualExportRequest;
|
|
44552
|
+
}
|
|
44553
|
+
|
|
44424
44554
|
export declare interface JsonApiAutomationInDocument {
|
|
44425
44555
|
data: JsonApiAutomationIn;
|
|
44426
44556
|
}
|
|
44427
44557
|
|
|
44428
44558
|
export declare interface JsonApiAutomationInRelationships {
|
|
44429
|
-
notificationChannel?:
|
|
44430
|
-
analyticalDashboard?:
|
|
44431
|
-
exportDefinitions?:
|
|
44432
|
-
recipients?:
|
|
44559
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
44560
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
44561
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
44562
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
44563
|
+
}
|
|
44564
|
+
|
|
44565
|
+
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
44566
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
44567
|
+
}
|
|
44568
|
+
|
|
44569
|
+
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
44570
|
+
/**
|
|
44571
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44572
|
+
*/
|
|
44573
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
44574
|
+
}
|
|
44575
|
+
|
|
44576
|
+
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
44577
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
44578
|
+
}
|
|
44579
|
+
|
|
44580
|
+
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
44581
|
+
/**
|
|
44582
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44583
|
+
*/
|
|
44584
|
+
data: Array<JsonApiUserLinkage>;
|
|
44433
44585
|
}
|
|
44434
44586
|
|
|
44435
44587
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
@@ -44464,11 +44616,59 @@ export declare interface JsonApiAutomationOut {
|
|
|
44464
44616
|
* API identifier of an object
|
|
44465
44617
|
*/
|
|
44466
44618
|
id: string;
|
|
44467
|
-
meta?:
|
|
44468
|
-
attributes?:
|
|
44619
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44620
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
44469
44621
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44470
44622
|
}
|
|
44471
44623
|
|
|
44624
|
+
export declare interface JsonApiAutomationOutAttributes {
|
|
44625
|
+
title?: string;
|
|
44626
|
+
description?: string;
|
|
44627
|
+
tags?: Array<string>;
|
|
44628
|
+
areRelationsValid?: boolean;
|
|
44629
|
+
/**
|
|
44630
|
+
* Additional details to be included in the automated message.
|
|
44631
|
+
*/
|
|
44632
|
+
details?: object;
|
|
44633
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
44634
|
+
/**
|
|
44635
|
+
* Current state of the automation.
|
|
44636
|
+
*/
|
|
44637
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
44638
|
+
/**
|
|
44639
|
+
* Specify automation evaluation mode.
|
|
44640
|
+
*/
|
|
44641
|
+
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
44642
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
44643
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
44644
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
44645
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
44646
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
44647
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
44648
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
44649
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
44650
|
+
/**
|
|
44651
|
+
* External recipients of the automation action results.
|
|
44652
|
+
*/
|
|
44653
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
44654
|
+
createdAt?: string;
|
|
44655
|
+
modifiedAt?: string;
|
|
44656
|
+
}
|
|
44657
|
+
|
|
44658
|
+
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
44659
|
+
readonly SHARED: "SHARED";
|
|
44660
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
44661
|
+
};
|
|
44662
|
+
|
|
44663
|
+
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
44664
|
+
|
|
44665
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
44666
|
+
readonly ACTIVE: "ACTIVE";
|
|
44667
|
+
readonly PAUSED: "PAUSED";
|
|
44668
|
+
};
|
|
44669
|
+
|
|
44670
|
+
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
44671
|
+
|
|
44472
44672
|
export declare interface JsonApiAutomationOutDocument {
|
|
44473
44673
|
data: JsonApiAutomationOut;
|
|
44474
44674
|
links?: ObjectLinks;
|
|
@@ -44489,7 +44689,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
44489
44689
|
export declare interface JsonApiAutomationOutList {
|
|
44490
44690
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
44491
44691
|
links?: ListLinks;
|
|
44492
|
-
meta?:
|
|
44692
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44493
44693
|
/**
|
|
44494
44694
|
* Included resources
|
|
44495
44695
|
*/
|
|
@@ -44497,13 +44697,20 @@ export declare interface JsonApiAutomationOutList {
|
|
|
44497
44697
|
}
|
|
44498
44698
|
|
|
44499
44699
|
export declare interface JsonApiAutomationOutRelationships {
|
|
44500
|
-
notificationChannel?:
|
|
44501
|
-
analyticalDashboard?:
|
|
44502
|
-
createdBy?:
|
|
44503
|
-
modifiedBy?:
|
|
44504
|
-
exportDefinitions?:
|
|
44505
|
-
recipients?:
|
|
44506
|
-
automationResults?:
|
|
44700
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
44701
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
44702
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44703
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44704
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
44705
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
44706
|
+
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
44707
|
+
}
|
|
44708
|
+
|
|
44709
|
+
export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
44710
|
+
/**
|
|
44711
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44712
|
+
*/
|
|
44713
|
+
data: Array<JsonApiAutomationResultLinkage>;
|
|
44507
44714
|
}
|
|
44508
44715
|
|
|
44509
44716
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
@@ -44521,8 +44728,8 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
44521
44728
|
* API identifier of an object
|
|
44522
44729
|
*/
|
|
44523
44730
|
id: string;
|
|
44524
|
-
meta?:
|
|
44525
|
-
attributes?:
|
|
44731
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44732
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
44526
44733
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44527
44734
|
links?: ObjectLinks;
|
|
44528
44735
|
}
|
|
@@ -44651,7 +44858,15 @@ export declare interface JsonApiColorPaletteIn {
|
|
|
44651
44858
|
* API identifier of an object
|
|
44652
44859
|
*/
|
|
44653
44860
|
id: string;
|
|
44654
|
-
attributes:
|
|
44861
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
44862
|
+
}
|
|
44863
|
+
|
|
44864
|
+
export declare interface JsonApiColorPaletteInAttributes {
|
|
44865
|
+
name: string;
|
|
44866
|
+
/**
|
|
44867
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44868
|
+
*/
|
|
44869
|
+
content: object;
|
|
44655
44870
|
}
|
|
44656
44871
|
|
|
44657
44872
|
export declare interface JsonApiColorPaletteInDocument {
|
|
@@ -44676,15 +44891,7 @@ export declare interface JsonApiColorPaletteOut {
|
|
|
44676
44891
|
* API identifier of an object
|
|
44677
44892
|
*/
|
|
44678
44893
|
id: string;
|
|
44679
|
-
attributes:
|
|
44680
|
-
}
|
|
44681
|
-
|
|
44682
|
-
export declare interface JsonApiColorPaletteOutAttributes {
|
|
44683
|
-
name: string;
|
|
44684
|
-
/**
|
|
44685
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44686
|
-
*/
|
|
44687
|
-
content: object;
|
|
44894
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
44688
44895
|
}
|
|
44689
44896
|
|
|
44690
44897
|
export declare interface JsonApiColorPaletteOutDocument {
|
|
@@ -44698,7 +44905,11 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
44698
44905
|
export declare interface JsonApiColorPaletteOutList {
|
|
44699
44906
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
44700
44907
|
links?: ListLinks;
|
|
44701
|
-
meta?:
|
|
44908
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44909
|
+
}
|
|
44910
|
+
|
|
44911
|
+
export declare interface JsonApiColorPaletteOutListMeta {
|
|
44912
|
+
page?: PageMetadata;
|
|
44702
44913
|
}
|
|
44703
44914
|
|
|
44704
44915
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -44716,7 +44927,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
|
|
|
44716
44927
|
* API identifier of an object
|
|
44717
44928
|
*/
|
|
44718
44929
|
id: string;
|
|
44719
|
-
attributes:
|
|
44930
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
44720
44931
|
links?: ObjectLinks;
|
|
44721
44932
|
}
|
|
44722
44933
|
|
|
@@ -44855,7 +45066,11 @@ export declare interface JsonApiCspDirectiveIn {
|
|
|
44855
45066
|
* API identifier of an object
|
|
44856
45067
|
*/
|
|
44857
45068
|
id: string;
|
|
44858
|
-
attributes:
|
|
45069
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
45070
|
+
}
|
|
45071
|
+
|
|
45072
|
+
export declare interface JsonApiCspDirectiveInAttributes {
|
|
45073
|
+
sources: Array<string>;
|
|
44859
45074
|
}
|
|
44860
45075
|
|
|
44861
45076
|
export declare interface JsonApiCspDirectiveInDocument {
|
|
@@ -44880,11 +45095,7 @@ export declare interface JsonApiCspDirectiveOut {
|
|
|
44880
45095
|
* API identifier of an object
|
|
44881
45096
|
*/
|
|
44882
45097
|
id: string;
|
|
44883
|
-
attributes:
|
|
44884
|
-
}
|
|
44885
|
-
|
|
44886
|
-
export declare interface JsonApiCspDirectiveOutAttributes {
|
|
44887
|
-
sources: Array<string>;
|
|
45098
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
44888
45099
|
}
|
|
44889
45100
|
|
|
44890
45101
|
export declare interface JsonApiCspDirectiveOutDocument {
|
|
@@ -44898,7 +45109,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
44898
45109
|
export declare interface JsonApiCspDirectiveOutList {
|
|
44899
45110
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
44900
45111
|
links?: ListLinks;
|
|
44901
|
-
meta?:
|
|
45112
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
44902
45113
|
}
|
|
44903
45114
|
|
|
44904
45115
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -44916,7 +45127,7 @@ export declare interface JsonApiCspDirectiveOutWithLinks {
|
|
|
44916
45127
|
* API identifier of an object
|
|
44917
45128
|
*/
|
|
44918
45129
|
id: string;
|
|
44919
|
-
attributes:
|
|
45130
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
44920
45131
|
links?: ObjectLinks;
|
|
44921
45132
|
}
|
|
44922
45133
|
|
|
@@ -44967,7 +45178,15 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
44967
45178
|
* API identifier of an object
|
|
44968
45179
|
*/
|
|
44969
45180
|
id: string;
|
|
44970
|
-
attributes:
|
|
45181
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
45182
|
+
}
|
|
45183
|
+
|
|
45184
|
+
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
45185
|
+
applicationName: string;
|
|
45186
|
+
/**
|
|
45187
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45188
|
+
*/
|
|
45189
|
+
content: object;
|
|
44971
45190
|
}
|
|
44972
45191
|
|
|
44973
45192
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -44992,8 +45211,8 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
44992
45211
|
* API identifier of an object
|
|
44993
45212
|
*/
|
|
44994
45213
|
id: string;
|
|
44995
|
-
meta?:
|
|
44996
|
-
attributes:
|
|
45214
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45215
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
44997
45216
|
}
|
|
44998
45217
|
|
|
44999
45218
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -45007,7 +45226,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
45007
45226
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
45008
45227
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
45009
45228
|
links?: ListLinks;
|
|
45010
|
-
meta?:
|
|
45229
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45011
45230
|
}
|
|
45012
45231
|
|
|
45013
45232
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -45025,8 +45244,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
45025
45244
|
* API identifier of an object
|
|
45026
45245
|
*/
|
|
45027
45246
|
id: string;
|
|
45028
|
-
meta?:
|
|
45029
|
-
attributes:
|
|
45247
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45248
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
45030
45249
|
links?: ObjectLinks;
|
|
45031
45250
|
}
|
|
45032
45251
|
|
|
@@ -45081,15 +45300,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
45081
45300
|
* API identifier of an object
|
|
45082
45301
|
*/
|
|
45083
45302
|
id?: string;
|
|
45084
|
-
attributes:
|
|
45085
|
-
}
|
|
45086
|
-
|
|
45087
|
-
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
45088
|
-
applicationName: string;
|
|
45089
|
-
/**
|
|
45090
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45091
|
-
*/
|
|
45092
|
-
content: object;
|
|
45303
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
45093
45304
|
}
|
|
45094
45305
|
|
|
45095
45306
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -45114,7 +45325,18 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
45114
45325
|
* API identifier of an object
|
|
45115
45326
|
*/
|
|
45116
45327
|
id: string;
|
|
45117
|
-
attributes?:
|
|
45328
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
45329
|
+
}
|
|
45330
|
+
|
|
45331
|
+
export declare interface JsonApiDashboardPluginInAttributes {
|
|
45332
|
+
title?: string;
|
|
45333
|
+
description?: string;
|
|
45334
|
+
tags?: Array<string>;
|
|
45335
|
+
areRelationsValid?: boolean;
|
|
45336
|
+
/**
|
|
45337
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45338
|
+
*/
|
|
45339
|
+
content?: object;
|
|
45118
45340
|
}
|
|
45119
45341
|
|
|
45120
45342
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -45153,7 +45375,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
45153
45375
|
* API identifier of an object
|
|
45154
45376
|
*/
|
|
45155
45377
|
id: string;
|
|
45156
|
-
meta?:
|
|
45378
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45157
45379
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45158
45380
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45159
45381
|
}
|
|
@@ -45186,7 +45408,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
45186
45408
|
export declare interface JsonApiDashboardPluginOutList {
|
|
45187
45409
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
45188
45410
|
links?: ListLinks;
|
|
45189
|
-
meta?:
|
|
45411
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45190
45412
|
/**
|
|
45191
45413
|
* Included resources
|
|
45192
45414
|
*/
|
|
@@ -45194,8 +45416,8 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
45194
45416
|
}
|
|
45195
45417
|
|
|
45196
45418
|
export declare interface JsonApiDashboardPluginOutRelationships {
|
|
45197
|
-
createdBy?:
|
|
45198
|
-
modifiedBy?:
|
|
45419
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45420
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45199
45421
|
}
|
|
45200
45422
|
|
|
45201
45423
|
export declare const JsonApiDashboardPluginOutTypeEnum: {
|
|
@@ -45213,7 +45435,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
45213
45435
|
* API identifier of an object
|
|
45214
45436
|
*/
|
|
45215
45437
|
id: string;
|
|
45216
|
-
meta?:
|
|
45438
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45217
45439
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45218
45440
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45219
45441
|
links?: ObjectLinks;
|
|
@@ -45237,7 +45459,7 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
45237
45459
|
* API identifier of an object
|
|
45238
45460
|
*/
|
|
45239
45461
|
id: string;
|
|
45240
|
-
attributes?:
|
|
45462
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
45241
45463
|
}
|
|
45242
45464
|
|
|
45243
45465
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -45262,18 +45484,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
45262
45484
|
* API identifier of an object
|
|
45263
45485
|
*/
|
|
45264
45486
|
id?: string;
|
|
45265
|
-
attributes?:
|
|
45266
|
-
}
|
|
45267
|
-
|
|
45268
|
-
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
45269
|
-
title?: string;
|
|
45270
|
-
description?: string;
|
|
45271
|
-
tags?: Array<string>;
|
|
45272
|
-
areRelationsValid?: boolean;
|
|
45273
|
-
/**
|
|
45274
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45275
|
-
*/
|
|
45276
|
-
content?: object;
|
|
45487
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
45277
45488
|
}
|
|
45278
45489
|
|
|
45279
45490
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -45312,7 +45523,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
45312
45523
|
* API identifier of an object
|
|
45313
45524
|
*/
|
|
45314
45525
|
id: string;
|
|
45315
|
-
meta?:
|
|
45526
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45316
45527
|
attributes: JsonApiDatasetOutAttributes;
|
|
45317
45528
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45318
45529
|
}
|
|
@@ -45438,7 +45649,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
45438
45649
|
export declare interface JsonApiDatasetOutList {
|
|
45439
45650
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
45440
45651
|
links?: ListLinks;
|
|
45441
|
-
meta?:
|
|
45652
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45442
45653
|
/**
|
|
45443
45654
|
* Included resources
|
|
45444
45655
|
*/
|
|
@@ -45449,7 +45660,7 @@ export declare interface JsonApiDatasetOutRelationships {
|
|
|
45449
45660
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
45450
45661
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
45451
45662
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
45452
|
-
references?:
|
|
45663
|
+
references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
45453
45664
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
45454
45665
|
}
|
|
45455
45666
|
|
|
@@ -45482,7 +45693,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
45482
45693
|
* API identifier of an object
|
|
45483
45694
|
*/
|
|
45484
45695
|
id: string;
|
|
45485
|
-
meta?:
|
|
45696
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
45486
45697
|
attributes: JsonApiDatasetOutAttributes;
|
|
45487
45698
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45488
45699
|
links?: ObjectLinks;
|
|
@@ -45506,7 +45717,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
|
|
|
45506
45717
|
* API identifier of an object
|
|
45507
45718
|
*/
|
|
45508
45719
|
id: string;
|
|
45509
|
-
meta?:
|
|
45720
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
45510
45721
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
45511
45722
|
}
|
|
45512
45723
|
|
|
@@ -45558,23 +45769,9 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
45558
45769
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
45559
45770
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
45560
45771
|
links?: ListLinks;
|
|
45561
|
-
meta?:
|
|
45772
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45562
45773
|
}
|
|
45563
45774
|
|
|
45564
|
-
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
45565
|
-
/**
|
|
45566
|
-
* List of valid permissions for a logged-in user.
|
|
45567
|
-
*/
|
|
45568
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
45569
|
-
}
|
|
45570
|
-
|
|
45571
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
45572
|
-
readonly MANAGE: "MANAGE";
|
|
45573
|
-
readonly USE: "USE";
|
|
45574
|
-
};
|
|
45575
|
-
|
|
45576
|
-
export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
45577
|
-
|
|
45578
45775
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
45579
45776
|
readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
|
|
45580
45777
|
};
|
|
@@ -45590,7 +45787,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
45590
45787
|
* API identifier of an object
|
|
45591
45788
|
*/
|
|
45592
45789
|
id: string;
|
|
45593
|
-
meta?:
|
|
45790
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
45594
45791
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
45595
45792
|
links?: ObjectLinks;
|
|
45596
45793
|
}
|
|
@@ -45664,7 +45861,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
45664
45861
|
/**
|
|
45665
45862
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45666
45863
|
*/
|
|
45667
|
-
parameters?: Array<
|
|
45864
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
45668
45865
|
/**
|
|
45669
45866
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45670
45867
|
*/
|
|
@@ -45678,6 +45875,11 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
|
45678
45875
|
|
|
45679
45876
|
export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
|
|
45680
45877
|
|
|
45878
|
+
export declare interface JsonApiDataSourceInAttributesParametersInner {
|
|
45879
|
+
name: string;
|
|
45880
|
+
value: string;
|
|
45881
|
+
}
|
|
45882
|
+
|
|
45681
45883
|
export declare const JsonApiDataSourceInAttributesTypeEnum: {
|
|
45682
45884
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
45683
45885
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -45731,7 +45933,7 @@ export declare interface JsonApiDataSourceOut {
|
|
|
45731
45933
|
* API identifier of an object
|
|
45732
45934
|
*/
|
|
45733
45935
|
id: string;
|
|
45734
|
-
meta?:
|
|
45936
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
45735
45937
|
attributes: JsonApiDataSourceOutAttributes;
|
|
45736
45938
|
}
|
|
45737
45939
|
|
|
@@ -45763,11 +45965,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
45763
45965
|
/**
|
|
45764
45966
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45765
45967
|
*/
|
|
45766
|
-
parameters?: Array<
|
|
45968
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
45767
45969
|
/**
|
|
45768
45970
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
45769
45971
|
*/
|
|
45770
|
-
decodedParameters?: Array<
|
|
45972
|
+
decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
45771
45973
|
/**
|
|
45772
45974
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45773
45975
|
*/
|
|
@@ -45795,11 +45997,6 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
|
45795
45997
|
|
|
45796
45998
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
|
|
45797
45999
|
|
|
45798
|
-
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
45799
|
-
name: string;
|
|
45800
|
-
value: string;
|
|
45801
|
-
}
|
|
45802
|
-
|
|
45803
46000
|
export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
45804
46001
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
45805
46002
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -45842,9 +46039,23 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
45842
46039
|
export declare interface JsonApiDataSourceOutList {
|
|
45843
46040
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
45844
46041
|
links?: ListLinks;
|
|
45845
|
-
meta?:
|
|
46042
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45846
46043
|
}
|
|
45847
46044
|
|
|
46045
|
+
export declare interface JsonApiDataSourceOutMeta {
|
|
46046
|
+
/**
|
|
46047
|
+
* List of valid permissions for a logged-in user.
|
|
46048
|
+
*/
|
|
46049
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
46050
|
+
}
|
|
46051
|
+
|
|
46052
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
46053
|
+
readonly MANAGE: "MANAGE";
|
|
46054
|
+
readonly USE: "USE";
|
|
46055
|
+
};
|
|
46056
|
+
|
|
46057
|
+
export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
46058
|
+
|
|
45848
46059
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
45849
46060
|
readonly DATA_SOURCE: "dataSource";
|
|
45850
46061
|
};
|
|
@@ -45860,7 +46071,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
|
|
|
45860
46071
|
* API identifier of an object
|
|
45861
46072
|
*/
|
|
45862
46073
|
id: string;
|
|
45863
|
-
meta?:
|
|
46074
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
45864
46075
|
attributes: JsonApiDataSourceOutAttributes;
|
|
45865
46076
|
links?: ObjectLinks;
|
|
45866
46077
|
}
|
|
@@ -45934,7 +46145,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
45934
46145
|
/**
|
|
45935
46146
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
45936
46147
|
*/
|
|
45937
|
-
parameters?: Array<
|
|
46148
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
45938
46149
|
/**
|
|
45939
46150
|
* Determines how the results coming from a particular datasource should be cached.
|
|
45940
46151
|
*/
|
|
@@ -46020,7 +46231,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
46020
46231
|
export declare interface JsonApiEntitlementOutList {
|
|
46021
46232
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
46022
46233
|
links?: ListLinks;
|
|
46023
|
-
meta?:
|
|
46234
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46024
46235
|
}
|
|
46025
46236
|
|
|
46026
46237
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -46060,14 +46271,27 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
46060
46271
|
* API identifier of an object
|
|
46061
46272
|
*/
|
|
46062
46273
|
id: string;
|
|
46063
|
-
attributes?:
|
|
46064
|
-
relationships?:
|
|
46274
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
46275
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
46276
|
+
}
|
|
46277
|
+
|
|
46278
|
+
export declare interface JsonApiExportDefinitionInAttributes {
|
|
46279
|
+
title?: string;
|
|
46280
|
+
description?: string;
|
|
46281
|
+
tags?: Array<string>;
|
|
46282
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
46283
|
+
areRelationsValid?: boolean;
|
|
46065
46284
|
}
|
|
46066
46285
|
|
|
46067
46286
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
46068
46287
|
data: JsonApiExportDefinitionIn;
|
|
46069
46288
|
}
|
|
46070
46289
|
|
|
46290
|
+
export declare interface JsonApiExportDefinitionInRelationships {
|
|
46291
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46292
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46293
|
+
}
|
|
46294
|
+
|
|
46071
46295
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
46072
46296
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46073
46297
|
};
|
|
@@ -46100,7 +46324,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
46100
46324
|
* API identifier of an object
|
|
46101
46325
|
*/
|
|
46102
46326
|
id: string;
|
|
46103
|
-
meta?:
|
|
46327
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46104
46328
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46105
46329
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46106
46330
|
}
|
|
@@ -46141,27 +46365,19 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
46141
46365
|
export declare interface JsonApiExportDefinitionOutList {
|
|
46142
46366
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
46143
46367
|
links?: ListLinks;
|
|
46144
|
-
meta?:
|
|
46368
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46145
46369
|
/**
|
|
46146
46370
|
* Included resources
|
|
46147
46371
|
*/
|
|
46148
46372
|
included?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
46149
46373
|
}
|
|
46150
46374
|
|
|
46151
|
-
export declare interface JsonApiExportDefinitionOutMeta {
|
|
46152
|
-
origin?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
46153
|
-
}
|
|
46154
|
-
|
|
46155
46375
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
46156
46376
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46157
|
-
analyticalDashboard?:
|
|
46377
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46158
46378
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
46159
|
-
createdBy?:
|
|
46160
|
-
modifiedBy?:
|
|
46161
|
-
}
|
|
46162
|
-
|
|
46163
|
-
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
46164
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
46379
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46380
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46165
46381
|
}
|
|
46166
46382
|
|
|
46167
46383
|
export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
@@ -46187,7 +46403,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
46187
46403
|
* API identifier of an object
|
|
46188
46404
|
*/
|
|
46189
46405
|
id: string;
|
|
46190
|
-
meta?:
|
|
46406
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46191
46407
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46192
46408
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46193
46409
|
links?: ObjectLinks;
|
|
@@ -46211,8 +46427,8 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
46211
46427
|
* API identifier of an object
|
|
46212
46428
|
*/
|
|
46213
46429
|
id: string;
|
|
46214
|
-
attributes?:
|
|
46215
|
-
relationships?:
|
|
46430
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
46431
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
46216
46432
|
}
|
|
46217
46433
|
|
|
46218
46434
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
@@ -46237,27 +46453,14 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
46237
46453
|
* API identifier of an object
|
|
46238
46454
|
*/
|
|
46239
46455
|
id?: string;
|
|
46240
|
-
attributes?:
|
|
46241
|
-
relationships?:
|
|
46242
|
-
}
|
|
46243
|
-
|
|
46244
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
46245
|
-
title?: string;
|
|
46246
|
-
description?: string;
|
|
46247
|
-
tags?: Array<string>;
|
|
46248
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
46249
|
-
areRelationsValid?: boolean;
|
|
46456
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
46457
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
46250
46458
|
}
|
|
46251
46459
|
|
|
46252
46460
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
46253
46461
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
46254
46462
|
}
|
|
46255
46463
|
|
|
46256
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
46257
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46258
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46259
|
-
}
|
|
46260
|
-
|
|
46261
46464
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
46262
46465
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46263
46466
|
};
|
|
@@ -46276,7 +46479,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
46276
46479
|
* API identifier of an object
|
|
46277
46480
|
*/
|
|
46278
46481
|
id: string;
|
|
46279
|
-
attributes:
|
|
46482
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
46280
46483
|
}
|
|
46281
46484
|
|
|
46282
46485
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -46301,57 +46504,9 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
46301
46504
|
* API identifier of an object
|
|
46302
46505
|
*/
|
|
46303
46506
|
id: string;
|
|
46304
|
-
attributes:
|
|
46305
|
-
}
|
|
46306
|
-
|
|
46307
|
-
export declare interface JsonApiExportTemplateOutAttributes {
|
|
46308
|
-
/**
|
|
46309
|
-
* User-facing name of the Slides template.
|
|
46310
|
-
*/
|
|
46311
|
-
name: string;
|
|
46312
|
-
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
46313
|
-
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
46314
|
-
}
|
|
46315
|
-
|
|
46316
|
-
/**
|
|
46317
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46318
|
-
*/
|
|
46319
|
-
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
46320
|
-
/**
|
|
46321
|
-
* Export types this template applies to.
|
|
46322
|
-
*/
|
|
46323
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
46324
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
46325
|
-
introSlide?: IntroSlideTemplate | null;
|
|
46326
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
46327
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
46507
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
46328
46508
|
}
|
|
46329
46509
|
|
|
46330
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
46331
|
-
readonly PDF: "PDF";
|
|
46332
|
-
readonly PPTX: "PPTX";
|
|
46333
|
-
};
|
|
46334
|
-
|
|
46335
|
-
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
46336
|
-
|
|
46337
|
-
/**
|
|
46338
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46339
|
-
*/
|
|
46340
|
-
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
46341
|
-
/**
|
|
46342
|
-
* Export types this template applies to.
|
|
46343
|
-
*/
|
|
46344
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
46345
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
46346
|
-
}
|
|
46347
|
-
|
|
46348
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
46349
|
-
readonly PDF: "PDF";
|
|
46350
|
-
readonly PPTX: "PPTX";
|
|
46351
|
-
};
|
|
46352
|
-
|
|
46353
|
-
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
46354
|
-
|
|
46355
46510
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
46356
46511
|
data: JsonApiExportTemplateOut;
|
|
46357
46512
|
links?: ObjectLinks;
|
|
@@ -46363,7 +46518,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
46363
46518
|
export declare interface JsonApiExportTemplateOutList {
|
|
46364
46519
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
46365
46520
|
links?: ListLinks;
|
|
46366
|
-
meta?:
|
|
46521
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46367
46522
|
}
|
|
46368
46523
|
|
|
46369
46524
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -46381,7 +46536,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
46381
46536
|
* API identifier of an object
|
|
46382
46537
|
*/
|
|
46383
46538
|
id: string;
|
|
46384
|
-
attributes:
|
|
46539
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
46385
46540
|
links?: ObjectLinks;
|
|
46386
46541
|
}
|
|
46387
46542
|
|
|
@@ -46411,8 +46566,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
46411
46566
|
* User-facing name of the Slides template.
|
|
46412
46567
|
*/
|
|
46413
46568
|
name?: string;
|
|
46414
|
-
dashboardSlidesTemplate?:
|
|
46415
|
-
widgetSlidesTemplate?:
|
|
46569
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
46570
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
46416
46571
|
}
|
|
46417
46572
|
|
|
46418
46573
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -46437,9 +46592,57 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
46437
46592
|
* API identifier of an object
|
|
46438
46593
|
*/
|
|
46439
46594
|
id?: string;
|
|
46440
|
-
attributes:
|
|
46595
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
46596
|
+
}
|
|
46597
|
+
|
|
46598
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
46599
|
+
/**
|
|
46600
|
+
* User-facing name of the Slides template.
|
|
46601
|
+
*/
|
|
46602
|
+
name: string;
|
|
46603
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
46604
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
46605
|
+
}
|
|
46606
|
+
|
|
46607
|
+
/**
|
|
46608
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46609
|
+
*/
|
|
46610
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
46611
|
+
/**
|
|
46612
|
+
* Export types this template applies to.
|
|
46613
|
+
*/
|
|
46614
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
46615
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
46616
|
+
introSlide?: IntroSlideTemplate | null;
|
|
46617
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
46618
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
46619
|
+
}
|
|
46620
|
+
|
|
46621
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
46622
|
+
readonly PDF: "PDF";
|
|
46623
|
+
readonly PPTX: "PPTX";
|
|
46624
|
+
};
|
|
46625
|
+
|
|
46626
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
46627
|
+
|
|
46628
|
+
/**
|
|
46629
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
46630
|
+
*/
|
|
46631
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
46632
|
+
/**
|
|
46633
|
+
* Export types this template applies to.
|
|
46634
|
+
*/
|
|
46635
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
46636
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
46441
46637
|
}
|
|
46442
46638
|
|
|
46639
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
46640
|
+
readonly PDF: "PDF";
|
|
46641
|
+
readonly PPTX: "PPTX";
|
|
46642
|
+
};
|
|
46643
|
+
|
|
46644
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
46645
|
+
|
|
46443
46646
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
46444
46647
|
data: JsonApiExportTemplatePostOptionalId;
|
|
46445
46648
|
}
|
|
@@ -46476,7 +46679,7 @@ export declare interface JsonApiFactOut {
|
|
|
46476
46679
|
* API identifier of an object
|
|
46477
46680
|
*/
|
|
46478
46681
|
id: string;
|
|
46479
|
-
meta?:
|
|
46682
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46480
46683
|
attributes?: JsonApiFactOutAttributes;
|
|
46481
46684
|
relationships?: JsonApiFactOutRelationships;
|
|
46482
46685
|
}
|
|
@@ -46517,7 +46720,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
46517
46720
|
export declare interface JsonApiFactOutList {
|
|
46518
46721
|
data: Array<JsonApiFactOutWithLinks>;
|
|
46519
46722
|
links?: ListLinks;
|
|
46520
|
-
meta?:
|
|
46723
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46521
46724
|
/**
|
|
46522
46725
|
* Included resources
|
|
46523
46726
|
*/
|
|
@@ -46543,7 +46746,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
46543
46746
|
* API identifier of an object
|
|
46544
46747
|
*/
|
|
46545
46748
|
id: string;
|
|
46546
|
-
meta?:
|
|
46749
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46547
46750
|
attributes?: JsonApiFactOutAttributes;
|
|
46548
46751
|
relationships?: JsonApiFactOutRelationships;
|
|
46549
46752
|
links?: ObjectLinks;
|
|
@@ -46567,7 +46770,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
46567
46770
|
* API identifier of an object
|
|
46568
46771
|
*/
|
|
46569
46772
|
id: string;
|
|
46570
|
-
attributes:
|
|
46773
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
46571
46774
|
}
|
|
46572
46775
|
|
|
46573
46776
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -46606,8 +46809,8 @@ export declare interface JsonApiFilterContextOut {
|
|
|
46606
46809
|
* API identifier of an object
|
|
46607
46810
|
*/
|
|
46608
46811
|
id: string;
|
|
46609
|
-
meta?:
|
|
46610
|
-
attributes:
|
|
46812
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46813
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
46611
46814
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46612
46815
|
}
|
|
46613
46816
|
|
|
@@ -46631,7 +46834,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
46631
46834
|
export declare interface JsonApiFilterContextOutList {
|
|
46632
46835
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
46633
46836
|
links?: ListLinks;
|
|
46634
|
-
meta?:
|
|
46837
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46635
46838
|
/**
|
|
46636
46839
|
* Included resources
|
|
46637
46840
|
*/
|
|
@@ -46640,8 +46843,8 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
46640
46843
|
|
|
46641
46844
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
46642
46845
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
46643
|
-
datasets?:
|
|
46644
|
-
labels?:
|
|
46846
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
46847
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
46645
46848
|
}
|
|
46646
46849
|
|
|
46647
46850
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
@@ -46659,8 +46862,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
46659
46862
|
* API identifier of an object
|
|
46660
46863
|
*/
|
|
46661
46864
|
id: string;
|
|
46662
|
-
meta?:
|
|
46663
|
-
attributes:
|
|
46865
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46866
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
46664
46867
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
46665
46868
|
links?: ObjectLinks;
|
|
46666
46869
|
}
|
|
@@ -46708,7 +46911,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
46708
46911
|
* API identifier of an object
|
|
46709
46912
|
*/
|
|
46710
46913
|
id?: string;
|
|
46711
|
-
attributes:
|
|
46914
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
46712
46915
|
}
|
|
46713
46916
|
|
|
46714
46917
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -46757,7 +46960,7 @@ export declare interface JsonApiFilterViewInDocument {
|
|
|
46757
46960
|
}
|
|
46758
46961
|
|
|
46759
46962
|
export declare interface JsonApiFilterViewInRelationships {
|
|
46760
|
-
analyticalDashboard?:
|
|
46963
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46761
46964
|
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
46762
46965
|
}
|
|
46763
46966
|
|
|
@@ -46803,7 +47006,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
46803
47006
|
export declare interface JsonApiFilterViewOutList {
|
|
46804
47007
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
46805
47008
|
links?: ListLinks;
|
|
46806
|
-
meta?:
|
|
47009
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46807
47010
|
/**
|
|
46808
47011
|
* Included resources
|
|
46809
47012
|
*/
|
|
@@ -46894,9 +47097,69 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
46894
47097
|
* API identifier of an object
|
|
46895
47098
|
*/
|
|
46896
47099
|
id: string;
|
|
46897
|
-
attributes?:
|
|
47100
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
47101
|
+
}
|
|
47102
|
+
|
|
47103
|
+
export declare interface JsonApiIdentityProviderInAttributes {
|
|
47104
|
+
/**
|
|
47105
|
+
* 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.
|
|
47106
|
+
*/
|
|
47107
|
+
identifiers?: Array<string>;
|
|
47108
|
+
/**
|
|
47109
|
+
* 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.
|
|
47110
|
+
*/
|
|
47111
|
+
customClaimMapping?: {
|
|
47112
|
+
[key: string]: string;
|
|
47113
|
+
};
|
|
47114
|
+
/**
|
|
47115
|
+
* 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.
|
|
47116
|
+
*/
|
|
47117
|
+
samlMetadata?: string;
|
|
47118
|
+
/**
|
|
47119
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47120
|
+
*/
|
|
47121
|
+
oauthClientId?: string;
|
|
47122
|
+
/**
|
|
47123
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47124
|
+
*/
|
|
47125
|
+
oauthClientSecret?: string;
|
|
47126
|
+
/**
|
|
47127
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47128
|
+
*/
|
|
47129
|
+
oauthIssuerLocation?: string;
|
|
47130
|
+
/**
|
|
47131
|
+
* 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.
|
|
47132
|
+
*/
|
|
47133
|
+
oauthIssuerId?: string;
|
|
47134
|
+
/**
|
|
47135
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47136
|
+
*/
|
|
47137
|
+
oauthSubjectIdClaim?: string;
|
|
47138
|
+
/**
|
|
47139
|
+
* 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.
|
|
47140
|
+
*/
|
|
47141
|
+
oauthCustomAuthAttributes?: {
|
|
47142
|
+
[key: string]: string;
|
|
47143
|
+
};
|
|
47144
|
+
/**
|
|
47145
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47146
|
+
*/
|
|
47147
|
+
oauthCustomScopes?: Array<string> | null;
|
|
47148
|
+
/**
|
|
47149
|
+
* 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.
|
|
47150
|
+
*/
|
|
47151
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
46898
47152
|
}
|
|
46899
47153
|
|
|
47154
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
47155
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47156
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
47157
|
+
readonly DEX_IDP: "DEX_IDP";
|
|
47158
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47159
|
+
};
|
|
47160
|
+
|
|
47161
|
+
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
47162
|
+
|
|
46900
47163
|
export declare interface JsonApiIdentityProviderInDocument {
|
|
46901
47164
|
data: JsonApiIdentityProviderIn;
|
|
46902
47165
|
}
|
|
@@ -46999,7 +47262,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
46999
47262
|
export declare interface JsonApiIdentityProviderOutList {
|
|
47000
47263
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
47001
47264
|
links?: ListLinks;
|
|
47002
|
-
meta?:
|
|
47265
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47003
47266
|
}
|
|
47004
47267
|
|
|
47005
47268
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -47039,69 +47302,9 @@ export declare interface JsonApiIdentityProviderPatch {
|
|
|
47039
47302
|
* API identifier of an object
|
|
47040
47303
|
*/
|
|
47041
47304
|
id: string;
|
|
47042
|
-
attributes?:
|
|
47043
|
-
}
|
|
47044
|
-
|
|
47045
|
-
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
47046
|
-
/**
|
|
47047
|
-
* 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.
|
|
47048
|
-
*/
|
|
47049
|
-
identifiers?: Array<string>;
|
|
47050
|
-
/**
|
|
47051
|
-
* 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.
|
|
47052
|
-
*/
|
|
47053
|
-
customClaimMapping?: {
|
|
47054
|
-
[key: string]: string;
|
|
47055
|
-
};
|
|
47056
|
-
/**
|
|
47057
|
-
* 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.
|
|
47058
|
-
*/
|
|
47059
|
-
samlMetadata?: string;
|
|
47060
|
-
/**
|
|
47061
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47062
|
-
*/
|
|
47063
|
-
oauthClientId?: string;
|
|
47064
|
-
/**
|
|
47065
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47066
|
-
*/
|
|
47067
|
-
oauthClientSecret?: string;
|
|
47068
|
-
/**
|
|
47069
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
47070
|
-
*/
|
|
47071
|
-
oauthIssuerLocation?: string;
|
|
47072
|
-
/**
|
|
47073
|
-
* 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.
|
|
47074
|
-
*/
|
|
47075
|
-
oauthIssuerId?: string;
|
|
47076
|
-
/**
|
|
47077
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
47078
|
-
*/
|
|
47079
|
-
oauthSubjectIdClaim?: string;
|
|
47080
|
-
/**
|
|
47081
|
-
* 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.
|
|
47082
|
-
*/
|
|
47083
|
-
oauthCustomAuthAttributes?: {
|
|
47084
|
-
[key: string]: string;
|
|
47085
|
-
};
|
|
47086
|
-
/**
|
|
47087
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
47088
|
-
*/
|
|
47089
|
-
oauthCustomScopes?: Array<string> | null;
|
|
47090
|
-
/**
|
|
47091
|
-
* 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.
|
|
47092
|
-
*/
|
|
47093
|
-
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
47305
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
47094
47306
|
}
|
|
47095
47307
|
|
|
47096
|
-
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
47097
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
47098
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
47099
|
-
readonly DEX_IDP: "DEX_IDP";
|
|
47100
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
47101
|
-
};
|
|
47102
|
-
|
|
47103
|
-
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
47104
|
-
|
|
47105
47308
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
47106
47309
|
data: JsonApiIdentityProviderPatch;
|
|
47107
47310
|
}
|
|
@@ -47124,7 +47327,11 @@ export declare interface JsonApiJwkIn {
|
|
|
47124
47327
|
* API identifier of an object
|
|
47125
47328
|
*/
|
|
47126
47329
|
id: string;
|
|
47127
|
-
attributes?:
|
|
47330
|
+
attributes?: JsonApiJwkInAttributes;
|
|
47331
|
+
}
|
|
47332
|
+
|
|
47333
|
+
export declare interface JsonApiJwkInAttributes {
|
|
47334
|
+
content?: RsaSpecification;
|
|
47128
47335
|
}
|
|
47129
47336
|
|
|
47130
47337
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -47149,11 +47356,7 @@ export declare interface JsonApiJwkOut {
|
|
|
47149
47356
|
* API identifier of an object
|
|
47150
47357
|
*/
|
|
47151
47358
|
id: string;
|
|
47152
|
-
attributes?:
|
|
47153
|
-
}
|
|
47154
|
-
|
|
47155
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
47156
|
-
content?: RsaSpecification;
|
|
47359
|
+
attributes?: JsonApiJwkInAttributes;
|
|
47157
47360
|
}
|
|
47158
47361
|
|
|
47159
47362
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -47167,7 +47370,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
47167
47370
|
export declare interface JsonApiJwkOutList {
|
|
47168
47371
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
47169
47372
|
links?: ListLinks;
|
|
47170
|
-
meta?:
|
|
47373
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47171
47374
|
}
|
|
47172
47375
|
|
|
47173
47376
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -47185,7 +47388,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
47185
47388
|
* API identifier of an object
|
|
47186
47389
|
*/
|
|
47187
47390
|
id: string;
|
|
47188
|
-
attributes?:
|
|
47391
|
+
attributes?: JsonApiJwkInAttributes;
|
|
47189
47392
|
links?: ObjectLinks;
|
|
47190
47393
|
}
|
|
47191
47394
|
|
|
@@ -47207,7 +47410,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
47207
47410
|
* API identifier of an object
|
|
47208
47411
|
*/
|
|
47209
47412
|
id: string;
|
|
47210
|
-
attributes?:
|
|
47413
|
+
attributes?: JsonApiJwkInAttributes;
|
|
47211
47414
|
}
|
|
47212
47415
|
|
|
47213
47416
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -47246,7 +47449,7 @@ export declare interface JsonApiLabelOut {
|
|
|
47246
47449
|
* API identifier of an object
|
|
47247
47450
|
*/
|
|
47248
47451
|
id: string;
|
|
47249
|
-
meta?:
|
|
47452
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47250
47453
|
attributes?: JsonApiLabelOutAttributes;
|
|
47251
47454
|
relationships?: JsonApiLabelOutRelationships;
|
|
47252
47455
|
}
|
|
@@ -47300,7 +47503,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
47300
47503
|
export declare interface JsonApiLabelOutList {
|
|
47301
47504
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
47302
47505
|
links?: ListLinks;
|
|
47303
|
-
meta?:
|
|
47506
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47304
47507
|
/**
|
|
47305
47508
|
* Included resources
|
|
47306
47509
|
*/
|
|
@@ -47330,7 +47533,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
47330
47533
|
* API identifier of an object
|
|
47331
47534
|
*/
|
|
47332
47535
|
id: string;
|
|
47333
|
-
meta?:
|
|
47536
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47334
47537
|
attributes?: JsonApiLabelOutAttributes;
|
|
47335
47538
|
relationships?: JsonApiLabelOutRelationships;
|
|
47336
47539
|
links?: ObjectLinks;
|
|
@@ -47457,7 +47660,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
47457
47660
|
export declare interface JsonApiLlmEndpointOutList {
|
|
47458
47661
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
47459
47662
|
links?: ListLinks;
|
|
47460
|
-
meta?:
|
|
47663
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47461
47664
|
}
|
|
47462
47665
|
|
|
47463
47666
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -47556,7 +47759,15 @@ export declare interface JsonApiMetricIn {
|
|
|
47556
47759
|
* API identifier of an object
|
|
47557
47760
|
*/
|
|
47558
47761
|
id: string;
|
|
47559
|
-
attributes:
|
|
47762
|
+
attributes: JsonApiMetricInAttributes;
|
|
47763
|
+
}
|
|
47764
|
+
|
|
47765
|
+
export declare interface JsonApiMetricInAttributes {
|
|
47766
|
+
title?: string;
|
|
47767
|
+
description?: string;
|
|
47768
|
+
tags?: Array<string>;
|
|
47769
|
+
areRelationsValid?: boolean;
|
|
47770
|
+
content: JsonApiMetricOutAttributesContent;
|
|
47560
47771
|
}
|
|
47561
47772
|
|
|
47562
47773
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -47595,7 +47806,7 @@ export declare interface JsonApiMetricOut {
|
|
|
47595
47806
|
* API identifier of an object
|
|
47596
47807
|
*/
|
|
47597
47808
|
id: string;
|
|
47598
|
-
meta?:
|
|
47809
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47599
47810
|
attributes: JsonApiMetricOutAttributes;
|
|
47600
47811
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47601
47812
|
}
|
|
@@ -47635,7 +47846,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
47635
47846
|
export declare interface JsonApiMetricOutList {
|
|
47636
47847
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
47637
47848
|
links?: ListLinks;
|
|
47638
|
-
meta?:
|
|
47849
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47639
47850
|
/**
|
|
47640
47851
|
* Included resources
|
|
47641
47852
|
*/
|
|
@@ -47657,7 +47868,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
47657
47868
|
* API identifier of an object
|
|
47658
47869
|
*/
|
|
47659
47870
|
id: string;
|
|
47660
|
-
meta?:
|
|
47871
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47661
47872
|
attributes: JsonApiMetricOutAttributes;
|
|
47662
47873
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
47663
47874
|
links?: ObjectLinks;
|
|
@@ -47714,15 +47925,7 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
47714
47925
|
* API identifier of an object
|
|
47715
47926
|
*/
|
|
47716
47927
|
id?: string;
|
|
47717
|
-
attributes:
|
|
47718
|
-
}
|
|
47719
|
-
|
|
47720
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
47721
|
-
title?: string;
|
|
47722
|
-
description?: string;
|
|
47723
|
-
tags?: Array<string>;
|
|
47724
|
-
areRelationsValid?: boolean;
|
|
47725
|
-
content: JsonApiMetricOutAttributesContent;
|
|
47928
|
+
attributes: JsonApiMetricInAttributes;
|
|
47726
47929
|
}
|
|
47727
47930
|
|
|
47728
47931
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -47788,7 +47991,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
47788
47991
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
47789
47992
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
47790
47993
|
links?: ListLinks;
|
|
47791
|
-
meta?:
|
|
47994
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47792
47995
|
}
|
|
47793
47996
|
|
|
47794
47997
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -47828,7 +48031,7 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
47828
48031
|
* API identifier of an object
|
|
47829
48032
|
*/
|
|
47830
48033
|
id: string;
|
|
47831
|
-
attributes?:
|
|
48034
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
47832
48035
|
}
|
|
47833
48036
|
|
|
47834
48037
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
@@ -47873,7 +48076,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
47873
48076
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
47874
48077
|
name?: string | null;
|
|
47875
48078
|
description?: string | null;
|
|
47876
|
-
destination?:
|
|
48079
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
47877
48080
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
47878
48081
|
/**
|
|
47879
48082
|
* 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}
|
|
@@ -47913,12 +48116,6 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
|
|
|
47913
48116
|
|
|
47914
48117
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
|
|
47915
48118
|
|
|
47916
|
-
/**
|
|
47917
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
47918
|
-
* The destination where the notifications are to be sent.
|
|
47919
|
-
*/
|
|
47920
|
-
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
47921
|
-
|
|
47922
48119
|
export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
|
|
47923
48120
|
readonly WEBHOOK: "WEBHOOK";
|
|
47924
48121
|
readonly SMTP: "SMTP";
|
|
@@ -47946,7 +48143,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
47946
48143
|
export declare interface JsonApiNotificationChannelOutList {
|
|
47947
48144
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
47948
48145
|
links?: ListLinks;
|
|
47949
|
-
meta?:
|
|
48146
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47950
48147
|
}
|
|
47951
48148
|
|
|
47952
48149
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -47986,13 +48183,38 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
47986
48183
|
* API identifier of an object
|
|
47987
48184
|
*/
|
|
47988
48185
|
id: string;
|
|
47989
|
-
attributes?:
|
|
48186
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
48187
|
+
}
|
|
48188
|
+
|
|
48189
|
+
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48190
|
+
data: JsonApiNotificationChannelPatch;
|
|
47990
48191
|
}
|
|
47991
48192
|
|
|
47992
|
-
export declare
|
|
48193
|
+
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48194
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48195
|
+
};
|
|
48196
|
+
|
|
48197
|
+
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48198
|
+
|
|
48199
|
+
/**
|
|
48200
|
+
* JSON:API representation of notificationChannel entity.
|
|
48201
|
+
*/
|
|
48202
|
+
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48203
|
+
/**
|
|
48204
|
+
* Object type
|
|
48205
|
+
*/
|
|
48206
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48207
|
+
/**
|
|
48208
|
+
* API identifier of an object
|
|
48209
|
+
*/
|
|
48210
|
+
id?: string;
|
|
48211
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
48212
|
+
}
|
|
48213
|
+
|
|
48214
|
+
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
47993
48215
|
name?: string | null;
|
|
47994
48216
|
description?: string | null;
|
|
47995
|
-
destination?:
|
|
48217
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
47996
48218
|
/**
|
|
47997
48219
|
* 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}
|
|
47998
48220
|
*/
|
|
@@ -48000,7 +48222,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
48000
48222
|
/**
|
|
48001
48223
|
* 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
|
|
48002
48224
|
*/
|
|
48003
|
-
dashboardLinkVisibility?:
|
|
48225
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
48004
48226
|
/**
|
|
48005
48227
|
* 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}}
|
|
48006
48228
|
*/
|
|
@@ -48008,60 +48230,41 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
48008
48230
|
/**
|
|
48009
48231
|
* 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
|
|
48010
48232
|
*/
|
|
48011
|
-
allowedRecipients?:
|
|
48233
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
48012
48234
|
/**
|
|
48013
48235
|
* 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
|
|
48014
48236
|
*/
|
|
48015
|
-
inPlatformNotification?:
|
|
48237
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
48016
48238
|
}
|
|
48017
48239
|
|
|
48018
|
-
export declare const
|
|
48240
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
48019
48241
|
readonly CREATOR: "CREATOR";
|
|
48020
48242
|
readonly INTERNAL: "INTERNAL";
|
|
48021
48243
|
readonly EXTERNAL: "EXTERNAL";
|
|
48022
48244
|
};
|
|
48023
48245
|
|
|
48024
|
-
export declare type
|
|
48246
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
48025
48247
|
|
|
48026
|
-
export declare const
|
|
48248
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
48027
48249
|
readonly HIDDEN: "HIDDEN";
|
|
48028
48250
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
48029
48251
|
readonly ALL: "ALL";
|
|
48030
48252
|
};
|
|
48031
48253
|
|
|
48032
|
-
export declare type
|
|
48254
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
48033
48255
|
|
|
48034
|
-
|
|
48256
|
+
/**
|
|
48257
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
48258
|
+
* The destination where the notifications are to be sent.
|
|
48259
|
+
*/
|
|
48260
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
48261
|
+
|
|
48262
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
48035
48263
|
readonly DISABLED: "DISABLED";
|
|
48036
48264
|
readonly ENABLED: "ENABLED";
|
|
48037
48265
|
};
|
|
48038
48266
|
|
|
48039
|
-
export declare type
|
|
48040
|
-
|
|
48041
|
-
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
48042
|
-
data: JsonApiNotificationChannelPatch;
|
|
48043
|
-
}
|
|
48044
|
-
|
|
48045
|
-
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
48046
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
48047
|
-
};
|
|
48048
|
-
|
|
48049
|
-
export declare type JsonApiNotificationChannelPatchTypeEnum = (typeof JsonApiNotificationChannelPatchTypeEnum)[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
48050
|
-
|
|
48051
|
-
/**
|
|
48052
|
-
* JSON:API representation of notificationChannel entity.
|
|
48053
|
-
*/
|
|
48054
|
-
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
48055
|
-
/**
|
|
48056
|
-
* Object type
|
|
48057
|
-
*/
|
|
48058
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
48059
|
-
/**
|
|
48060
|
-
* API identifier of an object
|
|
48061
|
-
*/
|
|
48062
|
-
id?: string;
|
|
48063
|
-
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
48064
|
-
}
|
|
48267
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
48065
48268
|
|
|
48066
48269
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
48067
48270
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
@@ -48085,14 +48288,54 @@ export declare interface JsonApiOrganizationIn {
|
|
|
48085
48288
|
* API identifier of an object
|
|
48086
48289
|
*/
|
|
48087
48290
|
id: string;
|
|
48088
|
-
attributes?:
|
|
48089
|
-
relationships?:
|
|
48291
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
48292
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
48293
|
+
}
|
|
48294
|
+
|
|
48295
|
+
export declare interface JsonApiOrganizationInAttributes {
|
|
48296
|
+
name?: string | null;
|
|
48297
|
+
hostname?: string;
|
|
48298
|
+
allowedOrigins?: Array<string>;
|
|
48299
|
+
oauthIssuerLocation?: string;
|
|
48300
|
+
oauthClientId?: string;
|
|
48301
|
+
oauthClientSecret?: string;
|
|
48302
|
+
/**
|
|
48303
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48304
|
+
* @deprecated
|
|
48305
|
+
*/
|
|
48306
|
+
earlyAccess?: string | null;
|
|
48307
|
+
/**
|
|
48308
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
48309
|
+
*/
|
|
48310
|
+
earlyAccessValues?: Array<string> | null;
|
|
48311
|
+
/**
|
|
48312
|
+
* 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.
|
|
48313
|
+
*/
|
|
48314
|
+
oauthIssuerId?: string;
|
|
48315
|
+
/**
|
|
48316
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48317
|
+
*/
|
|
48318
|
+
oauthSubjectIdClaim?: string;
|
|
48319
|
+
/**
|
|
48320
|
+
* 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.
|
|
48321
|
+
*/
|
|
48322
|
+
oauthCustomAuthAttributes?: {
|
|
48323
|
+
[key: string]: string;
|
|
48324
|
+
};
|
|
48325
|
+
/**
|
|
48326
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48327
|
+
*/
|
|
48328
|
+
oauthCustomScopes?: Array<string> | null;
|
|
48090
48329
|
}
|
|
48091
48330
|
|
|
48092
48331
|
export declare interface JsonApiOrganizationInDocument {
|
|
48093
48332
|
data: JsonApiOrganizationIn;
|
|
48094
48333
|
}
|
|
48095
48334
|
|
|
48335
|
+
export declare interface JsonApiOrganizationInRelationships {
|
|
48336
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
48337
|
+
}
|
|
48338
|
+
|
|
48096
48339
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
48097
48340
|
readonly ORGANIZATION: "organization";
|
|
48098
48341
|
};
|
|
@@ -48228,54 +48471,14 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
48228
48471
|
* API identifier of an object
|
|
48229
48472
|
*/
|
|
48230
48473
|
id: string;
|
|
48231
|
-
attributes?:
|
|
48232
|
-
relationships?:
|
|
48233
|
-
}
|
|
48234
|
-
|
|
48235
|
-
export declare interface JsonApiOrganizationPatchAttributes {
|
|
48236
|
-
name?: string | null;
|
|
48237
|
-
hostname?: string;
|
|
48238
|
-
allowedOrigins?: Array<string>;
|
|
48239
|
-
oauthIssuerLocation?: string;
|
|
48240
|
-
oauthClientId?: string;
|
|
48241
|
-
oauthClientSecret?: string;
|
|
48242
|
-
/**
|
|
48243
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
48244
|
-
* @deprecated
|
|
48245
|
-
*/
|
|
48246
|
-
earlyAccess?: string | null;
|
|
48247
|
-
/**
|
|
48248
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
48249
|
-
*/
|
|
48250
|
-
earlyAccessValues?: Array<string> | null;
|
|
48251
|
-
/**
|
|
48252
|
-
* 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.
|
|
48253
|
-
*/
|
|
48254
|
-
oauthIssuerId?: string;
|
|
48255
|
-
/**
|
|
48256
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
48257
|
-
*/
|
|
48258
|
-
oauthSubjectIdClaim?: string;
|
|
48259
|
-
/**
|
|
48260
|
-
* 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.
|
|
48261
|
-
*/
|
|
48262
|
-
oauthCustomAuthAttributes?: {
|
|
48263
|
-
[key: string]: string;
|
|
48264
|
-
};
|
|
48265
|
-
/**
|
|
48266
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
48267
|
-
*/
|
|
48268
|
-
oauthCustomScopes?: Array<string> | null;
|
|
48474
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
48475
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
48269
48476
|
}
|
|
48270
48477
|
|
|
48271
48478
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
48272
48479
|
data: JsonApiOrganizationPatch;
|
|
48273
48480
|
}
|
|
48274
48481
|
|
|
48275
|
-
export declare interface JsonApiOrganizationPatchRelationships {
|
|
48276
|
-
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
48277
|
-
}
|
|
48278
|
-
|
|
48279
48482
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
48280
48483
|
readonly ORGANIZATION: "organization";
|
|
48281
48484
|
};
|
|
@@ -48294,9 +48497,51 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
48294
48497
|
* API identifier of an object
|
|
48295
48498
|
*/
|
|
48296
48499
|
id: string;
|
|
48297
|
-
attributes?:
|
|
48500
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
48298
48501
|
}
|
|
48299
48502
|
|
|
48503
|
+
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
48504
|
+
/**
|
|
48505
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48506
|
+
*/
|
|
48507
|
+
content?: object;
|
|
48508
|
+
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
48509
|
+
}
|
|
48510
|
+
|
|
48511
|
+
export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
48512
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
48513
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
48514
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
48515
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
48516
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
48517
|
+
readonly LOCALE: "LOCALE";
|
|
48518
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
48519
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
48520
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
48521
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
48522
|
+
readonly WEEK_START: "WEEK_START";
|
|
48523
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
48524
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
48525
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
48526
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
48527
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
48528
|
+
readonly ALERT: "ALERT";
|
|
48529
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
48530
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
48531
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
48532
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
48533
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
48534
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
48535
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
48536
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
48537
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
48538
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
48539
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
48540
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
48541
|
+
};
|
|
48542
|
+
|
|
48543
|
+
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
48544
|
+
|
|
48300
48545
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
48301
48546
|
data: JsonApiOrganizationSettingIn;
|
|
48302
48547
|
}
|
|
@@ -48319,7 +48564,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
48319
48564
|
* API identifier of an object
|
|
48320
48565
|
*/
|
|
48321
48566
|
id: string;
|
|
48322
|
-
attributes?:
|
|
48567
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
48323
48568
|
}
|
|
48324
48569
|
|
|
48325
48570
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -48333,7 +48578,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
48333
48578
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
48334
48579
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
48335
48580
|
links?: ListLinks;
|
|
48336
|
-
meta?:
|
|
48581
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48337
48582
|
}
|
|
48338
48583
|
|
|
48339
48584
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -48351,7 +48596,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
48351
48596
|
* API identifier of an object
|
|
48352
48597
|
*/
|
|
48353
48598
|
id: string;
|
|
48354
|
-
attributes?:
|
|
48599
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
48355
48600
|
links?: ObjectLinks;
|
|
48356
48601
|
}
|
|
48357
48602
|
|
|
@@ -48373,7 +48618,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
48373
48618
|
* API identifier of an object
|
|
48374
48619
|
*/
|
|
48375
48620
|
id: string;
|
|
48376
|
-
attributes?:
|
|
48621
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
48377
48622
|
}
|
|
48378
48623
|
|
|
48379
48624
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -48398,7 +48643,7 @@ export declare interface JsonApiThemeIn {
|
|
|
48398
48643
|
* API identifier of an object
|
|
48399
48644
|
*/
|
|
48400
48645
|
id: string;
|
|
48401
|
-
attributes:
|
|
48646
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
48402
48647
|
}
|
|
48403
48648
|
|
|
48404
48649
|
export declare interface JsonApiThemeInDocument {
|
|
@@ -48423,7 +48668,7 @@ export declare interface JsonApiThemeOut {
|
|
|
48423
48668
|
* API identifier of an object
|
|
48424
48669
|
*/
|
|
48425
48670
|
id: string;
|
|
48426
|
-
attributes:
|
|
48671
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
48427
48672
|
}
|
|
48428
48673
|
|
|
48429
48674
|
export declare interface JsonApiThemeOutDocument {
|
|
@@ -48437,7 +48682,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
48437
48682
|
export declare interface JsonApiThemeOutList {
|
|
48438
48683
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
48439
48684
|
links?: ListLinks;
|
|
48440
|
-
meta?:
|
|
48685
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48441
48686
|
}
|
|
48442
48687
|
|
|
48443
48688
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -48455,7 +48700,7 @@ export declare interface JsonApiThemeOutWithLinks {
|
|
|
48455
48700
|
* API identifier of an object
|
|
48456
48701
|
*/
|
|
48457
48702
|
id: string;
|
|
48458
|
-
attributes:
|
|
48703
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
48459
48704
|
links?: ObjectLinks;
|
|
48460
48705
|
}
|
|
48461
48706
|
|
|
@@ -48502,14 +48747,27 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
48502
48747
|
* API identifier of an object
|
|
48503
48748
|
*/
|
|
48504
48749
|
id: string;
|
|
48505
|
-
attributes:
|
|
48506
|
-
relationships?:
|
|
48750
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
48751
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
48752
|
+
}
|
|
48753
|
+
|
|
48754
|
+
export declare interface JsonApiUserDataFilterInAttributes {
|
|
48755
|
+
title?: string;
|
|
48756
|
+
description?: string;
|
|
48757
|
+
tags?: Array<string>;
|
|
48758
|
+
areRelationsValid?: boolean;
|
|
48759
|
+
maql: string;
|
|
48507
48760
|
}
|
|
48508
48761
|
|
|
48509
48762
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
48510
48763
|
data: JsonApiUserDataFilterIn;
|
|
48511
48764
|
}
|
|
48512
48765
|
|
|
48766
|
+
export declare interface JsonApiUserDataFilterInRelationships {
|
|
48767
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48768
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48769
|
+
}
|
|
48770
|
+
|
|
48513
48771
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
48514
48772
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
48515
48773
|
};
|
|
@@ -48528,8 +48786,8 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
48528
48786
|
* API identifier of an object
|
|
48529
48787
|
*/
|
|
48530
48788
|
id: string;
|
|
48531
|
-
meta?:
|
|
48532
|
-
attributes:
|
|
48789
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48790
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
48533
48791
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48534
48792
|
}
|
|
48535
48793
|
|
|
@@ -48553,7 +48811,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
48553
48811
|
export declare interface JsonApiUserDataFilterOutList {
|
|
48554
48812
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
48555
48813
|
links?: ListLinks;
|
|
48556
|
-
meta?:
|
|
48814
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48557
48815
|
/**
|
|
48558
48816
|
* Included resources
|
|
48559
48817
|
*/
|
|
@@ -48565,9 +48823,9 @@ export declare interface JsonApiUserDataFilterOutRelationships {
|
|
|
48565
48823
|
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48566
48824
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
48567
48825
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
48568
|
-
labels?:
|
|
48569
|
-
metrics?:
|
|
48570
|
-
datasets?:
|
|
48826
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
48827
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
48828
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
48571
48829
|
}
|
|
48572
48830
|
|
|
48573
48831
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -48585,8 +48843,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
48585
48843
|
* API identifier of an object
|
|
48586
48844
|
*/
|
|
48587
48845
|
id: string;
|
|
48588
|
-
meta?:
|
|
48589
|
-
attributes:
|
|
48846
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48847
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
48590
48848
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48591
48849
|
links?: ObjectLinks;
|
|
48592
48850
|
}
|
|
@@ -48610,7 +48868,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
48610
48868
|
*/
|
|
48611
48869
|
id: string;
|
|
48612
48870
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
48613
|
-
relationships?:
|
|
48871
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
48614
48872
|
}
|
|
48615
48873
|
|
|
48616
48874
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -48643,27 +48901,14 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
48643
48901
|
* API identifier of an object
|
|
48644
48902
|
*/
|
|
48645
48903
|
id?: string;
|
|
48646
|
-
attributes:
|
|
48647
|
-
relationships?:
|
|
48648
|
-
}
|
|
48649
|
-
|
|
48650
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
48651
|
-
title?: string;
|
|
48652
|
-
description?: string;
|
|
48653
|
-
tags?: Array<string>;
|
|
48654
|
-
areRelationsValid?: boolean;
|
|
48655
|
-
maql: string;
|
|
48904
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
48905
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
48656
48906
|
}
|
|
48657
48907
|
|
|
48658
48908
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
48659
48909
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
48660
48910
|
}
|
|
48661
48911
|
|
|
48662
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
48663
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48664
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48665
|
-
}
|
|
48666
|
-
|
|
48667
48912
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
48668
48913
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
48669
48914
|
};
|
|
@@ -48682,14 +48927,29 @@ export declare interface JsonApiUserGroupIn {
|
|
|
48682
48927
|
* API identifier of an object
|
|
48683
48928
|
*/
|
|
48684
48929
|
id: string;
|
|
48685
|
-
attributes?:
|
|
48686
|
-
relationships?:
|
|
48930
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
48931
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
48932
|
+
}
|
|
48933
|
+
|
|
48934
|
+
export declare interface JsonApiUserGroupInAttributes {
|
|
48935
|
+
name?: string;
|
|
48687
48936
|
}
|
|
48688
48937
|
|
|
48689
48938
|
export declare interface JsonApiUserGroupInDocument {
|
|
48690
48939
|
data: JsonApiUserGroupIn;
|
|
48691
48940
|
}
|
|
48692
48941
|
|
|
48942
|
+
export declare interface JsonApiUserGroupInRelationships {
|
|
48943
|
+
parents?: JsonApiUserGroupInRelationshipsParents;
|
|
48944
|
+
}
|
|
48945
|
+
|
|
48946
|
+
export declare interface JsonApiUserGroupInRelationshipsParents {
|
|
48947
|
+
/**
|
|
48948
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
48949
|
+
*/
|
|
48950
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
48951
|
+
}
|
|
48952
|
+
|
|
48693
48953
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
48694
48954
|
readonly USER_GROUP: "userGroup";
|
|
48695
48955
|
};
|
|
@@ -48722,12 +48982,8 @@ export declare interface JsonApiUserGroupOut {
|
|
|
48722
48982
|
* API identifier of an object
|
|
48723
48983
|
*/
|
|
48724
48984
|
id: string;
|
|
48725
|
-
attributes?:
|
|
48726
|
-
relationships?:
|
|
48727
|
-
}
|
|
48728
|
-
|
|
48729
|
-
export declare interface JsonApiUserGroupOutAttributes {
|
|
48730
|
-
name?: string;
|
|
48985
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
48986
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
48731
48987
|
}
|
|
48732
48988
|
|
|
48733
48989
|
export declare interface JsonApiUserGroupOutDocument {
|
|
@@ -48745,17 +49001,13 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
48745
49001
|
export declare interface JsonApiUserGroupOutList {
|
|
48746
49002
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
48747
49003
|
links?: ListLinks;
|
|
48748
|
-
meta?:
|
|
49004
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48749
49005
|
/**
|
|
48750
49006
|
* Included resources
|
|
48751
49007
|
*/
|
|
48752
49008
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
48753
49009
|
}
|
|
48754
49010
|
|
|
48755
|
-
export declare interface JsonApiUserGroupOutRelationships {
|
|
48756
|
-
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
48757
|
-
}
|
|
48758
|
-
|
|
48759
49011
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
48760
49012
|
readonly USER_GROUP: "userGroup";
|
|
48761
49013
|
};
|
|
@@ -48771,8 +49023,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
|
|
|
48771
49023
|
* API identifier of an object
|
|
48772
49024
|
*/
|
|
48773
49025
|
id: string;
|
|
48774
|
-
attributes?:
|
|
48775
|
-
relationships?:
|
|
49026
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
49027
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
48776
49028
|
links?: ObjectLinks;
|
|
48777
49029
|
}
|
|
48778
49030
|
|
|
@@ -48794,8 +49046,8 @@ export declare interface JsonApiUserGroupPatch {
|
|
|
48794
49046
|
* API identifier of an object
|
|
48795
49047
|
*/
|
|
48796
49048
|
id: string;
|
|
48797
|
-
attributes?:
|
|
48798
|
-
relationships?:
|
|
49049
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
49050
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
48799
49051
|
}
|
|
48800
49052
|
|
|
48801
49053
|
export declare interface JsonApiUserGroupPatchDocument {
|
|
@@ -48854,7 +49106,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
48854
49106
|
export declare interface JsonApiUserIdentifierOutList {
|
|
48855
49107
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
48856
49108
|
links?: ListLinks;
|
|
48857
|
-
meta?:
|
|
49109
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48858
49110
|
}
|
|
48859
49111
|
|
|
48860
49112
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -48894,14 +49146,25 @@ export declare interface JsonApiUserIn {
|
|
|
48894
49146
|
* API identifier of an object
|
|
48895
49147
|
*/
|
|
48896
49148
|
id: string;
|
|
48897
|
-
attributes?:
|
|
48898
|
-
relationships?:
|
|
49149
|
+
attributes?: JsonApiUserInAttributes;
|
|
49150
|
+
relationships?: JsonApiUserInRelationships;
|
|
49151
|
+
}
|
|
49152
|
+
|
|
49153
|
+
export declare interface JsonApiUserInAttributes {
|
|
49154
|
+
authenticationId?: string;
|
|
49155
|
+
firstname?: string;
|
|
49156
|
+
lastname?: string;
|
|
49157
|
+
email?: string;
|
|
48899
49158
|
}
|
|
48900
49159
|
|
|
48901
49160
|
export declare interface JsonApiUserInDocument {
|
|
48902
49161
|
data: JsonApiUserIn;
|
|
48903
49162
|
}
|
|
48904
49163
|
|
|
49164
|
+
export declare interface JsonApiUserInRelationships {
|
|
49165
|
+
userGroups?: JsonApiUserGroupInRelationshipsParents;
|
|
49166
|
+
}
|
|
49167
|
+
|
|
48905
49168
|
export declare const JsonApiUserInTypeEnum: {
|
|
48906
49169
|
readonly USER: "user";
|
|
48907
49170
|
};
|
|
@@ -48934,15 +49197,8 @@ export declare interface JsonApiUserOut {
|
|
|
48934
49197
|
* API identifier of an object
|
|
48935
49198
|
*/
|
|
48936
49199
|
id: string;
|
|
48937
|
-
attributes?:
|
|
48938
|
-
relationships?:
|
|
48939
|
-
}
|
|
48940
|
-
|
|
48941
|
-
export declare interface JsonApiUserOutAttributes {
|
|
48942
|
-
authenticationId?: string;
|
|
48943
|
-
firstname?: string;
|
|
48944
|
-
lastname?: string;
|
|
48945
|
-
email?: string;
|
|
49200
|
+
attributes?: JsonApiUserInAttributes;
|
|
49201
|
+
relationships?: JsonApiUserInRelationships;
|
|
48946
49202
|
}
|
|
48947
49203
|
|
|
48948
49204
|
export declare interface JsonApiUserOutDocument {
|
|
@@ -48960,24 +49216,13 @@ export declare interface JsonApiUserOutDocument {
|
|
|
48960
49216
|
export declare interface JsonApiUserOutList {
|
|
48961
49217
|
data: Array<JsonApiUserOutWithLinks>;
|
|
48962
49218
|
links?: ListLinks;
|
|
48963
|
-
meta?:
|
|
49219
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48964
49220
|
/**
|
|
48965
49221
|
* Included resources
|
|
48966
49222
|
*/
|
|
48967
49223
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
48968
49224
|
}
|
|
48969
49225
|
|
|
48970
|
-
export declare interface JsonApiUserOutRelationships {
|
|
48971
|
-
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
48972
|
-
}
|
|
48973
|
-
|
|
48974
|
-
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
48975
|
-
/**
|
|
48976
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
48977
|
-
*/
|
|
48978
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
48979
|
-
}
|
|
48980
|
-
|
|
48981
49226
|
export declare const JsonApiUserOutTypeEnum: {
|
|
48982
49227
|
readonly USER: "user";
|
|
48983
49228
|
};
|
|
@@ -48993,8 +49238,8 @@ export declare interface JsonApiUserOutWithLinks {
|
|
|
48993
49238
|
* API identifier of an object
|
|
48994
49239
|
*/
|
|
48995
49240
|
id: string;
|
|
48996
|
-
attributes?:
|
|
48997
|
-
relationships?:
|
|
49241
|
+
attributes?: JsonApiUserInAttributes;
|
|
49242
|
+
relationships?: JsonApiUserInRelationships;
|
|
48998
49243
|
links?: ObjectLinks;
|
|
48999
49244
|
}
|
|
49000
49245
|
|
|
@@ -49016,8 +49261,8 @@ export declare interface JsonApiUserPatch {
|
|
|
49016
49261
|
* API identifier of an object
|
|
49017
49262
|
*/
|
|
49018
49263
|
id: string;
|
|
49019
|
-
attributes?:
|
|
49020
|
-
relationships?:
|
|
49264
|
+
attributes?: JsonApiUserInAttributes;
|
|
49265
|
+
relationships?: JsonApiUserInRelationships;
|
|
49021
49266
|
}
|
|
49022
49267
|
|
|
49023
49268
|
export declare interface JsonApiUserPatchDocument {
|
|
@@ -49042,51 +49287,9 @@ export declare interface JsonApiUserSettingIn {
|
|
|
49042
49287
|
* API identifier of an object
|
|
49043
49288
|
*/
|
|
49044
49289
|
id: string;
|
|
49045
|
-
attributes?:
|
|
49290
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
49046
49291
|
}
|
|
49047
49292
|
|
|
49048
|
-
export declare interface JsonApiUserSettingInAttributes {
|
|
49049
|
-
/**
|
|
49050
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
49051
|
-
*/
|
|
49052
|
-
content?: object;
|
|
49053
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
49054
|
-
}
|
|
49055
|
-
|
|
49056
|
-
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
49057
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
49058
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
49059
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
49060
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
49061
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
49062
|
-
readonly LOCALE: "LOCALE";
|
|
49063
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
49064
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
49065
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
49066
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
49067
|
-
readonly WEEK_START: "WEEK_START";
|
|
49068
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
49069
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
49070
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
49071
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
49072
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
49073
|
-
readonly ALERT: "ALERT";
|
|
49074
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
49075
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
49076
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
49077
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
49078
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
49079
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
49080
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
49081
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
49082
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
49083
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
49084
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
49085
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
49086
|
-
};
|
|
49087
|
-
|
|
49088
|
-
export declare type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
49089
|
-
|
|
49090
49293
|
export declare interface JsonApiUserSettingInDocument {
|
|
49091
49294
|
data: JsonApiUserSettingIn;
|
|
49092
49295
|
}
|
|
@@ -49109,7 +49312,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
49109
49312
|
* API identifier of an object
|
|
49110
49313
|
*/
|
|
49111
49314
|
id: string;
|
|
49112
|
-
attributes?:
|
|
49315
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
49113
49316
|
}
|
|
49114
49317
|
|
|
49115
49318
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -49123,7 +49326,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
49123
49326
|
export declare interface JsonApiUserSettingOutList {
|
|
49124
49327
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
49125
49328
|
links?: ListLinks;
|
|
49126
|
-
meta?:
|
|
49329
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49127
49330
|
}
|
|
49128
49331
|
|
|
49129
49332
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -49141,7 +49344,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
49141
49344
|
* API identifier of an object
|
|
49142
49345
|
*/
|
|
49143
49346
|
id: string;
|
|
49144
|
-
attributes?:
|
|
49347
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
49145
49348
|
links?: ObjectLinks;
|
|
49146
49349
|
}
|
|
49147
49350
|
|
|
@@ -49163,7 +49366,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
49163
49366
|
* API identifier of an object
|
|
49164
49367
|
*/
|
|
49165
49368
|
id: string;
|
|
49166
|
-
attributes:
|
|
49369
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
49167
49370
|
}
|
|
49168
49371
|
|
|
49169
49372
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -49202,11 +49405,24 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
49202
49405
|
* API identifier of an object
|
|
49203
49406
|
*/
|
|
49204
49407
|
id: string;
|
|
49205
|
-
meta?:
|
|
49206
|
-
attributes:
|
|
49408
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49409
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49207
49410
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49208
49411
|
}
|
|
49209
49412
|
|
|
49413
|
+
export declare interface JsonApiVisualizationObjectOutAttributes {
|
|
49414
|
+
title?: string;
|
|
49415
|
+
description?: string;
|
|
49416
|
+
tags?: Array<string>;
|
|
49417
|
+
areRelationsValid?: boolean;
|
|
49418
|
+
/**
|
|
49419
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
49420
|
+
*/
|
|
49421
|
+
content: object;
|
|
49422
|
+
createdAt?: string;
|
|
49423
|
+
modifiedAt?: string;
|
|
49424
|
+
}
|
|
49425
|
+
|
|
49210
49426
|
export declare interface JsonApiVisualizationObjectOutDocument {
|
|
49211
49427
|
data: JsonApiVisualizationObjectOut;
|
|
49212
49428
|
links?: ObjectLinks;
|
|
@@ -49222,21 +49438,43 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
49222
49438
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
49223
49439
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
49224
49440
|
links?: ListLinks;
|
|
49225
|
-
meta?:
|
|
49441
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49226
49442
|
/**
|
|
49227
49443
|
* Included resources
|
|
49228
49444
|
*/
|
|
49229
49445
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
49230
49446
|
}
|
|
49231
49447
|
|
|
49448
|
+
export declare interface JsonApiVisualizationObjectOutMeta {
|
|
49449
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
49450
|
+
}
|
|
49451
|
+
|
|
49452
|
+
export declare interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
49453
|
+
/**
|
|
49454
|
+
* defines type of the origin of the entity
|
|
49455
|
+
*/
|
|
49456
|
+
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
49457
|
+
/**
|
|
49458
|
+
* defines id of the workspace where the entity comes from
|
|
49459
|
+
*/
|
|
49460
|
+
originId: string;
|
|
49461
|
+
}
|
|
49462
|
+
|
|
49463
|
+
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
49464
|
+
readonly NATIVE: "NATIVE";
|
|
49465
|
+
readonly PARENT: "PARENT";
|
|
49466
|
+
};
|
|
49467
|
+
|
|
49468
|
+
export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
49469
|
+
|
|
49232
49470
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
49233
|
-
createdBy?:
|
|
49234
|
-
modifiedBy?:
|
|
49471
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49472
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49235
49473
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
49236
49474
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
49237
|
-
labels?:
|
|
49238
|
-
metrics?:
|
|
49239
|
-
datasets?:
|
|
49475
|
+
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
49476
|
+
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
49477
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
49240
49478
|
}
|
|
49241
49479
|
|
|
49242
49480
|
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
@@ -49246,6 +49484,17 @@ export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
|
49246
49484
|
data: Array<JsonApiAttributeLinkage>;
|
|
49247
49485
|
}
|
|
49248
49486
|
|
|
49487
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
49488
|
+
data: JsonApiUserIdentifierLinkage | null;
|
|
49489
|
+
}
|
|
49490
|
+
|
|
49491
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
49492
|
+
/**
|
|
49493
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49494
|
+
*/
|
|
49495
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
49496
|
+
}
|
|
49497
|
+
|
|
49249
49498
|
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
49250
49499
|
/**
|
|
49251
49500
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -49253,6 +49502,20 @@ export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
|
49253
49502
|
data: Array<JsonApiFactLinkage>;
|
|
49254
49503
|
}
|
|
49255
49504
|
|
|
49505
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
49506
|
+
/**
|
|
49507
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49508
|
+
*/
|
|
49509
|
+
data: Array<JsonApiLabelLinkage>;
|
|
49510
|
+
}
|
|
49511
|
+
|
|
49512
|
+
export declare interface JsonApiVisualizationObjectOutRelationshipsMetrics {
|
|
49513
|
+
/**
|
|
49514
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49515
|
+
*/
|
|
49516
|
+
data: Array<JsonApiMetricLinkage>;
|
|
49517
|
+
}
|
|
49518
|
+
|
|
49256
49519
|
export declare const JsonApiVisualizationObjectOutTypeEnum: {
|
|
49257
49520
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
49258
49521
|
};
|
|
@@ -49268,8 +49531,8 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
49268
49531
|
* API identifier of an object
|
|
49269
49532
|
*/
|
|
49270
49533
|
id: string;
|
|
49271
|
-
meta?:
|
|
49272
|
-
attributes:
|
|
49534
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49535
|
+
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49273
49536
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49274
49537
|
links?: ObjectLinks;
|
|
49275
49538
|
}
|
|
@@ -49317,7 +49580,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
49317
49580
|
* API identifier of an object
|
|
49318
49581
|
*/
|
|
49319
49582
|
id?: string;
|
|
49320
|
-
attributes:
|
|
49583
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
49321
49584
|
}
|
|
49322
49585
|
|
|
49323
49586
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -49342,132 +49605,10 @@ export declare interface JsonApiWorkspaceAutomationOut {
|
|
|
49342
49605
|
* API identifier of an object
|
|
49343
49606
|
*/
|
|
49344
49607
|
id: string;
|
|
49345
|
-
attributes?:
|
|
49608
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
49346
49609
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49347
49610
|
}
|
|
49348
49611
|
|
|
49349
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
49350
|
-
title?: string;
|
|
49351
|
-
description?: string;
|
|
49352
|
-
tags?: Array<string>;
|
|
49353
|
-
areRelationsValid?: boolean;
|
|
49354
|
-
/**
|
|
49355
|
-
* Additional details to be included in the automated message.
|
|
49356
|
-
*/
|
|
49357
|
-
details?: object;
|
|
49358
|
-
metadata?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
49359
|
-
/**
|
|
49360
|
-
* Current state of the automation.
|
|
49361
|
-
*/
|
|
49362
|
-
state?: JsonApiWorkspaceAutomationOutAttributesStateEnum;
|
|
49363
|
-
/**
|
|
49364
|
-
* Specify automation evaluation mode.
|
|
49365
|
-
*/
|
|
49366
|
-
evaluationMode?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
49367
|
-
schedule?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
49368
|
-
alert?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
49369
|
-
tabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
49370
|
-
visualExports?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
49371
|
-
imageExports?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
49372
|
-
rawExports?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
49373
|
-
slidesExports?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
49374
|
-
dashboardTabularExports?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
49375
|
-
/**
|
|
49376
|
-
* External recipients of the automation action results.
|
|
49377
|
-
*/
|
|
49378
|
-
externalRecipients?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
49379
|
-
createdAt?: string;
|
|
49380
|
-
modifiedAt?: string;
|
|
49381
|
-
}
|
|
49382
|
-
|
|
49383
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
49384
|
-
execution: AlertAfm;
|
|
49385
|
-
condition: AlertCondition;
|
|
49386
|
-
/**
|
|
49387
|
-
* 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.
|
|
49388
|
-
*/
|
|
49389
|
-
trigger?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
49390
|
-
}
|
|
49391
|
-
|
|
49392
|
-
export declare const JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum: {
|
|
49393
|
-
readonly ALWAYS: "ALWAYS";
|
|
49394
|
-
readonly ONCE: "ONCE";
|
|
49395
|
-
};
|
|
49396
|
-
|
|
49397
|
-
export declare type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum];
|
|
49398
|
-
|
|
49399
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
49400
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
49401
|
-
}
|
|
49402
|
-
|
|
49403
|
-
export declare const JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum: {
|
|
49404
|
-
readonly SHARED: "SHARED";
|
|
49405
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
49406
|
-
};
|
|
49407
|
-
|
|
49408
|
-
export declare type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum];
|
|
49409
|
-
|
|
49410
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
49411
|
-
/**
|
|
49412
|
-
* E-mail address to send notifications from.
|
|
49413
|
-
*/
|
|
49414
|
-
email: string;
|
|
49415
|
-
}
|
|
49416
|
-
|
|
49417
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
49418
|
-
requestPayload: ImageExportRequest;
|
|
49419
|
-
}
|
|
49420
|
-
|
|
49421
|
-
/**
|
|
49422
|
-
* Additional information for the automation.
|
|
49423
|
-
*/
|
|
49424
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
49425
|
-
widget?: string;
|
|
49426
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
49427
|
-
}
|
|
49428
|
-
|
|
49429
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
49430
|
-
requestPayload: RawExportAutomationRequest;
|
|
49431
|
-
}
|
|
49432
|
-
|
|
49433
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
49434
|
-
/**
|
|
49435
|
-
* 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.
|
|
49436
|
-
*/
|
|
49437
|
-
cron: string;
|
|
49438
|
-
/**
|
|
49439
|
-
* Human-readable description of the cron expression.
|
|
49440
|
-
*/
|
|
49441
|
-
cronDescription?: string;
|
|
49442
|
-
/**
|
|
49443
|
-
* Timezone in which the schedule is defined.
|
|
49444
|
-
*/
|
|
49445
|
-
timezone: string;
|
|
49446
|
-
/**
|
|
49447
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
49448
|
-
*/
|
|
49449
|
-
firstRun?: string;
|
|
49450
|
-
}
|
|
49451
|
-
|
|
49452
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
49453
|
-
requestPayload: SlidesExportRequest;
|
|
49454
|
-
}
|
|
49455
|
-
|
|
49456
|
-
export declare const JsonApiWorkspaceAutomationOutAttributesStateEnum: {
|
|
49457
|
-
readonly ACTIVE: "ACTIVE";
|
|
49458
|
-
readonly PAUSED: "PAUSED";
|
|
49459
|
-
};
|
|
49460
|
-
|
|
49461
|
-
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = (typeof JsonApiWorkspaceAutomationOutAttributesStateEnum)[keyof typeof JsonApiWorkspaceAutomationOutAttributesStateEnum];
|
|
49462
|
-
|
|
49463
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
49464
|
-
requestPayload: TabularExportRequest;
|
|
49465
|
-
}
|
|
49466
|
-
|
|
49467
|
-
export declare interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
49468
|
-
requestPayload: VisualExportRequest;
|
|
49469
|
-
}
|
|
49470
|
-
|
|
49471
49612
|
/**
|
|
49472
49613
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
49473
49614
|
*/
|
|
@@ -49479,51 +49620,22 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
49479
49620
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
49480
49621
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
49481
49622
|
links?: ListLinks;
|
|
49482
|
-
meta?:
|
|
49623
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49483
49624
|
/**
|
|
49484
49625
|
* Included resources
|
|
49485
49626
|
*/
|
|
49486
49627
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
49487
49628
|
}
|
|
49488
49629
|
|
|
49489
|
-
export declare interface JsonApiWorkspaceAutomationOutListMeta {
|
|
49490
|
-
page?: PageMetadata;
|
|
49491
|
-
}
|
|
49492
|
-
|
|
49493
49630
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
49494
|
-
workspace?:
|
|
49495
|
-
notificationChannel?:
|
|
49496
|
-
analyticalDashboard?:
|
|
49497
|
-
createdBy?:
|
|
49498
|
-
modifiedBy?:
|
|
49499
|
-
exportDefinitions?:
|
|
49500
|
-
recipients?:
|
|
49501
|
-
automationResults?:
|
|
49502
|
-
}
|
|
49503
|
-
|
|
49504
|
-
export declare interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
|
|
49505
|
-
/**
|
|
49506
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49507
|
-
*/
|
|
49508
|
-
data: Array<JsonApiAutomationResultLinkage>;
|
|
49509
|
-
}
|
|
49510
|
-
|
|
49511
|
-
export declare interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
|
|
49512
|
-
/**
|
|
49513
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49514
|
-
*/
|
|
49515
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
49516
|
-
}
|
|
49517
|
-
|
|
49518
|
-
export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
|
|
49519
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
49520
|
-
}
|
|
49521
|
-
|
|
49522
|
-
export declare interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
49523
|
-
/**
|
|
49524
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49525
|
-
*/
|
|
49526
|
-
data: Array<JsonApiUserLinkage>;
|
|
49631
|
+
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
49632
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
49633
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
49634
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49635
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49636
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
49637
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
49638
|
+
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
49527
49639
|
}
|
|
49528
49640
|
|
|
49529
49641
|
export declare const JsonApiWorkspaceAutomationOutTypeEnum: {
|
|
@@ -49541,7 +49653,7 @@ export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
49541
49653
|
* API identifier of an object
|
|
49542
49654
|
*/
|
|
49543
49655
|
id: string;
|
|
49544
|
-
attributes?:
|
|
49656
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
49545
49657
|
relationships?: JsonApiWorkspaceAutomationOutRelationships;
|
|
49546
49658
|
links?: ObjectLinks;
|
|
49547
49659
|
}
|
|
@@ -49604,7 +49716,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
49604
49716
|
* API identifier of an object
|
|
49605
49717
|
*/
|
|
49606
49718
|
id: string;
|
|
49607
|
-
meta?:
|
|
49719
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49608
49720
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49609
49721
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49610
49722
|
}
|
|
@@ -49630,7 +49742,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
49630
49742
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
49631
49743
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49632
49744
|
links?: ListLinks;
|
|
49633
|
-
meta?:
|
|
49745
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49634
49746
|
/**
|
|
49635
49747
|
* Included resources
|
|
49636
49748
|
*/
|
|
@@ -49663,7 +49775,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
49663
49775
|
* API identifier of an object
|
|
49664
49776
|
*/
|
|
49665
49777
|
id: string;
|
|
49666
|
-
meta?:
|
|
49778
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49667
49779
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49668
49780
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49669
49781
|
links?: ObjectLinks;
|
|
@@ -49767,7 +49879,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
49767
49879
|
* API identifier of an object
|
|
49768
49880
|
*/
|
|
49769
49881
|
id: string;
|
|
49770
|
-
meta?:
|
|
49882
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49771
49883
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49772
49884
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49773
49885
|
}
|
|
@@ -49787,7 +49899,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
49787
49899
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
49788
49900
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
49789
49901
|
links?: ListLinks;
|
|
49790
|
-
meta?:
|
|
49902
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49791
49903
|
/**
|
|
49792
49904
|
* Included resources
|
|
49793
49905
|
*/
|
|
@@ -49809,7 +49921,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
49809
49921
|
* API identifier of an object
|
|
49810
49922
|
*/
|
|
49811
49923
|
id: string;
|
|
49812
|
-
meta?:
|
|
49924
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
49813
49925
|
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
49814
49926
|
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
49815
49927
|
links?: ObjectLinks;
|
|
@@ -49859,14 +49971,56 @@ export declare interface JsonApiWorkspaceIn {
|
|
|
49859
49971
|
* API identifier of an object
|
|
49860
49972
|
*/
|
|
49861
49973
|
id: string;
|
|
49862
|
-
attributes?:
|
|
49863
|
-
relationships?:
|
|
49974
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
49975
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
49976
|
+
}
|
|
49977
|
+
|
|
49978
|
+
export declare interface JsonApiWorkspaceInAttributes {
|
|
49979
|
+
name?: string | null;
|
|
49980
|
+
/**
|
|
49981
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49982
|
+
* @deprecated
|
|
49983
|
+
*/
|
|
49984
|
+
earlyAccess?: string | null;
|
|
49985
|
+
/**
|
|
49986
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
49987
|
+
*/
|
|
49988
|
+
earlyAccessValues?: Array<string> | null;
|
|
49989
|
+
description?: string | null;
|
|
49990
|
+
/**
|
|
49991
|
+
* Custom prefix of entity identifiers in workspace
|
|
49992
|
+
*/
|
|
49993
|
+
prefix?: string | null;
|
|
49994
|
+
cacheExtraLimit?: number;
|
|
49995
|
+
dataSource?: JsonApiWorkspaceInAttributesDataSource;
|
|
49996
|
+
}
|
|
49997
|
+
|
|
49998
|
+
/**
|
|
49999
|
+
* 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.
|
|
50000
|
+
*/
|
|
50001
|
+
export declare interface JsonApiWorkspaceInAttributesDataSource {
|
|
50002
|
+
/**
|
|
50003
|
+
* The ID of the used data source.
|
|
50004
|
+
*/
|
|
50005
|
+
id: string;
|
|
50006
|
+
/**
|
|
50007
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
50008
|
+
*/
|
|
50009
|
+
schemaPath?: Array<string>;
|
|
49864
50010
|
}
|
|
49865
50011
|
|
|
49866
50012
|
export declare interface JsonApiWorkspaceInDocument {
|
|
49867
50013
|
data: JsonApiWorkspaceIn;
|
|
49868
50014
|
}
|
|
49869
50015
|
|
|
50016
|
+
export declare interface JsonApiWorkspaceInRelationships {
|
|
50017
|
+
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
50018
|
+
}
|
|
50019
|
+
|
|
50020
|
+
export declare interface JsonApiWorkspaceInRelationshipsParent {
|
|
50021
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
50022
|
+
}
|
|
50023
|
+
|
|
49870
50024
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
49871
50025
|
readonly WORKSPACE: "workspace";
|
|
49872
50026
|
};
|
|
@@ -49900,42 +50054,8 @@ export declare interface JsonApiWorkspaceOut {
|
|
|
49900
50054
|
*/
|
|
49901
50055
|
id: string;
|
|
49902
50056
|
meta?: JsonApiWorkspaceOutMeta;
|
|
49903
|
-
attributes?:
|
|
49904
|
-
relationships?:
|
|
49905
|
-
}
|
|
49906
|
-
|
|
49907
|
-
export declare interface JsonApiWorkspaceOutAttributes {
|
|
49908
|
-
name?: string | null;
|
|
49909
|
-
/**
|
|
49910
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49911
|
-
* @deprecated
|
|
49912
|
-
*/
|
|
49913
|
-
earlyAccess?: string | null;
|
|
49914
|
-
/**
|
|
49915
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
49916
|
-
*/
|
|
49917
|
-
earlyAccessValues?: Array<string> | null;
|
|
49918
|
-
description?: string | null;
|
|
49919
|
-
/**
|
|
49920
|
-
* Custom prefix of entity identifiers in workspace
|
|
49921
|
-
*/
|
|
49922
|
-
prefix?: string | null;
|
|
49923
|
-
cacheExtraLimit?: number;
|
|
49924
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
49925
|
-
}
|
|
49926
|
-
|
|
49927
|
-
/**
|
|
49928
|
-
* 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.
|
|
49929
|
-
*/
|
|
49930
|
-
export declare interface JsonApiWorkspaceOutAttributesDataSource {
|
|
49931
|
-
/**
|
|
49932
|
-
* The ID of the used data source.
|
|
49933
|
-
*/
|
|
49934
|
-
id: string;
|
|
49935
|
-
/**
|
|
49936
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
49937
|
-
*/
|
|
49938
|
-
schemaPath?: Array<string>;
|
|
50057
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
50058
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
49939
50059
|
}
|
|
49940
50060
|
|
|
49941
50061
|
export declare interface JsonApiWorkspaceOutDocument {
|
|
@@ -49953,7 +50073,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
49953
50073
|
export declare interface JsonApiWorkspaceOutList {
|
|
49954
50074
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
49955
50075
|
links?: ListLinks;
|
|
49956
|
-
meta?:
|
|
50076
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49957
50077
|
/**
|
|
49958
50078
|
* Included resources
|
|
49959
50079
|
*/
|
|
@@ -50013,14 +50133,6 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
50013
50133
|
|
|
50014
50134
|
export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
|
|
50015
50135
|
|
|
50016
|
-
export declare interface JsonApiWorkspaceOutRelationships {
|
|
50017
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
50018
|
-
}
|
|
50019
|
-
|
|
50020
|
-
export declare interface JsonApiWorkspaceOutRelationshipsParent {
|
|
50021
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
50022
|
-
}
|
|
50023
|
-
|
|
50024
50136
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
50025
50137
|
readonly WORKSPACE: "workspace";
|
|
50026
50138
|
};
|
|
@@ -50037,8 +50149,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
|
|
|
50037
50149
|
*/
|
|
50038
50150
|
id: string;
|
|
50039
50151
|
meta?: JsonApiWorkspaceOutMeta;
|
|
50040
|
-
attributes?:
|
|
50041
|
-
relationships?:
|
|
50152
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
50153
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
50042
50154
|
links?: ObjectLinks;
|
|
50043
50155
|
}
|
|
50044
50156
|
|
|
@@ -50060,8 +50172,8 @@ export declare interface JsonApiWorkspacePatch {
|
|
|
50060
50172
|
* API identifier of an object
|
|
50061
50173
|
*/
|
|
50062
50174
|
id: string;
|
|
50063
|
-
attributes?:
|
|
50064
|
-
relationships?:
|
|
50175
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
50176
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
50065
50177
|
}
|
|
50066
50178
|
|
|
50067
50179
|
export declare interface JsonApiWorkspacePatchDocument {
|
|
@@ -50086,7 +50198,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
50086
50198
|
* API identifier of an object
|
|
50087
50199
|
*/
|
|
50088
50200
|
id: string;
|
|
50089
|
-
attributes?:
|
|
50201
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50090
50202
|
}
|
|
50091
50203
|
|
|
50092
50204
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -50111,8 +50223,8 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
50111
50223
|
* API identifier of an object
|
|
50112
50224
|
*/
|
|
50113
50225
|
id: string;
|
|
50114
|
-
meta?:
|
|
50115
|
-
attributes?:
|
|
50226
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50227
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50116
50228
|
}
|
|
50117
50229
|
|
|
50118
50230
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -50126,7 +50238,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
50126
50238
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
50127
50239
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
50128
50240
|
links?: ListLinks;
|
|
50129
|
-
meta?:
|
|
50241
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50130
50242
|
}
|
|
50131
50243
|
|
|
50132
50244
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -50144,8 +50256,8 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
50144
50256
|
* API identifier of an object
|
|
50145
50257
|
*/
|
|
50146
50258
|
id: string;
|
|
50147
|
-
meta?:
|
|
50148
|
-
attributes?:
|
|
50259
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50260
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50149
50261
|
links?: ObjectLinks;
|
|
50150
50262
|
}
|
|
50151
50263
|
|
|
@@ -50167,7 +50279,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
50167
50279
|
* API identifier of an object
|
|
50168
50280
|
*/
|
|
50169
50281
|
id: string;
|
|
50170
|
-
attributes?:
|
|
50282
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50171
50283
|
}
|
|
50172
50284
|
|
|
50173
50285
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -50192,7 +50304,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
50192
50304
|
* API identifier of an object
|
|
50193
50305
|
*/
|
|
50194
50306
|
id?: string;
|
|
50195
|
-
attributes?:
|
|
50307
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50196
50308
|
}
|
|
50197
50309
|
|
|
50198
50310
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|