@gooddata/api-client-tiger 10.28.0-alpha.65 → 10.28.0-alpha.67
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 +1255 -975
- package/esm/generated/afm-rest-api/api.d.ts +129 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +136 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +48 -0
- package/esm/generated/automation-json-api/api.d.ts +84 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +3 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +69 -0
- package/esm/generated/export-json-api/api.d.ts +44 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +37 -1
- package/esm/generated/metadata-json-api/api.d.ts +1088 -1009
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +17 -8
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +2840 -2753
- package/esm/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -441,6 +441,20 @@ export declare interface ActionsApiAiChatStreamRequest {
|
|
|
441
441
|
readonly chatRequest: ChatRequest;
|
|
442
442
|
}
|
|
443
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Request parameters for aiChatUsage operation in ActionsApi.
|
|
446
|
+
* @export
|
|
447
|
+
* @interface ActionsApiAiChatUsageRequest
|
|
448
|
+
*/
|
|
449
|
+
export declare interface ActionsApiAiChatUsageRequest {
|
|
450
|
+
/**
|
|
451
|
+
* Workspace identifier
|
|
452
|
+
* @type {string}
|
|
453
|
+
* @memberof ActionsApiAiChatUsage
|
|
454
|
+
*/
|
|
455
|
+
readonly workspaceId: string;
|
|
456
|
+
}
|
|
457
|
+
|
|
444
458
|
/**
|
|
445
459
|
* Request parameters for aiSearch operation in ActionsApi.
|
|
446
460
|
* @export
|
|
@@ -1140,7 +1154,7 @@ export declare interface ActionsApiCreateImageExportRequest {
|
|
|
1140
1154
|
* @type {ImageExportRequest}
|
|
1141
1155
|
* @memberof ActionsApiCreateImageExport
|
|
1142
1156
|
*/
|
|
1143
|
-
readonly imageExportRequest:
|
|
1157
|
+
readonly imageExportRequest: AfmExportImageExportRequest;
|
|
1144
1158
|
}
|
|
1145
1159
|
|
|
1146
1160
|
/**
|
|
@@ -3734,6 +3748,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
3734
3748
|
* @memberof ActionsApi
|
|
3735
3749
|
*/
|
|
3736
3750
|
aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<object[], any>>;
|
|
3751
|
+
/**
|
|
3752
|
+
* Returns usage statistics of chat for a user in a workspace.
|
|
3753
|
+
* @summary Get Chat Usage
|
|
3754
|
+
* @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
|
|
3755
|
+
* @param {*} [options] Override http request option.
|
|
3756
|
+
* @throws {RequiredError}
|
|
3757
|
+
* @memberof ActionsApi
|
|
3758
|
+
*/
|
|
3759
|
+
aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ChatUsageResponse, any>>;
|
|
3737
3760
|
/**
|
|
3738
3761
|
* (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
|
|
3739
3762
|
* @summary (BETA) Semantic Search in Metadata
|
|
@@ -3921,6 +3944,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
3921
3944
|
* @throws {RequiredError}
|
|
3922
3945
|
*/
|
|
3923
3946
|
aiChatStream: (workspaceId: string, chatRequest: ChatRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
3947
|
+
/**
|
|
3948
|
+
* Returns usage statistics of chat for a user in a workspace.
|
|
3949
|
+
* @summary Get Chat Usage
|
|
3950
|
+
* @param {string} workspaceId Workspace identifier
|
|
3951
|
+
* @param {*} [options] Override http request option.
|
|
3952
|
+
* @throws {RequiredError}
|
|
3953
|
+
*/
|
|
3954
|
+
aiChatUsage: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
3924
3955
|
/**
|
|
3925
3956
|
* (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
|
|
3926
3957
|
* @summary (BETA) Semantic Search in Metadata
|
|
@@ -4130,6 +4161,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
4130
4161
|
* @throws {RequiredError}
|
|
4131
4162
|
*/
|
|
4132
4163
|
aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
4164
|
+
/**
|
|
4165
|
+
* Returns usage statistics of chat for a user in a workspace.
|
|
4166
|
+
* @summary Get Chat Usage
|
|
4167
|
+
* @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
|
|
4168
|
+
* @param {*} [options] Override http request option.
|
|
4169
|
+
* @throws {RequiredError}
|
|
4170
|
+
*/
|
|
4171
|
+
aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): AxiosPromise<ChatUsageResponse>;
|
|
4133
4172
|
/**
|
|
4134
4173
|
* (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
|
|
4135
4174
|
* @summary (BETA) Semantic Search in Metadata
|
|
@@ -4300,6 +4339,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
4300
4339
|
* @throws {RequiredError}
|
|
4301
4340
|
*/
|
|
4302
4341
|
aiChatStream(workspaceId: string, chatRequest: ChatRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
4342
|
+
/**
|
|
4343
|
+
* Returns usage statistics of chat for a user in a workspace.
|
|
4344
|
+
* @summary Get Chat Usage
|
|
4345
|
+
* @param {string} workspaceId Workspace identifier
|
|
4346
|
+
* @param {*} [options] Override http request option.
|
|
4347
|
+
* @throws {RequiredError}
|
|
4348
|
+
*/
|
|
4349
|
+
aiChatUsage(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatUsageResponse>>;
|
|
4303
4350
|
/**
|
|
4304
4351
|
* (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
|
|
4305
4352
|
* @summary (BETA) Semantic Search in Metadata
|
|
@@ -4513,6 +4560,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
4513
4560
|
* @memberof ActionsApiInterface
|
|
4514
4561
|
*/
|
|
4515
4562
|
aiChatStream(requestParameters: ActionsApiAiChatStreamRequest, options?: AxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
4563
|
+
/**
|
|
4564
|
+
* Returns usage statistics of chat for a user in a workspace.
|
|
4565
|
+
* @summary Get Chat Usage
|
|
4566
|
+
* @param {ActionsApiAiChatUsageRequest} requestParameters Request parameters.
|
|
4567
|
+
* @param {*} [options] Override http request option.
|
|
4568
|
+
* @throws {RequiredError}
|
|
4569
|
+
* @memberof ActionsApiInterface
|
|
4570
|
+
*/
|
|
4571
|
+
aiChatUsage(requestParameters: ActionsApiAiChatUsageRequest, options?: AxiosRequestConfig): AxiosPromise<ChatUsageResponse>;
|
|
4516
4572
|
/**
|
|
4517
4573
|
* (BETA) Uses similarity (e.g. cosine distance) search to find top X most similar metadata objects.
|
|
4518
4574
|
* @summary (BETA) Semantic Search in Metadata
|
|
@@ -5407,6 +5463,50 @@ export declare type AfmExportFilterDefinition = AfmExportAbsoluteDateFilter | Af
|
|
|
5407
5463
|
*/
|
|
5408
5464
|
export declare type AfmExportFilterDefinitionForSimpleMeasure = AfmExportAttributeFilter | AfmExportDateFilter;
|
|
5409
5465
|
|
|
5466
|
+
/**
|
|
5467
|
+
* Export request object describing the export properties and metadata for image exports.
|
|
5468
|
+
* @export
|
|
5469
|
+
* @interface ImageExportRequest
|
|
5470
|
+
*/
|
|
5471
|
+
export declare interface AfmExportImageExportRequest {
|
|
5472
|
+
/**
|
|
5473
|
+
* Requested resulting file type.
|
|
5474
|
+
* @type {string}
|
|
5475
|
+
* @memberof ImageExportRequest
|
|
5476
|
+
*/
|
|
5477
|
+
format: AfmExportImageExportRequestFormatEnum;
|
|
5478
|
+
/**
|
|
5479
|
+
* File name to be used for retrieving the image document.
|
|
5480
|
+
* @type {string}
|
|
5481
|
+
* @memberof ImageExportRequest
|
|
5482
|
+
*/
|
|
5483
|
+
fileName: string;
|
|
5484
|
+
/**
|
|
5485
|
+
* Dashboard identifier
|
|
5486
|
+
* @type {string}
|
|
5487
|
+
* @memberof ImageExportRequest
|
|
5488
|
+
*/
|
|
5489
|
+
dashboardId: string;
|
|
5490
|
+
/**
|
|
5491
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
5492
|
+
* @type {Array<string>}
|
|
5493
|
+
* @memberof ImageExportRequest
|
|
5494
|
+
*/
|
|
5495
|
+
widgetIds?: Array<string>;
|
|
5496
|
+
/**
|
|
5497
|
+
* Metadata definition in free-form JSON format.
|
|
5498
|
+
* @type {object}
|
|
5499
|
+
* @memberof ImageExportRequest
|
|
5500
|
+
*/
|
|
5501
|
+
metadata?: object | null;
|
|
5502
|
+
}
|
|
5503
|
+
|
|
5504
|
+
export declare const AfmExportImageExportRequestFormatEnum: {
|
|
5505
|
+
readonly PNG: "PNG";
|
|
5506
|
+
};
|
|
5507
|
+
|
|
5508
|
+
export declare type AfmExportImageExportRequestFormatEnum = typeof AfmExportImageExportRequestFormatEnum[keyof typeof AfmExportImageExportRequestFormatEnum];
|
|
5509
|
+
|
|
5410
5510
|
/**
|
|
5411
5511
|
* Filter in form of direct MAQL query.
|
|
5412
5512
|
* @export
|
|
@@ -10314,6 +10414,12 @@ export declare interface AutomationAdHocAutomation {
|
|
|
10314
10414
|
* @memberof AutomationAdHocAutomation
|
|
10315
10415
|
*/
|
|
10316
10416
|
visualExports?: Array<AutomationAutomationVisualExport>;
|
|
10417
|
+
/**
|
|
10418
|
+
*
|
|
10419
|
+
* @type {Array<AutomationAutomationImageExport>}
|
|
10420
|
+
* @memberof AutomationAdHocAutomation
|
|
10421
|
+
*/
|
|
10422
|
+
imageExports?: Array<AutomationAutomationImageExport>;
|
|
10317
10423
|
/**
|
|
10318
10424
|
* External recipients of the automation action results.
|
|
10319
10425
|
* @type {Array<AutomationAutomationExternalRecipient>}
|
|
@@ -10962,6 +11068,20 @@ export declare interface AutomationAutomationExternalRecipient {
|
|
|
10962
11068
|
email: string;
|
|
10963
11069
|
}
|
|
10964
11070
|
|
|
11071
|
+
/**
|
|
11072
|
+
*
|
|
11073
|
+
* @export
|
|
11074
|
+
* @interface AutomationAutomationImageExport
|
|
11075
|
+
*/
|
|
11076
|
+
export declare interface AutomationAutomationImageExport {
|
|
11077
|
+
/**
|
|
11078
|
+
*
|
|
11079
|
+
* @type {AutomationImageExportRequest}
|
|
11080
|
+
* @memberof AutomationAutomationImageExport
|
|
11081
|
+
*/
|
|
11082
|
+
requestPayload: AutomationImageExportRequest;
|
|
11083
|
+
}
|
|
11084
|
+
|
|
10965
11085
|
/**
|
|
10966
11086
|
* Additional information for the automation.
|
|
10967
11087
|
* @export
|
|
@@ -11466,6 +11586,12 @@ export declare interface AutomationExportResult {
|
|
|
11466
11586
|
* @memberof AutomationExportResult
|
|
11467
11587
|
*/
|
|
11468
11588
|
fileUri?: string;
|
|
11589
|
+
/**
|
|
11590
|
+
*
|
|
11591
|
+
* @type {string}
|
|
11592
|
+
* @memberof AutomationExportResult
|
|
11593
|
+
*/
|
|
11594
|
+
expiresAt?: string;
|
|
11469
11595
|
/**
|
|
11470
11596
|
*
|
|
11471
11597
|
* @type {string}
|
|
@@ -11523,6 +11649,64 @@ export declare type AutomationFilterDefinition = AutomationAbsoluteDateFilter |
|
|
|
11523
11649
|
*/
|
|
11524
11650
|
export declare type AutomationFilterDefinitionForSimpleMeasure = AutomationAttributeFilter | AutomationDateFilter;
|
|
11525
11651
|
|
|
11652
|
+
/**
|
|
11653
|
+
*
|
|
11654
|
+
* @export
|
|
11655
|
+
* @interface AutomationImageExport
|
|
11656
|
+
*/
|
|
11657
|
+
export declare interface AutomationImageExport {
|
|
11658
|
+
/**
|
|
11659
|
+
*
|
|
11660
|
+
* @type {ImageExportRequest}
|
|
11661
|
+
* @memberof AutomationImageExport
|
|
11662
|
+
*/
|
|
11663
|
+
requestPayload: ImageExportRequest;
|
|
11664
|
+
}
|
|
11665
|
+
|
|
11666
|
+
/**
|
|
11667
|
+
* Export request object describing the export properties and metadata for image exports.
|
|
11668
|
+
* @export
|
|
11669
|
+
* @interface AutomationImageExportRequest
|
|
11670
|
+
*/
|
|
11671
|
+
export declare interface AutomationImageExportRequest {
|
|
11672
|
+
/**
|
|
11673
|
+
* Requested resulting file type.
|
|
11674
|
+
* @type {string}
|
|
11675
|
+
* @memberof AutomationImageExportRequest
|
|
11676
|
+
*/
|
|
11677
|
+
format: AutomationImageExportRequestFormatEnum;
|
|
11678
|
+
/**
|
|
11679
|
+
* File name to be used for retrieving the image document.
|
|
11680
|
+
* @type {string}
|
|
11681
|
+
* @memberof AutomationImageExportRequest
|
|
11682
|
+
*/
|
|
11683
|
+
fileName: string;
|
|
11684
|
+
/**
|
|
11685
|
+
* Dashboard identifier
|
|
11686
|
+
* @type {string}
|
|
11687
|
+
* @memberof AutomationImageExportRequest
|
|
11688
|
+
*/
|
|
11689
|
+
dashboardId: string;
|
|
11690
|
+
/**
|
|
11691
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
11692
|
+
* @type {Array<string>}
|
|
11693
|
+
* @memberof AutomationImageExportRequest
|
|
11694
|
+
*/
|
|
11695
|
+
widgetIds?: Array<string>;
|
|
11696
|
+
/**
|
|
11697
|
+
* Metadata definition in free-form JSON format.
|
|
11698
|
+
* @type {object}
|
|
11699
|
+
* @memberof AutomationImageExportRequest
|
|
11700
|
+
*/
|
|
11701
|
+
metadata?: object | null;
|
|
11702
|
+
}
|
|
11703
|
+
|
|
11704
|
+
export declare const AutomationImageExportRequestFormatEnum: {
|
|
11705
|
+
readonly PNG: "PNG";
|
|
11706
|
+
};
|
|
11707
|
+
|
|
11708
|
+
export declare type AutomationImageExportRequestFormatEnum = typeof AutomationImageExportRequestFormatEnum[keyof typeof AutomationImageExportRequestFormatEnum];
|
|
11709
|
+
|
|
11526
11710
|
/**
|
|
11527
11711
|
* Filter in form of direct MAQL query.
|
|
11528
11712
|
* @export
|
|
@@ -13695,6 +13879,12 @@ export declare interface AutomationVisibleFilter {
|
|
|
13695
13879
|
* @memberof AutomationVisibleFilter
|
|
13696
13880
|
*/
|
|
13697
13881
|
title?: string;
|
|
13882
|
+
/**
|
|
13883
|
+
* Indicates if the filter is an all-time date filter. Such a filter is not included in report computation, so there is no filter with the same \'localIdentifier\' to be found. In such cases, this flag is used to inform the server to not search for the filter in the definitions and include it anyways.
|
|
13884
|
+
* @type {boolean}
|
|
13885
|
+
* @memberof AutomationVisibleFilter
|
|
13886
|
+
*/
|
|
13887
|
+
isAllTimeDateFilter?: boolean;
|
|
13698
13888
|
}
|
|
13699
13889
|
|
|
13700
13890
|
/**
|
|
@@ -13787,6 +13977,12 @@ export declare interface AutomationWebhookAutomationInfo {
|
|
|
13787
13977
|
* @memberof AutomationWebhookAutomationInfo
|
|
13788
13978
|
*/
|
|
13789
13979
|
title?: string;
|
|
13980
|
+
/**
|
|
13981
|
+
*
|
|
13982
|
+
* @type {string}
|
|
13983
|
+
* @memberof AutomationWebhookAutomationInfo
|
|
13984
|
+
*/
|
|
13985
|
+
dashboardTitle?: string;
|
|
13790
13986
|
/**
|
|
13791
13987
|
*
|
|
13792
13988
|
* @type {string}
|
|
@@ -13871,6 +14067,12 @@ export declare interface AutomationWebhookMessageData {
|
|
|
13871
14067
|
* @memberof AutomationWebhookMessageData
|
|
13872
14068
|
*/
|
|
13873
14069
|
visualExports?: Array<AutomationExportResult>;
|
|
14070
|
+
/**
|
|
14071
|
+
*
|
|
14072
|
+
* @type {Array<AutomationExportResult>}
|
|
14073
|
+
* @memberof AutomationWebhookMessageData
|
|
14074
|
+
*/
|
|
14075
|
+
imageExports?: Array<AutomationExportResult>;
|
|
13874
14076
|
/**
|
|
13875
14077
|
*
|
|
13876
14078
|
* @type {AutomationAlertDescription}
|
|
@@ -14337,6 +14539,26 @@ export declare interface ChatSuggestion {
|
|
|
14337
14539
|
label: string;
|
|
14338
14540
|
}
|
|
14339
14541
|
|
|
14542
|
+
/**
|
|
14543
|
+
*
|
|
14544
|
+
* @export
|
|
14545
|
+
* @interface ChatUsageResponse
|
|
14546
|
+
*/
|
|
14547
|
+
export declare interface ChatUsageResponse {
|
|
14548
|
+
/**
|
|
14549
|
+
* Number of interactions in the time window
|
|
14550
|
+
* @type {number}
|
|
14551
|
+
* @memberof ChatUsageResponse
|
|
14552
|
+
*/
|
|
14553
|
+
interactionCount: number;
|
|
14554
|
+
/**
|
|
14555
|
+
* Time window in hours
|
|
14556
|
+
* @type {number}
|
|
14557
|
+
* @memberof ChatUsageResponse
|
|
14558
|
+
*/
|
|
14559
|
+
timeWindowHours: number;
|
|
14560
|
+
}
|
|
14561
|
+
|
|
14340
14562
|
/**
|
|
14341
14563
|
*
|
|
14342
14564
|
* @export
|
|
@@ -16581,6 +16803,20 @@ export declare interface DashboardDateFilter {
|
|
|
16581
16803
|
dateFilter: DashboardFilter & object;
|
|
16582
16804
|
}
|
|
16583
16805
|
|
|
16806
|
+
/**
|
|
16807
|
+
* Additional settings.
|
|
16808
|
+
* @export
|
|
16809
|
+
* @interface DashboardExportSettings
|
|
16810
|
+
*/
|
|
16811
|
+
export declare interface DashboardExportSettings {
|
|
16812
|
+
/**
|
|
16813
|
+
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
16814
|
+
* @type {boolean}
|
|
16815
|
+
* @memberof DashboardExportSettings
|
|
16816
|
+
*/
|
|
16817
|
+
mergeHeaders?: boolean;
|
|
16818
|
+
}
|
|
16819
|
+
|
|
16584
16820
|
/**
|
|
16585
16821
|
*
|
|
16586
16822
|
* @export
|
|
@@ -17294,6 +17530,24 @@ export declare interface DashboardTabularExportRequest {
|
|
|
17294
17530
|
* @memberof DashboardTabularExportRequest
|
|
17295
17531
|
*/
|
|
17296
17532
|
dashboardFiltersOverride?: Array<DashboardAttributeFilter | DashboardDateFilter>;
|
|
17533
|
+
/**
|
|
17534
|
+
* If true, the export will contain the information about the exported date and dashboard filters.
|
|
17535
|
+
* @type {boolean}
|
|
17536
|
+
* @memberof DashboardTabularExportRequest
|
|
17537
|
+
*/
|
|
17538
|
+
exportInfo?: boolean;
|
|
17539
|
+
/**
|
|
17540
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
17541
|
+
* @type {Array<string>}
|
|
17542
|
+
* @memberof DashboardTabularExportRequest
|
|
17543
|
+
*/
|
|
17544
|
+
widgetIds?: Array<string>;
|
|
17545
|
+
/**
|
|
17546
|
+
*
|
|
17547
|
+
* @type {DashboardExportSettings}
|
|
17548
|
+
* @memberof DashboardTabularExportRequest
|
|
17549
|
+
*/
|
|
17550
|
+
settings?: DashboardExportSettings;
|
|
17297
17551
|
}
|
|
17298
17552
|
|
|
17299
17553
|
export declare const DashboardTabularExportRequestFormatEnum: {
|
|
@@ -20888,6 +21142,12 @@ export declare interface DeclarativeAutomation {
|
|
|
20888
21142
|
* @memberof DeclarativeAutomation
|
|
20889
21143
|
*/
|
|
20890
21144
|
visualExports?: Array<AutomationVisualExport>;
|
|
21145
|
+
/**
|
|
21146
|
+
*
|
|
21147
|
+
* @type {Array<AutomationImageExport>}
|
|
21148
|
+
* @memberof DeclarativeAutomation
|
|
21149
|
+
*/
|
|
21150
|
+
imageExports?: Array<AutomationImageExport>;
|
|
20891
21151
|
/**
|
|
20892
21152
|
* External recipients of the automation action results.
|
|
20893
21153
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -22629,6 +22889,8 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
22629
22889
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
22630
22890
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
22631
22891
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
22892
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
22893
|
+
readonly LLM_ENDPOINT: "LLM_ENDPOINT";
|
|
22632
22894
|
};
|
|
22633
22895
|
|
|
22634
22896
|
export declare type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
|
|
@@ -43813,7 +44075,7 @@ export declare interface ImageExportRequest {
|
|
|
43813
44075
|
*/
|
|
43814
44076
|
widgetIds?: Array<string>;
|
|
43815
44077
|
/**
|
|
43816
|
-
*
|
|
44078
|
+
* Free-form JSON object
|
|
43817
44079
|
* @type {object}
|
|
43818
44080
|
* @memberof ImageExportRequest
|
|
43819
44081
|
*/
|
|
@@ -44465,10 +44727,48 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
44465
44727
|
id: string;
|
|
44466
44728
|
/**
|
|
44467
44729
|
*
|
|
44468
|
-
* @type {
|
|
44730
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
44469
44731
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
44470
44732
|
*/
|
|
44471
|
-
attributes:
|
|
44733
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
44734
|
+
}
|
|
44735
|
+
|
|
44736
|
+
/**
|
|
44737
|
+
*
|
|
44738
|
+
* @export
|
|
44739
|
+
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
44740
|
+
*/
|
|
44741
|
+
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
44742
|
+
/**
|
|
44743
|
+
*
|
|
44744
|
+
* @type {string}
|
|
44745
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
44746
|
+
*/
|
|
44747
|
+
title?: string;
|
|
44748
|
+
/**
|
|
44749
|
+
*
|
|
44750
|
+
* @type {string}
|
|
44751
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
44752
|
+
*/
|
|
44753
|
+
description?: string;
|
|
44754
|
+
/**
|
|
44755
|
+
*
|
|
44756
|
+
* @type {Array<string>}
|
|
44757
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
44758
|
+
*/
|
|
44759
|
+
tags?: Array<string>;
|
|
44760
|
+
/**
|
|
44761
|
+
*
|
|
44762
|
+
* @type {boolean}
|
|
44763
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
44764
|
+
*/
|
|
44765
|
+
areRelationsValid?: boolean;
|
|
44766
|
+
/**
|
|
44767
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
44768
|
+
* @type {object}
|
|
44769
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
44770
|
+
*/
|
|
44771
|
+
content: object;
|
|
44472
44772
|
}
|
|
44473
44773
|
|
|
44474
44774
|
/**
|
|
@@ -44945,10 +45245,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
44945
45245
|
id?: string;
|
|
44946
45246
|
/**
|
|
44947
45247
|
*
|
|
44948
|
-
* @type {
|
|
45248
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
44949
45249
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
44950
45250
|
*/
|
|
44951
|
-
attributes:
|
|
45251
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
44952
45252
|
}
|
|
44953
45253
|
|
|
44954
45254
|
/**
|
|
@@ -45182,10 +45482,48 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
45182
45482
|
id: string;
|
|
45183
45483
|
/**
|
|
45184
45484
|
*
|
|
45185
|
-
* @type {
|
|
45485
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
45186
45486
|
* @memberof JsonApiAttributeHierarchyIn
|
|
45187
45487
|
*/
|
|
45188
|
-
attributes?:
|
|
45488
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
45489
|
+
}
|
|
45490
|
+
|
|
45491
|
+
/**
|
|
45492
|
+
*
|
|
45493
|
+
* @export
|
|
45494
|
+
* @interface JsonApiAttributeHierarchyInAttributes
|
|
45495
|
+
*/
|
|
45496
|
+
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
45497
|
+
/**
|
|
45498
|
+
*
|
|
45499
|
+
* @type {string}
|
|
45500
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
45501
|
+
*/
|
|
45502
|
+
title?: string;
|
|
45503
|
+
/**
|
|
45504
|
+
*
|
|
45505
|
+
* @type {string}
|
|
45506
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
45507
|
+
*/
|
|
45508
|
+
description?: string;
|
|
45509
|
+
/**
|
|
45510
|
+
*
|
|
45511
|
+
* @type {Array<string>}
|
|
45512
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
45513
|
+
*/
|
|
45514
|
+
tags?: Array<string>;
|
|
45515
|
+
/**
|
|
45516
|
+
*
|
|
45517
|
+
* @type {boolean}
|
|
45518
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
45519
|
+
*/
|
|
45520
|
+
areRelationsValid?: boolean;
|
|
45521
|
+
/**
|
|
45522
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45523
|
+
* @type {object}
|
|
45524
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
45525
|
+
*/
|
|
45526
|
+
content?: object;
|
|
45189
45527
|
}
|
|
45190
45528
|
|
|
45191
45529
|
/**
|
|
@@ -45488,48 +45826,10 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
45488
45826
|
id: string;
|
|
45489
45827
|
/**
|
|
45490
45828
|
*
|
|
45491
|
-
* @type {
|
|
45829
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
45492
45830
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
45493
45831
|
*/
|
|
45494
|
-
attributes?:
|
|
45495
|
-
}
|
|
45496
|
-
|
|
45497
|
-
/**
|
|
45498
|
-
*
|
|
45499
|
-
* @export
|
|
45500
|
-
* @interface JsonApiAttributeHierarchyPatchAttributes
|
|
45501
|
-
*/
|
|
45502
|
-
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
45503
|
-
/**
|
|
45504
|
-
*
|
|
45505
|
-
* @type {string}
|
|
45506
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
45507
|
-
*/
|
|
45508
|
-
title?: string;
|
|
45509
|
-
/**
|
|
45510
|
-
*
|
|
45511
|
-
* @type {string}
|
|
45512
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
45513
|
-
*/
|
|
45514
|
-
description?: string;
|
|
45515
|
-
/**
|
|
45516
|
-
*
|
|
45517
|
-
* @type {Array<string>}
|
|
45518
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
45519
|
-
*/
|
|
45520
|
-
tags?: Array<string>;
|
|
45521
|
-
/**
|
|
45522
|
-
*
|
|
45523
|
-
* @type {boolean}
|
|
45524
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
45525
|
-
*/
|
|
45526
|
-
areRelationsValid?: boolean;
|
|
45527
|
-
/**
|
|
45528
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45529
|
-
* @type {object}
|
|
45530
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
45531
|
-
*/
|
|
45532
|
-
content?: object;
|
|
45832
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
45533
45833
|
}
|
|
45534
45834
|
|
|
45535
45835
|
/**
|
|
@@ -45938,16 +46238,250 @@ export declare interface JsonApiAutomationIn {
|
|
|
45938
46238
|
id: string;
|
|
45939
46239
|
/**
|
|
45940
46240
|
*
|
|
45941
|
-
* @type {
|
|
46241
|
+
* @type {JsonApiAutomationInAttributes}
|
|
45942
46242
|
* @memberof JsonApiAutomationIn
|
|
45943
46243
|
*/
|
|
45944
|
-
attributes?:
|
|
46244
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
45945
46245
|
/**
|
|
45946
46246
|
*
|
|
45947
|
-
* @type {
|
|
46247
|
+
* @type {JsonApiAutomationInRelationships}
|
|
45948
46248
|
* @memberof JsonApiAutomationIn
|
|
45949
46249
|
*/
|
|
45950
|
-
relationships?:
|
|
46250
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
46251
|
+
}
|
|
46252
|
+
|
|
46253
|
+
/**
|
|
46254
|
+
*
|
|
46255
|
+
* @export
|
|
46256
|
+
* @interface JsonApiAutomationInAttributes
|
|
46257
|
+
*/
|
|
46258
|
+
export declare interface JsonApiAutomationInAttributes {
|
|
46259
|
+
/**
|
|
46260
|
+
*
|
|
46261
|
+
* @type {string}
|
|
46262
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46263
|
+
*/
|
|
46264
|
+
title?: string;
|
|
46265
|
+
/**
|
|
46266
|
+
*
|
|
46267
|
+
* @type {string}
|
|
46268
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46269
|
+
*/
|
|
46270
|
+
description?: string;
|
|
46271
|
+
/**
|
|
46272
|
+
*
|
|
46273
|
+
* @type {Array<string>}
|
|
46274
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46275
|
+
*/
|
|
46276
|
+
tags?: Array<string>;
|
|
46277
|
+
/**
|
|
46278
|
+
*
|
|
46279
|
+
* @type {boolean}
|
|
46280
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46281
|
+
*/
|
|
46282
|
+
areRelationsValid?: boolean;
|
|
46283
|
+
/**
|
|
46284
|
+
* Additional details to be included in the automated message.
|
|
46285
|
+
* @type {any}
|
|
46286
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46287
|
+
*/
|
|
46288
|
+
details?: any;
|
|
46289
|
+
/**
|
|
46290
|
+
*
|
|
46291
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
46292
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46293
|
+
*/
|
|
46294
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
46295
|
+
/**
|
|
46296
|
+
* Current state of the automation.
|
|
46297
|
+
* @type {string}
|
|
46298
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46299
|
+
*/
|
|
46300
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
46301
|
+
/**
|
|
46302
|
+
*
|
|
46303
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
46304
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46305
|
+
*/
|
|
46306
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
46307
|
+
/**
|
|
46308
|
+
*
|
|
46309
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
46310
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46311
|
+
*/
|
|
46312
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
46313
|
+
/**
|
|
46314
|
+
*
|
|
46315
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
46316
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46317
|
+
*/
|
|
46318
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
46319
|
+
/**
|
|
46320
|
+
*
|
|
46321
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
46322
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46323
|
+
*/
|
|
46324
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
46325
|
+
/**
|
|
46326
|
+
*
|
|
46327
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
46328
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46329
|
+
*/
|
|
46330
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
46331
|
+
/**
|
|
46332
|
+
* External recipients of the automation action results.
|
|
46333
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
46334
|
+
* @memberof JsonApiAutomationInAttributes
|
|
46335
|
+
*/
|
|
46336
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
46337
|
+
}
|
|
46338
|
+
|
|
46339
|
+
/**
|
|
46340
|
+
*
|
|
46341
|
+
* @export
|
|
46342
|
+
* @interface JsonApiAutomationInAttributesAlert
|
|
46343
|
+
*/
|
|
46344
|
+
export declare interface JsonApiAutomationInAttributesAlert {
|
|
46345
|
+
/**
|
|
46346
|
+
*
|
|
46347
|
+
* @type {AlertAfm}
|
|
46348
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
46349
|
+
*/
|
|
46350
|
+
execution: AlertAfm;
|
|
46351
|
+
/**
|
|
46352
|
+
*
|
|
46353
|
+
* @type {AlertCondition}
|
|
46354
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
46355
|
+
*/
|
|
46356
|
+
condition: AlertCondition;
|
|
46357
|
+
/**
|
|
46358
|
+
* 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.
|
|
46359
|
+
* @type {string}
|
|
46360
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
46361
|
+
*/
|
|
46362
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
46363
|
+
}
|
|
46364
|
+
|
|
46365
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
46366
|
+
readonly ALWAYS: "ALWAYS";
|
|
46367
|
+
readonly ONCE: "ONCE";
|
|
46368
|
+
};
|
|
46369
|
+
|
|
46370
|
+
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
46371
|
+
|
|
46372
|
+
/**
|
|
46373
|
+
*
|
|
46374
|
+
* @export
|
|
46375
|
+
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
46376
|
+
*/
|
|
46377
|
+
export declare interface JsonApiAutomationInAttributesExternalRecipients {
|
|
46378
|
+
/**
|
|
46379
|
+
* E-mail address to send notifications from.
|
|
46380
|
+
* @type {string}
|
|
46381
|
+
* @memberof JsonApiAutomationInAttributesExternalRecipients
|
|
46382
|
+
*/
|
|
46383
|
+
email: string;
|
|
46384
|
+
}
|
|
46385
|
+
|
|
46386
|
+
/**
|
|
46387
|
+
*
|
|
46388
|
+
* @export
|
|
46389
|
+
* @interface JsonApiAutomationInAttributesImageExports
|
|
46390
|
+
*/
|
|
46391
|
+
export declare interface JsonApiAutomationInAttributesImageExports {
|
|
46392
|
+
/**
|
|
46393
|
+
*
|
|
46394
|
+
* @type {ImageExportRequest}
|
|
46395
|
+
* @memberof JsonApiAutomationInAttributesImageExports
|
|
46396
|
+
*/
|
|
46397
|
+
requestPayload: ImageExportRequest;
|
|
46398
|
+
}
|
|
46399
|
+
|
|
46400
|
+
/**
|
|
46401
|
+
* Additional information for the automation.
|
|
46402
|
+
* @export
|
|
46403
|
+
* @interface JsonApiAutomationInAttributesMetadata
|
|
46404
|
+
*/
|
|
46405
|
+
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
46406
|
+
/**
|
|
46407
|
+
*
|
|
46408
|
+
* @type {string}
|
|
46409
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
46410
|
+
*/
|
|
46411
|
+
widget?: string;
|
|
46412
|
+
/**
|
|
46413
|
+
*
|
|
46414
|
+
* @type {Array<VisibleFilter>}
|
|
46415
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
46416
|
+
*/
|
|
46417
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
46418
|
+
}
|
|
46419
|
+
|
|
46420
|
+
/**
|
|
46421
|
+
*
|
|
46422
|
+
* @export
|
|
46423
|
+
* @interface JsonApiAutomationInAttributesSchedule
|
|
46424
|
+
*/
|
|
46425
|
+
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
46426
|
+
/**
|
|
46427
|
+
* 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.
|
|
46428
|
+
* @type {string}
|
|
46429
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
46430
|
+
*/
|
|
46431
|
+
cron: string;
|
|
46432
|
+
/**
|
|
46433
|
+
* Human-readable description of the cron expression.
|
|
46434
|
+
* @type {string}
|
|
46435
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
46436
|
+
*/
|
|
46437
|
+
cronDescription?: string;
|
|
46438
|
+
/**
|
|
46439
|
+
* Timezone in which the schedule is defined.
|
|
46440
|
+
* @type {string}
|
|
46441
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
46442
|
+
*/
|
|
46443
|
+
timezone: string;
|
|
46444
|
+
/**
|
|
46445
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
46446
|
+
* @type {string}
|
|
46447
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
46448
|
+
*/
|
|
46449
|
+
firstRun?: string;
|
|
46450
|
+
}
|
|
46451
|
+
|
|
46452
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
46453
|
+
readonly ACTIVE: "ACTIVE";
|
|
46454
|
+
readonly PAUSED: "PAUSED";
|
|
46455
|
+
};
|
|
46456
|
+
|
|
46457
|
+
export declare type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
46458
|
+
|
|
46459
|
+
/**
|
|
46460
|
+
*
|
|
46461
|
+
* @export
|
|
46462
|
+
* @interface JsonApiAutomationInAttributesTabularExports
|
|
46463
|
+
*/
|
|
46464
|
+
export declare interface JsonApiAutomationInAttributesTabularExports {
|
|
46465
|
+
/**
|
|
46466
|
+
*
|
|
46467
|
+
* @type {TabularExportRequest}
|
|
46468
|
+
* @memberof JsonApiAutomationInAttributesTabularExports
|
|
46469
|
+
*/
|
|
46470
|
+
requestPayload: TabularExportRequest;
|
|
46471
|
+
}
|
|
46472
|
+
|
|
46473
|
+
/**
|
|
46474
|
+
*
|
|
46475
|
+
* @export
|
|
46476
|
+
* @interface JsonApiAutomationInAttributesVisualExports
|
|
46477
|
+
*/
|
|
46478
|
+
export declare interface JsonApiAutomationInAttributesVisualExports {
|
|
46479
|
+
/**
|
|
46480
|
+
*
|
|
46481
|
+
* @type {VisualExportRequest}
|
|
46482
|
+
* @memberof JsonApiAutomationInAttributesVisualExports
|
|
46483
|
+
*/
|
|
46484
|
+
requestPayload: VisualExportRequest;
|
|
45951
46485
|
}
|
|
45952
46486
|
|
|
45953
46487
|
/**
|
|
@@ -45964,6 +46498,94 @@ export declare interface JsonApiAutomationInDocument {
|
|
|
45964
46498
|
data: JsonApiAutomationIn;
|
|
45965
46499
|
}
|
|
45966
46500
|
|
|
46501
|
+
/**
|
|
46502
|
+
*
|
|
46503
|
+
* @export
|
|
46504
|
+
* @interface JsonApiAutomationInRelationships
|
|
46505
|
+
*/
|
|
46506
|
+
export declare interface JsonApiAutomationInRelationships {
|
|
46507
|
+
/**
|
|
46508
|
+
*
|
|
46509
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
46510
|
+
* @memberof JsonApiAutomationInRelationships
|
|
46511
|
+
*/
|
|
46512
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
46513
|
+
/**
|
|
46514
|
+
*
|
|
46515
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
46516
|
+
* @memberof JsonApiAutomationInRelationships
|
|
46517
|
+
*/
|
|
46518
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46519
|
+
/**
|
|
46520
|
+
*
|
|
46521
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
46522
|
+
* @memberof JsonApiAutomationInRelationships
|
|
46523
|
+
*/
|
|
46524
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
46525
|
+
/**
|
|
46526
|
+
*
|
|
46527
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
46528
|
+
* @memberof JsonApiAutomationInRelationships
|
|
46529
|
+
*/
|
|
46530
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
46531
|
+
}
|
|
46532
|
+
|
|
46533
|
+
/**
|
|
46534
|
+
*
|
|
46535
|
+
* @export
|
|
46536
|
+
* @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
46537
|
+
*/
|
|
46538
|
+
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
46539
|
+
/**
|
|
46540
|
+
*
|
|
46541
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
46542
|
+
* @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
46543
|
+
*/
|
|
46544
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
46545
|
+
}
|
|
46546
|
+
|
|
46547
|
+
/**
|
|
46548
|
+
*
|
|
46549
|
+
* @export
|
|
46550
|
+
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
46551
|
+
*/
|
|
46552
|
+
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
46553
|
+
/**
|
|
46554
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46555
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
46556
|
+
* @memberof JsonApiAutomationInRelationshipsExportDefinitions
|
|
46557
|
+
*/
|
|
46558
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
46559
|
+
}
|
|
46560
|
+
|
|
46561
|
+
/**
|
|
46562
|
+
*
|
|
46563
|
+
* @export
|
|
46564
|
+
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
46565
|
+
*/
|
|
46566
|
+
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
46567
|
+
/**
|
|
46568
|
+
*
|
|
46569
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
46570
|
+
* @memberof JsonApiAutomationInRelationshipsNotificationChannel
|
|
46571
|
+
*/
|
|
46572
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
46573
|
+
}
|
|
46574
|
+
|
|
46575
|
+
/**
|
|
46576
|
+
*
|
|
46577
|
+
* @export
|
|
46578
|
+
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
46579
|
+
*/
|
|
46580
|
+
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
46581
|
+
/**
|
|
46582
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46583
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
46584
|
+
* @memberof JsonApiAutomationInRelationshipsRecipients
|
|
46585
|
+
*/
|
|
46586
|
+
data: Array<JsonApiUserLinkage>;
|
|
46587
|
+
}
|
|
46588
|
+
|
|
45967
46589
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
45968
46590
|
readonly AUTOMATION: "automation";
|
|
45969
46591
|
};
|
|
@@ -46072,10 +46694,10 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
46072
46694
|
details?: any;
|
|
46073
46695
|
/**
|
|
46074
46696
|
*
|
|
46075
|
-
* @type {
|
|
46697
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
46076
46698
|
* @memberof JsonApiAutomationOutAttributes
|
|
46077
46699
|
*/
|
|
46078
|
-
metadata?:
|
|
46700
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
46079
46701
|
/**
|
|
46080
46702
|
* Current state of the automation.
|
|
46081
46703
|
* @type {string}
|
|
@@ -46084,34 +46706,40 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
46084
46706
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
46085
46707
|
/**
|
|
46086
46708
|
*
|
|
46087
|
-
* @type {
|
|
46709
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
46710
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
46711
|
+
*/
|
|
46712
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
46713
|
+
/**
|
|
46714
|
+
*
|
|
46715
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
46088
46716
|
* @memberof JsonApiAutomationOutAttributes
|
|
46089
46717
|
*/
|
|
46090
|
-
|
|
46718
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
46091
46719
|
/**
|
|
46092
46720
|
*
|
|
46093
|
-
* @type {
|
|
46721
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
46094
46722
|
* @memberof JsonApiAutomationOutAttributes
|
|
46095
46723
|
*/
|
|
46096
|
-
|
|
46724
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
46097
46725
|
/**
|
|
46098
46726
|
*
|
|
46099
|
-
* @type {Array<
|
|
46727
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
46100
46728
|
* @memberof JsonApiAutomationOutAttributes
|
|
46101
46729
|
*/
|
|
46102
|
-
|
|
46730
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
46103
46731
|
/**
|
|
46104
46732
|
*
|
|
46105
|
-
* @type {Array<
|
|
46733
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
46106
46734
|
* @memberof JsonApiAutomationOutAttributes
|
|
46107
46735
|
*/
|
|
46108
|
-
|
|
46736
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
46109
46737
|
/**
|
|
46110
46738
|
* External recipients of the automation action results.
|
|
46111
|
-
* @type {Array<
|
|
46739
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
46112
46740
|
* @memberof JsonApiAutomationOutAttributes
|
|
46113
46741
|
*/
|
|
46114
|
-
externalRecipients?: Array<
|
|
46742
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
46115
46743
|
/**
|
|
46116
46744
|
*
|
|
46117
46745
|
* @type {string}
|
|
@@ -46205,16 +46833,16 @@ export declare interface JsonApiAutomationOutList {
|
|
|
46205
46833
|
export declare interface JsonApiAutomationOutRelationships {
|
|
46206
46834
|
/**
|
|
46207
46835
|
*
|
|
46208
|
-
* @type {
|
|
46836
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
46209
46837
|
* @memberof JsonApiAutomationOutRelationships
|
|
46210
46838
|
*/
|
|
46211
|
-
notificationChannel?:
|
|
46839
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
46212
46840
|
/**
|
|
46213
46841
|
*
|
|
46214
|
-
* @type {
|
|
46842
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
46215
46843
|
* @memberof JsonApiAutomationOutRelationships
|
|
46216
46844
|
*/
|
|
46217
|
-
analyticalDashboard?:
|
|
46845
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46218
46846
|
/**
|
|
46219
46847
|
*
|
|
46220
46848
|
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
@@ -46229,16 +46857,16 @@ export declare interface JsonApiAutomationOutRelationships {
|
|
|
46229
46857
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46230
46858
|
/**
|
|
46231
46859
|
*
|
|
46232
|
-
* @type {
|
|
46860
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
46233
46861
|
* @memberof JsonApiAutomationOutRelationships
|
|
46234
46862
|
*/
|
|
46235
|
-
exportDefinitions?:
|
|
46863
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
46236
46864
|
/**
|
|
46237
46865
|
*
|
|
46238
|
-
* @type {
|
|
46866
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
46239
46867
|
* @memberof JsonApiAutomationOutRelationships
|
|
46240
46868
|
*/
|
|
46241
|
-
recipients?:
|
|
46869
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
46242
46870
|
}
|
|
46243
46871
|
|
|
46244
46872
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
@@ -46317,230 +46945,16 @@ export declare interface JsonApiAutomationPatch {
|
|
|
46317
46945
|
id: string;
|
|
46318
46946
|
/**
|
|
46319
46947
|
*
|
|
46320
|
-
* @type {
|
|
46948
|
+
* @type {JsonApiAutomationInAttributes}
|
|
46321
46949
|
* @memberof JsonApiAutomationPatch
|
|
46322
46950
|
*/
|
|
46323
|
-
attributes?:
|
|
46951
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
46324
46952
|
/**
|
|
46325
46953
|
*
|
|
46326
|
-
* @type {
|
|
46954
|
+
* @type {JsonApiAutomationInRelationships}
|
|
46327
46955
|
* @memberof JsonApiAutomationPatch
|
|
46328
46956
|
*/
|
|
46329
|
-
relationships?:
|
|
46330
|
-
}
|
|
46331
|
-
|
|
46332
|
-
/**
|
|
46333
|
-
*
|
|
46334
|
-
* @export
|
|
46335
|
-
* @interface JsonApiAutomationPatchAttributes
|
|
46336
|
-
*/
|
|
46337
|
-
export declare interface JsonApiAutomationPatchAttributes {
|
|
46338
|
-
/**
|
|
46339
|
-
*
|
|
46340
|
-
* @type {string}
|
|
46341
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46342
|
-
*/
|
|
46343
|
-
title?: string;
|
|
46344
|
-
/**
|
|
46345
|
-
*
|
|
46346
|
-
* @type {string}
|
|
46347
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46348
|
-
*/
|
|
46349
|
-
description?: string;
|
|
46350
|
-
/**
|
|
46351
|
-
*
|
|
46352
|
-
* @type {Array<string>}
|
|
46353
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46354
|
-
*/
|
|
46355
|
-
tags?: Array<string>;
|
|
46356
|
-
/**
|
|
46357
|
-
*
|
|
46358
|
-
* @type {boolean}
|
|
46359
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46360
|
-
*/
|
|
46361
|
-
areRelationsValid?: boolean;
|
|
46362
|
-
/**
|
|
46363
|
-
* Additional details to be included in the automated message.
|
|
46364
|
-
* @type {any}
|
|
46365
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46366
|
-
*/
|
|
46367
|
-
details?: any;
|
|
46368
|
-
/**
|
|
46369
|
-
*
|
|
46370
|
-
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
46371
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46372
|
-
*/
|
|
46373
|
-
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
46374
|
-
/**
|
|
46375
|
-
* Current state of the automation.
|
|
46376
|
-
* @type {string}
|
|
46377
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46378
|
-
*/
|
|
46379
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
46380
|
-
/**
|
|
46381
|
-
*
|
|
46382
|
-
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
46383
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46384
|
-
*/
|
|
46385
|
-
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
46386
|
-
/**
|
|
46387
|
-
*
|
|
46388
|
-
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
46389
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46390
|
-
*/
|
|
46391
|
-
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
46392
|
-
/**
|
|
46393
|
-
*
|
|
46394
|
-
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
46395
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46396
|
-
*/
|
|
46397
|
-
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
46398
|
-
/**
|
|
46399
|
-
*
|
|
46400
|
-
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
46401
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46402
|
-
*/
|
|
46403
|
-
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
46404
|
-
/**
|
|
46405
|
-
* External recipients of the automation action results.
|
|
46406
|
-
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
46407
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
46408
|
-
*/
|
|
46409
|
-
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
46410
|
-
}
|
|
46411
|
-
|
|
46412
|
-
/**
|
|
46413
|
-
*
|
|
46414
|
-
* @export
|
|
46415
|
-
* @interface JsonApiAutomationPatchAttributesAlert
|
|
46416
|
-
*/
|
|
46417
|
-
export declare interface JsonApiAutomationPatchAttributesAlert {
|
|
46418
|
-
/**
|
|
46419
|
-
*
|
|
46420
|
-
* @type {AlertAfm}
|
|
46421
|
-
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
46422
|
-
*/
|
|
46423
|
-
execution: AlertAfm;
|
|
46424
|
-
/**
|
|
46425
|
-
*
|
|
46426
|
-
* @type {AlertCondition}
|
|
46427
|
-
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
46428
|
-
*/
|
|
46429
|
-
condition: AlertCondition;
|
|
46430
|
-
/**
|
|
46431
|
-
* 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.
|
|
46432
|
-
* @type {string}
|
|
46433
|
-
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
46434
|
-
*/
|
|
46435
|
-
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
46436
|
-
}
|
|
46437
|
-
|
|
46438
|
-
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
46439
|
-
readonly ALWAYS: "ALWAYS";
|
|
46440
|
-
readonly ONCE: "ONCE";
|
|
46441
|
-
};
|
|
46442
|
-
|
|
46443
|
-
export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
46444
|
-
|
|
46445
|
-
/**
|
|
46446
|
-
*
|
|
46447
|
-
* @export
|
|
46448
|
-
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
46449
|
-
*/
|
|
46450
|
-
export declare interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
46451
|
-
/**
|
|
46452
|
-
* E-mail address to send notifications from.
|
|
46453
|
-
* @type {string}
|
|
46454
|
-
* @memberof JsonApiAutomationPatchAttributesExternalRecipients
|
|
46455
|
-
*/
|
|
46456
|
-
email: string;
|
|
46457
|
-
}
|
|
46458
|
-
|
|
46459
|
-
/**
|
|
46460
|
-
* Additional information for the automation.
|
|
46461
|
-
* @export
|
|
46462
|
-
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
46463
|
-
*/
|
|
46464
|
-
export declare interface JsonApiAutomationPatchAttributesMetadata {
|
|
46465
|
-
/**
|
|
46466
|
-
*
|
|
46467
|
-
* @type {string}
|
|
46468
|
-
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
46469
|
-
*/
|
|
46470
|
-
widget?: string;
|
|
46471
|
-
/**
|
|
46472
|
-
*
|
|
46473
|
-
* @type {Array<VisibleFilter>}
|
|
46474
|
-
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
46475
|
-
*/
|
|
46476
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
46477
|
-
}
|
|
46478
|
-
|
|
46479
|
-
/**
|
|
46480
|
-
*
|
|
46481
|
-
* @export
|
|
46482
|
-
* @interface JsonApiAutomationPatchAttributesSchedule
|
|
46483
|
-
*/
|
|
46484
|
-
export declare interface JsonApiAutomationPatchAttributesSchedule {
|
|
46485
|
-
/**
|
|
46486
|
-
* 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.
|
|
46487
|
-
* @type {string}
|
|
46488
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
46489
|
-
*/
|
|
46490
|
-
cron: string;
|
|
46491
|
-
/**
|
|
46492
|
-
* Human-readable description of the cron expression.
|
|
46493
|
-
* @type {string}
|
|
46494
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
46495
|
-
*/
|
|
46496
|
-
cronDescription?: string;
|
|
46497
|
-
/**
|
|
46498
|
-
* Timezone in which the schedule is defined.
|
|
46499
|
-
* @type {string}
|
|
46500
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
46501
|
-
*/
|
|
46502
|
-
timezone: string;
|
|
46503
|
-
/**
|
|
46504
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
46505
|
-
* @type {string}
|
|
46506
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
46507
|
-
*/
|
|
46508
|
-
firstRun?: string;
|
|
46509
|
-
}
|
|
46510
|
-
|
|
46511
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
46512
|
-
readonly ACTIVE: "ACTIVE";
|
|
46513
|
-
readonly PAUSED: "PAUSED";
|
|
46514
|
-
};
|
|
46515
|
-
|
|
46516
|
-
export declare type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
46517
|
-
|
|
46518
|
-
/**
|
|
46519
|
-
*
|
|
46520
|
-
* @export
|
|
46521
|
-
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
46522
|
-
*/
|
|
46523
|
-
export declare interface JsonApiAutomationPatchAttributesTabularExports {
|
|
46524
|
-
/**
|
|
46525
|
-
*
|
|
46526
|
-
* @type {TabularExportRequest}
|
|
46527
|
-
* @memberof JsonApiAutomationPatchAttributesTabularExports
|
|
46528
|
-
*/
|
|
46529
|
-
requestPayload: TabularExportRequest;
|
|
46530
|
-
}
|
|
46531
|
-
|
|
46532
|
-
/**
|
|
46533
|
-
*
|
|
46534
|
-
* @export
|
|
46535
|
-
* @interface JsonApiAutomationPatchAttributesVisualExports
|
|
46536
|
-
*/
|
|
46537
|
-
export declare interface JsonApiAutomationPatchAttributesVisualExports {
|
|
46538
|
-
/**
|
|
46539
|
-
*
|
|
46540
|
-
* @type {VisualExportRequest}
|
|
46541
|
-
* @memberof JsonApiAutomationPatchAttributesVisualExports
|
|
46542
|
-
*/
|
|
46543
|
-
requestPayload: VisualExportRequest;
|
|
46957
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
46544
46958
|
}
|
|
46545
46959
|
|
|
46546
46960
|
/**
|
|
@@ -46557,94 +46971,6 @@ export declare interface JsonApiAutomationPatchDocument {
|
|
|
46557
46971
|
data: JsonApiAutomationPatch;
|
|
46558
46972
|
}
|
|
46559
46973
|
|
|
46560
|
-
/**
|
|
46561
|
-
*
|
|
46562
|
-
* @export
|
|
46563
|
-
* @interface JsonApiAutomationPatchRelationships
|
|
46564
|
-
*/
|
|
46565
|
-
export declare interface JsonApiAutomationPatchRelationships {
|
|
46566
|
-
/**
|
|
46567
|
-
*
|
|
46568
|
-
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
46569
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
46570
|
-
*/
|
|
46571
|
-
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
46572
|
-
/**
|
|
46573
|
-
*
|
|
46574
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
46575
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
46576
|
-
*/
|
|
46577
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
46578
|
-
/**
|
|
46579
|
-
*
|
|
46580
|
-
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
46581
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
46582
|
-
*/
|
|
46583
|
-
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
46584
|
-
/**
|
|
46585
|
-
*
|
|
46586
|
-
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
46587
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
46588
|
-
*/
|
|
46589
|
-
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
46590
|
-
}
|
|
46591
|
-
|
|
46592
|
-
/**
|
|
46593
|
-
*
|
|
46594
|
-
* @export
|
|
46595
|
-
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
46596
|
-
*/
|
|
46597
|
-
export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
46598
|
-
/**
|
|
46599
|
-
*
|
|
46600
|
-
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
46601
|
-
* @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
46602
|
-
*/
|
|
46603
|
-
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
46604
|
-
}
|
|
46605
|
-
|
|
46606
|
-
/**
|
|
46607
|
-
*
|
|
46608
|
-
* @export
|
|
46609
|
-
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
46610
|
-
*/
|
|
46611
|
-
export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
46612
|
-
/**
|
|
46613
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46614
|
-
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
46615
|
-
* @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
46616
|
-
*/
|
|
46617
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
46618
|
-
}
|
|
46619
|
-
|
|
46620
|
-
/**
|
|
46621
|
-
*
|
|
46622
|
-
* @export
|
|
46623
|
-
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
46624
|
-
*/
|
|
46625
|
-
export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
46626
|
-
/**
|
|
46627
|
-
*
|
|
46628
|
-
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
46629
|
-
* @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
46630
|
-
*/
|
|
46631
|
-
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
46632
|
-
}
|
|
46633
|
-
|
|
46634
|
-
/**
|
|
46635
|
-
*
|
|
46636
|
-
* @export
|
|
46637
|
-
* @interface JsonApiAutomationPatchRelationshipsRecipients
|
|
46638
|
-
*/
|
|
46639
|
-
export declare interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
46640
|
-
/**
|
|
46641
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46642
|
-
* @type {Array<JsonApiUserLinkage>}
|
|
46643
|
-
* @memberof JsonApiAutomationPatchRelationshipsRecipients
|
|
46644
|
-
*/
|
|
46645
|
-
data: Array<JsonApiUserLinkage>;
|
|
46646
|
-
}
|
|
46647
|
-
|
|
46648
46974
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
46649
46975
|
readonly AUTOMATION: "automation";
|
|
46650
46976
|
};
|
|
@@ -47326,10 +47652,30 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
47326
47652
|
id: string;
|
|
47327
47653
|
/**
|
|
47328
47654
|
*
|
|
47329
|
-
* @type {
|
|
47655
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
47330
47656
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
47331
47657
|
*/
|
|
47332
|
-
attributes:
|
|
47658
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
47659
|
+
}
|
|
47660
|
+
|
|
47661
|
+
/**
|
|
47662
|
+
*
|
|
47663
|
+
* @export
|
|
47664
|
+
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
47665
|
+
*/
|
|
47666
|
+
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
47667
|
+
/**
|
|
47668
|
+
*
|
|
47669
|
+
* @type {string}
|
|
47670
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
47671
|
+
*/
|
|
47672
|
+
applicationName: string;
|
|
47673
|
+
/**
|
|
47674
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
47675
|
+
* @type {object}
|
|
47676
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
47677
|
+
*/
|
|
47678
|
+
content: object;
|
|
47333
47679
|
}
|
|
47334
47680
|
|
|
47335
47681
|
/**
|
|
@@ -47378,30 +47724,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
47378
47724
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47379
47725
|
/**
|
|
47380
47726
|
*
|
|
47381
|
-
* @type {
|
|
47727
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
47382
47728
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
47383
47729
|
*/
|
|
47384
|
-
attributes:
|
|
47385
|
-
}
|
|
47386
|
-
|
|
47387
|
-
/**
|
|
47388
|
-
*
|
|
47389
|
-
* @export
|
|
47390
|
-
* @interface JsonApiCustomApplicationSettingOutAttributes
|
|
47391
|
-
*/
|
|
47392
|
-
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
47393
|
-
/**
|
|
47394
|
-
*
|
|
47395
|
-
* @type {string}
|
|
47396
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
47397
|
-
*/
|
|
47398
|
-
applicationName: string;
|
|
47399
|
-
/**
|
|
47400
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
47401
|
-
* @type {object}
|
|
47402
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
47403
|
-
*/
|
|
47404
|
-
content: object;
|
|
47730
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
47405
47731
|
}
|
|
47406
47732
|
|
|
47407
47733
|
/**
|
|
@@ -47482,10 +47808,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
47482
47808
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
47483
47809
|
/**
|
|
47484
47810
|
*
|
|
47485
|
-
* @type {
|
|
47811
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
47486
47812
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
47487
47813
|
*/
|
|
47488
|
-
attributes:
|
|
47814
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
47489
47815
|
/**
|
|
47490
47816
|
*
|
|
47491
47817
|
* @type {ObjectLinks}
|
|
@@ -47586,10 +47912,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
47586
47912
|
id?: string;
|
|
47587
47913
|
/**
|
|
47588
47914
|
*
|
|
47589
|
-
* @type {
|
|
47915
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
47590
47916
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
47591
47917
|
*/
|
|
47592
|
-
attributes:
|
|
47918
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
47593
47919
|
}
|
|
47594
47920
|
|
|
47595
47921
|
/**
|
|
@@ -47632,10 +47958,48 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
47632
47958
|
id: string;
|
|
47633
47959
|
/**
|
|
47634
47960
|
*
|
|
47635
|
-
* @type {
|
|
47961
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
47636
47962
|
* @memberof JsonApiDashboardPluginIn
|
|
47637
47963
|
*/
|
|
47638
|
-
attributes?:
|
|
47964
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
47965
|
+
}
|
|
47966
|
+
|
|
47967
|
+
/**
|
|
47968
|
+
*
|
|
47969
|
+
* @export
|
|
47970
|
+
* @interface JsonApiDashboardPluginInAttributes
|
|
47971
|
+
*/
|
|
47972
|
+
export declare interface JsonApiDashboardPluginInAttributes {
|
|
47973
|
+
/**
|
|
47974
|
+
*
|
|
47975
|
+
* @type {string}
|
|
47976
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
47977
|
+
*/
|
|
47978
|
+
title?: string;
|
|
47979
|
+
/**
|
|
47980
|
+
*
|
|
47981
|
+
* @type {string}
|
|
47982
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
47983
|
+
*/
|
|
47984
|
+
description?: string;
|
|
47985
|
+
/**
|
|
47986
|
+
*
|
|
47987
|
+
* @type {Array<string>}
|
|
47988
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
47989
|
+
*/
|
|
47990
|
+
tags?: Array<string>;
|
|
47991
|
+
/**
|
|
47992
|
+
*
|
|
47993
|
+
* @type {boolean}
|
|
47994
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
47995
|
+
*/
|
|
47996
|
+
areRelationsValid?: boolean;
|
|
47997
|
+
/**
|
|
47998
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
47999
|
+
* @type {object}
|
|
48000
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
48001
|
+
*/
|
|
48002
|
+
content?: object;
|
|
47639
48003
|
}
|
|
47640
48004
|
|
|
47641
48005
|
/**
|
|
@@ -47926,48 +48290,10 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
47926
48290
|
id: string;
|
|
47927
48291
|
/**
|
|
47928
48292
|
*
|
|
47929
|
-
* @type {
|
|
48293
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
47930
48294
|
* @memberof JsonApiDashboardPluginPatch
|
|
47931
48295
|
*/
|
|
47932
|
-
attributes?:
|
|
47933
|
-
}
|
|
47934
|
-
|
|
47935
|
-
/**
|
|
47936
|
-
*
|
|
47937
|
-
* @export
|
|
47938
|
-
* @interface JsonApiDashboardPluginPatchAttributes
|
|
47939
|
-
*/
|
|
47940
|
-
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
47941
|
-
/**
|
|
47942
|
-
*
|
|
47943
|
-
* @type {string}
|
|
47944
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
47945
|
-
*/
|
|
47946
|
-
title?: string;
|
|
47947
|
-
/**
|
|
47948
|
-
*
|
|
47949
|
-
* @type {string}
|
|
47950
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
47951
|
-
*/
|
|
47952
|
-
description?: string;
|
|
47953
|
-
/**
|
|
47954
|
-
*
|
|
47955
|
-
* @type {Array<string>}
|
|
47956
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
47957
|
-
*/
|
|
47958
|
-
tags?: Array<string>;
|
|
47959
|
-
/**
|
|
47960
|
-
*
|
|
47961
|
-
* @type {boolean}
|
|
47962
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
47963
|
-
*/
|
|
47964
|
-
areRelationsValid?: boolean;
|
|
47965
|
-
/**
|
|
47966
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
47967
|
-
* @type {object}
|
|
47968
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
47969
|
-
*/
|
|
47970
|
-
content?: object;
|
|
48296
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
47971
48297
|
}
|
|
47972
48298
|
|
|
47973
48299
|
/**
|
|
@@ -48010,10 +48336,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
48010
48336
|
id?: string;
|
|
48011
48337
|
/**
|
|
48012
48338
|
*
|
|
48013
|
-
* @type {
|
|
48339
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
48014
48340
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
48015
48341
|
*/
|
|
48016
|
-
attributes?:
|
|
48342
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
48017
48343
|
}
|
|
48018
48344
|
|
|
48019
48345
|
/**
|
|
@@ -49485,16 +49811,54 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
49485
49811
|
id: string;
|
|
49486
49812
|
/**
|
|
49487
49813
|
*
|
|
49488
|
-
* @type {
|
|
49814
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
49489
49815
|
* @memberof JsonApiExportDefinitionIn
|
|
49490
49816
|
*/
|
|
49491
|
-
attributes?:
|
|
49817
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
49492
49818
|
/**
|
|
49493
49819
|
*
|
|
49494
|
-
* @type {
|
|
49820
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
49495
49821
|
* @memberof JsonApiExportDefinitionIn
|
|
49496
49822
|
*/
|
|
49497
|
-
relationships?:
|
|
49823
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
49824
|
+
}
|
|
49825
|
+
|
|
49826
|
+
/**
|
|
49827
|
+
*
|
|
49828
|
+
* @export
|
|
49829
|
+
* @interface JsonApiExportDefinitionInAttributes
|
|
49830
|
+
*/
|
|
49831
|
+
export declare interface JsonApiExportDefinitionInAttributes {
|
|
49832
|
+
/**
|
|
49833
|
+
*
|
|
49834
|
+
* @type {string}
|
|
49835
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
49836
|
+
*/
|
|
49837
|
+
title?: string;
|
|
49838
|
+
/**
|
|
49839
|
+
*
|
|
49840
|
+
* @type {string}
|
|
49841
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
49842
|
+
*/
|
|
49843
|
+
description?: string;
|
|
49844
|
+
/**
|
|
49845
|
+
*
|
|
49846
|
+
* @type {Array<string>}
|
|
49847
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
49848
|
+
*/
|
|
49849
|
+
tags?: Array<string>;
|
|
49850
|
+
/**
|
|
49851
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
49852
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
49853
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
49854
|
+
*/
|
|
49855
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
49856
|
+
/**
|
|
49857
|
+
*
|
|
49858
|
+
* @type {boolean}
|
|
49859
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
49860
|
+
*/
|
|
49861
|
+
areRelationsValid?: boolean;
|
|
49498
49862
|
}
|
|
49499
49863
|
|
|
49500
49864
|
/**
|
|
@@ -49511,6 +49875,26 @@ export declare interface JsonApiExportDefinitionInDocument {
|
|
|
49511
49875
|
data: JsonApiExportDefinitionIn;
|
|
49512
49876
|
}
|
|
49513
49877
|
|
|
49878
|
+
/**
|
|
49879
|
+
*
|
|
49880
|
+
* @export
|
|
49881
|
+
* @interface JsonApiExportDefinitionInRelationships
|
|
49882
|
+
*/
|
|
49883
|
+
export declare interface JsonApiExportDefinitionInRelationships {
|
|
49884
|
+
/**
|
|
49885
|
+
*
|
|
49886
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
49887
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
49888
|
+
*/
|
|
49889
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
49890
|
+
/**
|
|
49891
|
+
*
|
|
49892
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
49893
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
49894
|
+
*/
|
|
49895
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
49896
|
+
}
|
|
49897
|
+
|
|
49514
49898
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
49515
49899
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
49516
49900
|
};
|
|
@@ -49709,10 +50093,10 @@ export declare interface JsonApiExportDefinitionOutRelationships {
|
|
|
49709
50093
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
49710
50094
|
/**
|
|
49711
50095
|
*
|
|
49712
|
-
* @type {
|
|
50096
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
49713
50097
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
49714
50098
|
*/
|
|
49715
|
-
analyticalDashboard?:
|
|
50099
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
49716
50100
|
/**
|
|
49717
50101
|
*
|
|
49718
50102
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -49837,54 +50221,16 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
49837
50221
|
id: string;
|
|
49838
50222
|
/**
|
|
49839
50223
|
*
|
|
49840
|
-
* @type {
|
|
50224
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
49841
50225
|
* @memberof JsonApiExportDefinitionPatch
|
|
49842
50226
|
*/
|
|
49843
|
-
attributes?:
|
|
50227
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
49844
50228
|
/**
|
|
49845
50229
|
*
|
|
49846
|
-
* @type {
|
|
50230
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
49847
50231
|
* @memberof JsonApiExportDefinitionPatch
|
|
49848
50232
|
*/
|
|
49849
|
-
relationships?:
|
|
49850
|
-
}
|
|
49851
|
-
|
|
49852
|
-
/**
|
|
49853
|
-
*
|
|
49854
|
-
* @export
|
|
49855
|
-
* @interface JsonApiExportDefinitionPatchAttributes
|
|
49856
|
-
*/
|
|
49857
|
-
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
49858
|
-
/**
|
|
49859
|
-
*
|
|
49860
|
-
* @type {string}
|
|
49861
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
49862
|
-
*/
|
|
49863
|
-
title?: string;
|
|
49864
|
-
/**
|
|
49865
|
-
*
|
|
49866
|
-
* @type {string}
|
|
49867
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
49868
|
-
*/
|
|
49869
|
-
description?: string;
|
|
49870
|
-
/**
|
|
49871
|
-
*
|
|
49872
|
-
* @type {Array<string>}
|
|
49873
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
49874
|
-
*/
|
|
49875
|
-
tags?: Array<string>;
|
|
49876
|
-
/**
|
|
49877
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
49878
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
49879
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
49880
|
-
*/
|
|
49881
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
49882
|
-
/**
|
|
49883
|
-
*
|
|
49884
|
-
* @type {boolean}
|
|
49885
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
49886
|
-
*/
|
|
49887
|
-
areRelationsValid?: boolean;
|
|
50233
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
49888
50234
|
}
|
|
49889
50235
|
|
|
49890
50236
|
/**
|
|
@@ -49901,26 +50247,6 @@ export declare interface JsonApiExportDefinitionPatchDocument {
|
|
|
49901
50247
|
data: JsonApiExportDefinitionPatch;
|
|
49902
50248
|
}
|
|
49903
50249
|
|
|
49904
|
-
/**
|
|
49905
|
-
*
|
|
49906
|
-
* @export
|
|
49907
|
-
* @interface JsonApiExportDefinitionPatchRelationships
|
|
49908
|
-
*/
|
|
49909
|
-
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
49910
|
-
/**
|
|
49911
|
-
*
|
|
49912
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
49913
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
49914
|
-
*/
|
|
49915
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
49916
|
-
/**
|
|
49917
|
-
*
|
|
49918
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
49919
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
49920
|
-
*/
|
|
49921
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
49922
|
-
}
|
|
49923
|
-
|
|
49924
50250
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
49925
50251
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
49926
50252
|
};
|
|
@@ -49947,16 +50273,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
49947
50273
|
id?: string;
|
|
49948
50274
|
/**
|
|
49949
50275
|
*
|
|
49950
|
-
* @type {
|
|
50276
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
49951
50277
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
49952
50278
|
*/
|
|
49953
|
-
attributes?:
|
|
50279
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
49954
50280
|
/**
|
|
49955
50281
|
*
|
|
49956
|
-
* @type {
|
|
50282
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
49957
50283
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
49958
50284
|
*/
|
|
49959
|
-
relationships?:
|
|
50285
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
49960
50286
|
}
|
|
49961
50287
|
|
|
49962
50288
|
/**
|
|
@@ -50625,10 +50951,10 @@ export declare interface JsonApiFilterContextIn {
|
|
|
50625
50951
|
id: string;
|
|
50626
50952
|
/**
|
|
50627
50953
|
*
|
|
50628
|
-
* @type {
|
|
50954
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
50629
50955
|
* @memberof JsonApiFilterContextIn
|
|
50630
50956
|
*/
|
|
50631
|
-
attributes:
|
|
50957
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
50632
50958
|
}
|
|
50633
50959
|
|
|
50634
50960
|
/**
|
|
@@ -50703,10 +51029,10 @@ export declare interface JsonApiFilterContextOut {
|
|
|
50703
51029
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50704
51030
|
/**
|
|
50705
51031
|
*
|
|
50706
|
-
* @type {
|
|
51032
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
50707
51033
|
* @memberof JsonApiFilterContextOut
|
|
50708
51034
|
*/
|
|
50709
|
-
attributes:
|
|
51035
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
50710
51036
|
/**
|
|
50711
51037
|
*
|
|
50712
51038
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -50715,44 +51041,6 @@ export declare interface JsonApiFilterContextOut {
|
|
|
50715
51041
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
50716
51042
|
}
|
|
50717
51043
|
|
|
50718
|
-
/**
|
|
50719
|
-
*
|
|
50720
|
-
* @export
|
|
50721
|
-
* @interface JsonApiFilterContextOutAttributes
|
|
50722
|
-
*/
|
|
50723
|
-
export declare interface JsonApiFilterContextOutAttributes {
|
|
50724
|
-
/**
|
|
50725
|
-
*
|
|
50726
|
-
* @type {string}
|
|
50727
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
50728
|
-
*/
|
|
50729
|
-
title?: string;
|
|
50730
|
-
/**
|
|
50731
|
-
*
|
|
50732
|
-
* @type {string}
|
|
50733
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
50734
|
-
*/
|
|
50735
|
-
description?: string;
|
|
50736
|
-
/**
|
|
50737
|
-
*
|
|
50738
|
-
* @type {Array<string>}
|
|
50739
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
50740
|
-
*/
|
|
50741
|
-
tags?: Array<string>;
|
|
50742
|
-
/**
|
|
50743
|
-
*
|
|
50744
|
-
* @type {boolean}
|
|
50745
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
50746
|
-
*/
|
|
50747
|
-
areRelationsValid?: boolean;
|
|
50748
|
-
/**
|
|
50749
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50750
|
-
* @type {object}
|
|
50751
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
50752
|
-
*/
|
|
50753
|
-
content: object;
|
|
50754
|
-
}
|
|
50755
|
-
|
|
50756
51044
|
/**
|
|
50757
51045
|
*
|
|
50758
51046
|
* @export
|
|
@@ -50875,10 +51163,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
50875
51163
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50876
51164
|
/**
|
|
50877
51165
|
*
|
|
50878
|
-
* @type {
|
|
51166
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
50879
51167
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
50880
51168
|
*/
|
|
50881
|
-
attributes:
|
|
51169
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
50882
51170
|
/**
|
|
50883
51171
|
*
|
|
50884
51172
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -50965,10 +51253,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
50965
51253
|
id?: string;
|
|
50966
51254
|
/**
|
|
50967
51255
|
*
|
|
50968
|
-
* @type {
|
|
51256
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
50969
51257
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
50970
51258
|
*/
|
|
50971
|
-
attributes:
|
|
51259
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
50972
51260
|
}
|
|
50973
51261
|
|
|
50974
51262
|
/**
|
|
@@ -51011,16 +51299,60 @@ export declare interface JsonApiFilterViewIn {
|
|
|
51011
51299
|
id: string;
|
|
51012
51300
|
/**
|
|
51013
51301
|
*
|
|
51014
|
-
* @type {
|
|
51302
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
51015
51303
|
* @memberof JsonApiFilterViewIn
|
|
51016
51304
|
*/
|
|
51017
|
-
attributes:
|
|
51305
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
51018
51306
|
/**
|
|
51019
51307
|
*
|
|
51020
|
-
* @type {
|
|
51308
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
51021
51309
|
* @memberof JsonApiFilterViewIn
|
|
51022
51310
|
*/
|
|
51023
|
-
relationships?:
|
|
51311
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
51312
|
+
}
|
|
51313
|
+
|
|
51314
|
+
/**
|
|
51315
|
+
*
|
|
51316
|
+
* @export
|
|
51317
|
+
* @interface JsonApiFilterViewInAttributes
|
|
51318
|
+
*/
|
|
51319
|
+
export declare interface JsonApiFilterViewInAttributes {
|
|
51320
|
+
/**
|
|
51321
|
+
*
|
|
51322
|
+
* @type {string}
|
|
51323
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51324
|
+
*/
|
|
51325
|
+
title: string;
|
|
51326
|
+
/**
|
|
51327
|
+
*
|
|
51328
|
+
* @type {string}
|
|
51329
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51330
|
+
*/
|
|
51331
|
+
description?: string;
|
|
51332
|
+
/**
|
|
51333
|
+
*
|
|
51334
|
+
* @type {Array<string>}
|
|
51335
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51336
|
+
*/
|
|
51337
|
+
tags?: Array<string>;
|
|
51338
|
+
/**
|
|
51339
|
+
*
|
|
51340
|
+
* @type {boolean}
|
|
51341
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51342
|
+
*/
|
|
51343
|
+
areRelationsValid?: boolean;
|
|
51344
|
+
/**
|
|
51345
|
+
* Indicator whether the filter view should by applied by default.
|
|
51346
|
+
* @type {boolean}
|
|
51347
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51348
|
+
*/
|
|
51349
|
+
isDefault?: boolean;
|
|
51350
|
+
/**
|
|
51351
|
+
* The respective filter context.
|
|
51352
|
+
* @type {object}
|
|
51353
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
51354
|
+
*/
|
|
51355
|
+
content: object;
|
|
51024
51356
|
}
|
|
51025
51357
|
|
|
51026
51358
|
/**
|
|
@@ -51037,6 +51369,40 @@ export declare interface JsonApiFilterViewInDocument {
|
|
|
51037
51369
|
data: JsonApiFilterViewIn;
|
|
51038
51370
|
}
|
|
51039
51371
|
|
|
51372
|
+
/**
|
|
51373
|
+
*
|
|
51374
|
+
* @export
|
|
51375
|
+
* @interface JsonApiFilterViewInRelationships
|
|
51376
|
+
*/
|
|
51377
|
+
export declare interface JsonApiFilterViewInRelationships {
|
|
51378
|
+
/**
|
|
51379
|
+
*
|
|
51380
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
51381
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
51382
|
+
*/
|
|
51383
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
51384
|
+
/**
|
|
51385
|
+
*
|
|
51386
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
51387
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
51388
|
+
*/
|
|
51389
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
51390
|
+
}
|
|
51391
|
+
|
|
51392
|
+
/**
|
|
51393
|
+
*
|
|
51394
|
+
* @export
|
|
51395
|
+
* @interface JsonApiFilterViewInRelationshipsUser
|
|
51396
|
+
*/
|
|
51397
|
+
export declare interface JsonApiFilterViewInRelationshipsUser {
|
|
51398
|
+
/**
|
|
51399
|
+
*
|
|
51400
|
+
* @type {JsonApiUserToOneLinkage}
|
|
51401
|
+
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
51402
|
+
*/
|
|
51403
|
+
data: JsonApiUserToOneLinkage | null;
|
|
51404
|
+
}
|
|
51405
|
+
|
|
51040
51406
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
51041
51407
|
readonly FILTER_VIEW: "filterView";
|
|
51042
51408
|
};
|
|
@@ -51063,60 +51429,16 @@ export declare interface JsonApiFilterViewOut {
|
|
|
51063
51429
|
id: string;
|
|
51064
51430
|
/**
|
|
51065
51431
|
*
|
|
51066
|
-
* @type {
|
|
51432
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
51067
51433
|
* @memberof JsonApiFilterViewOut
|
|
51068
51434
|
*/
|
|
51069
|
-
attributes:
|
|
51435
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
51070
51436
|
/**
|
|
51071
51437
|
*
|
|
51072
|
-
* @type {
|
|
51438
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
51073
51439
|
* @memberof JsonApiFilterViewOut
|
|
51074
51440
|
*/
|
|
51075
|
-
relationships?:
|
|
51076
|
-
}
|
|
51077
|
-
|
|
51078
|
-
/**
|
|
51079
|
-
*
|
|
51080
|
-
* @export
|
|
51081
|
-
* @interface JsonApiFilterViewOutAttributes
|
|
51082
|
-
*/
|
|
51083
|
-
export declare interface JsonApiFilterViewOutAttributes {
|
|
51084
|
-
/**
|
|
51085
|
-
*
|
|
51086
|
-
* @type {string}
|
|
51087
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51088
|
-
*/
|
|
51089
|
-
title: string;
|
|
51090
|
-
/**
|
|
51091
|
-
*
|
|
51092
|
-
* @type {string}
|
|
51093
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51094
|
-
*/
|
|
51095
|
-
description?: string;
|
|
51096
|
-
/**
|
|
51097
|
-
*
|
|
51098
|
-
* @type {Array<string>}
|
|
51099
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51100
|
-
*/
|
|
51101
|
-
tags?: Array<string>;
|
|
51102
|
-
/**
|
|
51103
|
-
*
|
|
51104
|
-
* @type {boolean}
|
|
51105
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51106
|
-
*/
|
|
51107
|
-
areRelationsValid?: boolean;
|
|
51108
|
-
/**
|
|
51109
|
-
* Indicator whether the filter view should by applied by default.
|
|
51110
|
-
* @type {boolean}
|
|
51111
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51112
|
-
*/
|
|
51113
|
-
isDefault?: boolean;
|
|
51114
|
-
/**
|
|
51115
|
-
* The respective filter context.
|
|
51116
|
-
* @type {object}
|
|
51117
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
51118
|
-
*/
|
|
51119
|
-
content: object;
|
|
51441
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
51120
51442
|
}
|
|
51121
51443
|
|
|
51122
51444
|
/**
|
|
@@ -51209,16 +51531,16 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
51209
51531
|
id: string;
|
|
51210
51532
|
/**
|
|
51211
51533
|
*
|
|
51212
|
-
* @type {
|
|
51534
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
51213
51535
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
51214
51536
|
*/
|
|
51215
|
-
attributes:
|
|
51537
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
51216
51538
|
/**
|
|
51217
51539
|
*
|
|
51218
|
-
* @type {
|
|
51540
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
51219
51541
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
51220
51542
|
*/
|
|
51221
|
-
relationships?:
|
|
51543
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
51222
51544
|
/**
|
|
51223
51545
|
*
|
|
51224
51546
|
* @type {ObjectLinks}
|
|
@@ -51259,10 +51581,10 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
51259
51581
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
51260
51582
|
/**
|
|
51261
51583
|
*
|
|
51262
|
-
* @type {
|
|
51584
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
51263
51585
|
* @memberof JsonApiFilterViewPatch
|
|
51264
51586
|
*/
|
|
51265
|
-
relationships?:
|
|
51587
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
51266
51588
|
}
|
|
51267
51589
|
|
|
51268
51590
|
/**
|
|
@@ -51323,40 +51645,6 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
51323
51645
|
data: JsonApiFilterViewPatch;
|
|
51324
51646
|
}
|
|
51325
51647
|
|
|
51326
|
-
/**
|
|
51327
|
-
*
|
|
51328
|
-
* @export
|
|
51329
|
-
* @interface JsonApiFilterViewPatchRelationships
|
|
51330
|
-
*/
|
|
51331
|
-
export declare interface JsonApiFilterViewPatchRelationships {
|
|
51332
|
-
/**
|
|
51333
|
-
*
|
|
51334
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
51335
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
51336
|
-
*/
|
|
51337
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
51338
|
-
/**
|
|
51339
|
-
*
|
|
51340
|
-
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
51341
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
51342
|
-
*/
|
|
51343
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
51344
|
-
}
|
|
51345
|
-
|
|
51346
|
-
/**
|
|
51347
|
-
*
|
|
51348
|
-
* @export
|
|
51349
|
-
* @interface JsonApiFilterViewPatchRelationshipsUser
|
|
51350
|
-
*/
|
|
51351
|
-
export declare interface JsonApiFilterViewPatchRelationshipsUser {
|
|
51352
|
-
/**
|
|
51353
|
-
*
|
|
51354
|
-
* @type {JsonApiUserToOneLinkage}
|
|
51355
|
-
* @memberof JsonApiFilterViewPatchRelationshipsUser
|
|
51356
|
-
*/
|
|
51357
|
-
data: JsonApiUserToOneLinkage | null;
|
|
51358
|
-
}
|
|
51359
|
-
|
|
51360
51648
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
51361
51649
|
readonly FILTER_VIEW: "filterView";
|
|
51362
51650
|
};
|
|
@@ -52290,12 +52578,6 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
52290
52578
|
* @memberof JsonApiLlmEndpointInAttributes
|
|
52291
52579
|
*/
|
|
52292
52580
|
llmModel?: string;
|
|
52293
|
-
/**
|
|
52294
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
52295
|
-
* @type {Array<string>}
|
|
52296
|
-
* @memberof JsonApiLlmEndpointInAttributes
|
|
52297
|
-
*/
|
|
52298
|
-
workspaceIds?: Array<string>;
|
|
52299
52581
|
}
|
|
52300
52582
|
|
|
52301
52583
|
export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
|
|
@@ -52392,12 +52674,6 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
52392
52674
|
* @memberof JsonApiLlmEndpointOutAttributes
|
|
52393
52675
|
*/
|
|
52394
52676
|
llmModel?: string;
|
|
52395
|
-
/**
|
|
52396
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
52397
|
-
* @type {Array<string>}
|
|
52398
|
-
* @memberof JsonApiLlmEndpointOutAttributes
|
|
52399
|
-
*/
|
|
52400
|
-
workspaceIds?: Array<string>;
|
|
52401
52677
|
}
|
|
52402
52678
|
|
|
52403
52679
|
export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
|
|
@@ -52570,12 +52846,6 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
52570
52846
|
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
52571
52847
|
*/
|
|
52572
52848
|
llmModel?: string;
|
|
52573
|
-
/**
|
|
52574
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
52575
|
-
* @type {Array<string>}
|
|
52576
|
-
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
52577
|
-
*/
|
|
52578
|
-
workspaceIds?: Array<string>;
|
|
52579
52849
|
}
|
|
52580
52850
|
|
|
52581
52851
|
export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
|
|
@@ -52624,10 +52894,48 @@ export declare interface JsonApiMetricIn {
|
|
|
52624
52894
|
id: string;
|
|
52625
52895
|
/**
|
|
52626
52896
|
*
|
|
52627
|
-
* @type {
|
|
52897
|
+
* @type {JsonApiMetricInAttributes}
|
|
52628
52898
|
* @memberof JsonApiMetricIn
|
|
52629
52899
|
*/
|
|
52630
|
-
attributes:
|
|
52900
|
+
attributes: JsonApiMetricInAttributes;
|
|
52901
|
+
}
|
|
52902
|
+
|
|
52903
|
+
/**
|
|
52904
|
+
*
|
|
52905
|
+
* @export
|
|
52906
|
+
* @interface JsonApiMetricInAttributes
|
|
52907
|
+
*/
|
|
52908
|
+
export declare interface JsonApiMetricInAttributes {
|
|
52909
|
+
/**
|
|
52910
|
+
*
|
|
52911
|
+
* @type {string}
|
|
52912
|
+
* @memberof JsonApiMetricInAttributes
|
|
52913
|
+
*/
|
|
52914
|
+
title?: string;
|
|
52915
|
+
/**
|
|
52916
|
+
*
|
|
52917
|
+
* @type {string}
|
|
52918
|
+
* @memberof JsonApiMetricInAttributes
|
|
52919
|
+
*/
|
|
52920
|
+
description?: string;
|
|
52921
|
+
/**
|
|
52922
|
+
*
|
|
52923
|
+
* @type {Array<string>}
|
|
52924
|
+
* @memberof JsonApiMetricInAttributes
|
|
52925
|
+
*/
|
|
52926
|
+
tags?: Array<string>;
|
|
52927
|
+
/**
|
|
52928
|
+
*
|
|
52929
|
+
* @type {boolean}
|
|
52930
|
+
* @memberof JsonApiMetricInAttributes
|
|
52931
|
+
*/
|
|
52932
|
+
areRelationsValid?: boolean;
|
|
52933
|
+
/**
|
|
52934
|
+
*
|
|
52935
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
52936
|
+
* @memberof JsonApiMetricInAttributes
|
|
52937
|
+
*/
|
|
52938
|
+
content: JsonApiMetricOutAttributesContent;
|
|
52631
52939
|
}
|
|
52632
52940
|
|
|
52633
52941
|
/**
|
|
@@ -53008,48 +53316,10 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
53008
53316
|
id?: string;
|
|
53009
53317
|
/**
|
|
53010
53318
|
*
|
|
53011
|
-
* @type {
|
|
53319
|
+
* @type {JsonApiMetricInAttributes}
|
|
53012
53320
|
* @memberof JsonApiMetricPostOptionalId
|
|
53013
53321
|
*/
|
|
53014
|
-
attributes:
|
|
53015
|
-
}
|
|
53016
|
-
|
|
53017
|
-
/**
|
|
53018
|
-
*
|
|
53019
|
-
* @export
|
|
53020
|
-
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
53021
|
-
*/
|
|
53022
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
53023
|
-
/**
|
|
53024
|
-
*
|
|
53025
|
-
* @type {string}
|
|
53026
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
53027
|
-
*/
|
|
53028
|
-
title?: string;
|
|
53029
|
-
/**
|
|
53030
|
-
*
|
|
53031
|
-
* @type {string}
|
|
53032
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
53033
|
-
*/
|
|
53034
|
-
description?: string;
|
|
53035
|
-
/**
|
|
53036
|
-
*
|
|
53037
|
-
* @type {Array<string>}
|
|
53038
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
53039
|
-
*/
|
|
53040
|
-
tags?: Array<string>;
|
|
53041
|
-
/**
|
|
53042
|
-
*
|
|
53043
|
-
* @type {boolean}
|
|
53044
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
53045
|
-
*/
|
|
53046
|
-
areRelationsValid?: boolean;
|
|
53047
|
-
/**
|
|
53048
|
-
*
|
|
53049
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
53050
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
53051
|
-
*/
|
|
53052
|
-
content: JsonApiMetricOutAttributesContent;
|
|
53322
|
+
attributes: JsonApiMetricInAttributes;
|
|
53053
53323
|
}
|
|
53054
53324
|
|
|
53055
53325
|
/**
|
|
@@ -53540,93 +53810,10 @@ export declare interface JsonApiOrganizationIn {
|
|
|
53540
53810
|
id: string;
|
|
53541
53811
|
/**
|
|
53542
53812
|
*
|
|
53543
|
-
* @type {
|
|
53813
|
+
* @type {JsonApiOrganizationPatchAttributes}
|
|
53544
53814
|
* @memberof JsonApiOrganizationIn
|
|
53545
53815
|
*/
|
|
53546
|
-
attributes?:
|
|
53547
|
-
}
|
|
53548
|
-
|
|
53549
|
-
/**
|
|
53550
|
-
*
|
|
53551
|
-
* @export
|
|
53552
|
-
* @interface JsonApiOrganizationInAttributes
|
|
53553
|
-
*/
|
|
53554
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
53555
|
-
/**
|
|
53556
|
-
*
|
|
53557
|
-
* @type {string}
|
|
53558
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53559
|
-
*/
|
|
53560
|
-
name?: string | null;
|
|
53561
|
-
/**
|
|
53562
|
-
*
|
|
53563
|
-
* @type {string}
|
|
53564
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53565
|
-
*/
|
|
53566
|
-
hostname?: string;
|
|
53567
|
-
/**
|
|
53568
|
-
*
|
|
53569
|
-
* @type {Array<string>}
|
|
53570
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53571
|
-
*/
|
|
53572
|
-
allowedOrigins?: Array<string>;
|
|
53573
|
-
/**
|
|
53574
|
-
*
|
|
53575
|
-
* @type {string}
|
|
53576
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53577
|
-
*/
|
|
53578
|
-
oauthIssuerLocation?: string;
|
|
53579
|
-
/**
|
|
53580
|
-
*
|
|
53581
|
-
* @type {string}
|
|
53582
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53583
|
-
*/
|
|
53584
|
-
oauthClientId?: string;
|
|
53585
|
-
/**
|
|
53586
|
-
*
|
|
53587
|
-
* @type {string}
|
|
53588
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53589
|
-
*/
|
|
53590
|
-
oauthClientSecret?: string;
|
|
53591
|
-
/**
|
|
53592
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
53593
|
-
* @type {string}
|
|
53594
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53595
|
-
* @deprecated
|
|
53596
|
-
*/
|
|
53597
|
-
earlyAccess?: string | null;
|
|
53598
|
-
/**
|
|
53599
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
53600
|
-
* @type {Array<string>}
|
|
53601
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53602
|
-
*/
|
|
53603
|
-
earlyAccessValues?: Array<string> | null;
|
|
53604
|
-
/**
|
|
53605
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
53606
|
-
* @type {string}
|
|
53607
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53608
|
-
*/
|
|
53609
|
-
oauthIssuerId?: string;
|
|
53610
|
-
/**
|
|
53611
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
53612
|
-
* @type {string}
|
|
53613
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53614
|
-
*/
|
|
53615
|
-
oauthSubjectIdClaim?: string;
|
|
53616
|
-
/**
|
|
53617
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
53618
|
-
* @type {{ [key: string]: string; }}
|
|
53619
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53620
|
-
*/
|
|
53621
|
-
oauthCustomAuthAttributes?: {
|
|
53622
|
-
[key: string]: string;
|
|
53623
|
-
};
|
|
53624
|
-
/**
|
|
53625
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
53626
|
-
* @type {Array<string>}
|
|
53627
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
53628
|
-
*/
|
|
53629
|
-
oauthCustomScopes?: Array<string> | null;
|
|
53816
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
53630
53817
|
}
|
|
53631
53818
|
|
|
53632
53819
|
/**
|
|
@@ -53858,16 +54045,16 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
|
|
|
53858
54045
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
53859
54046
|
/**
|
|
53860
54047
|
*
|
|
53861
|
-
* @type {
|
|
54048
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
53862
54049
|
* @memberof JsonApiOrganizationOutRelationships
|
|
53863
54050
|
*/
|
|
53864
|
-
bootstrapUser?:
|
|
54051
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
53865
54052
|
/**
|
|
53866
54053
|
*
|
|
53867
|
-
* @type {
|
|
54054
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
53868
54055
|
* @memberof JsonApiOrganizationOutRelationships
|
|
53869
54056
|
*/
|
|
53870
|
-
bootstrapUserGroup?:
|
|
54057
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
53871
54058
|
}
|
|
53872
54059
|
|
|
53873
54060
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -53896,10 +54083,93 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
53896
54083
|
id: string;
|
|
53897
54084
|
/**
|
|
53898
54085
|
*
|
|
53899
|
-
* @type {
|
|
54086
|
+
* @type {JsonApiOrganizationPatchAttributes}
|
|
53900
54087
|
* @memberof JsonApiOrganizationPatch
|
|
53901
54088
|
*/
|
|
53902
|
-
attributes?:
|
|
54089
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
54090
|
+
}
|
|
54091
|
+
|
|
54092
|
+
/**
|
|
54093
|
+
*
|
|
54094
|
+
* @export
|
|
54095
|
+
* @interface JsonApiOrganizationPatchAttributes
|
|
54096
|
+
*/
|
|
54097
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
54098
|
+
/**
|
|
54099
|
+
*
|
|
54100
|
+
* @type {string}
|
|
54101
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54102
|
+
*/
|
|
54103
|
+
name?: string | null;
|
|
54104
|
+
/**
|
|
54105
|
+
*
|
|
54106
|
+
* @type {string}
|
|
54107
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54108
|
+
*/
|
|
54109
|
+
hostname?: string;
|
|
54110
|
+
/**
|
|
54111
|
+
*
|
|
54112
|
+
* @type {Array<string>}
|
|
54113
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54114
|
+
*/
|
|
54115
|
+
allowedOrigins?: Array<string>;
|
|
54116
|
+
/**
|
|
54117
|
+
*
|
|
54118
|
+
* @type {string}
|
|
54119
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54120
|
+
*/
|
|
54121
|
+
oauthIssuerLocation?: string;
|
|
54122
|
+
/**
|
|
54123
|
+
*
|
|
54124
|
+
* @type {string}
|
|
54125
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54126
|
+
*/
|
|
54127
|
+
oauthClientId?: string;
|
|
54128
|
+
/**
|
|
54129
|
+
*
|
|
54130
|
+
* @type {string}
|
|
54131
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54132
|
+
*/
|
|
54133
|
+
oauthClientSecret?: string;
|
|
54134
|
+
/**
|
|
54135
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
54136
|
+
* @type {string}
|
|
54137
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54138
|
+
* @deprecated
|
|
54139
|
+
*/
|
|
54140
|
+
earlyAccess?: string | null;
|
|
54141
|
+
/**
|
|
54142
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
54143
|
+
* @type {Array<string>}
|
|
54144
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54145
|
+
*/
|
|
54146
|
+
earlyAccessValues?: Array<string> | null;
|
|
54147
|
+
/**
|
|
54148
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
54149
|
+
* @type {string}
|
|
54150
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54151
|
+
*/
|
|
54152
|
+
oauthIssuerId?: string;
|
|
54153
|
+
/**
|
|
54154
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
54155
|
+
* @type {string}
|
|
54156
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54157
|
+
*/
|
|
54158
|
+
oauthSubjectIdClaim?: string;
|
|
54159
|
+
/**
|
|
54160
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
54161
|
+
* @type {{ [key: string]: string; }}
|
|
54162
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54163
|
+
*/
|
|
54164
|
+
oauthCustomAuthAttributes?: {
|
|
54165
|
+
[key: string]: string;
|
|
54166
|
+
};
|
|
54167
|
+
/**
|
|
54168
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
54169
|
+
* @type {Array<string>}
|
|
54170
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
54171
|
+
*/
|
|
54172
|
+
oauthCustomScopes?: Array<string> | null;
|
|
53903
54173
|
}
|
|
53904
54174
|
|
|
53905
54175
|
/**
|
|
@@ -54358,16 +54628,54 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
54358
54628
|
id: string;
|
|
54359
54629
|
/**
|
|
54360
54630
|
*
|
|
54361
|
-
* @type {
|
|
54631
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
54362
54632
|
* @memberof JsonApiUserDataFilterIn
|
|
54363
54633
|
*/
|
|
54364
|
-
attributes:
|
|
54634
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
54365
54635
|
/**
|
|
54366
54636
|
*
|
|
54367
|
-
* @type {
|
|
54637
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
54368
54638
|
* @memberof JsonApiUserDataFilterIn
|
|
54369
54639
|
*/
|
|
54370
|
-
relationships?:
|
|
54640
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
54641
|
+
}
|
|
54642
|
+
|
|
54643
|
+
/**
|
|
54644
|
+
*
|
|
54645
|
+
* @export
|
|
54646
|
+
* @interface JsonApiUserDataFilterInAttributes
|
|
54647
|
+
*/
|
|
54648
|
+
export declare interface JsonApiUserDataFilterInAttributes {
|
|
54649
|
+
/**
|
|
54650
|
+
*
|
|
54651
|
+
* @type {string}
|
|
54652
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
54653
|
+
*/
|
|
54654
|
+
title?: string;
|
|
54655
|
+
/**
|
|
54656
|
+
*
|
|
54657
|
+
* @type {string}
|
|
54658
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
54659
|
+
*/
|
|
54660
|
+
description?: string;
|
|
54661
|
+
/**
|
|
54662
|
+
*
|
|
54663
|
+
* @type {Array<string>}
|
|
54664
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
54665
|
+
*/
|
|
54666
|
+
tags?: Array<string>;
|
|
54667
|
+
/**
|
|
54668
|
+
*
|
|
54669
|
+
* @type {boolean}
|
|
54670
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
54671
|
+
*/
|
|
54672
|
+
areRelationsValid?: boolean;
|
|
54673
|
+
/**
|
|
54674
|
+
*
|
|
54675
|
+
* @type {string}
|
|
54676
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
54677
|
+
*/
|
|
54678
|
+
maql: string;
|
|
54371
54679
|
}
|
|
54372
54680
|
|
|
54373
54681
|
/**
|
|
@@ -54384,6 +54692,40 @@ export declare interface JsonApiUserDataFilterInDocument {
|
|
|
54384
54692
|
data: JsonApiUserDataFilterIn;
|
|
54385
54693
|
}
|
|
54386
54694
|
|
|
54695
|
+
/**
|
|
54696
|
+
*
|
|
54697
|
+
* @export
|
|
54698
|
+
* @interface JsonApiUserDataFilterInRelationships
|
|
54699
|
+
*/
|
|
54700
|
+
export declare interface JsonApiUserDataFilterInRelationships {
|
|
54701
|
+
/**
|
|
54702
|
+
*
|
|
54703
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
54704
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
54705
|
+
*/
|
|
54706
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
54707
|
+
/**
|
|
54708
|
+
*
|
|
54709
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
54710
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
54711
|
+
*/
|
|
54712
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
54713
|
+
}
|
|
54714
|
+
|
|
54715
|
+
/**
|
|
54716
|
+
*
|
|
54717
|
+
* @export
|
|
54718
|
+
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
54719
|
+
*/
|
|
54720
|
+
export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
54721
|
+
/**
|
|
54722
|
+
*
|
|
54723
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
54724
|
+
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
54725
|
+
*/
|
|
54726
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
54727
|
+
}
|
|
54728
|
+
|
|
54387
54729
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
54388
54730
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
54389
54731
|
};
|
|
@@ -54416,10 +54758,10 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
54416
54758
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
54417
54759
|
/**
|
|
54418
54760
|
*
|
|
54419
|
-
* @type {
|
|
54761
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
54420
54762
|
* @memberof JsonApiUserDataFilterOut
|
|
54421
54763
|
*/
|
|
54422
|
-
attributes:
|
|
54764
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
54423
54765
|
/**
|
|
54424
54766
|
*
|
|
54425
54767
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -54428,44 +54770,6 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
54428
54770
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
54429
54771
|
}
|
|
54430
54772
|
|
|
54431
|
-
/**
|
|
54432
|
-
*
|
|
54433
|
-
* @export
|
|
54434
|
-
* @interface JsonApiUserDataFilterOutAttributes
|
|
54435
|
-
*/
|
|
54436
|
-
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
54437
|
-
/**
|
|
54438
|
-
*
|
|
54439
|
-
* @type {string}
|
|
54440
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
54441
|
-
*/
|
|
54442
|
-
title?: string;
|
|
54443
|
-
/**
|
|
54444
|
-
*
|
|
54445
|
-
* @type {string}
|
|
54446
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
54447
|
-
*/
|
|
54448
|
-
description?: string;
|
|
54449
|
-
/**
|
|
54450
|
-
*
|
|
54451
|
-
* @type {Array<string>}
|
|
54452
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
54453
|
-
*/
|
|
54454
|
-
tags?: Array<string>;
|
|
54455
|
-
/**
|
|
54456
|
-
*
|
|
54457
|
-
* @type {boolean}
|
|
54458
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
54459
|
-
*/
|
|
54460
|
-
areRelationsValid?: boolean;
|
|
54461
|
-
/**
|
|
54462
|
-
*
|
|
54463
|
-
* @type {string}
|
|
54464
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
54465
|
-
*/
|
|
54466
|
-
maql: string;
|
|
54467
|
-
}
|
|
54468
|
-
|
|
54469
54773
|
/**
|
|
54470
54774
|
*
|
|
54471
54775
|
* @export
|
|
@@ -54538,16 +54842,16 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
54538
54842
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
54539
54843
|
/**
|
|
54540
54844
|
*
|
|
54541
|
-
* @type {
|
|
54845
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
54542
54846
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
54543
54847
|
*/
|
|
54544
|
-
user?:
|
|
54848
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
54545
54849
|
/**
|
|
54546
54850
|
*
|
|
54547
|
-
* @type {
|
|
54851
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
54548
54852
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
54549
54853
|
*/
|
|
54550
|
-
userGroup?:
|
|
54854
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
54551
54855
|
/**
|
|
54552
54856
|
*
|
|
54553
54857
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -54612,10 +54916,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
54612
54916
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
54613
54917
|
/**
|
|
54614
54918
|
*
|
|
54615
|
-
* @type {
|
|
54919
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
54616
54920
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
54617
54921
|
*/
|
|
54618
|
-
attributes:
|
|
54922
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
54619
54923
|
/**
|
|
54620
54924
|
*
|
|
54621
54925
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -54662,10 +54966,10 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
54662
54966
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
54663
54967
|
/**
|
|
54664
54968
|
*
|
|
54665
|
-
* @type {
|
|
54969
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
54666
54970
|
* @memberof JsonApiUserDataFilterPatch
|
|
54667
54971
|
*/
|
|
54668
|
-
relationships?:
|
|
54972
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
54669
54973
|
}
|
|
54670
54974
|
|
|
54671
54975
|
/**
|
|
@@ -54720,40 +55024,6 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
54720
55024
|
data: JsonApiUserDataFilterPatch;
|
|
54721
55025
|
}
|
|
54722
55026
|
|
|
54723
|
-
/**
|
|
54724
|
-
*
|
|
54725
|
-
* @export
|
|
54726
|
-
* @interface JsonApiUserDataFilterPatchRelationships
|
|
54727
|
-
*/
|
|
54728
|
-
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
54729
|
-
/**
|
|
54730
|
-
*
|
|
54731
|
-
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
54732
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
54733
|
-
*/
|
|
54734
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
54735
|
-
/**
|
|
54736
|
-
*
|
|
54737
|
-
* @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
|
|
54738
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
54739
|
-
*/
|
|
54740
|
-
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
54741
|
-
}
|
|
54742
|
-
|
|
54743
|
-
/**
|
|
54744
|
-
*
|
|
54745
|
-
* @export
|
|
54746
|
-
* @interface JsonApiUserDataFilterPatchRelationshipsUserGroup
|
|
54747
|
-
*/
|
|
54748
|
-
export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
54749
|
-
/**
|
|
54750
|
-
*
|
|
54751
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
54752
|
-
* @memberof JsonApiUserDataFilterPatchRelationshipsUserGroup
|
|
54753
|
-
*/
|
|
54754
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
54755
|
-
}
|
|
54756
|
-
|
|
54757
55027
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
54758
55028
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
54759
55029
|
};
|
|
@@ -54780,16 +55050,16 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
54780
55050
|
id?: string;
|
|
54781
55051
|
/**
|
|
54782
55052
|
*
|
|
54783
|
-
* @type {
|
|
55053
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
54784
55054
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
54785
55055
|
*/
|
|
54786
|
-
attributes:
|
|
55056
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
54787
55057
|
/**
|
|
54788
55058
|
*
|
|
54789
|
-
* @type {
|
|
55059
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
54790
55060
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
54791
55061
|
*/
|
|
54792
|
-
relationships?:
|
|
55062
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
54793
55063
|
}
|
|
54794
55064
|
|
|
54795
55065
|
/**
|
|
@@ -55735,6 +56005,8 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
|
55735
56005
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
55736
56006
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
55737
56007
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
56008
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
56009
|
+
readonly LLM_ENDPOINT: "LLM_ENDPOINT";
|
|
55738
56010
|
};
|
|
55739
56011
|
|
|
55740
56012
|
export declare type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
@@ -55856,10 +56128,10 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
55856
56128
|
id: string;
|
|
55857
56129
|
/**
|
|
55858
56130
|
*
|
|
55859
|
-
* @type {
|
|
56131
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
55860
56132
|
* @memberof JsonApiVisualizationObjectIn
|
|
55861
56133
|
*/
|
|
55862
|
-
attributes:
|
|
56134
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
55863
56135
|
}
|
|
55864
56136
|
|
|
55865
56137
|
/**
|
|
@@ -56351,10 +56623,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
56351
56623
|
id?: string;
|
|
56352
56624
|
/**
|
|
56353
56625
|
*
|
|
56354
|
-
* @type {
|
|
56626
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
56355
56627
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
56356
56628
|
*/
|
|
56357
|
-
attributes:
|
|
56629
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
56358
56630
|
}
|
|
56359
56631
|
|
|
56360
56632
|
/**
|
|
@@ -56740,16 +57012,42 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
56740
57012
|
id: string;
|
|
56741
57013
|
/**
|
|
56742
57014
|
*
|
|
56743
|
-
* @type {
|
|
57015
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
56744
57016
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
56745
57017
|
*/
|
|
56746
|
-
attributes?:
|
|
57018
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
56747
57019
|
/**
|
|
56748
57020
|
*
|
|
56749
|
-
* @type {
|
|
57021
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
56750
57022
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
56751
57023
|
*/
|
|
56752
|
-
relationships?:
|
|
57024
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
57025
|
+
}
|
|
57026
|
+
|
|
57027
|
+
/**
|
|
57028
|
+
*
|
|
57029
|
+
* @export
|
|
57030
|
+
* @interface JsonApiWorkspaceDataFilterSettingInAttributes
|
|
57031
|
+
*/
|
|
57032
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
57033
|
+
/**
|
|
57034
|
+
*
|
|
57035
|
+
* @type {string}
|
|
57036
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
57037
|
+
*/
|
|
57038
|
+
title?: string;
|
|
57039
|
+
/**
|
|
57040
|
+
*
|
|
57041
|
+
* @type {string}
|
|
57042
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
57043
|
+
*/
|
|
57044
|
+
description?: string;
|
|
57045
|
+
/**
|
|
57046
|
+
*
|
|
57047
|
+
* @type {Array<string>}
|
|
57048
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
57049
|
+
*/
|
|
57050
|
+
filterValues?: Array<string>;
|
|
56753
57051
|
}
|
|
56754
57052
|
|
|
56755
57053
|
/**
|
|
@@ -56766,6 +57064,34 @@ export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
|
56766
57064
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
56767
57065
|
}
|
|
56768
57066
|
|
|
57067
|
+
/**
|
|
57068
|
+
*
|
|
57069
|
+
* @export
|
|
57070
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationships
|
|
57071
|
+
*/
|
|
57072
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
57073
|
+
/**
|
|
57074
|
+
*
|
|
57075
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
|
|
57076
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationships
|
|
57077
|
+
*/
|
|
57078
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
57079
|
+
}
|
|
57080
|
+
|
|
57081
|
+
/**
|
|
57082
|
+
*
|
|
57083
|
+
* @export
|
|
57084
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
57085
|
+
*/
|
|
57086
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
57087
|
+
/**
|
|
57088
|
+
*
|
|
57089
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
57090
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
57091
|
+
*/
|
|
57092
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
57093
|
+
}
|
|
57094
|
+
|
|
56769
57095
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
56770
57096
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
56771
57097
|
};
|
|
@@ -56824,16 +57150,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
56824
57150
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
56825
57151
|
/**
|
|
56826
57152
|
*
|
|
56827
|
-
* @type {
|
|
57153
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
56828
57154
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
56829
57155
|
*/
|
|
56830
|
-
attributes?:
|
|
57156
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
56831
57157
|
/**
|
|
56832
57158
|
*
|
|
56833
|
-
* @type {
|
|
57159
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
56834
57160
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
56835
57161
|
*/
|
|
56836
|
-
relationships?:
|
|
57162
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
56837
57163
|
}
|
|
56838
57164
|
|
|
56839
57165
|
/**
|
|
@@ -56926,16 +57252,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
56926
57252
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
56927
57253
|
/**
|
|
56928
57254
|
*
|
|
56929
|
-
* @type {
|
|
57255
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
56930
57256
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
56931
57257
|
*/
|
|
56932
|
-
attributes?:
|
|
57258
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
56933
57259
|
/**
|
|
56934
57260
|
*
|
|
56935
|
-
* @type {
|
|
57261
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
56936
57262
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
56937
57263
|
*/
|
|
56938
|
-
relationships?:
|
|
57264
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
56939
57265
|
/**
|
|
56940
57266
|
*
|
|
56941
57267
|
* @type {ObjectLinks}
|
|
@@ -56970,42 +57296,16 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
56970
57296
|
id: string;
|
|
56971
57297
|
/**
|
|
56972
57298
|
*
|
|
56973
|
-
* @type {
|
|
57299
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
56974
57300
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
56975
57301
|
*/
|
|
56976
|
-
attributes?:
|
|
57302
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
56977
57303
|
/**
|
|
56978
57304
|
*
|
|
56979
|
-
* @type {
|
|
57305
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
56980
57306
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
56981
57307
|
*/
|
|
56982
|
-
relationships?:
|
|
56983
|
-
}
|
|
56984
|
-
|
|
56985
|
-
/**
|
|
56986
|
-
*
|
|
56987
|
-
* @export
|
|
56988
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
56989
|
-
*/
|
|
56990
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
56991
|
-
/**
|
|
56992
|
-
*
|
|
56993
|
-
* @type {string}
|
|
56994
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
56995
|
-
*/
|
|
56996
|
-
title?: string;
|
|
56997
|
-
/**
|
|
56998
|
-
*
|
|
56999
|
-
* @type {string}
|
|
57000
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
57001
|
-
*/
|
|
57002
|
-
description?: string;
|
|
57003
|
-
/**
|
|
57004
|
-
*
|
|
57005
|
-
* @type {Array<string>}
|
|
57006
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
57007
|
-
*/
|
|
57008
|
-
filterValues?: Array<string>;
|
|
57308
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
57009
57309
|
}
|
|
57010
57310
|
|
|
57011
57311
|
/**
|
|
@@ -57022,34 +57322,6 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
57022
57322
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
57023
57323
|
}
|
|
57024
57324
|
|
|
57025
|
-
/**
|
|
57026
|
-
*
|
|
57027
|
-
* @export
|
|
57028
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
57029
|
-
*/
|
|
57030
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
57031
|
-
/**
|
|
57032
|
-
*
|
|
57033
|
-
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
57034
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
57035
|
-
*/
|
|
57036
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
57037
|
-
}
|
|
57038
|
-
|
|
57039
|
-
/**
|
|
57040
|
-
*
|
|
57041
|
-
* @export
|
|
57042
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
57043
|
-
*/
|
|
57044
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
57045
|
-
/**
|
|
57046
|
-
*
|
|
57047
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
57048
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
57049
|
-
*/
|
|
57050
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
57051
|
-
}
|
|
57052
|
-
|
|
57053
57325
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
57054
57326
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
57055
57327
|
};
|
|
@@ -74781,6 +75053,8 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
74781
75053
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
74782
75054
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
74783
75055
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
75056
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
75057
|
+
readonly LLM_ENDPOINT: "LLM_ENDPOINT";
|
|
74784
75058
|
};
|
|
74785
75059
|
|
|
74786
75060
|
export declare type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
|
|
@@ -81587,6 +81861,12 @@ export declare interface VisibleFilter {
|
|
|
81587
81861
|
* @memberof VisibleFilter
|
|
81588
81862
|
*/
|
|
81589
81863
|
title?: string;
|
|
81864
|
+
/**
|
|
81865
|
+
* Indicates if the filter is an all-time date filter. Such a filter is not included in report computation, so there is no filter with the same \'localIdentifier\' to be found. In such cases, this flag is used to inform the server to not search for the filter in the definitions and include it anyways.
|
|
81866
|
+
* @type {boolean}
|
|
81867
|
+
* @memberof VisibleFilter
|
|
81868
|
+
*/
|
|
81869
|
+
isAllTimeDateFilter?: boolean;
|
|
81590
81870
|
}
|
|
81591
81871
|
|
|
81592
81872
|
/**
|