@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +953 -848
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +155 -10
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +144 -8
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +82 -2
- package/esm/generated/metadata-json-api/api.d.ts +755 -751
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +83 -83
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9751 -9745
- package/esm/generated/scan-json-api/api.d.ts +8 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +11 -0
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -2870,6 +2870,20 @@ export declare interface ActionsApiManageWorkspacePermissionsRequest {
|
|
|
2870
2870
|
readonly workspacePermissionAssignment: Array<WorkspacePermissionAssignment>;
|
|
2871
2871
|
}
|
|
2872
2872
|
|
|
2873
|
+
/**
|
|
2874
|
+
* Request parameters for memoryCreatedByUsers operation in ActionsApi.
|
|
2875
|
+
* @export
|
|
2876
|
+
* @interface ActionsApiMemoryCreatedByUsersRequest
|
|
2877
|
+
*/
|
|
2878
|
+
declare interface ActionsApiMemoryCreatedByUsersRequest {
|
|
2879
|
+
/**
|
|
2880
|
+
* Workspace identifier
|
|
2881
|
+
* @type {string}
|
|
2882
|
+
* @memberof ActionsApiMemoryCreatedByUsers
|
|
2883
|
+
*/
|
|
2884
|
+
readonly workspaceId: string;
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2873
2887
|
/**
|
|
2874
2888
|
* Request parameters for metadataSync operation in ActionsApi.
|
|
2875
2889
|
* @export
|
|
@@ -5099,7 +5113,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5099
5113
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
5100
5114
|
/**
|
|
5101
5115
|
* Returns a list of Users who created any object for this workspace
|
|
5102
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5116
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5103
5117
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5104
5118
|
* @param {*} [options] Override http request option.
|
|
5105
5119
|
* @throws {RequiredError}
|
|
@@ -5169,6 +5183,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5169
5183
|
* @memberof ActionsApi
|
|
5170
5184
|
*/
|
|
5171
5185
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<KeyDriversResult, any, {}>>;
|
|
5186
|
+
/**
|
|
5187
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5188
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5189
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
5190
|
+
* @param {*} [options] Override http request option.
|
|
5191
|
+
* @throws {RequiredError}
|
|
5192
|
+
* @memberof ActionsApi
|
|
5193
|
+
*/
|
|
5194
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmMemoryItemCreatedByUsers, any, {}>>;
|
|
5172
5195
|
/**
|
|
5173
5196
|
* Returns a list of available LLM Endpoints
|
|
5174
5197
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5397,7 +5420,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5397
5420
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5398
5421
|
/**
|
|
5399
5422
|
* Returns a list of Users who created any object for this workspace
|
|
5400
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5423
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5401
5424
|
* @param {string} workspaceId Workspace identifier
|
|
5402
5425
|
* @param {*} [options] Override http request option.
|
|
5403
5426
|
* @throws {RequiredError}
|
|
@@ -5473,6 +5496,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5473
5496
|
* @throws {RequiredError}
|
|
5474
5497
|
*/
|
|
5475
5498
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5499
|
+
/**
|
|
5500
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5501
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5502
|
+
* @param {string} workspaceId Workspace identifier
|
|
5503
|
+
* @param {*} [options] Override http request option.
|
|
5504
|
+
* @throws {RequiredError}
|
|
5505
|
+
*/
|
|
5506
|
+
memoryCreatedByUsers: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5476
5507
|
/**
|
|
5477
5508
|
* Returns a list of available LLM Endpoints
|
|
5478
5509
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5673,7 +5704,7 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5673
5704
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
5674
5705
|
/**
|
|
5675
5706
|
* Returns a list of Users who created any object for this workspace
|
|
5676
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5707
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5677
5708
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5678
5709
|
* @param {*} [options] Override http request option.
|
|
5679
5710
|
* @throws {RequiredError}
|
|
@@ -5735,6 +5766,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5735
5766
|
* @throws {RequiredError}
|
|
5736
5767
|
*/
|
|
5737
5768
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
5769
|
+
/**
|
|
5770
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5771
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5772
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
5773
|
+
* @param {*} [options] Override http request option.
|
|
5774
|
+
* @throws {RequiredError}
|
|
5775
|
+
*/
|
|
5776
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
|
|
5738
5777
|
/**
|
|
5739
5778
|
* Returns a list of available LLM Endpoints
|
|
5740
5779
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5956,7 +5995,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5956
5995
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
5957
5996
|
/**
|
|
5958
5997
|
* Returns a list of Users who created any object for this workspace
|
|
5959
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5998
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5960
5999
|
* @param {string} workspaceId Workspace identifier
|
|
5961
6000
|
* @param {*} [options] Override http request option.
|
|
5962
6001
|
* @throws {RequiredError}
|
|
@@ -6032,6 +6071,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
6032
6071
|
* @throws {RequiredError}
|
|
6033
6072
|
*/
|
|
6034
6073
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
6074
|
+
/**
|
|
6075
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
6076
|
+
* @summary Get AI Memory CreatedBy Users
|
|
6077
|
+
* @param {string} workspaceId Workspace identifier
|
|
6078
|
+
* @param {*} [options] Override http request option.
|
|
6079
|
+
* @throws {RequiredError}
|
|
6080
|
+
*/
|
|
6081
|
+
memoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmMemoryItemCreatedByUsers>>;
|
|
6035
6082
|
/**
|
|
6036
6083
|
* Returns a list of available LLM Endpoints
|
|
6037
6084
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6283,7 +6330,7 @@ export declare interface AfmActionsApiInterface {
|
|
|
6283
6330
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
6284
6331
|
/**
|
|
6285
6332
|
* Returns a list of Users who created any object for this workspace
|
|
6286
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
6333
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
6287
6334
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
6288
6335
|
* @param {*} [options] Override http request option.
|
|
6289
6336
|
* @throws {RequiredError}
|
|
@@ -6353,6 +6400,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6353
6400
|
* @memberof ActionsApiInterface
|
|
6354
6401
|
*/
|
|
6355
6402
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
6403
|
+
/**
|
|
6404
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
6405
|
+
* @summary Get AI Memory CreatedBy Users
|
|
6406
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
6407
|
+
* @param {*} [options] Override http request option.
|
|
6408
|
+
* @throws {RequiredError}
|
|
6409
|
+
* @memberof ActionsApiInterface
|
|
6410
|
+
*/
|
|
6411
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
|
|
6356
6412
|
/**
|
|
6357
6413
|
* Returns a list of available LLM Endpoints
|
|
6358
6414
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6723,6 +6779,35 @@ export declare interface AfmMeasureItem {
|
|
|
6723
6779
|
definition: AfmMeasureDefinition;
|
|
6724
6780
|
}
|
|
6725
6781
|
|
|
6782
|
+
export declare interface AfmMemoryItemCreatedByUsers {
|
|
6783
|
+
/**
|
|
6784
|
+
* Users who created memory item
|
|
6785
|
+
*/
|
|
6786
|
+
users: Array<AfmMemoryItemUser>;
|
|
6787
|
+
/**
|
|
6788
|
+
* Reasoning for error states
|
|
6789
|
+
*/
|
|
6790
|
+
reasoning: string;
|
|
6791
|
+
}
|
|
6792
|
+
|
|
6793
|
+
/**
|
|
6794
|
+
* Users who created memory item
|
|
6795
|
+
*/
|
|
6796
|
+
export declare interface AfmMemoryItemUser {
|
|
6797
|
+
/**
|
|
6798
|
+
* User ID of the user who created memory item
|
|
6799
|
+
*/
|
|
6800
|
+
userId: string;
|
|
6801
|
+
/**
|
|
6802
|
+
* First name of the user who created memory item
|
|
6803
|
+
*/
|
|
6804
|
+
firstname: string;
|
|
6805
|
+
/**
|
|
6806
|
+
* Last name of the user who created memory item
|
|
6807
|
+
*/
|
|
6808
|
+
lastname: string;
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6726
6811
|
/**
|
|
6727
6812
|
* Individual change analysis data item
|
|
6728
6813
|
*/
|
|
@@ -6763,6 +6848,14 @@ export declare interface AfmMetricValueChange {
|
|
|
6763
6848
|
* Whether the change is statistically significant
|
|
6764
6849
|
*/
|
|
6765
6850
|
isSignificantChange: boolean;
|
|
6851
|
+
/**
|
|
6852
|
+
* The overall metric value in the analyzed period
|
|
6853
|
+
*/
|
|
6854
|
+
overallMetricValueInAnalyzedPeriod: number;
|
|
6855
|
+
/**
|
|
6856
|
+
* The overall metric value in the reference period
|
|
6857
|
+
*/
|
|
6858
|
+
overallMetricValueInReferencePeriod: number;
|
|
6766
6859
|
}
|
|
6767
6860
|
|
|
6768
6861
|
/**
|
|
@@ -20319,6 +20412,10 @@ export declare interface DeclarativeColumn {
|
|
|
20319
20412
|
* Referenced table (Foreign key)
|
|
20320
20413
|
*/
|
|
20321
20414
|
referencedTableColumn?: string;
|
|
20415
|
+
/**
|
|
20416
|
+
* Column description/comment from database
|
|
20417
|
+
*/
|
|
20418
|
+
description?: string;
|
|
20322
20419
|
}
|
|
20323
20420
|
|
|
20324
20421
|
export declare const DeclarativeColumnDataTypeEnum: {
|
|
@@ -45069,7 +45166,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
45069
45166
|
export declare interface JsonApiAggregatedFactOutList {
|
|
45070
45167
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
45071
45168
|
links?: ListLinks;
|
|
45072
|
-
meta?:
|
|
45169
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45073
45170
|
/**
|
|
45074
45171
|
* Included resources
|
|
45075
45172
|
*/
|
|
@@ -45124,7 +45221,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
45124
45221
|
* API identifier of an object
|
|
45125
45222
|
*/
|
|
45126
45223
|
id: string;
|
|
45127
|
-
attributes:
|
|
45224
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
45128
45225
|
}
|
|
45129
45226
|
|
|
45130
45227
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -45201,7 +45298,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
45201
45298
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
45202
45299
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
45203
45300
|
links?: ListLinks;
|
|
45204
|
-
meta?:
|
|
45301
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45205
45302
|
/**
|
|
45206
45303
|
* Included resources
|
|
45207
45304
|
*/
|
|
@@ -45347,7 +45444,18 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
45347
45444
|
* API identifier of an object
|
|
45348
45445
|
*/
|
|
45349
45446
|
id?: string;
|
|
45350
|
-
attributes:
|
|
45447
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
45448
|
+
}
|
|
45449
|
+
|
|
45450
|
+
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
45451
|
+
title?: string;
|
|
45452
|
+
description?: string;
|
|
45453
|
+
tags?: Array<string>;
|
|
45454
|
+
areRelationsValid?: boolean;
|
|
45455
|
+
/**
|
|
45456
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45457
|
+
*/
|
|
45458
|
+
content: object;
|
|
45351
45459
|
}
|
|
45352
45460
|
|
|
45353
45461
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -45417,7 +45525,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
45417
45525
|
export declare interface JsonApiApiTokenOutList {
|
|
45418
45526
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
45419
45527
|
links?: ListLinks;
|
|
45420
|
-
meta?:
|
|
45528
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45421
45529
|
}
|
|
45422
45530
|
|
|
45423
45531
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -45457,7 +45565,18 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
45457
45565
|
* API identifier of an object
|
|
45458
45566
|
*/
|
|
45459
45567
|
id: string;
|
|
45460
|
-
attributes?:
|
|
45568
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
45569
|
+
}
|
|
45570
|
+
|
|
45571
|
+
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
45572
|
+
title?: string;
|
|
45573
|
+
description?: string;
|
|
45574
|
+
tags?: Array<string>;
|
|
45575
|
+
areRelationsValid?: boolean;
|
|
45576
|
+
/**
|
|
45577
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45578
|
+
*/
|
|
45579
|
+
content?: object;
|
|
45461
45580
|
}
|
|
45462
45581
|
|
|
45463
45582
|
export declare interface JsonApiAttributeHierarchyInDocument {
|
|
@@ -45534,7 +45653,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
45534
45653
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
45535
45654
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
45536
45655
|
links?: ListLinks;
|
|
45537
|
-
meta?:
|
|
45656
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45538
45657
|
/**
|
|
45539
45658
|
* Included resources
|
|
45540
45659
|
*/
|
|
@@ -45586,18 +45705,7 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
45586
45705
|
* API identifier of an object
|
|
45587
45706
|
*/
|
|
45588
45707
|
id: string;
|
|
45589
|
-
attributes?:
|
|
45590
|
-
}
|
|
45591
|
-
|
|
45592
|
-
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
45593
|
-
title?: string;
|
|
45594
|
-
description?: string;
|
|
45595
|
-
tags?: Array<string>;
|
|
45596
|
-
areRelationsValid?: boolean;
|
|
45597
|
-
/**
|
|
45598
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45599
|
-
*/
|
|
45600
|
-
content?: object;
|
|
45708
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
45601
45709
|
}
|
|
45602
45710
|
|
|
45603
45711
|
export declare interface JsonApiAttributeHierarchyPatchDocument {
|
|
@@ -45714,7 +45822,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
45714
45822
|
export declare interface JsonApiAttributeOutList {
|
|
45715
45823
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
45716
45824
|
links?: ListLinks;
|
|
45717
|
-
meta?:
|
|
45825
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45718
45826
|
/**
|
|
45719
45827
|
* Included resources
|
|
45720
45828
|
*/
|
|
@@ -45782,14 +45890,164 @@ export declare interface JsonApiAutomationIn {
|
|
|
45782
45890
|
* API identifier of an object
|
|
45783
45891
|
*/
|
|
45784
45892
|
id: string;
|
|
45785
|
-
attributes?:
|
|
45786
|
-
relationships?:
|
|
45893
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
45894
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
45895
|
+
}
|
|
45896
|
+
|
|
45897
|
+
export declare interface JsonApiAutomationInAttributes {
|
|
45898
|
+
title?: string;
|
|
45899
|
+
description?: string;
|
|
45900
|
+
tags?: Array<string>;
|
|
45901
|
+
areRelationsValid?: boolean;
|
|
45902
|
+
/**
|
|
45903
|
+
* Additional details to be included in the automated message.
|
|
45904
|
+
*/
|
|
45905
|
+
details?: object;
|
|
45906
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
45907
|
+
/**
|
|
45908
|
+
* Current state of the automation.
|
|
45909
|
+
*/
|
|
45910
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
45911
|
+
/**
|
|
45912
|
+
* Specify automation evaluation mode.
|
|
45913
|
+
*/
|
|
45914
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
45915
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
45916
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
45917
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
45918
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
45919
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
45920
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
45921
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
45922
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
45923
|
+
/**
|
|
45924
|
+
* External recipients of the automation action results.
|
|
45925
|
+
*/
|
|
45926
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
45927
|
+
}
|
|
45928
|
+
|
|
45929
|
+
export declare interface JsonApiAutomationInAttributesAlert {
|
|
45930
|
+
execution: AlertAfm;
|
|
45931
|
+
condition: AlertCondition;
|
|
45932
|
+
/**
|
|
45933
|
+
* 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.
|
|
45934
|
+
*/
|
|
45935
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
45936
|
+
}
|
|
45937
|
+
|
|
45938
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
45939
|
+
readonly ALWAYS: "ALWAYS";
|
|
45940
|
+
readonly ONCE: "ONCE";
|
|
45941
|
+
};
|
|
45942
|
+
|
|
45943
|
+
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
45944
|
+
|
|
45945
|
+
export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
45946
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
45947
|
+
}
|
|
45948
|
+
|
|
45949
|
+
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
45950
|
+
readonly SHARED: "SHARED";
|
|
45951
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
45952
|
+
};
|
|
45953
|
+
|
|
45954
|
+
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
45955
|
+
|
|
45956
|
+
export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
45957
|
+
/**
|
|
45958
|
+
* E-mail address to send notifications from.
|
|
45959
|
+
*/
|
|
45960
|
+
email: string;
|
|
45961
|
+
}
|
|
45962
|
+
|
|
45963
|
+
export declare interface JsonApiAutomationInAttributesImageExportsInner {
|
|
45964
|
+
requestPayload: ImageExportRequest;
|
|
45965
|
+
}
|
|
45966
|
+
|
|
45967
|
+
/**
|
|
45968
|
+
* Additional information for the automation.
|
|
45969
|
+
*/
|
|
45970
|
+
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
45971
|
+
[key: string]: any;
|
|
45972
|
+
widget?: string;
|
|
45973
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
45974
|
+
}
|
|
45975
|
+
|
|
45976
|
+
export declare interface JsonApiAutomationInAttributesRawExportsInner {
|
|
45977
|
+
requestPayload: RawExportAutomationRequest;
|
|
45978
|
+
}
|
|
45979
|
+
|
|
45980
|
+
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
45981
|
+
/**
|
|
45982
|
+
* 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.
|
|
45983
|
+
*/
|
|
45984
|
+
cron: string;
|
|
45985
|
+
/**
|
|
45986
|
+
* Human-readable description of the cron expression.
|
|
45987
|
+
*/
|
|
45988
|
+
cronDescription?: string;
|
|
45989
|
+
/**
|
|
45990
|
+
* Timezone in which the schedule is defined.
|
|
45991
|
+
*/
|
|
45992
|
+
timezone: string;
|
|
45993
|
+
/**
|
|
45994
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
45995
|
+
*/
|
|
45996
|
+
firstRun?: string;
|
|
45997
|
+
}
|
|
45998
|
+
|
|
45999
|
+
export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
46000
|
+
requestPayload: SlidesExportRequest;
|
|
46001
|
+
}
|
|
46002
|
+
|
|
46003
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
46004
|
+
readonly ACTIVE: "ACTIVE";
|
|
46005
|
+
readonly PAUSED: "PAUSED";
|
|
46006
|
+
};
|
|
46007
|
+
|
|
46008
|
+
export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
46009
|
+
|
|
46010
|
+
export declare interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
46011
|
+
requestPayload: TabularExportRequest;
|
|
46012
|
+
}
|
|
46013
|
+
|
|
46014
|
+
export declare interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
46015
|
+
requestPayload: VisualExportRequest;
|
|
45787
46016
|
}
|
|
45788
46017
|
|
|
45789
46018
|
export declare interface JsonApiAutomationInDocument {
|
|
45790
46019
|
data: JsonApiAutomationIn;
|
|
45791
46020
|
}
|
|
45792
46021
|
|
|
46022
|
+
export declare interface JsonApiAutomationInRelationships {
|
|
46023
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
46024
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46025
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
46026
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
46027
|
+
}
|
|
46028
|
+
|
|
46029
|
+
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
46030
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
46031
|
+
}
|
|
46032
|
+
|
|
46033
|
+
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
46034
|
+
/**
|
|
46035
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46036
|
+
*/
|
|
46037
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
46038
|
+
}
|
|
46039
|
+
|
|
46040
|
+
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
46041
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
46042
|
+
}
|
|
46043
|
+
|
|
46044
|
+
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
46045
|
+
/**
|
|
46046
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46047
|
+
*/
|
|
46048
|
+
data: Array<JsonApiUserLinkage>;
|
|
46049
|
+
}
|
|
46050
|
+
|
|
45793
46051
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
45794
46052
|
readonly AUTOMATION: "automation";
|
|
45795
46053
|
};
|
|
@@ -45836,7 +46094,7 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45836
46094
|
* Additional details to be included in the automated message.
|
|
45837
46095
|
*/
|
|
45838
46096
|
details?: object;
|
|
45839
|
-
metadata?:
|
|
46097
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
45840
46098
|
/**
|
|
45841
46099
|
* Current state of the automation.
|
|
45842
46100
|
*/
|
|
@@ -45845,18 +46103,18 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45845
46103
|
* Specify automation evaluation mode.
|
|
45846
46104
|
*/
|
|
45847
46105
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
45848
|
-
schedule?:
|
|
45849
|
-
alert?:
|
|
45850
|
-
tabularExports?: Array<
|
|
45851
|
-
visualExports?: Array<
|
|
45852
|
-
imageExports?: Array<
|
|
45853
|
-
rawExports?: Array<
|
|
45854
|
-
slidesExports?: Array<
|
|
45855
|
-
dashboardTabularExports?: Array<
|
|
46106
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
46107
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
46108
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
46109
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
46110
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
46111
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
46112
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
46113
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
45856
46114
|
/**
|
|
45857
46115
|
* External recipients of the automation action results.
|
|
45858
46116
|
*/
|
|
45859
|
-
externalRecipients?: Array<
|
|
46117
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
45860
46118
|
createdAt?: string;
|
|
45861
46119
|
modifiedAt?: string;
|
|
45862
46120
|
}
|
|
@@ -45895,7 +46153,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
45895
46153
|
export declare interface JsonApiAutomationOutList {
|
|
45896
46154
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
45897
46155
|
links?: ListLinks;
|
|
45898
|
-
meta?:
|
|
46156
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
45899
46157
|
/**
|
|
45900
46158
|
* Included resources
|
|
45901
46159
|
*/
|
|
@@ -45903,12 +46161,12 @@ export declare interface JsonApiAutomationOutList {
|
|
|
45903
46161
|
}
|
|
45904
46162
|
|
|
45905
46163
|
export declare interface JsonApiAutomationOutRelationships {
|
|
45906
|
-
notificationChannel?:
|
|
45907
|
-
analyticalDashboard?:
|
|
46164
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
46165
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
45908
46166
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45909
46167
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
45910
|
-
exportDefinitions?:
|
|
45911
|
-
recipients?:
|
|
46168
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
46169
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
45912
46170
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
45913
46171
|
}
|
|
45914
46172
|
|
|
@@ -45958,164 +46216,14 @@ export declare interface JsonApiAutomationPatch {
|
|
|
45958
46216
|
* API identifier of an object
|
|
45959
46217
|
*/
|
|
45960
46218
|
id: string;
|
|
45961
|
-
attributes?:
|
|
45962
|
-
relationships?:
|
|
45963
|
-
}
|
|
45964
|
-
|
|
45965
|
-
export declare interface JsonApiAutomationPatchAttributes {
|
|
45966
|
-
title?: string;
|
|
45967
|
-
description?: string;
|
|
45968
|
-
tags?: Array<string>;
|
|
45969
|
-
areRelationsValid?: boolean;
|
|
45970
|
-
/**
|
|
45971
|
-
* Additional details to be included in the automated message.
|
|
45972
|
-
*/
|
|
45973
|
-
details?: object;
|
|
45974
|
-
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
45975
|
-
/**
|
|
45976
|
-
* Current state of the automation.
|
|
45977
|
-
*/
|
|
45978
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
45979
|
-
/**
|
|
45980
|
-
* Specify automation evaluation mode.
|
|
45981
|
-
*/
|
|
45982
|
-
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
45983
|
-
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
45984
|
-
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
45985
|
-
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
45986
|
-
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
45987
|
-
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
45988
|
-
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
45989
|
-
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
45990
|
-
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
45991
|
-
/**
|
|
45992
|
-
* External recipients of the automation action results.
|
|
45993
|
-
*/
|
|
45994
|
-
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
45995
|
-
}
|
|
45996
|
-
|
|
45997
|
-
export declare interface JsonApiAutomationPatchAttributesAlert {
|
|
45998
|
-
execution: AlertAfm;
|
|
45999
|
-
condition: AlertCondition;
|
|
46000
|
-
/**
|
|
46001
|
-
* 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.
|
|
46002
|
-
*/
|
|
46003
|
-
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
46004
|
-
}
|
|
46005
|
-
|
|
46006
|
-
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
46007
|
-
readonly ALWAYS: "ALWAYS";
|
|
46008
|
-
readonly ONCE: "ONCE";
|
|
46009
|
-
};
|
|
46010
|
-
|
|
46011
|
-
export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
46012
|
-
|
|
46013
|
-
export declare interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
46014
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
46015
|
-
}
|
|
46016
|
-
|
|
46017
|
-
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
46018
|
-
readonly SHARED: "SHARED";
|
|
46019
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
46020
|
-
};
|
|
46021
|
-
|
|
46022
|
-
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
46023
|
-
|
|
46024
|
-
export declare interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
46025
|
-
/**
|
|
46026
|
-
* E-mail address to send notifications from.
|
|
46027
|
-
*/
|
|
46028
|
-
email: string;
|
|
46029
|
-
}
|
|
46030
|
-
|
|
46031
|
-
export declare interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
46032
|
-
requestPayload: ImageExportRequest;
|
|
46033
|
-
}
|
|
46034
|
-
|
|
46035
|
-
/**
|
|
46036
|
-
* Additional information for the automation.
|
|
46037
|
-
*/
|
|
46038
|
-
export declare interface JsonApiAutomationPatchAttributesMetadata {
|
|
46039
|
-
[key: string]: any;
|
|
46040
|
-
widget?: string;
|
|
46041
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
46042
|
-
}
|
|
46043
|
-
|
|
46044
|
-
export declare interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
46045
|
-
requestPayload: RawExportAutomationRequest;
|
|
46046
|
-
}
|
|
46047
|
-
|
|
46048
|
-
export declare interface JsonApiAutomationPatchAttributesSchedule {
|
|
46049
|
-
/**
|
|
46050
|
-
* 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.
|
|
46051
|
-
*/
|
|
46052
|
-
cron: string;
|
|
46053
|
-
/**
|
|
46054
|
-
* Human-readable description of the cron expression.
|
|
46055
|
-
*/
|
|
46056
|
-
cronDescription?: string;
|
|
46057
|
-
/**
|
|
46058
|
-
* Timezone in which the schedule is defined.
|
|
46059
|
-
*/
|
|
46060
|
-
timezone: string;
|
|
46061
|
-
/**
|
|
46062
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
46063
|
-
*/
|
|
46064
|
-
firstRun?: string;
|
|
46065
|
-
}
|
|
46066
|
-
|
|
46067
|
-
export declare interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
46068
|
-
requestPayload: SlidesExportRequest;
|
|
46069
|
-
}
|
|
46070
|
-
|
|
46071
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
46072
|
-
readonly ACTIVE: "ACTIVE";
|
|
46073
|
-
readonly PAUSED: "PAUSED";
|
|
46074
|
-
};
|
|
46075
|
-
|
|
46076
|
-
export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
46077
|
-
|
|
46078
|
-
export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
46079
|
-
requestPayload: TabularExportRequest;
|
|
46080
|
-
}
|
|
46081
|
-
|
|
46082
|
-
export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
46083
|
-
requestPayload: VisualExportRequest;
|
|
46219
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
46220
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
46084
46221
|
}
|
|
46085
46222
|
|
|
46086
46223
|
export declare interface JsonApiAutomationPatchDocument {
|
|
46087
46224
|
data: JsonApiAutomationPatch;
|
|
46088
46225
|
}
|
|
46089
46226
|
|
|
46090
|
-
export declare interface JsonApiAutomationPatchRelationships {
|
|
46091
|
-
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
46092
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
46093
|
-
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
46094
|
-
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
46095
|
-
}
|
|
46096
|
-
|
|
46097
|
-
export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
46098
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
46099
|
-
}
|
|
46100
|
-
|
|
46101
|
-
export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
46102
|
-
/**
|
|
46103
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46104
|
-
*/
|
|
46105
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
46106
|
-
}
|
|
46107
|
-
|
|
46108
|
-
export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
46109
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
46110
|
-
}
|
|
46111
|
-
|
|
46112
|
-
export declare interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
46113
|
-
/**
|
|
46114
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46115
|
-
*/
|
|
46116
|
-
data: Array<JsonApiUserLinkage>;
|
|
46117
|
-
}
|
|
46118
|
-
|
|
46119
46227
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
46120
46228
|
readonly AUTOMATION: "automation";
|
|
46121
46229
|
};
|
|
@@ -46261,7 +46369,11 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
46261
46369
|
export declare interface JsonApiColorPaletteOutList {
|
|
46262
46370
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
46263
46371
|
links?: ListLinks;
|
|
46264
|
-
meta?:
|
|
46372
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46373
|
+
}
|
|
46374
|
+
|
|
46375
|
+
export declare interface JsonApiColorPaletteOutListMeta {
|
|
46376
|
+
page?: PageMetadata;
|
|
46265
46377
|
}
|
|
46266
46378
|
|
|
46267
46379
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -46334,7 +46446,15 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
46334
46446
|
* API identifier of an object
|
|
46335
46447
|
*/
|
|
46336
46448
|
id: string;
|
|
46337
|
-
attributes?:
|
|
46449
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
46450
|
+
}
|
|
46451
|
+
|
|
46452
|
+
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
46453
|
+
lastRotation?: string;
|
|
46454
|
+
/**
|
|
46455
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46456
|
+
*/
|
|
46457
|
+
rotationInterval?: string;
|
|
46338
46458
|
}
|
|
46339
46459
|
|
|
46340
46460
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -46359,7 +46479,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
46359
46479
|
* API identifier of an object
|
|
46360
46480
|
*/
|
|
46361
46481
|
id: string;
|
|
46362
|
-
attributes?:
|
|
46482
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
46363
46483
|
}
|
|
46364
46484
|
|
|
46365
46485
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -46385,15 +46505,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
46385
46505
|
* API identifier of an object
|
|
46386
46506
|
*/
|
|
46387
46507
|
id: string;
|
|
46388
|
-
attributes?:
|
|
46389
|
-
}
|
|
46390
|
-
|
|
46391
|
-
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
46392
|
-
lastRotation?: string;
|
|
46393
|
-
/**
|
|
46394
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46395
|
-
*/
|
|
46396
|
-
rotationInterval?: string;
|
|
46508
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
46397
46509
|
}
|
|
46398
46510
|
|
|
46399
46511
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -46461,7 +46573,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
46461
46573
|
export declare interface JsonApiCspDirectiveOutList {
|
|
46462
46574
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
46463
46575
|
links?: ListLinks;
|
|
46464
|
-
meta?:
|
|
46576
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46465
46577
|
}
|
|
46466
46578
|
|
|
46467
46579
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -46530,7 +46642,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
46530
46642
|
* API identifier of an object
|
|
46531
46643
|
*/
|
|
46532
46644
|
id: string;
|
|
46533
|
-
attributes:
|
|
46645
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
46534
46646
|
}
|
|
46535
46647
|
|
|
46536
46648
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -46556,15 +46668,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
46556
46668
|
*/
|
|
46557
46669
|
id: string;
|
|
46558
46670
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46559
|
-
attributes:
|
|
46560
|
-
}
|
|
46561
|
-
|
|
46562
|
-
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
46563
|
-
applicationName: string;
|
|
46564
|
-
/**
|
|
46565
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46566
|
-
*/
|
|
46567
|
-
content: object;
|
|
46671
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
46568
46672
|
}
|
|
46569
46673
|
|
|
46570
46674
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -46578,7 +46682,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
46578
46682
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
46579
46683
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
46580
46684
|
links?: ListLinks;
|
|
46581
|
-
meta?:
|
|
46685
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46582
46686
|
}
|
|
46583
46687
|
|
|
46584
46688
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -46597,7 +46701,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
46597
46701
|
*/
|
|
46598
46702
|
id: string;
|
|
46599
46703
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46600
|
-
attributes:
|
|
46704
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
46601
46705
|
links?: ObjectLinks;
|
|
46602
46706
|
}
|
|
46603
46707
|
|
|
@@ -46652,7 +46756,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
46652
46756
|
* API identifier of an object
|
|
46653
46757
|
*/
|
|
46654
46758
|
id?: string;
|
|
46655
|
-
attributes:
|
|
46759
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
46760
|
+
}
|
|
46761
|
+
|
|
46762
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
46763
|
+
applicationName: string;
|
|
46764
|
+
/**
|
|
46765
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46766
|
+
*/
|
|
46767
|
+
content: object;
|
|
46656
46768
|
}
|
|
46657
46769
|
|
|
46658
46770
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -46677,7 +46789,7 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
46677
46789
|
* API identifier of an object
|
|
46678
46790
|
*/
|
|
46679
46791
|
id: string;
|
|
46680
|
-
attributes?:
|
|
46792
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
46681
46793
|
}
|
|
46682
46794
|
|
|
46683
46795
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -46749,7 +46861,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
46749
46861
|
export declare interface JsonApiDashboardPluginOutList {
|
|
46750
46862
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
46751
46863
|
links?: ListLinks;
|
|
46752
|
-
meta?:
|
|
46864
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
46753
46865
|
/**
|
|
46754
46866
|
* Included resources
|
|
46755
46867
|
*/
|
|
@@ -46800,18 +46912,7 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
46800
46912
|
* API identifier of an object
|
|
46801
46913
|
*/
|
|
46802
46914
|
id: string;
|
|
46803
|
-
attributes?:
|
|
46804
|
-
}
|
|
46805
|
-
|
|
46806
|
-
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
46807
|
-
title?: string;
|
|
46808
|
-
description?: string;
|
|
46809
|
-
tags?: Array<string>;
|
|
46810
|
-
areRelationsValid?: boolean;
|
|
46811
|
-
/**
|
|
46812
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46813
|
-
*/
|
|
46814
|
-
content?: object;
|
|
46915
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
46815
46916
|
}
|
|
46816
46917
|
|
|
46817
46918
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -46836,7 +46937,18 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
46836
46937
|
* API identifier of an object
|
|
46837
46938
|
*/
|
|
46838
46939
|
id?: string;
|
|
46839
|
-
attributes?:
|
|
46940
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
46941
|
+
}
|
|
46942
|
+
|
|
46943
|
+
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
46944
|
+
title?: string;
|
|
46945
|
+
description?: string;
|
|
46946
|
+
tags?: Array<string>;
|
|
46947
|
+
areRelationsValid?: boolean;
|
|
46948
|
+
/**
|
|
46949
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46950
|
+
*/
|
|
46951
|
+
content?: object;
|
|
46840
46952
|
}
|
|
46841
46953
|
|
|
46842
46954
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -47001,7 +47113,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
47001
47113
|
export declare interface JsonApiDatasetOutList {
|
|
47002
47114
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
47003
47115
|
links?: ListLinks;
|
|
47004
|
-
meta?:
|
|
47116
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47005
47117
|
/**
|
|
47006
47118
|
* Included resources
|
|
47007
47119
|
*/
|
|
@@ -47069,7 +47181,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
|
|
|
47069
47181
|
* API identifier of an object
|
|
47070
47182
|
*/
|
|
47071
47183
|
id: string;
|
|
47072
|
-
meta?:
|
|
47184
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
47073
47185
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47074
47186
|
}
|
|
47075
47187
|
|
|
@@ -47121,9 +47233,23 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
47121
47233
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
47122
47234
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
47123
47235
|
links?: ListLinks;
|
|
47124
|
-
meta?:
|
|
47236
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47125
47237
|
}
|
|
47126
47238
|
|
|
47239
|
+
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
47240
|
+
/**
|
|
47241
|
+
* List of valid permissions for a logged-in user.
|
|
47242
|
+
*/
|
|
47243
|
+
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
47244
|
+
}
|
|
47245
|
+
|
|
47246
|
+
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
47247
|
+
readonly MANAGE: "MANAGE";
|
|
47248
|
+
readonly USE: "USE";
|
|
47249
|
+
};
|
|
47250
|
+
|
|
47251
|
+
export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
47252
|
+
|
|
47127
47253
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
47128
47254
|
readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
|
|
47129
47255
|
};
|
|
@@ -47139,7 +47265,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
47139
47265
|
* API identifier of an object
|
|
47140
47266
|
*/
|
|
47141
47267
|
id: string;
|
|
47142
|
-
meta?:
|
|
47268
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
47143
47269
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47144
47270
|
links?: ObjectLinks;
|
|
47145
47271
|
}
|
|
@@ -47213,7 +47339,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
47213
47339
|
/**
|
|
47214
47340
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47215
47341
|
*/
|
|
47216
|
-
parameters?: Array<
|
|
47342
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
47217
47343
|
/**
|
|
47218
47344
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47219
47345
|
*/
|
|
@@ -47280,7 +47406,7 @@ export declare interface JsonApiDataSourceOut {
|
|
|
47280
47406
|
* API identifier of an object
|
|
47281
47407
|
*/
|
|
47282
47408
|
id: string;
|
|
47283
|
-
meta?:
|
|
47409
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
47284
47410
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47285
47411
|
}
|
|
47286
47412
|
|
|
@@ -47312,11 +47438,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
47312
47438
|
/**
|
|
47313
47439
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47314
47440
|
*/
|
|
47315
|
-
parameters?: Array<
|
|
47441
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
47316
47442
|
/**
|
|
47317
47443
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
47318
47444
|
*/
|
|
47319
|
-
decodedParameters?: Array<
|
|
47445
|
+
decodedParameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
47320
47446
|
/**
|
|
47321
47447
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47322
47448
|
*/
|
|
@@ -47344,6 +47470,11 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
|
47344
47470
|
|
|
47345
47471
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
|
|
47346
47472
|
|
|
47473
|
+
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
47474
|
+
name: string;
|
|
47475
|
+
value: string;
|
|
47476
|
+
}
|
|
47477
|
+
|
|
47347
47478
|
export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
47348
47479
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47349
47480
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47386,23 +47517,9 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
47386
47517
|
export declare interface JsonApiDataSourceOutList {
|
|
47387
47518
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
47388
47519
|
links?: ListLinks;
|
|
47389
|
-
meta?:
|
|
47520
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47390
47521
|
}
|
|
47391
47522
|
|
|
47392
|
-
export declare interface JsonApiDataSourceOutMeta {
|
|
47393
|
-
/**
|
|
47394
|
-
* List of valid permissions for a logged-in user.
|
|
47395
|
-
*/
|
|
47396
|
-
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
47397
|
-
}
|
|
47398
|
-
|
|
47399
|
-
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
47400
|
-
readonly MANAGE: "MANAGE";
|
|
47401
|
-
readonly USE: "USE";
|
|
47402
|
-
};
|
|
47403
|
-
|
|
47404
|
-
export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
47405
|
-
|
|
47406
47523
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
47407
47524
|
readonly DATA_SOURCE: "dataSource";
|
|
47408
47525
|
};
|
|
@@ -47418,7 +47535,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
|
|
|
47418
47535
|
* API identifier of an object
|
|
47419
47536
|
*/
|
|
47420
47537
|
id: string;
|
|
47421
|
-
meta?:
|
|
47538
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
47422
47539
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47423
47540
|
links?: ObjectLinks;
|
|
47424
47541
|
}
|
|
@@ -47492,7 +47609,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
47492
47609
|
/**
|
|
47493
47610
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47494
47611
|
*/
|
|
47495
|
-
parameters?: Array<
|
|
47612
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
47496
47613
|
/**
|
|
47497
47614
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47498
47615
|
*/
|
|
@@ -47506,11 +47623,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
47506
47623
|
|
|
47507
47624
|
export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
47508
47625
|
|
|
47509
|
-
export declare interface JsonApiDataSourcePatchAttributesParametersInner {
|
|
47510
|
-
name: string;
|
|
47511
|
-
value: string;
|
|
47512
|
-
}
|
|
47513
|
-
|
|
47514
47626
|
export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
47515
47627
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47516
47628
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47583,7 +47695,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
47583
47695
|
export declare interface JsonApiEntitlementOutList {
|
|
47584
47696
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
47585
47697
|
links?: ListLinks;
|
|
47586
|
-
meta?:
|
|
47698
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47587
47699
|
}
|
|
47588
47700
|
|
|
47589
47701
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -47623,8 +47735,8 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
47623
47735
|
* API identifier of an object
|
|
47624
47736
|
*/
|
|
47625
47737
|
id: string;
|
|
47626
|
-
attributes?:
|
|
47627
|
-
relationships?:
|
|
47738
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
47739
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
47628
47740
|
}
|
|
47629
47741
|
|
|
47630
47742
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
@@ -47704,7 +47816,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
47704
47816
|
export declare interface JsonApiExportDefinitionOutList {
|
|
47705
47817
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
47706
47818
|
links?: ListLinks;
|
|
47707
|
-
meta?:
|
|
47819
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47708
47820
|
/**
|
|
47709
47821
|
* Included resources
|
|
47710
47822
|
*/
|
|
@@ -47713,7 +47825,7 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
47713
47825
|
|
|
47714
47826
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
47715
47827
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47716
|
-
analyticalDashboard?:
|
|
47828
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47717
47829
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
47718
47830
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
47719
47831
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -47766,27 +47878,14 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
47766
47878
|
* API identifier of an object
|
|
47767
47879
|
*/
|
|
47768
47880
|
id: string;
|
|
47769
|
-
attributes?:
|
|
47770
|
-
relationships?:
|
|
47771
|
-
}
|
|
47772
|
-
|
|
47773
|
-
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
47774
|
-
title?: string;
|
|
47775
|
-
description?: string;
|
|
47776
|
-
tags?: Array<string>;
|
|
47777
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47778
|
-
areRelationsValid?: boolean;
|
|
47881
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
47882
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
47779
47883
|
}
|
|
47780
47884
|
|
|
47781
47885
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
47782
47886
|
data: JsonApiExportDefinitionPatch;
|
|
47783
47887
|
}
|
|
47784
47888
|
|
|
47785
|
-
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
47786
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47787
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
47788
|
-
}
|
|
47789
|
-
|
|
47790
47889
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
47791
47890
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47792
47891
|
};
|
|
@@ -47805,14 +47904,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
47805
47904
|
* API identifier of an object
|
|
47806
47905
|
*/
|
|
47807
47906
|
id?: string;
|
|
47808
|
-
attributes?:
|
|
47809
|
-
relationships?:
|
|
47907
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
47908
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
47909
|
+
}
|
|
47910
|
+
|
|
47911
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
47912
|
+
title?: string;
|
|
47913
|
+
description?: string;
|
|
47914
|
+
tags?: Array<string>;
|
|
47915
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47916
|
+
areRelationsValid?: boolean;
|
|
47810
47917
|
}
|
|
47811
47918
|
|
|
47812
47919
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
47813
47920
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
47814
47921
|
}
|
|
47815
47922
|
|
|
47923
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
47924
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47925
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47926
|
+
}
|
|
47927
|
+
|
|
47816
47928
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
47817
47929
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47818
47930
|
};
|
|
@@ -47864,10 +47976,49 @@ export declare interface JsonApiExportTemplateOutAttributes {
|
|
|
47864
47976
|
* User-facing name of the Slides template.
|
|
47865
47977
|
*/
|
|
47866
47978
|
name: string;
|
|
47867
|
-
dashboardSlidesTemplate?:
|
|
47868
|
-
widgetSlidesTemplate?:
|
|
47979
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
47980
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
47981
|
+
}
|
|
47982
|
+
|
|
47983
|
+
/**
|
|
47984
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47985
|
+
*/
|
|
47986
|
+
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
47987
|
+
/**
|
|
47988
|
+
* Export types this template applies to.
|
|
47989
|
+
*/
|
|
47990
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
47991
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
47992
|
+
introSlide?: IntroSlideTemplate | null;
|
|
47993
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
47994
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
47869
47995
|
}
|
|
47870
47996
|
|
|
47997
|
+
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
47998
|
+
readonly PDF: "PDF";
|
|
47999
|
+
readonly PPTX: "PPTX";
|
|
48000
|
+
};
|
|
48001
|
+
|
|
48002
|
+
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
48003
|
+
|
|
48004
|
+
/**
|
|
48005
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
48006
|
+
*/
|
|
48007
|
+
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
48008
|
+
/**
|
|
48009
|
+
* Export types this template applies to.
|
|
48010
|
+
*/
|
|
48011
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
48012
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
48013
|
+
}
|
|
48014
|
+
|
|
48015
|
+
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
48016
|
+
readonly PDF: "PDF";
|
|
48017
|
+
readonly PPTX: "PPTX";
|
|
48018
|
+
};
|
|
48019
|
+
|
|
48020
|
+
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
48021
|
+
|
|
47871
48022
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
47872
48023
|
data: JsonApiExportTemplateOut;
|
|
47873
48024
|
links?: ObjectLinks;
|
|
@@ -47879,7 +48030,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
47879
48030
|
export declare interface JsonApiExportTemplateOutList {
|
|
47880
48031
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
47881
48032
|
links?: ListLinks;
|
|
47882
|
-
meta?:
|
|
48033
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
47883
48034
|
}
|
|
47884
48035
|
|
|
47885
48036
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -47927,49 +48078,10 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
47927
48078
|
* User-facing name of the Slides template.
|
|
47928
48079
|
*/
|
|
47929
48080
|
name?: string;
|
|
47930
|
-
dashboardSlidesTemplate?:
|
|
47931
|
-
widgetSlidesTemplate?:
|
|
47932
|
-
}
|
|
47933
|
-
|
|
47934
|
-
/**
|
|
47935
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47936
|
-
*/
|
|
47937
|
-
export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
|
|
47938
|
-
/**
|
|
47939
|
-
* Export types this template applies to.
|
|
47940
|
-
*/
|
|
47941
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
47942
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
47943
|
-
introSlide?: IntroSlideTemplate | null;
|
|
47944
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
47945
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
47946
|
-
}
|
|
47947
|
-
|
|
47948
|
-
export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
47949
|
-
readonly PDF: "PDF";
|
|
47950
|
-
readonly PPTX: "PPTX";
|
|
47951
|
-
};
|
|
47952
|
-
|
|
47953
|
-
export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
47954
|
-
|
|
47955
|
-
/**
|
|
47956
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47957
|
-
*/
|
|
47958
|
-
export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
|
|
47959
|
-
/**
|
|
47960
|
-
* Export types this template applies to.
|
|
47961
|
-
*/
|
|
47962
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
47963
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
48081
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
48082
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
47964
48083
|
}
|
|
47965
48084
|
|
|
47966
|
-
export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
47967
|
-
readonly PDF: "PDF";
|
|
47968
|
-
readonly PPTX: "PPTX";
|
|
47969
|
-
};
|
|
47970
|
-
|
|
47971
|
-
export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
47972
|
-
|
|
47973
48085
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
47974
48086
|
data: JsonApiExportTemplatePatch;
|
|
47975
48087
|
}
|
|
@@ -48073,7 +48185,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
48073
48185
|
export declare interface JsonApiFactOutList {
|
|
48074
48186
|
data: Array<JsonApiFactOutWithLinks>;
|
|
48075
48187
|
links?: ListLinks;
|
|
48076
|
-
meta?:
|
|
48188
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48077
48189
|
/**
|
|
48078
48190
|
* Included resources
|
|
48079
48191
|
*/
|
|
@@ -48123,7 +48235,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
48123
48235
|
* API identifier of an object
|
|
48124
48236
|
*/
|
|
48125
48237
|
id: string;
|
|
48126
|
-
attributes:
|
|
48238
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
48127
48239
|
}
|
|
48128
48240
|
|
|
48129
48241
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -48163,21 +48275,10 @@ export declare interface JsonApiFilterContextOut {
|
|
|
48163
48275
|
*/
|
|
48164
48276
|
id: string;
|
|
48165
48277
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48166
|
-
attributes:
|
|
48278
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
48167
48279
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48168
48280
|
}
|
|
48169
48281
|
|
|
48170
|
-
export declare interface JsonApiFilterContextOutAttributes {
|
|
48171
|
-
title?: string;
|
|
48172
|
-
description?: string;
|
|
48173
|
-
tags?: Array<string>;
|
|
48174
|
-
areRelationsValid?: boolean;
|
|
48175
|
-
/**
|
|
48176
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
48177
|
-
*/
|
|
48178
|
-
content: object;
|
|
48179
|
-
}
|
|
48180
|
-
|
|
48181
48282
|
export declare interface JsonApiFilterContextOutDocument {
|
|
48182
48283
|
data: JsonApiFilterContextOut;
|
|
48183
48284
|
links?: ObjectLinks;
|
|
@@ -48198,7 +48299,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
48198
48299
|
export declare interface JsonApiFilterContextOutList {
|
|
48199
48300
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
48200
48301
|
links?: ListLinks;
|
|
48201
|
-
meta?:
|
|
48302
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48202
48303
|
/**
|
|
48203
48304
|
* Included resources
|
|
48204
48305
|
*/
|
|
@@ -48227,7 +48328,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
48227
48328
|
*/
|
|
48228
48329
|
id: string;
|
|
48229
48330
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48230
|
-
attributes:
|
|
48331
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
48231
48332
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48232
48333
|
links?: ObjectLinks;
|
|
48233
48334
|
}
|
|
@@ -48275,7 +48376,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
48275
48376
|
* API identifier of an object
|
|
48276
48377
|
*/
|
|
48277
48378
|
id?: string;
|
|
48278
|
-
attributes:
|
|
48379
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
48279
48380
|
}
|
|
48280
48381
|
|
|
48281
48382
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -48300,14 +48401,34 @@ export declare interface JsonApiFilterViewIn {
|
|
|
48300
48401
|
* API identifier of an object
|
|
48301
48402
|
*/
|
|
48302
48403
|
id: string;
|
|
48303
|
-
attributes:
|
|
48304
|
-
relationships?:
|
|
48404
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
48405
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
48406
|
+
}
|
|
48407
|
+
|
|
48408
|
+
export declare interface JsonApiFilterViewInAttributes {
|
|
48409
|
+
title: string;
|
|
48410
|
+
description?: string;
|
|
48411
|
+
tags?: Array<string>;
|
|
48412
|
+
areRelationsValid?: boolean;
|
|
48413
|
+
/**
|
|
48414
|
+
* Indicator whether the filter view should by applied by default.
|
|
48415
|
+
*/
|
|
48416
|
+
isDefault?: boolean;
|
|
48417
|
+
/**
|
|
48418
|
+
* The respective filter context.
|
|
48419
|
+
*/
|
|
48420
|
+
content: object;
|
|
48305
48421
|
}
|
|
48306
48422
|
|
|
48307
48423
|
export declare interface JsonApiFilterViewInDocument {
|
|
48308
48424
|
data: JsonApiFilterViewIn;
|
|
48309
48425
|
}
|
|
48310
48426
|
|
|
48427
|
+
export declare interface JsonApiFilterViewInRelationships {
|
|
48428
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
48429
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48430
|
+
}
|
|
48431
|
+
|
|
48311
48432
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
48312
48433
|
readonly FILTER_VIEW: "filterView";
|
|
48313
48434
|
};
|
|
@@ -48326,23 +48447,8 @@ export declare interface JsonApiFilterViewOut {
|
|
|
48326
48447
|
* API identifier of an object
|
|
48327
48448
|
*/
|
|
48328
48449
|
id: string;
|
|
48329
|
-
attributes:
|
|
48330
|
-
relationships?:
|
|
48331
|
-
}
|
|
48332
|
-
|
|
48333
|
-
export declare interface JsonApiFilterViewOutAttributes {
|
|
48334
|
-
title: string;
|
|
48335
|
-
description?: string;
|
|
48336
|
-
tags?: Array<string>;
|
|
48337
|
-
areRelationsValid?: boolean;
|
|
48338
|
-
/**
|
|
48339
|
-
* Indicator whether the filter view should by applied by default.
|
|
48340
|
-
*/
|
|
48341
|
-
isDefault?: boolean;
|
|
48342
|
-
/**
|
|
48343
|
-
* The respective filter context.
|
|
48344
|
-
*/
|
|
48345
|
-
content: object;
|
|
48450
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
48451
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
48346
48452
|
}
|
|
48347
48453
|
|
|
48348
48454
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -48365,7 +48471,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
48365
48471
|
export declare interface JsonApiFilterViewOutList {
|
|
48366
48472
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
48367
48473
|
links?: ListLinks;
|
|
48368
|
-
meta?:
|
|
48474
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48369
48475
|
/**
|
|
48370
48476
|
* Included resources
|
|
48371
48477
|
*/
|
|
@@ -48387,8 +48493,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
48387
48493
|
* API identifier of an object
|
|
48388
48494
|
*/
|
|
48389
48495
|
id: string;
|
|
48390
|
-
attributes:
|
|
48391
|
-
relationships?:
|
|
48496
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
48497
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
48392
48498
|
links?: ObjectLinks;
|
|
48393
48499
|
}
|
|
48394
48500
|
|
|
@@ -48411,7 +48517,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
48411
48517
|
*/
|
|
48412
48518
|
id: string;
|
|
48413
48519
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
48414
|
-
relationships?:
|
|
48520
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
48415
48521
|
}
|
|
48416
48522
|
|
|
48417
48523
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -48433,15 +48539,6 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
48433
48539
|
data: JsonApiFilterViewPatch;
|
|
48434
48540
|
}
|
|
48435
48541
|
|
|
48436
|
-
export declare interface JsonApiFilterViewPatchRelationships {
|
|
48437
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
48438
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
48439
|
-
}
|
|
48440
|
-
|
|
48441
|
-
export declare interface JsonApiFilterViewPatchRelationshipsUser {
|
|
48442
|
-
data: JsonApiUserLinkage | null;
|
|
48443
|
-
}
|
|
48444
|
-
|
|
48445
48542
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
48446
48543
|
readonly FILTER_VIEW: "filterView";
|
|
48447
48544
|
};
|
|
@@ -48465,49 +48562,10 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
48465
48562
|
* API identifier of an object
|
|
48466
48563
|
*/
|
|
48467
48564
|
id: string;
|
|
48468
|
-
attributes?:
|
|
48469
|
-
}
|
|
48470
|
-
|
|
48471
|
-
export declare interface JsonApiIdentityProviderInDocument {
|
|
48472
|
-
data: JsonApiIdentityProviderIn;
|
|
48565
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
48473
48566
|
}
|
|
48474
48567
|
|
|
48475
|
-
export declare
|
|
48476
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48477
|
-
};
|
|
48478
|
-
|
|
48479
|
-
export declare type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
48480
|
-
|
|
48481
|
-
/**
|
|
48482
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
48483
|
-
*/
|
|
48484
|
-
export declare interface JsonApiIdentityProviderLinkage {
|
|
48485
|
-
id: string;
|
|
48486
|
-
type: JsonApiIdentityProviderLinkageTypeEnum;
|
|
48487
|
-
}
|
|
48488
|
-
|
|
48489
|
-
export declare const JsonApiIdentityProviderLinkageTypeEnum: {
|
|
48490
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48491
|
-
};
|
|
48492
|
-
|
|
48493
|
-
export declare type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
|
|
48494
|
-
|
|
48495
|
-
/**
|
|
48496
|
-
* JSON:API representation of identityProvider entity.
|
|
48497
|
-
*/
|
|
48498
|
-
export declare interface JsonApiIdentityProviderOut {
|
|
48499
|
-
/**
|
|
48500
|
-
* Object type
|
|
48501
|
-
*/
|
|
48502
|
-
type: JsonApiIdentityProviderOutTypeEnum;
|
|
48503
|
-
/**
|
|
48504
|
-
* API identifier of an object
|
|
48505
|
-
*/
|
|
48506
|
-
id: string;
|
|
48507
|
-
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48508
|
-
}
|
|
48509
|
-
|
|
48510
|
-
export declare interface JsonApiIdentityProviderOutAttributes {
|
|
48568
|
+
export declare interface JsonApiIdentityProviderInAttributes {
|
|
48511
48569
|
/**
|
|
48512
48570
|
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
48513
48571
|
*/
|
|
@@ -48518,10 +48576,18 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
48518
48576
|
customClaimMapping?: {
|
|
48519
48577
|
[key: string]: string;
|
|
48520
48578
|
};
|
|
48579
|
+
/**
|
|
48580
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
48581
|
+
*/
|
|
48582
|
+
samlMetadata?: string;
|
|
48521
48583
|
/**
|
|
48522
48584
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48523
48585
|
*/
|
|
48524
48586
|
oauthClientId?: string;
|
|
48587
|
+
/**
|
|
48588
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48589
|
+
*/
|
|
48590
|
+
oauthClientSecret?: string;
|
|
48525
48591
|
/**
|
|
48526
48592
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48527
48593
|
*/
|
|
@@ -48547,73 +48613,58 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
48547
48613
|
/**
|
|
48548
48614
|
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
48549
48615
|
*/
|
|
48550
|
-
idpType?:
|
|
48616
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
48551
48617
|
}
|
|
48552
48618
|
|
|
48553
|
-
export declare const
|
|
48619
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
48554
48620
|
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
48555
48621
|
readonly FIM_IDP: "FIM_IDP";
|
|
48556
48622
|
readonly DEX_IDP: "DEX_IDP";
|
|
48557
48623
|
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
48558
48624
|
};
|
|
48559
48625
|
|
|
48560
|
-
export declare type
|
|
48561
|
-
|
|
48562
|
-
export declare interface JsonApiIdentityProviderOutDocument {
|
|
48563
|
-
data: JsonApiIdentityProviderOut;
|
|
48564
|
-
links?: ObjectLinks;
|
|
48565
|
-
}
|
|
48626
|
+
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderInAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
48566
48627
|
|
|
48567
|
-
|
|
48568
|
-
|
|
48569
|
-
*/
|
|
48570
|
-
export declare interface JsonApiIdentityProviderOutList {
|
|
48571
|
-
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48572
|
-
links?: ListLinks;
|
|
48573
|
-
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48628
|
+
export declare interface JsonApiIdentityProviderInDocument {
|
|
48629
|
+
data: JsonApiIdentityProviderIn;
|
|
48574
48630
|
}
|
|
48575
48631
|
|
|
48576
|
-
export declare const
|
|
48632
|
+
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
48577
48633
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48578
48634
|
};
|
|
48579
48635
|
|
|
48580
|
-
export declare type
|
|
48636
|
+
export declare type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
48581
48637
|
|
|
48582
|
-
|
|
48583
|
-
|
|
48584
|
-
|
|
48585
|
-
|
|
48586
|
-
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
48587
|
-
/**
|
|
48588
|
-
* API identifier of an object
|
|
48589
|
-
*/
|
|
48638
|
+
/**
|
|
48639
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
48640
|
+
*/
|
|
48641
|
+
export declare interface JsonApiIdentityProviderLinkage {
|
|
48590
48642
|
id: string;
|
|
48591
|
-
|
|
48592
|
-
links?: ObjectLinks;
|
|
48643
|
+
type: JsonApiIdentityProviderLinkageTypeEnum;
|
|
48593
48644
|
}
|
|
48594
48645
|
|
|
48595
|
-
export declare const
|
|
48646
|
+
export declare const JsonApiIdentityProviderLinkageTypeEnum: {
|
|
48596
48647
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48597
48648
|
};
|
|
48598
48649
|
|
|
48599
|
-
export declare type
|
|
48650
|
+
export declare type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
|
|
48600
48651
|
|
|
48601
48652
|
/**
|
|
48602
|
-
* JSON:API representation of
|
|
48653
|
+
* JSON:API representation of identityProvider entity.
|
|
48603
48654
|
*/
|
|
48604
|
-
export declare interface
|
|
48655
|
+
export declare interface JsonApiIdentityProviderOut {
|
|
48605
48656
|
/**
|
|
48606
48657
|
* Object type
|
|
48607
48658
|
*/
|
|
48608
|
-
type:
|
|
48659
|
+
type: JsonApiIdentityProviderOutTypeEnum;
|
|
48609
48660
|
/**
|
|
48610
48661
|
* API identifier of an object
|
|
48611
48662
|
*/
|
|
48612
48663
|
id: string;
|
|
48613
|
-
attributes?:
|
|
48664
|
+
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48614
48665
|
}
|
|
48615
48666
|
|
|
48616
|
-
export declare interface
|
|
48667
|
+
export declare interface JsonApiIdentityProviderOutAttributes {
|
|
48617
48668
|
/**
|
|
48618
48669
|
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
48619
48670
|
*/
|
|
@@ -48624,18 +48675,10 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
|
48624
48675
|
customClaimMapping?: {
|
|
48625
48676
|
[key: string]: string;
|
|
48626
48677
|
};
|
|
48627
|
-
/**
|
|
48628
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
48629
|
-
*/
|
|
48630
|
-
samlMetadata?: string;
|
|
48631
48678
|
/**
|
|
48632
48679
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48633
48680
|
*/
|
|
48634
48681
|
oauthClientId?: string;
|
|
48635
|
-
/**
|
|
48636
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48637
|
-
*/
|
|
48638
|
-
oauthClientSecret?: string;
|
|
48639
48682
|
/**
|
|
48640
48683
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48641
48684
|
*/
|
|
@@ -48661,17 +48704,71 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
|
48661
48704
|
/**
|
|
48662
48705
|
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
48663
48706
|
*/
|
|
48664
|
-
idpType?:
|
|
48707
|
+
idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
|
|
48665
48708
|
}
|
|
48666
48709
|
|
|
48667
|
-
export declare const
|
|
48710
|
+
export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
|
|
48668
48711
|
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
48669
48712
|
readonly FIM_IDP: "FIM_IDP";
|
|
48670
48713
|
readonly DEX_IDP: "DEX_IDP";
|
|
48671
48714
|
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
48672
48715
|
};
|
|
48673
48716
|
|
|
48674
|
-
export declare type
|
|
48717
|
+
export declare type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
|
|
48718
|
+
|
|
48719
|
+
export declare interface JsonApiIdentityProviderOutDocument {
|
|
48720
|
+
data: JsonApiIdentityProviderOut;
|
|
48721
|
+
links?: ObjectLinks;
|
|
48722
|
+
}
|
|
48723
|
+
|
|
48724
|
+
/**
|
|
48725
|
+
* A JSON:API document with a list of resources
|
|
48726
|
+
*/
|
|
48727
|
+
export declare interface JsonApiIdentityProviderOutList {
|
|
48728
|
+
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48729
|
+
links?: ListLinks;
|
|
48730
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48731
|
+
}
|
|
48732
|
+
|
|
48733
|
+
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
48734
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48735
|
+
};
|
|
48736
|
+
|
|
48737
|
+
export declare type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
|
|
48738
|
+
|
|
48739
|
+
export declare interface JsonApiIdentityProviderOutWithLinks {
|
|
48740
|
+
/**
|
|
48741
|
+
* Object type
|
|
48742
|
+
*/
|
|
48743
|
+
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
48744
|
+
/**
|
|
48745
|
+
* API identifier of an object
|
|
48746
|
+
*/
|
|
48747
|
+
id: string;
|
|
48748
|
+
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48749
|
+
links?: ObjectLinks;
|
|
48750
|
+
}
|
|
48751
|
+
|
|
48752
|
+
export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
|
|
48753
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48754
|
+
};
|
|
48755
|
+
|
|
48756
|
+
export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
|
|
48757
|
+
|
|
48758
|
+
/**
|
|
48759
|
+
* JSON:API representation of patching identityProvider entity.
|
|
48760
|
+
*/
|
|
48761
|
+
export declare interface JsonApiIdentityProviderPatch {
|
|
48762
|
+
/**
|
|
48763
|
+
* Object type
|
|
48764
|
+
*/
|
|
48765
|
+
type: JsonApiIdentityProviderPatchTypeEnum;
|
|
48766
|
+
/**
|
|
48767
|
+
* API identifier of an object
|
|
48768
|
+
*/
|
|
48769
|
+
id: string;
|
|
48770
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
48771
|
+
}
|
|
48675
48772
|
|
|
48676
48773
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
48677
48774
|
data: JsonApiIdentityProviderPatch;
|
|
@@ -48695,7 +48792,7 @@ export declare interface JsonApiJwkIn {
|
|
|
48695
48792
|
* API identifier of an object
|
|
48696
48793
|
*/
|
|
48697
48794
|
id: string;
|
|
48698
|
-
attributes?:
|
|
48795
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
48699
48796
|
}
|
|
48700
48797
|
|
|
48701
48798
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -48720,7 +48817,11 @@ export declare interface JsonApiJwkOut {
|
|
|
48720
48817
|
* API identifier of an object
|
|
48721
48818
|
*/
|
|
48722
48819
|
id: string;
|
|
48723
|
-
attributes?:
|
|
48820
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
48821
|
+
}
|
|
48822
|
+
|
|
48823
|
+
export declare interface JsonApiJwkOutAttributes {
|
|
48824
|
+
content?: RsaSpecification;
|
|
48724
48825
|
}
|
|
48725
48826
|
|
|
48726
48827
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -48734,7 +48835,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
48734
48835
|
export declare interface JsonApiJwkOutList {
|
|
48735
48836
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
48736
48837
|
links?: ListLinks;
|
|
48737
|
-
meta?:
|
|
48838
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48738
48839
|
}
|
|
48739
48840
|
|
|
48740
48841
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -48752,7 +48853,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
48752
48853
|
* API identifier of an object
|
|
48753
48854
|
*/
|
|
48754
48855
|
id: string;
|
|
48755
|
-
attributes?:
|
|
48856
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
48756
48857
|
links?: ObjectLinks;
|
|
48757
48858
|
}
|
|
48758
48859
|
|
|
@@ -48774,11 +48875,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
48774
48875
|
* API identifier of an object
|
|
48775
48876
|
*/
|
|
48776
48877
|
id: string;
|
|
48777
|
-
attributes?:
|
|
48778
|
-
}
|
|
48779
|
-
|
|
48780
|
-
export declare interface JsonApiJwkPatchAttributes {
|
|
48781
|
-
content?: RsaSpecification;
|
|
48878
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
48782
48879
|
}
|
|
48783
48880
|
|
|
48784
48881
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -48881,7 +48978,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
48881
48978
|
export declare interface JsonApiLabelOutList {
|
|
48882
48979
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
48883
48980
|
links?: ListLinks;
|
|
48884
|
-
meta?:
|
|
48981
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
48885
48982
|
/**
|
|
48886
48983
|
* Included resources
|
|
48887
48984
|
*/
|
|
@@ -49038,7 +49135,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
49038
49135
|
export declare interface JsonApiLlmEndpointOutList {
|
|
49039
49136
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
49040
49137
|
links?: ListLinks;
|
|
49041
|
-
meta?:
|
|
49138
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49042
49139
|
}
|
|
49043
49140
|
|
|
49044
49141
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -49137,39 +49234,9 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
49137
49234
|
* API identifier of an object
|
|
49138
49235
|
*/
|
|
49139
49236
|
id: string;
|
|
49140
|
-
attributes:
|
|
49237
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
49141
49238
|
}
|
|
49142
49239
|
|
|
49143
|
-
export declare interface JsonApiMemoryItemInAttributes {
|
|
49144
|
-
title?: string;
|
|
49145
|
-
description?: string;
|
|
49146
|
-
tags?: Array<string>;
|
|
49147
|
-
areRelationsValid?: boolean;
|
|
49148
|
-
/**
|
|
49149
|
-
* Strategy defining when the memory item should be applied
|
|
49150
|
-
*/
|
|
49151
|
-
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
49152
|
-
/**
|
|
49153
|
-
* The text that will be injected into the system prompt
|
|
49154
|
-
*/
|
|
49155
|
-
instruction: string;
|
|
49156
|
-
/**
|
|
49157
|
-
* Set of unique strings used for semantic similarity filtering
|
|
49158
|
-
*/
|
|
49159
|
-
keywords?: Array<string>;
|
|
49160
|
-
/**
|
|
49161
|
-
* Whether memory item is disabled
|
|
49162
|
-
*/
|
|
49163
|
-
isDisabled?: boolean;
|
|
49164
|
-
}
|
|
49165
|
-
|
|
49166
|
-
export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
|
|
49167
|
-
readonly ALWAYS: "ALWAYS";
|
|
49168
|
-
readonly AUTO: "AUTO";
|
|
49169
|
-
};
|
|
49170
|
-
|
|
49171
|
-
export declare type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
|
|
49172
|
-
|
|
49173
49240
|
export declare interface JsonApiMemoryItemInDocument {
|
|
49174
49241
|
data: JsonApiMemoryItemIn;
|
|
49175
49242
|
}
|
|
@@ -49244,7 +49311,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
49244
49311
|
export declare interface JsonApiMemoryItemOutList {
|
|
49245
49312
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
49246
49313
|
links?: ListLinks;
|
|
49247
|
-
meta?:
|
|
49314
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49248
49315
|
/**
|
|
49249
49316
|
* Included resources
|
|
49250
49317
|
*/
|
|
@@ -49345,9 +49412,39 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
49345
49412
|
* API identifier of an object
|
|
49346
49413
|
*/
|
|
49347
49414
|
id?: string;
|
|
49348
|
-
attributes:
|
|
49415
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
49416
|
+
}
|
|
49417
|
+
|
|
49418
|
+
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
49419
|
+
title?: string;
|
|
49420
|
+
description?: string;
|
|
49421
|
+
tags?: Array<string>;
|
|
49422
|
+
areRelationsValid?: boolean;
|
|
49423
|
+
/**
|
|
49424
|
+
* Strategy defining when the memory item should be applied
|
|
49425
|
+
*/
|
|
49426
|
+
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
49427
|
+
/**
|
|
49428
|
+
* The text that will be injected into the system prompt
|
|
49429
|
+
*/
|
|
49430
|
+
instruction: string;
|
|
49431
|
+
/**
|
|
49432
|
+
* Set of unique strings used for semantic similarity filtering
|
|
49433
|
+
*/
|
|
49434
|
+
keywords?: Array<string>;
|
|
49435
|
+
/**
|
|
49436
|
+
* Whether memory item is disabled
|
|
49437
|
+
*/
|
|
49438
|
+
isDisabled?: boolean;
|
|
49349
49439
|
}
|
|
49350
49440
|
|
|
49441
|
+
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
49442
|
+
readonly ALWAYS: "ALWAYS";
|
|
49443
|
+
readonly AUTO: "AUTO";
|
|
49444
|
+
};
|
|
49445
|
+
|
|
49446
|
+
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
49447
|
+
|
|
49351
49448
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
49352
49449
|
data: JsonApiMemoryItemPostOptionalId;
|
|
49353
49450
|
}
|
|
@@ -49370,16 +49467,7 @@ export declare interface JsonApiMetricIn {
|
|
|
49370
49467
|
* API identifier of an object
|
|
49371
49468
|
*/
|
|
49372
49469
|
id: string;
|
|
49373
|
-
attributes:
|
|
49374
|
-
}
|
|
49375
|
-
|
|
49376
|
-
export declare interface JsonApiMetricInAttributes {
|
|
49377
|
-
title?: string;
|
|
49378
|
-
description?: string;
|
|
49379
|
-
tags?: Array<string>;
|
|
49380
|
-
areRelationsValid?: boolean;
|
|
49381
|
-
content: JsonApiMetricOutAttributesContent;
|
|
49382
|
-
isHidden?: boolean;
|
|
49470
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
49383
49471
|
}
|
|
49384
49472
|
|
|
49385
49473
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -49459,7 +49547,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
49459
49547
|
export declare interface JsonApiMetricOutList {
|
|
49460
49548
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
49461
49549
|
links?: ListLinks;
|
|
49462
|
-
meta?:
|
|
49550
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49463
49551
|
/**
|
|
49464
49552
|
* Included resources
|
|
49465
49553
|
*/
|
|
@@ -49539,7 +49627,16 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
49539
49627
|
* API identifier of an object
|
|
49540
49628
|
*/
|
|
49541
49629
|
id?: string;
|
|
49542
|
-
attributes:
|
|
49630
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
49631
|
+
}
|
|
49632
|
+
|
|
49633
|
+
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
49634
|
+
title?: string;
|
|
49635
|
+
description?: string;
|
|
49636
|
+
tags?: Array<string>;
|
|
49637
|
+
areRelationsValid?: boolean;
|
|
49638
|
+
content: JsonApiMetricOutAttributesContent;
|
|
49639
|
+
isHidden?: boolean;
|
|
49543
49640
|
}
|
|
49544
49641
|
|
|
49545
49642
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -49605,7 +49702,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
49605
49702
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
49606
49703
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
49607
49704
|
links?: ListLinks;
|
|
49608
|
-
meta?:
|
|
49705
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49609
49706
|
}
|
|
49610
49707
|
|
|
49611
49708
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -49645,9 +49742,58 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
49645
49742
|
* API identifier of an object
|
|
49646
49743
|
*/
|
|
49647
49744
|
id: string;
|
|
49648
|
-
attributes?:
|
|
49745
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
49649
49746
|
}
|
|
49650
49747
|
|
|
49748
|
+
export declare interface JsonApiNotificationChannelInAttributes {
|
|
49749
|
+
name?: string | null;
|
|
49750
|
+
description?: string | null;
|
|
49751
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
49752
|
+
/**
|
|
49753
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
49754
|
+
*/
|
|
49755
|
+
customDashboardUrl?: string;
|
|
49756
|
+
/**
|
|
49757
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
49758
|
+
*/
|
|
49759
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
49760
|
+
/**
|
|
49761
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
49762
|
+
*/
|
|
49763
|
+
notificationSource?: string;
|
|
49764
|
+
/**
|
|
49765
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
49766
|
+
*/
|
|
49767
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
49768
|
+
/**
|
|
49769
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
49770
|
+
*/
|
|
49771
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
49772
|
+
}
|
|
49773
|
+
|
|
49774
|
+
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
49775
|
+
readonly CREATOR: "CREATOR";
|
|
49776
|
+
readonly INTERNAL: "INTERNAL";
|
|
49777
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
49778
|
+
};
|
|
49779
|
+
|
|
49780
|
+
export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
49781
|
+
|
|
49782
|
+
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
49783
|
+
readonly HIDDEN: "HIDDEN";
|
|
49784
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49785
|
+
readonly ALL: "ALL";
|
|
49786
|
+
};
|
|
49787
|
+
|
|
49788
|
+
export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
49789
|
+
|
|
49790
|
+
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
49791
|
+
readonly DISABLED: "DISABLED";
|
|
49792
|
+
readonly ENABLED: "ENABLED";
|
|
49793
|
+
};
|
|
49794
|
+
|
|
49795
|
+
export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
49796
|
+
|
|
49651
49797
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
49652
49798
|
data: JsonApiNotificationChannelIn;
|
|
49653
49799
|
}
|
|
@@ -49690,7 +49836,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
49690
49836
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
49691
49837
|
name?: string | null;
|
|
49692
49838
|
description?: string | null;
|
|
49693
|
-
destination?:
|
|
49839
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
49694
49840
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
49695
49841
|
/**
|
|
49696
49842
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
@@ -49730,6 +49876,12 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
|
|
|
49730
49876
|
|
|
49731
49877
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
|
|
49732
49878
|
|
|
49879
|
+
/**
|
|
49880
|
+
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
49881
|
+
* The destination where the notifications are to be sent.
|
|
49882
|
+
*/
|
|
49883
|
+
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49884
|
+
|
|
49733
49885
|
export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
|
|
49734
49886
|
readonly WEBHOOK: "WEBHOOK";
|
|
49735
49887
|
readonly SMTP: "SMTP";
|
|
@@ -49757,7 +49909,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
49757
49909
|
export declare interface JsonApiNotificationChannelOutList {
|
|
49758
49910
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
49759
49911
|
links?: ListLinks;
|
|
49760
|
-
meta?:
|
|
49912
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
49761
49913
|
}
|
|
49762
49914
|
|
|
49763
49915
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -49797,64 +49949,9 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
49797
49949
|
* API identifier of an object
|
|
49798
49950
|
*/
|
|
49799
49951
|
id: string;
|
|
49800
|
-
attributes?:
|
|
49801
|
-
}
|
|
49802
|
-
|
|
49803
|
-
export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
49804
|
-
name?: string | null;
|
|
49805
|
-
description?: string | null;
|
|
49806
|
-
destination?: JsonApiNotificationChannelPatchAttributesDestination;
|
|
49807
|
-
/**
|
|
49808
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
49809
|
-
*/
|
|
49810
|
-
customDashboardUrl?: string;
|
|
49811
|
-
/**
|
|
49812
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
49813
|
-
*/
|
|
49814
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
49815
|
-
/**
|
|
49816
|
-
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
49817
|
-
*/
|
|
49818
|
-
notificationSource?: string;
|
|
49819
|
-
/**
|
|
49820
|
-
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
49821
|
-
*/
|
|
49822
|
-
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
49823
|
-
/**
|
|
49824
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
49825
|
-
*/
|
|
49826
|
-
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
49952
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
49827
49953
|
}
|
|
49828
49954
|
|
|
49829
|
-
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
49830
|
-
readonly CREATOR: "CREATOR";
|
|
49831
|
-
readonly INTERNAL: "INTERNAL";
|
|
49832
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
49833
|
-
};
|
|
49834
|
-
|
|
49835
|
-
export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
49836
|
-
|
|
49837
|
-
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
49838
|
-
readonly HIDDEN: "HIDDEN";
|
|
49839
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49840
|
-
readonly ALL: "ALL";
|
|
49841
|
-
};
|
|
49842
|
-
|
|
49843
|
-
export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
49844
|
-
|
|
49845
|
-
/**
|
|
49846
|
-
* @type JsonApiNotificationChannelPatchAttributesDestination
|
|
49847
|
-
* The destination where the notifications are to be sent.
|
|
49848
|
-
*/
|
|
49849
|
-
export declare type JsonApiNotificationChannelPatchAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49850
|
-
|
|
49851
|
-
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
49852
|
-
readonly DISABLED: "DISABLED";
|
|
49853
|
-
readonly ENABLED: "ENABLED";
|
|
49854
|
-
};
|
|
49855
|
-
|
|
49856
|
-
export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
49857
|
-
|
|
49858
49955
|
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
49859
49956
|
data: JsonApiNotificationChannelPatch;
|
|
49860
49957
|
}
|
|
@@ -49877,7 +49974,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
49877
49974
|
* API identifier of an object
|
|
49878
49975
|
*/
|
|
49879
49976
|
id?: string;
|
|
49880
|
-
attributes?:
|
|
49977
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
49881
49978
|
}
|
|
49882
49979
|
|
|
49883
49980
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
@@ -49902,14 +49999,37 @@ export declare interface JsonApiOrganizationIn {
|
|
|
49902
49999
|
* API identifier of an object
|
|
49903
50000
|
*/
|
|
49904
50001
|
id: string;
|
|
49905
|
-
attributes?:
|
|
49906
|
-
relationships?:
|
|
50002
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
50003
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
50004
|
+
}
|
|
50005
|
+
|
|
50006
|
+
export declare interface JsonApiOrganizationInAttributes {
|
|
50007
|
+
name?: string | null;
|
|
50008
|
+
hostname?: string;
|
|
50009
|
+
allowedOrigins?: Array<string>;
|
|
50010
|
+
/**
|
|
50011
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
50012
|
+
* @deprecated
|
|
50013
|
+
*/
|
|
50014
|
+
earlyAccess?: string | null;
|
|
50015
|
+
/**
|
|
50016
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
50017
|
+
*/
|
|
50018
|
+
earlyAccessValues?: Array<string> | null;
|
|
49907
50019
|
}
|
|
49908
50020
|
|
|
49909
50021
|
export declare interface JsonApiOrganizationInDocument {
|
|
49910
50022
|
data: JsonApiOrganizationIn;
|
|
49911
50023
|
}
|
|
49912
50024
|
|
|
50025
|
+
export declare interface JsonApiOrganizationInRelationships {
|
|
50026
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
50027
|
+
}
|
|
50028
|
+
|
|
50029
|
+
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
50030
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
50031
|
+
}
|
|
50032
|
+
|
|
49913
50033
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
49914
50034
|
readonly ORGANIZATION: "organization";
|
|
49915
50035
|
};
|
|
@@ -49990,9 +50110,17 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
49990
50110
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
49991
50111
|
|
|
49992
50112
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
49993
|
-
bootstrapUser?:
|
|
49994
|
-
bootstrapUserGroup?:
|
|
49995
|
-
identityProvider?:
|
|
50113
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
50114
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
50115
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
50116
|
+
}
|
|
50117
|
+
|
|
50118
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
50119
|
+
data: JsonApiUserLinkage | null;
|
|
50120
|
+
}
|
|
50121
|
+
|
|
50122
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
50123
|
+
data: JsonApiUserGroupLinkage | null;
|
|
49996
50124
|
}
|
|
49997
50125
|
|
|
49998
50126
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -50013,37 +50141,14 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
50013
50141
|
* API identifier of an object
|
|
50014
50142
|
*/
|
|
50015
50143
|
id: string;
|
|
50016
|
-
attributes?:
|
|
50017
|
-
relationships?:
|
|
50018
|
-
}
|
|
50019
|
-
|
|
50020
|
-
export declare interface JsonApiOrganizationPatchAttributes {
|
|
50021
|
-
name?: string | null;
|
|
50022
|
-
hostname?: string;
|
|
50023
|
-
allowedOrigins?: Array<string>;
|
|
50024
|
-
/**
|
|
50025
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
50026
|
-
* @deprecated
|
|
50027
|
-
*/
|
|
50028
|
-
earlyAccess?: string | null;
|
|
50029
|
-
/**
|
|
50030
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
50031
|
-
*/
|
|
50032
|
-
earlyAccessValues?: Array<string> | null;
|
|
50144
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
50145
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
50033
50146
|
}
|
|
50034
50147
|
|
|
50035
50148
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
50036
50149
|
data: JsonApiOrganizationPatch;
|
|
50037
50150
|
}
|
|
50038
50151
|
|
|
50039
|
-
export declare interface JsonApiOrganizationPatchRelationships {
|
|
50040
|
-
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
50041
|
-
}
|
|
50042
|
-
|
|
50043
|
-
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
50044
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
50045
|
-
}
|
|
50046
|
-
|
|
50047
50152
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
50048
50153
|
readonly ORGANIZATION: "organization";
|
|
50049
50154
|
};
|
|
@@ -50062,7 +50167,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
50062
50167
|
* API identifier of an object
|
|
50063
50168
|
*/
|
|
50064
50169
|
id: string;
|
|
50065
|
-
attributes?:
|
|
50170
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50066
50171
|
}
|
|
50067
50172
|
|
|
50068
50173
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -50087,7 +50192,7 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
50087
50192
|
* API identifier of an object
|
|
50088
50193
|
*/
|
|
50089
50194
|
id: string;
|
|
50090
|
-
attributes?:
|
|
50195
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50091
50196
|
}
|
|
50092
50197
|
|
|
50093
50198
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
@@ -50101,7 +50206,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
50101
50206
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
50102
50207
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
50103
50208
|
links?: ListLinks;
|
|
50104
|
-
meta?:
|
|
50209
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50105
50210
|
}
|
|
50106
50211
|
|
|
50107
50212
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -50119,7 +50224,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
50119
50224
|
* API identifier of an object
|
|
50120
50225
|
*/
|
|
50121
50226
|
id: string;
|
|
50122
|
-
attributes?:
|
|
50227
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50123
50228
|
links?: ObjectLinks;
|
|
50124
50229
|
}
|
|
50125
50230
|
|
|
@@ -50141,55 +50246,9 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
50141
50246
|
* API identifier of an object
|
|
50142
50247
|
*/
|
|
50143
50248
|
id: string;
|
|
50144
|
-
attributes?:
|
|
50249
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50145
50250
|
}
|
|
50146
50251
|
|
|
50147
|
-
export declare interface JsonApiOrganizationSettingPatchAttributes {
|
|
50148
|
-
/**
|
|
50149
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50150
|
-
*/
|
|
50151
|
-
content?: object;
|
|
50152
|
-
type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
|
|
50153
|
-
}
|
|
50154
|
-
|
|
50155
|
-
export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
|
|
50156
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
50157
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50158
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50159
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50160
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50161
|
-
readonly LOCALE: "LOCALE";
|
|
50162
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50163
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50164
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50165
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50166
|
-
readonly WEEK_START: "WEEK_START";
|
|
50167
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50168
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50169
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50170
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50171
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50172
|
-
readonly ALERT: "ALERT";
|
|
50173
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
50174
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50175
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50176
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50177
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50178
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50179
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50180
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50181
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50182
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50183
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50184
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50185
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50186
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50187
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50188
|
-
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50189
|
-
};
|
|
50190
|
-
|
|
50191
|
-
export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = (typeof JsonApiOrganizationSettingPatchAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
|
|
50192
|
-
|
|
50193
50252
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
50194
50253
|
data: JsonApiOrganizationSettingPatch;
|
|
50195
50254
|
}
|
|
@@ -50251,7 +50310,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
50251
50310
|
export declare interface JsonApiThemeOutList {
|
|
50252
50311
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
50253
50312
|
links?: ListLinks;
|
|
50254
|
-
meta?:
|
|
50313
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50255
50314
|
}
|
|
50256
50315
|
|
|
50257
50316
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -50316,8 +50375,8 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
50316
50375
|
* API identifier of an object
|
|
50317
50376
|
*/
|
|
50318
50377
|
id: string;
|
|
50319
|
-
attributes:
|
|
50320
|
-
relationships?:
|
|
50378
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
50379
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
50321
50380
|
}
|
|
50322
50381
|
|
|
50323
50382
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
@@ -50343,18 +50402,10 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
50343
50402
|
*/
|
|
50344
50403
|
id: string;
|
|
50345
50404
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50346
|
-
attributes:
|
|
50405
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
50347
50406
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50348
50407
|
}
|
|
50349
50408
|
|
|
50350
|
-
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
50351
|
-
title?: string;
|
|
50352
|
-
description?: string;
|
|
50353
|
-
tags?: Array<string>;
|
|
50354
|
-
areRelationsValid?: boolean;
|
|
50355
|
-
maql: string;
|
|
50356
|
-
}
|
|
50357
|
-
|
|
50358
50409
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
50359
50410
|
data: JsonApiUserDataFilterOut;
|
|
50360
50411
|
links?: ObjectLinks;
|
|
@@ -50375,7 +50426,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
50375
50426
|
export declare interface JsonApiUserDataFilterOutList {
|
|
50376
50427
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
50377
50428
|
links?: ListLinks;
|
|
50378
|
-
meta?:
|
|
50429
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50379
50430
|
/**
|
|
50380
50431
|
* Included resources
|
|
50381
50432
|
*/
|
|
@@ -50383,8 +50434,8 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
50383
50434
|
}
|
|
50384
50435
|
|
|
50385
50436
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
50386
|
-
user?:
|
|
50387
|
-
userGroup?:
|
|
50437
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
50438
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
50388
50439
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
50389
50440
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
50390
50441
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -50408,7 +50459,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
50408
50459
|
*/
|
|
50409
50460
|
id: string;
|
|
50410
50461
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50411
|
-
attributes:
|
|
50462
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
50412
50463
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50413
50464
|
links?: ObjectLinks;
|
|
50414
50465
|
}
|
|
@@ -50432,7 +50483,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
50432
50483
|
*/
|
|
50433
50484
|
id: string;
|
|
50434
50485
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
50435
|
-
relationships?:
|
|
50486
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
50436
50487
|
}
|
|
50437
50488
|
|
|
50438
50489
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -50447,15 +50498,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
50447
50498
|
data: JsonApiUserDataFilterPatch;
|
|
50448
50499
|
}
|
|
50449
50500
|
|
|
50450
|
-
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
50451
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
50452
|
-
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
50453
|
-
}
|
|
50454
|
-
|
|
50455
|
-
export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
50456
|
-
data: JsonApiUserGroupLinkage | null;
|
|
50457
|
-
}
|
|
50458
|
-
|
|
50459
50501
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
50460
50502
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50461
50503
|
};
|
|
@@ -50474,14 +50516,27 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
50474
50516
|
* API identifier of an object
|
|
50475
50517
|
*/
|
|
50476
50518
|
id?: string;
|
|
50477
|
-
attributes:
|
|
50478
|
-
relationships?:
|
|
50519
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
50520
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
50521
|
+
}
|
|
50522
|
+
|
|
50523
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
50524
|
+
title?: string;
|
|
50525
|
+
description?: string;
|
|
50526
|
+
tags?: Array<string>;
|
|
50527
|
+
areRelationsValid?: boolean;
|
|
50528
|
+
maql: string;
|
|
50479
50529
|
}
|
|
50480
50530
|
|
|
50481
50531
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
50482
50532
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
50483
50533
|
}
|
|
50484
50534
|
|
|
50535
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
50536
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
50537
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
50538
|
+
}
|
|
50539
|
+
|
|
50485
50540
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
50486
50541
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50487
50542
|
};
|
|
@@ -50500,8 +50555,8 @@ export declare interface JsonApiUserGroupIn {
|
|
|
50500
50555
|
* API identifier of an object
|
|
50501
50556
|
*/
|
|
50502
50557
|
id: string;
|
|
50503
|
-
attributes?:
|
|
50504
|
-
relationships?:
|
|
50558
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
50559
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
50505
50560
|
}
|
|
50506
50561
|
|
|
50507
50562
|
export declare interface JsonApiUserGroupInDocument {
|
|
@@ -50540,8 +50595,12 @@ export declare interface JsonApiUserGroupOut {
|
|
|
50540
50595
|
* API identifier of an object
|
|
50541
50596
|
*/
|
|
50542
50597
|
id: string;
|
|
50543
|
-
attributes?:
|
|
50544
|
-
relationships?:
|
|
50598
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
50599
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
50600
|
+
}
|
|
50601
|
+
|
|
50602
|
+
export declare interface JsonApiUserGroupOutAttributes {
|
|
50603
|
+
name?: string;
|
|
50545
50604
|
}
|
|
50546
50605
|
|
|
50547
50606
|
export declare interface JsonApiUserGroupOutDocument {
|
|
@@ -50559,13 +50618,17 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
50559
50618
|
export declare interface JsonApiUserGroupOutList {
|
|
50560
50619
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
50561
50620
|
links?: ListLinks;
|
|
50562
|
-
meta?:
|
|
50621
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50563
50622
|
/**
|
|
50564
50623
|
* Included resources
|
|
50565
50624
|
*/
|
|
50566
50625
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50567
50626
|
}
|
|
50568
50627
|
|
|
50628
|
+
export declare interface JsonApiUserGroupOutRelationships {
|
|
50629
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
50630
|
+
}
|
|
50631
|
+
|
|
50569
50632
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
50570
50633
|
readonly USER_GROUP: "userGroup";
|
|
50571
50634
|
};
|
|
@@ -50581,8 +50644,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
|
|
|
50581
50644
|
* API identifier of an object
|
|
50582
50645
|
*/
|
|
50583
50646
|
id: string;
|
|
50584
|
-
attributes?:
|
|
50585
|
-
relationships?:
|
|
50647
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
50648
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
50586
50649
|
links?: ObjectLinks;
|
|
50587
50650
|
}
|
|
50588
50651
|
|
|
@@ -50604,29 +50667,14 @@ export declare interface JsonApiUserGroupPatch {
|
|
|
50604
50667
|
* API identifier of an object
|
|
50605
50668
|
*/
|
|
50606
50669
|
id: string;
|
|
50607
|
-
attributes?:
|
|
50608
|
-
relationships?:
|
|
50609
|
-
}
|
|
50610
|
-
|
|
50611
|
-
export declare interface JsonApiUserGroupPatchAttributes {
|
|
50612
|
-
name?: string;
|
|
50670
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
50671
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
50613
50672
|
}
|
|
50614
50673
|
|
|
50615
50674
|
export declare interface JsonApiUserGroupPatchDocument {
|
|
50616
50675
|
data: JsonApiUserGroupPatch;
|
|
50617
50676
|
}
|
|
50618
50677
|
|
|
50619
|
-
export declare interface JsonApiUserGroupPatchRelationships {
|
|
50620
|
-
parents?: JsonApiUserGroupPatchRelationshipsParents;
|
|
50621
|
-
}
|
|
50622
|
-
|
|
50623
|
-
export declare interface JsonApiUserGroupPatchRelationshipsParents {
|
|
50624
|
-
/**
|
|
50625
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50626
|
-
*/
|
|
50627
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
50628
|
-
}
|
|
50629
|
-
|
|
50630
50678
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
50631
50679
|
readonly USER_GROUP: "userGroup";
|
|
50632
50680
|
};
|
|
@@ -50679,7 +50727,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
50679
50727
|
export declare interface JsonApiUserIdentifierOutList {
|
|
50680
50728
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
50681
50729
|
links?: ListLinks;
|
|
50682
|
-
meta?:
|
|
50730
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50683
50731
|
}
|
|
50684
50732
|
|
|
50685
50733
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -50719,8 +50767,8 @@ export declare interface JsonApiUserIn {
|
|
|
50719
50767
|
* API identifier of an object
|
|
50720
50768
|
*/
|
|
50721
50769
|
id: string;
|
|
50722
|
-
attributes?:
|
|
50723
|
-
relationships?:
|
|
50770
|
+
attributes?: JsonApiUserOutAttributes;
|
|
50771
|
+
relationships?: JsonApiUserOutRelationships;
|
|
50724
50772
|
}
|
|
50725
50773
|
|
|
50726
50774
|
export declare interface JsonApiUserInDocument {
|
|
@@ -50759,8 +50807,15 @@ export declare interface JsonApiUserOut {
|
|
|
50759
50807
|
* API identifier of an object
|
|
50760
50808
|
*/
|
|
50761
50809
|
id: string;
|
|
50762
|
-
attributes?:
|
|
50763
|
-
relationships?:
|
|
50810
|
+
attributes?: JsonApiUserOutAttributes;
|
|
50811
|
+
relationships?: JsonApiUserOutRelationships;
|
|
50812
|
+
}
|
|
50813
|
+
|
|
50814
|
+
export declare interface JsonApiUserOutAttributes {
|
|
50815
|
+
authenticationId?: string;
|
|
50816
|
+
firstname?: string;
|
|
50817
|
+
lastname?: string;
|
|
50818
|
+
email?: string;
|
|
50764
50819
|
}
|
|
50765
50820
|
|
|
50766
50821
|
export declare interface JsonApiUserOutDocument {
|
|
@@ -50778,13 +50833,24 @@ export declare interface JsonApiUserOutDocument {
|
|
|
50778
50833
|
export declare interface JsonApiUserOutList {
|
|
50779
50834
|
data: Array<JsonApiUserOutWithLinks>;
|
|
50780
50835
|
links?: ListLinks;
|
|
50781
|
-
meta?:
|
|
50836
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50782
50837
|
/**
|
|
50783
50838
|
* Included resources
|
|
50784
50839
|
*/
|
|
50785
50840
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50786
50841
|
}
|
|
50787
50842
|
|
|
50843
|
+
export declare interface JsonApiUserOutRelationships {
|
|
50844
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
50845
|
+
}
|
|
50846
|
+
|
|
50847
|
+
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
50848
|
+
/**
|
|
50849
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50850
|
+
*/
|
|
50851
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
50852
|
+
}
|
|
50853
|
+
|
|
50788
50854
|
export declare const JsonApiUserOutTypeEnum: {
|
|
50789
50855
|
readonly USER: "user";
|
|
50790
50856
|
};
|
|
@@ -50800,8 +50866,8 @@ export declare interface JsonApiUserOutWithLinks {
|
|
|
50800
50866
|
* API identifier of an object
|
|
50801
50867
|
*/
|
|
50802
50868
|
id: string;
|
|
50803
|
-
attributes?:
|
|
50804
|
-
relationships?:
|
|
50869
|
+
attributes?: JsonApiUserOutAttributes;
|
|
50870
|
+
relationships?: JsonApiUserOutRelationships;
|
|
50805
50871
|
links?: ObjectLinks;
|
|
50806
50872
|
}
|
|
50807
50873
|
|
|
@@ -50823,25 +50889,14 @@ export declare interface JsonApiUserPatch {
|
|
|
50823
50889
|
* API identifier of an object
|
|
50824
50890
|
*/
|
|
50825
50891
|
id: string;
|
|
50826
|
-
attributes?:
|
|
50827
|
-
relationships?:
|
|
50828
|
-
}
|
|
50829
|
-
|
|
50830
|
-
export declare interface JsonApiUserPatchAttributes {
|
|
50831
|
-
authenticationId?: string;
|
|
50832
|
-
firstname?: string;
|
|
50833
|
-
lastname?: string;
|
|
50834
|
-
email?: string;
|
|
50892
|
+
attributes?: JsonApiUserOutAttributes;
|
|
50893
|
+
relationships?: JsonApiUserOutRelationships;
|
|
50835
50894
|
}
|
|
50836
50895
|
|
|
50837
50896
|
export declare interface JsonApiUserPatchDocument {
|
|
50838
50897
|
data: JsonApiUserPatch;
|
|
50839
50898
|
}
|
|
50840
50899
|
|
|
50841
|
-
export declare interface JsonApiUserPatchRelationships {
|
|
50842
|
-
userGroups?: JsonApiUserGroupPatchRelationshipsParents;
|
|
50843
|
-
}
|
|
50844
|
-
|
|
50845
50900
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
50846
50901
|
readonly USER: "user";
|
|
50847
50902
|
};
|
|
@@ -50860,9 +50915,55 @@ export declare interface JsonApiUserSettingIn {
|
|
|
50860
50915
|
* API identifier of an object
|
|
50861
50916
|
*/
|
|
50862
50917
|
id: string;
|
|
50863
|
-
attributes?:
|
|
50918
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50864
50919
|
}
|
|
50865
50920
|
|
|
50921
|
+
export declare interface JsonApiUserSettingInAttributes {
|
|
50922
|
+
/**
|
|
50923
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50924
|
+
*/
|
|
50925
|
+
content?: object;
|
|
50926
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
50927
|
+
}
|
|
50928
|
+
|
|
50929
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
50930
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
50931
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50932
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50933
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50934
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50935
|
+
readonly LOCALE: "LOCALE";
|
|
50936
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50937
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50938
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50939
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50940
|
+
readonly WEEK_START: "WEEK_START";
|
|
50941
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50942
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50943
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50944
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50945
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50946
|
+
readonly ALERT: "ALERT";
|
|
50947
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
50948
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50949
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50950
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50951
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50952
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50953
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50954
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50955
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50956
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50957
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50958
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50959
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50960
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50961
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50962
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50963
|
+
};
|
|
50964
|
+
|
|
50965
|
+
export declare type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
50966
|
+
|
|
50866
50967
|
export declare interface JsonApiUserSettingInDocument {
|
|
50867
50968
|
data: JsonApiUserSettingIn;
|
|
50868
50969
|
}
|
|
@@ -50885,7 +50986,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
50885
50986
|
* API identifier of an object
|
|
50886
50987
|
*/
|
|
50887
50988
|
id: string;
|
|
50888
|
-
attributes?:
|
|
50989
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50889
50990
|
}
|
|
50890
50991
|
|
|
50891
50992
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -50899,7 +51000,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
50899
51000
|
export declare interface JsonApiUserSettingOutList {
|
|
50900
51001
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
50901
51002
|
links?: ListLinks;
|
|
50902
|
-
meta?:
|
|
51003
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
50903
51004
|
}
|
|
50904
51005
|
|
|
50905
51006
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -50917,7 +51018,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
50917
51018
|
* API identifier of an object
|
|
50918
51019
|
*/
|
|
50919
51020
|
id: string;
|
|
50920
|
-
attributes?:
|
|
51021
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50921
51022
|
links?: ObjectLinks;
|
|
50922
51023
|
}
|
|
50923
51024
|
|
|
@@ -50939,19 +51040,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
50939
51040
|
* API identifier of an object
|
|
50940
51041
|
*/
|
|
50941
51042
|
id: string;
|
|
50942
|
-
attributes:
|
|
50943
|
-
}
|
|
50944
|
-
|
|
50945
|
-
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
50946
|
-
title?: string;
|
|
50947
|
-
description?: string;
|
|
50948
|
-
tags?: Array<string>;
|
|
50949
|
-
areRelationsValid?: boolean;
|
|
50950
|
-
/**
|
|
50951
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50952
|
-
*/
|
|
50953
|
-
content: object;
|
|
50954
|
-
isHidden?: boolean;
|
|
51043
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
50955
51044
|
}
|
|
50956
51045
|
|
|
50957
51046
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -51024,7 +51113,7 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
51024
51113
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
51025
51114
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
51026
51115
|
links?: ListLinks;
|
|
51027
|
-
meta?:
|
|
51116
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51028
51117
|
/**
|
|
51029
51118
|
* Included resources
|
|
51030
51119
|
*/
|
|
@@ -51178,7 +51267,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
51178
51267
|
* API identifier of an object
|
|
51179
51268
|
*/
|
|
51180
51269
|
id?: string;
|
|
51181
|
-
attributes:
|
|
51270
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
51271
|
+
}
|
|
51272
|
+
|
|
51273
|
+
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
51274
|
+
title?: string;
|
|
51275
|
+
description?: string;
|
|
51276
|
+
tags?: Array<string>;
|
|
51277
|
+
areRelationsValid?: boolean;
|
|
51278
|
+
/**
|
|
51279
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51280
|
+
*/
|
|
51281
|
+
content: object;
|
|
51282
|
+
isHidden?: boolean;
|
|
51182
51283
|
}
|
|
51183
51284
|
|
|
51184
51285
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -51218,25 +51319,21 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
51218
51319
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
51219
51320
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
51220
51321
|
links?: ListLinks;
|
|
51221
|
-
meta?:
|
|
51322
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51222
51323
|
/**
|
|
51223
51324
|
* Included resources
|
|
51224
51325
|
*/
|
|
51225
51326
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
51226
51327
|
}
|
|
51227
51328
|
|
|
51228
|
-
export declare interface JsonApiWorkspaceAutomationOutListMeta {
|
|
51229
|
-
page?: PageMetadata;
|
|
51230
|
-
}
|
|
51231
|
-
|
|
51232
51329
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
51233
|
-
workspace?:
|
|
51234
|
-
notificationChannel?:
|
|
51235
|
-
analyticalDashboard?:
|
|
51330
|
+
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
51331
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
51332
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
51236
51333
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
51237
51334
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
51238
|
-
exportDefinitions?:
|
|
51239
|
-
recipients?:
|
|
51335
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
51336
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
51240
51337
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
51241
51338
|
}
|
|
51242
51339
|
|
|
@@ -51344,7 +51441,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
51344
51441
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
51345
51442
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
51346
51443
|
links?: ListLinks;
|
|
51347
|
-
meta?:
|
|
51444
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51348
51445
|
/**
|
|
51349
51446
|
* Included resources
|
|
51350
51447
|
*/
|
|
@@ -51427,14 +51524,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
51427
51524
|
* API identifier of an object
|
|
51428
51525
|
*/
|
|
51429
51526
|
id: string;
|
|
51430
|
-
attributes?:
|
|
51431
|
-
relationships?:
|
|
51527
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
51528
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
51529
|
+
}
|
|
51530
|
+
|
|
51531
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
51532
|
+
title?: string;
|
|
51533
|
+
description?: string;
|
|
51534
|
+
filterValues?: Array<string>;
|
|
51432
51535
|
}
|
|
51433
51536
|
|
|
51434
51537
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
51435
51538
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
51436
51539
|
}
|
|
51437
51540
|
|
|
51541
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
51542
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
51543
|
+
}
|
|
51544
|
+
|
|
51545
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
51546
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
51547
|
+
}
|
|
51548
|
+
|
|
51438
51549
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
51439
51550
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
51440
51551
|
};
|
|
@@ -51468,8 +51579,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
51468
51579
|
*/
|
|
51469
51580
|
id: string;
|
|
51470
51581
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51471
|
-
attributes?:
|
|
51472
|
-
relationships?:
|
|
51582
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
51583
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
51473
51584
|
}
|
|
51474
51585
|
|
|
51475
51586
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -51487,7 +51598,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
51487
51598
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
51488
51599
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
51489
51600
|
links?: ListLinks;
|
|
51490
|
-
meta?:
|
|
51601
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51491
51602
|
/**
|
|
51492
51603
|
* Included resources
|
|
51493
51604
|
*/
|
|
@@ -51510,8 +51621,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
51510
51621
|
*/
|
|
51511
51622
|
id: string;
|
|
51512
51623
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51513
|
-
attributes?:
|
|
51514
|
-
relationships?:
|
|
51624
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
51625
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
51515
51626
|
links?: ObjectLinks;
|
|
51516
51627
|
}
|
|
51517
51628
|
|
|
@@ -51533,28 +51644,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
51533
51644
|
* API identifier of an object
|
|
51534
51645
|
*/
|
|
51535
51646
|
id: string;
|
|
51536
|
-
attributes?:
|
|
51537
|
-
relationships?:
|
|
51538
|
-
}
|
|
51539
|
-
|
|
51540
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
51541
|
-
title?: string;
|
|
51542
|
-
description?: string;
|
|
51543
|
-
filterValues?: Array<string>;
|
|
51647
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
51648
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
51544
51649
|
}
|
|
51545
51650
|
|
|
51546
51651
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
51547
51652
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
51548
51653
|
}
|
|
51549
51654
|
|
|
51550
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
51551
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
51552
|
-
}
|
|
51553
|
-
|
|
51554
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
51555
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
51556
|
-
}
|
|
51557
|
-
|
|
51558
51655
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
51559
51656
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
51560
51657
|
};
|
|
@@ -51573,8 +51670,8 @@ export declare interface JsonApiWorkspaceIn {
|
|
|
51573
51670
|
* API identifier of an object
|
|
51574
51671
|
*/
|
|
51575
51672
|
id: string;
|
|
51576
|
-
attributes?:
|
|
51577
|
-
relationships?:
|
|
51673
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
51674
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
51578
51675
|
}
|
|
51579
51676
|
|
|
51580
51677
|
export declare interface JsonApiWorkspaceInDocument {
|
|
@@ -51614,8 +51711,42 @@ export declare interface JsonApiWorkspaceOut {
|
|
|
51614
51711
|
*/
|
|
51615
51712
|
id: string;
|
|
51616
51713
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51617
|
-
attributes?:
|
|
51618
|
-
relationships?:
|
|
51714
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
51715
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
51716
|
+
}
|
|
51717
|
+
|
|
51718
|
+
export declare interface JsonApiWorkspaceOutAttributes {
|
|
51719
|
+
name?: string | null;
|
|
51720
|
+
/**
|
|
51721
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51722
|
+
* @deprecated
|
|
51723
|
+
*/
|
|
51724
|
+
earlyAccess?: string | null;
|
|
51725
|
+
/**
|
|
51726
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
51727
|
+
*/
|
|
51728
|
+
earlyAccessValues?: Array<string> | null;
|
|
51729
|
+
description?: string | null;
|
|
51730
|
+
/**
|
|
51731
|
+
* Custom prefix of entity identifiers in workspace
|
|
51732
|
+
*/
|
|
51733
|
+
prefix?: string | null;
|
|
51734
|
+
cacheExtraLimit?: number;
|
|
51735
|
+
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
51736
|
+
}
|
|
51737
|
+
|
|
51738
|
+
/**
|
|
51739
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51740
|
+
*/
|
|
51741
|
+
export declare interface JsonApiWorkspaceOutAttributesDataSource {
|
|
51742
|
+
/**
|
|
51743
|
+
* The ID of the used data source.
|
|
51744
|
+
*/
|
|
51745
|
+
id: string;
|
|
51746
|
+
/**
|
|
51747
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51748
|
+
*/
|
|
51749
|
+
schemaPath?: Array<string>;
|
|
51619
51750
|
}
|
|
51620
51751
|
|
|
51621
51752
|
export declare interface JsonApiWorkspaceOutDocument {
|
|
@@ -51633,7 +51764,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
51633
51764
|
export declare interface JsonApiWorkspaceOutList {
|
|
51634
51765
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
51635
51766
|
links?: ListLinks;
|
|
51636
|
-
meta?:
|
|
51767
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51637
51768
|
/**
|
|
51638
51769
|
* Included resources
|
|
51639
51770
|
*/
|
|
@@ -51693,6 +51824,14 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
51693
51824
|
|
|
51694
51825
|
export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
|
|
51695
51826
|
|
|
51827
|
+
export declare interface JsonApiWorkspaceOutRelationships {
|
|
51828
|
+
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
51829
|
+
}
|
|
51830
|
+
|
|
51831
|
+
export declare interface JsonApiWorkspaceOutRelationshipsParent {
|
|
51832
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
51833
|
+
}
|
|
51834
|
+
|
|
51696
51835
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
51697
51836
|
readonly WORKSPACE: "workspace";
|
|
51698
51837
|
};
|
|
@@ -51709,8 +51848,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
|
|
|
51709
51848
|
*/
|
|
51710
51849
|
id: string;
|
|
51711
51850
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51712
|
-
attributes?:
|
|
51713
|
-
relationships?:
|
|
51851
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
51852
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
51714
51853
|
links?: ObjectLinks;
|
|
51715
51854
|
}
|
|
51716
51855
|
|
|
@@ -51732,56 +51871,14 @@ export declare interface JsonApiWorkspacePatch {
|
|
|
51732
51871
|
* API identifier of an object
|
|
51733
51872
|
*/
|
|
51734
51873
|
id: string;
|
|
51735
|
-
attributes?:
|
|
51736
|
-
relationships?:
|
|
51737
|
-
}
|
|
51738
|
-
|
|
51739
|
-
export declare interface JsonApiWorkspacePatchAttributes {
|
|
51740
|
-
name?: string | null;
|
|
51741
|
-
/**
|
|
51742
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51743
|
-
* @deprecated
|
|
51744
|
-
*/
|
|
51745
|
-
earlyAccess?: string | null;
|
|
51746
|
-
/**
|
|
51747
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
51748
|
-
*/
|
|
51749
|
-
earlyAccessValues?: Array<string> | null;
|
|
51750
|
-
description?: string | null;
|
|
51751
|
-
/**
|
|
51752
|
-
* Custom prefix of entity identifiers in workspace
|
|
51753
|
-
*/
|
|
51754
|
-
prefix?: string | null;
|
|
51755
|
-
cacheExtraLimit?: number;
|
|
51756
|
-
dataSource?: JsonApiWorkspacePatchAttributesDataSource;
|
|
51757
|
-
}
|
|
51758
|
-
|
|
51759
|
-
/**
|
|
51760
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51761
|
-
*/
|
|
51762
|
-
export declare interface JsonApiWorkspacePatchAttributesDataSource {
|
|
51763
|
-
/**
|
|
51764
|
-
* The ID of the used data source.
|
|
51765
|
-
*/
|
|
51766
|
-
id: string;
|
|
51767
|
-
/**
|
|
51768
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51769
|
-
*/
|
|
51770
|
-
schemaPath?: Array<string>;
|
|
51874
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
51875
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
51771
51876
|
}
|
|
51772
51877
|
|
|
51773
51878
|
export declare interface JsonApiWorkspacePatchDocument {
|
|
51774
51879
|
data: JsonApiWorkspacePatch;
|
|
51775
51880
|
}
|
|
51776
51881
|
|
|
51777
|
-
export declare interface JsonApiWorkspacePatchRelationships {
|
|
51778
|
-
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
51779
|
-
}
|
|
51780
|
-
|
|
51781
|
-
export declare interface JsonApiWorkspacePatchRelationshipsParent {
|
|
51782
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
51783
|
-
}
|
|
51784
|
-
|
|
51785
51882
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
51786
51883
|
readonly WORKSPACE: "workspace";
|
|
51787
51884
|
};
|
|
@@ -51800,7 +51897,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
51800
51897
|
* API identifier of an object
|
|
51801
51898
|
*/
|
|
51802
51899
|
id: string;
|
|
51803
|
-
attributes?:
|
|
51900
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51804
51901
|
}
|
|
51805
51902
|
|
|
51806
51903
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -51826,7 +51923,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
51826
51923
|
*/
|
|
51827
51924
|
id: string;
|
|
51828
51925
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51829
|
-
attributes?:
|
|
51926
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51830
51927
|
}
|
|
51831
51928
|
|
|
51832
51929
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -51840,7 +51937,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
51840
51937
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
51841
51938
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
51842
51939
|
links?: ListLinks;
|
|
51843
|
-
meta?:
|
|
51940
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
51844
51941
|
}
|
|
51845
51942
|
|
|
51846
51943
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -51859,7 +51956,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
51859
51956
|
*/
|
|
51860
51957
|
id: string;
|
|
51861
51958
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51862
|
-
attributes?:
|
|
51959
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51863
51960
|
links?: ObjectLinks;
|
|
51864
51961
|
}
|
|
51865
51962
|
|
|
@@ -51881,7 +51978,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
51881
51978
|
* API identifier of an object
|
|
51882
51979
|
*/
|
|
51883
51980
|
id: string;
|
|
51884
|
-
attributes?:
|
|
51981
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51885
51982
|
}
|
|
51886
51983
|
|
|
51887
51984
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -51906,7 +52003,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
51906
52003
|
* API identifier of an object
|
|
51907
52004
|
*/
|
|
51908
52005
|
id?: string;
|
|
51909
|
-
attributes?:
|
|
52006
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51910
52007
|
}
|
|
51911
52008
|
|
|
51912
52009
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -68846,6 +68943,10 @@ export declare interface ScanApiSqlColumn {
|
|
|
68846
68943
|
* Column type
|
|
68847
68944
|
*/
|
|
68848
68945
|
dataType: ScanApiSqlColumnDataTypeEnum;
|
|
68946
|
+
/**
|
|
68947
|
+
* Column description/comment from database
|
|
68948
|
+
*/
|
|
68949
|
+
description?: string;
|
|
68849
68950
|
}
|
|
68850
68951
|
|
|
68851
68952
|
export declare const ScanApiSqlColumnDataTypeEnum: {
|
|
@@ -69029,6 +69130,10 @@ export declare interface ScanModelDeclarativeColumn {
|
|
|
69029
69130
|
* Referenced table (Foreign key)
|
|
69030
69131
|
*/
|
|
69031
69132
|
referencedTableColumn?: string;
|
|
69133
|
+
/**
|
|
69134
|
+
* Column description/comment from database
|
|
69135
|
+
*/
|
|
69136
|
+
description?: string;
|
|
69032
69137
|
}
|
|
69033
69138
|
|
|
69034
69139
|
export declare const ScanModelDeclarativeColumnDataTypeEnum: {
|
|
@@ -70398,7 +70503,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
|
|
|
70398
70503
|
/**
|
|
70399
70504
|
* Tiger GenAI client factory
|
|
70400
70505
|
*/
|
|
70401
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
|
|
70506
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers">;
|
|
70402
70507
|
|
|
70403
70508
|
export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
|
|
70404
70509
|
|