@gooddata/api-client-tiger 11.2.0-alpha.6 → 11.3.0-alpha.1
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 +1045 -511
- package/esm/generated/afm-rest-api/api.d.ts +692 -5
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +761 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +283 -0
- package/esm/generated/automation-json-api/api.d.ts +23 -7
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +10 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +16 -9
- package/esm/generated/export-json-api/api.d.ts +22 -7
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +9 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +16 -9
- package/esm/generated/metadata-json-api/api.d.ts +550 -452
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +43 -16
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +7957 -7854
- package/package.json +3 -4
|
@@ -173,14 +173,18 @@ export interface ApiEntitlement {
|
|
|
173
173
|
export declare const ApiEntitlementNameEnum: {
|
|
174
174
|
readonly CACHE_STRATEGY: "CacheStrategy";
|
|
175
175
|
readonly CONTRACT: "Contract";
|
|
176
|
+
readonly CUSTOM_THEMING: "CustomTheming";
|
|
176
177
|
readonly EXTRA_CACHE: "ExtraCache";
|
|
177
178
|
readonly HIPAA: "Hipaa";
|
|
179
|
+
readonly PDF_EXPORTS: "PdfExports";
|
|
178
180
|
readonly MANAGED_OIDC: "ManagedOIDC";
|
|
181
|
+
readonly UI_LOCALIZATION: "UiLocalization";
|
|
179
182
|
readonly TIER: "Tier";
|
|
180
183
|
readonly USER_COUNT: "UserCount";
|
|
181
184
|
readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
|
|
182
185
|
readonly UNLIMITED_USERS: "UnlimitedUsers";
|
|
183
186
|
readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
|
|
187
|
+
readonly WHITE_LABELING: "WhiteLabeling";
|
|
184
188
|
readonly WORKSPACE_COUNT: "WorkspaceCount";
|
|
185
189
|
readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
|
|
186
190
|
readonly AUTOMATION_COUNT: "AutomationCount";
|
|
@@ -630,14 +634,33 @@ export type DashboardDateFilterDateFilterFrom = number | string;
|
|
|
630
634
|
*/
|
|
631
635
|
export interface DashboardExportSettings {
|
|
632
636
|
/**
|
|
633
|
-
* If true, the export will contain the information about the exported date
|
|
637
|
+
* If true, the export will contain the information about the export – exported date, dashboard filters, etc.
|
|
634
638
|
*/
|
|
635
639
|
exportInfo?: boolean;
|
|
636
640
|
/**
|
|
637
641
|
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
638
642
|
*/
|
|
639
643
|
mergeHeaders?: boolean;
|
|
644
|
+
/**
|
|
645
|
+
* Set page size. (PDF)
|
|
646
|
+
*/
|
|
647
|
+
pageSize?: DashboardExportSettingsPageSizeEnum;
|
|
648
|
+
/**
|
|
649
|
+
* Set page orientation. (PDF)
|
|
650
|
+
*/
|
|
651
|
+
pageOrientation?: DashboardExportSettingsPageOrientationEnum;
|
|
640
652
|
}
|
|
653
|
+
export declare const DashboardExportSettingsPageSizeEnum: {
|
|
654
|
+
readonly A3: "A3";
|
|
655
|
+
readonly A4: "A4";
|
|
656
|
+
readonly LETTER: "LETTER";
|
|
657
|
+
};
|
|
658
|
+
export type DashboardExportSettingsPageSizeEnum = (typeof DashboardExportSettingsPageSizeEnum)[keyof typeof DashboardExportSettingsPageSizeEnum];
|
|
659
|
+
export declare const DashboardExportSettingsPageOrientationEnum: {
|
|
660
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
661
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
662
|
+
};
|
|
663
|
+
export type DashboardExportSettingsPageOrientationEnum = (typeof DashboardExportSettingsPageOrientationEnum)[keyof typeof DashboardExportSettingsPageOrientationEnum];
|
|
641
664
|
/**
|
|
642
665
|
* @type DashboardFilter
|
|
643
666
|
*/
|
|
@@ -714,6 +737,7 @@ export interface DashboardTabularExportRequestV2 {
|
|
|
714
737
|
}
|
|
715
738
|
export declare const DashboardTabularExportRequestV2FormatEnum: {
|
|
716
739
|
readonly XLSX: "XLSX";
|
|
740
|
+
readonly PDF: "PDF";
|
|
717
741
|
};
|
|
718
742
|
export type DashboardTabularExportRequestV2FormatEnum = (typeof DashboardTabularExportRequestV2FormatEnum)[keyof typeof DashboardTabularExportRequestV2FormatEnum];
|
|
719
743
|
/**
|
|
@@ -1026,6 +1050,10 @@ export interface DeclarativeAttribute {
|
|
|
1026
1050
|
* A type of the source column
|
|
1027
1051
|
*/
|
|
1028
1052
|
sourceColumnDataType?: DeclarativeAttributeSourceColumnDataTypeEnum;
|
|
1053
|
+
/**
|
|
1054
|
+
* If true, this attribute is hidden from AI search results.
|
|
1055
|
+
*/
|
|
1056
|
+
isHidden?: boolean;
|
|
1029
1057
|
}
|
|
1030
1058
|
export declare const DeclarativeAttributeSortDirectionEnum: {
|
|
1031
1059
|
readonly ASC: "ASC";
|
|
@@ -1585,6 +1613,10 @@ export interface DeclarativeFact {
|
|
|
1585
1613
|
* A list of tags.
|
|
1586
1614
|
*/
|
|
1587
1615
|
tags?: Array<string>;
|
|
1616
|
+
/**
|
|
1617
|
+
* If true, this fact is hidden from AI search results.
|
|
1618
|
+
*/
|
|
1619
|
+
isHidden?: boolean;
|
|
1588
1620
|
}
|
|
1589
1621
|
export declare const DeclarativeFactSourceColumnDataTypeEnum: {
|
|
1590
1622
|
readonly INT: "INT";
|
|
@@ -1760,6 +1792,10 @@ export interface DeclarativeLabel {
|
|
|
1760
1792
|
* Specific type of label
|
|
1761
1793
|
*/
|
|
1762
1794
|
valueType?: DeclarativeLabelValueTypeEnum;
|
|
1795
|
+
/**
|
|
1796
|
+
* Determines if the label is hidden from AI features.
|
|
1797
|
+
*/
|
|
1798
|
+
isHidden?: boolean;
|
|
1763
1799
|
}
|
|
1764
1800
|
export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
|
|
1765
1801
|
readonly INT: "INT";
|
|
@@ -1828,6 +1864,10 @@ export interface DeclarativeMetric {
|
|
|
1828
1864
|
* Time of the entity creation.
|
|
1829
1865
|
*/
|
|
1830
1866
|
createdAt?: string | null;
|
|
1867
|
+
/**
|
|
1868
|
+
* If true, this metric is hidden from AI search results.
|
|
1869
|
+
*/
|
|
1870
|
+
isHidden?: boolean;
|
|
1831
1871
|
}
|
|
1832
1872
|
/**
|
|
1833
1873
|
* A data model structured as a set of its attributes.
|
|
@@ -2180,12 +2220,15 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
2180
2220
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
2181
2221
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
2182
2222
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
2223
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
2183
2224
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
2184
2225
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
2185
2226
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
2186
2227
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
2187
2228
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
2188
2229
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
2230
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
2231
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
2189
2232
|
};
|
|
2190
2233
|
export type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
2191
2234
|
export interface DeclarativeSingleWorkspacePermission {
|
|
@@ -2462,6 +2505,10 @@ export interface DeclarativeVisualizationObject {
|
|
|
2462
2505
|
* Time of the entity creation.
|
|
2463
2506
|
*/
|
|
2464
2507
|
createdAt?: string | null;
|
|
2508
|
+
/**
|
|
2509
|
+
* If true, this visualization object is hidden from AI search results.
|
|
2510
|
+
*/
|
|
2511
|
+
isHidden?: boolean;
|
|
2465
2512
|
}
|
|
2466
2513
|
/**
|
|
2467
2514
|
* A declarative form of a particular workspace.
|
|
@@ -2709,14 +2756,18 @@ export interface EntitlementsRequest {
|
|
|
2709
2756
|
export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
2710
2757
|
readonly CACHE_STRATEGY: "CacheStrategy";
|
|
2711
2758
|
readonly CONTRACT: "Contract";
|
|
2759
|
+
readonly CUSTOM_THEMING: "CustomTheming";
|
|
2712
2760
|
readonly EXTRA_CACHE: "ExtraCache";
|
|
2713
2761
|
readonly HIPAA: "Hipaa";
|
|
2762
|
+
readonly PDF_EXPORTS: "PdfExports";
|
|
2714
2763
|
readonly MANAGED_OIDC: "ManagedOIDC";
|
|
2764
|
+
readonly UI_LOCALIZATION: "UiLocalization";
|
|
2715
2765
|
readonly TIER: "Tier";
|
|
2716
2766
|
readonly USER_COUNT: "UserCount";
|
|
2717
2767
|
readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
|
|
2718
2768
|
readonly UNLIMITED_USERS: "UnlimitedUsers";
|
|
2719
2769
|
readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
|
|
2770
|
+
readonly WHITE_LABELING: "WhiteLabeling";
|
|
2720
2771
|
readonly WORKSPACE_COUNT: "WorkspaceCount";
|
|
2721
2772
|
readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
|
|
2722
2773
|
readonly AUTOMATION_COUNT: "AutomationCount";
|
|
@@ -2831,6 +2882,10 @@ export interface GenerateLdmRequest {
|
|
|
2831
2882
|
* Columns starting with this prefix will be considered as secondary labels. The prefix is then followed by the value of `separator` parameter. Given the secondary label prefix is `ls` and separator is `__`, the columns with name like `ls__country_id__country_name` will be considered as secondary labels.
|
|
2832
2883
|
*/
|
|
2833
2884
|
secondaryLabelPrefix?: string;
|
|
2885
|
+
/**
|
|
2886
|
+
* Columns starting with this prefix will be considered as aggregated facts. The prefix is then followed by the value of `separator` parameter. Given the aggregated fact prefix is `aggr` and separator is `__`, the columns with name like `aggr__sum__product__sold` will be considered as aggregated sold fact in the product table with SUM aggregate function.
|
|
2887
|
+
*/
|
|
2888
|
+
aggregatedFactPrefix?: string;
|
|
2834
2889
|
/**
|
|
2835
2890
|
* Columns starting with this prefix will be considered as facts. The prefix is then followed by the value of `separator` parameter. Given the fact prefix is `f` and separator is `__`, the columns with name like `f__sold` will be considered as facts.
|
|
2836
2891
|
*/
|
|
@@ -3097,7 +3152,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
3097
3152
|
* API identifier of an object
|
|
3098
3153
|
*/
|
|
3099
3154
|
id: string;
|
|
3100
|
-
meta?:
|
|
3155
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3101
3156
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3102
3157
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3103
3158
|
}
|
|
@@ -3147,14 +3202,17 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3147
3202
|
export interface JsonApiAggregatedFactOutList {
|
|
3148
3203
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3149
3204
|
links?: ListLinks;
|
|
3150
|
-
meta?:
|
|
3205
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3151
3206
|
/**
|
|
3152
3207
|
* Included resources
|
|
3153
3208
|
*/
|
|
3154
3209
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
3155
3210
|
}
|
|
3211
|
+
export interface JsonApiAggregatedFactOutListMeta {
|
|
3212
|
+
page?: PageMetadata;
|
|
3213
|
+
}
|
|
3156
3214
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
3157
|
-
dataset?:
|
|
3215
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
3158
3216
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
3159
3217
|
}
|
|
3160
3218
|
export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
|
|
@@ -3169,7 +3227,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
|
|
|
3169
3227
|
* API identifier of an object
|
|
3170
3228
|
*/
|
|
3171
3229
|
id: string;
|
|
3172
|
-
meta?:
|
|
3230
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3173
3231
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3174
3232
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3175
3233
|
links?: ObjectLinks;
|
|
@@ -3190,22 +3248,12 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3190
3248
|
* API identifier of an object
|
|
3191
3249
|
*/
|
|
3192
3250
|
id: string;
|
|
3193
|
-
attributes:
|
|
3251
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
3194
3252
|
}
|
|
3195
3253
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3196
3254
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3197
3255
|
};
|
|
3198
3256
|
export type JsonApiAnalyticalDashboardInTypeEnum = (typeof JsonApiAnalyticalDashboardInTypeEnum)[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
3199
|
-
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
3200
|
-
title?: string;
|
|
3201
|
-
description?: string;
|
|
3202
|
-
tags?: Array<string>;
|
|
3203
|
-
areRelationsValid?: boolean;
|
|
3204
|
-
/**
|
|
3205
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3206
|
-
*/
|
|
3207
|
-
content: object;
|
|
3208
|
-
}
|
|
3209
3257
|
export interface JsonApiAnalyticalDashboardInDocument {
|
|
3210
3258
|
data: JsonApiAnalyticalDashboardIn;
|
|
3211
3259
|
}
|
|
@@ -3233,13 +3281,25 @@ export interface JsonApiAnalyticalDashboardOut {
|
|
|
3233
3281
|
*/
|
|
3234
3282
|
id: string;
|
|
3235
3283
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3236
|
-
attributes:
|
|
3284
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
3237
3285
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3238
3286
|
}
|
|
3239
3287
|
export declare const JsonApiAnalyticalDashboardOutTypeEnum: {
|
|
3240
3288
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3241
3289
|
};
|
|
3242
3290
|
export type JsonApiAnalyticalDashboardOutTypeEnum = (typeof JsonApiAnalyticalDashboardOutTypeEnum)[keyof typeof JsonApiAnalyticalDashboardOutTypeEnum];
|
|
3291
|
+
export interface JsonApiAnalyticalDashboardOutAttributes {
|
|
3292
|
+
title?: string;
|
|
3293
|
+
description?: string;
|
|
3294
|
+
tags?: Array<string>;
|
|
3295
|
+
areRelationsValid?: boolean;
|
|
3296
|
+
/**
|
|
3297
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3298
|
+
*/
|
|
3299
|
+
content: object;
|
|
3300
|
+
createdAt?: string;
|
|
3301
|
+
modifiedAt?: string;
|
|
3302
|
+
}
|
|
3243
3303
|
export interface JsonApiAnalyticalDashboardOutDocument {
|
|
3244
3304
|
data: JsonApiAnalyticalDashboardOut;
|
|
3245
3305
|
links?: ObjectLinks;
|
|
@@ -3258,7 +3318,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3258
3318
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3259
3319
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3260
3320
|
links?: ListLinks;
|
|
3261
|
-
meta?:
|
|
3321
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3262
3322
|
/**
|
|
3263
3323
|
* Included resources
|
|
3264
3324
|
*/
|
|
@@ -3269,7 +3329,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
3269
3329
|
* List of valid permissions for a logged-in user.
|
|
3270
3330
|
*/
|
|
3271
3331
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
3272
|
-
origin?:
|
|
3332
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
3273
3333
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
3274
3334
|
}
|
|
3275
3335
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
@@ -3291,7 +3351,7 @@ export interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
3291
3351
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
3292
3352
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3293
3353
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
3294
|
-
datasets?:
|
|
3354
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
3295
3355
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
3296
3356
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
3297
3357
|
}
|
|
@@ -3329,7 +3389,7 @@ export interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
3329
3389
|
*/
|
|
3330
3390
|
id: string;
|
|
3331
3391
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
3332
|
-
attributes:
|
|
3392
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
3333
3393
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
3334
3394
|
links?: ObjectLinks;
|
|
3335
3395
|
}
|
|
@@ -3380,7 +3440,7 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3380
3440
|
* API identifier of an object
|
|
3381
3441
|
*/
|
|
3382
3442
|
id?: string;
|
|
3383
|
-
attributes:
|
|
3443
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
3384
3444
|
}
|
|
3385
3445
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3386
3446
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -3443,7 +3503,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3443
3503
|
export interface JsonApiApiTokenOutList {
|
|
3444
3504
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3445
3505
|
links?: ListLinks;
|
|
3446
|
-
meta?:
|
|
3506
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3447
3507
|
}
|
|
3448
3508
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3449
3509
|
/**
|
|
@@ -3473,22 +3533,12 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
3473
3533
|
* API identifier of an object
|
|
3474
3534
|
*/
|
|
3475
3535
|
id: string;
|
|
3476
|
-
attributes?:
|
|
3536
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3477
3537
|
}
|
|
3478
3538
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
3479
3539
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3480
3540
|
};
|
|
3481
3541
|
export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
3482
|
-
export interface JsonApiAttributeHierarchyInAttributes {
|
|
3483
|
-
title?: string;
|
|
3484
|
-
description?: string;
|
|
3485
|
-
tags?: Array<string>;
|
|
3486
|
-
areRelationsValid?: boolean;
|
|
3487
|
-
/**
|
|
3488
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3489
|
-
*/
|
|
3490
|
-
content?: object;
|
|
3491
|
-
}
|
|
3492
3542
|
export interface JsonApiAttributeHierarchyInDocument {
|
|
3493
3543
|
data: JsonApiAttributeHierarchyIn;
|
|
3494
3544
|
}
|
|
@@ -3515,7 +3565,7 @@ export interface JsonApiAttributeHierarchyOut {
|
|
|
3515
3565
|
* API identifier of an object
|
|
3516
3566
|
*/
|
|
3517
3567
|
id: string;
|
|
3518
|
-
meta?:
|
|
3568
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3519
3569
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3520
3570
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3521
3571
|
}
|
|
@@ -3553,7 +3603,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3553
3603
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3554
3604
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3555
3605
|
links?: ListLinks;
|
|
3556
|
-
meta?:
|
|
3606
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3557
3607
|
/**
|
|
3558
3608
|
* Included resources
|
|
3559
3609
|
*/
|
|
@@ -3562,7 +3612,7 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
3562
3612
|
export interface JsonApiAttributeHierarchyOutRelationships {
|
|
3563
3613
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3564
3614
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3565
|
-
attributes?:
|
|
3615
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
3566
3616
|
}
|
|
3567
3617
|
export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
3568
3618
|
/**
|
|
@@ -3573,7 +3623,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
3573
3623
|
* API identifier of an object
|
|
3574
3624
|
*/
|
|
3575
3625
|
id: string;
|
|
3576
|
-
meta?:
|
|
3626
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3577
3627
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3578
3628
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3579
3629
|
links?: ObjectLinks;
|
|
@@ -3594,12 +3644,22 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
3594
3644
|
* API identifier of an object
|
|
3595
3645
|
*/
|
|
3596
3646
|
id: string;
|
|
3597
|
-
attributes?:
|
|
3647
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3598
3648
|
}
|
|
3599
3649
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
3600
3650
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3601
3651
|
};
|
|
3602
3652
|
export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
3653
|
+
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
3654
|
+
title?: string;
|
|
3655
|
+
description?: string;
|
|
3656
|
+
tags?: Array<string>;
|
|
3657
|
+
areRelationsValid?: boolean;
|
|
3658
|
+
/**
|
|
3659
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3660
|
+
*/
|
|
3661
|
+
content?: object;
|
|
3662
|
+
}
|
|
3603
3663
|
export interface JsonApiAttributeHierarchyPatchDocument {
|
|
3604
3664
|
data: JsonApiAttributeHierarchyPatch;
|
|
3605
3665
|
}
|
|
@@ -3626,7 +3686,7 @@ export interface JsonApiAttributeOut {
|
|
|
3626
3686
|
* API identifier of an object
|
|
3627
3687
|
*/
|
|
3628
3688
|
id: string;
|
|
3629
|
-
meta?:
|
|
3689
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3630
3690
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3631
3691
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3632
3692
|
}
|
|
@@ -3644,6 +3704,7 @@ export interface JsonApiAttributeOutAttributes {
|
|
|
3644
3704
|
sortDirection?: JsonApiAttributeOutAttributesSortDirectionEnum;
|
|
3645
3705
|
sourceColumn?: string;
|
|
3646
3706
|
sourceColumnDataType?: JsonApiAttributeOutAttributesSourceColumnDataTypeEnum;
|
|
3707
|
+
isHidden?: boolean;
|
|
3647
3708
|
}
|
|
3648
3709
|
export declare const JsonApiAttributeOutAttributesGranularityEnum: {
|
|
3649
3710
|
readonly MINUTE: "MINUTE";
|
|
@@ -3697,14 +3758,14 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3697
3758
|
export interface JsonApiAttributeOutList {
|
|
3698
3759
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3699
3760
|
links?: ListLinks;
|
|
3700
|
-
meta?:
|
|
3761
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3701
3762
|
/**
|
|
3702
3763
|
* Included resources
|
|
3703
3764
|
*/
|
|
3704
3765
|
included?: Array<JsonApiAttributeOutIncludes>;
|
|
3705
3766
|
}
|
|
3706
3767
|
export interface JsonApiAttributeOutRelationships {
|
|
3707
|
-
dataset?:
|
|
3768
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
3708
3769
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3709
3770
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3710
3771
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -3715,9 +3776,6 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
3715
3776
|
*/
|
|
3716
3777
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
3717
3778
|
}
|
|
3718
|
-
export interface JsonApiAttributeOutRelationshipsDataset {
|
|
3719
|
-
data: JsonApiDatasetLinkage | null;
|
|
3720
|
-
}
|
|
3721
3779
|
export interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
3722
3780
|
data: JsonApiLabelLinkage | null;
|
|
3723
3781
|
}
|
|
@@ -3730,7 +3788,7 @@ export interface JsonApiAttributeOutWithLinks {
|
|
|
3730
3788
|
* API identifier of an object
|
|
3731
3789
|
*/
|
|
3732
3790
|
id: string;
|
|
3733
|
-
meta?:
|
|
3791
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3734
3792
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3735
3793
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3736
3794
|
links?: ObjectLinks;
|
|
@@ -3751,14 +3809,48 @@ export interface JsonApiAutomationIn {
|
|
|
3751
3809
|
* API identifier of an object
|
|
3752
3810
|
*/
|
|
3753
3811
|
id: string;
|
|
3754
|
-
attributes?:
|
|
3755
|
-
relationships?:
|
|
3812
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
3813
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
3756
3814
|
}
|
|
3757
3815
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
3758
3816
|
readonly AUTOMATION: "automation";
|
|
3759
3817
|
};
|
|
3760
3818
|
export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
3761
|
-
export interface
|
|
3819
|
+
export interface JsonApiAutomationInDocument {
|
|
3820
|
+
data: JsonApiAutomationIn;
|
|
3821
|
+
}
|
|
3822
|
+
/**
|
|
3823
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3824
|
+
*/
|
|
3825
|
+
export interface JsonApiAutomationLinkage {
|
|
3826
|
+
id: string;
|
|
3827
|
+
type: JsonApiAutomationLinkageTypeEnum;
|
|
3828
|
+
}
|
|
3829
|
+
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
3830
|
+
readonly AUTOMATION: "automation";
|
|
3831
|
+
};
|
|
3832
|
+
export type JsonApiAutomationLinkageTypeEnum = (typeof JsonApiAutomationLinkageTypeEnum)[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
3833
|
+
/**
|
|
3834
|
+
* JSON:API representation of automation entity.
|
|
3835
|
+
*/
|
|
3836
|
+
export interface JsonApiAutomationOut {
|
|
3837
|
+
/**
|
|
3838
|
+
* Object type
|
|
3839
|
+
*/
|
|
3840
|
+
type: JsonApiAutomationOutTypeEnum;
|
|
3841
|
+
/**
|
|
3842
|
+
* API identifier of an object
|
|
3843
|
+
*/
|
|
3844
|
+
id: string;
|
|
3845
|
+
meta?: JsonApiDatasetOutMeta;
|
|
3846
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
3847
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
3848
|
+
}
|
|
3849
|
+
export declare const JsonApiAutomationOutTypeEnum: {
|
|
3850
|
+
readonly AUTOMATION: "automation";
|
|
3851
|
+
};
|
|
3852
|
+
export type JsonApiAutomationOutTypeEnum = (typeof JsonApiAutomationOutTypeEnum)[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
3853
|
+
export interface JsonApiAutomationOutAttributes {
|
|
3762
3854
|
title?: string;
|
|
3763
3855
|
description?: string;
|
|
3764
3856
|
tags?: Array<string>;
|
|
@@ -3767,74 +3859,76 @@ export interface JsonApiAutomationInAttributes {
|
|
|
3767
3859
|
* Additional details to be included in the automated message.
|
|
3768
3860
|
*/
|
|
3769
3861
|
details?: object;
|
|
3770
|
-
metadata?:
|
|
3862
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
3771
3863
|
/**
|
|
3772
3864
|
* Current state of the automation.
|
|
3773
3865
|
*/
|
|
3774
|
-
state?:
|
|
3866
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
3775
3867
|
/**
|
|
3776
3868
|
* Specify automation evaluation mode.
|
|
3777
3869
|
*/
|
|
3778
|
-
evaluationMode?:
|
|
3779
|
-
schedule?:
|
|
3780
|
-
alert?:
|
|
3781
|
-
tabularExports?: Array<
|
|
3782
|
-
visualExports?: Array<
|
|
3783
|
-
imageExports?: Array<
|
|
3784
|
-
rawExports?: Array<
|
|
3785
|
-
slidesExports?: Array<
|
|
3786
|
-
dashboardTabularExports?: Array<
|
|
3870
|
+
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3871
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
3872
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
3873
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
3874
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
3875
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
3876
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
3877
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
3878
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
3787
3879
|
/**
|
|
3788
3880
|
* External recipients of the automation action results.
|
|
3789
3881
|
*/
|
|
3790
|
-
externalRecipients?: Array<
|
|
3882
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
3883
|
+
createdAt?: string;
|
|
3884
|
+
modifiedAt?: string;
|
|
3791
3885
|
}
|
|
3792
|
-
export declare const
|
|
3886
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
3793
3887
|
readonly ACTIVE: "ACTIVE";
|
|
3794
3888
|
readonly PAUSED: "PAUSED";
|
|
3795
3889
|
};
|
|
3796
|
-
export type
|
|
3797
|
-
export declare const
|
|
3890
|
+
export type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
3891
|
+
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
3798
3892
|
readonly SHARED: "SHARED";
|
|
3799
3893
|
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3800
3894
|
};
|
|
3801
|
-
export type
|
|
3802
|
-
export interface
|
|
3895
|
+
export type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
3896
|
+
export interface JsonApiAutomationOutAttributesAlert {
|
|
3803
3897
|
execution: AlertAfm;
|
|
3804
3898
|
condition: AlertCondition;
|
|
3805
3899
|
/**
|
|
3806
3900
|
* 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.
|
|
3807
3901
|
*/
|
|
3808
|
-
trigger?:
|
|
3902
|
+
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
3809
3903
|
}
|
|
3810
|
-
export declare const
|
|
3904
|
+
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
3811
3905
|
readonly ALWAYS: "ALWAYS";
|
|
3812
3906
|
readonly ONCE: "ONCE";
|
|
3813
3907
|
};
|
|
3814
|
-
export type
|
|
3815
|
-
export interface
|
|
3908
|
+
export type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
3909
|
+
export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
3816
3910
|
requestPayload: DashboardTabularExportRequestV2;
|
|
3817
3911
|
}
|
|
3818
|
-
export interface
|
|
3912
|
+
export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
3819
3913
|
/**
|
|
3820
3914
|
* E-mail address to send notifications from.
|
|
3821
3915
|
*/
|
|
3822
3916
|
email: string;
|
|
3823
3917
|
}
|
|
3824
|
-
export interface
|
|
3918
|
+
export interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
3825
3919
|
requestPayload: ImageExportRequest;
|
|
3826
3920
|
}
|
|
3827
3921
|
/**
|
|
3828
3922
|
* Additional information for the automation.
|
|
3829
3923
|
*/
|
|
3830
|
-
export interface
|
|
3924
|
+
export interface JsonApiAutomationOutAttributesMetadata {
|
|
3831
3925
|
widget?: string;
|
|
3832
3926
|
visibleFilters?: Array<VisibleFilter>;
|
|
3833
3927
|
}
|
|
3834
|
-
export interface
|
|
3928
|
+
export interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
3835
3929
|
requestPayload: RawExportAutomationRequest;
|
|
3836
3930
|
}
|
|
3837
|
-
export interface
|
|
3931
|
+
export interface JsonApiAutomationOutAttributesSchedule {
|
|
3838
3932
|
/**
|
|
3839
3933
|
* 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.
|
|
3840
3934
|
*/
|
|
@@ -3852,116 +3946,15 @@ export interface JsonApiAutomationInAttributesSchedule {
|
|
|
3852
3946
|
*/
|
|
3853
3947
|
firstRun?: string;
|
|
3854
3948
|
}
|
|
3855
|
-
export interface
|
|
3949
|
+
export interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
3856
3950
|
requestPayload: SlidesExportRequest;
|
|
3857
3951
|
}
|
|
3858
|
-
export interface
|
|
3952
|
+
export interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
3859
3953
|
requestPayload: TabularExportRequest;
|
|
3860
3954
|
}
|
|
3861
|
-
export interface
|
|
3955
|
+
export interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
3862
3956
|
requestPayload: VisualExportRequest;
|
|
3863
3957
|
}
|
|
3864
|
-
export interface JsonApiAutomationInDocument {
|
|
3865
|
-
data: JsonApiAutomationIn;
|
|
3866
|
-
}
|
|
3867
|
-
export interface JsonApiAutomationInRelationships {
|
|
3868
|
-
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3869
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3870
|
-
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3871
|
-
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3872
|
-
}
|
|
3873
|
-
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3874
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3875
|
-
}
|
|
3876
|
-
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3877
|
-
/**
|
|
3878
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3879
|
-
*/
|
|
3880
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3881
|
-
}
|
|
3882
|
-
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3883
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
3884
|
-
}
|
|
3885
|
-
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3886
|
-
/**
|
|
3887
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3888
|
-
*/
|
|
3889
|
-
data: Array<JsonApiUserLinkage>;
|
|
3890
|
-
}
|
|
3891
|
-
/**
|
|
3892
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3893
|
-
*/
|
|
3894
|
-
export interface JsonApiAutomationLinkage {
|
|
3895
|
-
id: string;
|
|
3896
|
-
type: JsonApiAutomationLinkageTypeEnum;
|
|
3897
|
-
}
|
|
3898
|
-
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
3899
|
-
readonly AUTOMATION: "automation";
|
|
3900
|
-
};
|
|
3901
|
-
export type JsonApiAutomationLinkageTypeEnum = (typeof JsonApiAutomationLinkageTypeEnum)[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
3902
|
-
/**
|
|
3903
|
-
* JSON:API representation of automation entity.
|
|
3904
|
-
*/
|
|
3905
|
-
export interface JsonApiAutomationOut {
|
|
3906
|
-
/**
|
|
3907
|
-
* Object type
|
|
3908
|
-
*/
|
|
3909
|
-
type: JsonApiAutomationOutTypeEnum;
|
|
3910
|
-
/**
|
|
3911
|
-
* API identifier of an object
|
|
3912
|
-
*/
|
|
3913
|
-
id: string;
|
|
3914
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3915
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
3916
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
3917
|
-
}
|
|
3918
|
-
export declare const JsonApiAutomationOutTypeEnum: {
|
|
3919
|
-
readonly AUTOMATION: "automation";
|
|
3920
|
-
};
|
|
3921
|
-
export type JsonApiAutomationOutTypeEnum = (typeof JsonApiAutomationOutTypeEnum)[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
3922
|
-
export interface JsonApiAutomationOutAttributes {
|
|
3923
|
-
title?: string;
|
|
3924
|
-
description?: string;
|
|
3925
|
-
tags?: Array<string>;
|
|
3926
|
-
areRelationsValid?: boolean;
|
|
3927
|
-
/**
|
|
3928
|
-
* Additional details to be included in the automated message.
|
|
3929
|
-
*/
|
|
3930
|
-
details?: object;
|
|
3931
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3932
|
-
/**
|
|
3933
|
-
* Current state of the automation.
|
|
3934
|
-
*/
|
|
3935
|
-
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
3936
|
-
/**
|
|
3937
|
-
* Specify automation evaluation mode.
|
|
3938
|
-
*/
|
|
3939
|
-
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3940
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3941
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
3942
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3943
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3944
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3945
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3946
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3947
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3948
|
-
/**
|
|
3949
|
-
* External recipients of the automation action results.
|
|
3950
|
-
*/
|
|
3951
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3952
|
-
createdAt?: string;
|
|
3953
|
-
modifiedAt?: string;
|
|
3954
|
-
}
|
|
3955
|
-
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
3956
|
-
readonly ACTIVE: "ACTIVE";
|
|
3957
|
-
readonly PAUSED: "PAUSED";
|
|
3958
|
-
};
|
|
3959
|
-
export type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
3960
|
-
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
3961
|
-
readonly SHARED: "SHARED";
|
|
3962
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3963
|
-
};
|
|
3964
|
-
export type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
3965
3958
|
export interface JsonApiAutomationOutDocument {
|
|
3966
3959
|
data: JsonApiAutomationOut;
|
|
3967
3960
|
links?: ObjectLinks;
|
|
@@ -3980,19 +3973,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
3980
3973
|
export interface JsonApiAutomationOutList {
|
|
3981
3974
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
3982
3975
|
links?: ListLinks;
|
|
3983
|
-
meta?:
|
|
3976
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3984
3977
|
/**
|
|
3985
3978
|
* Included resources
|
|
3986
3979
|
*/
|
|
3987
3980
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3988
3981
|
}
|
|
3989
3982
|
export interface JsonApiAutomationOutRelationships {
|
|
3990
|
-
notificationChannel?:
|
|
3991
|
-
analyticalDashboard?:
|
|
3983
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
3984
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
3992
3985
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3993
3986
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3994
|
-
exportDefinitions?:
|
|
3995
|
-
recipients?:
|
|
3987
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
3988
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
3996
3989
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
3997
3990
|
}
|
|
3998
3991
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
@@ -4001,6 +3994,21 @@ export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
|
4001
3994
|
*/
|
|
4002
3995
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
4003
3996
|
}
|
|
3997
|
+
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
3998
|
+
/**
|
|
3999
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4000
|
+
*/
|
|
4001
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
4002
|
+
}
|
|
4003
|
+
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
4004
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
4005
|
+
}
|
|
4006
|
+
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
4007
|
+
/**
|
|
4008
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4009
|
+
*/
|
|
4010
|
+
data: Array<JsonApiUserLinkage>;
|
|
4011
|
+
}
|
|
4004
4012
|
export interface JsonApiAutomationOutWithLinks {
|
|
4005
4013
|
/**
|
|
4006
4014
|
* Object type
|
|
@@ -4010,7 +4018,7 @@ export interface JsonApiAutomationOutWithLinks {
|
|
|
4010
4018
|
* API identifier of an object
|
|
4011
4019
|
*/
|
|
4012
4020
|
id: string;
|
|
4013
|
-
meta?:
|
|
4021
|
+
meta?: JsonApiDatasetOutMeta;
|
|
4014
4022
|
attributes?: JsonApiAutomationOutAttributes;
|
|
4015
4023
|
relationships?: JsonApiAutomationOutRelationships;
|
|
4016
4024
|
links?: ObjectLinks;
|
|
@@ -4031,16 +4039,63 @@ export interface JsonApiAutomationPatch {
|
|
|
4031
4039
|
* API identifier of an object
|
|
4032
4040
|
*/
|
|
4033
4041
|
id: string;
|
|
4034
|
-
attributes?:
|
|
4035
|
-
relationships?:
|
|
4042
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
4043
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
4036
4044
|
}
|
|
4037
4045
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
4038
4046
|
readonly AUTOMATION: "automation";
|
|
4039
4047
|
};
|
|
4040
4048
|
export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
4049
|
+
export interface JsonApiAutomationPatchAttributes {
|
|
4050
|
+
title?: string;
|
|
4051
|
+
description?: string;
|
|
4052
|
+
tags?: Array<string>;
|
|
4053
|
+
areRelationsValid?: boolean;
|
|
4054
|
+
/**
|
|
4055
|
+
* Additional details to be included in the automated message.
|
|
4056
|
+
*/
|
|
4057
|
+
details?: object;
|
|
4058
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
4059
|
+
/**
|
|
4060
|
+
* Current state of the automation.
|
|
4061
|
+
*/
|
|
4062
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
4063
|
+
/**
|
|
4064
|
+
* Specify automation evaluation mode.
|
|
4065
|
+
*/
|
|
4066
|
+
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
4067
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
4068
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
4069
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
4070
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
4071
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
4072
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
4073
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
4074
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
4075
|
+
/**
|
|
4076
|
+
* External recipients of the automation action results.
|
|
4077
|
+
*/
|
|
4078
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
4079
|
+
}
|
|
4080
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
4081
|
+
readonly ACTIVE: "ACTIVE";
|
|
4082
|
+
readonly PAUSED: "PAUSED";
|
|
4083
|
+
};
|
|
4084
|
+
export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
4085
|
+
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
4086
|
+
readonly SHARED: "SHARED";
|
|
4087
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
4088
|
+
};
|
|
4089
|
+
export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
4041
4090
|
export interface JsonApiAutomationPatchDocument {
|
|
4042
4091
|
data: JsonApiAutomationPatch;
|
|
4043
4092
|
}
|
|
4093
|
+
export interface JsonApiAutomationPatchRelationships {
|
|
4094
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
4095
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
4096
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
4097
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
4098
|
+
}
|
|
4044
4099
|
/**
|
|
4045
4100
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4046
4101
|
*/
|
|
@@ -4164,10 +4219,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4164
4219
|
export interface JsonApiColorPaletteOutList {
|
|
4165
4220
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4166
4221
|
links?: ListLinks;
|
|
4167
|
-
meta?:
|
|
4168
|
-
}
|
|
4169
|
-
export interface JsonApiColorPaletteOutListMeta {
|
|
4170
|
-
page?: PageMetadata;
|
|
4222
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4171
4223
|
}
|
|
4172
4224
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4173
4225
|
/**
|
|
@@ -4225,12 +4277,19 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4225
4277
|
* API identifier of an object
|
|
4226
4278
|
*/
|
|
4227
4279
|
id: string;
|
|
4228
|
-
attributes?:
|
|
4280
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4229
4281
|
}
|
|
4230
4282
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4231
4283
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4232
4284
|
};
|
|
4233
4285
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4286
|
+
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4287
|
+
lastRotation?: string;
|
|
4288
|
+
/**
|
|
4289
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4290
|
+
*/
|
|
4291
|
+
rotationInterval?: string;
|
|
4292
|
+
}
|
|
4234
4293
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4235
4294
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4236
4295
|
}
|
|
@@ -4246,19 +4305,12 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4246
4305
|
* API identifier of an object
|
|
4247
4306
|
*/
|
|
4248
4307
|
id: string;
|
|
4249
|
-
attributes?:
|
|
4308
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4250
4309
|
}
|
|
4251
4310
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4252
4311
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4253
4312
|
};
|
|
4254
4313
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = (typeof JsonApiCookieSecurityConfigurationOutTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
4255
|
-
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
4256
|
-
lastRotation?: string;
|
|
4257
|
-
/**
|
|
4258
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4259
|
-
*/
|
|
4260
|
-
rotationInterval?: string;
|
|
4261
|
-
}
|
|
4262
4314
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
4263
4315
|
data: JsonApiCookieSecurityConfigurationOut;
|
|
4264
4316
|
links?: ObjectLinks;
|
|
@@ -4275,7 +4327,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4275
4327
|
* API identifier of an object
|
|
4276
4328
|
*/
|
|
4277
4329
|
id: string;
|
|
4278
|
-
attributes?:
|
|
4330
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4279
4331
|
}
|
|
4280
4332
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4281
4333
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4336,7 +4388,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4336
4388
|
export interface JsonApiCspDirectiveOutList {
|
|
4337
4389
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4338
4390
|
links?: ListLinks;
|
|
4339
|
-
meta?:
|
|
4391
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4340
4392
|
}
|
|
4341
4393
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4342
4394
|
/**
|
|
@@ -4390,19 +4442,12 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4390
4442
|
* API identifier of an object
|
|
4391
4443
|
*/
|
|
4392
4444
|
id: string;
|
|
4393
|
-
attributes:
|
|
4445
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4394
4446
|
}
|
|
4395
4447
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4396
4448
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4397
4449
|
};
|
|
4398
4450
|
export type JsonApiCustomApplicationSettingInTypeEnum = (typeof JsonApiCustomApplicationSettingInTypeEnum)[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
4399
|
-
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
4400
|
-
applicationName: string;
|
|
4401
|
-
/**
|
|
4402
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4403
|
-
*/
|
|
4404
|
-
content: object;
|
|
4405
|
-
}
|
|
4406
4451
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
4407
4452
|
data: JsonApiCustomApplicationSettingIn;
|
|
4408
4453
|
}
|
|
@@ -4418,13 +4463,20 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4418
4463
|
* API identifier of an object
|
|
4419
4464
|
*/
|
|
4420
4465
|
id: string;
|
|
4421
|
-
meta?:
|
|
4422
|
-
attributes:
|
|
4466
|
+
meta?: JsonApiDatasetOutMeta;
|
|
4467
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4423
4468
|
}
|
|
4424
4469
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4425
4470
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4426
4471
|
};
|
|
4427
4472
|
export type JsonApiCustomApplicationSettingOutTypeEnum = (typeof JsonApiCustomApplicationSettingOutTypeEnum)[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
4473
|
+
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
4474
|
+
applicationName: string;
|
|
4475
|
+
/**
|
|
4476
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4477
|
+
*/
|
|
4478
|
+
content: object;
|
|
4479
|
+
}
|
|
4428
4480
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4429
4481
|
data: JsonApiCustomApplicationSettingOut;
|
|
4430
4482
|
links?: ObjectLinks;
|
|
@@ -4435,7 +4487,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4435
4487
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4436
4488
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4437
4489
|
links?: ListLinks;
|
|
4438
|
-
meta?:
|
|
4490
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4439
4491
|
}
|
|
4440
4492
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4441
4493
|
/**
|
|
@@ -4446,8 +4498,8 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4446
4498
|
* API identifier of an object
|
|
4447
4499
|
*/
|
|
4448
4500
|
id: string;
|
|
4449
|
-
meta?:
|
|
4450
|
-
attributes:
|
|
4501
|
+
meta?: JsonApiDatasetOutMeta;
|
|
4502
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4451
4503
|
links?: ObjectLinks;
|
|
4452
4504
|
}
|
|
4453
4505
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4494,7 +4546,7 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4494
4546
|
* API identifier of an object
|
|
4495
4547
|
*/
|
|
4496
4548
|
id?: string;
|
|
4497
|
-
attributes:
|
|
4549
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4498
4550
|
}
|
|
4499
4551
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4500
4552
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4515,22 +4567,12 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4515
4567
|
* API identifier of an object
|
|
4516
4568
|
*/
|
|
4517
4569
|
id: string;
|
|
4518
|
-
attributes?:
|
|
4570
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4519
4571
|
}
|
|
4520
4572
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4521
4573
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4522
4574
|
};
|
|
4523
4575
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
4524
|
-
export interface JsonApiDashboardPluginInAttributes {
|
|
4525
|
-
title?: string;
|
|
4526
|
-
description?: string;
|
|
4527
|
-
tags?: Array<string>;
|
|
4528
|
-
areRelationsValid?: boolean;
|
|
4529
|
-
/**
|
|
4530
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4531
|
-
*/
|
|
4532
|
-
content?: object;
|
|
4533
|
-
}
|
|
4534
4576
|
export interface JsonApiDashboardPluginInDocument {
|
|
4535
4577
|
data: JsonApiDashboardPluginIn;
|
|
4536
4578
|
}
|
|
@@ -4557,7 +4599,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
4557
4599
|
* API identifier of an object
|
|
4558
4600
|
*/
|
|
4559
4601
|
id: string;
|
|
4560
|
-
meta?:
|
|
4602
|
+
meta?: JsonApiDatasetOutMeta;
|
|
4561
4603
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4562
4604
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4563
4605
|
}
|
|
@@ -4591,7 +4633,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4591
4633
|
export interface JsonApiDashboardPluginOutList {
|
|
4592
4634
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4593
4635
|
links?: ListLinks;
|
|
4594
|
-
meta?:
|
|
4636
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4595
4637
|
/**
|
|
4596
4638
|
* Included resources
|
|
4597
4639
|
*/
|
|
@@ -4610,7 +4652,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
4610
4652
|
* API identifier of an object
|
|
4611
4653
|
*/
|
|
4612
4654
|
id: string;
|
|
4613
|
-
meta?:
|
|
4655
|
+
meta?: JsonApiDatasetOutMeta;
|
|
4614
4656
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4615
4657
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4616
4658
|
links?: ObjectLinks;
|
|
@@ -4631,12 +4673,22 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4631
4673
|
* API identifier of an object
|
|
4632
4674
|
*/
|
|
4633
4675
|
id: string;
|
|
4634
|
-
attributes?:
|
|
4676
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4635
4677
|
}
|
|
4636
4678
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4637
4679
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4638
4680
|
};
|
|
4639
4681
|
export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
4682
|
+
export interface JsonApiDashboardPluginPatchAttributes {
|
|
4683
|
+
title?: string;
|
|
4684
|
+
description?: string;
|
|
4685
|
+
tags?: Array<string>;
|
|
4686
|
+
areRelationsValid?: boolean;
|
|
4687
|
+
/**
|
|
4688
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4689
|
+
*/
|
|
4690
|
+
content?: object;
|
|
4691
|
+
}
|
|
4640
4692
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
4641
4693
|
data: JsonApiDashboardPluginPatch;
|
|
4642
4694
|
}
|
|
@@ -4652,7 +4704,7 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4652
4704
|
* API identifier of an object
|
|
4653
4705
|
*/
|
|
4654
4706
|
id?: string;
|
|
4655
|
-
attributes?:
|
|
4707
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4656
4708
|
}
|
|
4657
4709
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4658
4710
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4724,7 +4776,7 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4724
4776
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4725
4777
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4726
4778
|
links?: ListLinks;
|
|
4727
|
-
meta?:
|
|
4779
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4728
4780
|
}
|
|
4729
4781
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4730
4782
|
/**
|
|
@@ -4969,7 +5021,7 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
4969
5021
|
export interface JsonApiDataSourceOutList {
|
|
4970
5022
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
4971
5023
|
links?: ListLinks;
|
|
4972
|
-
meta?:
|
|
5024
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4973
5025
|
}
|
|
4974
5026
|
export interface JsonApiDataSourceOutMeta {
|
|
4975
5027
|
/**
|
|
@@ -5131,7 +5183,7 @@ export interface JsonApiDatasetOut {
|
|
|
5131
5183
|
* API identifier of an object
|
|
5132
5184
|
*/
|
|
5133
5185
|
id: string;
|
|
5134
|
-
meta?:
|
|
5186
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5135
5187
|
attributes: JsonApiDatasetOutAttributes;
|
|
5136
5188
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5137
5189
|
}
|
|
@@ -5242,17 +5294,35 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5242
5294
|
export interface JsonApiDatasetOutList {
|
|
5243
5295
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5244
5296
|
links?: ListLinks;
|
|
5245
|
-
meta?:
|
|
5297
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5246
5298
|
/**
|
|
5247
5299
|
* Included resources
|
|
5248
5300
|
*/
|
|
5249
5301
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
5250
5302
|
}
|
|
5303
|
+
export interface JsonApiDatasetOutMeta {
|
|
5304
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
5305
|
+
}
|
|
5306
|
+
export interface JsonApiDatasetOutMetaOrigin {
|
|
5307
|
+
/**
|
|
5308
|
+
* defines type of the origin of the entity
|
|
5309
|
+
*/
|
|
5310
|
+
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
5311
|
+
/**
|
|
5312
|
+
* defines id of the workspace where the entity comes from
|
|
5313
|
+
*/
|
|
5314
|
+
originId: string;
|
|
5315
|
+
}
|
|
5316
|
+
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
5317
|
+
readonly NATIVE: "NATIVE";
|
|
5318
|
+
readonly PARENT: "PARENT";
|
|
5319
|
+
};
|
|
5320
|
+
export type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
5251
5321
|
export interface JsonApiDatasetOutRelationships {
|
|
5252
|
-
attributes?:
|
|
5253
|
-
facts?:
|
|
5322
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
5323
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
5254
5324
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
5255
|
-
references?:
|
|
5325
|
+
references?: JsonApiDatasetOutRelationshipsReferences;
|
|
5256
5326
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
5257
5327
|
}
|
|
5258
5328
|
export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
@@ -5261,6 +5331,24 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
5261
5331
|
*/
|
|
5262
5332
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
5263
5333
|
}
|
|
5334
|
+
export interface JsonApiDatasetOutRelationshipsAttributes {
|
|
5335
|
+
/**
|
|
5336
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5337
|
+
*/
|
|
5338
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
5339
|
+
}
|
|
5340
|
+
export interface JsonApiDatasetOutRelationshipsFacts {
|
|
5341
|
+
/**
|
|
5342
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5343
|
+
*/
|
|
5344
|
+
data: Array<JsonApiFactLinkage>;
|
|
5345
|
+
}
|
|
5346
|
+
export interface JsonApiDatasetOutRelationshipsReferences {
|
|
5347
|
+
/**
|
|
5348
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5349
|
+
*/
|
|
5350
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
5351
|
+
}
|
|
5264
5352
|
export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
5265
5353
|
/**
|
|
5266
5354
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -5276,7 +5364,7 @@ export interface JsonApiDatasetOutWithLinks {
|
|
|
5276
5364
|
* API identifier of an object
|
|
5277
5365
|
*/
|
|
5278
5366
|
id: string;
|
|
5279
|
-
meta?:
|
|
5367
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5280
5368
|
attributes: JsonApiDatasetOutAttributes;
|
|
5281
5369
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5282
5370
|
links?: ObjectLinks;
|
|
@@ -5317,7 +5405,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5317
5405
|
export interface JsonApiEntitlementOutList {
|
|
5318
5406
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5319
5407
|
links?: ListLinks;
|
|
5320
|
-
meta?:
|
|
5408
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5321
5409
|
}
|
|
5322
5410
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5323
5411
|
/**
|
|
@@ -5347,27 +5435,16 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5347
5435
|
* API identifier of an object
|
|
5348
5436
|
*/
|
|
5349
5437
|
id: string;
|
|
5350
|
-
attributes?:
|
|
5351
|
-
relationships?:
|
|
5438
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5439
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5352
5440
|
}
|
|
5353
5441
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5354
5442
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5355
5443
|
};
|
|
5356
5444
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
5357
|
-
export interface JsonApiExportDefinitionInAttributes {
|
|
5358
|
-
title?: string;
|
|
5359
|
-
description?: string;
|
|
5360
|
-
tags?: Array<string>;
|
|
5361
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5362
|
-
areRelationsValid?: boolean;
|
|
5363
|
-
}
|
|
5364
5445
|
export interface JsonApiExportDefinitionInDocument {
|
|
5365
5446
|
data: JsonApiExportDefinitionIn;
|
|
5366
5447
|
}
|
|
5367
|
-
export interface JsonApiExportDefinitionInRelationships {
|
|
5368
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5369
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5370
|
-
}
|
|
5371
5448
|
/**
|
|
5372
5449
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
5373
5450
|
*/
|
|
@@ -5391,7 +5468,7 @@ export interface JsonApiExportDefinitionOut {
|
|
|
5391
5468
|
* API identifier of an object
|
|
5392
5469
|
*/
|
|
5393
5470
|
id: string;
|
|
5394
|
-
meta?:
|
|
5471
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5395
5472
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5396
5473
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5397
5474
|
}
|
|
@@ -5431,7 +5508,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5431
5508
|
export interface JsonApiExportDefinitionOutList {
|
|
5432
5509
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5433
5510
|
links?: ListLinks;
|
|
5434
|
-
meta?:
|
|
5511
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5435
5512
|
/**
|
|
5436
5513
|
* Included resources
|
|
5437
5514
|
*/
|
|
@@ -5439,11 +5516,14 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
5439
5516
|
}
|
|
5440
5517
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5441
5518
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5442
|
-
analyticalDashboard?:
|
|
5519
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5443
5520
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5444
5521
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5445
5522
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5446
5523
|
}
|
|
5524
|
+
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
5525
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
5526
|
+
}
|
|
5447
5527
|
export interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
5448
5528
|
data: JsonApiAutomationLinkage | null;
|
|
5449
5529
|
}
|
|
@@ -5459,7 +5539,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
|
|
|
5459
5539
|
* API identifier of an object
|
|
5460
5540
|
*/
|
|
5461
5541
|
id: string;
|
|
5462
|
-
meta?:
|
|
5542
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5463
5543
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5464
5544
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5465
5545
|
links?: ObjectLinks;
|
|
@@ -5480,16 +5560,27 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5480
5560
|
* API identifier of an object
|
|
5481
5561
|
*/
|
|
5482
5562
|
id: string;
|
|
5483
|
-
attributes?:
|
|
5484
|
-
relationships?:
|
|
5563
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5564
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5485
5565
|
}
|
|
5486
5566
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5487
5567
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5488
5568
|
};
|
|
5489
5569
|
export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
5570
|
+
export interface JsonApiExportDefinitionPatchAttributes {
|
|
5571
|
+
title?: string;
|
|
5572
|
+
description?: string;
|
|
5573
|
+
tags?: Array<string>;
|
|
5574
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5575
|
+
areRelationsValid?: boolean;
|
|
5576
|
+
}
|
|
5490
5577
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
5491
5578
|
data: JsonApiExportDefinitionPatch;
|
|
5492
5579
|
}
|
|
5580
|
+
export interface JsonApiExportDefinitionPatchRelationships {
|
|
5581
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5582
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5583
|
+
}
|
|
5493
5584
|
/**
|
|
5494
5585
|
* JSON:API representation of exportDefinition entity.
|
|
5495
5586
|
*/
|
|
@@ -5502,8 +5593,8 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5502
5593
|
* API identifier of an object
|
|
5503
5594
|
*/
|
|
5504
5595
|
id?: string;
|
|
5505
|
-
attributes?:
|
|
5506
|
-
relationships?:
|
|
5596
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5597
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5507
5598
|
}
|
|
5508
5599
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5509
5600
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5561,7 +5652,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5561
5652
|
export interface JsonApiExportTemplateOutList {
|
|
5562
5653
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5563
5654
|
links?: ListLinks;
|
|
5564
|
-
meta?:
|
|
5655
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5565
5656
|
}
|
|
5566
5657
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5567
5658
|
/**
|
|
@@ -5693,7 +5784,7 @@ export interface JsonApiFactOut {
|
|
|
5693
5784
|
* API identifier of an object
|
|
5694
5785
|
*/
|
|
5695
5786
|
id: string;
|
|
5696
|
-
meta?:
|
|
5787
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5697
5788
|
attributes?: JsonApiFactOutAttributes;
|
|
5698
5789
|
relationships?: JsonApiFactOutRelationships;
|
|
5699
5790
|
}
|
|
@@ -5708,6 +5799,7 @@ export interface JsonApiFactOutAttributes {
|
|
|
5708
5799
|
sourceColumn?: string;
|
|
5709
5800
|
sourceColumnDataType?: JsonApiFactOutAttributesSourceColumnDataTypeEnum;
|
|
5710
5801
|
areRelationsValid?: boolean;
|
|
5802
|
+
isHidden?: boolean;
|
|
5711
5803
|
}
|
|
5712
5804
|
export declare const JsonApiFactOutAttributesSourceColumnDataTypeEnum: {
|
|
5713
5805
|
readonly INT: "INT";
|
|
@@ -5733,14 +5825,17 @@ export interface JsonApiFactOutDocument {
|
|
|
5733
5825
|
export interface JsonApiFactOutList {
|
|
5734
5826
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5735
5827
|
links?: ListLinks;
|
|
5736
|
-
meta?:
|
|
5828
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5737
5829
|
/**
|
|
5738
5830
|
* Included resources
|
|
5739
5831
|
*/
|
|
5740
5832
|
included?: Array<JsonApiDatasetOutWithLinks>;
|
|
5741
5833
|
}
|
|
5742
5834
|
export interface JsonApiFactOutRelationships {
|
|
5743
|
-
dataset?:
|
|
5835
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
5836
|
+
}
|
|
5837
|
+
export interface JsonApiFactOutRelationshipsDataset {
|
|
5838
|
+
data: JsonApiDatasetLinkage | null;
|
|
5744
5839
|
}
|
|
5745
5840
|
export interface JsonApiFactOutWithLinks {
|
|
5746
5841
|
/**
|
|
@@ -5751,7 +5846,7 @@ export interface JsonApiFactOutWithLinks {
|
|
|
5751
5846
|
* API identifier of an object
|
|
5752
5847
|
*/
|
|
5753
5848
|
id: string;
|
|
5754
|
-
meta?:
|
|
5849
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5755
5850
|
attributes?: JsonApiFactOutAttributes;
|
|
5756
5851
|
relationships?: JsonApiFactOutRelationships;
|
|
5757
5852
|
links?: ObjectLinks;
|
|
@@ -5772,7 +5867,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5772
5867
|
* API identifier of an object
|
|
5773
5868
|
*/
|
|
5774
5869
|
id: string;
|
|
5775
|
-
attributes:
|
|
5870
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5776
5871
|
}
|
|
5777
5872
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5778
5873
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5804,14 +5899,24 @@ export interface JsonApiFilterContextOut {
|
|
|
5804
5899
|
* API identifier of an object
|
|
5805
5900
|
*/
|
|
5806
5901
|
id: string;
|
|
5807
|
-
meta?:
|
|
5808
|
-
attributes:
|
|
5902
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5903
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5809
5904
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5810
5905
|
}
|
|
5811
5906
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
5812
5907
|
readonly FILTER_CONTEXT: "filterContext";
|
|
5813
5908
|
};
|
|
5814
5909
|
export type JsonApiFilterContextOutTypeEnum = (typeof JsonApiFilterContextOutTypeEnum)[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
5910
|
+
export interface JsonApiFilterContextOutAttributes {
|
|
5911
|
+
title?: string;
|
|
5912
|
+
description?: string;
|
|
5913
|
+
tags?: Array<string>;
|
|
5914
|
+
areRelationsValid?: boolean;
|
|
5915
|
+
/**
|
|
5916
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5917
|
+
*/
|
|
5918
|
+
content: object;
|
|
5919
|
+
}
|
|
5815
5920
|
export interface JsonApiFilterContextOutDocument {
|
|
5816
5921
|
data: JsonApiFilterContextOut;
|
|
5817
5922
|
links?: ObjectLinks;
|
|
@@ -5830,15 +5935,15 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5830
5935
|
export interface JsonApiFilterContextOutList {
|
|
5831
5936
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5832
5937
|
links?: ListLinks;
|
|
5833
|
-
meta?:
|
|
5938
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5834
5939
|
/**
|
|
5835
5940
|
* Included resources
|
|
5836
5941
|
*/
|
|
5837
5942
|
included?: Array<JsonApiFilterContextOutIncludes>;
|
|
5838
5943
|
}
|
|
5839
5944
|
export interface JsonApiFilterContextOutRelationships {
|
|
5840
|
-
attributes?:
|
|
5841
|
-
datasets?:
|
|
5945
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
5946
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
5842
5947
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
5843
5948
|
}
|
|
5844
5949
|
export interface JsonApiFilterContextOutWithLinks {
|
|
@@ -5850,8 +5955,8 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5850
5955
|
* API identifier of an object
|
|
5851
5956
|
*/
|
|
5852
5957
|
id: string;
|
|
5853
|
-
meta?:
|
|
5854
|
-
attributes:
|
|
5958
|
+
meta?: JsonApiDatasetOutMeta;
|
|
5959
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5855
5960
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5856
5961
|
links?: ObjectLinks;
|
|
5857
5962
|
}
|
|
@@ -5892,7 +5997,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5892
5997
|
* API identifier of an object
|
|
5893
5998
|
*/
|
|
5894
5999
|
id?: string;
|
|
5895
|
-
attributes:
|
|
6000
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5896
6001
|
}
|
|
5897
6002
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5898
6003
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5913,34 +6018,16 @@ export interface JsonApiFilterViewIn {
|
|
|
5913
6018
|
* API identifier of an object
|
|
5914
6019
|
*/
|
|
5915
6020
|
id: string;
|
|
5916
|
-
attributes:
|
|
5917
|
-
relationships?:
|
|
6021
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
6022
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
5918
6023
|
}
|
|
5919
6024
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
5920
6025
|
readonly FILTER_VIEW: "filterView";
|
|
5921
6026
|
};
|
|
5922
6027
|
export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
5923
|
-
export interface JsonApiFilterViewInAttributes {
|
|
5924
|
-
title: string;
|
|
5925
|
-
description?: string;
|
|
5926
|
-
tags?: Array<string>;
|
|
5927
|
-
areRelationsValid?: boolean;
|
|
5928
|
-
/**
|
|
5929
|
-
* Indicator whether the filter view should by applied by default.
|
|
5930
|
-
*/
|
|
5931
|
-
isDefault?: boolean;
|
|
5932
|
-
/**
|
|
5933
|
-
* The respective filter context.
|
|
5934
|
-
*/
|
|
5935
|
-
content: object;
|
|
5936
|
-
}
|
|
5937
6028
|
export interface JsonApiFilterViewInDocument {
|
|
5938
6029
|
data: JsonApiFilterViewIn;
|
|
5939
6030
|
}
|
|
5940
|
-
export interface JsonApiFilterViewInRelationships {
|
|
5941
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5942
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5943
|
-
}
|
|
5944
6031
|
/**
|
|
5945
6032
|
* JSON:API representation of filterView entity.
|
|
5946
6033
|
*/
|
|
@@ -5953,13 +6040,27 @@ export interface JsonApiFilterViewOut {
|
|
|
5953
6040
|
* API identifier of an object
|
|
5954
6041
|
*/
|
|
5955
6042
|
id: string;
|
|
5956
|
-
attributes:
|
|
5957
|
-
relationships?:
|
|
6043
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
6044
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
5958
6045
|
}
|
|
5959
6046
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
5960
6047
|
readonly FILTER_VIEW: "filterView";
|
|
5961
6048
|
};
|
|
5962
6049
|
export type JsonApiFilterViewOutTypeEnum = (typeof JsonApiFilterViewOutTypeEnum)[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
6050
|
+
export interface JsonApiFilterViewOutAttributes {
|
|
6051
|
+
title: string;
|
|
6052
|
+
description?: string;
|
|
6053
|
+
tags?: Array<string>;
|
|
6054
|
+
areRelationsValid?: boolean;
|
|
6055
|
+
/**
|
|
6056
|
+
* Indicator whether the filter view should by applied by default.
|
|
6057
|
+
*/
|
|
6058
|
+
isDefault?: boolean;
|
|
6059
|
+
/**
|
|
6060
|
+
* The respective filter context.
|
|
6061
|
+
*/
|
|
6062
|
+
content: object;
|
|
6063
|
+
}
|
|
5963
6064
|
export interface JsonApiFilterViewOutDocument {
|
|
5964
6065
|
data: JsonApiFilterViewOut;
|
|
5965
6066
|
links?: ObjectLinks;
|
|
@@ -5978,12 +6079,19 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
5978
6079
|
export interface JsonApiFilterViewOutList {
|
|
5979
6080
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
5980
6081
|
links?: ListLinks;
|
|
5981
|
-
meta?:
|
|
6082
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5982
6083
|
/**
|
|
5983
6084
|
* Included resources
|
|
5984
6085
|
*/
|
|
5985
6086
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
5986
6087
|
}
|
|
6088
|
+
export interface JsonApiFilterViewOutRelationships {
|
|
6089
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6090
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
6091
|
+
}
|
|
6092
|
+
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
6093
|
+
data: JsonApiUserLinkage | null;
|
|
6094
|
+
}
|
|
5987
6095
|
export interface JsonApiFilterViewOutWithLinks {
|
|
5988
6096
|
/**
|
|
5989
6097
|
* Object type
|
|
@@ -5993,8 +6101,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
5993
6101
|
* API identifier of an object
|
|
5994
6102
|
*/
|
|
5995
6103
|
id: string;
|
|
5996
|
-
attributes:
|
|
5997
|
-
relationships?:
|
|
6104
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
6105
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
5998
6106
|
links?: ObjectLinks;
|
|
5999
6107
|
}
|
|
6000
6108
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6014,7 +6122,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6014
6122
|
*/
|
|
6015
6123
|
id: string;
|
|
6016
6124
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6017
|
-
relationships?:
|
|
6125
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
6018
6126
|
}
|
|
6019
6127
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6020
6128
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6203,7 +6311,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6203
6311
|
export interface JsonApiIdentityProviderOutList {
|
|
6204
6312
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6205
6313
|
links?: ListLinks;
|
|
6206
|
-
meta?:
|
|
6314
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6207
6315
|
}
|
|
6208
6316
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6209
6317
|
/**
|
|
@@ -6294,7 +6402,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6294
6402
|
export interface JsonApiJwkOutList {
|
|
6295
6403
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6296
6404
|
links?: ListLinks;
|
|
6297
|
-
meta?:
|
|
6405
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6298
6406
|
}
|
|
6299
6407
|
export interface JsonApiJwkOutWithLinks {
|
|
6300
6408
|
/**
|
|
@@ -6356,7 +6464,7 @@ export interface JsonApiLabelOut {
|
|
|
6356
6464
|
* API identifier of an object
|
|
6357
6465
|
*/
|
|
6358
6466
|
id: string;
|
|
6359
|
-
meta?:
|
|
6467
|
+
meta?: JsonApiDatasetOutMeta;
|
|
6360
6468
|
attributes?: JsonApiLabelOutAttributes;
|
|
6361
6469
|
relationships?: JsonApiLabelOutRelationships;
|
|
6362
6470
|
}
|
|
@@ -6372,6 +6480,7 @@ export interface JsonApiLabelOutAttributes {
|
|
|
6372
6480
|
sourceColumn?: string;
|
|
6373
6481
|
sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
|
|
6374
6482
|
valueType?: JsonApiLabelOutAttributesValueTypeEnum;
|
|
6483
|
+
isHidden?: boolean;
|
|
6375
6484
|
areRelationsValid?: boolean;
|
|
6376
6485
|
}
|
|
6377
6486
|
export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
|
|
@@ -6407,7 +6516,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6407
6516
|
export interface JsonApiLabelOutList {
|
|
6408
6517
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6409
6518
|
links?: ListLinks;
|
|
6410
|
-
meta?:
|
|
6519
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6411
6520
|
/**
|
|
6412
6521
|
* Included resources
|
|
6413
6522
|
*/
|
|
@@ -6428,7 +6537,7 @@ export interface JsonApiLabelOutWithLinks {
|
|
|
6428
6537
|
* API identifier of an object
|
|
6429
6538
|
*/
|
|
6430
6539
|
id: string;
|
|
6431
|
-
meta?:
|
|
6540
|
+
meta?: JsonApiDatasetOutMeta;
|
|
6432
6541
|
attributes?: JsonApiLabelOutAttributes;
|
|
6433
6542
|
relationships?: JsonApiLabelOutRelationships;
|
|
6434
6543
|
links?: ObjectLinks;
|
|
@@ -6544,7 +6653,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6544
6653
|
export interface JsonApiLlmEndpointOutList {
|
|
6545
6654
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6546
6655
|
links?: ListLinks;
|
|
6547
|
-
meta?:
|
|
6656
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6548
6657
|
}
|
|
6549
6658
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6550
6659
|
/**
|
|
@@ -6626,19 +6735,12 @@ export interface JsonApiMetricIn {
|
|
|
6626
6735
|
* API identifier of an object
|
|
6627
6736
|
*/
|
|
6628
6737
|
id: string;
|
|
6629
|
-
attributes:
|
|
6738
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6630
6739
|
}
|
|
6631
6740
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6632
6741
|
readonly METRIC: "metric";
|
|
6633
6742
|
};
|
|
6634
6743
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6635
|
-
export interface JsonApiMetricInAttributes {
|
|
6636
|
-
title?: string;
|
|
6637
|
-
description?: string;
|
|
6638
|
-
tags?: Array<string>;
|
|
6639
|
-
areRelationsValid?: boolean;
|
|
6640
|
-
content: JsonApiMetricOutAttributesContent;
|
|
6641
|
-
}
|
|
6642
6744
|
export interface JsonApiMetricInDocument {
|
|
6643
6745
|
data: JsonApiMetricIn;
|
|
6644
6746
|
}
|
|
@@ -6665,7 +6767,7 @@ export interface JsonApiMetricOut {
|
|
|
6665
6767
|
* API identifier of an object
|
|
6666
6768
|
*/
|
|
6667
6769
|
id: string;
|
|
6668
|
-
meta?:
|
|
6770
|
+
meta?: JsonApiDatasetOutMeta;
|
|
6669
6771
|
attributes: JsonApiMetricOutAttributes;
|
|
6670
6772
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6671
6773
|
}
|
|
@@ -6681,6 +6783,7 @@ export interface JsonApiMetricOutAttributes {
|
|
|
6681
6783
|
content: JsonApiMetricOutAttributesContent;
|
|
6682
6784
|
createdAt?: string;
|
|
6683
6785
|
modifiedAt?: string;
|
|
6786
|
+
isHidden?: boolean;
|
|
6684
6787
|
}
|
|
6685
6788
|
export interface JsonApiMetricOutAttributesContent {
|
|
6686
6789
|
format?: string;
|
|
@@ -6704,7 +6807,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6704
6807
|
export interface JsonApiMetricOutList {
|
|
6705
6808
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6706
6809
|
links?: ListLinks;
|
|
6707
|
-
meta?:
|
|
6810
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6708
6811
|
/**
|
|
6709
6812
|
* Included resources
|
|
6710
6813
|
*/
|
|
@@ -6719,7 +6822,7 @@ export interface JsonApiMetricOutWithLinks {
|
|
|
6719
6822
|
* API identifier of an object
|
|
6720
6823
|
*/
|
|
6721
6824
|
id: string;
|
|
6722
|
-
meta?:
|
|
6825
|
+
meta?: JsonApiDatasetOutMeta;
|
|
6723
6826
|
attributes: JsonApiMetricOutAttributes;
|
|
6724
6827
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6725
6828
|
links?: ObjectLinks;
|
|
@@ -6752,6 +6855,7 @@ export interface JsonApiMetricPatchAttributes {
|
|
|
6752
6855
|
tags?: Array<string>;
|
|
6753
6856
|
areRelationsValid?: boolean;
|
|
6754
6857
|
content?: JsonApiMetricOutAttributesContent;
|
|
6858
|
+
isHidden?: boolean;
|
|
6755
6859
|
}
|
|
6756
6860
|
export interface JsonApiMetricPatchDocument {
|
|
6757
6861
|
data: JsonApiMetricPatch;
|
|
@@ -6768,12 +6872,20 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6768
6872
|
* API identifier of an object
|
|
6769
6873
|
*/
|
|
6770
6874
|
id?: string;
|
|
6771
|
-
attributes:
|
|
6875
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6772
6876
|
}
|
|
6773
6877
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
6774
6878
|
readonly METRIC: "metric";
|
|
6775
6879
|
};
|
|
6776
6880
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
6881
|
+
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
6882
|
+
title?: string;
|
|
6883
|
+
description?: string;
|
|
6884
|
+
tags?: Array<string>;
|
|
6885
|
+
areRelationsValid?: boolean;
|
|
6886
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6887
|
+
isHidden?: boolean;
|
|
6888
|
+
}
|
|
6777
6889
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6778
6890
|
data: JsonApiMetricPostOptionalId;
|
|
6779
6891
|
}
|
|
@@ -6827,7 +6939,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
6827
6939
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
6828
6940
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
6829
6941
|
links?: ListLinks;
|
|
6830
|
-
meta?:
|
|
6942
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6831
6943
|
}
|
|
6832
6944
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
6833
6945
|
/**
|
|
@@ -6955,7 +7067,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
6955
7067
|
export interface JsonApiNotificationChannelOutList {
|
|
6956
7068
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
6957
7069
|
links?: ListLinks;
|
|
6958
|
-
meta?:
|
|
7070
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6959
7071
|
}
|
|
6960
7072
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
6961
7073
|
/**
|
|
@@ -7120,7 +7232,10 @@ export interface JsonApiOrganizationInDocument {
|
|
|
7120
7232
|
data: JsonApiOrganizationIn;
|
|
7121
7233
|
}
|
|
7122
7234
|
export interface JsonApiOrganizationInRelationships {
|
|
7123
|
-
identityProvider?:
|
|
7235
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7236
|
+
}
|
|
7237
|
+
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7238
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7124
7239
|
}
|
|
7125
7240
|
/**
|
|
7126
7241
|
* JSON:API representation of organization entity.
|
|
@@ -7210,18 +7325,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7210
7325
|
};
|
|
7211
7326
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7212
7327
|
export interface JsonApiOrganizationOutRelationships {
|
|
7213
|
-
bootstrapUser?:
|
|
7214
|
-
bootstrapUserGroup?:
|
|
7215
|
-
identityProvider?:
|
|
7216
|
-
}
|
|
7217
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7218
|
-
data: JsonApiUserLinkage | null;
|
|
7219
|
-
}
|
|
7220
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7221
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7222
|
-
}
|
|
7223
|
-
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
7224
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7328
|
+
bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
|
|
7329
|
+
bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
7330
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7225
7331
|
}
|
|
7226
7332
|
/**
|
|
7227
7333
|
* JSON:API representation of patching organization entity.
|
|
@@ -7294,12 +7400,15 @@ export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
|
7294
7400
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7295
7401
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7296
7402
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7403
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7297
7404
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7298
7405
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7299
7406
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7300
7407
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7301
7408
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7302
7409
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7410
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7411
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7303
7412
|
};
|
|
7304
7413
|
export type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
7305
7414
|
export interface JsonApiOrganizationSettingInDocument {
|
|
@@ -7333,7 +7442,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7333
7442
|
export interface JsonApiOrganizationSettingOutList {
|
|
7334
7443
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7335
7444
|
links?: ListLinks;
|
|
7336
|
-
meta?:
|
|
7445
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7337
7446
|
}
|
|
7338
7447
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7339
7448
|
/**
|
|
@@ -7421,7 +7530,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7421
7530
|
export interface JsonApiThemeOutList {
|
|
7422
7531
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7423
7532
|
links?: ListLinks;
|
|
7424
|
-
meta?:
|
|
7533
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7425
7534
|
}
|
|
7426
7535
|
export interface JsonApiThemeOutWithLinks {
|
|
7427
7536
|
/**
|
|
@@ -7472,27 +7581,16 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7472
7581
|
* API identifier of an object
|
|
7473
7582
|
*/
|
|
7474
7583
|
id: string;
|
|
7475
|
-
attributes:
|
|
7476
|
-
relationships?:
|
|
7584
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7585
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7477
7586
|
}
|
|
7478
7587
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7479
7588
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7480
7589
|
};
|
|
7481
7590
|
export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTypeEnum)[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
7482
|
-
export interface JsonApiUserDataFilterInAttributes {
|
|
7483
|
-
title?: string;
|
|
7484
|
-
description?: string;
|
|
7485
|
-
tags?: Array<string>;
|
|
7486
|
-
areRelationsValid?: boolean;
|
|
7487
|
-
maql: string;
|
|
7488
|
-
}
|
|
7489
7591
|
export interface JsonApiUserDataFilterInDocument {
|
|
7490
7592
|
data: JsonApiUserDataFilterIn;
|
|
7491
7593
|
}
|
|
7492
|
-
export interface JsonApiUserDataFilterInRelationships {
|
|
7493
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7494
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7495
|
-
}
|
|
7496
7594
|
/**
|
|
7497
7595
|
* JSON:API representation of userDataFilter entity.
|
|
7498
7596
|
*/
|
|
@@ -7505,14 +7603,21 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7505
7603
|
* API identifier of an object
|
|
7506
7604
|
*/
|
|
7507
7605
|
id: string;
|
|
7508
|
-
meta?:
|
|
7509
|
-
attributes:
|
|
7606
|
+
meta?: JsonApiDatasetOutMeta;
|
|
7607
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7510
7608
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7511
7609
|
}
|
|
7512
7610
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
7513
7611
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7514
7612
|
};
|
|
7515
7613
|
export type JsonApiUserDataFilterOutTypeEnum = (typeof JsonApiUserDataFilterOutTypeEnum)[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
7614
|
+
export interface JsonApiUserDataFilterOutAttributes {
|
|
7615
|
+
title?: string;
|
|
7616
|
+
description?: string;
|
|
7617
|
+
tags?: Array<string>;
|
|
7618
|
+
areRelationsValid?: boolean;
|
|
7619
|
+
maql: string;
|
|
7620
|
+
}
|
|
7516
7621
|
export interface JsonApiUserDataFilterOutDocument {
|
|
7517
7622
|
data: JsonApiUserDataFilterOut;
|
|
7518
7623
|
links?: ObjectLinks;
|
|
@@ -7531,20 +7636,23 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7531
7636
|
export interface JsonApiUserDataFilterOutList {
|
|
7532
7637
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7533
7638
|
links?: ListLinks;
|
|
7534
|
-
meta?:
|
|
7639
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7535
7640
|
/**
|
|
7536
7641
|
* Included resources
|
|
7537
7642
|
*/
|
|
7538
7643
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7539
7644
|
}
|
|
7540
7645
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7541
|
-
user?:
|
|
7542
|
-
userGroup?:
|
|
7543
|
-
facts?:
|
|
7544
|
-
attributes?:
|
|
7646
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
7647
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
7648
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
7649
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
7545
7650
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
7546
7651
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
7547
|
-
datasets?:
|
|
7652
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
7653
|
+
}
|
|
7654
|
+
export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
7655
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7548
7656
|
}
|
|
7549
7657
|
export interface JsonApiUserDataFilterOutWithLinks {
|
|
7550
7658
|
/**
|
|
@@ -7555,8 +7663,8 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7555
7663
|
* API identifier of an object
|
|
7556
7664
|
*/
|
|
7557
7665
|
id: string;
|
|
7558
|
-
meta?:
|
|
7559
|
-
attributes:
|
|
7666
|
+
meta?: JsonApiDatasetOutMeta;
|
|
7667
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7560
7668
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7561
7669
|
links?: ObjectLinks;
|
|
7562
7670
|
}
|
|
@@ -7577,7 +7685,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7577
7685
|
*/
|
|
7578
7686
|
id: string;
|
|
7579
7687
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7580
|
-
relationships?:
|
|
7688
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7581
7689
|
}
|
|
7582
7690
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7583
7691
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7593,6 +7701,10 @@ export interface JsonApiUserDataFilterPatchAttributes {
|
|
|
7593
7701
|
export interface JsonApiUserDataFilterPatchDocument {
|
|
7594
7702
|
data: JsonApiUserDataFilterPatch;
|
|
7595
7703
|
}
|
|
7704
|
+
export interface JsonApiUserDataFilterPatchRelationships {
|
|
7705
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
7706
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
7707
|
+
}
|
|
7596
7708
|
/**
|
|
7597
7709
|
* JSON:API representation of userDataFilter entity.
|
|
7598
7710
|
*/
|
|
@@ -7605,8 +7717,8 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7605
7717
|
* API identifier of an object
|
|
7606
7718
|
*/
|
|
7607
7719
|
id?: string;
|
|
7608
|
-
attributes:
|
|
7609
|
-
relationships?:
|
|
7720
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7721
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7610
7722
|
}
|
|
7611
7723
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7612
7724
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7693,7 +7805,7 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7693
7805
|
export interface JsonApiUserGroupOutList {
|
|
7694
7806
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7695
7807
|
links?: ListLinks;
|
|
7696
|
-
meta?:
|
|
7808
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7697
7809
|
/**
|
|
7698
7810
|
* Included resources
|
|
7699
7811
|
*/
|
|
@@ -7782,7 +7894,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
7782
7894
|
export interface JsonApiUserIdentifierOutList {
|
|
7783
7895
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7784
7896
|
links?: ListLinks;
|
|
7785
|
-
meta?:
|
|
7897
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7786
7898
|
}
|
|
7787
7899
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
7788
7900
|
/**
|
|
@@ -7875,7 +7987,7 @@ export interface JsonApiUserOutDocument {
|
|
|
7875
7987
|
export interface JsonApiUserOutList {
|
|
7876
7988
|
data: Array<JsonApiUserOutWithLinks>;
|
|
7877
7989
|
links?: ListLinks;
|
|
7878
|
-
meta?:
|
|
7990
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7879
7991
|
/**
|
|
7880
7992
|
* Included resources
|
|
7881
7993
|
*/
|
|
@@ -7969,7 +8081,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
7969
8081
|
export interface JsonApiUserSettingOutList {
|
|
7970
8082
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
7971
8083
|
links?: ListLinks;
|
|
7972
|
-
meta?:
|
|
8084
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7973
8085
|
}
|
|
7974
8086
|
export interface JsonApiUserSettingOutWithLinks {
|
|
7975
8087
|
/**
|
|
@@ -7999,7 +8111,7 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
7999
8111
|
* API identifier of an object
|
|
8000
8112
|
*/
|
|
8001
8113
|
id: string;
|
|
8002
|
-
attributes:
|
|
8114
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
8003
8115
|
}
|
|
8004
8116
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
8005
8117
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -8031,7 +8143,7 @@ export interface JsonApiVisualizationObjectOut {
|
|
|
8031
8143
|
* API identifier of an object
|
|
8032
8144
|
*/
|
|
8033
8145
|
id: string;
|
|
8034
|
-
meta?:
|
|
8146
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8035
8147
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
8036
8148
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8037
8149
|
}
|
|
@@ -8050,6 +8162,7 @@ export interface JsonApiVisualizationObjectOutAttributes {
|
|
|
8050
8162
|
content: object;
|
|
8051
8163
|
createdAt?: string;
|
|
8052
8164
|
modifiedAt?: string;
|
|
8165
|
+
isHidden?: boolean;
|
|
8053
8166
|
}
|
|
8054
8167
|
export interface JsonApiVisualizationObjectOutDocument {
|
|
8055
8168
|
data: JsonApiVisualizationObjectOut;
|
|
@@ -8065,60 +8178,24 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8065
8178
|
export interface JsonApiVisualizationObjectOutList {
|
|
8066
8179
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8067
8180
|
links?: ListLinks;
|
|
8068
|
-
meta?:
|
|
8181
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8069
8182
|
/**
|
|
8070
8183
|
* Included resources
|
|
8071
8184
|
*/
|
|
8072
8185
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
8073
8186
|
}
|
|
8074
|
-
export interface JsonApiVisualizationObjectOutMeta {
|
|
8075
|
-
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
8076
|
-
}
|
|
8077
|
-
export interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
8078
|
-
/**
|
|
8079
|
-
* defines type of the origin of the entity
|
|
8080
|
-
*/
|
|
8081
|
-
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
8082
|
-
/**
|
|
8083
|
-
* defines id of the workspace where the entity comes from
|
|
8084
|
-
*/
|
|
8085
|
-
originId: string;
|
|
8086
|
-
}
|
|
8087
|
-
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
8088
|
-
readonly NATIVE: "NATIVE";
|
|
8089
|
-
readonly PARENT: "PARENT";
|
|
8090
|
-
};
|
|
8091
|
-
export type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
8092
8187
|
export interface JsonApiVisualizationObjectOutRelationships {
|
|
8093
8188
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8094
8189
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8095
|
-
facts?:
|
|
8096
|
-
attributes?:
|
|
8190
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
8191
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
8097
8192
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
8098
8193
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
8099
|
-
datasets?:
|
|
8100
|
-
}
|
|
8101
|
-
export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
8102
|
-
/**
|
|
8103
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8104
|
-
*/
|
|
8105
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
8194
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
8106
8195
|
}
|
|
8107
8196
|
export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
8108
8197
|
data: JsonApiUserIdentifierLinkage | null;
|
|
8109
8198
|
}
|
|
8110
|
-
export interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
8111
|
-
/**
|
|
8112
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8113
|
-
*/
|
|
8114
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
8115
|
-
}
|
|
8116
|
-
export interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
8117
|
-
/**
|
|
8118
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8119
|
-
*/
|
|
8120
|
-
data: Array<JsonApiFactLinkage>;
|
|
8121
|
-
}
|
|
8122
8199
|
export interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
8123
8200
|
/**
|
|
8124
8201
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -8140,7 +8217,7 @@ export interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
8140
8217
|
* API identifier of an object
|
|
8141
8218
|
*/
|
|
8142
8219
|
id: string;
|
|
8143
|
-
meta?:
|
|
8220
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8144
8221
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
8145
8222
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8146
8223
|
links?: ObjectLinks;
|
|
@@ -8161,12 +8238,23 @@ export interface JsonApiVisualizationObjectPatch {
|
|
|
8161
8238
|
* API identifier of an object
|
|
8162
8239
|
*/
|
|
8163
8240
|
id: string;
|
|
8164
|
-
attributes:
|
|
8241
|
+
attributes: JsonApiVisualizationObjectPatchAttributes;
|
|
8165
8242
|
}
|
|
8166
8243
|
export declare const JsonApiVisualizationObjectPatchTypeEnum: {
|
|
8167
8244
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8168
8245
|
};
|
|
8169
8246
|
export type JsonApiVisualizationObjectPatchTypeEnum = (typeof JsonApiVisualizationObjectPatchTypeEnum)[keyof typeof JsonApiVisualizationObjectPatchTypeEnum];
|
|
8247
|
+
export interface JsonApiVisualizationObjectPatchAttributes {
|
|
8248
|
+
title?: string;
|
|
8249
|
+
description?: string;
|
|
8250
|
+
tags?: Array<string>;
|
|
8251
|
+
areRelationsValid?: boolean;
|
|
8252
|
+
/**
|
|
8253
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8254
|
+
*/
|
|
8255
|
+
content?: object;
|
|
8256
|
+
isHidden?: boolean;
|
|
8257
|
+
}
|
|
8170
8258
|
export interface JsonApiVisualizationObjectPatchDocument {
|
|
8171
8259
|
data: JsonApiVisualizationObjectPatch;
|
|
8172
8260
|
}
|
|
@@ -8182,12 +8270,23 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8182
8270
|
* API identifier of an object
|
|
8183
8271
|
*/
|
|
8184
8272
|
id?: string;
|
|
8185
|
-
attributes:
|
|
8273
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
8186
8274
|
}
|
|
8187
8275
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8188
8276
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8189
8277
|
};
|
|
8190
8278
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
|
|
8279
|
+
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
8280
|
+
title?: string;
|
|
8281
|
+
description?: string;
|
|
8282
|
+
tags?: Array<string>;
|
|
8283
|
+
areRelationsValid?: boolean;
|
|
8284
|
+
/**
|
|
8285
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8286
|
+
*/
|
|
8287
|
+
content: object;
|
|
8288
|
+
isHidden?: boolean;
|
|
8289
|
+
}
|
|
8191
8290
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
8192
8291
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
8193
8292
|
}
|
|
@@ -8220,7 +8319,7 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8220
8319
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8221
8320
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8222
8321
|
links?: ListLinks;
|
|
8223
|
-
meta?:
|
|
8322
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8224
8323
|
/**
|
|
8225
8324
|
* Included resources
|
|
8226
8325
|
*/
|
|
@@ -8228,12 +8327,12 @@ export interface JsonApiWorkspaceAutomationOutList {
|
|
|
8228
8327
|
}
|
|
8229
8328
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8230
8329
|
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
8231
|
-
notificationChannel?:
|
|
8232
|
-
analyticalDashboard?:
|
|
8330
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
8331
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
8233
8332
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8234
8333
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8235
|
-
exportDefinitions?:
|
|
8236
|
-
recipients?:
|
|
8334
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
8335
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
8237
8336
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8238
8337
|
}
|
|
8239
8338
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -8298,7 +8397,7 @@ export interface JsonApiWorkspaceDataFilterOut {
|
|
|
8298
8397
|
* API identifier of an object
|
|
8299
8398
|
*/
|
|
8300
8399
|
id: string;
|
|
8301
|
-
meta?:
|
|
8400
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8302
8401
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8303
8402
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8304
8403
|
}
|
|
@@ -8325,7 +8424,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8325
8424
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8326
8425
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8327
8426
|
links?: ListLinks;
|
|
8328
|
-
meta?:
|
|
8427
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8329
8428
|
/**
|
|
8330
8429
|
* Included resources
|
|
8331
8430
|
*/
|
|
@@ -8349,7 +8448,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
8349
8448
|
* API identifier of an object
|
|
8350
8449
|
*/
|
|
8351
8450
|
id: string;
|
|
8352
|
-
meta?:
|
|
8451
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8353
8452
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8354
8453
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8355
8454
|
links?: ObjectLinks;
|
|
@@ -8392,27 +8491,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8392
8491
|
* API identifier of an object
|
|
8393
8492
|
*/
|
|
8394
8493
|
id: string;
|
|
8395
|
-
attributes?:
|
|
8396
|
-
relationships?:
|
|
8494
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
8495
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
8397
8496
|
}
|
|
8398
8497
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8399
8498
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8400
8499
|
};
|
|
8401
8500
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
8402
|
-
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8403
|
-
title?: string;
|
|
8404
|
-
description?: string;
|
|
8405
|
-
filterValues?: Array<string>;
|
|
8406
|
-
}
|
|
8407
8501
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8408
8502
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
8409
8503
|
}
|
|
8410
|
-
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8411
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8412
|
-
}
|
|
8413
|
-
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8414
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8415
|
-
}
|
|
8416
8504
|
/**
|
|
8417
8505
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8418
8506
|
*/
|
|
@@ -8436,14 +8524,19 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8436
8524
|
* API identifier of an object
|
|
8437
8525
|
*/
|
|
8438
8526
|
id: string;
|
|
8439
|
-
meta?:
|
|
8440
|
-
attributes?:
|
|
8441
|
-
relationships?:
|
|
8527
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8528
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
8529
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
8442
8530
|
}
|
|
8443
8531
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8444
8532
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8445
8533
|
};
|
|
8446
8534
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
8535
|
+
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
8536
|
+
title?: string;
|
|
8537
|
+
description?: string;
|
|
8538
|
+
filterValues?: Array<string>;
|
|
8539
|
+
}
|
|
8447
8540
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
8448
8541
|
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
8449
8542
|
links?: ObjectLinks;
|
|
@@ -8458,12 +8551,18 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8458
8551
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8459
8552
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8460
8553
|
links?: ListLinks;
|
|
8461
|
-
meta?:
|
|
8554
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8462
8555
|
/**
|
|
8463
8556
|
* Included resources
|
|
8464
8557
|
*/
|
|
8465
8558
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8466
8559
|
}
|
|
8560
|
+
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
8561
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
8562
|
+
}
|
|
8563
|
+
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
8564
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8565
|
+
}
|
|
8467
8566
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
8468
8567
|
/**
|
|
8469
8568
|
* Object type
|
|
@@ -8473,9 +8572,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8473
8572
|
* API identifier of an object
|
|
8474
8573
|
*/
|
|
8475
8574
|
id: string;
|
|
8476
|
-
meta?:
|
|
8477
|
-
attributes?:
|
|
8478
|
-
relationships?:
|
|
8575
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8576
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
8577
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
8479
8578
|
links?: ObjectLinks;
|
|
8480
8579
|
}
|
|
8481
8580
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8494,8 +8593,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8494
8593
|
* API identifier of an object
|
|
8495
8594
|
*/
|
|
8496
8595
|
id: string;
|
|
8497
|
-
attributes?:
|
|
8498
|
-
relationships?:
|
|
8596
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
8597
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
8499
8598
|
}
|
|
8500
8599
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8501
8600
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8609,7 +8708,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8609
8708
|
export interface JsonApiWorkspaceOutList {
|
|
8610
8709
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8611
8710
|
links?: ListLinks;
|
|
8612
|
-
meta?:
|
|
8711
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8613
8712
|
/**
|
|
8614
8713
|
* Included resources
|
|
8615
8714
|
*/
|
|
@@ -8735,7 +8834,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8735
8834
|
* API identifier of an object
|
|
8736
8835
|
*/
|
|
8737
8836
|
id: string;
|
|
8738
|
-
meta?:
|
|
8837
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8739
8838
|
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8740
8839
|
}
|
|
8741
8840
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -8752,7 +8851,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
8752
8851
|
export interface JsonApiWorkspaceSettingOutList {
|
|
8753
8852
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
8754
8853
|
links?: ListLinks;
|
|
8755
|
-
meta?:
|
|
8854
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8756
8855
|
}
|
|
8757
8856
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
8758
8857
|
/**
|
|
@@ -8763,7 +8862,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
8763
8862
|
* API identifier of an object
|
|
8764
8863
|
*/
|
|
8765
8864
|
id: string;
|
|
8766
|
-
meta?:
|
|
8865
|
+
meta?: JsonApiDatasetOutMeta;
|
|
8767
8866
|
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8768
8867
|
links?: ObjectLinks;
|
|
8769
8868
|
}
|
|
@@ -9486,12 +9585,15 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
9486
9585
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
9487
9586
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
9488
9587
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
9588
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
9489
9589
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
9490
9590
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
9491
9591
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
9492
9592
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
9493
9593
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
9494
9594
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
9595
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
9596
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
9495
9597
|
};
|
|
9496
9598
|
export type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
9497
9599
|
export interface RsaSpecification {
|
|
@@ -9560,7 +9662,7 @@ export interface SectionSlideTemplate {
|
|
|
9560
9662
|
*/
|
|
9561
9663
|
export interface Settings {
|
|
9562
9664
|
/**
|
|
9563
|
-
*
|
|
9665
|
+
* If true, the export will contain the information about the export – exported date, filters, etc. Works only with `visualizationObject`. (XLSX, PDF)
|
|
9564
9666
|
*/
|
|
9565
9667
|
exportInfo?: boolean;
|
|
9566
9668
|
/**
|
|
@@ -9600,10 +9702,6 @@ export interface Settings {
|
|
|
9600
9702
|
* Set page orientation. (PDF)
|
|
9601
9703
|
*/
|
|
9602
9704
|
pageOrientation?: SettingsPageOrientationEnum;
|
|
9603
|
-
/**
|
|
9604
|
-
* Show info page with export information.
|
|
9605
|
-
*/
|
|
9606
|
-
showInfoPage?: boolean;
|
|
9607
9705
|
}
|
|
9608
9706
|
export declare const SettingsPageSizeEnum: {
|
|
9609
9707
|
readonly A3: "A3";
|
|
@@ -9799,7 +9897,7 @@ export interface TabularExportRequest {
|
|
|
9799
9897
|
*/
|
|
9800
9898
|
visualizationObject?: string;
|
|
9801
9899
|
/**
|
|
9802
|
-
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given.
|
|
9900
|
+
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given. Those filters override the original filters defined in the visualization.
|
|
9803
9901
|
*/
|
|
9804
9902
|
visualizationObjectCustomFilters?: Array<object>;
|
|
9805
9903
|
/**
|