@gooddata/api-client-tiger 10.29.0 → 10.30.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1214 -471
- package/esm/generated/afm-rest-api/api.d.ts +33 -2
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +24 -2
- package/esm/generated/automation-json-api/api.d.ts +93 -2
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +4 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +82 -2
- package/esm/generated/export-json-api/api.d.ts +2 -2
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +7 -4
- package/esm/generated/metadata-json-api/api.d.ts +1045 -449
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +351 -27
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8582 -8207
- 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
|
@@ -1214,7 +1214,7 @@ export declare interface ActionsApiCreateSlidesExportRequest {
|
|
|
1214
1214
|
* @type {SlidesExportRequest}
|
|
1215
1215
|
* @memberof ActionsApiCreateSlidesExport
|
|
1216
1216
|
*/
|
|
1217
|
-
readonly slidesExportRequest:
|
|
1217
|
+
readonly slidesExportRequest: AfmExportSlidesExportRequest;
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
1220
|
/**
|
|
@@ -5512,7 +5512,7 @@ export declare interface AfmExportImageExportRequest {
|
|
|
5512
5512
|
* @type {Array<string>}
|
|
5513
5513
|
* @memberof ImageExportRequest
|
|
5514
5514
|
*/
|
|
5515
|
-
widgetIds
|
|
5515
|
+
widgetIds: Array<string>;
|
|
5516
5516
|
/**
|
|
5517
5517
|
* Metadata definition in free-form JSON format.
|
|
5518
5518
|
* @type {object}
|
|
@@ -6173,6 +6173,63 @@ export declare const AfmExportSimpleMeasureDefinitionMeasureAggregationEnum: {
|
|
|
6173
6173
|
|
|
6174
6174
|
export declare type AfmExportSimpleMeasureDefinitionMeasureAggregationEnum = typeof AfmExportSimpleMeasureDefinitionMeasureAggregationEnum[keyof typeof AfmExportSimpleMeasureDefinitionMeasureAggregationEnum];
|
|
6175
6175
|
|
|
6176
|
+
/**
|
|
6177
|
+
* Export request object describing the export properties and metadata for slides exports.
|
|
6178
|
+
* @export
|
|
6179
|
+
* @interface SlidesExportRequest
|
|
6180
|
+
*/
|
|
6181
|
+
export declare interface AfmExportSlidesExportRequest {
|
|
6182
|
+
/**
|
|
6183
|
+
* Requested resulting file type.
|
|
6184
|
+
* @type {string}
|
|
6185
|
+
* @memberof SlidesExportRequest
|
|
6186
|
+
*/
|
|
6187
|
+
format: AfmExportSlidesExportRequestFormatEnum;
|
|
6188
|
+
/**
|
|
6189
|
+
* File name to be used for retrieving the pdf document.
|
|
6190
|
+
* @type {string}
|
|
6191
|
+
* @memberof SlidesExportRequest
|
|
6192
|
+
*/
|
|
6193
|
+
fileName: string;
|
|
6194
|
+
/**
|
|
6195
|
+
* Dashboard identifier
|
|
6196
|
+
* @type {string}
|
|
6197
|
+
* @memberof SlidesExportRequest
|
|
6198
|
+
*/
|
|
6199
|
+
dashboardId?: string;
|
|
6200
|
+
/**
|
|
6201
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
6202
|
+
* @type {Array<string>}
|
|
6203
|
+
* @memberof SlidesExportRequest
|
|
6204
|
+
*/
|
|
6205
|
+
widgetIds?: Array<string>;
|
|
6206
|
+
/**
|
|
6207
|
+
* List of visualization ids to be exported. Note that only one visualization is currently supported.
|
|
6208
|
+
* @type {Array<string>}
|
|
6209
|
+
* @memberof SlidesExportRequest
|
|
6210
|
+
*/
|
|
6211
|
+
visualizationIds?: Array<string>;
|
|
6212
|
+
/**
|
|
6213
|
+
* Metadata definition in free-form JSON format.
|
|
6214
|
+
* @type {object}
|
|
6215
|
+
* @memberof SlidesExportRequest
|
|
6216
|
+
*/
|
|
6217
|
+
metadata?: object | null;
|
|
6218
|
+
/**
|
|
6219
|
+
* Export template identifier.
|
|
6220
|
+
* @type {string}
|
|
6221
|
+
* @memberof SlidesExportRequest
|
|
6222
|
+
*/
|
|
6223
|
+
templateId?: string | null;
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
export declare const AfmExportSlidesExportRequestFormatEnum: {
|
|
6227
|
+
readonly PDF: "PDF";
|
|
6228
|
+
readonly PPTX: "PPTX";
|
|
6229
|
+
};
|
|
6230
|
+
|
|
6231
|
+
export declare type AfmExportSlidesExportRequestFormatEnum = typeof AfmExportSlidesExportRequestFormatEnum[keyof typeof AfmExportSlidesExportRequestFormatEnum];
|
|
6232
|
+
|
|
6176
6233
|
/**
|
|
6177
6234
|
* @type FilterDefinition
|
|
6178
6235
|
* Abstract filter definition type
|
|
@@ -10604,6 +10661,12 @@ export declare interface AutomationAdHocAutomation {
|
|
|
10604
10661
|
* @memberof AutomationAdHocAutomation
|
|
10605
10662
|
*/
|
|
10606
10663
|
rawExports?: Array<AutomationAutomationRawExport>;
|
|
10664
|
+
/**
|
|
10665
|
+
*
|
|
10666
|
+
* @type {Array<AutomationAutomationSlidesExport>}
|
|
10667
|
+
* @memberof AutomationAdHocAutomation
|
|
10668
|
+
*/
|
|
10669
|
+
slidesExports?: Array<AutomationAutomationSlidesExport>;
|
|
10607
10670
|
/**
|
|
10608
10671
|
* External recipients of the automation action results.
|
|
10609
10672
|
* @type {Array<AutomationAutomationExternalRecipient>}
|
|
@@ -11360,6 +11423,20 @@ export declare interface AutomationAutomationRawExport {
|
|
|
11360
11423
|
requestPayload: AutomationRawExportRequest;
|
|
11361
11424
|
}
|
|
11362
11425
|
|
|
11426
|
+
/**
|
|
11427
|
+
*
|
|
11428
|
+
* @export
|
|
11429
|
+
* @interface AutomationAutomationSlidesExport
|
|
11430
|
+
*/
|
|
11431
|
+
export declare interface AutomationAutomationSlidesExport {
|
|
11432
|
+
/**
|
|
11433
|
+
*
|
|
11434
|
+
* @type {AutomationSlidesExportRequest}
|
|
11435
|
+
* @memberof AutomationAutomationSlidesExport
|
|
11436
|
+
*/
|
|
11437
|
+
requestPayload: AutomationSlidesExportRequest;
|
|
11438
|
+
}
|
|
11439
|
+
|
|
11363
11440
|
/**
|
|
11364
11441
|
*
|
|
11365
11442
|
* @export
|
|
@@ -11842,6 +11919,12 @@ export declare interface AutomationExportResult {
|
|
|
11842
11919
|
* @memberof AutomationExportResult
|
|
11843
11920
|
*/
|
|
11844
11921
|
expiresAt?: string;
|
|
11922
|
+
/**
|
|
11923
|
+
*
|
|
11924
|
+
* @type {number}
|
|
11925
|
+
* @memberof AutomationExportResult
|
|
11926
|
+
*/
|
|
11927
|
+
fileSize?: number;
|
|
11845
11928
|
/**
|
|
11846
11929
|
*
|
|
11847
11930
|
* @type {string}
|
|
@@ -11942,7 +12025,7 @@ export declare interface AutomationImageExportRequest {
|
|
|
11942
12025
|
* @type {Array<string>}
|
|
11943
12026
|
* @memberof AutomationImageExportRequest
|
|
11944
12027
|
*/
|
|
11945
|
-
widgetIds
|
|
12028
|
+
widgetIds: Array<string>;
|
|
11946
12029
|
/**
|
|
11947
12030
|
* Metadata definition in free-form JSON format.
|
|
11948
12031
|
* @type {object}
|
|
@@ -13887,7 +13970,7 @@ export declare interface AutomationSchedule {
|
|
|
13887
13970
|
*/
|
|
13888
13971
|
export declare interface AutomationSettings {
|
|
13889
13972
|
/**
|
|
13890
|
-
* Include export info sheet in the exported file. (XLSX)
|
|
13973
|
+
* Include export info sheet in the exported file. Works only with `visualizationObject`. (XLSX)
|
|
13891
13974
|
* @type {boolean}
|
|
13892
13975
|
* @memberof AutomationSettings
|
|
13893
13976
|
*/
|
|
@@ -13989,6 +14072,77 @@ export declare const AutomationSimpleMeasureDefinitionMeasureAggregationEnum: {
|
|
|
13989
14072
|
|
|
13990
14073
|
export declare type AutomationSimpleMeasureDefinitionMeasureAggregationEnum = typeof AutomationSimpleMeasureDefinitionMeasureAggregationEnum[keyof typeof AutomationSimpleMeasureDefinitionMeasureAggregationEnum];
|
|
13991
14074
|
|
|
14075
|
+
/**
|
|
14076
|
+
*
|
|
14077
|
+
* @export
|
|
14078
|
+
* @interface AutomationSlidesExport
|
|
14079
|
+
*/
|
|
14080
|
+
export declare interface AutomationSlidesExport {
|
|
14081
|
+
/**
|
|
14082
|
+
*
|
|
14083
|
+
* @type {SlidesExportRequest}
|
|
14084
|
+
* @memberof AutomationSlidesExport
|
|
14085
|
+
*/
|
|
14086
|
+
requestPayload: SlidesExportRequest;
|
|
14087
|
+
}
|
|
14088
|
+
|
|
14089
|
+
/**
|
|
14090
|
+
* Export request object describing the export properties and metadata for slides exports.
|
|
14091
|
+
* @export
|
|
14092
|
+
* @interface AutomationSlidesExportRequest
|
|
14093
|
+
*/
|
|
14094
|
+
export declare interface AutomationSlidesExportRequest {
|
|
14095
|
+
/**
|
|
14096
|
+
* Requested resulting file type.
|
|
14097
|
+
* @type {string}
|
|
14098
|
+
* @memberof AutomationSlidesExportRequest
|
|
14099
|
+
*/
|
|
14100
|
+
format: AutomationSlidesExportRequestFormatEnum;
|
|
14101
|
+
/**
|
|
14102
|
+
* File name to be used for retrieving the pdf document.
|
|
14103
|
+
* @type {string}
|
|
14104
|
+
* @memberof AutomationSlidesExportRequest
|
|
14105
|
+
*/
|
|
14106
|
+
fileName: string;
|
|
14107
|
+
/**
|
|
14108
|
+
* Dashboard identifier
|
|
14109
|
+
* @type {string}
|
|
14110
|
+
* @memberof AutomationSlidesExportRequest
|
|
14111
|
+
*/
|
|
14112
|
+
dashboardId?: string;
|
|
14113
|
+
/**
|
|
14114
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
14115
|
+
* @type {Array<string>}
|
|
14116
|
+
* @memberof AutomationSlidesExportRequest
|
|
14117
|
+
*/
|
|
14118
|
+
widgetIds?: Array<string>;
|
|
14119
|
+
/**
|
|
14120
|
+
* List of visualization ids to be exported. Note that only one visualization is currently supported.
|
|
14121
|
+
* @type {Array<string>}
|
|
14122
|
+
* @memberof AutomationSlidesExportRequest
|
|
14123
|
+
*/
|
|
14124
|
+
visualizationIds?: Array<string>;
|
|
14125
|
+
/**
|
|
14126
|
+
* Metadata definition in free-form JSON format.
|
|
14127
|
+
* @type {object}
|
|
14128
|
+
* @memberof AutomationSlidesExportRequest
|
|
14129
|
+
*/
|
|
14130
|
+
metadata?: object | null;
|
|
14131
|
+
/**
|
|
14132
|
+
* Export template identifier.
|
|
14133
|
+
* @type {string}
|
|
14134
|
+
* @memberof AutomationSlidesExportRequest
|
|
14135
|
+
*/
|
|
14136
|
+
templateId?: string | null;
|
|
14137
|
+
}
|
|
14138
|
+
|
|
14139
|
+
export declare const AutomationSlidesExportRequestFormatEnum: {
|
|
14140
|
+
readonly PDF: "PDF";
|
|
14141
|
+
readonly PPTX: "PPTX";
|
|
14142
|
+
};
|
|
14143
|
+
|
|
14144
|
+
export declare type AutomationSlidesExportRequestFormatEnum = typeof AutomationSlidesExportRequestFormatEnum[keyof typeof AutomationSlidesExportRequestFormatEnum];
|
|
14145
|
+
|
|
13992
14146
|
/**
|
|
13993
14147
|
* Custom SMTP destination for notifications. The properties host, port, username, and password are required on create and update
|
|
13994
14148
|
* @export
|
|
@@ -14447,6 +14601,12 @@ export declare interface AutomationWebhookMessageData {
|
|
|
14447
14601
|
* @memberof AutomationWebhookMessageData
|
|
14448
14602
|
*/
|
|
14449
14603
|
rawExports?: Array<AutomationExportResult>;
|
|
14604
|
+
/**
|
|
14605
|
+
*
|
|
14606
|
+
* @type {Array<AutomationExportResult>}
|
|
14607
|
+
* @memberof AutomationWebhookMessageData
|
|
14608
|
+
*/
|
|
14609
|
+
slidesExports?: Array<AutomationExportResult>;
|
|
14450
14610
|
/**
|
|
14451
14611
|
*
|
|
14452
14612
|
* @type {AutomationAlertDescription}
|
|
@@ -14459,6 +14619,12 @@ export declare interface AutomationWebhookMessageData {
|
|
|
14459
14619
|
* @memberof AutomationWebhookMessageData
|
|
14460
14620
|
*/
|
|
14461
14621
|
filters?: Array<AutomationNotificationFilter>;
|
|
14622
|
+
/**
|
|
14623
|
+
*
|
|
14624
|
+
* @type {string}
|
|
14625
|
+
* @memberof AutomationWebhookMessageData
|
|
14626
|
+
*/
|
|
14627
|
+
notificationSource?: string;
|
|
14462
14628
|
}
|
|
14463
14629
|
|
|
14464
14630
|
export declare const AutomationWebhookMessageTypeEnum: {
|
|
@@ -14751,6 +14917,12 @@ export declare interface ChatHistoryRequest {
|
|
|
14751
14917
|
* @memberof ChatHistoryRequest
|
|
14752
14918
|
*/
|
|
14753
14919
|
reset?: boolean;
|
|
14920
|
+
/**
|
|
14921
|
+
*
|
|
14922
|
+
* @type {SavedVisualization}
|
|
14923
|
+
* @memberof ChatHistoryRequest
|
|
14924
|
+
*/
|
|
14925
|
+
savedVisualization?: SavedVisualization;
|
|
14754
14926
|
}
|
|
14755
14927
|
|
|
14756
14928
|
export declare const ChatHistoryRequestUserFeedbackEnum: {
|
|
@@ -14994,13 +15166,13 @@ export declare interface ClusteringResult {
|
|
|
14994
15166
|
* @type {Array<number>}
|
|
14995
15167
|
* @memberof ClusteringResult
|
|
14996
15168
|
*/
|
|
14997
|
-
|
|
15169
|
+
ycoord: Array<number>;
|
|
14998
15170
|
/**
|
|
14999
15171
|
*
|
|
15000
15172
|
* @type {Array<number>}
|
|
15001
15173
|
* @memberof ClusteringResult
|
|
15002
15174
|
*/
|
|
15003
|
-
|
|
15175
|
+
xcoord: Array<number>;
|
|
15004
15176
|
}
|
|
15005
15177
|
|
|
15006
15178
|
/**
|
|
@@ -16358,6 +16530,12 @@ export declare interface CreatedVisualization {
|
|
|
16358
16530
|
* @memberof CreatedVisualization
|
|
16359
16531
|
*/
|
|
16360
16532
|
suggestions: Array<ChatSuggestion>;
|
|
16533
|
+
/**
|
|
16534
|
+
* Saved visualization ID.
|
|
16535
|
+
* @type {string}
|
|
16536
|
+
* @memberof CreatedVisualization
|
|
16537
|
+
*/
|
|
16538
|
+
savedVisualizationId?: string;
|
|
16361
16539
|
}
|
|
16362
16540
|
|
|
16363
16541
|
/**
|
|
@@ -21680,6 +21858,12 @@ export declare interface DeclarativeAutomation {
|
|
|
21680
21858
|
* @memberof DeclarativeAutomation
|
|
21681
21859
|
*/
|
|
21682
21860
|
rawExports?: Array<AutomationRawExport>;
|
|
21861
|
+
/**
|
|
21862
|
+
*
|
|
21863
|
+
* @type {Array<AutomationSlidesExport>}
|
|
21864
|
+
* @memberof DeclarativeAutomation
|
|
21865
|
+
*/
|
|
21866
|
+
slidesExports?: Array<AutomationSlidesExport>;
|
|
21683
21867
|
/**
|
|
21684
21868
|
* External recipients of the automation action results.
|
|
21685
21869
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -22898,7 +23082,7 @@ export declare interface DeclarativeNotificationChannel {
|
|
|
22898
23082
|
*/
|
|
22899
23083
|
destinationType?: DeclarativeNotificationChannelDestinationTypeEnum;
|
|
22900
23084
|
/**
|
|
22901
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}
|
|
23085
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
22902
23086
|
* @type {string}
|
|
22903
23087
|
* @memberof DeclarativeNotificationChannel
|
|
22904
23088
|
*/
|
|
@@ -22909,6 +23093,12 @@ export declare interface DeclarativeNotificationChannel {
|
|
|
22909
23093
|
* @memberof DeclarativeNotificationChannel
|
|
22910
23094
|
*/
|
|
22911
23095
|
dashboardLinkVisibility?: DeclarativeNotificationChannelDashboardLinkVisibilityEnum;
|
|
23096
|
+
/**
|
|
23097
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
23098
|
+
* @type {string}
|
|
23099
|
+
* @memberof DeclarativeNotificationChannel
|
|
23100
|
+
*/
|
|
23101
|
+
notificationSource?: string;
|
|
22912
23102
|
/**
|
|
22913
23103
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
22914
23104
|
* @type {string}
|
|
@@ -25639,6 +25829,14 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
25639
25829
|
* @memberof EntitiesApi
|
|
25640
25830
|
*/
|
|
25641
25831
|
getAllEntitiesMetrics(requestParameters: EntitiesApiGetAllEntitiesMetricsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiMetricOutList, any>>;
|
|
25832
|
+
/**
|
|
25833
|
+
*
|
|
25834
|
+
* @param {EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
25835
|
+
* @param {*} [options] Override http request option.
|
|
25836
|
+
* @throws {RequiredError}
|
|
25837
|
+
* @memberof EntitiesApi
|
|
25838
|
+
*/
|
|
25839
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters?: EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelIdentifierOutList, any>>;
|
|
25642
25840
|
/**
|
|
25643
25841
|
*
|
|
25644
25842
|
* @summary Get all Notification Channel entities
|
|
@@ -25990,6 +26188,14 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
25990
26188
|
* @memberof EntitiesApi
|
|
25991
26189
|
*/
|
|
25992
26190
|
getEntityMetrics(requestParameters: EntitiesApiGetEntityMetricsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiMetricOutDocument, any>>;
|
|
26191
|
+
/**
|
|
26192
|
+
*
|
|
26193
|
+
* @param {EntitiesApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
26194
|
+
* @param {*} [options] Override http request option.
|
|
26195
|
+
* @throws {RequiredError}
|
|
26196
|
+
* @memberof EntitiesApi
|
|
26197
|
+
*/
|
|
26198
|
+
getEntityNotificationChannelIdentifiers(requestParameters: EntitiesApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelIdentifierOutDocument, any>>;
|
|
25993
26199
|
/**
|
|
25994
26200
|
*
|
|
25995
26201
|
* @summary Get Notification Channel entity
|
|
@@ -27545,6 +27751,17 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
|
|
|
27545
27751
|
* @throws {RequiredError}
|
|
27546
27752
|
*/
|
|
27547
27753
|
getAllEntitiesMetrics: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "facts" | "attributes" | "labels" | "metrics" | "datasets" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
27754
|
+
/**
|
|
27755
|
+
*
|
|
27756
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
27757
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
27758
|
+
* @param {number} [size] The size of the page to be returned
|
|
27759
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
27760
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
27761
|
+
* @param {*} [options] Override http request option.
|
|
27762
|
+
* @throws {RequiredError}
|
|
27763
|
+
*/
|
|
27764
|
+
getAllEntitiesNotificationChannelIdentifiers: (filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
27548
27765
|
/**
|
|
27549
27766
|
*
|
|
27550
27767
|
* @summary Get all Notification Channel entities
|
|
@@ -28007,6 +28224,14 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: MetadataConf
|
|
|
28007
28224
|
* @throws {RequiredError}
|
|
28008
28225
|
*/
|
|
28009
28226
|
getEntityMetrics: (workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "facts" | "attributes" | "labels" | "metrics" | "datasets" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
28227
|
+
/**
|
|
28228
|
+
*
|
|
28229
|
+
* @param {string} id
|
|
28230
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
28231
|
+
* @param {*} [options] Override http request option.
|
|
28232
|
+
* @throws {RequiredError}
|
|
28233
|
+
*/
|
|
28234
|
+
getEntityNotificationChannelIdentifiers: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
28010
28235
|
/**
|
|
28011
28236
|
*
|
|
28012
28237
|
* @summary Get Notification Channel entity
|
|
@@ -30830,6 +31055,13 @@ export declare const EntitiesApiFactory: (configuration?: MetadataConfiguration,
|
|
|
30830
31055
|
* @throws {RequiredError}
|
|
30831
31056
|
*/
|
|
30832
31057
|
getAllEntitiesMetrics(requestParameters: EntitiesApiGetAllEntitiesMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMetricOutList>;
|
|
31058
|
+
/**
|
|
31059
|
+
*
|
|
31060
|
+
* @param {EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
31061
|
+
* @param {*} [options] Override http request option.
|
|
31062
|
+
* @throws {RequiredError}
|
|
31063
|
+
*/
|
|
31064
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters: EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutList>;
|
|
30833
31065
|
/**
|
|
30834
31066
|
*
|
|
30835
31067
|
* @summary Get all Notification Channel entities
|
|
@@ -31142,6 +31374,13 @@ export declare const EntitiesApiFactory: (configuration?: MetadataConfiguration,
|
|
|
31142
31374
|
* @throws {RequiredError}
|
|
31143
31375
|
*/
|
|
31144
31376
|
getEntityMetrics(requestParameters: EntitiesApiGetEntityMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMetricOutDocument>;
|
|
31377
|
+
/**
|
|
31378
|
+
*
|
|
31379
|
+
* @param {EntitiesApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
31380
|
+
* @param {*} [options] Override http request option.
|
|
31381
|
+
* @throws {RequiredError}
|
|
31382
|
+
*/
|
|
31383
|
+
getEntityNotificationChannelIdentifiers(requestParameters: EntitiesApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>;
|
|
31145
31384
|
/**
|
|
31146
31385
|
*
|
|
31147
31386
|
* @summary Get Notification Channel entity
|
|
@@ -32623,6 +32862,17 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
|
|
|
32623
32862
|
* @throws {RequiredError}
|
|
32624
32863
|
*/
|
|
32625
32864
|
getAllEntitiesMetrics(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "facts" | "attributes" | "labels" | "metrics" | "datasets" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMetricOutList>>;
|
|
32865
|
+
/**
|
|
32866
|
+
*
|
|
32867
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
32868
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
32869
|
+
* @param {number} [size] The size of the page to be returned
|
|
32870
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
32871
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32872
|
+
* @param {*} [options] Override http request option.
|
|
32873
|
+
* @throws {RequiredError}
|
|
32874
|
+
*/
|
|
32875
|
+
getAllEntitiesNotificationChannelIdentifiers(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelIdentifierOutList>>;
|
|
32626
32876
|
/**
|
|
32627
32877
|
*
|
|
32628
32878
|
* @summary Get all Notification Channel entities
|
|
@@ -33087,6 +33337,14 @@ export declare const EntitiesApiFp: (configuration?: MetadataConfiguration) => {
|
|
|
33087
33337
|
* @throws {RequiredError}
|
|
33088
33338
|
*/
|
|
33089
33339
|
getEntityMetrics(workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "facts" | "attributes" | "labels" | "metrics" | "datasets" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMetricOutDocument>>;
|
|
33340
|
+
/**
|
|
33341
|
+
*
|
|
33342
|
+
* @param {string} id
|
|
33343
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33344
|
+
* @param {*} [options] Override http request option.
|
|
33345
|
+
* @throws {RequiredError}
|
|
33346
|
+
*/
|
|
33347
|
+
getEntityNotificationChannelIdentifiers(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>>;
|
|
33090
33348
|
/**
|
|
33091
33349
|
*
|
|
33092
33350
|
* @summary Get Notification Channel entity
|
|
@@ -35086,6 +35344,44 @@ export declare interface EntitiesApiGetAllEntitiesMetricsRequest {
|
|
|
35086
35344
|
readonly metaInclude?: Array<"origin" | "page" | "all" | "ALL">;
|
|
35087
35345
|
}
|
|
35088
35346
|
|
|
35347
|
+
/**
|
|
35348
|
+
* Request parameters for getAllEntitiesNotificationChannelIdentifiers operation in EntitiesApi.
|
|
35349
|
+
* @export
|
|
35350
|
+
* @interface EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest
|
|
35351
|
+
*/
|
|
35352
|
+
export declare interface EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest {
|
|
35353
|
+
/**
|
|
35354
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35355
|
+
* @type {string}
|
|
35356
|
+
* @memberof EntitiesApiGetAllEntitiesNotificationChannelIdentifiers
|
|
35357
|
+
*/
|
|
35358
|
+
readonly filter?: string;
|
|
35359
|
+
/**
|
|
35360
|
+
* Zero-based page index (0..N)
|
|
35361
|
+
* @type {number}
|
|
35362
|
+
* @memberof EntitiesApiGetAllEntitiesNotificationChannelIdentifiers
|
|
35363
|
+
*/
|
|
35364
|
+
readonly page?: number;
|
|
35365
|
+
/**
|
|
35366
|
+
* The size of the page to be returned
|
|
35367
|
+
* @type {number}
|
|
35368
|
+
* @memberof EntitiesApiGetAllEntitiesNotificationChannelIdentifiers
|
|
35369
|
+
*/
|
|
35370
|
+
readonly size?: number;
|
|
35371
|
+
/**
|
|
35372
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
35373
|
+
* @type {Array<string>}
|
|
35374
|
+
* @memberof EntitiesApiGetAllEntitiesNotificationChannelIdentifiers
|
|
35375
|
+
*/
|
|
35376
|
+
readonly sort?: Array<string>;
|
|
35377
|
+
/**
|
|
35378
|
+
* Include Meta objects.
|
|
35379
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
35380
|
+
* @memberof EntitiesApiGetAllEntitiesNotificationChannelIdentifiers
|
|
35381
|
+
*/
|
|
35382
|
+
readonly metaInclude?: Array<"page" | "all" | "ALL">;
|
|
35383
|
+
}
|
|
35384
|
+
|
|
35089
35385
|
/**
|
|
35090
35386
|
* Request parameters for getAllEntitiesNotificationChannels operation in EntitiesApi.
|
|
35091
35387
|
* @export
|
|
@@ -36516,6 +36812,26 @@ export declare interface EntitiesApiGetEntityMetricsRequest {
|
|
|
36516
36812
|
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
36517
36813
|
}
|
|
36518
36814
|
|
|
36815
|
+
/**
|
|
36816
|
+
* Request parameters for getEntityNotificationChannelIdentifiers operation in EntitiesApi.
|
|
36817
|
+
* @export
|
|
36818
|
+
* @interface EntitiesApiGetEntityNotificationChannelIdentifiersRequest
|
|
36819
|
+
*/
|
|
36820
|
+
export declare interface EntitiesApiGetEntityNotificationChannelIdentifiersRequest {
|
|
36821
|
+
/**
|
|
36822
|
+
*
|
|
36823
|
+
* @type {string}
|
|
36824
|
+
* @memberof EntitiesApiGetEntityNotificationChannelIdentifiers
|
|
36825
|
+
*/
|
|
36826
|
+
readonly id: string;
|
|
36827
|
+
/**
|
|
36828
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
36829
|
+
* @type {string}
|
|
36830
|
+
* @memberof EntitiesApiGetEntityNotificationChannelIdentifiers
|
|
36831
|
+
*/
|
|
36832
|
+
readonly filter?: string;
|
|
36833
|
+
}
|
|
36834
|
+
|
|
36519
36835
|
/**
|
|
36520
36836
|
* Request parameters for getEntityNotificationChannels operation in EntitiesApi.
|
|
36521
36837
|
* @export
|
|
@@ -37700,6 +38016,14 @@ export declare interface EntitiesApiInterface {
|
|
|
37700
38016
|
* @memberof EntitiesApiInterface
|
|
37701
38017
|
*/
|
|
37702
38018
|
getAllEntitiesMetrics(requestParameters: EntitiesApiGetAllEntitiesMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMetricOutList>;
|
|
38019
|
+
/**
|
|
38020
|
+
*
|
|
38021
|
+
* @param {EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
38022
|
+
* @param {*} [options] Override http request option.
|
|
38023
|
+
* @throws {RequiredError}
|
|
38024
|
+
* @memberof EntitiesApiInterface
|
|
38025
|
+
*/
|
|
38026
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters: EntitiesApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutList>;
|
|
37703
38027
|
/**
|
|
37704
38028
|
*
|
|
37705
38029
|
* @summary Get all Notification Channel entities
|
|
@@ -38051,6 +38375,14 @@ export declare interface EntitiesApiInterface {
|
|
|
38051
38375
|
* @memberof EntitiesApiInterface
|
|
38052
38376
|
*/
|
|
38053
38377
|
getEntityMetrics(requestParameters: EntitiesApiGetEntityMetricsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMetricOutDocument>;
|
|
38378
|
+
/**
|
|
38379
|
+
*
|
|
38380
|
+
* @param {EntitiesApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
38381
|
+
* @param {*} [options] Override http request option.
|
|
38382
|
+
* @throws {RequiredError}
|
|
38383
|
+
* @memberof EntitiesApiInterface
|
|
38384
|
+
*/
|
|
38385
|
+
getEntityNotificationChannelIdentifiers(requestParameters: EntitiesApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>;
|
|
38054
38386
|
/**
|
|
38055
38387
|
*
|
|
38056
38388
|
* @summary Get Notification Channel entity
|
|
@@ -41421,7 +41753,7 @@ export declare interface ExportActionsPdfTableStyleProperty {
|
|
|
41421
41753
|
*/
|
|
41422
41754
|
export declare interface ExportActionsSettings {
|
|
41423
41755
|
/**
|
|
41424
|
-
* Include export info sheet in the exported file. (XLSX)
|
|
41756
|
+
* Include export info sheet in the exported file. Works only with `visualizationObject`. (XLSX)
|
|
41425
41757
|
* @type {boolean}
|
|
41426
41758
|
* @memberof Settings
|
|
41427
41759
|
*/
|
|
@@ -44673,7 +45005,7 @@ export declare interface ImageExportRequest {
|
|
|
44673
45005
|
* @type {Array<string>}
|
|
44674
45006
|
* @memberof ImageExportRequest
|
|
44675
45007
|
*/
|
|
44676
|
-
widgetIds
|
|
45008
|
+
widgetIds: Array<string>;
|
|
44677
45009
|
/**
|
|
44678
45010
|
* Free-form JSON object
|
|
44679
45011
|
* @type {object}
|
|
@@ -45327,48 +45659,10 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
45327
45659
|
id: string;
|
|
45328
45660
|
/**
|
|
45329
45661
|
*
|
|
45330
|
-
* @type {
|
|
45662
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
45331
45663
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
45332
45664
|
*/
|
|
45333
|
-
attributes:
|
|
45334
|
-
}
|
|
45335
|
-
|
|
45336
|
-
/**
|
|
45337
|
-
*
|
|
45338
|
-
* @export
|
|
45339
|
-
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
45340
|
-
*/
|
|
45341
|
-
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
45342
|
-
/**
|
|
45343
|
-
*
|
|
45344
|
-
* @type {string}
|
|
45345
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
45346
|
-
*/
|
|
45347
|
-
title?: string;
|
|
45348
|
-
/**
|
|
45349
|
-
*
|
|
45350
|
-
* @type {string}
|
|
45351
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
45352
|
-
*/
|
|
45353
|
-
description?: string;
|
|
45354
|
-
/**
|
|
45355
|
-
*
|
|
45356
|
-
* @type {Array<string>}
|
|
45357
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
45358
|
-
*/
|
|
45359
|
-
tags?: Array<string>;
|
|
45360
|
-
/**
|
|
45361
|
-
*
|
|
45362
|
-
* @type {boolean}
|
|
45363
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
45364
|
-
*/
|
|
45365
|
-
areRelationsValid?: boolean;
|
|
45366
|
-
/**
|
|
45367
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45368
|
-
* @type {object}
|
|
45369
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
45370
|
-
*/
|
|
45371
|
-
content: object;
|
|
45665
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
45372
45666
|
}
|
|
45373
45667
|
|
|
45374
45668
|
/**
|
|
@@ -45845,10 +46139,48 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
45845
46139
|
id?: string;
|
|
45846
46140
|
/**
|
|
45847
46141
|
*
|
|
45848
|
-
* @type {
|
|
46142
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
45849
46143
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
45850
46144
|
*/
|
|
45851
|
-
attributes:
|
|
46145
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
46146
|
+
}
|
|
46147
|
+
|
|
46148
|
+
/**
|
|
46149
|
+
*
|
|
46150
|
+
* @export
|
|
46151
|
+
* @interface JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46152
|
+
*/
|
|
46153
|
+
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
46154
|
+
/**
|
|
46155
|
+
*
|
|
46156
|
+
* @type {string}
|
|
46157
|
+
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46158
|
+
*/
|
|
46159
|
+
title?: string;
|
|
46160
|
+
/**
|
|
46161
|
+
*
|
|
46162
|
+
* @type {string}
|
|
46163
|
+
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46164
|
+
*/
|
|
46165
|
+
description?: string;
|
|
46166
|
+
/**
|
|
46167
|
+
*
|
|
46168
|
+
* @type {Array<string>}
|
|
46169
|
+
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46170
|
+
*/
|
|
46171
|
+
tags?: Array<string>;
|
|
46172
|
+
/**
|
|
46173
|
+
*
|
|
46174
|
+
* @type {boolean}
|
|
46175
|
+
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46176
|
+
*/
|
|
46177
|
+
areRelationsValid?: boolean;
|
|
46178
|
+
/**
|
|
46179
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46180
|
+
* @type {object}
|
|
46181
|
+
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
46182
|
+
*/
|
|
46183
|
+
content: object;
|
|
45852
46184
|
}
|
|
45853
46185
|
|
|
45854
46186
|
/**
|
|
@@ -46934,6 +47266,12 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
46934
47266
|
* @memberof JsonApiAutomationInAttributes
|
|
46935
47267
|
*/
|
|
46936
47268
|
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
47269
|
+
/**
|
|
47270
|
+
*
|
|
47271
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
47272
|
+
* @memberof JsonApiAutomationInAttributes
|
|
47273
|
+
*/
|
|
47274
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
46937
47275
|
/**
|
|
46938
47276
|
* External recipients of the automation action results.
|
|
46939
47277
|
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
@@ -47069,6 +47407,20 @@ export declare interface JsonApiAutomationInAttributesSchedule {
|
|
|
47069
47407
|
firstRun?: string;
|
|
47070
47408
|
}
|
|
47071
47409
|
|
|
47410
|
+
/**
|
|
47411
|
+
*
|
|
47412
|
+
* @export
|
|
47413
|
+
* @interface JsonApiAutomationInAttributesSlidesExports
|
|
47414
|
+
*/
|
|
47415
|
+
export declare interface JsonApiAutomationInAttributesSlidesExports {
|
|
47416
|
+
/**
|
|
47417
|
+
*
|
|
47418
|
+
* @type {SlidesExportRequest}
|
|
47419
|
+
* @memberof JsonApiAutomationInAttributesSlidesExports
|
|
47420
|
+
*/
|
|
47421
|
+
requestPayload: SlidesExportRequest;
|
|
47422
|
+
}
|
|
47423
|
+
|
|
47072
47424
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
47073
47425
|
readonly ACTIVE: "ACTIVE";
|
|
47074
47426
|
readonly PAUSED: "PAUSED";
|
|
@@ -47360,6 +47712,12 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
47360
47712
|
* @memberof JsonApiAutomationOutAttributes
|
|
47361
47713
|
*/
|
|
47362
47714
|
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
47715
|
+
/**
|
|
47716
|
+
*
|
|
47717
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
47718
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
47719
|
+
*/
|
|
47720
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
47363
47721
|
/**
|
|
47364
47722
|
* External recipients of the automation action results.
|
|
47365
47723
|
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
@@ -48278,30 +48636,10 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
48278
48636
|
id: string;
|
|
48279
48637
|
/**
|
|
48280
48638
|
*
|
|
48281
|
-
* @type {
|
|
48639
|
+
* @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
|
|
48282
48640
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
48283
48641
|
*/
|
|
48284
|
-
attributes:
|
|
48285
|
-
}
|
|
48286
|
-
|
|
48287
|
-
/**
|
|
48288
|
-
*
|
|
48289
|
-
* @export
|
|
48290
|
-
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
48291
|
-
*/
|
|
48292
|
-
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
48293
|
-
/**
|
|
48294
|
-
*
|
|
48295
|
-
* @type {string}
|
|
48296
|
-
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
48297
|
-
*/
|
|
48298
|
-
applicationName: string;
|
|
48299
|
-
/**
|
|
48300
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48301
|
-
* @type {object}
|
|
48302
|
-
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
48303
|
-
*/
|
|
48304
|
-
content: object;
|
|
48642
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
48305
48643
|
}
|
|
48306
48644
|
|
|
48307
48645
|
/**
|
|
@@ -48350,10 +48688,10 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
48350
48688
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48351
48689
|
/**
|
|
48352
48690
|
*
|
|
48353
|
-
* @type {
|
|
48691
|
+
* @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
|
|
48354
48692
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
48355
48693
|
*/
|
|
48356
|
-
attributes:
|
|
48694
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
48357
48695
|
}
|
|
48358
48696
|
|
|
48359
48697
|
/**
|
|
@@ -48434,10 +48772,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
48434
48772
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48435
48773
|
/**
|
|
48436
48774
|
*
|
|
48437
|
-
* @type {
|
|
48775
|
+
* @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
|
|
48438
48776
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
48439
48777
|
*/
|
|
48440
|
-
attributes:
|
|
48778
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
48441
48779
|
/**
|
|
48442
48780
|
*
|
|
48443
48781
|
* @type {ObjectLinks}
|
|
@@ -48538,10 +48876,30 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
48538
48876
|
id?: string;
|
|
48539
48877
|
/**
|
|
48540
48878
|
*
|
|
48541
|
-
* @type {
|
|
48879
|
+
* @type {JsonApiCustomApplicationSettingPostOptionalIdAttributes}
|
|
48542
48880
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
48543
48881
|
*/
|
|
48544
|
-
attributes:
|
|
48882
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
48883
|
+
}
|
|
48884
|
+
|
|
48885
|
+
/**
|
|
48886
|
+
*
|
|
48887
|
+
* @export
|
|
48888
|
+
* @interface JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
48889
|
+
*/
|
|
48890
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
48891
|
+
/**
|
|
48892
|
+
*
|
|
48893
|
+
* @type {string}
|
|
48894
|
+
* @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
48895
|
+
*/
|
|
48896
|
+
applicationName: string;
|
|
48897
|
+
/**
|
|
48898
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48899
|
+
* @type {object}
|
|
48900
|
+
* @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
48901
|
+
*/
|
|
48902
|
+
content: object;
|
|
48545
48903
|
}
|
|
48546
48904
|
|
|
48547
48905
|
/**
|
|
@@ -48584,48 +48942,10 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
48584
48942
|
id: string;
|
|
48585
48943
|
/**
|
|
48586
48944
|
*
|
|
48587
|
-
* @type {
|
|
48945
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
48588
48946
|
* @memberof JsonApiDashboardPluginIn
|
|
48589
48947
|
*/
|
|
48590
|
-
attributes?:
|
|
48591
|
-
}
|
|
48592
|
-
|
|
48593
|
-
/**
|
|
48594
|
-
*
|
|
48595
|
-
* @export
|
|
48596
|
-
* @interface JsonApiDashboardPluginInAttributes
|
|
48597
|
-
*/
|
|
48598
|
-
export declare interface JsonApiDashboardPluginInAttributes {
|
|
48599
|
-
/**
|
|
48600
|
-
*
|
|
48601
|
-
* @type {string}
|
|
48602
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
48603
|
-
*/
|
|
48604
|
-
title?: string;
|
|
48605
|
-
/**
|
|
48606
|
-
*
|
|
48607
|
-
* @type {string}
|
|
48608
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
48609
|
-
*/
|
|
48610
|
-
description?: string;
|
|
48611
|
-
/**
|
|
48612
|
-
*
|
|
48613
|
-
* @type {Array<string>}
|
|
48614
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
48615
|
-
*/
|
|
48616
|
-
tags?: Array<string>;
|
|
48617
|
-
/**
|
|
48618
|
-
*
|
|
48619
|
-
* @type {boolean}
|
|
48620
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
48621
|
-
*/
|
|
48622
|
-
areRelationsValid?: boolean;
|
|
48623
|
-
/**
|
|
48624
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
48625
|
-
* @type {object}
|
|
48626
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
48627
|
-
*/
|
|
48628
|
-
content?: object;
|
|
48948
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
48629
48949
|
}
|
|
48630
48950
|
|
|
48631
48951
|
/**
|
|
@@ -48916,10 +49236,10 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
48916
49236
|
id: string;
|
|
48917
49237
|
/**
|
|
48918
49238
|
*
|
|
48919
|
-
* @type {
|
|
49239
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
48920
49240
|
* @memberof JsonApiDashboardPluginPatch
|
|
48921
49241
|
*/
|
|
48922
|
-
attributes?:
|
|
49242
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
48923
49243
|
}
|
|
48924
49244
|
|
|
48925
49245
|
/**
|
|
@@ -48962,10 +49282,48 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
48962
49282
|
id?: string;
|
|
48963
49283
|
/**
|
|
48964
49284
|
*
|
|
48965
|
-
* @type {
|
|
49285
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
48966
49286
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
48967
49287
|
*/
|
|
48968
|
-
attributes?:
|
|
49288
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
49289
|
+
}
|
|
49290
|
+
|
|
49291
|
+
/**
|
|
49292
|
+
*
|
|
49293
|
+
* @export
|
|
49294
|
+
* @interface JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49295
|
+
*/
|
|
49296
|
+
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
49297
|
+
/**
|
|
49298
|
+
*
|
|
49299
|
+
* @type {string}
|
|
49300
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49301
|
+
*/
|
|
49302
|
+
title?: string;
|
|
49303
|
+
/**
|
|
49304
|
+
*
|
|
49305
|
+
* @type {string}
|
|
49306
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49307
|
+
*/
|
|
49308
|
+
description?: string;
|
|
49309
|
+
/**
|
|
49310
|
+
*
|
|
49311
|
+
* @type {Array<string>}
|
|
49312
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49313
|
+
*/
|
|
49314
|
+
tags?: Array<string>;
|
|
49315
|
+
/**
|
|
49316
|
+
*
|
|
49317
|
+
* @type {boolean}
|
|
49318
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49319
|
+
*/
|
|
49320
|
+
areRelationsValid?: boolean;
|
|
49321
|
+
/**
|
|
49322
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
49323
|
+
* @type {object}
|
|
49324
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
49325
|
+
*/
|
|
49326
|
+
content?: object;
|
|
48969
49327
|
}
|
|
48970
49328
|
|
|
48971
49329
|
/**
|
|
@@ -50441,54 +50799,16 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
50441
50799
|
id: string;
|
|
50442
50800
|
/**
|
|
50443
50801
|
*
|
|
50444
|
-
* @type {
|
|
50802
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
50445
50803
|
* @memberof JsonApiExportDefinitionIn
|
|
50446
50804
|
*/
|
|
50447
|
-
attributes?:
|
|
50805
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
50448
50806
|
/**
|
|
50449
50807
|
*
|
|
50450
|
-
* @type {
|
|
50808
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
50451
50809
|
* @memberof JsonApiExportDefinitionIn
|
|
50452
50810
|
*/
|
|
50453
|
-
relationships?:
|
|
50454
|
-
}
|
|
50455
|
-
|
|
50456
|
-
/**
|
|
50457
|
-
*
|
|
50458
|
-
* @export
|
|
50459
|
-
* @interface JsonApiExportDefinitionInAttributes
|
|
50460
|
-
*/
|
|
50461
|
-
export declare interface JsonApiExportDefinitionInAttributes {
|
|
50462
|
-
/**
|
|
50463
|
-
*
|
|
50464
|
-
* @type {string}
|
|
50465
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
50466
|
-
*/
|
|
50467
|
-
title?: string;
|
|
50468
|
-
/**
|
|
50469
|
-
*
|
|
50470
|
-
* @type {string}
|
|
50471
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
50472
|
-
*/
|
|
50473
|
-
description?: string;
|
|
50474
|
-
/**
|
|
50475
|
-
*
|
|
50476
|
-
* @type {Array<string>}
|
|
50477
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
50478
|
-
*/
|
|
50479
|
-
tags?: Array<string>;
|
|
50480
|
-
/**
|
|
50481
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
50482
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
50483
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
50484
|
-
*/
|
|
50485
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
50486
|
-
/**
|
|
50487
|
-
*
|
|
50488
|
-
* @type {boolean}
|
|
50489
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
50490
|
-
*/
|
|
50491
|
-
areRelationsValid?: boolean;
|
|
50811
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
50492
50812
|
}
|
|
50493
50813
|
|
|
50494
50814
|
/**
|
|
@@ -50505,26 +50825,6 @@ export declare interface JsonApiExportDefinitionInDocument {
|
|
|
50505
50825
|
data: JsonApiExportDefinitionIn;
|
|
50506
50826
|
}
|
|
50507
50827
|
|
|
50508
|
-
/**
|
|
50509
|
-
*
|
|
50510
|
-
* @export
|
|
50511
|
-
* @interface JsonApiExportDefinitionInRelationships
|
|
50512
|
-
*/
|
|
50513
|
-
export declare interface JsonApiExportDefinitionInRelationships {
|
|
50514
|
-
/**
|
|
50515
|
-
*
|
|
50516
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
50517
|
-
* @memberof JsonApiExportDefinitionInRelationships
|
|
50518
|
-
*/
|
|
50519
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
50520
|
-
/**
|
|
50521
|
-
*
|
|
50522
|
-
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
50523
|
-
* @memberof JsonApiExportDefinitionInRelationships
|
|
50524
|
-
*/
|
|
50525
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
50526
|
-
}
|
|
50527
|
-
|
|
50528
50828
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
50529
50829
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
50530
50830
|
};
|
|
@@ -50851,16 +51151,16 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
50851
51151
|
id: string;
|
|
50852
51152
|
/**
|
|
50853
51153
|
*
|
|
50854
|
-
* @type {
|
|
51154
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
50855
51155
|
* @memberof JsonApiExportDefinitionPatch
|
|
50856
51156
|
*/
|
|
50857
|
-
attributes?:
|
|
51157
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
50858
51158
|
/**
|
|
50859
51159
|
*
|
|
50860
|
-
* @type {
|
|
51160
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
50861
51161
|
* @memberof JsonApiExportDefinitionPatch
|
|
50862
51162
|
*/
|
|
50863
|
-
relationships?:
|
|
51163
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
50864
51164
|
}
|
|
50865
51165
|
|
|
50866
51166
|
/**
|
|
@@ -50903,16 +51203,54 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
50903
51203
|
id?: string;
|
|
50904
51204
|
/**
|
|
50905
51205
|
*
|
|
50906
|
-
* @type {
|
|
51206
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
50907
51207
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
50908
51208
|
*/
|
|
50909
|
-
attributes?:
|
|
51209
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
50910
51210
|
/**
|
|
50911
51211
|
*
|
|
50912
|
-
* @type {
|
|
51212
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
50913
51213
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
50914
51214
|
*/
|
|
50915
|
-
relationships?:
|
|
51215
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
51216
|
+
}
|
|
51217
|
+
|
|
51218
|
+
/**
|
|
51219
|
+
*
|
|
51220
|
+
* @export
|
|
51221
|
+
* @interface JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51222
|
+
*/
|
|
51223
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
51224
|
+
/**
|
|
51225
|
+
*
|
|
51226
|
+
* @type {string}
|
|
51227
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51228
|
+
*/
|
|
51229
|
+
title?: string;
|
|
51230
|
+
/**
|
|
51231
|
+
*
|
|
51232
|
+
* @type {string}
|
|
51233
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51234
|
+
*/
|
|
51235
|
+
description?: string;
|
|
51236
|
+
/**
|
|
51237
|
+
*
|
|
51238
|
+
* @type {Array<string>}
|
|
51239
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51240
|
+
*/
|
|
51241
|
+
tags?: Array<string>;
|
|
51242
|
+
/**
|
|
51243
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
51244
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
51245
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51246
|
+
*/
|
|
51247
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
51248
|
+
/**
|
|
51249
|
+
*
|
|
51250
|
+
* @type {boolean}
|
|
51251
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
51252
|
+
*/
|
|
51253
|
+
areRelationsValid?: boolean;
|
|
50916
51254
|
}
|
|
50917
51255
|
|
|
50918
51256
|
/**
|
|
@@ -50929,6 +51267,26 @@ export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
|
50929
51267
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
50930
51268
|
}
|
|
50931
51269
|
|
|
51270
|
+
/**
|
|
51271
|
+
*
|
|
51272
|
+
* @export
|
|
51273
|
+
* @interface JsonApiExportDefinitionPostOptionalIdRelationships
|
|
51274
|
+
*/
|
|
51275
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
51276
|
+
/**
|
|
51277
|
+
*
|
|
51278
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
51279
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
51280
|
+
*/
|
|
51281
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
51282
|
+
/**
|
|
51283
|
+
*
|
|
51284
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
51285
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
51286
|
+
*/
|
|
51287
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
51288
|
+
}
|
|
51289
|
+
|
|
50932
51290
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
50933
51291
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
50934
51292
|
};
|
|
@@ -51581,10 +51939,10 @@ export declare interface JsonApiFilterContextIn {
|
|
|
51581
51939
|
id: string;
|
|
51582
51940
|
/**
|
|
51583
51941
|
*
|
|
51584
|
-
* @type {
|
|
51942
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
51585
51943
|
* @memberof JsonApiFilterContextIn
|
|
51586
51944
|
*/
|
|
51587
|
-
attributes:
|
|
51945
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
51588
51946
|
}
|
|
51589
51947
|
|
|
51590
51948
|
/**
|
|
@@ -51659,10 +52017,10 @@ export declare interface JsonApiFilterContextOut {
|
|
|
51659
52017
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51660
52018
|
/**
|
|
51661
52019
|
*
|
|
51662
|
-
* @type {
|
|
52020
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
51663
52021
|
* @memberof JsonApiFilterContextOut
|
|
51664
52022
|
*/
|
|
51665
|
-
attributes:
|
|
52023
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
51666
52024
|
/**
|
|
51667
52025
|
*
|
|
51668
52026
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -51793,10 +52151,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
51793
52151
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51794
52152
|
/**
|
|
51795
52153
|
*
|
|
51796
|
-
* @type {
|
|
52154
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
51797
52155
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
51798
52156
|
*/
|
|
51799
|
-
attributes:
|
|
52157
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
51800
52158
|
/**
|
|
51801
52159
|
*
|
|
51802
52160
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -51883,10 +52241,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
51883
52241
|
id?: string;
|
|
51884
52242
|
/**
|
|
51885
52243
|
*
|
|
51886
|
-
* @type {
|
|
52244
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
51887
52245
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
51888
52246
|
*/
|
|
51889
|
-
attributes:
|
|
52247
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
51890
52248
|
}
|
|
51891
52249
|
|
|
51892
52250
|
/**
|
|
@@ -52013,24 +52371,10 @@ export declare interface JsonApiFilterViewInRelationships {
|
|
|
52013
52371
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
52014
52372
|
/**
|
|
52015
52373
|
*
|
|
52016
|
-
* @type {
|
|
52374
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
52017
52375
|
* @memberof JsonApiFilterViewInRelationships
|
|
52018
52376
|
*/
|
|
52019
|
-
user?:
|
|
52020
|
-
}
|
|
52021
|
-
|
|
52022
|
-
/**
|
|
52023
|
-
*
|
|
52024
|
-
* @export
|
|
52025
|
-
* @interface JsonApiFilterViewInRelationshipsUser
|
|
52026
|
-
*/
|
|
52027
|
-
export declare interface JsonApiFilterViewInRelationshipsUser {
|
|
52028
|
-
/**
|
|
52029
|
-
*
|
|
52030
|
-
* @type {JsonApiUserToOneLinkage}
|
|
52031
|
-
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
52032
|
-
*/
|
|
52033
|
-
data: JsonApiUserToOneLinkage | null;
|
|
52377
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
52034
52378
|
}
|
|
52035
52379
|
|
|
52036
52380
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
@@ -52356,6 +52700,32 @@ export declare interface JsonApiIdentityProviderInAttributes {
|
|
|
52356
52700
|
* @memberof JsonApiIdentityProviderInAttributes
|
|
52357
52701
|
*/
|
|
52358
52702
|
oauthIssuerLocation?: string;
|
|
52703
|
+
/**
|
|
52704
|
+
* 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.
|
|
52705
|
+
* @type {string}
|
|
52706
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
52707
|
+
*/
|
|
52708
|
+
oauthIssuerId?: string;
|
|
52709
|
+
/**
|
|
52710
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
52711
|
+
* @type {string}
|
|
52712
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
52713
|
+
*/
|
|
52714
|
+
oauthSubjectIdClaim?: string;
|
|
52715
|
+
/**
|
|
52716
|
+
* 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.
|
|
52717
|
+
* @type {{ [key: string]: string; }}
|
|
52718
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
52719
|
+
*/
|
|
52720
|
+
oauthCustomAuthAttributes?: {
|
|
52721
|
+
[key: string]: string;
|
|
52722
|
+
};
|
|
52723
|
+
/**
|
|
52724
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
52725
|
+
* @type {Array<string>}
|
|
52726
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
52727
|
+
*/
|
|
52728
|
+
oauthCustomScopes?: Array<string> | null;
|
|
52359
52729
|
}
|
|
52360
52730
|
|
|
52361
52731
|
/**
|
|
@@ -52436,6 +52806,32 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
52436
52806
|
* @memberof JsonApiIdentityProviderOutAttributes
|
|
52437
52807
|
*/
|
|
52438
52808
|
oauthIssuerLocation?: string;
|
|
52809
|
+
/**
|
|
52810
|
+
* 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.
|
|
52811
|
+
* @type {string}
|
|
52812
|
+
* @memberof JsonApiIdentityProviderOutAttributes
|
|
52813
|
+
*/
|
|
52814
|
+
oauthIssuerId?: string;
|
|
52815
|
+
/**
|
|
52816
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
52817
|
+
* @type {string}
|
|
52818
|
+
* @memberof JsonApiIdentityProviderOutAttributes
|
|
52819
|
+
*/
|
|
52820
|
+
oauthSubjectIdClaim?: string;
|
|
52821
|
+
/**
|
|
52822
|
+
* 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.
|
|
52823
|
+
* @type {{ [key: string]: string; }}
|
|
52824
|
+
* @memberof JsonApiIdentityProviderOutAttributes
|
|
52825
|
+
*/
|
|
52826
|
+
oauthCustomAuthAttributes?: {
|
|
52827
|
+
[key: string]: string;
|
|
52828
|
+
};
|
|
52829
|
+
/**
|
|
52830
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
52831
|
+
* @type {Array<string>}
|
|
52832
|
+
* @memberof JsonApiIdentityProviderOutAttributes
|
|
52833
|
+
*/
|
|
52834
|
+
oauthCustomScopes?: Array<string> | null;
|
|
52439
52835
|
}
|
|
52440
52836
|
|
|
52441
52837
|
/**
|
|
@@ -52598,6 +52994,32 @@ export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
|
52598
52994
|
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
52599
52995
|
*/
|
|
52600
52996
|
oauthIssuerLocation?: string;
|
|
52997
|
+
/**
|
|
52998
|
+
* 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.
|
|
52999
|
+
* @type {string}
|
|
53000
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
53001
|
+
*/
|
|
53002
|
+
oauthIssuerId?: string;
|
|
53003
|
+
/**
|
|
53004
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
53005
|
+
* @type {string}
|
|
53006
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
53007
|
+
*/
|
|
53008
|
+
oauthSubjectIdClaim?: string;
|
|
53009
|
+
/**
|
|
53010
|
+
* 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.
|
|
53011
|
+
* @type {{ [key: string]: string; }}
|
|
53012
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
53013
|
+
*/
|
|
53014
|
+
oauthCustomAuthAttributes?: {
|
|
53015
|
+
[key: string]: string;
|
|
53016
|
+
};
|
|
53017
|
+
/**
|
|
53018
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
53019
|
+
* @type {Array<string>}
|
|
53020
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
53021
|
+
*/
|
|
53022
|
+
oauthCustomScopes?: Array<string> | null;
|
|
52601
53023
|
}
|
|
52602
53024
|
|
|
52603
53025
|
/**
|
|
@@ -53172,12 +53594,6 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
53172
53594
|
* @memberof JsonApiLlmEndpointInAttributes
|
|
53173
53595
|
*/
|
|
53174
53596
|
title: string;
|
|
53175
|
-
/**
|
|
53176
|
-
* User-facing description of the LLM Provider.
|
|
53177
|
-
* @type {string}
|
|
53178
|
-
* @memberof JsonApiLlmEndpointInAttributes
|
|
53179
|
-
*/
|
|
53180
|
-
description?: string | null;
|
|
53181
53597
|
/**
|
|
53182
53598
|
* LLM Provider.
|
|
53183
53599
|
* @type {string}
|
|
@@ -53274,12 +53690,6 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
53274
53690
|
* @memberof JsonApiLlmEndpointOutAttributes
|
|
53275
53691
|
*/
|
|
53276
53692
|
title: string;
|
|
53277
|
-
/**
|
|
53278
|
-
* User-facing description of the LLM Provider.
|
|
53279
|
-
* @type {string}
|
|
53280
|
-
* @memberof JsonApiLlmEndpointOutAttributes
|
|
53281
|
-
*/
|
|
53282
|
-
description?: string | null;
|
|
53283
53693
|
/**
|
|
53284
53694
|
* LLM Provider.
|
|
53285
53695
|
* @type {string}
|
|
@@ -53440,12 +53850,6 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
53440
53850
|
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
53441
53851
|
*/
|
|
53442
53852
|
title?: string;
|
|
53443
|
-
/**
|
|
53444
|
-
* User-facing description of the LLM Provider.
|
|
53445
|
-
* @type {string}
|
|
53446
|
-
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
53447
|
-
*/
|
|
53448
|
-
description?: string | null;
|
|
53449
53853
|
/**
|
|
53450
53854
|
* LLM Provider.
|
|
53451
53855
|
* @type {string}
|
|
@@ -53524,48 +53928,10 @@ export declare interface JsonApiMetricIn {
|
|
|
53524
53928
|
id: string;
|
|
53525
53929
|
/**
|
|
53526
53930
|
*
|
|
53527
|
-
* @type {
|
|
53931
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
53528
53932
|
* @memberof JsonApiMetricIn
|
|
53529
53933
|
*/
|
|
53530
|
-
attributes:
|
|
53531
|
-
}
|
|
53532
|
-
|
|
53533
|
-
/**
|
|
53534
|
-
*
|
|
53535
|
-
* @export
|
|
53536
|
-
* @interface JsonApiMetricInAttributes
|
|
53537
|
-
*/
|
|
53538
|
-
export declare interface JsonApiMetricInAttributes {
|
|
53539
|
-
/**
|
|
53540
|
-
*
|
|
53541
|
-
* @type {string}
|
|
53542
|
-
* @memberof JsonApiMetricInAttributes
|
|
53543
|
-
*/
|
|
53544
|
-
title?: string;
|
|
53545
|
-
/**
|
|
53546
|
-
*
|
|
53547
|
-
* @type {string}
|
|
53548
|
-
* @memberof JsonApiMetricInAttributes
|
|
53549
|
-
*/
|
|
53550
|
-
description?: string;
|
|
53551
|
-
/**
|
|
53552
|
-
*
|
|
53553
|
-
* @type {Array<string>}
|
|
53554
|
-
* @memberof JsonApiMetricInAttributes
|
|
53555
|
-
*/
|
|
53556
|
-
tags?: Array<string>;
|
|
53557
|
-
/**
|
|
53558
|
-
*
|
|
53559
|
-
* @type {boolean}
|
|
53560
|
-
* @memberof JsonApiMetricInAttributes
|
|
53561
|
-
*/
|
|
53562
|
-
areRelationsValid?: boolean;
|
|
53563
|
-
/**
|
|
53564
|
-
*
|
|
53565
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
53566
|
-
* @memberof JsonApiMetricInAttributes
|
|
53567
|
-
*/
|
|
53568
|
-
content: JsonApiMetricOutAttributesContent;
|
|
53934
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
53569
53935
|
}
|
|
53570
53936
|
|
|
53571
53937
|
/**
|
|
@@ -53946,10 +54312,48 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
53946
54312
|
id?: string;
|
|
53947
54313
|
/**
|
|
53948
54314
|
*
|
|
53949
|
-
* @type {
|
|
54315
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
53950
54316
|
* @memberof JsonApiMetricPostOptionalId
|
|
53951
54317
|
*/
|
|
53952
|
-
attributes:
|
|
54318
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
54319
|
+
}
|
|
54320
|
+
|
|
54321
|
+
/**
|
|
54322
|
+
*
|
|
54323
|
+
* @export
|
|
54324
|
+
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
54325
|
+
*/
|
|
54326
|
+
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
54327
|
+
/**
|
|
54328
|
+
*
|
|
54329
|
+
* @type {string}
|
|
54330
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
54331
|
+
*/
|
|
54332
|
+
title?: string;
|
|
54333
|
+
/**
|
|
54334
|
+
*
|
|
54335
|
+
* @type {string}
|
|
54336
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
54337
|
+
*/
|
|
54338
|
+
description?: string;
|
|
54339
|
+
/**
|
|
54340
|
+
*
|
|
54341
|
+
* @type {Array<string>}
|
|
54342
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
54343
|
+
*/
|
|
54344
|
+
tags?: Array<string>;
|
|
54345
|
+
/**
|
|
54346
|
+
*
|
|
54347
|
+
* @type {boolean}
|
|
54348
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
54349
|
+
*/
|
|
54350
|
+
areRelationsValid?: boolean;
|
|
54351
|
+
/**
|
|
54352
|
+
*
|
|
54353
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
54354
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
54355
|
+
*/
|
|
54356
|
+
content: JsonApiMetricOutAttributesContent;
|
|
53953
54357
|
}
|
|
53954
54358
|
|
|
53955
54359
|
/**
|
|
@@ -53972,6 +54376,157 @@ export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
|
53972
54376
|
|
|
53973
54377
|
export declare type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
53974
54378
|
|
|
54379
|
+
/**
|
|
54380
|
+
* JSON:API representation of notificationChannelIdentifier entity.
|
|
54381
|
+
* @export
|
|
54382
|
+
* @interface JsonApiNotificationChannelIdentifierOut
|
|
54383
|
+
*/
|
|
54384
|
+
export declare interface JsonApiNotificationChannelIdentifierOut {
|
|
54385
|
+
/**
|
|
54386
|
+
* Object type
|
|
54387
|
+
* @type {string}
|
|
54388
|
+
* @memberof JsonApiNotificationChannelIdentifierOut
|
|
54389
|
+
*/
|
|
54390
|
+
type: JsonApiNotificationChannelIdentifierOutTypeEnum;
|
|
54391
|
+
/**
|
|
54392
|
+
* API identifier of an object
|
|
54393
|
+
* @type {string}
|
|
54394
|
+
* @memberof JsonApiNotificationChannelIdentifierOut
|
|
54395
|
+
*/
|
|
54396
|
+
id: string;
|
|
54397
|
+
/**
|
|
54398
|
+
*
|
|
54399
|
+
* @type {JsonApiNotificationChannelIdentifierOutAttributes}
|
|
54400
|
+
* @memberof JsonApiNotificationChannelIdentifierOut
|
|
54401
|
+
*/
|
|
54402
|
+
attributes?: JsonApiNotificationChannelIdentifierOutAttributes;
|
|
54403
|
+
}
|
|
54404
|
+
|
|
54405
|
+
/**
|
|
54406
|
+
*
|
|
54407
|
+
* @export
|
|
54408
|
+
* @interface JsonApiNotificationChannelIdentifierOutAttributes
|
|
54409
|
+
*/
|
|
54410
|
+
export declare interface JsonApiNotificationChannelIdentifierOutAttributes {
|
|
54411
|
+
/**
|
|
54412
|
+
*
|
|
54413
|
+
* @type {string}
|
|
54414
|
+
* @memberof JsonApiNotificationChannelIdentifierOutAttributes
|
|
54415
|
+
*/
|
|
54416
|
+
name?: string | null;
|
|
54417
|
+
/**
|
|
54418
|
+
*
|
|
54419
|
+
* @type {string}
|
|
54420
|
+
* @memberof JsonApiNotificationChannelIdentifierOutAttributes
|
|
54421
|
+
*/
|
|
54422
|
+
description?: string | null;
|
|
54423
|
+
/**
|
|
54424
|
+
*
|
|
54425
|
+
* @type {string}
|
|
54426
|
+
* @memberof JsonApiNotificationChannelIdentifierOutAttributes
|
|
54427
|
+
*/
|
|
54428
|
+
destinationType?: JsonApiNotificationChannelIdentifierOutAttributesDestinationTypeEnum;
|
|
54429
|
+
}
|
|
54430
|
+
|
|
54431
|
+
export declare const JsonApiNotificationChannelIdentifierOutAttributesDestinationTypeEnum: {
|
|
54432
|
+
readonly WEBHOOK: "WEBHOOK";
|
|
54433
|
+
readonly SMTP: "SMTP";
|
|
54434
|
+
readonly DEFAULT_SMTP: "DEFAULT_SMTP";
|
|
54435
|
+
readonly IN_PLATFORM: "IN_PLATFORM";
|
|
54436
|
+
};
|
|
54437
|
+
|
|
54438
|
+
export declare type JsonApiNotificationChannelIdentifierOutAttributesDestinationTypeEnum = typeof JsonApiNotificationChannelIdentifierOutAttributesDestinationTypeEnum[keyof typeof JsonApiNotificationChannelIdentifierOutAttributesDestinationTypeEnum];
|
|
54439
|
+
|
|
54440
|
+
/**
|
|
54441
|
+
*
|
|
54442
|
+
* @export
|
|
54443
|
+
* @interface JsonApiNotificationChannelIdentifierOutDocument
|
|
54444
|
+
*/
|
|
54445
|
+
export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
54446
|
+
/**
|
|
54447
|
+
*
|
|
54448
|
+
* @type {JsonApiNotificationChannelIdentifierOut}
|
|
54449
|
+
* @memberof JsonApiNotificationChannelIdentifierOutDocument
|
|
54450
|
+
*/
|
|
54451
|
+
data: JsonApiNotificationChannelIdentifierOut;
|
|
54452
|
+
/**
|
|
54453
|
+
*
|
|
54454
|
+
* @type {ObjectLinks}
|
|
54455
|
+
* @memberof JsonApiNotificationChannelIdentifierOutDocument
|
|
54456
|
+
*/
|
|
54457
|
+
links?: ObjectLinks;
|
|
54458
|
+
}
|
|
54459
|
+
|
|
54460
|
+
/**
|
|
54461
|
+
* A JSON:API document with a list of resources
|
|
54462
|
+
* @export
|
|
54463
|
+
* @interface JsonApiNotificationChannelIdentifierOutList
|
|
54464
|
+
*/
|
|
54465
|
+
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
54466
|
+
/**
|
|
54467
|
+
*
|
|
54468
|
+
* @type {Array<JsonApiNotificationChannelIdentifierOutWithLinks>}
|
|
54469
|
+
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
54470
|
+
*/
|
|
54471
|
+
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
54472
|
+
/**
|
|
54473
|
+
*
|
|
54474
|
+
* @type {ListLinks}
|
|
54475
|
+
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
54476
|
+
*/
|
|
54477
|
+
links?: ListLinks;
|
|
54478
|
+
/**
|
|
54479
|
+
*
|
|
54480
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
54481
|
+
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
54482
|
+
*/
|
|
54483
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
54484
|
+
}
|
|
54485
|
+
|
|
54486
|
+
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
54487
|
+
readonly NOTIFICATION_CHANNEL_IDENTIFIER: "notificationChannelIdentifier";
|
|
54488
|
+
};
|
|
54489
|
+
|
|
54490
|
+
export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = typeof JsonApiNotificationChannelIdentifierOutTypeEnum[keyof typeof JsonApiNotificationChannelIdentifierOutTypeEnum];
|
|
54491
|
+
|
|
54492
|
+
/**
|
|
54493
|
+
*
|
|
54494
|
+
* @export
|
|
54495
|
+
* @interface JsonApiNotificationChannelIdentifierOutWithLinks
|
|
54496
|
+
*/
|
|
54497
|
+
export declare interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
54498
|
+
/**
|
|
54499
|
+
* Object type
|
|
54500
|
+
* @type {string}
|
|
54501
|
+
* @memberof JsonApiNotificationChannelIdentifierOutWithLinks
|
|
54502
|
+
*/
|
|
54503
|
+
type: JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum;
|
|
54504
|
+
/**
|
|
54505
|
+
* API identifier of an object
|
|
54506
|
+
* @type {string}
|
|
54507
|
+
* @memberof JsonApiNotificationChannelIdentifierOutWithLinks
|
|
54508
|
+
*/
|
|
54509
|
+
id: string;
|
|
54510
|
+
/**
|
|
54511
|
+
*
|
|
54512
|
+
* @type {JsonApiNotificationChannelIdentifierOutAttributes}
|
|
54513
|
+
* @memberof JsonApiNotificationChannelIdentifierOutWithLinks
|
|
54514
|
+
*/
|
|
54515
|
+
attributes?: JsonApiNotificationChannelIdentifierOutAttributes;
|
|
54516
|
+
/**
|
|
54517
|
+
*
|
|
54518
|
+
* @type {ObjectLinks}
|
|
54519
|
+
* @memberof JsonApiNotificationChannelIdentifierOutWithLinks
|
|
54520
|
+
*/
|
|
54521
|
+
links?: ObjectLinks;
|
|
54522
|
+
}
|
|
54523
|
+
|
|
54524
|
+
export declare const JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum: {
|
|
54525
|
+
readonly NOTIFICATION_CHANNEL_IDENTIFIER: "notificationChannelIdentifier";
|
|
54526
|
+
};
|
|
54527
|
+
|
|
54528
|
+
export declare type JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum = typeof JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum[keyof typeof JsonApiNotificationChannelIdentifierOutWithLinksTypeEnum];
|
|
54529
|
+
|
|
53975
54530
|
/**
|
|
53976
54531
|
* JSON:API representation of notificationChannel entity.
|
|
53977
54532
|
* @export
|
|
@@ -54023,7 +54578,7 @@ export declare interface JsonApiNotificationChannelInAttributes {
|
|
|
54023
54578
|
*/
|
|
54024
54579
|
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
54025
54580
|
/**
|
|
54026
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}
|
|
54581
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
54027
54582
|
* @type {string}
|
|
54028
54583
|
* @memberof JsonApiNotificationChannelInAttributes
|
|
54029
54584
|
*/
|
|
@@ -54034,6 +54589,12 @@ export declare interface JsonApiNotificationChannelInAttributes {
|
|
|
54034
54589
|
* @memberof JsonApiNotificationChannelInAttributes
|
|
54035
54590
|
*/
|
|
54036
54591
|
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
54592
|
+
/**
|
|
54593
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
54594
|
+
* @type {string}
|
|
54595
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
54596
|
+
*/
|
|
54597
|
+
notificationSource?: string;
|
|
54037
54598
|
/**
|
|
54038
54599
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
54039
54600
|
* @type {string}
|
|
@@ -54174,7 +54735,7 @@ export declare interface JsonApiNotificationChannelOutAttributes {
|
|
|
54174
54735
|
*/
|
|
54175
54736
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum;
|
|
54176
54737
|
/**
|
|
54177
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}
|
|
54738
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
54178
54739
|
* @type {string}
|
|
54179
54740
|
* @memberof JsonApiNotificationChannelOutAttributes
|
|
54180
54741
|
*/
|
|
@@ -54185,6 +54746,12 @@ export declare interface JsonApiNotificationChannelOutAttributes {
|
|
|
54185
54746
|
* @memberof JsonApiNotificationChannelOutAttributes
|
|
54186
54747
|
*/
|
|
54187
54748
|
dashboardLinkVisibility?: JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum;
|
|
54749
|
+
/**
|
|
54750
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
54751
|
+
* @type {string}
|
|
54752
|
+
* @memberof JsonApiNotificationChannelOutAttributes
|
|
54753
|
+
*/
|
|
54754
|
+
notificationSource?: string;
|
|
54188
54755
|
/**
|
|
54189
54756
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
54190
54757
|
* @type {string}
|
|
@@ -54675,16 +55242,44 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
|
|
|
54675
55242
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
54676
55243
|
/**
|
|
54677
55244
|
*
|
|
54678
|
-
* @type {
|
|
55245
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
54679
55246
|
* @memberof JsonApiOrganizationOutRelationships
|
|
54680
55247
|
*/
|
|
54681
|
-
bootstrapUser?:
|
|
55248
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
54682
55249
|
/**
|
|
54683
55250
|
*
|
|
54684
|
-
* @type {
|
|
55251
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
54685
55252
|
* @memberof JsonApiOrganizationOutRelationships
|
|
54686
55253
|
*/
|
|
54687
|
-
bootstrapUserGroup?:
|
|
55254
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
55255
|
+
}
|
|
55256
|
+
|
|
55257
|
+
/**
|
|
55258
|
+
*
|
|
55259
|
+
* @export
|
|
55260
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
55261
|
+
*/
|
|
55262
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
55263
|
+
/**
|
|
55264
|
+
*
|
|
55265
|
+
* @type {JsonApiUserToOneLinkage}
|
|
55266
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
55267
|
+
*/
|
|
55268
|
+
data: JsonApiUserToOneLinkage | null;
|
|
55269
|
+
}
|
|
55270
|
+
|
|
55271
|
+
/**
|
|
55272
|
+
*
|
|
55273
|
+
* @export
|
|
55274
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
55275
|
+
*/
|
|
55276
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
55277
|
+
/**
|
|
55278
|
+
*
|
|
55279
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
55280
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
55281
|
+
*/
|
|
55282
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
54688
55283
|
}
|
|
54689
55284
|
|
|
54690
55285
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -54842,10 +55437,10 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
54842
55437
|
id: string;
|
|
54843
55438
|
/**
|
|
54844
55439
|
*
|
|
54845
|
-
* @type {
|
|
55440
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
54846
55441
|
* @memberof JsonApiOrganizationSettingIn
|
|
54847
55442
|
*/
|
|
54848
|
-
attributes?:
|
|
55443
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
54849
55444
|
}
|
|
54850
55445
|
|
|
54851
55446
|
/**
|
|
@@ -54888,62 +55483,12 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
54888
55483
|
id: string;
|
|
54889
55484
|
/**
|
|
54890
55485
|
*
|
|
54891
|
-
* @type {
|
|
55486
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
54892
55487
|
* @memberof JsonApiOrganizationSettingOut
|
|
54893
55488
|
*/
|
|
54894
|
-
attributes?:
|
|
55489
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
54895
55490
|
}
|
|
54896
55491
|
|
|
54897
|
-
/**
|
|
54898
|
-
*
|
|
54899
|
-
* @export
|
|
54900
|
-
* @interface JsonApiOrganizationSettingOutAttributes
|
|
54901
|
-
*/
|
|
54902
|
-
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
54903
|
-
/**
|
|
54904
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
54905
|
-
* @type {object}
|
|
54906
|
-
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
54907
|
-
*/
|
|
54908
|
-
content?: object;
|
|
54909
|
-
/**
|
|
54910
|
-
*
|
|
54911
|
-
* @type {string}
|
|
54912
|
-
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
54913
|
-
*/
|
|
54914
|
-
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
54915
|
-
}
|
|
54916
|
-
|
|
54917
|
-
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
54918
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
54919
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
54920
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
54921
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
54922
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
54923
|
-
readonly LOCALE: "LOCALE";
|
|
54924
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
54925
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
54926
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
54927
|
-
readonly WEEK_START: "WEEK_START";
|
|
54928
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
54929
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
54930
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
54931
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
54932
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
54933
|
-
readonly ALERT: "ALERT";
|
|
54934
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
54935
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
54936
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
54937
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
54938
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
54939
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
54940
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
54941
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
54942
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
54943
|
-
};
|
|
54944
|
-
|
|
54945
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
54946
|
-
|
|
54947
55492
|
/**
|
|
54948
55493
|
*
|
|
54949
55494
|
* @export
|
|
@@ -55016,10 +55561,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
55016
55561
|
id: string;
|
|
55017
55562
|
/**
|
|
55018
55563
|
*
|
|
55019
|
-
* @type {
|
|
55564
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
55020
55565
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
55021
55566
|
*/
|
|
55022
|
-
attributes?:
|
|
55567
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
55023
55568
|
/**
|
|
55024
55569
|
*
|
|
55025
55570
|
* @type {ObjectLinks}
|
|
@@ -55054,10 +55599,10 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
55054
55599
|
id: string;
|
|
55055
55600
|
/**
|
|
55056
55601
|
*
|
|
55057
|
-
* @type {
|
|
55602
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
55058
55603
|
* @memberof JsonApiOrganizationSettingPatch
|
|
55059
55604
|
*/
|
|
55060
|
-
attributes?:
|
|
55605
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
55061
55606
|
}
|
|
55062
55607
|
|
|
55063
55608
|
/**
|
|
@@ -55308,54 +55853,16 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
55308
55853
|
id: string;
|
|
55309
55854
|
/**
|
|
55310
55855
|
*
|
|
55311
|
-
* @type {
|
|
55856
|
+
* @type {JsonApiUserDataFilterPostOptionalIdAttributes}
|
|
55312
55857
|
* @memberof JsonApiUserDataFilterIn
|
|
55313
55858
|
*/
|
|
55314
|
-
attributes:
|
|
55859
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
55315
55860
|
/**
|
|
55316
55861
|
*
|
|
55317
|
-
* @type {
|
|
55862
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
55318
55863
|
* @memberof JsonApiUserDataFilterIn
|
|
55319
55864
|
*/
|
|
55320
|
-
relationships?:
|
|
55321
|
-
}
|
|
55322
|
-
|
|
55323
|
-
/**
|
|
55324
|
-
*
|
|
55325
|
-
* @export
|
|
55326
|
-
* @interface JsonApiUserDataFilterInAttributes
|
|
55327
|
-
*/
|
|
55328
|
-
export declare interface JsonApiUserDataFilterInAttributes {
|
|
55329
|
-
/**
|
|
55330
|
-
*
|
|
55331
|
-
* @type {string}
|
|
55332
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
55333
|
-
*/
|
|
55334
|
-
title?: string;
|
|
55335
|
-
/**
|
|
55336
|
-
*
|
|
55337
|
-
* @type {string}
|
|
55338
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
55339
|
-
*/
|
|
55340
|
-
description?: string;
|
|
55341
|
-
/**
|
|
55342
|
-
*
|
|
55343
|
-
* @type {Array<string>}
|
|
55344
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
55345
|
-
*/
|
|
55346
|
-
tags?: Array<string>;
|
|
55347
|
-
/**
|
|
55348
|
-
*
|
|
55349
|
-
* @type {boolean}
|
|
55350
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
55351
|
-
*/
|
|
55352
|
-
areRelationsValid?: boolean;
|
|
55353
|
-
/**
|
|
55354
|
-
*
|
|
55355
|
-
* @type {string}
|
|
55356
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
55357
|
-
*/
|
|
55358
|
-
maql: string;
|
|
55865
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
55359
55866
|
}
|
|
55360
55867
|
|
|
55361
55868
|
/**
|
|
@@ -55372,40 +55879,6 @@ export declare interface JsonApiUserDataFilterInDocument {
|
|
|
55372
55879
|
data: JsonApiUserDataFilterIn;
|
|
55373
55880
|
}
|
|
55374
55881
|
|
|
55375
|
-
/**
|
|
55376
|
-
*
|
|
55377
|
-
* @export
|
|
55378
|
-
* @interface JsonApiUserDataFilterInRelationships
|
|
55379
|
-
*/
|
|
55380
|
-
export declare interface JsonApiUserDataFilterInRelationships {
|
|
55381
|
-
/**
|
|
55382
|
-
*
|
|
55383
|
-
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
55384
|
-
* @memberof JsonApiUserDataFilterInRelationships
|
|
55385
|
-
*/
|
|
55386
|
-
user?: JsonApiFilterViewInRelationshipsUser;
|
|
55387
|
-
/**
|
|
55388
|
-
*
|
|
55389
|
-
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
55390
|
-
* @memberof JsonApiUserDataFilterInRelationships
|
|
55391
|
-
*/
|
|
55392
|
-
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
55393
|
-
}
|
|
55394
|
-
|
|
55395
|
-
/**
|
|
55396
|
-
*
|
|
55397
|
-
* @export
|
|
55398
|
-
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
55399
|
-
*/
|
|
55400
|
-
export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
55401
|
-
/**
|
|
55402
|
-
*
|
|
55403
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
55404
|
-
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
55405
|
-
*/
|
|
55406
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
55407
|
-
}
|
|
55408
|
-
|
|
55409
55882
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
55410
55883
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
55411
55884
|
};
|
|
@@ -55438,10 +55911,10 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
55438
55911
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
55439
55912
|
/**
|
|
55440
55913
|
*
|
|
55441
|
-
* @type {
|
|
55914
|
+
* @type {JsonApiUserDataFilterPostOptionalIdAttributes}
|
|
55442
55915
|
* @memberof JsonApiUserDataFilterOut
|
|
55443
55916
|
*/
|
|
55444
|
-
attributes:
|
|
55917
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
55445
55918
|
/**
|
|
55446
55919
|
*
|
|
55447
55920
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -55522,16 +55995,16 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
55522
55995
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
55523
55996
|
/**
|
|
55524
55997
|
*
|
|
55525
|
-
* @type {
|
|
55998
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
55526
55999
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
55527
56000
|
*/
|
|
55528
|
-
user?:
|
|
56001
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
55529
56002
|
/**
|
|
55530
56003
|
*
|
|
55531
|
-
* @type {
|
|
56004
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
55532
56005
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
55533
56006
|
*/
|
|
55534
|
-
userGroup?:
|
|
56007
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
55535
56008
|
/**
|
|
55536
56009
|
*
|
|
55537
56010
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -55596,10 +56069,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
55596
56069
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
55597
56070
|
/**
|
|
55598
56071
|
*
|
|
55599
|
-
* @type {
|
|
56072
|
+
* @type {JsonApiUserDataFilterPostOptionalIdAttributes}
|
|
55600
56073
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
55601
56074
|
*/
|
|
55602
|
-
attributes:
|
|
56075
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
55603
56076
|
/**
|
|
55604
56077
|
*
|
|
55605
56078
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -55646,10 +56119,10 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
55646
56119
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
55647
56120
|
/**
|
|
55648
56121
|
*
|
|
55649
|
-
* @type {
|
|
56122
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
55650
56123
|
* @memberof JsonApiUserDataFilterPatch
|
|
55651
56124
|
*/
|
|
55652
|
-
relationships?:
|
|
56125
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
55653
56126
|
}
|
|
55654
56127
|
|
|
55655
56128
|
/**
|
|
@@ -55730,16 +56203,54 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
55730
56203
|
id?: string;
|
|
55731
56204
|
/**
|
|
55732
56205
|
*
|
|
55733
|
-
* @type {
|
|
56206
|
+
* @type {JsonApiUserDataFilterPostOptionalIdAttributes}
|
|
55734
56207
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
55735
56208
|
*/
|
|
55736
|
-
attributes:
|
|
56209
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
55737
56210
|
/**
|
|
55738
56211
|
*
|
|
55739
|
-
* @type {
|
|
56212
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
55740
56213
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
55741
56214
|
*/
|
|
55742
|
-
relationships?:
|
|
56215
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
56216
|
+
}
|
|
56217
|
+
|
|
56218
|
+
/**
|
|
56219
|
+
*
|
|
56220
|
+
* @export
|
|
56221
|
+
* @interface JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56222
|
+
*/
|
|
56223
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
56224
|
+
/**
|
|
56225
|
+
*
|
|
56226
|
+
* @type {string}
|
|
56227
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56228
|
+
*/
|
|
56229
|
+
title?: string;
|
|
56230
|
+
/**
|
|
56231
|
+
*
|
|
56232
|
+
* @type {string}
|
|
56233
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56234
|
+
*/
|
|
56235
|
+
description?: string;
|
|
56236
|
+
/**
|
|
56237
|
+
*
|
|
56238
|
+
* @type {Array<string>}
|
|
56239
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56240
|
+
*/
|
|
56241
|
+
tags?: Array<string>;
|
|
56242
|
+
/**
|
|
56243
|
+
*
|
|
56244
|
+
* @type {boolean}
|
|
56245
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56246
|
+
*/
|
|
56247
|
+
areRelationsValid?: boolean;
|
|
56248
|
+
/**
|
|
56249
|
+
*
|
|
56250
|
+
* @type {string}
|
|
56251
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
56252
|
+
*/
|
|
56253
|
+
maql: string;
|
|
55743
56254
|
}
|
|
55744
56255
|
|
|
55745
56256
|
/**
|
|
@@ -55756,6 +56267,26 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
55756
56267
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
55757
56268
|
}
|
|
55758
56269
|
|
|
56270
|
+
/**
|
|
56271
|
+
*
|
|
56272
|
+
* @export
|
|
56273
|
+
* @interface JsonApiUserDataFilterPostOptionalIdRelationships
|
|
56274
|
+
*/
|
|
56275
|
+
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
56276
|
+
/**
|
|
56277
|
+
*
|
|
56278
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
56279
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
56280
|
+
*/
|
|
56281
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
56282
|
+
/**
|
|
56283
|
+
*
|
|
56284
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
56285
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
56286
|
+
*/
|
|
56287
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
56288
|
+
}
|
|
56289
|
+
|
|
55759
56290
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
55760
56291
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
55761
56292
|
};
|
|
@@ -55952,24 +56483,10 @@ export declare interface JsonApiUserGroupOutList {
|
|
|
55952
56483
|
export declare interface JsonApiUserGroupOutRelationships {
|
|
55953
56484
|
/**
|
|
55954
56485
|
*
|
|
55955
|
-
* @type {
|
|
56486
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
55956
56487
|
* @memberof JsonApiUserGroupOutRelationships
|
|
55957
56488
|
*/
|
|
55958
|
-
parents?:
|
|
55959
|
-
}
|
|
55960
|
-
|
|
55961
|
-
/**
|
|
55962
|
-
*
|
|
55963
|
-
* @export
|
|
55964
|
-
* @interface JsonApiUserGroupOutRelationshipsParents
|
|
55965
|
-
*/
|
|
55966
|
-
export declare interface JsonApiUserGroupOutRelationshipsParents {
|
|
55967
|
-
/**
|
|
55968
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
55969
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
55970
|
-
* @memberof JsonApiUserGroupOutRelationshipsParents
|
|
55971
|
-
*/
|
|
55972
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
56489
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
55973
56490
|
}
|
|
55974
56491
|
|
|
55975
56492
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
@@ -56464,10 +56981,24 @@ export declare interface JsonApiUserOutList {
|
|
|
56464
56981
|
export declare interface JsonApiUserOutRelationships {
|
|
56465
56982
|
/**
|
|
56466
56983
|
*
|
|
56467
|
-
* @type {
|
|
56984
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
56468
56985
|
* @memberof JsonApiUserOutRelationships
|
|
56469
56986
|
*/
|
|
56470
|
-
userGroups?:
|
|
56987
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
56988
|
+
}
|
|
56989
|
+
|
|
56990
|
+
/**
|
|
56991
|
+
*
|
|
56992
|
+
* @export
|
|
56993
|
+
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
56994
|
+
*/
|
|
56995
|
+
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
56996
|
+
/**
|
|
56997
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56998
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
56999
|
+
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
57000
|
+
*/
|
|
57001
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
56471
57002
|
}
|
|
56472
57003
|
|
|
56473
57004
|
export declare const JsonApiUserOutTypeEnum: {
|
|
@@ -56592,12 +57123,62 @@ export declare interface JsonApiUserSettingIn {
|
|
|
56592
57123
|
id: string;
|
|
56593
57124
|
/**
|
|
56594
57125
|
*
|
|
56595
|
-
* @type {
|
|
57126
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
56596
57127
|
* @memberof JsonApiUserSettingIn
|
|
56597
57128
|
*/
|
|
56598
|
-
attributes?:
|
|
57129
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
56599
57130
|
}
|
|
56600
57131
|
|
|
57132
|
+
/**
|
|
57133
|
+
*
|
|
57134
|
+
* @export
|
|
57135
|
+
* @interface JsonApiUserSettingInAttributes
|
|
57136
|
+
*/
|
|
57137
|
+
export declare interface JsonApiUserSettingInAttributes {
|
|
57138
|
+
/**
|
|
57139
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
57140
|
+
* @type {object}
|
|
57141
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
57142
|
+
*/
|
|
57143
|
+
content?: object;
|
|
57144
|
+
/**
|
|
57145
|
+
*
|
|
57146
|
+
* @type {string}
|
|
57147
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
57148
|
+
*/
|
|
57149
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
57150
|
+
}
|
|
57151
|
+
|
|
57152
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
57153
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
57154
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
57155
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
57156
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
57157
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
57158
|
+
readonly LOCALE: "LOCALE";
|
|
57159
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
57160
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
57161
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
57162
|
+
readonly WEEK_START: "WEEK_START";
|
|
57163
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
57164
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
57165
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
57166
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
57167
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
57168
|
+
readonly ALERT: "ALERT";
|
|
57169
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
57170
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
57171
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
57172
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
57173
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
57174
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
57175
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
57176
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
57177
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
57178
|
+
};
|
|
57179
|
+
|
|
57180
|
+
export declare type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
57181
|
+
|
|
56601
57182
|
/**
|
|
56602
57183
|
*
|
|
56603
57184
|
* @export
|
|
@@ -56638,10 +57219,10 @@ export declare interface JsonApiUserSettingOut {
|
|
|
56638
57219
|
id: string;
|
|
56639
57220
|
/**
|
|
56640
57221
|
*
|
|
56641
|
-
* @type {
|
|
57222
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
56642
57223
|
* @memberof JsonApiUserSettingOut
|
|
56643
57224
|
*/
|
|
56644
|
-
attributes?:
|
|
57225
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
56645
57226
|
}
|
|
56646
57227
|
|
|
56647
57228
|
/**
|
|
@@ -56716,10 +57297,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
56716
57297
|
id: string;
|
|
56717
57298
|
/**
|
|
56718
57299
|
*
|
|
56719
|
-
* @type {
|
|
57300
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
56720
57301
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
56721
57302
|
*/
|
|
56722
|
-
attributes?:
|
|
57303
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
56723
57304
|
/**
|
|
56724
57305
|
*
|
|
56725
57306
|
* @type {ObjectLinks}
|
|
@@ -56761,10 +57342,10 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
56761
57342
|
id: string;
|
|
56762
57343
|
/**
|
|
56763
57344
|
*
|
|
56764
|
-
* @type {
|
|
57345
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
56765
57346
|
* @memberof JsonApiVisualizationObjectIn
|
|
56766
57347
|
*/
|
|
56767
|
-
attributes:
|
|
57348
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
56768
57349
|
}
|
|
56769
57350
|
|
|
56770
57351
|
/**
|
|
@@ -57256,10 +57837,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
57256
57837
|
id?: string;
|
|
57257
57838
|
/**
|
|
57258
57839
|
*
|
|
57259
|
-
* @type {
|
|
57840
|
+
* @type {JsonApiAnalyticalDashboardPostOptionalIdAttributes}
|
|
57260
57841
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
57261
57842
|
*/
|
|
57262
|
-
attributes:
|
|
57843
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
57263
57844
|
}
|
|
57264
57845
|
|
|
57265
57846
|
/**
|
|
@@ -58469,10 +59050,10 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
58469
59050
|
id: string;
|
|
58470
59051
|
/**
|
|
58471
59052
|
*
|
|
58472
|
-
* @type {
|
|
59053
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58473
59054
|
* @memberof JsonApiWorkspaceSettingIn
|
|
58474
59055
|
*/
|
|
58475
|
-
attributes?:
|
|
59056
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58476
59057
|
}
|
|
58477
59058
|
|
|
58478
59059
|
/**
|
|
@@ -58521,10 +59102,10 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
58521
59102
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
58522
59103
|
/**
|
|
58523
59104
|
*
|
|
58524
|
-
* @type {
|
|
59105
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58525
59106
|
* @memberof JsonApiWorkspaceSettingOut
|
|
58526
59107
|
*/
|
|
58527
|
-
attributes?:
|
|
59108
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58528
59109
|
}
|
|
58529
59110
|
|
|
58530
59111
|
/**
|
|
@@ -58605,10 +59186,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
58605
59186
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
58606
59187
|
/**
|
|
58607
59188
|
*
|
|
58608
|
-
* @type {
|
|
59189
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58609
59190
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
58610
59191
|
*/
|
|
58611
|
-
attributes?:
|
|
59192
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58612
59193
|
/**
|
|
58613
59194
|
*
|
|
58614
59195
|
* @type {ObjectLinks}
|
|
@@ -58643,10 +59224,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
58643
59224
|
id: string;
|
|
58644
59225
|
/**
|
|
58645
59226
|
*
|
|
58646
|
-
* @type {
|
|
59227
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58647
59228
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
58648
59229
|
*/
|
|
58649
|
-
attributes?:
|
|
59230
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58650
59231
|
}
|
|
58651
59232
|
|
|
58652
59233
|
/**
|
|
@@ -58689,10 +59270,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
58689
59270
|
id?: string;
|
|
58690
59271
|
/**
|
|
58691
59272
|
*
|
|
58692
|
-
* @type {
|
|
59273
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58693
59274
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
58694
59275
|
*/
|
|
58695
|
-
attributes?:
|
|
59276
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58696
59277
|
}
|
|
58697
59278
|
|
|
58698
59279
|
/**
|
|
@@ -67218,6 +67799,14 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
67218
67799
|
* @memberof OrganizationModelControllerApi
|
|
67219
67800
|
*/
|
|
67220
67801
|
getAllEntitiesLlmEndpoints(requestParameters?: OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiLlmEndpointOutList, any>>;
|
|
67802
|
+
/**
|
|
67803
|
+
*
|
|
67804
|
+
* @param {OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
67805
|
+
* @param {*} [options] Override http request option.
|
|
67806
|
+
* @throws {RequiredError}
|
|
67807
|
+
* @memberof OrganizationModelControllerApi
|
|
67808
|
+
*/
|
|
67809
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters?: OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelIdentifierOutList, any>>;
|
|
67221
67810
|
/**
|
|
67222
67811
|
*
|
|
67223
67812
|
* @summary Get all Notification Channel entities
|
|
@@ -67362,6 +67951,14 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
67362
67951
|
* @memberof OrganizationModelControllerApi
|
|
67363
67952
|
*/
|
|
67364
67953
|
getEntityLlmEndpoints(requestParameters: OrganizationModelControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiLlmEndpointOutDocument, any>>;
|
|
67954
|
+
/**
|
|
67955
|
+
*
|
|
67956
|
+
* @param {OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
67957
|
+
* @param {*} [options] Override http request option.
|
|
67958
|
+
* @throws {RequiredError}
|
|
67959
|
+
* @memberof OrganizationModelControllerApi
|
|
67960
|
+
*/
|
|
67961
|
+
getEntityNotificationChannelIdentifiers(requestParameters: OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<JsonApiNotificationChannelIdentifierOutDocument, any>>;
|
|
67365
67962
|
/**
|
|
67366
67963
|
*
|
|
67367
67964
|
* @summary Get Notification Channel entity
|
|
@@ -67999,6 +68596,17 @@ export declare const OrganizationModelControllerApiAxiosParamCreator: (configura
|
|
|
67999
68596
|
* @throws {RequiredError}
|
|
68000
68597
|
*/
|
|
68001
68598
|
getAllEntitiesLlmEndpoints: (filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
68599
|
+
/**
|
|
68600
|
+
*
|
|
68601
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
68602
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
68603
|
+
* @param {number} [size] The size of the page to be returned
|
|
68604
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
68605
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
68606
|
+
* @param {*} [options] Override http request option.
|
|
68607
|
+
* @throws {RequiredError}
|
|
68608
|
+
*/
|
|
68609
|
+
getAllEntitiesNotificationChannelIdentifiers: (filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
68002
68610
|
/**
|
|
68003
68611
|
*
|
|
68004
68612
|
* @summary Get all Notification Channel entities
|
|
@@ -68169,6 +68777,14 @@ export declare const OrganizationModelControllerApiAxiosParamCreator: (configura
|
|
|
68169
68777
|
* @throws {RequiredError}
|
|
68170
68778
|
*/
|
|
68171
68779
|
getEntityLlmEndpoints: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
68780
|
+
/**
|
|
68781
|
+
*
|
|
68782
|
+
* @param {string} id
|
|
68783
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
68784
|
+
* @param {*} [options] Override http request option.
|
|
68785
|
+
* @throws {RequiredError}
|
|
68786
|
+
*/
|
|
68787
|
+
getEntityNotificationChannelIdentifiers: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<MetadataRequestArgs>;
|
|
68172
68788
|
/**
|
|
68173
68789
|
*
|
|
68174
68790
|
* @summary Get Notification Channel entity
|
|
@@ -69260,6 +69876,13 @@ export declare const OrganizationModelControllerApiFactory: (configuration?: Met
|
|
|
69260
69876
|
* @throws {RequiredError}
|
|
69261
69877
|
*/
|
|
69262
69878
|
getAllEntitiesLlmEndpoints(requestParameters: OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
69879
|
+
/**
|
|
69880
|
+
*
|
|
69881
|
+
* @param {OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
69882
|
+
* @param {*} [options] Override http request option.
|
|
69883
|
+
* @throws {RequiredError}
|
|
69884
|
+
*/
|
|
69885
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters: OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutList>;
|
|
69263
69886
|
/**
|
|
69264
69887
|
*
|
|
69265
69888
|
* @summary Get all Notification Channel entities
|
|
@@ -69388,6 +70011,13 @@ export declare const OrganizationModelControllerApiFactory: (configuration?: Met
|
|
|
69388
70011
|
* @throws {RequiredError}
|
|
69389
70012
|
*/
|
|
69390
70013
|
getEntityLlmEndpoints(requestParameters: OrganizationModelControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
70014
|
+
/**
|
|
70015
|
+
*
|
|
70016
|
+
* @param {OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
70017
|
+
* @param {*} [options] Override http request option.
|
|
70018
|
+
* @throws {RequiredError}
|
|
70019
|
+
*/
|
|
70020
|
+
getEntityNotificationChannelIdentifiers(requestParameters: OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>;
|
|
69391
70021
|
/**
|
|
69392
70022
|
*
|
|
69393
70023
|
* @summary Get Notification Channel entity
|
|
@@ -69992,6 +70622,17 @@ export declare const OrganizationModelControllerApiFp: (configuration?: Metadata
|
|
|
69992
70622
|
* @throws {RequiredError}
|
|
69993
70623
|
*/
|
|
69994
70624
|
getAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutList>>;
|
|
70625
|
+
/**
|
|
70626
|
+
*
|
|
70627
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
70628
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
70629
|
+
* @param {number} [size] The size of the page to be returned
|
|
70630
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
70631
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
70632
|
+
* @param {*} [options] Override http request option.
|
|
70633
|
+
* @throws {RequiredError}
|
|
70634
|
+
*/
|
|
70635
|
+
getAllEntitiesNotificationChannelIdentifiers(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelIdentifierOutList>>;
|
|
69995
70636
|
/**
|
|
69996
70637
|
*
|
|
69997
70638
|
* @summary Get all Notification Channel entities
|
|
@@ -70162,6 +70803,14 @@ export declare const OrganizationModelControllerApiFp: (configuration?: Metadata
|
|
|
70162
70803
|
* @throws {RequiredError}
|
|
70163
70804
|
*/
|
|
70164
70805
|
getEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutDocument>>;
|
|
70806
|
+
/**
|
|
70807
|
+
*
|
|
70808
|
+
* @param {string} id
|
|
70809
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
70810
|
+
* @param {*} [options] Override http request option.
|
|
70811
|
+
* @throws {RequiredError}
|
|
70812
|
+
*/
|
|
70813
|
+
getEntityNotificationChannelIdentifiers(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>>;
|
|
70165
70814
|
/**
|
|
70166
70815
|
*
|
|
70167
70816
|
* @summary Get Notification Channel entity
|
|
@@ -70839,6 +71488,44 @@ export declare interface OrganizationModelControllerApiGetAllEntitiesLlmEndpoint
|
|
|
70839
71488
|
readonly metaInclude?: Array<"page" | "all" | "ALL">;
|
|
70840
71489
|
}
|
|
70841
71490
|
|
|
71491
|
+
/**
|
|
71492
|
+
* Request parameters for getAllEntitiesNotificationChannelIdentifiers operation in OrganizationModelControllerApi.
|
|
71493
|
+
* @export
|
|
71494
|
+
* @interface OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest
|
|
71495
|
+
*/
|
|
71496
|
+
export declare interface OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest {
|
|
71497
|
+
/**
|
|
71498
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
71499
|
+
* @type {string}
|
|
71500
|
+
* @memberof OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiers
|
|
71501
|
+
*/
|
|
71502
|
+
readonly filter?: string;
|
|
71503
|
+
/**
|
|
71504
|
+
* Zero-based page index (0..N)
|
|
71505
|
+
* @type {number}
|
|
71506
|
+
* @memberof OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiers
|
|
71507
|
+
*/
|
|
71508
|
+
readonly page?: number;
|
|
71509
|
+
/**
|
|
71510
|
+
* The size of the page to be returned
|
|
71511
|
+
* @type {number}
|
|
71512
|
+
* @memberof OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiers
|
|
71513
|
+
*/
|
|
71514
|
+
readonly size?: number;
|
|
71515
|
+
/**
|
|
71516
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
71517
|
+
* @type {Array<string>}
|
|
71518
|
+
* @memberof OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiers
|
|
71519
|
+
*/
|
|
71520
|
+
readonly sort?: Array<string>;
|
|
71521
|
+
/**
|
|
71522
|
+
* Include Meta objects.
|
|
71523
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
71524
|
+
* @memberof OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiers
|
|
71525
|
+
*/
|
|
71526
|
+
readonly metaInclude?: Array<"page" | "all" | "ALL">;
|
|
71527
|
+
}
|
|
71528
|
+
|
|
70842
71529
|
/**
|
|
70843
71530
|
* Request parameters for getAllEntitiesNotificationChannels operation in OrganizationModelControllerApi.
|
|
70844
71531
|
* @export
|
|
@@ -71315,6 +72002,26 @@ export declare interface OrganizationModelControllerApiGetEntityLlmEndpointsRequ
|
|
|
71315
72002
|
readonly filter?: string;
|
|
71316
72003
|
}
|
|
71317
72004
|
|
|
72005
|
+
/**
|
|
72006
|
+
* Request parameters for getEntityNotificationChannelIdentifiers operation in OrganizationModelControllerApi.
|
|
72007
|
+
* @export
|
|
72008
|
+
* @interface OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest
|
|
72009
|
+
*/
|
|
72010
|
+
export declare interface OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest {
|
|
72011
|
+
/**
|
|
72012
|
+
*
|
|
72013
|
+
* @type {string}
|
|
72014
|
+
* @memberof OrganizationModelControllerApiGetEntityNotificationChannelIdentifiers
|
|
72015
|
+
*/
|
|
72016
|
+
readonly id: string;
|
|
72017
|
+
/**
|
|
72018
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
72019
|
+
* @type {string}
|
|
72020
|
+
* @memberof OrganizationModelControllerApiGetEntityNotificationChannelIdentifiers
|
|
72021
|
+
*/
|
|
72022
|
+
readonly filter?: string;
|
|
72023
|
+
}
|
|
72024
|
+
|
|
71318
72025
|
/**
|
|
71319
72026
|
* Request parameters for getEntityNotificationChannels operation in OrganizationModelControllerApi.
|
|
71320
72027
|
* @export
|
|
@@ -71799,6 +72506,14 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
71799
72506
|
* @memberof OrganizationModelControllerApiInterface
|
|
71800
72507
|
*/
|
|
71801
72508
|
getAllEntitiesLlmEndpoints(requestParameters: OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
72509
|
+
/**
|
|
72510
|
+
*
|
|
72511
|
+
* @param {OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
72512
|
+
* @param {*} [options] Override http request option.
|
|
72513
|
+
* @throws {RequiredError}
|
|
72514
|
+
* @memberof OrganizationModelControllerApiInterface
|
|
72515
|
+
*/
|
|
72516
|
+
getAllEntitiesNotificationChannelIdentifiers(requestParameters: OrganizationModelControllerApiGetAllEntitiesNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutList>;
|
|
71802
72517
|
/**
|
|
71803
72518
|
*
|
|
71804
72519
|
* @summary Get all Notification Channel entities
|
|
@@ -71943,6 +72658,14 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
71943
72658
|
* @memberof OrganizationModelControllerApiInterface
|
|
71944
72659
|
*/
|
|
71945
72660
|
getEntityLlmEndpoints(requestParameters: OrganizationModelControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
72661
|
+
/**
|
|
72662
|
+
*
|
|
72663
|
+
* @param {OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest} requestParameters Request parameters.
|
|
72664
|
+
* @param {*} [options] Override http request option.
|
|
72665
|
+
* @throws {RequiredError}
|
|
72666
|
+
* @memberof OrganizationModelControllerApiInterface
|
|
72667
|
+
*/
|
|
72668
|
+
getEntityNotificationChannelIdentifiers(requestParameters: OrganizationModelControllerApiGetEntityNotificationChannelIdentifiersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelIdentifierOutDocument>;
|
|
71946
72669
|
/**
|
|
71947
72670
|
*
|
|
71948
72671
|
* @summary Get Notification Channel entity
|
|
@@ -76085,6 +76808,26 @@ export declare interface RunningSection {
|
|
|
76085
76808
|
right?: string | null;
|
|
76086
76809
|
}
|
|
76087
76810
|
|
|
76811
|
+
/**
|
|
76812
|
+
* Created and saved visualization IDs.
|
|
76813
|
+
* @export
|
|
76814
|
+
* @interface SavedVisualization
|
|
76815
|
+
*/
|
|
76816
|
+
export declare interface SavedVisualization {
|
|
76817
|
+
/**
|
|
76818
|
+
* Created visualization ID.
|
|
76819
|
+
* @type {string}
|
|
76820
|
+
* @memberof SavedVisualization
|
|
76821
|
+
*/
|
|
76822
|
+
createdVisualizationId: string;
|
|
76823
|
+
/**
|
|
76824
|
+
* Saved visualization ID.
|
|
76825
|
+
* @type {string}
|
|
76826
|
+
* @memberof SavedVisualization
|
|
76827
|
+
*/
|
|
76828
|
+
savedVisualizationId: string;
|
|
76829
|
+
}
|
|
76830
|
+
|
|
76088
76831
|
/**
|
|
76089
76832
|
* A SQL query result column.
|
|
76090
76833
|
* @export
|
|
@@ -76771,7 +77514,7 @@ export declare function setGlobalAuthorizationToken(token: string | undefined):
|
|
|
76771
77514
|
*/
|
|
76772
77515
|
export declare interface Settings {
|
|
76773
77516
|
/**
|
|
76774
|
-
* Include export info sheet in the exported file. (XLSX)
|
|
77517
|
+
* Include export info sheet in the exported file. Works only with `visualizationObject`. (XLSX)
|
|
76775
77518
|
* @type {boolean}
|
|
76776
77519
|
* @memberof Settings
|
|
76777
77520
|
*/
|
|
@@ -76930,7 +77673,7 @@ export declare interface SlidesExportRequest {
|
|
|
76930
77673
|
*/
|
|
76931
77674
|
visualizationIds?: Array<string>;
|
|
76932
77675
|
/**
|
|
76933
|
-
*
|
|
77676
|
+
* Free-form JSON object
|
|
76934
77677
|
* @type {object}
|
|
76935
77678
|
* @memberof SlidesExportRequest
|
|
76936
77679
|
*/
|