@gooddata/api-client-tiger 11.5.0-alpha.5 → 11.5.0
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +745 -615
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +311 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +299 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +150 -22
- package/esm/generated/auth-json-api/api.d.ts +551 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +696 -0
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +166 -0
- package/esm/generated/metadata-json-api/api.d.ts +489 -560
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +50 -50
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8790 -8955
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/generated/result-json-api/openapi-spec.json +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -1997,18 +1997,6 @@ export interface DeclarativeOrganizationInfo {
|
|
|
1997
1997
|
*/
|
|
1998
1998
|
hostname: string;
|
|
1999
1999
|
allowedOrigins?: Array<string>;
|
|
2000
|
-
/**
|
|
2001
|
-
* URI of the authentication provider.
|
|
2002
|
-
*/
|
|
2003
|
-
oauthIssuerLocation?: string;
|
|
2004
|
-
/**
|
|
2005
|
-
* Identifier of the authentication provider
|
|
2006
|
-
*/
|
|
2007
|
-
oauthClientId?: string;
|
|
2008
|
-
/**
|
|
2009
|
-
* Communication secret of the authentication provider (never returned back).
|
|
2010
|
-
*/
|
|
2011
|
-
oauthClientSecret?: string;
|
|
2012
2000
|
permissions: Array<DeclarativeOrganizationPermission>;
|
|
2013
2001
|
/**
|
|
2014
2002
|
* Early access defined on level Organization
|
|
@@ -2019,24 +2007,6 @@ export interface DeclarativeOrganizationInfo {
|
|
|
2019
2007
|
* Early access defined on level Organization
|
|
2020
2008
|
*/
|
|
2021
2009
|
earlyAccessValues?: Array<string>;
|
|
2022
|
-
/**
|
|
2023
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
2024
|
-
*/
|
|
2025
|
-
oauthIssuerId?: string;
|
|
2026
|
-
/**
|
|
2027
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
2028
|
-
*/
|
|
2029
|
-
oauthSubjectIdClaim?: string;
|
|
2030
|
-
/**
|
|
2031
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
2032
|
-
*/
|
|
2033
|
-
oauthCustomAuthAttributes?: {
|
|
2034
|
-
[key: string]: string;
|
|
2035
|
-
};
|
|
2036
|
-
/**
|
|
2037
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
2038
|
-
*/
|
|
2039
|
-
oauthCustomScopes?: Array<string> | null;
|
|
2040
2010
|
/**
|
|
2041
2011
|
* A list of organization settings.
|
|
2042
2012
|
*/
|
|
@@ -3155,7 +3125,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
3155
3125
|
* API identifier of an object
|
|
3156
3126
|
*/
|
|
3157
3127
|
id: string;
|
|
3158
|
-
meta?:
|
|
3128
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3159
3129
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3160
3130
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3161
3131
|
}
|
|
@@ -3205,17 +3175,14 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3205
3175
|
export interface JsonApiAggregatedFactOutList {
|
|
3206
3176
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3207
3177
|
links?: ListLinks;
|
|
3208
|
-
meta?:
|
|
3178
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3209
3179
|
/**
|
|
3210
3180
|
* Included resources
|
|
3211
3181
|
*/
|
|
3212
3182
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
3213
3183
|
}
|
|
3214
|
-
export interface JsonApiAggregatedFactOutListMeta {
|
|
3215
|
-
page?: PageMetadata;
|
|
3216
|
-
}
|
|
3217
3184
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
3218
|
-
dataset?:
|
|
3185
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3219
3186
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
3220
3187
|
}
|
|
3221
3188
|
export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
|
|
@@ -3230,7 +3197,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
|
|
|
3230
3197
|
* API identifier of an object
|
|
3231
3198
|
*/
|
|
3232
3199
|
id: string;
|
|
3233
|
-
meta?:
|
|
3200
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3234
3201
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
3235
3202
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
3236
3203
|
links?: ObjectLinks;
|
|
@@ -3321,7 +3288,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3321
3288
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3322
3289
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3323
3290
|
links?: ListLinks;
|
|
3324
|
-
meta?:
|
|
3291
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3325
3292
|
/**
|
|
3326
3293
|
* Included resources
|
|
3327
3294
|
*/
|
|
@@ -3332,7 +3299,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
3332
3299
|
* List of valid permissions for a logged-in user.
|
|
3333
3300
|
*/
|
|
3334
3301
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
3335
|
-
origin?:
|
|
3302
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
3336
3303
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
3337
3304
|
}
|
|
3338
3305
|
export declare const JsonApiAnalyticalDashboardOutMetaPermissionsEnum: {
|
|
@@ -3354,7 +3321,7 @@ export interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
3354
3321
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
3355
3322
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3356
3323
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
3357
|
-
datasets?:
|
|
3324
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
3358
3325
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
3359
3326
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
3360
3327
|
}
|
|
@@ -3506,7 +3473,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3506
3473
|
export interface JsonApiApiTokenOutList {
|
|
3507
3474
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3508
3475
|
links?: ListLinks;
|
|
3509
|
-
meta?:
|
|
3476
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3510
3477
|
}
|
|
3511
3478
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3512
3479
|
/**
|
|
@@ -3536,22 +3503,12 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
3536
3503
|
* API identifier of an object
|
|
3537
3504
|
*/
|
|
3538
3505
|
id: string;
|
|
3539
|
-
attributes?:
|
|
3506
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3540
3507
|
}
|
|
3541
3508
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
3542
3509
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3543
3510
|
};
|
|
3544
3511
|
export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
3545
|
-
export interface JsonApiAttributeHierarchyInAttributes {
|
|
3546
|
-
title?: string;
|
|
3547
|
-
description?: string;
|
|
3548
|
-
tags?: Array<string>;
|
|
3549
|
-
areRelationsValid?: boolean;
|
|
3550
|
-
/**
|
|
3551
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3552
|
-
*/
|
|
3553
|
-
content?: object;
|
|
3554
|
-
}
|
|
3555
3512
|
export interface JsonApiAttributeHierarchyInDocument {
|
|
3556
3513
|
data: JsonApiAttributeHierarchyIn;
|
|
3557
3514
|
}
|
|
@@ -3578,7 +3535,7 @@ export interface JsonApiAttributeHierarchyOut {
|
|
|
3578
3535
|
* API identifier of an object
|
|
3579
3536
|
*/
|
|
3580
3537
|
id: string;
|
|
3581
|
-
meta?:
|
|
3538
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3582
3539
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3583
3540
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3584
3541
|
}
|
|
@@ -3616,7 +3573,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3616
3573
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3617
3574
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3618
3575
|
links?: ListLinks;
|
|
3619
|
-
meta?:
|
|
3576
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3620
3577
|
/**
|
|
3621
3578
|
* Included resources
|
|
3622
3579
|
*/
|
|
@@ -3625,7 +3582,7 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
3625
3582
|
export interface JsonApiAttributeHierarchyOutRelationships {
|
|
3626
3583
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3627
3584
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3628
|
-
attributes?:
|
|
3585
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
3629
3586
|
}
|
|
3630
3587
|
export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
3631
3588
|
/**
|
|
@@ -3636,7 +3593,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
3636
3593
|
* API identifier of an object
|
|
3637
3594
|
*/
|
|
3638
3595
|
id: string;
|
|
3639
|
-
meta?:
|
|
3596
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3640
3597
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
3641
3598
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
3642
3599
|
links?: ObjectLinks;
|
|
@@ -3657,12 +3614,22 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
3657
3614
|
* API identifier of an object
|
|
3658
3615
|
*/
|
|
3659
3616
|
id: string;
|
|
3660
|
-
attributes?:
|
|
3617
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
3661
3618
|
}
|
|
3662
3619
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
3663
3620
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3664
3621
|
};
|
|
3665
3622
|
export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
3623
|
+
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
3624
|
+
title?: string;
|
|
3625
|
+
description?: string;
|
|
3626
|
+
tags?: Array<string>;
|
|
3627
|
+
areRelationsValid?: boolean;
|
|
3628
|
+
/**
|
|
3629
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3630
|
+
*/
|
|
3631
|
+
content?: object;
|
|
3632
|
+
}
|
|
3666
3633
|
export interface JsonApiAttributeHierarchyPatchDocument {
|
|
3667
3634
|
data: JsonApiAttributeHierarchyPatch;
|
|
3668
3635
|
}
|
|
@@ -3689,7 +3656,7 @@ export interface JsonApiAttributeOut {
|
|
|
3689
3656
|
* API identifier of an object
|
|
3690
3657
|
*/
|
|
3691
3658
|
id: string;
|
|
3692
|
-
meta?:
|
|
3659
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3693
3660
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3694
3661
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3695
3662
|
}
|
|
@@ -3761,14 +3728,14 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3761
3728
|
export interface JsonApiAttributeOutList {
|
|
3762
3729
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3763
3730
|
links?: ListLinks;
|
|
3764
|
-
meta?:
|
|
3731
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
3765
3732
|
/**
|
|
3766
3733
|
* Included resources
|
|
3767
3734
|
*/
|
|
3768
3735
|
included?: Array<JsonApiAttributeOutIncludes>;
|
|
3769
3736
|
}
|
|
3770
3737
|
export interface JsonApiAttributeOutRelationships {
|
|
3771
|
-
dataset?:
|
|
3738
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3772
3739
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3773
3740
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
3774
3741
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -3779,6 +3746,9 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
3779
3746
|
*/
|
|
3780
3747
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
3781
3748
|
}
|
|
3749
|
+
export interface JsonApiAttributeOutRelationshipsDataset {
|
|
3750
|
+
data: JsonApiDatasetLinkage | null;
|
|
3751
|
+
}
|
|
3782
3752
|
export interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
3783
3753
|
data: JsonApiLabelLinkage | null;
|
|
3784
3754
|
}
|
|
@@ -3791,7 +3761,7 @@ export interface JsonApiAttributeOutWithLinks {
|
|
|
3791
3761
|
* API identifier of an object
|
|
3792
3762
|
*/
|
|
3793
3763
|
id: string;
|
|
3794
|
-
meta?:
|
|
3764
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3795
3765
|
attributes?: JsonApiAttributeOutAttributes;
|
|
3796
3766
|
relationships?: JsonApiAttributeOutRelationships;
|
|
3797
3767
|
links?: ObjectLinks;
|
|
@@ -3812,63 +3782,16 @@ export interface JsonApiAutomationIn {
|
|
|
3812
3782
|
* API identifier of an object
|
|
3813
3783
|
*/
|
|
3814
3784
|
id: string;
|
|
3815
|
-
attributes?:
|
|
3816
|
-
relationships?:
|
|
3785
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
3786
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
3817
3787
|
}
|
|
3818
3788
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
3819
3789
|
readonly AUTOMATION: "automation";
|
|
3820
3790
|
};
|
|
3821
3791
|
export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
3822
|
-
export interface JsonApiAutomationInAttributes {
|
|
3823
|
-
title?: string;
|
|
3824
|
-
description?: string;
|
|
3825
|
-
tags?: Array<string>;
|
|
3826
|
-
areRelationsValid?: boolean;
|
|
3827
|
-
/**
|
|
3828
|
-
* Additional details to be included in the automated message.
|
|
3829
|
-
*/
|
|
3830
|
-
details?: object;
|
|
3831
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
3832
|
-
/**
|
|
3833
|
-
* Current state of the automation.
|
|
3834
|
-
*/
|
|
3835
|
-
state?: JsonApiAutomationInAttributesStateEnum;
|
|
3836
|
-
/**
|
|
3837
|
-
* Specify automation evaluation mode.
|
|
3838
|
-
*/
|
|
3839
|
-
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3840
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
3841
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
3842
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
3843
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
3844
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
3845
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
3846
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
3847
|
-
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
3848
|
-
/**
|
|
3849
|
-
* External recipients of the automation action results.
|
|
3850
|
-
*/
|
|
3851
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
3852
|
-
}
|
|
3853
|
-
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3854
|
-
readonly ACTIVE: "ACTIVE";
|
|
3855
|
-
readonly PAUSED: "PAUSED";
|
|
3856
|
-
};
|
|
3857
|
-
export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
3858
|
-
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
3859
|
-
readonly SHARED: "SHARED";
|
|
3860
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3861
|
-
};
|
|
3862
|
-
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3863
3792
|
export interface JsonApiAutomationInDocument {
|
|
3864
3793
|
data: JsonApiAutomationIn;
|
|
3865
3794
|
}
|
|
3866
|
-
export interface JsonApiAutomationInRelationships {
|
|
3867
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
3868
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
3869
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
3870
|
-
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
3871
|
-
}
|
|
3872
3795
|
/**
|
|
3873
3796
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3874
3797
|
*/
|
|
@@ -3892,7 +3815,7 @@ export interface JsonApiAutomationOut {
|
|
|
3892
3815
|
* API identifier of an object
|
|
3893
3816
|
*/
|
|
3894
3817
|
id: string;
|
|
3895
|
-
meta?:
|
|
3818
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
3896
3819
|
attributes?: JsonApiAutomationOutAttributes;
|
|
3897
3820
|
relationships?: JsonApiAutomationOutRelationships;
|
|
3898
3821
|
}
|
|
@@ -3909,7 +3832,7 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3909
3832
|
* Additional details to be included in the automated message.
|
|
3910
3833
|
*/
|
|
3911
3834
|
details?: object;
|
|
3912
|
-
metadata?:
|
|
3835
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
3913
3836
|
/**
|
|
3914
3837
|
* Current state of the automation.
|
|
3915
3838
|
*/
|
|
@@ -3918,18 +3841,18 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3918
3841
|
* Specify automation evaluation mode.
|
|
3919
3842
|
*/
|
|
3920
3843
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3921
|
-
schedule?:
|
|
3922
|
-
alert?:
|
|
3923
|
-
tabularExports?: Array<
|
|
3924
|
-
visualExports?: Array<
|
|
3925
|
-
imageExports?: Array<
|
|
3926
|
-
rawExports?: Array<
|
|
3927
|
-
slidesExports?: Array<
|
|
3928
|
-
dashboardTabularExports?: Array<
|
|
3844
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
3845
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
3846
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
3847
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
3848
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
3849
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
3850
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
3851
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
3929
3852
|
/**
|
|
3930
3853
|
* External recipients of the automation action results.
|
|
3931
3854
|
*/
|
|
3932
|
-
externalRecipients?: Array<
|
|
3855
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
3933
3856
|
createdAt?: string;
|
|
3934
3857
|
modifiedAt?: string;
|
|
3935
3858
|
}
|
|
@@ -3943,69 +3866,6 @@ export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
|
3943
3866
|
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3944
3867
|
};
|
|
3945
3868
|
export type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
3946
|
-
export interface JsonApiAutomationOutAttributesAlert {
|
|
3947
|
-
execution: AlertAfm;
|
|
3948
|
-
condition: AlertCondition;
|
|
3949
|
-
/**
|
|
3950
|
-
* 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.
|
|
3951
|
-
*/
|
|
3952
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
3953
|
-
}
|
|
3954
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
3955
|
-
readonly ALWAYS: "ALWAYS";
|
|
3956
|
-
readonly ONCE: "ONCE";
|
|
3957
|
-
};
|
|
3958
|
-
export type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
3959
|
-
export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
3960
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
3961
|
-
}
|
|
3962
|
-
export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
3963
|
-
/**
|
|
3964
|
-
* E-mail address to send notifications from.
|
|
3965
|
-
*/
|
|
3966
|
-
email: string;
|
|
3967
|
-
}
|
|
3968
|
-
export interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
3969
|
-
requestPayload: ImageExportRequest;
|
|
3970
|
-
}
|
|
3971
|
-
/**
|
|
3972
|
-
* Additional information for the automation.
|
|
3973
|
-
*/
|
|
3974
|
-
export interface JsonApiAutomationOutAttributesMetadata {
|
|
3975
|
-
[key: string]: any;
|
|
3976
|
-
widget?: string;
|
|
3977
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
3978
|
-
}
|
|
3979
|
-
export interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
3980
|
-
requestPayload: RawExportAutomationRequest;
|
|
3981
|
-
}
|
|
3982
|
-
export interface JsonApiAutomationOutAttributesSchedule {
|
|
3983
|
-
/**
|
|
3984
|
-
* 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.
|
|
3985
|
-
*/
|
|
3986
|
-
cron: string;
|
|
3987
|
-
/**
|
|
3988
|
-
* Human-readable description of the cron expression.
|
|
3989
|
-
*/
|
|
3990
|
-
cronDescription?: string;
|
|
3991
|
-
/**
|
|
3992
|
-
* Timezone in which the schedule is defined.
|
|
3993
|
-
*/
|
|
3994
|
-
timezone: string;
|
|
3995
|
-
/**
|
|
3996
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3997
|
-
*/
|
|
3998
|
-
firstRun?: string;
|
|
3999
|
-
}
|
|
4000
|
-
export interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
4001
|
-
requestPayload: SlidesExportRequest;
|
|
4002
|
-
}
|
|
4003
|
-
export interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
4004
|
-
requestPayload: TabularExportRequest;
|
|
4005
|
-
}
|
|
4006
|
-
export interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
4007
|
-
requestPayload: VisualExportRequest;
|
|
4008
|
-
}
|
|
4009
3869
|
export interface JsonApiAutomationOutDocument {
|
|
4010
3870
|
data: JsonApiAutomationOut;
|
|
4011
3871
|
links?: ObjectLinks;
|
|
@@ -4024,19 +3884,19 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
4024
3884
|
export interface JsonApiAutomationOutList {
|
|
4025
3885
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
4026
3886
|
links?: ListLinks;
|
|
4027
|
-
meta?:
|
|
3887
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4028
3888
|
/**
|
|
4029
3889
|
* Included resources
|
|
4030
3890
|
*/
|
|
4031
3891
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
4032
3892
|
}
|
|
4033
3893
|
export interface JsonApiAutomationOutRelationships {
|
|
4034
|
-
notificationChannel?:
|
|
4035
|
-
analyticalDashboard?:
|
|
3894
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
3895
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
4036
3896
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4037
3897
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
4038
|
-
exportDefinitions?:
|
|
4039
|
-
recipients?:
|
|
3898
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
3899
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
4040
3900
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
4041
3901
|
}
|
|
4042
3902
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
@@ -4045,21 +3905,6 @@ export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
|
4045
3905
|
*/
|
|
4046
3906
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
4047
3907
|
}
|
|
4048
|
-
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
4049
|
-
/**
|
|
4050
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4051
|
-
*/
|
|
4052
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
4053
|
-
}
|
|
4054
|
-
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
4055
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
4056
|
-
}
|
|
4057
|
-
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
4058
|
-
/**
|
|
4059
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4060
|
-
*/
|
|
4061
|
-
data: Array<JsonApiUserLinkage>;
|
|
4062
|
-
}
|
|
4063
3908
|
export interface JsonApiAutomationOutWithLinks {
|
|
4064
3909
|
/**
|
|
4065
3910
|
* Object type
|
|
@@ -4069,7 +3914,7 @@ export interface JsonApiAutomationOutWithLinks {
|
|
|
4069
3914
|
* API identifier of an object
|
|
4070
3915
|
*/
|
|
4071
3916
|
id: string;
|
|
4072
|
-
meta?:
|
|
3917
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4073
3918
|
attributes?: JsonApiAutomationOutAttributes;
|
|
4074
3919
|
relationships?: JsonApiAutomationOutRelationships;
|
|
4075
3920
|
links?: ObjectLinks;
|
|
@@ -4090,16 +3935,144 @@ export interface JsonApiAutomationPatch {
|
|
|
4090
3935
|
* API identifier of an object
|
|
4091
3936
|
*/
|
|
4092
3937
|
id: string;
|
|
4093
|
-
attributes?:
|
|
4094
|
-
relationships?:
|
|
3938
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
3939
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
4095
3940
|
}
|
|
4096
3941
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
4097
3942
|
readonly AUTOMATION: "automation";
|
|
4098
3943
|
};
|
|
4099
3944
|
export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
3945
|
+
export interface JsonApiAutomationPatchAttributes {
|
|
3946
|
+
title?: string;
|
|
3947
|
+
description?: string;
|
|
3948
|
+
tags?: Array<string>;
|
|
3949
|
+
areRelationsValid?: boolean;
|
|
3950
|
+
/**
|
|
3951
|
+
* Additional details to be included in the automated message.
|
|
3952
|
+
*/
|
|
3953
|
+
details?: object;
|
|
3954
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
3955
|
+
/**
|
|
3956
|
+
* Current state of the automation.
|
|
3957
|
+
*/
|
|
3958
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
3959
|
+
/**
|
|
3960
|
+
* Specify automation evaluation mode.
|
|
3961
|
+
*/
|
|
3962
|
+
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
3963
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
3964
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
3965
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
3966
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
3967
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
3968
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
3969
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
3970
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
3971
|
+
/**
|
|
3972
|
+
* External recipients of the automation action results.
|
|
3973
|
+
*/
|
|
3974
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
3975
|
+
}
|
|
3976
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
3977
|
+
readonly ACTIVE: "ACTIVE";
|
|
3978
|
+
readonly PAUSED: "PAUSED";
|
|
3979
|
+
};
|
|
3980
|
+
export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
3981
|
+
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
3982
|
+
readonly SHARED: "SHARED";
|
|
3983
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3984
|
+
};
|
|
3985
|
+
export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
3986
|
+
export interface JsonApiAutomationPatchAttributesAlert {
|
|
3987
|
+
execution: AlertAfm;
|
|
3988
|
+
condition: AlertCondition;
|
|
3989
|
+
/**
|
|
3990
|
+
* 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.
|
|
3991
|
+
*/
|
|
3992
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
3993
|
+
}
|
|
3994
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
3995
|
+
readonly ALWAYS: "ALWAYS";
|
|
3996
|
+
readonly ONCE: "ONCE";
|
|
3997
|
+
};
|
|
3998
|
+
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
3999
|
+
export interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
4000
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
4001
|
+
}
|
|
4002
|
+
export interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
4003
|
+
/**
|
|
4004
|
+
* E-mail address to send notifications from.
|
|
4005
|
+
*/
|
|
4006
|
+
email: string;
|
|
4007
|
+
}
|
|
4008
|
+
export interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
4009
|
+
requestPayload: ImageExportRequest;
|
|
4010
|
+
}
|
|
4011
|
+
/**
|
|
4012
|
+
* Additional information for the automation.
|
|
4013
|
+
*/
|
|
4014
|
+
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
4015
|
+
[key: string]: any;
|
|
4016
|
+
widget?: string;
|
|
4017
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
4018
|
+
}
|
|
4019
|
+
export interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
4020
|
+
requestPayload: RawExportAutomationRequest;
|
|
4021
|
+
}
|
|
4022
|
+
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
4023
|
+
/**
|
|
4024
|
+
* 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.
|
|
4025
|
+
*/
|
|
4026
|
+
cron: string;
|
|
4027
|
+
/**
|
|
4028
|
+
* Human-readable description of the cron expression.
|
|
4029
|
+
*/
|
|
4030
|
+
cronDescription?: string;
|
|
4031
|
+
/**
|
|
4032
|
+
* Timezone in which the schedule is defined.
|
|
4033
|
+
*/
|
|
4034
|
+
timezone: string;
|
|
4035
|
+
/**
|
|
4036
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
4037
|
+
*/
|
|
4038
|
+
firstRun?: string;
|
|
4039
|
+
}
|
|
4040
|
+
export interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
4041
|
+
requestPayload: SlidesExportRequest;
|
|
4042
|
+
}
|
|
4043
|
+
export interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
4044
|
+
requestPayload: TabularExportRequest;
|
|
4045
|
+
}
|
|
4046
|
+
export interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
4047
|
+
requestPayload: VisualExportRequest;
|
|
4048
|
+
}
|
|
4100
4049
|
export interface JsonApiAutomationPatchDocument {
|
|
4101
4050
|
data: JsonApiAutomationPatch;
|
|
4102
4051
|
}
|
|
4052
|
+
export interface JsonApiAutomationPatchRelationships {
|
|
4053
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
4054
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
4055
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
4056
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
4057
|
+
}
|
|
4058
|
+
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
4059
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
4060
|
+
}
|
|
4061
|
+
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
4062
|
+
/**
|
|
4063
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4064
|
+
*/
|
|
4065
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
4066
|
+
}
|
|
4067
|
+
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
4068
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
4069
|
+
}
|
|
4070
|
+
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
4071
|
+
/**
|
|
4072
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4073
|
+
*/
|
|
4074
|
+
data: Array<JsonApiUserLinkage>;
|
|
4075
|
+
}
|
|
4103
4076
|
/**
|
|
4104
4077
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4105
4078
|
*/
|
|
@@ -4223,7 +4196,10 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4223
4196
|
export interface JsonApiColorPaletteOutList {
|
|
4224
4197
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4225
4198
|
links?: ListLinks;
|
|
4226
|
-
meta?:
|
|
4199
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4200
|
+
}
|
|
4201
|
+
export interface JsonApiColorPaletteOutListMeta {
|
|
4202
|
+
page?: PageMetadata;
|
|
4227
4203
|
}
|
|
4228
4204
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4229
4205
|
/**
|
|
@@ -4281,19 +4257,12 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4281
4257
|
* API identifier of an object
|
|
4282
4258
|
*/
|
|
4283
4259
|
id: string;
|
|
4284
|
-
attributes?:
|
|
4260
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4285
4261
|
}
|
|
4286
4262
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4287
4263
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4288
4264
|
};
|
|
4289
4265
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4290
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4291
|
-
lastRotation?: string;
|
|
4292
|
-
/**
|
|
4293
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4294
|
-
*/
|
|
4295
|
-
rotationInterval?: string;
|
|
4296
|
-
}
|
|
4297
4266
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4298
4267
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4299
4268
|
}
|
|
@@ -4309,7 +4278,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4309
4278
|
* API identifier of an object
|
|
4310
4279
|
*/
|
|
4311
4280
|
id: string;
|
|
4312
|
-
attributes?:
|
|
4281
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4313
4282
|
}
|
|
4314
4283
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4315
4284
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4331,12 +4300,19 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4331
4300
|
* API identifier of an object
|
|
4332
4301
|
*/
|
|
4333
4302
|
id: string;
|
|
4334
|
-
attributes?:
|
|
4303
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4335
4304
|
}
|
|
4336
4305
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4337
4306
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4338
4307
|
};
|
|
4339
4308
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
4309
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4310
|
+
lastRotation?: string;
|
|
4311
|
+
/**
|
|
4312
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4313
|
+
*/
|
|
4314
|
+
rotationInterval?: string;
|
|
4315
|
+
}
|
|
4340
4316
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4341
4317
|
data: JsonApiCookieSecurityConfigurationPatch;
|
|
4342
4318
|
}
|
|
@@ -4392,7 +4368,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4392
4368
|
export interface JsonApiCspDirectiveOutList {
|
|
4393
4369
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4394
4370
|
links?: ListLinks;
|
|
4395
|
-
meta?:
|
|
4371
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4396
4372
|
}
|
|
4397
4373
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4398
4374
|
/**
|
|
@@ -4467,7 +4443,7 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4467
4443
|
* API identifier of an object
|
|
4468
4444
|
*/
|
|
4469
4445
|
id: string;
|
|
4470
|
-
meta?:
|
|
4446
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4471
4447
|
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4472
4448
|
}
|
|
4473
4449
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -4491,7 +4467,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4491
4467
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4492
4468
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4493
4469
|
links?: ListLinks;
|
|
4494
|
-
meta?:
|
|
4470
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4495
4471
|
}
|
|
4496
4472
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4497
4473
|
/**
|
|
@@ -4502,7 +4478,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4502
4478
|
* API identifier of an object
|
|
4503
4479
|
*/
|
|
4504
4480
|
id: string;
|
|
4505
|
-
meta?:
|
|
4481
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4506
4482
|
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
4507
4483
|
links?: ObjectLinks;
|
|
4508
4484
|
}
|
|
@@ -4571,7 +4547,7 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4571
4547
|
* API identifier of an object
|
|
4572
4548
|
*/
|
|
4573
4549
|
id: string;
|
|
4574
|
-
attributes?:
|
|
4550
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4575
4551
|
}
|
|
4576
4552
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4577
4553
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4603,7 +4579,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
4603
4579
|
* API identifier of an object
|
|
4604
4580
|
*/
|
|
4605
4581
|
id: string;
|
|
4606
|
-
meta?:
|
|
4582
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4607
4583
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4608
4584
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4609
4585
|
}
|
|
@@ -4637,7 +4613,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4637
4613
|
export interface JsonApiDashboardPluginOutList {
|
|
4638
4614
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4639
4615
|
links?: ListLinks;
|
|
4640
|
-
meta?:
|
|
4616
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4641
4617
|
/**
|
|
4642
4618
|
* Included resources
|
|
4643
4619
|
*/
|
|
@@ -4656,7 +4632,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
4656
4632
|
* API identifier of an object
|
|
4657
4633
|
*/
|
|
4658
4634
|
id: string;
|
|
4659
|
-
meta?:
|
|
4635
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4660
4636
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
4661
4637
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
4662
4638
|
links?: ObjectLinks;
|
|
@@ -4677,12 +4653,22 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4677
4653
|
* API identifier of an object
|
|
4678
4654
|
*/
|
|
4679
4655
|
id: string;
|
|
4680
|
-
attributes?:
|
|
4656
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4681
4657
|
}
|
|
4682
4658
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4683
4659
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4684
4660
|
};
|
|
4685
4661
|
export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
4662
|
+
export interface JsonApiDashboardPluginPatchAttributes {
|
|
4663
|
+
title?: string;
|
|
4664
|
+
description?: string;
|
|
4665
|
+
tags?: Array<string>;
|
|
4666
|
+
areRelationsValid?: boolean;
|
|
4667
|
+
/**
|
|
4668
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4669
|
+
*/
|
|
4670
|
+
content?: object;
|
|
4671
|
+
}
|
|
4686
4672
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
4687
4673
|
data: JsonApiDashboardPluginPatch;
|
|
4688
4674
|
}
|
|
@@ -4698,22 +4684,12 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4698
4684
|
* API identifier of an object
|
|
4699
4685
|
*/
|
|
4700
4686
|
id?: string;
|
|
4701
|
-
attributes?:
|
|
4687
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
4702
4688
|
}
|
|
4703
4689
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4704
4690
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4705
4691
|
};
|
|
4706
4692
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
4707
|
-
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4708
|
-
title?: string;
|
|
4709
|
-
description?: string;
|
|
4710
|
-
tags?: Array<string>;
|
|
4711
|
-
areRelationsValid?: boolean;
|
|
4712
|
-
/**
|
|
4713
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4714
|
-
*/
|
|
4715
|
-
content?: object;
|
|
4716
|
-
}
|
|
4717
4693
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4718
4694
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4719
4695
|
}
|
|
@@ -4780,7 +4756,7 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4780
4756
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4781
4757
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4782
4758
|
links?: ListLinks;
|
|
4783
|
-
meta?:
|
|
4759
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
4784
4760
|
}
|
|
4785
4761
|
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4786
4762
|
/**
|
|
@@ -5036,7 +5012,7 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
5036
5012
|
export interface JsonApiDataSourceOutList {
|
|
5037
5013
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
5038
5014
|
links?: ListLinks;
|
|
5039
|
-
meta?:
|
|
5015
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5040
5016
|
}
|
|
5041
5017
|
export interface JsonApiDataSourceOutWithLinks {
|
|
5042
5018
|
/**
|
|
@@ -5187,7 +5163,7 @@ export interface JsonApiDatasetOut {
|
|
|
5187
5163
|
* API identifier of an object
|
|
5188
5164
|
*/
|
|
5189
5165
|
id: string;
|
|
5190
|
-
meta?:
|
|
5166
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5191
5167
|
attributes: JsonApiDatasetOutAttributes;
|
|
5192
5168
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5193
5169
|
}
|
|
@@ -5298,35 +5274,17 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5298
5274
|
export interface JsonApiDatasetOutList {
|
|
5299
5275
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5300
5276
|
links?: ListLinks;
|
|
5301
|
-
meta?:
|
|
5277
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5302
5278
|
/**
|
|
5303
5279
|
* Included resources
|
|
5304
5280
|
*/
|
|
5305
5281
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
5306
5282
|
}
|
|
5307
|
-
export interface JsonApiDatasetOutMeta {
|
|
5308
|
-
origin?: JsonApiDatasetOutMetaOrigin;
|
|
5309
|
-
}
|
|
5310
|
-
export interface JsonApiDatasetOutMetaOrigin {
|
|
5311
|
-
/**
|
|
5312
|
-
* defines type of the origin of the entity
|
|
5313
|
-
*/
|
|
5314
|
-
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
5315
|
-
/**
|
|
5316
|
-
* defines id of the workspace where the entity comes from
|
|
5317
|
-
*/
|
|
5318
|
-
originId: string;
|
|
5319
|
-
}
|
|
5320
|
-
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
5321
|
-
readonly NATIVE: "NATIVE";
|
|
5322
|
-
readonly PARENT: "PARENT";
|
|
5323
|
-
};
|
|
5324
|
-
export type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
5325
5283
|
export interface JsonApiDatasetOutRelationships {
|
|
5326
|
-
attributes?:
|
|
5327
|
-
facts?:
|
|
5284
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5285
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
5328
5286
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
5329
|
-
references?:
|
|
5287
|
+
references?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
5330
5288
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
5331
5289
|
}
|
|
5332
5290
|
export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
@@ -5335,24 +5293,6 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
5335
5293
|
*/
|
|
5336
5294
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
5337
5295
|
}
|
|
5338
|
-
export interface JsonApiDatasetOutRelationshipsAttributes {
|
|
5339
|
-
/**
|
|
5340
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5341
|
-
*/
|
|
5342
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
5343
|
-
}
|
|
5344
|
-
export interface JsonApiDatasetOutRelationshipsFacts {
|
|
5345
|
-
/**
|
|
5346
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5347
|
-
*/
|
|
5348
|
-
data: Array<JsonApiFactLinkage>;
|
|
5349
|
-
}
|
|
5350
|
-
export interface JsonApiDatasetOutRelationshipsReferences {
|
|
5351
|
-
/**
|
|
5352
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
5353
|
-
*/
|
|
5354
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
5355
|
-
}
|
|
5356
5296
|
export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
5357
5297
|
/**
|
|
5358
5298
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -5368,7 +5308,7 @@ export interface JsonApiDatasetOutWithLinks {
|
|
|
5368
5308
|
* API identifier of an object
|
|
5369
5309
|
*/
|
|
5370
5310
|
id: string;
|
|
5371
|
-
meta?:
|
|
5311
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5372
5312
|
attributes: JsonApiDatasetOutAttributes;
|
|
5373
5313
|
relationships?: JsonApiDatasetOutRelationships;
|
|
5374
5314
|
links?: ObjectLinks;
|
|
@@ -5409,7 +5349,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5409
5349
|
export interface JsonApiEntitlementOutList {
|
|
5410
5350
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5411
5351
|
links?: ListLinks;
|
|
5412
|
-
meta?:
|
|
5352
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5413
5353
|
}
|
|
5414
5354
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5415
5355
|
/**
|
|
@@ -5439,8 +5379,8 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5439
5379
|
* API identifier of an object
|
|
5440
5380
|
*/
|
|
5441
5381
|
id: string;
|
|
5442
|
-
attributes?:
|
|
5443
|
-
relationships?:
|
|
5382
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5383
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5444
5384
|
}
|
|
5445
5385
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5446
5386
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5472,7 +5412,7 @@ export interface JsonApiExportDefinitionOut {
|
|
|
5472
5412
|
* API identifier of an object
|
|
5473
5413
|
*/
|
|
5474
5414
|
id: string;
|
|
5475
|
-
meta?:
|
|
5415
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5476
5416
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5477
5417
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5478
5418
|
}
|
|
@@ -5512,7 +5452,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5512
5452
|
export interface JsonApiExportDefinitionOutList {
|
|
5513
5453
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5514
5454
|
links?: ListLinks;
|
|
5515
|
-
meta?:
|
|
5455
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5516
5456
|
/**
|
|
5517
5457
|
* Included resources
|
|
5518
5458
|
*/
|
|
@@ -5520,14 +5460,11 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
5520
5460
|
}
|
|
5521
5461
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5522
5462
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5523
|
-
analyticalDashboard?:
|
|
5463
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5524
5464
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5525
5465
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5526
5466
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5527
5467
|
}
|
|
5528
|
-
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
5529
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
5530
|
-
}
|
|
5531
5468
|
export interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
5532
5469
|
data: JsonApiAutomationLinkage | null;
|
|
5533
5470
|
}
|
|
@@ -5543,7 +5480,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
|
|
|
5543
5480
|
* API identifier of an object
|
|
5544
5481
|
*/
|
|
5545
5482
|
id: string;
|
|
5546
|
-
meta?:
|
|
5483
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5547
5484
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
5548
5485
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
5549
5486
|
links?: ObjectLinks;
|
|
@@ -5564,16 +5501,27 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5564
5501
|
* API identifier of an object
|
|
5565
5502
|
*/
|
|
5566
5503
|
id: string;
|
|
5567
|
-
attributes?:
|
|
5568
|
-
relationships?:
|
|
5504
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5505
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5569
5506
|
}
|
|
5570
5507
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5571
5508
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5572
5509
|
};
|
|
5573
5510
|
export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
5511
|
+
export interface JsonApiExportDefinitionPatchAttributes {
|
|
5512
|
+
title?: string;
|
|
5513
|
+
description?: string;
|
|
5514
|
+
tags?: Array<string>;
|
|
5515
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5516
|
+
areRelationsValid?: boolean;
|
|
5517
|
+
}
|
|
5574
5518
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
5575
5519
|
data: JsonApiExportDefinitionPatch;
|
|
5576
5520
|
}
|
|
5521
|
+
export interface JsonApiExportDefinitionPatchRelationships {
|
|
5522
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5523
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5524
|
+
}
|
|
5577
5525
|
/**
|
|
5578
5526
|
* JSON:API representation of exportDefinition entity.
|
|
5579
5527
|
*/
|
|
@@ -5586,27 +5534,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5586
5534
|
* API identifier of an object
|
|
5587
5535
|
*/
|
|
5588
5536
|
id?: string;
|
|
5589
|
-
attributes?:
|
|
5590
|
-
relationships?:
|
|
5537
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
5538
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
5591
5539
|
}
|
|
5592
5540
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5593
5541
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5594
5542
|
};
|
|
5595
5543
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
5596
|
-
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
5597
|
-
title?: string;
|
|
5598
|
-
description?: string;
|
|
5599
|
-
tags?: Array<string>;
|
|
5600
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5601
|
-
areRelationsValid?: boolean;
|
|
5602
|
-
}
|
|
5603
5544
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5604
5545
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5605
5546
|
}
|
|
5606
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5607
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5608
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5609
|
-
}
|
|
5610
5547
|
/**
|
|
5611
5548
|
* JSON:API representation of exportTemplate entity.
|
|
5612
5549
|
*/
|
|
@@ -5697,7 +5634,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5697
5634
|
export interface JsonApiExportTemplateOutList {
|
|
5698
5635
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5699
5636
|
links?: ListLinks;
|
|
5700
|
-
meta?:
|
|
5637
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5701
5638
|
}
|
|
5702
5639
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5703
5640
|
/**
|
|
@@ -5788,7 +5725,7 @@ export interface JsonApiFactOut {
|
|
|
5788
5725
|
* API identifier of an object
|
|
5789
5726
|
*/
|
|
5790
5727
|
id: string;
|
|
5791
|
-
meta?:
|
|
5728
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5792
5729
|
attributes?: JsonApiFactOutAttributes;
|
|
5793
5730
|
relationships?: JsonApiFactOutRelationships;
|
|
5794
5731
|
}
|
|
@@ -5829,17 +5766,14 @@ export interface JsonApiFactOutDocument {
|
|
|
5829
5766
|
export interface JsonApiFactOutList {
|
|
5830
5767
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5831
5768
|
links?: ListLinks;
|
|
5832
|
-
meta?:
|
|
5769
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5833
5770
|
/**
|
|
5834
5771
|
* Included resources
|
|
5835
5772
|
*/
|
|
5836
5773
|
included?: Array<JsonApiDatasetOutWithLinks>;
|
|
5837
5774
|
}
|
|
5838
5775
|
export interface JsonApiFactOutRelationships {
|
|
5839
|
-
dataset?:
|
|
5840
|
-
}
|
|
5841
|
-
export interface JsonApiFactOutRelationshipsDataset {
|
|
5842
|
-
data: JsonApiDatasetLinkage | null;
|
|
5776
|
+
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
5843
5777
|
}
|
|
5844
5778
|
export interface JsonApiFactOutWithLinks {
|
|
5845
5779
|
/**
|
|
@@ -5850,7 +5784,7 @@ export interface JsonApiFactOutWithLinks {
|
|
|
5850
5784
|
* API identifier of an object
|
|
5851
5785
|
*/
|
|
5852
5786
|
id: string;
|
|
5853
|
-
meta?:
|
|
5787
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5854
5788
|
attributes?: JsonApiFactOutAttributes;
|
|
5855
5789
|
relationships?: JsonApiFactOutRelationships;
|
|
5856
5790
|
links?: ObjectLinks;
|
|
@@ -5903,7 +5837,7 @@ export interface JsonApiFilterContextOut {
|
|
|
5903
5837
|
* API identifier of an object
|
|
5904
5838
|
*/
|
|
5905
5839
|
id: string;
|
|
5906
|
-
meta?:
|
|
5840
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5907
5841
|
attributes: JsonApiFilterContextOutAttributes;
|
|
5908
5842
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5909
5843
|
}
|
|
@@ -5939,15 +5873,15 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5939
5873
|
export interface JsonApiFilterContextOutList {
|
|
5940
5874
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5941
5875
|
links?: ListLinks;
|
|
5942
|
-
meta?:
|
|
5876
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5943
5877
|
/**
|
|
5944
5878
|
* Included resources
|
|
5945
5879
|
*/
|
|
5946
5880
|
included?: Array<JsonApiFilterContextOutIncludes>;
|
|
5947
5881
|
}
|
|
5948
5882
|
export interface JsonApiFilterContextOutRelationships {
|
|
5949
|
-
attributes?:
|
|
5950
|
-
datasets?:
|
|
5883
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
5884
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
5951
5885
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
5952
5886
|
}
|
|
5953
5887
|
export interface JsonApiFilterContextOutWithLinks {
|
|
@@ -5959,7 +5893,7 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5959
5893
|
* API identifier of an object
|
|
5960
5894
|
*/
|
|
5961
5895
|
id: string;
|
|
5962
|
-
meta?:
|
|
5896
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5963
5897
|
attributes: JsonApiFilterContextOutAttributes;
|
|
5964
5898
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5965
5899
|
links?: ObjectLinks;
|
|
@@ -6023,7 +5957,7 @@ export interface JsonApiFilterViewIn {
|
|
|
6023
5957
|
*/
|
|
6024
5958
|
id: string;
|
|
6025
5959
|
attributes: JsonApiFilterViewOutAttributes;
|
|
6026
|
-
relationships?:
|
|
5960
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6027
5961
|
}
|
|
6028
5962
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
6029
5963
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6045,7 +5979,7 @@ export interface JsonApiFilterViewOut {
|
|
|
6045
5979
|
*/
|
|
6046
5980
|
id: string;
|
|
6047
5981
|
attributes: JsonApiFilterViewOutAttributes;
|
|
6048
|
-
relationships?:
|
|
5982
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6049
5983
|
}
|
|
6050
5984
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
6051
5985
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6083,19 +6017,12 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
6083
6017
|
export interface JsonApiFilterViewOutList {
|
|
6084
6018
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
6085
6019
|
links?: ListLinks;
|
|
6086
|
-
meta?:
|
|
6020
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6087
6021
|
/**
|
|
6088
6022
|
* Included resources
|
|
6089
6023
|
*/
|
|
6090
6024
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
6091
6025
|
}
|
|
6092
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
6093
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6094
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
6095
|
-
}
|
|
6096
|
-
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
6097
|
-
data: JsonApiUserLinkage | null;
|
|
6098
|
-
}
|
|
6099
6026
|
export interface JsonApiFilterViewOutWithLinks {
|
|
6100
6027
|
/**
|
|
6101
6028
|
* Object type
|
|
@@ -6106,7 +6033,7 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
6106
6033
|
*/
|
|
6107
6034
|
id: string;
|
|
6108
6035
|
attributes: JsonApiFilterViewOutAttributes;
|
|
6109
|
-
relationships?:
|
|
6036
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6110
6037
|
links?: ObjectLinks;
|
|
6111
6038
|
}
|
|
6112
6039
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6126,7 +6053,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6126
6053
|
*/
|
|
6127
6054
|
id: string;
|
|
6128
6055
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6129
|
-
relationships?:
|
|
6056
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
6130
6057
|
}
|
|
6131
6058
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6132
6059
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6149,6 +6076,10 @@ export interface JsonApiFilterViewPatchAttributes {
|
|
|
6149
6076
|
export interface JsonApiFilterViewPatchDocument {
|
|
6150
6077
|
data: JsonApiFilterViewPatch;
|
|
6151
6078
|
}
|
|
6079
|
+
export interface JsonApiFilterViewPatchRelationships {
|
|
6080
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6081
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
6082
|
+
}
|
|
6152
6083
|
/**
|
|
6153
6084
|
* JSON:API representation of identityProvider entity.
|
|
6154
6085
|
*/
|
|
@@ -6315,7 +6246,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6315
6246
|
export interface JsonApiIdentityProviderOutList {
|
|
6316
6247
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6317
6248
|
links?: ListLinks;
|
|
6318
|
-
meta?:
|
|
6249
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6319
6250
|
}
|
|
6320
6251
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6321
6252
|
/**
|
|
@@ -6406,7 +6337,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6406
6337
|
export interface JsonApiJwkOutList {
|
|
6407
6338
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6408
6339
|
links?: ListLinks;
|
|
6409
|
-
meta?:
|
|
6340
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6410
6341
|
}
|
|
6411
6342
|
export interface JsonApiJwkOutWithLinks {
|
|
6412
6343
|
/**
|
|
@@ -6468,7 +6399,7 @@ export interface JsonApiLabelOut {
|
|
|
6468
6399
|
* API identifier of an object
|
|
6469
6400
|
*/
|
|
6470
6401
|
id: string;
|
|
6471
|
-
meta?:
|
|
6402
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6472
6403
|
attributes?: JsonApiLabelOutAttributes;
|
|
6473
6404
|
relationships?: JsonApiLabelOutRelationships;
|
|
6474
6405
|
}
|
|
@@ -6520,7 +6451,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6520
6451
|
export interface JsonApiLabelOutList {
|
|
6521
6452
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6522
6453
|
links?: ListLinks;
|
|
6523
|
-
meta?:
|
|
6454
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6524
6455
|
/**
|
|
6525
6456
|
* Included resources
|
|
6526
6457
|
*/
|
|
@@ -6541,7 +6472,7 @@ export interface JsonApiLabelOutWithLinks {
|
|
|
6541
6472
|
* API identifier of an object
|
|
6542
6473
|
*/
|
|
6543
6474
|
id: string;
|
|
6544
|
-
meta?:
|
|
6475
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6545
6476
|
attributes?: JsonApiLabelOutAttributes;
|
|
6546
6477
|
relationships?: JsonApiLabelOutRelationships;
|
|
6547
6478
|
links?: ObjectLinks;
|
|
@@ -6657,7 +6588,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6657
6588
|
export interface JsonApiLlmEndpointOutList {
|
|
6658
6589
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6659
6590
|
links?: ListLinks;
|
|
6660
|
-
meta?:
|
|
6591
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6661
6592
|
}
|
|
6662
6593
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6663
6594
|
/**
|
|
@@ -6739,12 +6670,20 @@ export interface JsonApiMetricIn {
|
|
|
6739
6670
|
* API identifier of an object
|
|
6740
6671
|
*/
|
|
6741
6672
|
id: string;
|
|
6742
|
-
attributes:
|
|
6673
|
+
attributes: JsonApiMetricInAttributes;
|
|
6743
6674
|
}
|
|
6744
6675
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6745
6676
|
readonly METRIC: "metric";
|
|
6746
6677
|
};
|
|
6747
6678
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6679
|
+
export interface JsonApiMetricInAttributes {
|
|
6680
|
+
title?: string;
|
|
6681
|
+
description?: string;
|
|
6682
|
+
tags?: Array<string>;
|
|
6683
|
+
areRelationsValid?: boolean;
|
|
6684
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6685
|
+
isHidden?: boolean;
|
|
6686
|
+
}
|
|
6748
6687
|
export interface JsonApiMetricInDocument {
|
|
6749
6688
|
data: JsonApiMetricIn;
|
|
6750
6689
|
}
|
|
@@ -6771,7 +6710,7 @@ export interface JsonApiMetricOut {
|
|
|
6771
6710
|
* API identifier of an object
|
|
6772
6711
|
*/
|
|
6773
6712
|
id: string;
|
|
6774
|
-
meta?:
|
|
6713
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6775
6714
|
attributes: JsonApiMetricOutAttributes;
|
|
6776
6715
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6777
6716
|
}
|
|
@@ -6811,7 +6750,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6811
6750
|
export interface JsonApiMetricOutList {
|
|
6812
6751
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6813
6752
|
links?: ListLinks;
|
|
6814
|
-
meta?:
|
|
6753
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6815
6754
|
/**
|
|
6816
6755
|
* Included resources
|
|
6817
6756
|
*/
|
|
@@ -6826,7 +6765,7 @@ export interface JsonApiMetricOutWithLinks {
|
|
|
6826
6765
|
* API identifier of an object
|
|
6827
6766
|
*/
|
|
6828
6767
|
id: string;
|
|
6829
|
-
meta?:
|
|
6768
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6830
6769
|
attributes: JsonApiMetricOutAttributes;
|
|
6831
6770
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
6832
6771
|
links?: ObjectLinks;
|
|
@@ -6876,20 +6815,12 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6876
6815
|
* API identifier of an object
|
|
6877
6816
|
*/
|
|
6878
6817
|
id?: string;
|
|
6879
|
-
attributes:
|
|
6818
|
+
attributes: JsonApiMetricInAttributes;
|
|
6880
6819
|
}
|
|
6881
6820
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
6882
6821
|
readonly METRIC: "metric";
|
|
6883
6822
|
};
|
|
6884
6823
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
6885
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
6886
|
-
title?: string;
|
|
6887
|
-
description?: string;
|
|
6888
|
-
tags?: Array<string>;
|
|
6889
|
-
areRelationsValid?: boolean;
|
|
6890
|
-
content: JsonApiMetricOutAttributesContent;
|
|
6891
|
-
isHidden?: boolean;
|
|
6892
|
-
}
|
|
6893
6824
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6894
6825
|
data: JsonApiMetricPostOptionalId;
|
|
6895
6826
|
}
|
|
@@ -6943,7 +6874,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
6943
6874
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
6944
6875
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
6945
6876
|
links?: ListLinks;
|
|
6946
|
-
meta?:
|
|
6877
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6947
6878
|
}
|
|
6948
6879
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
6949
6880
|
/**
|
|
@@ -7076,7 +7007,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
7076
7007
|
export interface JsonApiNotificationChannelOutList {
|
|
7077
7008
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
7078
7009
|
links?: ListLinks;
|
|
7079
|
-
meta?:
|
|
7010
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7080
7011
|
}
|
|
7081
7012
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
7082
7013
|
/**
|
|
@@ -7190,57 +7121,16 @@ export interface JsonApiOrganizationIn {
|
|
|
7190
7121
|
* API identifier of an object
|
|
7191
7122
|
*/
|
|
7192
7123
|
id: string;
|
|
7193
|
-
attributes?:
|
|
7194
|
-
relationships?:
|
|
7124
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7125
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7195
7126
|
}
|
|
7196
7127
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7197
7128
|
readonly ORGANIZATION: "organization";
|
|
7198
7129
|
};
|
|
7199
7130
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7200
|
-
export interface JsonApiOrganizationInAttributes {
|
|
7201
|
-
name?: string | null;
|
|
7202
|
-
hostname?: string;
|
|
7203
|
-
allowedOrigins?: Array<string>;
|
|
7204
|
-
oauthIssuerLocation?: string;
|
|
7205
|
-
oauthClientId?: string;
|
|
7206
|
-
oauthClientSecret?: string;
|
|
7207
|
-
/**
|
|
7208
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7209
|
-
* @deprecated
|
|
7210
|
-
*/
|
|
7211
|
-
earlyAccess?: string | null;
|
|
7212
|
-
/**
|
|
7213
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7214
|
-
*/
|
|
7215
|
-
earlyAccessValues?: Array<string> | null;
|
|
7216
|
-
/**
|
|
7217
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
7218
|
-
*/
|
|
7219
|
-
oauthIssuerId?: string;
|
|
7220
|
-
/**
|
|
7221
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
7222
|
-
*/
|
|
7223
|
-
oauthSubjectIdClaim?: string;
|
|
7224
|
-
/**
|
|
7225
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
7226
|
-
*/
|
|
7227
|
-
oauthCustomAuthAttributes?: {
|
|
7228
|
-
[key: string]: string;
|
|
7229
|
-
};
|
|
7230
|
-
/**
|
|
7231
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
7232
|
-
*/
|
|
7233
|
-
oauthCustomScopes?: Array<string> | null;
|
|
7234
|
-
}
|
|
7235
7131
|
export interface JsonApiOrganizationInDocument {
|
|
7236
7132
|
data: JsonApiOrganizationIn;
|
|
7237
7133
|
}
|
|
7238
|
-
export interface JsonApiOrganizationInRelationships {
|
|
7239
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7240
|
-
}
|
|
7241
|
-
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7242
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7243
|
-
}
|
|
7244
7134
|
/**
|
|
7245
7135
|
* JSON:API representation of organization entity.
|
|
7246
7136
|
*/
|
|
@@ -7265,8 +7155,6 @@ export interface JsonApiOrganizationOutAttributes {
|
|
|
7265
7155
|
name?: string | null;
|
|
7266
7156
|
hostname?: string;
|
|
7267
7157
|
allowedOrigins?: Array<string>;
|
|
7268
|
-
oauthIssuerLocation?: string;
|
|
7269
|
-
oauthClientId?: string;
|
|
7270
7158
|
/**
|
|
7271
7159
|
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7272
7160
|
* @deprecated
|
|
@@ -7276,25 +7164,7 @@ export interface JsonApiOrganizationOutAttributes {
|
|
|
7276
7164
|
* The early access feature identifiers. They are used to enable experimental features.
|
|
7277
7165
|
*/
|
|
7278
7166
|
earlyAccessValues?: Array<string> | null;
|
|
7279
|
-
/**
|
|
7280
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
7281
|
-
*/
|
|
7282
|
-
oauthIssuerId?: string;
|
|
7283
7167
|
cacheSettings?: JsonApiOrganizationOutAttributesCacheSettings;
|
|
7284
|
-
/**
|
|
7285
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
7286
|
-
*/
|
|
7287
|
-
oauthSubjectIdClaim?: string;
|
|
7288
|
-
/**
|
|
7289
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
7290
|
-
*/
|
|
7291
|
-
oauthCustomAuthAttributes?: {
|
|
7292
|
-
[key: string]: string;
|
|
7293
|
-
};
|
|
7294
|
-
/**
|
|
7295
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
7296
|
-
*/
|
|
7297
|
-
oauthCustomScopes?: Array<string> | null;
|
|
7298
7168
|
}
|
|
7299
7169
|
export interface JsonApiOrganizationOutAttributesCacheSettings {
|
|
7300
7170
|
extraCacheBudget?: number;
|
|
@@ -7329,9 +7199,15 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7329
7199
|
};
|
|
7330
7200
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7331
7201
|
export interface JsonApiOrganizationOutRelationships {
|
|
7332
|
-
bootstrapUser?:
|
|
7333
|
-
bootstrapUserGroup?:
|
|
7334
|
-
identityProvider?:
|
|
7202
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7203
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7204
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7205
|
+
}
|
|
7206
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7207
|
+
data: JsonApiUserLinkage | null;
|
|
7208
|
+
}
|
|
7209
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7210
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7335
7211
|
}
|
|
7336
7212
|
/**
|
|
7337
7213
|
* JSON:API representation of patching organization entity.
|
|
@@ -7345,16 +7221,36 @@ export interface JsonApiOrganizationPatch {
|
|
|
7345
7221
|
* API identifier of an object
|
|
7346
7222
|
*/
|
|
7347
7223
|
id: string;
|
|
7348
|
-
attributes?:
|
|
7349
|
-
relationships?:
|
|
7224
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7225
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7350
7226
|
}
|
|
7351
7227
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7352
7228
|
readonly ORGANIZATION: "organization";
|
|
7353
7229
|
};
|
|
7354
7230
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
7231
|
+
export interface JsonApiOrganizationPatchAttributes {
|
|
7232
|
+
name?: string | null;
|
|
7233
|
+
hostname?: string;
|
|
7234
|
+
allowedOrigins?: Array<string>;
|
|
7235
|
+
/**
|
|
7236
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7237
|
+
* @deprecated
|
|
7238
|
+
*/
|
|
7239
|
+
earlyAccess?: string | null;
|
|
7240
|
+
/**
|
|
7241
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7242
|
+
*/
|
|
7243
|
+
earlyAccessValues?: Array<string> | null;
|
|
7244
|
+
}
|
|
7355
7245
|
export interface JsonApiOrganizationPatchDocument {
|
|
7356
7246
|
data: JsonApiOrganizationPatch;
|
|
7357
7247
|
}
|
|
7248
|
+
export interface JsonApiOrganizationPatchRelationships {
|
|
7249
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7250
|
+
}
|
|
7251
|
+
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
7252
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7253
|
+
}
|
|
7358
7254
|
/**
|
|
7359
7255
|
* JSON:API representation of organizationSetting entity.
|
|
7360
7256
|
*/
|
|
@@ -7367,7 +7263,7 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7367
7263
|
* API identifier of an object
|
|
7368
7264
|
*/
|
|
7369
7265
|
id: string;
|
|
7370
|
-
attributes?:
|
|
7266
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
7371
7267
|
}
|
|
7372
7268
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7373
7269
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7388,12 +7284,54 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7388
7284
|
* API identifier of an object
|
|
7389
7285
|
*/
|
|
7390
7286
|
id: string;
|
|
7391
|
-
attributes?:
|
|
7287
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
7392
7288
|
}
|
|
7393
7289
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7394
7290
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7395
7291
|
};
|
|
7396
7292
|
export type JsonApiOrganizationSettingOutTypeEnum = (typeof JsonApiOrganizationSettingOutTypeEnum)[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
7293
|
+
export interface JsonApiOrganizationSettingOutAttributes {
|
|
7294
|
+
/**
|
|
7295
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7296
|
+
*/
|
|
7297
|
+
content?: object;
|
|
7298
|
+
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
7299
|
+
}
|
|
7300
|
+
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
7301
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
7302
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7303
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7304
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7305
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7306
|
+
readonly LOCALE: "LOCALE";
|
|
7307
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7308
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7309
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7310
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7311
|
+
readonly WEEK_START: "WEEK_START";
|
|
7312
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7313
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7314
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7315
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7316
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7317
|
+
readonly ALERT: "ALERT";
|
|
7318
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
7319
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7320
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7321
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7322
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7323
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7324
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7325
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7326
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7327
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7328
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7329
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7330
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7331
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7332
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7333
|
+
};
|
|
7334
|
+
export type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
7397
7335
|
export interface JsonApiOrganizationSettingOutDocument {
|
|
7398
7336
|
data: JsonApiOrganizationSettingOut;
|
|
7399
7337
|
links?: ObjectLinks;
|
|
@@ -7404,7 +7342,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7404
7342
|
export interface JsonApiOrganizationSettingOutList {
|
|
7405
7343
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7406
7344
|
links?: ListLinks;
|
|
7407
|
-
meta?:
|
|
7345
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7408
7346
|
}
|
|
7409
7347
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7410
7348
|
/**
|
|
@@ -7415,7 +7353,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7415
7353
|
* API identifier of an object
|
|
7416
7354
|
*/
|
|
7417
7355
|
id: string;
|
|
7418
|
-
attributes?:
|
|
7356
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
7419
7357
|
links?: ObjectLinks;
|
|
7420
7358
|
}
|
|
7421
7359
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7434,7 +7372,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7434
7372
|
* API identifier of an object
|
|
7435
7373
|
*/
|
|
7436
7374
|
id: string;
|
|
7437
|
-
attributes?:
|
|
7375
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
7438
7376
|
}
|
|
7439
7377
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7440
7378
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7492,7 +7430,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7492
7430
|
export interface JsonApiThemeOutList {
|
|
7493
7431
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7494
7432
|
links?: ListLinks;
|
|
7495
|
-
meta?:
|
|
7433
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7496
7434
|
}
|
|
7497
7435
|
export interface JsonApiThemeOutWithLinks {
|
|
7498
7436
|
/**
|
|
@@ -7544,7 +7482,7 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7544
7482
|
*/
|
|
7545
7483
|
id: string;
|
|
7546
7484
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7547
|
-
relationships?:
|
|
7485
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7548
7486
|
}
|
|
7549
7487
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7550
7488
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7565,7 +7503,7 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7565
7503
|
* API identifier of an object
|
|
7566
7504
|
*/
|
|
7567
7505
|
id: string;
|
|
7568
|
-
meta?:
|
|
7506
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7569
7507
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7570
7508
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7571
7509
|
}
|
|
@@ -7598,23 +7536,20 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7598
7536
|
export interface JsonApiUserDataFilterOutList {
|
|
7599
7537
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7600
7538
|
links?: ListLinks;
|
|
7601
|
-
meta?:
|
|
7539
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7602
7540
|
/**
|
|
7603
7541
|
* Included resources
|
|
7604
7542
|
*/
|
|
7605
7543
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7606
7544
|
}
|
|
7607
7545
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7608
|
-
user?:
|
|
7609
|
-
userGroup?:
|
|
7610
|
-
facts?:
|
|
7611
|
-
attributes?:
|
|
7546
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7547
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7548
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7549
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7612
7550
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
7613
7551
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
7614
|
-
datasets?:
|
|
7615
|
-
}
|
|
7616
|
-
export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
7617
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7552
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
7618
7553
|
}
|
|
7619
7554
|
export interface JsonApiUserDataFilterOutWithLinks {
|
|
7620
7555
|
/**
|
|
@@ -7625,7 +7560,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7625
7560
|
* API identifier of an object
|
|
7626
7561
|
*/
|
|
7627
7562
|
id: string;
|
|
7628
|
-
meta?:
|
|
7563
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7629
7564
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7630
7565
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7631
7566
|
links?: ObjectLinks;
|
|
@@ -7647,7 +7582,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7647
7582
|
*/
|
|
7648
7583
|
id: string;
|
|
7649
7584
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7650
|
-
relationships?:
|
|
7585
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7651
7586
|
}
|
|
7652
7587
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7653
7588
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7663,6 +7598,10 @@ export interface JsonApiUserDataFilterPatchAttributes {
|
|
|
7663
7598
|
export interface JsonApiUserDataFilterPatchDocument {
|
|
7664
7599
|
data: JsonApiUserDataFilterPatch;
|
|
7665
7600
|
}
|
|
7601
|
+
export interface JsonApiUserDataFilterPatchRelationships {
|
|
7602
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7603
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7604
|
+
}
|
|
7666
7605
|
/**
|
|
7667
7606
|
* JSON:API representation of userDataFilter entity.
|
|
7668
7607
|
*/
|
|
@@ -7676,7 +7615,7 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7676
7615
|
*/
|
|
7677
7616
|
id?: string;
|
|
7678
7617
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
7679
|
-
relationships?:
|
|
7618
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
7680
7619
|
}
|
|
7681
7620
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7682
7621
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7685,10 +7624,6 @@ export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDat
|
|
|
7685
7624
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7686
7625
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7687
7626
|
}
|
|
7688
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7689
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
7690
|
-
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
7691
|
-
}
|
|
7692
7627
|
/**
|
|
7693
7628
|
* JSON:API representation of userGroup entity.
|
|
7694
7629
|
*/
|
|
@@ -7758,14 +7693,20 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7758
7693
|
export interface JsonApiUserGroupOutList {
|
|
7759
7694
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7760
7695
|
links?: ListLinks;
|
|
7761
|
-
meta?:
|
|
7696
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7762
7697
|
/**
|
|
7763
7698
|
* Included resources
|
|
7764
7699
|
*/
|
|
7765
7700
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7766
7701
|
}
|
|
7767
7702
|
export interface JsonApiUserGroupOutRelationships {
|
|
7768
|
-
parents?:
|
|
7703
|
+
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
7704
|
+
}
|
|
7705
|
+
export interface JsonApiUserGroupOutRelationshipsParents {
|
|
7706
|
+
/**
|
|
7707
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7708
|
+
*/
|
|
7709
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
7769
7710
|
}
|
|
7770
7711
|
export interface JsonApiUserGroupOutWithLinks {
|
|
7771
7712
|
/**
|
|
@@ -7850,7 +7791,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
7850
7791
|
export interface JsonApiUserIdentifierOutList {
|
|
7851
7792
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7852
7793
|
links?: ListLinks;
|
|
7853
|
-
meta?:
|
|
7794
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7854
7795
|
}
|
|
7855
7796
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
7856
7797
|
/**
|
|
@@ -7940,20 +7881,14 @@ export interface JsonApiUserOutDocument {
|
|
|
7940
7881
|
export interface JsonApiUserOutList {
|
|
7941
7882
|
data: Array<JsonApiUserOutWithLinks>;
|
|
7942
7883
|
links?: ListLinks;
|
|
7943
|
-
meta?:
|
|
7884
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7944
7885
|
/**
|
|
7945
7886
|
* Included resources
|
|
7946
7887
|
*/
|
|
7947
7888
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7948
7889
|
}
|
|
7949
7890
|
export interface JsonApiUserOutRelationships {
|
|
7950
|
-
userGroups?:
|
|
7951
|
-
}
|
|
7952
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
7953
|
-
/**
|
|
7954
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7955
|
-
*/
|
|
7956
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
7891
|
+
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
7957
7892
|
}
|
|
7958
7893
|
export interface JsonApiUserOutWithLinks {
|
|
7959
7894
|
/**
|
|
@@ -8006,7 +7941,7 @@ export interface JsonApiUserSettingIn {
|
|
|
8006
7941
|
* API identifier of an object
|
|
8007
7942
|
*/
|
|
8008
7943
|
id: string;
|
|
8009
|
-
attributes?:
|
|
7944
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8010
7945
|
}
|
|
8011
7946
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
8012
7947
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8027,7 +7962,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8027
7962
|
* API identifier of an object
|
|
8028
7963
|
*/
|
|
8029
7964
|
id: string;
|
|
8030
|
-
attributes?:
|
|
7965
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8031
7966
|
}
|
|
8032
7967
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
8033
7968
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8043,7 +7978,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
8043
7978
|
export interface JsonApiUserSettingOutList {
|
|
8044
7979
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
8045
7980
|
links?: ListLinks;
|
|
8046
|
-
meta?:
|
|
7981
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8047
7982
|
}
|
|
8048
7983
|
export interface JsonApiUserSettingOutWithLinks {
|
|
8049
7984
|
/**
|
|
@@ -8054,7 +7989,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8054
7989
|
* API identifier of an object
|
|
8055
7990
|
*/
|
|
8056
7991
|
id: string;
|
|
8057
|
-
attributes?:
|
|
7992
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8058
7993
|
links?: ObjectLinks;
|
|
8059
7994
|
}
|
|
8060
7995
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -8073,12 +8008,23 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
8073
8008
|
* API identifier of an object
|
|
8074
8009
|
*/
|
|
8075
8010
|
id: string;
|
|
8076
|
-
attributes:
|
|
8011
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8077
8012
|
}
|
|
8078
8013
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
8079
8014
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8080
8015
|
};
|
|
8081
8016
|
export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
|
|
8017
|
+
export interface JsonApiVisualizationObjectInAttributes {
|
|
8018
|
+
title?: string;
|
|
8019
|
+
description?: string;
|
|
8020
|
+
tags?: Array<string>;
|
|
8021
|
+
areRelationsValid?: boolean;
|
|
8022
|
+
/**
|
|
8023
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8024
|
+
*/
|
|
8025
|
+
content: object;
|
|
8026
|
+
isHidden?: boolean;
|
|
8027
|
+
}
|
|
8082
8028
|
export interface JsonApiVisualizationObjectInDocument {
|
|
8083
8029
|
data: JsonApiVisualizationObjectIn;
|
|
8084
8030
|
}
|
|
@@ -8105,7 +8051,7 @@ export interface JsonApiVisualizationObjectOut {
|
|
|
8105
8051
|
* API identifier of an object
|
|
8106
8052
|
*/
|
|
8107
8053
|
id: string;
|
|
8108
|
-
meta?:
|
|
8054
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8109
8055
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
8110
8056
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8111
8057
|
}
|
|
@@ -8140,24 +8086,60 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8140
8086
|
export interface JsonApiVisualizationObjectOutList {
|
|
8141
8087
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8142
8088
|
links?: ListLinks;
|
|
8143
|
-
meta?:
|
|
8089
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8144
8090
|
/**
|
|
8145
8091
|
* Included resources
|
|
8146
8092
|
*/
|
|
8147
8093
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
8148
8094
|
}
|
|
8095
|
+
export interface JsonApiVisualizationObjectOutMeta {
|
|
8096
|
+
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
8097
|
+
}
|
|
8098
|
+
export interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
8099
|
+
/**
|
|
8100
|
+
* defines type of the origin of the entity
|
|
8101
|
+
*/
|
|
8102
|
+
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
8103
|
+
/**
|
|
8104
|
+
* defines id of the workspace where the entity comes from
|
|
8105
|
+
*/
|
|
8106
|
+
originId: string;
|
|
8107
|
+
}
|
|
8108
|
+
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
8109
|
+
readonly NATIVE: "NATIVE";
|
|
8110
|
+
readonly PARENT: "PARENT";
|
|
8111
|
+
};
|
|
8112
|
+
export type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
8149
8113
|
export interface JsonApiVisualizationObjectOutRelationships {
|
|
8150
8114
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8151
8115
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8152
|
-
facts?:
|
|
8153
|
-
attributes?:
|
|
8116
|
+
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
8117
|
+
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
8154
8118
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
8155
8119
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
8156
|
-
datasets?:
|
|
8120
|
+
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
8121
|
+
}
|
|
8122
|
+
export interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
8123
|
+
/**
|
|
8124
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8125
|
+
*/
|
|
8126
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
8157
8127
|
}
|
|
8158
8128
|
export interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
8159
8129
|
data: JsonApiUserIdentifierLinkage | null;
|
|
8160
8130
|
}
|
|
8131
|
+
export interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
8132
|
+
/**
|
|
8133
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8134
|
+
*/
|
|
8135
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
8136
|
+
}
|
|
8137
|
+
export interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
8138
|
+
/**
|
|
8139
|
+
* 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
|
+
*/
|
|
8141
|
+
data: Array<JsonApiFactLinkage>;
|
|
8142
|
+
}
|
|
8161
8143
|
export interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
8162
8144
|
/**
|
|
8163
8145
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -8179,7 +8161,7 @@ export interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
8179
8161
|
* API identifier of an object
|
|
8180
8162
|
*/
|
|
8181
8163
|
id: string;
|
|
8182
|
-
meta?:
|
|
8164
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8183
8165
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
8184
8166
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
8185
8167
|
links?: ObjectLinks;
|
|
@@ -8232,23 +8214,12 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8232
8214
|
* API identifier of an object
|
|
8233
8215
|
*/
|
|
8234
8216
|
id?: string;
|
|
8235
|
-
attributes:
|
|
8217
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8236
8218
|
}
|
|
8237
8219
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8238
8220
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8239
8221
|
};
|
|
8240
8222
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
|
|
8241
|
-
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
8242
|
-
title?: string;
|
|
8243
|
-
description?: string;
|
|
8244
|
-
tags?: Array<string>;
|
|
8245
|
-
areRelationsValid?: boolean;
|
|
8246
|
-
/**
|
|
8247
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8248
|
-
*/
|
|
8249
|
-
content: object;
|
|
8250
|
-
isHidden?: boolean;
|
|
8251
|
-
}
|
|
8252
8223
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
8253
8224
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
8254
8225
|
}
|
|
@@ -8281,7 +8252,7 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8281
8252
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8282
8253
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8283
8254
|
links?: ListLinks;
|
|
8284
|
-
meta?:
|
|
8255
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8285
8256
|
/**
|
|
8286
8257
|
* Included resources
|
|
8287
8258
|
*/
|
|
@@ -8289,12 +8260,12 @@ export interface JsonApiWorkspaceAutomationOutList {
|
|
|
8289
8260
|
}
|
|
8290
8261
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8291
8262
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8292
|
-
notificationChannel?:
|
|
8293
|
-
analyticalDashboard?:
|
|
8263
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
8264
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
8294
8265
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8295
8266
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8296
|
-
exportDefinitions?:
|
|
8297
|
-
recipients?:
|
|
8267
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
8268
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
8298
8269
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8299
8270
|
}
|
|
8300
8271
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -8359,7 +8330,7 @@ export interface JsonApiWorkspaceDataFilterOut {
|
|
|
8359
8330
|
* API identifier of an object
|
|
8360
8331
|
*/
|
|
8361
8332
|
id: string;
|
|
8362
|
-
meta?:
|
|
8333
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8363
8334
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8364
8335
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8365
8336
|
}
|
|
@@ -8386,7 +8357,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8386
8357
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8387
8358
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8388
8359
|
links?: ListLinks;
|
|
8389
|
-
meta?:
|
|
8360
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8390
8361
|
/**
|
|
8391
8362
|
* Included resources
|
|
8392
8363
|
*/
|
|
@@ -8410,7 +8381,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
8410
8381
|
* API identifier of an object
|
|
8411
8382
|
*/
|
|
8412
8383
|
id: string;
|
|
8413
|
-
meta?:
|
|
8384
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8414
8385
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8415
8386
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8416
8387
|
links?: ObjectLinks;
|
|
@@ -8453,8 +8424,8 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8453
8424
|
* API identifier of an object
|
|
8454
8425
|
*/
|
|
8455
8426
|
id: string;
|
|
8456
|
-
attributes?:
|
|
8457
|
-
relationships?:
|
|
8427
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8428
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8458
8429
|
}
|
|
8459
8430
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8460
8431
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8486,19 +8457,14 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8486
8457
|
* API identifier of an object
|
|
8487
8458
|
*/
|
|
8488
8459
|
id: string;
|
|
8489
|
-
meta?:
|
|
8490
|
-
attributes?:
|
|
8491
|
-
relationships?:
|
|
8460
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8461
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8462
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8492
8463
|
}
|
|
8493
8464
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8494
8465
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8495
8466
|
};
|
|
8496
8467
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
8497
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
8498
|
-
title?: string;
|
|
8499
|
-
description?: string;
|
|
8500
|
-
filterValues?: Array<string>;
|
|
8501
|
-
}
|
|
8502
8468
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
8503
8469
|
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
8504
8470
|
links?: ObjectLinks;
|
|
@@ -8513,18 +8479,12 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8513
8479
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8514
8480
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8515
8481
|
links?: ListLinks;
|
|
8516
|
-
meta?:
|
|
8482
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8517
8483
|
/**
|
|
8518
8484
|
* Included resources
|
|
8519
8485
|
*/
|
|
8520
8486
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8521
8487
|
}
|
|
8522
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
8523
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
8524
|
-
}
|
|
8525
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
8526
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8527
|
-
}
|
|
8528
8488
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
8529
8489
|
/**
|
|
8530
8490
|
* Object type
|
|
@@ -8534,9 +8494,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8534
8494
|
* API identifier of an object
|
|
8535
8495
|
*/
|
|
8536
8496
|
id: string;
|
|
8537
|
-
meta?:
|
|
8538
|
-
attributes?:
|
|
8539
|
-
relationships?:
|
|
8497
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8498
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8499
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8540
8500
|
links?: ObjectLinks;
|
|
8541
8501
|
}
|
|
8542
8502
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8555,16 +8515,27 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8555
8515
|
* API identifier of an object
|
|
8556
8516
|
*/
|
|
8557
8517
|
id: string;
|
|
8558
|
-
attributes?:
|
|
8559
|
-
relationships?:
|
|
8518
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
8519
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
8560
8520
|
}
|
|
8561
8521
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8562
8522
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8563
8523
|
};
|
|
8564
8524
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
8525
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
8526
|
+
title?: string;
|
|
8527
|
+
description?: string;
|
|
8528
|
+
filterValues?: Array<string>;
|
|
8529
|
+
}
|
|
8565
8530
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
8566
8531
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
8567
8532
|
}
|
|
8533
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
8534
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
8535
|
+
}
|
|
8536
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
8537
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8538
|
+
}
|
|
8568
8539
|
/**
|
|
8569
8540
|
* JSON:API representation of workspace entity.
|
|
8570
8541
|
*/
|
|
@@ -8664,7 +8635,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8664
8635
|
export interface JsonApiWorkspaceOutList {
|
|
8665
8636
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8666
8637
|
links?: ListLinks;
|
|
8667
|
-
meta?:
|
|
8638
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8668
8639
|
/**
|
|
8669
8640
|
* Included resources
|
|
8670
8641
|
*/
|
|
@@ -8775,7 +8746,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8775
8746
|
* API identifier of an object
|
|
8776
8747
|
*/
|
|
8777
8748
|
id: string;
|
|
8778
|
-
attributes?:
|
|
8749
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8779
8750
|
}
|
|
8780
8751
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8781
8752
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8796,55 +8767,13 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
8796
8767
|
* API identifier of an object
|
|
8797
8768
|
*/
|
|
8798
8769
|
id: string;
|
|
8799
|
-
meta?:
|
|
8800
|
-
attributes?:
|
|
8770
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8771
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8801
8772
|
}
|
|
8802
8773
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
8803
8774
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
8804
8775
|
};
|
|
8805
8776
|
export type JsonApiWorkspaceSettingOutTypeEnum = (typeof JsonApiWorkspaceSettingOutTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutTypeEnum];
|
|
8806
|
-
export interface JsonApiWorkspaceSettingOutAttributes {
|
|
8807
|
-
/**
|
|
8808
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8809
|
-
*/
|
|
8810
|
-
content?: object;
|
|
8811
|
-
type?: JsonApiWorkspaceSettingOutAttributesTypeEnum;
|
|
8812
|
-
}
|
|
8813
|
-
export declare const JsonApiWorkspaceSettingOutAttributesTypeEnum: {
|
|
8814
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
8815
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
8816
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
8817
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
8818
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
8819
|
-
readonly LOCALE: "LOCALE";
|
|
8820
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
8821
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
8822
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
8823
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
8824
|
-
readonly WEEK_START: "WEEK_START";
|
|
8825
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
8826
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
8827
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
8828
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
8829
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
8830
|
-
readonly ALERT: "ALERT";
|
|
8831
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
8832
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
8833
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
8834
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
8835
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
8836
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
8837
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
8838
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
8839
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
8840
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
8841
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
8842
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
8843
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
8844
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
8845
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
8846
|
-
};
|
|
8847
|
-
export type JsonApiWorkspaceSettingOutAttributesTypeEnum = (typeof JsonApiWorkspaceSettingOutAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingOutAttributesTypeEnum];
|
|
8848
8777
|
export interface JsonApiWorkspaceSettingOutDocument {
|
|
8849
8778
|
data: JsonApiWorkspaceSettingOut;
|
|
8850
8779
|
links?: ObjectLinks;
|
|
@@ -8855,7 +8784,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
8855
8784
|
export interface JsonApiWorkspaceSettingOutList {
|
|
8856
8785
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
8857
8786
|
links?: ListLinks;
|
|
8858
|
-
meta?:
|
|
8787
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8859
8788
|
}
|
|
8860
8789
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
8861
8790
|
/**
|
|
@@ -8866,8 +8795,8 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
8866
8795
|
* API identifier of an object
|
|
8867
8796
|
*/
|
|
8868
8797
|
id: string;
|
|
8869
|
-
meta?:
|
|
8870
|
-
attributes?:
|
|
8798
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8799
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8871
8800
|
links?: ObjectLinks;
|
|
8872
8801
|
}
|
|
8873
8802
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -8886,7 +8815,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
8886
8815
|
* API identifier of an object
|
|
8887
8816
|
*/
|
|
8888
8817
|
id: string;
|
|
8889
|
-
attributes?:
|
|
8818
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8890
8819
|
}
|
|
8891
8820
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
8892
8821
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -8907,7 +8836,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
8907
8836
|
* API identifier of an object
|
|
8908
8837
|
*/
|
|
8909
8838
|
id?: string;
|
|
8910
|
-
attributes?:
|
|
8839
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
8911
8840
|
}
|
|
8912
8841
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
8913
8842
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|