@gooddata/api-client-tiger 11.8.0-alpha.1 → 11.8.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +905 -853
- package/esm/generated/afm-rest-api/api.d.ts +36 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +3 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +87 -3
- package/esm/generated/metadata-json-api/api.d.ts +772 -752
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +61 -55
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9021 -8956
- package/esm/generated/scan-json-api/api.d.ts +0 -8
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +0 -10
- package/package.json +4 -4
|
@@ -9263,6 +9263,7 @@ export declare const AttributeHeaderAttributeHeaderValueTypeEnum: {
|
|
|
9263
9263
|
readonly GEO: "GEO";
|
|
9264
9264
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
9265
9265
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
9266
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
9266
9267
|
readonly IMAGE: "IMAGE";
|
|
9267
9268
|
};
|
|
9268
9269
|
|
|
@@ -14046,6 +14047,34 @@ export declare interface CacheUsageData {
|
|
|
14046
14047
|
};
|
|
14047
14048
|
}
|
|
14048
14049
|
|
|
14050
|
+
/**
|
|
14051
|
+
* Change analysis specification.
|
|
14052
|
+
*/
|
|
14053
|
+
declare interface ChangeAnalysisParams {
|
|
14054
|
+
measure: AfmMeasureItem;
|
|
14055
|
+
dateAttribute: AfmAttributeItem;
|
|
14056
|
+
/**
|
|
14057
|
+
* The reference time period
|
|
14058
|
+
*/
|
|
14059
|
+
referencePeriod: string;
|
|
14060
|
+
/**
|
|
14061
|
+
* The analyzed time period
|
|
14062
|
+
*/
|
|
14063
|
+
analyzedPeriod: string;
|
|
14064
|
+
/**
|
|
14065
|
+
* Attributes to analyze for significant changes
|
|
14066
|
+
*/
|
|
14067
|
+
attributes: Array<AfmAttributeItem>;
|
|
14068
|
+
/**
|
|
14069
|
+
* Optional filters to apply
|
|
14070
|
+
*/
|
|
14071
|
+
filters: Array<ChangeAnalysisRequestFiltersInner>;
|
|
14072
|
+
/**
|
|
14073
|
+
* Whether to use smart attribute selection
|
|
14074
|
+
*/
|
|
14075
|
+
useSmartAttributeSelection: boolean;
|
|
14076
|
+
}
|
|
14077
|
+
|
|
14049
14078
|
/**
|
|
14050
14079
|
* Request for change analysis computation
|
|
14051
14080
|
*/
|
|
@@ -14131,6 +14160,7 @@ export declare interface ChatHistoryInteraction {
|
|
|
14131
14160
|
errorResponse?: string;
|
|
14132
14161
|
foundObjects?: FoundObjects;
|
|
14133
14162
|
createdVisualizations?: CreatedVisualizations;
|
|
14163
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
14134
14164
|
/**
|
|
14135
14165
|
* User feedback.
|
|
14136
14166
|
*/
|
|
@@ -14167,6 +14197,10 @@ export declare interface ChatHistoryRequest {
|
|
|
14167
14197
|
* Response state indicating the outcome of the AI interaction.
|
|
14168
14198
|
*/
|
|
14169
14199
|
responseState?: ChatHistoryRequestResponseStateEnum;
|
|
14200
|
+
/**
|
|
14201
|
+
* User text feedback for the interaction.
|
|
14202
|
+
*/
|
|
14203
|
+
userTextFeedback?: string;
|
|
14170
14204
|
}
|
|
14171
14205
|
|
|
14172
14206
|
export declare const ChatHistoryRequestResponseStateEnum: {
|
|
@@ -14252,6 +14286,7 @@ export declare interface ChatResult {
|
|
|
14252
14286
|
errorResponse?: string;
|
|
14253
14287
|
foundObjects?: FoundObjects;
|
|
14254
14288
|
createdVisualizations?: CreatedVisualizations;
|
|
14289
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
14255
14290
|
/**
|
|
14256
14291
|
* Chat History thread suffix appended to ID generated by backend. Enables more chat windows.
|
|
14257
14292
|
*/
|
|
@@ -14339,6 +14374,7 @@ export declare const ColumnOverrideLabelTypeEnum: {
|
|
|
14339
14374
|
readonly GEO: "GEO";
|
|
14340
14375
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
14341
14376
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
14377
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
14342
14378
|
readonly IMAGE: "IMAGE";
|
|
14343
14379
|
};
|
|
14344
14380
|
|
|
@@ -20283,10 +20319,6 @@ export declare interface DeclarativeColumn {
|
|
|
20283
20319
|
* Referenced table (Foreign key)
|
|
20284
20320
|
*/
|
|
20285
20321
|
referencedTableColumn?: string;
|
|
20286
|
-
/**
|
|
20287
|
-
* Column description/comment from database
|
|
20288
|
-
*/
|
|
20289
|
-
description?: string;
|
|
20290
20322
|
}
|
|
20291
20323
|
|
|
20292
20324
|
export declare const DeclarativeColumnDataTypeEnum: {
|
|
@@ -20932,6 +20964,7 @@ export declare interface DeclarativeLabel {
|
|
|
20932
20964
|
* Determines if the label is hidden from AI features.
|
|
20933
20965
|
*/
|
|
20934
20966
|
isHidden?: boolean;
|
|
20967
|
+
geoAreaConfig?: GeoAreaConfig;
|
|
20935
20968
|
}
|
|
20936
20969
|
|
|
20937
20970
|
export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
|
|
@@ -20952,6 +20985,7 @@ export declare const DeclarativeLabelValueTypeEnum: {
|
|
|
20952
20985
|
readonly GEO: "GEO";
|
|
20953
20986
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
20954
20987
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
20988
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
20955
20989
|
readonly IMAGE: "IMAGE";
|
|
20956
20990
|
};
|
|
20957
20991
|
|
|
@@ -21376,6 +21410,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
21376
21410
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
21377
21411
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
21378
21412
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
21413
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
21379
21414
|
};
|
|
21380
21415
|
|
|
21381
21416
|
export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
@@ -43062,6 +43097,18 @@ export declare interface GenerateLogicalDataModelApiInterface {
|
|
|
43062
43097
|
generateLogicalModel(requestParameters: GenerateLogicalDataModelApiGenerateLogicalModelRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeModel>;
|
|
43063
43098
|
}
|
|
43064
43099
|
|
|
43100
|
+
/**
|
|
43101
|
+
* Configuration specific to geo area labels.
|
|
43102
|
+
*/
|
|
43103
|
+
export declare interface GeoAreaConfig {
|
|
43104
|
+
collection: GeoCollection;
|
|
43105
|
+
}
|
|
43106
|
+
|
|
43107
|
+
export declare interface GeoCollection {
|
|
43108
|
+
id: string;
|
|
43109
|
+
matchingProperty?: string;
|
|
43110
|
+
}
|
|
43111
|
+
|
|
43065
43112
|
declare const GetQualityIssuesResponseStatusEnum: {
|
|
43066
43113
|
readonly RUNNING: "RUNNING";
|
|
43067
43114
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -45022,7 +45069,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
45022
45069
|
export declare interface JsonApiAggregatedFactOutList {
|
|
45023
45070
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
45024
45071
|
links?: ListLinks;
|
|
45025
|
-
meta?:
|
|
45072
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45026
45073
|
/**
|
|
45027
45074
|
* Included resources
|
|
45028
45075
|
*/
|
|
@@ -45077,7 +45124,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
45077
45124
|
* API identifier of an object
|
|
45078
45125
|
*/
|
|
45079
45126
|
id: string;
|
|
45080
|
-
attributes:
|
|
45127
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
45081
45128
|
}
|
|
45082
45129
|
|
|
45083
45130
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -45154,7 +45201,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
45154
45201
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
45155
45202
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
45156
45203
|
links?: ListLinks;
|
|
45157
|
-
meta?:
|
|
45204
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45158
45205
|
/**
|
|
45159
45206
|
* Included resources
|
|
45160
45207
|
*/
|
|
@@ -45300,18 +45347,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
45300
45347
|
* API identifier of an object
|
|
45301
45348
|
*/
|
|
45302
45349
|
id?: string;
|
|
45303
|
-
attributes:
|
|
45304
|
-
}
|
|
45305
|
-
|
|
45306
|
-
export declare interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
45307
|
-
title?: string;
|
|
45308
|
-
description?: string;
|
|
45309
|
-
tags?: Array<string>;
|
|
45310
|
-
areRelationsValid?: boolean;
|
|
45311
|
-
/**
|
|
45312
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45313
|
-
*/
|
|
45314
|
-
content: object;
|
|
45350
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
45315
45351
|
}
|
|
45316
45352
|
|
|
45317
45353
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -45381,7 +45417,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
45381
45417
|
export declare interface JsonApiApiTokenOutList {
|
|
45382
45418
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
45383
45419
|
links?: ListLinks;
|
|
45384
|
-
meta?:
|
|
45420
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45385
45421
|
}
|
|
45386
45422
|
|
|
45387
45423
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -45421,18 +45457,7 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
45421
45457
|
* API identifier of an object
|
|
45422
45458
|
*/
|
|
45423
45459
|
id: string;
|
|
45424
|
-
attributes?:
|
|
45425
|
-
}
|
|
45426
|
-
|
|
45427
|
-
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
45428
|
-
title?: string;
|
|
45429
|
-
description?: string;
|
|
45430
|
-
tags?: Array<string>;
|
|
45431
|
-
areRelationsValid?: boolean;
|
|
45432
|
-
/**
|
|
45433
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45434
|
-
*/
|
|
45435
|
-
content?: object;
|
|
45460
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
45436
45461
|
}
|
|
45437
45462
|
|
|
45438
45463
|
export declare interface JsonApiAttributeHierarchyInDocument {
|
|
@@ -45509,7 +45534,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
45509
45534
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
45510
45535
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
45511
45536
|
links?: ListLinks;
|
|
45512
|
-
meta?:
|
|
45537
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45513
45538
|
/**
|
|
45514
45539
|
* Included resources
|
|
45515
45540
|
*/
|
|
@@ -45561,7 +45586,18 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
45561
45586
|
* API identifier of an object
|
|
45562
45587
|
*/
|
|
45563
45588
|
id: string;
|
|
45564
|
-
attributes?:
|
|
45589
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
45590
|
+
}
|
|
45591
|
+
|
|
45592
|
+
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
45593
|
+
title?: string;
|
|
45594
|
+
description?: string;
|
|
45595
|
+
tags?: Array<string>;
|
|
45596
|
+
areRelationsValid?: boolean;
|
|
45597
|
+
/**
|
|
45598
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45599
|
+
*/
|
|
45600
|
+
content?: object;
|
|
45565
45601
|
}
|
|
45566
45602
|
|
|
45567
45603
|
export declare interface JsonApiAttributeHierarchyPatchDocument {
|
|
@@ -45678,7 +45714,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
45678
45714
|
export declare interface JsonApiAttributeOutList {
|
|
45679
45715
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
45680
45716
|
links?: ListLinks;
|
|
45681
|
-
meta?:
|
|
45717
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
45682
45718
|
/**
|
|
45683
45719
|
* Included resources
|
|
45684
45720
|
*/
|
|
@@ -45746,164 +45782,14 @@ export declare interface JsonApiAutomationIn {
|
|
|
45746
45782
|
* API identifier of an object
|
|
45747
45783
|
*/
|
|
45748
45784
|
id: string;
|
|
45749
|
-
attributes?:
|
|
45750
|
-
relationships?:
|
|
45751
|
-
}
|
|
45752
|
-
|
|
45753
|
-
export declare interface JsonApiAutomationInAttributes {
|
|
45754
|
-
title?: string;
|
|
45755
|
-
description?: string;
|
|
45756
|
-
tags?: Array<string>;
|
|
45757
|
-
areRelationsValid?: boolean;
|
|
45758
|
-
/**
|
|
45759
|
-
* Additional details to be included in the automated message.
|
|
45760
|
-
*/
|
|
45761
|
-
details?: object;
|
|
45762
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
45763
|
-
/**
|
|
45764
|
-
* Current state of the automation.
|
|
45765
|
-
*/
|
|
45766
|
-
state?: JsonApiAutomationInAttributesStateEnum;
|
|
45767
|
-
/**
|
|
45768
|
-
* Specify automation evaluation mode.
|
|
45769
|
-
*/
|
|
45770
|
-
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
45771
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
45772
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
45773
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
45774
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
45775
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
45776
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
45777
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
45778
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
45779
|
-
/**
|
|
45780
|
-
* External recipients of the automation action results.
|
|
45781
|
-
*/
|
|
45782
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
45783
|
-
}
|
|
45784
|
-
|
|
45785
|
-
export declare interface JsonApiAutomationInAttributesAlert {
|
|
45786
|
-
execution: AlertAfm;
|
|
45787
|
-
condition: AlertCondition;
|
|
45788
|
-
/**
|
|
45789
|
-
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
45790
|
-
*/
|
|
45791
|
-
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
45792
|
-
}
|
|
45793
|
-
|
|
45794
|
-
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
45795
|
-
readonly ALWAYS: "ALWAYS";
|
|
45796
|
-
readonly ONCE: "ONCE";
|
|
45797
|
-
};
|
|
45798
|
-
|
|
45799
|
-
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
45800
|
-
|
|
45801
|
-
export declare interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
45802
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
45803
|
-
}
|
|
45804
|
-
|
|
45805
|
-
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
45806
|
-
readonly SHARED: "SHARED";
|
|
45807
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
45808
|
-
};
|
|
45809
|
-
|
|
45810
|
-
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
45811
|
-
|
|
45812
|
-
export declare interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
45813
|
-
/**
|
|
45814
|
-
* E-mail address to send notifications from.
|
|
45815
|
-
*/
|
|
45816
|
-
email: string;
|
|
45817
|
-
}
|
|
45818
|
-
|
|
45819
|
-
export declare interface JsonApiAutomationInAttributesImageExportsInner {
|
|
45820
|
-
requestPayload: ImageExportRequest;
|
|
45821
|
-
}
|
|
45822
|
-
|
|
45823
|
-
/**
|
|
45824
|
-
* Additional information for the automation.
|
|
45825
|
-
*/
|
|
45826
|
-
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
45827
|
-
[key: string]: any;
|
|
45828
|
-
widget?: string;
|
|
45829
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
45830
|
-
}
|
|
45831
|
-
|
|
45832
|
-
export declare interface JsonApiAutomationInAttributesRawExportsInner {
|
|
45833
|
-
requestPayload: RawExportAutomationRequest;
|
|
45834
|
-
}
|
|
45835
|
-
|
|
45836
|
-
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
45837
|
-
/**
|
|
45838
|
-
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
45839
|
-
*/
|
|
45840
|
-
cron: string;
|
|
45841
|
-
/**
|
|
45842
|
-
* Human-readable description of the cron expression.
|
|
45843
|
-
*/
|
|
45844
|
-
cronDescription?: string;
|
|
45845
|
-
/**
|
|
45846
|
-
* Timezone in which the schedule is defined.
|
|
45847
|
-
*/
|
|
45848
|
-
timezone: string;
|
|
45849
|
-
/**
|
|
45850
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
45851
|
-
*/
|
|
45852
|
-
firstRun?: string;
|
|
45853
|
-
}
|
|
45854
|
-
|
|
45855
|
-
export declare interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
45856
|
-
requestPayload: SlidesExportRequest;
|
|
45857
|
-
}
|
|
45858
|
-
|
|
45859
|
-
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
45860
|
-
readonly ACTIVE: "ACTIVE";
|
|
45861
|
-
readonly PAUSED: "PAUSED";
|
|
45862
|
-
};
|
|
45863
|
-
|
|
45864
|
-
export declare type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
45865
|
-
|
|
45866
|
-
export declare interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
45867
|
-
requestPayload: TabularExportRequest;
|
|
45868
|
-
}
|
|
45869
|
-
|
|
45870
|
-
export declare interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
45871
|
-
requestPayload: VisualExportRequest;
|
|
45785
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45786
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45872
45787
|
}
|
|
45873
45788
|
|
|
45874
45789
|
export declare interface JsonApiAutomationInDocument {
|
|
45875
45790
|
data: JsonApiAutomationIn;
|
|
45876
45791
|
}
|
|
45877
45792
|
|
|
45878
|
-
export declare interface JsonApiAutomationInRelationships {
|
|
45879
|
-
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
45880
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
45881
|
-
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
45882
|
-
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
45883
|
-
}
|
|
45884
|
-
|
|
45885
|
-
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
45886
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
45887
|
-
}
|
|
45888
|
-
|
|
45889
|
-
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
45890
|
-
/**
|
|
45891
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45892
|
-
*/
|
|
45893
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
45894
|
-
}
|
|
45895
|
-
|
|
45896
|
-
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
45897
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
45898
|
-
}
|
|
45899
|
-
|
|
45900
|
-
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
45901
|
-
/**
|
|
45902
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45903
|
-
*/
|
|
45904
|
-
data: Array<JsonApiUserLinkage>;
|
|
45905
|
-
}
|
|
45906
|
-
|
|
45907
45793
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
45908
45794
|
readonly AUTOMATION: "automation";
|
|
45909
45795
|
};
|
|
@@ -45950,7 +45836,7 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45950
45836
|
* Additional details to be included in the automated message.
|
|
45951
45837
|
*/
|
|
45952
45838
|
details?: object;
|
|
45953
|
-
metadata?:
|
|
45839
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
45954
45840
|
/**
|
|
45955
45841
|
* Current state of the automation.
|
|
45956
45842
|
*/
|
|
@@ -45959,18 +45845,18 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
45959
45845
|
* Specify automation evaluation mode.
|
|
45960
45846
|
*/
|
|
45961
45847
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
45962
|
-
schedule?:
|
|
45963
|
-
alert?:
|
|
45964
|
-
tabularExports?: Array<
|
|
45965
|
-
visualExports?: Array<
|
|
45966
|
-
imageExports?: Array<
|
|
45967
|
-
rawExports?: Array<
|
|
45968
|
-
slidesExports?: Array<
|
|
45969
|
-
dashboardTabularExports?: Array<
|
|
45848
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
45849
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
45850
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
45851
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
45852
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
45853
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
45854
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
45855
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
45970
45856
|
/**
|
|
45971
45857
|
* External recipients of the automation action results.
|
|
45972
45858
|
*/
|
|
45973
|
-
externalRecipients?: Array<
|
|
45859
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
45974
45860
|
createdAt?: string;
|
|
45975
45861
|
modifiedAt?: string;
|
|
45976
45862
|
}
|
|
@@ -46009,7 +45895,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
46009
45895
|
export declare interface JsonApiAutomationOutList {
|
|
46010
45896
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
46011
45897
|
links?: ListLinks;
|
|
46012
|
-
meta?:
|
|
45898
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46013
45899
|
/**
|
|
46014
45900
|
* Included resources
|
|
46015
45901
|
*/
|
|
@@ -46017,12 +45903,12 @@ export declare interface JsonApiAutomationOutList {
|
|
|
46017
45903
|
}
|
|
46018
45904
|
|
|
46019
45905
|
export declare interface JsonApiAutomationOutRelationships {
|
|
46020
|
-
notificationChannel?:
|
|
46021
|
-
analyticalDashboard?:
|
|
45906
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
45907
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
46022
45908
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46023
45909
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46024
|
-
exportDefinitions?:
|
|
46025
|
-
recipients?:
|
|
45910
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
45911
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
46026
45912
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
46027
45913
|
}
|
|
46028
45914
|
|
|
@@ -46072,14 +45958,164 @@ export declare interface JsonApiAutomationPatch {
|
|
|
46072
45958
|
* API identifier of an object
|
|
46073
45959
|
*/
|
|
46074
45960
|
id: string;
|
|
46075
|
-
attributes?:
|
|
46076
|
-
relationships?:
|
|
45961
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45962
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45963
|
+
}
|
|
45964
|
+
|
|
45965
|
+
export declare interface JsonApiAutomationPatchAttributes {
|
|
45966
|
+
title?: string;
|
|
45967
|
+
description?: string;
|
|
45968
|
+
tags?: Array<string>;
|
|
45969
|
+
areRelationsValid?: boolean;
|
|
45970
|
+
/**
|
|
45971
|
+
* Additional details to be included in the automated message.
|
|
45972
|
+
*/
|
|
45973
|
+
details?: object;
|
|
45974
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
45975
|
+
/**
|
|
45976
|
+
* Current state of the automation.
|
|
45977
|
+
*/
|
|
45978
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
45979
|
+
/**
|
|
45980
|
+
* Specify automation evaluation mode.
|
|
45981
|
+
*/
|
|
45982
|
+
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
45983
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
45984
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
45985
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
45986
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
45987
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
45988
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
45989
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
45990
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
45991
|
+
/**
|
|
45992
|
+
* External recipients of the automation action results.
|
|
45993
|
+
*/
|
|
45994
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
45995
|
+
}
|
|
45996
|
+
|
|
45997
|
+
export declare interface JsonApiAutomationPatchAttributesAlert {
|
|
45998
|
+
execution: AlertAfm;
|
|
45999
|
+
condition: AlertCondition;
|
|
46000
|
+
/**
|
|
46001
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
46002
|
+
*/
|
|
46003
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
46004
|
+
}
|
|
46005
|
+
|
|
46006
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
46007
|
+
readonly ALWAYS: "ALWAYS";
|
|
46008
|
+
readonly ONCE: "ONCE";
|
|
46009
|
+
};
|
|
46010
|
+
|
|
46011
|
+
export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
46012
|
+
|
|
46013
|
+
export declare interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
46014
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
46015
|
+
}
|
|
46016
|
+
|
|
46017
|
+
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
46018
|
+
readonly SHARED: "SHARED";
|
|
46019
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
46020
|
+
};
|
|
46021
|
+
|
|
46022
|
+
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
46023
|
+
|
|
46024
|
+
export declare interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
46025
|
+
/**
|
|
46026
|
+
* E-mail address to send notifications from.
|
|
46027
|
+
*/
|
|
46028
|
+
email: string;
|
|
46029
|
+
}
|
|
46030
|
+
|
|
46031
|
+
export declare interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
46032
|
+
requestPayload: ImageExportRequest;
|
|
46033
|
+
}
|
|
46034
|
+
|
|
46035
|
+
/**
|
|
46036
|
+
* Additional information for the automation.
|
|
46037
|
+
*/
|
|
46038
|
+
export declare interface JsonApiAutomationPatchAttributesMetadata {
|
|
46039
|
+
[key: string]: any;
|
|
46040
|
+
widget?: string;
|
|
46041
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
46042
|
+
}
|
|
46043
|
+
|
|
46044
|
+
export declare interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
46045
|
+
requestPayload: RawExportAutomationRequest;
|
|
46046
|
+
}
|
|
46047
|
+
|
|
46048
|
+
export declare interface JsonApiAutomationPatchAttributesSchedule {
|
|
46049
|
+
/**
|
|
46050
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
46051
|
+
*/
|
|
46052
|
+
cron: string;
|
|
46053
|
+
/**
|
|
46054
|
+
* Human-readable description of the cron expression.
|
|
46055
|
+
*/
|
|
46056
|
+
cronDescription?: string;
|
|
46057
|
+
/**
|
|
46058
|
+
* Timezone in which the schedule is defined.
|
|
46059
|
+
*/
|
|
46060
|
+
timezone: string;
|
|
46061
|
+
/**
|
|
46062
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
46063
|
+
*/
|
|
46064
|
+
firstRun?: string;
|
|
46065
|
+
}
|
|
46066
|
+
|
|
46067
|
+
export declare interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
46068
|
+
requestPayload: SlidesExportRequest;
|
|
46069
|
+
}
|
|
46070
|
+
|
|
46071
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
46072
|
+
readonly ACTIVE: "ACTIVE";
|
|
46073
|
+
readonly PAUSED: "PAUSED";
|
|
46074
|
+
};
|
|
46075
|
+
|
|
46076
|
+
export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
46077
|
+
|
|
46078
|
+
export declare interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
46079
|
+
requestPayload: TabularExportRequest;
|
|
46080
|
+
}
|
|
46081
|
+
|
|
46082
|
+
export declare interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
46083
|
+
requestPayload: VisualExportRequest;
|
|
46077
46084
|
}
|
|
46078
46085
|
|
|
46079
46086
|
export declare interface JsonApiAutomationPatchDocument {
|
|
46080
46087
|
data: JsonApiAutomationPatch;
|
|
46081
46088
|
}
|
|
46082
46089
|
|
|
46090
|
+
export declare interface JsonApiAutomationPatchRelationships {
|
|
46091
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
46092
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
46093
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
46094
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
46095
|
+
}
|
|
46096
|
+
|
|
46097
|
+
export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
46098
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
46099
|
+
}
|
|
46100
|
+
|
|
46101
|
+
export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
46102
|
+
/**
|
|
46103
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46104
|
+
*/
|
|
46105
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
46106
|
+
}
|
|
46107
|
+
|
|
46108
|
+
export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
46109
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
46110
|
+
}
|
|
46111
|
+
|
|
46112
|
+
export declare interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
46113
|
+
/**
|
|
46114
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46115
|
+
*/
|
|
46116
|
+
data: Array<JsonApiUserLinkage>;
|
|
46117
|
+
}
|
|
46118
|
+
|
|
46083
46119
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
46084
46120
|
readonly AUTOMATION: "automation";
|
|
46085
46121
|
};
|
|
@@ -46225,11 +46261,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
46225
46261
|
export declare interface JsonApiColorPaletteOutList {
|
|
46226
46262
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
46227
46263
|
links?: ListLinks;
|
|
46228
|
-
meta?:
|
|
46229
|
-
}
|
|
46230
|
-
|
|
46231
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
46232
|
-
page?: PageMetadata;
|
|
46264
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46233
46265
|
}
|
|
46234
46266
|
|
|
46235
46267
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -46302,15 +46334,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
46302
46334
|
* API identifier of an object
|
|
46303
46335
|
*/
|
|
46304
46336
|
id: string;
|
|
46305
|
-
attributes?:
|
|
46306
|
-
}
|
|
46307
|
-
|
|
46308
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
46309
|
-
lastRotation?: string;
|
|
46310
|
-
/**
|
|
46311
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46312
|
-
*/
|
|
46313
|
-
rotationInterval?: string;
|
|
46337
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46314
46338
|
}
|
|
46315
46339
|
|
|
46316
46340
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -46335,7 +46359,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
46335
46359
|
* API identifier of an object
|
|
46336
46360
|
*/
|
|
46337
46361
|
id: string;
|
|
46338
|
-
attributes?:
|
|
46362
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46339
46363
|
}
|
|
46340
46364
|
|
|
46341
46365
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -46361,7 +46385,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
46361
46385
|
* API identifier of an object
|
|
46362
46386
|
*/
|
|
46363
46387
|
id: string;
|
|
46364
|
-
attributes?:
|
|
46388
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
46389
|
+
}
|
|
46390
|
+
|
|
46391
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
46392
|
+
lastRotation?: string;
|
|
46393
|
+
/**
|
|
46394
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
46395
|
+
*/
|
|
46396
|
+
rotationInterval?: string;
|
|
46365
46397
|
}
|
|
46366
46398
|
|
|
46367
46399
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -46429,7 +46461,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
46429
46461
|
export declare interface JsonApiCspDirectiveOutList {
|
|
46430
46462
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
46431
46463
|
links?: ListLinks;
|
|
46432
|
-
meta?:
|
|
46464
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46433
46465
|
}
|
|
46434
46466
|
|
|
46435
46467
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -46498,7 +46530,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
46498
46530
|
* API identifier of an object
|
|
46499
46531
|
*/
|
|
46500
46532
|
id: string;
|
|
46501
|
-
attributes:
|
|
46533
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46502
46534
|
}
|
|
46503
46535
|
|
|
46504
46536
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -46524,7 +46556,15 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
46524
46556
|
*/
|
|
46525
46557
|
id: string;
|
|
46526
46558
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46527
|
-
attributes:
|
|
46559
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46560
|
+
}
|
|
46561
|
+
|
|
46562
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
46563
|
+
applicationName: string;
|
|
46564
|
+
/**
|
|
46565
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46566
|
+
*/
|
|
46567
|
+
content: object;
|
|
46528
46568
|
}
|
|
46529
46569
|
|
|
46530
46570
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -46538,7 +46578,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
46538
46578
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
46539
46579
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
46540
46580
|
links?: ListLinks;
|
|
46541
|
-
meta?:
|
|
46581
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46542
46582
|
}
|
|
46543
46583
|
|
|
46544
46584
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -46557,7 +46597,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
46557
46597
|
*/
|
|
46558
46598
|
id: string;
|
|
46559
46599
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
46560
|
-
attributes:
|
|
46600
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46561
46601
|
links?: ObjectLinks;
|
|
46562
46602
|
}
|
|
46563
46603
|
|
|
@@ -46612,15 +46652,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
46612
46652
|
* API identifier of an object
|
|
46613
46653
|
*/
|
|
46614
46654
|
id?: string;
|
|
46615
|
-
attributes:
|
|
46616
|
-
}
|
|
46617
|
-
|
|
46618
|
-
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
46619
|
-
applicationName: string;
|
|
46620
|
-
/**
|
|
46621
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
46622
|
-
*/
|
|
46623
|
-
content: object;
|
|
46655
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
46624
46656
|
}
|
|
46625
46657
|
|
|
46626
46658
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -46645,7 +46677,7 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
46645
46677
|
* API identifier of an object
|
|
46646
46678
|
*/
|
|
46647
46679
|
id: string;
|
|
46648
|
-
attributes?:
|
|
46680
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46649
46681
|
}
|
|
46650
46682
|
|
|
46651
46683
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -46717,7 +46749,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
46717
46749
|
export declare interface JsonApiDashboardPluginOutList {
|
|
46718
46750
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
46719
46751
|
links?: ListLinks;
|
|
46720
|
-
meta?:
|
|
46752
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46721
46753
|
/**
|
|
46722
46754
|
* Included resources
|
|
46723
46755
|
*/
|
|
@@ -46768,7 +46800,18 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
46768
46800
|
* API identifier of an object
|
|
46769
46801
|
*/
|
|
46770
46802
|
id: string;
|
|
46771
|
-
attributes?:
|
|
46803
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46804
|
+
}
|
|
46805
|
+
|
|
46806
|
+
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
46807
|
+
title?: string;
|
|
46808
|
+
description?: string;
|
|
46809
|
+
tags?: Array<string>;
|
|
46810
|
+
areRelationsValid?: boolean;
|
|
46811
|
+
/**
|
|
46812
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46813
|
+
*/
|
|
46814
|
+
content?: object;
|
|
46772
46815
|
}
|
|
46773
46816
|
|
|
46774
46817
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -46793,18 +46836,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
46793
46836
|
* API identifier of an object
|
|
46794
46837
|
*/
|
|
46795
46838
|
id?: string;
|
|
46796
|
-
attributes?:
|
|
46797
|
-
}
|
|
46798
|
-
|
|
46799
|
-
export declare interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
46800
|
-
title?: string;
|
|
46801
|
-
description?: string;
|
|
46802
|
-
tags?: Array<string>;
|
|
46803
|
-
areRelationsValid?: boolean;
|
|
46804
|
-
/**
|
|
46805
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46806
|
-
*/
|
|
46807
|
-
content?: object;
|
|
46839
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46808
46840
|
}
|
|
46809
46841
|
|
|
46810
46842
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -46969,7 +47001,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
46969
47001
|
export declare interface JsonApiDatasetOutList {
|
|
46970
47002
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
46971
47003
|
links?: ListLinks;
|
|
46972
|
-
meta?:
|
|
47004
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
46973
47005
|
/**
|
|
46974
47006
|
* Included resources
|
|
46975
47007
|
*/
|
|
@@ -47037,7 +47069,7 @@ export declare interface JsonApiDataSourceIdentifierOut {
|
|
|
47037
47069
|
* API identifier of an object
|
|
47038
47070
|
*/
|
|
47039
47071
|
id: string;
|
|
47040
|
-
meta?:
|
|
47072
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47041
47073
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47042
47074
|
}
|
|
47043
47075
|
|
|
@@ -47089,23 +47121,9 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
47089
47121
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
47090
47122
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
47091
47123
|
links?: ListLinks;
|
|
47092
|
-
meta?:
|
|
47124
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47093
47125
|
}
|
|
47094
47126
|
|
|
47095
|
-
export declare interface JsonApiDataSourceIdentifierOutMeta {
|
|
47096
|
-
/**
|
|
47097
|
-
* List of valid permissions for a logged-in user.
|
|
47098
|
-
*/
|
|
47099
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
47100
|
-
}
|
|
47101
|
-
|
|
47102
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
47103
|
-
readonly MANAGE: "MANAGE";
|
|
47104
|
-
readonly USE: "USE";
|
|
47105
|
-
};
|
|
47106
|
-
|
|
47107
|
-
export declare type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
47108
|
-
|
|
47109
47127
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
47110
47128
|
readonly DATA_SOURCE_IDENTIFIER: "dataSourceIdentifier";
|
|
47111
47129
|
};
|
|
@@ -47121,7 +47139,7 @@ export declare interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
47121
47139
|
* API identifier of an object
|
|
47122
47140
|
*/
|
|
47123
47141
|
id: string;
|
|
47124
|
-
meta?:
|
|
47142
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47125
47143
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
47126
47144
|
links?: ObjectLinks;
|
|
47127
47145
|
}
|
|
@@ -47195,7 +47213,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
47195
47213
|
/**
|
|
47196
47214
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47197
47215
|
*/
|
|
47198
|
-
parameters?: Array<
|
|
47216
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
47199
47217
|
/**
|
|
47200
47218
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47201
47219
|
*/
|
|
@@ -47262,7 +47280,7 @@ export declare interface JsonApiDataSourceOut {
|
|
|
47262
47280
|
* API identifier of an object
|
|
47263
47281
|
*/
|
|
47264
47282
|
id: string;
|
|
47265
|
-
meta?:
|
|
47283
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47266
47284
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47267
47285
|
}
|
|
47268
47286
|
|
|
@@ -47294,11 +47312,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
47294
47312
|
/**
|
|
47295
47313
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47296
47314
|
*/
|
|
47297
|
-
parameters?: Array<
|
|
47315
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
47298
47316
|
/**
|
|
47299
47317
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
47300
47318
|
*/
|
|
47301
|
-
decodedParameters?: Array<
|
|
47319
|
+
decodedParameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
47302
47320
|
/**
|
|
47303
47321
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47304
47322
|
*/
|
|
@@ -47326,11 +47344,6 @@ export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
|
47326
47344
|
|
|
47327
47345
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = (typeof JsonApiDataSourceOutAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceOutAttributesCacheStrategyEnum];
|
|
47328
47346
|
|
|
47329
|
-
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
47330
|
-
name: string;
|
|
47331
|
-
value: string;
|
|
47332
|
-
}
|
|
47333
|
-
|
|
47334
47347
|
export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
47335
47348
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47336
47349
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47373,9 +47386,23 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
47373
47386
|
export declare interface JsonApiDataSourceOutList {
|
|
47374
47387
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
47375
47388
|
links?: ListLinks;
|
|
47376
|
-
meta?:
|
|
47389
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47377
47390
|
}
|
|
47378
47391
|
|
|
47392
|
+
export declare interface JsonApiDataSourceOutMeta {
|
|
47393
|
+
/**
|
|
47394
|
+
* List of valid permissions for a logged-in user.
|
|
47395
|
+
*/
|
|
47396
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
47397
|
+
}
|
|
47398
|
+
|
|
47399
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
47400
|
+
readonly MANAGE: "MANAGE";
|
|
47401
|
+
readonly USE: "USE";
|
|
47402
|
+
};
|
|
47403
|
+
|
|
47404
|
+
export declare type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
47405
|
+
|
|
47379
47406
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
47380
47407
|
readonly DATA_SOURCE: "dataSource";
|
|
47381
47408
|
};
|
|
@@ -47391,7 +47418,7 @@ export declare interface JsonApiDataSourceOutWithLinks {
|
|
|
47391
47418
|
* API identifier of an object
|
|
47392
47419
|
*/
|
|
47393
47420
|
id: string;
|
|
47394
|
-
meta?:
|
|
47421
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
47395
47422
|
attributes: JsonApiDataSourceOutAttributes;
|
|
47396
47423
|
links?: ObjectLinks;
|
|
47397
47424
|
}
|
|
@@ -47465,7 +47492,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
47465
47492
|
/**
|
|
47466
47493
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
47467
47494
|
*/
|
|
47468
|
-
parameters?: Array<
|
|
47495
|
+
parameters?: Array<JsonApiDataSourcePatchAttributesParametersInner> | null;
|
|
47469
47496
|
/**
|
|
47470
47497
|
* Determines how the results coming from a particular datasource should be cached.
|
|
47471
47498
|
*/
|
|
@@ -47479,6 +47506,11 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
47479
47506
|
|
|
47480
47507
|
export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = (typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
47481
47508
|
|
|
47509
|
+
export declare interface JsonApiDataSourcePatchAttributesParametersInner {
|
|
47510
|
+
name: string;
|
|
47511
|
+
value: string;
|
|
47512
|
+
}
|
|
47513
|
+
|
|
47482
47514
|
export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
47483
47515
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
47484
47516
|
readonly REDSHIFT: "REDSHIFT";
|
|
@@ -47551,7 +47583,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
47551
47583
|
export declare interface JsonApiEntitlementOutList {
|
|
47552
47584
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
47553
47585
|
links?: ListLinks;
|
|
47554
|
-
meta?:
|
|
47586
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47555
47587
|
}
|
|
47556
47588
|
|
|
47557
47589
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -47591,8 +47623,8 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
47591
47623
|
* API identifier of an object
|
|
47592
47624
|
*/
|
|
47593
47625
|
id: string;
|
|
47594
|
-
attributes?:
|
|
47595
|
-
relationships?:
|
|
47626
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47627
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47596
47628
|
}
|
|
47597
47629
|
|
|
47598
47630
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
@@ -47672,7 +47704,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
47672
47704
|
export declare interface JsonApiExportDefinitionOutList {
|
|
47673
47705
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
47674
47706
|
links?: ListLinks;
|
|
47675
|
-
meta?:
|
|
47707
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47676
47708
|
/**
|
|
47677
47709
|
* Included resources
|
|
47678
47710
|
*/
|
|
@@ -47681,7 +47713,7 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
47681
47713
|
|
|
47682
47714
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
47683
47715
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47684
|
-
analyticalDashboard?:
|
|
47716
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
47685
47717
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
47686
47718
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
47687
47719
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -47734,14 +47766,27 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
47734
47766
|
* API identifier of an object
|
|
47735
47767
|
*/
|
|
47736
47768
|
id: string;
|
|
47737
|
-
attributes?:
|
|
47738
|
-
relationships?:
|
|
47769
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47770
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47771
|
+
}
|
|
47772
|
+
|
|
47773
|
+
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
47774
|
+
title?: string;
|
|
47775
|
+
description?: string;
|
|
47776
|
+
tags?: Array<string>;
|
|
47777
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47778
|
+
areRelationsValid?: boolean;
|
|
47739
47779
|
}
|
|
47740
47780
|
|
|
47741
47781
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
47742
47782
|
data: JsonApiExportDefinitionPatch;
|
|
47743
47783
|
}
|
|
47744
47784
|
|
|
47785
|
+
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
47786
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47787
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
47788
|
+
}
|
|
47789
|
+
|
|
47745
47790
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
47746
47791
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47747
47792
|
};
|
|
@@ -47760,27 +47805,14 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
47760
47805
|
* API identifier of an object
|
|
47761
47806
|
*/
|
|
47762
47807
|
id?: string;
|
|
47763
|
-
attributes?:
|
|
47764
|
-
relationships?:
|
|
47765
|
-
}
|
|
47766
|
-
|
|
47767
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
47768
|
-
title?: string;
|
|
47769
|
-
description?: string;
|
|
47770
|
-
tags?: Array<string>;
|
|
47771
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47772
|
-
areRelationsValid?: boolean;
|
|
47808
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47809
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47773
47810
|
}
|
|
47774
47811
|
|
|
47775
47812
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
47776
47813
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
47777
47814
|
}
|
|
47778
47815
|
|
|
47779
|
-
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
47780
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47781
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47782
|
-
}
|
|
47783
|
-
|
|
47784
47816
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
47785
47817
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
47786
47818
|
};
|
|
@@ -47832,49 +47864,10 @@ export declare interface JsonApiExportTemplateOutAttributes {
|
|
|
47832
47864
|
* User-facing name of the Slides template.
|
|
47833
47865
|
*/
|
|
47834
47866
|
name: string;
|
|
47835
|
-
dashboardSlidesTemplate?:
|
|
47836
|
-
widgetSlidesTemplate?:
|
|
47837
|
-
}
|
|
47838
|
-
|
|
47839
|
-
/**
|
|
47840
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47841
|
-
*/
|
|
47842
|
-
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
47843
|
-
/**
|
|
47844
|
-
* Export types this template applies to.
|
|
47845
|
-
*/
|
|
47846
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
47847
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
47848
|
-
introSlide?: IntroSlideTemplate | null;
|
|
47849
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
47850
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
47867
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
|
|
47868
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
|
|
47851
47869
|
}
|
|
47852
47870
|
|
|
47853
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
47854
|
-
readonly PDF: "PDF";
|
|
47855
|
-
readonly PPTX: "PPTX";
|
|
47856
|
-
};
|
|
47857
|
-
|
|
47858
|
-
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
47859
|
-
|
|
47860
|
-
/**
|
|
47861
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47862
|
-
*/
|
|
47863
|
-
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
47864
|
-
/**
|
|
47865
|
-
* Export types this template applies to.
|
|
47866
|
-
*/
|
|
47867
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
47868
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
47869
|
-
}
|
|
47870
|
-
|
|
47871
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
47872
|
-
readonly PDF: "PDF";
|
|
47873
|
-
readonly PPTX: "PPTX";
|
|
47874
|
-
};
|
|
47875
|
-
|
|
47876
|
-
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
47877
|
-
|
|
47878
47871
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
47879
47872
|
data: JsonApiExportTemplateOut;
|
|
47880
47873
|
links?: ObjectLinks;
|
|
@@ -47886,7 +47879,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
47886
47879
|
export declare interface JsonApiExportTemplateOutList {
|
|
47887
47880
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
47888
47881
|
links?: ListLinks;
|
|
47889
|
-
meta?:
|
|
47882
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
47890
47883
|
}
|
|
47891
47884
|
|
|
47892
47885
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -47934,10 +47927,49 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
47934
47927
|
* User-facing name of the Slides template.
|
|
47935
47928
|
*/
|
|
47936
47929
|
name?: string;
|
|
47937
|
-
dashboardSlidesTemplate?:
|
|
47938
|
-
widgetSlidesTemplate?:
|
|
47930
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate | null;
|
|
47931
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate | null;
|
|
47932
|
+
}
|
|
47933
|
+
|
|
47934
|
+
/**
|
|
47935
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47936
|
+
*/
|
|
47937
|
+
export declare interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
|
|
47938
|
+
/**
|
|
47939
|
+
* Export types this template applies to.
|
|
47940
|
+
*/
|
|
47941
|
+
appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
47942
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
47943
|
+
introSlide?: IntroSlideTemplate | null;
|
|
47944
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
47945
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
47946
|
+
}
|
|
47947
|
+
|
|
47948
|
+
export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
47949
|
+
readonly PDF: "PDF";
|
|
47950
|
+
readonly PPTX: "PPTX";
|
|
47951
|
+
};
|
|
47952
|
+
|
|
47953
|
+
export declare type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
47954
|
+
|
|
47955
|
+
/**
|
|
47956
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
47957
|
+
*/
|
|
47958
|
+
export declare interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
|
|
47959
|
+
/**
|
|
47960
|
+
* Export types this template applies to.
|
|
47961
|
+
*/
|
|
47962
|
+
appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
47963
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
47939
47964
|
}
|
|
47940
47965
|
|
|
47966
|
+
export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
47967
|
+
readonly PDF: "PDF";
|
|
47968
|
+
readonly PPTX: "PPTX";
|
|
47969
|
+
};
|
|
47970
|
+
|
|
47971
|
+
export declare type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
47972
|
+
|
|
47941
47973
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
47942
47974
|
data: JsonApiExportTemplatePatch;
|
|
47943
47975
|
}
|
|
@@ -48041,7 +48073,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
48041
48073
|
export declare interface JsonApiFactOutList {
|
|
48042
48074
|
data: Array<JsonApiFactOutWithLinks>;
|
|
48043
48075
|
links?: ListLinks;
|
|
48044
|
-
meta?:
|
|
48076
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48045
48077
|
/**
|
|
48046
48078
|
* Included resources
|
|
48047
48079
|
*/
|
|
@@ -48091,7 +48123,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
48091
48123
|
* API identifier of an object
|
|
48092
48124
|
*/
|
|
48093
48125
|
id: string;
|
|
48094
|
-
attributes:
|
|
48126
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48095
48127
|
}
|
|
48096
48128
|
|
|
48097
48129
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -48131,10 +48163,21 @@ export declare interface JsonApiFilterContextOut {
|
|
|
48131
48163
|
*/
|
|
48132
48164
|
id: string;
|
|
48133
48165
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48134
|
-
attributes:
|
|
48166
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48135
48167
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48136
48168
|
}
|
|
48137
48169
|
|
|
48170
|
+
export declare interface JsonApiFilterContextOutAttributes {
|
|
48171
|
+
title?: string;
|
|
48172
|
+
description?: string;
|
|
48173
|
+
tags?: Array<string>;
|
|
48174
|
+
areRelationsValid?: boolean;
|
|
48175
|
+
/**
|
|
48176
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
48177
|
+
*/
|
|
48178
|
+
content: object;
|
|
48179
|
+
}
|
|
48180
|
+
|
|
48138
48181
|
export declare interface JsonApiFilterContextOutDocument {
|
|
48139
48182
|
data: JsonApiFilterContextOut;
|
|
48140
48183
|
links?: ObjectLinks;
|
|
@@ -48155,7 +48198,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
48155
48198
|
export declare interface JsonApiFilterContextOutList {
|
|
48156
48199
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
48157
48200
|
links?: ListLinks;
|
|
48158
|
-
meta?:
|
|
48201
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48159
48202
|
/**
|
|
48160
48203
|
* Included resources
|
|
48161
48204
|
*/
|
|
@@ -48184,7 +48227,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
48184
48227
|
*/
|
|
48185
48228
|
id: string;
|
|
48186
48229
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
48187
|
-
attributes:
|
|
48230
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48188
48231
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
48189
48232
|
links?: ObjectLinks;
|
|
48190
48233
|
}
|
|
@@ -48232,7 +48275,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
48232
48275
|
* API identifier of an object
|
|
48233
48276
|
*/
|
|
48234
48277
|
id?: string;
|
|
48235
|
-
attributes:
|
|
48278
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48236
48279
|
}
|
|
48237
48280
|
|
|
48238
48281
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -48257,34 +48300,14 @@ export declare interface JsonApiFilterViewIn {
|
|
|
48257
48300
|
* API identifier of an object
|
|
48258
48301
|
*/
|
|
48259
48302
|
id: string;
|
|
48260
|
-
attributes:
|
|
48261
|
-
relationships?:
|
|
48262
|
-
}
|
|
48263
|
-
|
|
48264
|
-
export declare interface JsonApiFilterViewInAttributes {
|
|
48265
|
-
title: string;
|
|
48266
|
-
description?: string;
|
|
48267
|
-
tags?: Array<string>;
|
|
48268
|
-
areRelationsValid?: boolean;
|
|
48269
|
-
/**
|
|
48270
|
-
* Indicator whether the filter view should by applied by default.
|
|
48271
|
-
*/
|
|
48272
|
-
isDefault?: boolean;
|
|
48273
|
-
/**
|
|
48274
|
-
* The respective filter context.
|
|
48275
|
-
*/
|
|
48276
|
-
content: object;
|
|
48303
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
48304
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
48277
48305
|
}
|
|
48278
48306
|
|
|
48279
48307
|
export declare interface JsonApiFilterViewInDocument {
|
|
48280
48308
|
data: JsonApiFilterViewIn;
|
|
48281
48309
|
}
|
|
48282
48310
|
|
|
48283
|
-
export declare interface JsonApiFilterViewInRelationships {
|
|
48284
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
48285
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48286
|
-
}
|
|
48287
|
-
|
|
48288
48311
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
48289
48312
|
readonly FILTER_VIEW: "filterView";
|
|
48290
48313
|
};
|
|
@@ -48303,8 +48326,23 @@ export declare interface JsonApiFilterViewOut {
|
|
|
48303
48326
|
* API identifier of an object
|
|
48304
48327
|
*/
|
|
48305
48328
|
id: string;
|
|
48306
|
-
attributes:
|
|
48307
|
-
relationships?:
|
|
48329
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
48330
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
48331
|
+
}
|
|
48332
|
+
|
|
48333
|
+
export declare interface JsonApiFilterViewOutAttributes {
|
|
48334
|
+
title: string;
|
|
48335
|
+
description?: string;
|
|
48336
|
+
tags?: Array<string>;
|
|
48337
|
+
areRelationsValid?: boolean;
|
|
48338
|
+
/**
|
|
48339
|
+
* Indicator whether the filter view should by applied by default.
|
|
48340
|
+
*/
|
|
48341
|
+
isDefault?: boolean;
|
|
48342
|
+
/**
|
|
48343
|
+
* The respective filter context.
|
|
48344
|
+
*/
|
|
48345
|
+
content: object;
|
|
48308
48346
|
}
|
|
48309
48347
|
|
|
48310
48348
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -48327,7 +48365,7 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
48327
48365
|
export declare interface JsonApiFilterViewOutList {
|
|
48328
48366
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
48329
48367
|
links?: ListLinks;
|
|
48330
|
-
meta?:
|
|
48368
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48331
48369
|
/**
|
|
48332
48370
|
* Included resources
|
|
48333
48371
|
*/
|
|
@@ -48349,8 +48387,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
48349
48387
|
* API identifier of an object
|
|
48350
48388
|
*/
|
|
48351
48389
|
id: string;
|
|
48352
|
-
attributes:
|
|
48353
|
-
relationships?:
|
|
48390
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
48391
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
48354
48392
|
links?: ObjectLinks;
|
|
48355
48393
|
}
|
|
48356
48394
|
|
|
@@ -48373,7 +48411,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
48373
48411
|
*/
|
|
48374
48412
|
id: string;
|
|
48375
48413
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
48376
|
-
relationships?:
|
|
48414
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
48377
48415
|
}
|
|
48378
48416
|
|
|
48379
48417
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -48395,6 +48433,15 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
48395
48433
|
data: JsonApiFilterViewPatch;
|
|
48396
48434
|
}
|
|
48397
48435
|
|
|
48436
|
+
export declare interface JsonApiFilterViewPatchRelationships {
|
|
48437
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
48438
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
48439
|
+
}
|
|
48440
|
+
|
|
48441
|
+
export declare interface JsonApiFilterViewPatchRelationshipsUser {
|
|
48442
|
+
data: JsonApiUserLinkage | null;
|
|
48443
|
+
}
|
|
48444
|
+
|
|
48398
48445
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
48399
48446
|
readonly FILTER_VIEW: "filterView";
|
|
48400
48447
|
};
|
|
@@ -48418,10 +48465,49 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
48418
48465
|
* API identifier of an object
|
|
48419
48466
|
*/
|
|
48420
48467
|
id: string;
|
|
48421
|
-
attributes?:
|
|
48468
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
48469
|
+
}
|
|
48470
|
+
|
|
48471
|
+
export declare interface JsonApiIdentityProviderInDocument {
|
|
48472
|
+
data: JsonApiIdentityProviderIn;
|
|
48422
48473
|
}
|
|
48423
48474
|
|
|
48424
|
-
export declare
|
|
48475
|
+
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
48476
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48477
|
+
};
|
|
48478
|
+
|
|
48479
|
+
export declare type JsonApiIdentityProviderInTypeEnum = (typeof JsonApiIdentityProviderInTypeEnum)[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
48480
|
+
|
|
48481
|
+
/**
|
|
48482
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
48483
|
+
*/
|
|
48484
|
+
export declare interface JsonApiIdentityProviderLinkage {
|
|
48485
|
+
id: string;
|
|
48486
|
+
type: JsonApiIdentityProviderLinkageTypeEnum;
|
|
48487
|
+
}
|
|
48488
|
+
|
|
48489
|
+
export declare const JsonApiIdentityProviderLinkageTypeEnum: {
|
|
48490
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48491
|
+
};
|
|
48492
|
+
|
|
48493
|
+
export declare type JsonApiIdentityProviderLinkageTypeEnum = (typeof JsonApiIdentityProviderLinkageTypeEnum)[keyof typeof JsonApiIdentityProviderLinkageTypeEnum];
|
|
48494
|
+
|
|
48495
|
+
/**
|
|
48496
|
+
* JSON:API representation of identityProvider entity.
|
|
48497
|
+
*/
|
|
48498
|
+
export declare interface JsonApiIdentityProviderOut {
|
|
48499
|
+
/**
|
|
48500
|
+
* Object type
|
|
48501
|
+
*/
|
|
48502
|
+
type: JsonApiIdentityProviderOutTypeEnum;
|
|
48503
|
+
/**
|
|
48504
|
+
* API identifier of an object
|
|
48505
|
+
*/
|
|
48506
|
+
id: string;
|
|
48507
|
+
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48508
|
+
}
|
|
48509
|
+
|
|
48510
|
+
export declare interface JsonApiIdentityProviderOutAttributes {
|
|
48425
48511
|
/**
|
|
48426
48512
|
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
48427
48513
|
*/
|
|
@@ -48432,18 +48518,10 @@ export declare interface JsonApiIdentityProviderInAttributes {
|
|
|
48432
48518
|
customClaimMapping?: {
|
|
48433
48519
|
[key: string]: string;
|
|
48434
48520
|
};
|
|
48435
|
-
/**
|
|
48436
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
48437
|
-
*/
|
|
48438
|
-
samlMetadata?: string;
|
|
48439
48521
|
/**
|
|
48440
48522
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48441
48523
|
*/
|
|
48442
48524
|
oauthClientId?: string;
|
|
48443
|
-
/**
|
|
48444
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48445
|
-
*/
|
|
48446
|
-
oauthClientSecret?: string;
|
|
48447
48525
|
/**
|
|
48448
48526
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48449
48527
|
*/
|
|
@@ -48469,58 +48547,73 @@ export declare interface JsonApiIdentityProviderInAttributes {
|
|
|
48469
48547
|
/**
|
|
48470
48548
|
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
48471
48549
|
*/
|
|
48472
|
-
idpType?:
|
|
48550
|
+
idpType?: JsonApiIdentityProviderOutAttributesIdpTypeEnum;
|
|
48473
48551
|
}
|
|
48474
48552
|
|
|
48475
|
-
export declare const
|
|
48553
|
+
export declare const JsonApiIdentityProviderOutAttributesIdpTypeEnum: {
|
|
48476
48554
|
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
48477
48555
|
readonly FIM_IDP: "FIM_IDP";
|
|
48478
48556
|
readonly DEX_IDP: "DEX_IDP";
|
|
48479
48557
|
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
48480
48558
|
};
|
|
48481
48559
|
|
|
48482
|
-
export declare type
|
|
48560
|
+
export declare type JsonApiIdentityProviderOutAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderOutAttributesIdpTypeEnum];
|
|
48483
48561
|
|
|
48484
|
-
export declare interface
|
|
48485
|
-
data:
|
|
48562
|
+
export declare interface JsonApiIdentityProviderOutDocument {
|
|
48563
|
+
data: JsonApiIdentityProviderOut;
|
|
48564
|
+
links?: ObjectLinks;
|
|
48486
48565
|
}
|
|
48487
48566
|
|
|
48488
|
-
|
|
48567
|
+
/**
|
|
48568
|
+
* A JSON:API document with a list of resources
|
|
48569
|
+
*/
|
|
48570
|
+
export declare interface JsonApiIdentityProviderOutList {
|
|
48571
|
+
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48572
|
+
links?: ListLinks;
|
|
48573
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48574
|
+
}
|
|
48575
|
+
|
|
48576
|
+
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
48489
48577
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48490
48578
|
};
|
|
48491
48579
|
|
|
48492
|
-
export declare type
|
|
48580
|
+
export declare type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
|
|
48493
48581
|
|
|
48494
|
-
|
|
48495
|
-
|
|
48496
|
-
|
|
48497
|
-
|
|
48582
|
+
export declare interface JsonApiIdentityProviderOutWithLinks {
|
|
48583
|
+
/**
|
|
48584
|
+
* Object type
|
|
48585
|
+
*/
|
|
48586
|
+
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
48587
|
+
/**
|
|
48588
|
+
* API identifier of an object
|
|
48589
|
+
*/
|
|
48498
48590
|
id: string;
|
|
48499
|
-
|
|
48591
|
+
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48592
|
+
links?: ObjectLinks;
|
|
48500
48593
|
}
|
|
48501
48594
|
|
|
48502
|
-
export declare const
|
|
48595
|
+
export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
|
|
48503
48596
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48504
48597
|
};
|
|
48505
48598
|
|
|
48506
|
-
export declare type
|
|
48599
|
+
export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
|
|
48507
48600
|
|
|
48508
48601
|
/**
|
|
48509
|
-
* JSON:API representation of identityProvider entity.
|
|
48602
|
+
* JSON:API representation of patching identityProvider entity.
|
|
48510
48603
|
*/
|
|
48511
|
-
export declare interface
|
|
48604
|
+
export declare interface JsonApiIdentityProviderPatch {
|
|
48512
48605
|
/**
|
|
48513
48606
|
* Object type
|
|
48514
48607
|
*/
|
|
48515
|
-
type:
|
|
48608
|
+
type: JsonApiIdentityProviderPatchTypeEnum;
|
|
48516
48609
|
/**
|
|
48517
48610
|
* API identifier of an object
|
|
48518
48611
|
*/
|
|
48519
48612
|
id: string;
|
|
48520
|
-
attributes?:
|
|
48613
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
48521
48614
|
}
|
|
48522
48615
|
|
|
48523
|
-
export declare interface
|
|
48616
|
+
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
48524
48617
|
/**
|
|
48525
48618
|
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
48526
48619
|
*/
|
|
@@ -48531,10 +48624,18 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
48531
48624
|
customClaimMapping?: {
|
|
48532
48625
|
[key: string]: string;
|
|
48533
48626
|
};
|
|
48627
|
+
/**
|
|
48628
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
48629
|
+
*/
|
|
48630
|
+
samlMetadata?: string;
|
|
48534
48631
|
/**
|
|
48535
48632
|
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48536
48633
|
*/
|
|
48537
48634
|
oauthClientId?: string;
|
|
48635
|
+
/**
|
|
48636
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48637
|
+
*/
|
|
48638
|
+
oauthClientSecret?: string;
|
|
48538
48639
|
/**
|
|
48539
48640
|
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
48540
48641
|
*/
|
|
@@ -48560,71 +48661,17 @@ export declare interface JsonApiIdentityProviderOutAttributes {
|
|
|
48560
48661
|
/**
|
|
48561
48662
|
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
48562
48663
|
*/
|
|
48563
|
-
idpType?:
|
|
48664
|
+
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
48564
48665
|
}
|
|
48565
48666
|
|
|
48566
|
-
export declare const
|
|
48667
|
+
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
48567
48668
|
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
48568
48669
|
readonly FIM_IDP: "FIM_IDP";
|
|
48569
48670
|
readonly DEX_IDP: "DEX_IDP";
|
|
48570
48671
|
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
48571
48672
|
};
|
|
48572
48673
|
|
|
48573
|
-
export declare type
|
|
48574
|
-
|
|
48575
|
-
export declare interface JsonApiIdentityProviderOutDocument {
|
|
48576
|
-
data: JsonApiIdentityProviderOut;
|
|
48577
|
-
links?: ObjectLinks;
|
|
48578
|
-
}
|
|
48579
|
-
|
|
48580
|
-
/**
|
|
48581
|
-
* A JSON:API document with a list of resources
|
|
48582
|
-
*/
|
|
48583
|
-
export declare interface JsonApiIdentityProviderOutList {
|
|
48584
|
-
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
48585
|
-
links?: ListLinks;
|
|
48586
|
-
meta?: JsonApiColorPaletteOutListMeta;
|
|
48587
|
-
}
|
|
48588
|
-
|
|
48589
|
-
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
48590
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48591
|
-
};
|
|
48592
|
-
|
|
48593
|
-
export declare type JsonApiIdentityProviderOutTypeEnum = (typeof JsonApiIdentityProviderOutTypeEnum)[keyof typeof JsonApiIdentityProviderOutTypeEnum];
|
|
48594
|
-
|
|
48595
|
-
export declare interface JsonApiIdentityProviderOutWithLinks {
|
|
48596
|
-
/**
|
|
48597
|
-
* Object type
|
|
48598
|
-
*/
|
|
48599
|
-
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
48600
|
-
/**
|
|
48601
|
-
* API identifier of an object
|
|
48602
|
-
*/
|
|
48603
|
-
id: string;
|
|
48604
|
-
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
48605
|
-
links?: ObjectLinks;
|
|
48606
|
-
}
|
|
48607
|
-
|
|
48608
|
-
export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
|
|
48609
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
48610
|
-
};
|
|
48611
|
-
|
|
48612
|
-
export declare type JsonApiIdentityProviderOutWithLinksTypeEnum = (typeof JsonApiIdentityProviderOutWithLinksTypeEnum)[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
|
|
48613
|
-
|
|
48614
|
-
/**
|
|
48615
|
-
* JSON:API representation of patching identityProvider entity.
|
|
48616
|
-
*/
|
|
48617
|
-
export declare interface JsonApiIdentityProviderPatch {
|
|
48618
|
-
/**
|
|
48619
|
-
* Object type
|
|
48620
|
-
*/
|
|
48621
|
-
type: JsonApiIdentityProviderPatchTypeEnum;
|
|
48622
|
-
/**
|
|
48623
|
-
* API identifier of an object
|
|
48624
|
-
*/
|
|
48625
|
-
id: string;
|
|
48626
|
-
attributes?: JsonApiIdentityProviderInAttributes;
|
|
48627
|
-
}
|
|
48674
|
+
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = (typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum)[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
48628
48675
|
|
|
48629
48676
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
48630
48677
|
data: JsonApiIdentityProviderPatch;
|
|
@@ -48648,7 +48695,7 @@ export declare interface JsonApiJwkIn {
|
|
|
48648
48695
|
* API identifier of an object
|
|
48649
48696
|
*/
|
|
48650
48697
|
id: string;
|
|
48651
|
-
attributes?:
|
|
48698
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
48652
48699
|
}
|
|
48653
48700
|
|
|
48654
48701
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -48673,11 +48720,7 @@ export declare interface JsonApiJwkOut {
|
|
|
48673
48720
|
* API identifier of an object
|
|
48674
48721
|
*/
|
|
48675
48722
|
id: string;
|
|
48676
|
-
attributes?:
|
|
48677
|
-
}
|
|
48678
|
-
|
|
48679
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
48680
|
-
content?: RsaSpecification;
|
|
48723
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
48681
48724
|
}
|
|
48682
48725
|
|
|
48683
48726
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -48691,7 +48734,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
48691
48734
|
export declare interface JsonApiJwkOutList {
|
|
48692
48735
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
48693
48736
|
links?: ListLinks;
|
|
48694
|
-
meta?:
|
|
48737
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48695
48738
|
}
|
|
48696
48739
|
|
|
48697
48740
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -48709,7 +48752,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
48709
48752
|
* API identifier of an object
|
|
48710
48753
|
*/
|
|
48711
48754
|
id: string;
|
|
48712
|
-
attributes?:
|
|
48755
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
48713
48756
|
links?: ObjectLinks;
|
|
48714
48757
|
}
|
|
48715
48758
|
|
|
@@ -48731,7 +48774,11 @@ export declare interface JsonApiJwkPatch {
|
|
|
48731
48774
|
* API identifier of an object
|
|
48732
48775
|
*/
|
|
48733
48776
|
id: string;
|
|
48734
|
-
attributes?:
|
|
48777
|
+
attributes?: JsonApiJwkPatchAttributes;
|
|
48778
|
+
}
|
|
48779
|
+
|
|
48780
|
+
export declare interface JsonApiJwkPatchAttributes {
|
|
48781
|
+
content?: RsaSpecification;
|
|
48735
48782
|
}
|
|
48736
48783
|
|
|
48737
48784
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -48784,9 +48831,17 @@ export declare interface JsonApiLabelOutAttributes {
|
|
|
48784
48831
|
sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
|
|
48785
48832
|
valueType?: JsonApiLabelOutAttributesValueTypeEnum;
|
|
48786
48833
|
isHidden?: boolean;
|
|
48834
|
+
geoAreaConfig?: JsonApiLabelOutAttributesGeoAreaConfig;
|
|
48787
48835
|
areRelationsValid?: boolean;
|
|
48788
48836
|
}
|
|
48789
48837
|
|
|
48838
|
+
/**
|
|
48839
|
+
* Configuration specific to geo area labels.
|
|
48840
|
+
*/
|
|
48841
|
+
export declare interface JsonApiLabelOutAttributesGeoAreaConfig {
|
|
48842
|
+
collection: GeoCollection;
|
|
48843
|
+
}
|
|
48844
|
+
|
|
48790
48845
|
export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
|
|
48791
48846
|
readonly INT: "INT";
|
|
48792
48847
|
readonly STRING: "STRING";
|
|
@@ -48805,6 +48860,7 @@ export declare const JsonApiLabelOutAttributesValueTypeEnum: {
|
|
|
48805
48860
|
readonly GEO: "GEO";
|
|
48806
48861
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
48807
48862
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
48863
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
48808
48864
|
readonly IMAGE: "IMAGE";
|
|
48809
48865
|
};
|
|
48810
48866
|
|
|
@@ -48825,7 +48881,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
48825
48881
|
export declare interface JsonApiLabelOutList {
|
|
48826
48882
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
48827
48883
|
links?: ListLinks;
|
|
48828
|
-
meta?:
|
|
48884
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48829
48885
|
/**
|
|
48830
48886
|
* Included resources
|
|
48831
48887
|
*/
|
|
@@ -48982,7 +49038,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
48982
49038
|
export declare interface JsonApiLlmEndpointOutList {
|
|
48983
49039
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
48984
49040
|
links?: ListLinks;
|
|
48985
|
-
meta?:
|
|
49041
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
48986
49042
|
}
|
|
48987
49043
|
|
|
48988
49044
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -49081,9 +49137,39 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
49081
49137
|
* API identifier of an object
|
|
49082
49138
|
*/
|
|
49083
49139
|
id: string;
|
|
49084
|
-
attributes:
|
|
49140
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
49085
49141
|
}
|
|
49086
49142
|
|
|
49143
|
+
export declare interface JsonApiMemoryItemInAttributes {
|
|
49144
|
+
title?: string;
|
|
49145
|
+
description?: string;
|
|
49146
|
+
tags?: Array<string>;
|
|
49147
|
+
areRelationsValid?: boolean;
|
|
49148
|
+
/**
|
|
49149
|
+
* Strategy defining when the memory item should be applied
|
|
49150
|
+
*/
|
|
49151
|
+
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
49152
|
+
/**
|
|
49153
|
+
* The text that will be injected into the system prompt
|
|
49154
|
+
*/
|
|
49155
|
+
instruction: string;
|
|
49156
|
+
/**
|
|
49157
|
+
* Set of unique strings used for semantic similarity filtering
|
|
49158
|
+
*/
|
|
49159
|
+
keywords?: Array<string>;
|
|
49160
|
+
/**
|
|
49161
|
+
* Whether memory item is disabled
|
|
49162
|
+
*/
|
|
49163
|
+
isDisabled?: boolean;
|
|
49164
|
+
}
|
|
49165
|
+
|
|
49166
|
+
export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
|
|
49167
|
+
readonly ALWAYS: "ALWAYS";
|
|
49168
|
+
readonly AUTO: "AUTO";
|
|
49169
|
+
};
|
|
49170
|
+
|
|
49171
|
+
export declare type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
|
|
49172
|
+
|
|
49087
49173
|
export declare interface JsonApiMemoryItemInDocument {
|
|
49088
49174
|
data: JsonApiMemoryItemIn;
|
|
49089
49175
|
}
|
|
@@ -49158,7 +49244,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
49158
49244
|
export declare interface JsonApiMemoryItemOutList {
|
|
49159
49245
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
49160
49246
|
links?: ListLinks;
|
|
49161
|
-
meta?:
|
|
49247
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49162
49248
|
/**
|
|
49163
49249
|
* Included resources
|
|
49164
49250
|
*/
|
|
@@ -49259,39 +49345,9 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
49259
49345
|
* API identifier of an object
|
|
49260
49346
|
*/
|
|
49261
49347
|
id?: string;
|
|
49262
|
-
attributes:
|
|
49348
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
49263
49349
|
}
|
|
49264
49350
|
|
|
49265
|
-
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
49266
|
-
title?: string;
|
|
49267
|
-
description?: string;
|
|
49268
|
-
tags?: Array<string>;
|
|
49269
|
-
areRelationsValid?: boolean;
|
|
49270
|
-
/**
|
|
49271
|
-
* Strategy defining when the memory item should be applied
|
|
49272
|
-
*/
|
|
49273
|
-
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
49274
|
-
/**
|
|
49275
|
-
* The text that will be injected into the system prompt
|
|
49276
|
-
*/
|
|
49277
|
-
instruction: string;
|
|
49278
|
-
/**
|
|
49279
|
-
* Set of unique strings used for semantic similarity filtering
|
|
49280
|
-
*/
|
|
49281
|
-
keywords?: Array<string>;
|
|
49282
|
-
/**
|
|
49283
|
-
* Whether memory item is disabled
|
|
49284
|
-
*/
|
|
49285
|
-
isDisabled?: boolean;
|
|
49286
|
-
}
|
|
49287
|
-
|
|
49288
|
-
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
49289
|
-
readonly ALWAYS: "ALWAYS";
|
|
49290
|
-
readonly AUTO: "AUTO";
|
|
49291
|
-
};
|
|
49292
|
-
|
|
49293
|
-
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
49294
|
-
|
|
49295
49351
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
49296
49352
|
data: JsonApiMemoryItemPostOptionalId;
|
|
49297
49353
|
}
|
|
@@ -49314,7 +49370,16 @@ export declare interface JsonApiMetricIn {
|
|
|
49314
49370
|
* API identifier of an object
|
|
49315
49371
|
*/
|
|
49316
49372
|
id: string;
|
|
49317
|
-
attributes:
|
|
49373
|
+
attributes: JsonApiMetricInAttributes;
|
|
49374
|
+
}
|
|
49375
|
+
|
|
49376
|
+
export declare interface JsonApiMetricInAttributes {
|
|
49377
|
+
title?: string;
|
|
49378
|
+
description?: string;
|
|
49379
|
+
tags?: Array<string>;
|
|
49380
|
+
areRelationsValid?: boolean;
|
|
49381
|
+
content: JsonApiMetricOutAttributesContent;
|
|
49382
|
+
isHidden?: boolean;
|
|
49318
49383
|
}
|
|
49319
49384
|
|
|
49320
49385
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -49394,7 +49459,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
49394
49459
|
export declare interface JsonApiMetricOutList {
|
|
49395
49460
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
49396
49461
|
links?: ListLinks;
|
|
49397
|
-
meta?:
|
|
49462
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49398
49463
|
/**
|
|
49399
49464
|
* Included resources
|
|
49400
49465
|
*/
|
|
@@ -49474,16 +49539,7 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
49474
49539
|
* API identifier of an object
|
|
49475
49540
|
*/
|
|
49476
49541
|
id?: string;
|
|
49477
|
-
attributes:
|
|
49478
|
-
}
|
|
49479
|
-
|
|
49480
|
-
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
49481
|
-
title?: string;
|
|
49482
|
-
description?: string;
|
|
49483
|
-
tags?: Array<string>;
|
|
49484
|
-
areRelationsValid?: boolean;
|
|
49485
|
-
content: JsonApiMetricOutAttributesContent;
|
|
49486
|
-
isHidden?: boolean;
|
|
49542
|
+
attributes: JsonApiMetricInAttributes;
|
|
49487
49543
|
}
|
|
49488
49544
|
|
|
49489
49545
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -49549,7 +49605,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
49549
49605
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
49550
49606
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
49551
49607
|
links?: ListLinks;
|
|
49552
|
-
meta?:
|
|
49608
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49553
49609
|
}
|
|
49554
49610
|
|
|
49555
49611
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -49589,58 +49645,9 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
49589
49645
|
* API identifier of an object
|
|
49590
49646
|
*/
|
|
49591
49647
|
id: string;
|
|
49592
|
-
attributes?:
|
|
49648
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
49593
49649
|
}
|
|
49594
49650
|
|
|
49595
|
-
export declare interface JsonApiNotificationChannelInAttributes {
|
|
49596
|
-
name?: string | null;
|
|
49597
|
-
description?: string | null;
|
|
49598
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
49599
|
-
/**
|
|
49600
|
-
* 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}
|
|
49601
|
-
*/
|
|
49602
|
-
customDashboardUrl?: string;
|
|
49603
|
-
/**
|
|
49604
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
49605
|
-
*/
|
|
49606
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
49607
|
-
/**
|
|
49608
|
-
* 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}}
|
|
49609
|
-
*/
|
|
49610
|
-
notificationSource?: string;
|
|
49611
|
-
/**
|
|
49612
|
-
* 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
|
|
49613
|
-
*/
|
|
49614
|
-
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
49615
|
-
/**
|
|
49616
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
49617
|
-
*/
|
|
49618
|
-
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
49619
|
-
}
|
|
49620
|
-
|
|
49621
|
-
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
49622
|
-
readonly CREATOR: "CREATOR";
|
|
49623
|
-
readonly INTERNAL: "INTERNAL";
|
|
49624
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
49625
|
-
};
|
|
49626
|
-
|
|
49627
|
-
export declare type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
49628
|
-
|
|
49629
|
-
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
49630
|
-
readonly HIDDEN: "HIDDEN";
|
|
49631
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49632
|
-
readonly ALL: "ALL";
|
|
49633
|
-
};
|
|
49634
|
-
|
|
49635
|
-
export declare type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
49636
|
-
|
|
49637
|
-
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
49638
|
-
readonly DISABLED: "DISABLED";
|
|
49639
|
-
readonly ENABLED: "ENABLED";
|
|
49640
|
-
};
|
|
49641
|
-
|
|
49642
|
-
export declare type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
49643
|
-
|
|
49644
49651
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
49645
49652
|
data: JsonApiNotificationChannelIn;
|
|
49646
49653
|
}
|
|
@@ -49683,7 +49690,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
49683
49690
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
49684
49691
|
name?: string | null;
|
|
49685
49692
|
description?: string | null;
|
|
49686
|
-
destination?:
|
|
49693
|
+
destination?: JsonApiNotificationChannelPatchAttributesDestination;
|
|
49687
49694
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
49688
49695
|
/**
|
|
49689
49696
|
* 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}
|
|
@@ -49723,12 +49730,6 @@ export declare const JsonApiNotificationChannelOutAttributesDashboardLinkVisibil
|
|
|
49723
49730
|
|
|
49724
49731
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum];
|
|
49725
49732
|
|
|
49726
|
-
/**
|
|
49727
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
49728
|
-
* The destination where the notifications are to be sent.
|
|
49729
|
-
*/
|
|
49730
|
-
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49731
|
-
|
|
49732
49733
|
export declare const JsonApiNotificationChannelOutAttributesDestinationTypeEnum: {
|
|
49733
49734
|
readonly WEBHOOK: "WEBHOOK";
|
|
49734
49735
|
readonly SMTP: "SMTP";
|
|
@@ -49756,7 +49757,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
49756
49757
|
export declare interface JsonApiNotificationChannelOutList {
|
|
49757
49758
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
49758
49759
|
links?: ListLinks;
|
|
49759
|
-
meta?:
|
|
49760
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
49760
49761
|
}
|
|
49761
49762
|
|
|
49762
49763
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -49796,9 +49797,64 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
49796
49797
|
* API identifier of an object
|
|
49797
49798
|
*/
|
|
49798
49799
|
id: string;
|
|
49799
|
-
attributes?:
|
|
49800
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
49801
|
+
}
|
|
49802
|
+
|
|
49803
|
+
export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
49804
|
+
name?: string | null;
|
|
49805
|
+
description?: string | null;
|
|
49806
|
+
destination?: JsonApiNotificationChannelPatchAttributesDestination;
|
|
49807
|
+
/**
|
|
49808
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
49809
|
+
*/
|
|
49810
|
+
customDashboardUrl?: string;
|
|
49811
|
+
/**
|
|
49812
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
49813
|
+
*/
|
|
49814
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
49815
|
+
/**
|
|
49816
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
49817
|
+
*/
|
|
49818
|
+
notificationSource?: string;
|
|
49819
|
+
/**
|
|
49820
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
49821
|
+
*/
|
|
49822
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
49823
|
+
/**
|
|
49824
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
49825
|
+
*/
|
|
49826
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
49800
49827
|
}
|
|
49801
49828
|
|
|
49829
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
49830
|
+
readonly CREATOR: "CREATOR";
|
|
49831
|
+
readonly INTERNAL: "INTERNAL";
|
|
49832
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
49833
|
+
};
|
|
49834
|
+
|
|
49835
|
+
export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
49836
|
+
|
|
49837
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
49838
|
+
readonly HIDDEN: "HIDDEN";
|
|
49839
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
49840
|
+
readonly ALL: "ALL";
|
|
49841
|
+
};
|
|
49842
|
+
|
|
49843
|
+
export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
49844
|
+
|
|
49845
|
+
/**
|
|
49846
|
+
* @type JsonApiNotificationChannelPatchAttributesDestination
|
|
49847
|
+
* The destination where the notifications are to be sent.
|
|
49848
|
+
*/
|
|
49849
|
+
export declare type JsonApiNotificationChannelPatchAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
49850
|
+
|
|
49851
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
49852
|
+
readonly DISABLED: "DISABLED";
|
|
49853
|
+
readonly ENABLED: "ENABLED";
|
|
49854
|
+
};
|
|
49855
|
+
|
|
49856
|
+
export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
49857
|
+
|
|
49802
49858
|
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
49803
49859
|
data: JsonApiNotificationChannelPatch;
|
|
49804
49860
|
}
|
|
@@ -49821,7 +49877,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
49821
49877
|
* API identifier of an object
|
|
49822
49878
|
*/
|
|
49823
49879
|
id?: string;
|
|
49824
|
-
attributes?:
|
|
49880
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
49825
49881
|
}
|
|
49826
49882
|
|
|
49827
49883
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
@@ -49846,37 +49902,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
49846
49902
|
* API identifier of an object
|
|
49847
49903
|
*/
|
|
49848
49904
|
id: string;
|
|
49849
|
-
attributes?:
|
|
49850
|
-
relationships?:
|
|
49851
|
-
}
|
|
49852
|
-
|
|
49853
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
49854
|
-
name?: string | null;
|
|
49855
|
-
hostname?: string;
|
|
49856
|
-
allowedOrigins?: Array<string>;
|
|
49857
|
-
/**
|
|
49858
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
49859
|
-
* @deprecated
|
|
49860
|
-
*/
|
|
49861
|
-
earlyAccess?: string | null;
|
|
49862
|
-
/**
|
|
49863
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
49864
|
-
*/
|
|
49865
|
-
earlyAccessValues?: Array<string> | null;
|
|
49905
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
49906
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
49866
49907
|
}
|
|
49867
49908
|
|
|
49868
49909
|
export declare interface JsonApiOrganizationInDocument {
|
|
49869
49910
|
data: JsonApiOrganizationIn;
|
|
49870
49911
|
}
|
|
49871
49912
|
|
|
49872
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
49873
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
49874
|
-
}
|
|
49875
|
-
|
|
49876
|
-
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
49877
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
49878
|
-
}
|
|
49879
|
-
|
|
49880
49913
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
49881
49914
|
readonly ORGANIZATION: "organization";
|
|
49882
49915
|
};
|
|
@@ -49957,17 +49990,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
49957
49990
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
49958
49991
|
|
|
49959
49992
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
49960
|
-
bootstrapUser?:
|
|
49961
|
-
bootstrapUserGroup?:
|
|
49962
|
-
identityProvider?:
|
|
49963
|
-
}
|
|
49964
|
-
|
|
49965
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
49966
|
-
data: JsonApiUserLinkage | null;
|
|
49967
|
-
}
|
|
49968
|
-
|
|
49969
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
49970
|
-
data: JsonApiUserGroupLinkage | null;
|
|
49993
|
+
bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
|
|
49994
|
+
bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
49995
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
49971
49996
|
}
|
|
49972
49997
|
|
|
49973
49998
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -49988,14 +50013,37 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
49988
50013
|
* API identifier of an object
|
|
49989
50014
|
*/
|
|
49990
50015
|
id: string;
|
|
49991
|
-
attributes?:
|
|
49992
|
-
relationships?:
|
|
50016
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
50017
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
50018
|
+
}
|
|
50019
|
+
|
|
50020
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
50021
|
+
name?: string | null;
|
|
50022
|
+
hostname?: string;
|
|
50023
|
+
allowedOrigins?: Array<string>;
|
|
50024
|
+
/**
|
|
50025
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
50026
|
+
* @deprecated
|
|
50027
|
+
*/
|
|
50028
|
+
earlyAccess?: string | null;
|
|
50029
|
+
/**
|
|
50030
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
50031
|
+
*/
|
|
50032
|
+
earlyAccessValues?: Array<string> | null;
|
|
49993
50033
|
}
|
|
49994
50034
|
|
|
49995
50035
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
49996
50036
|
data: JsonApiOrganizationPatch;
|
|
49997
50037
|
}
|
|
49998
50038
|
|
|
50039
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
50040
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
50041
|
+
}
|
|
50042
|
+
|
|
50043
|
+
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
50044
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
50045
|
+
}
|
|
50046
|
+
|
|
49999
50047
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
50000
50048
|
readonly ORGANIZATION: "organization";
|
|
50001
50049
|
};
|
|
@@ -50014,7 +50062,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
50014
50062
|
* API identifier of an object
|
|
50015
50063
|
*/
|
|
50016
50064
|
id: string;
|
|
50017
|
-
attributes?:
|
|
50065
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50018
50066
|
}
|
|
50019
50067
|
|
|
50020
50068
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -50039,54 +50087,9 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
50039
50087
|
* API identifier of an object
|
|
50040
50088
|
*/
|
|
50041
50089
|
id: string;
|
|
50042
|
-
attributes?:
|
|
50090
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50043
50091
|
}
|
|
50044
50092
|
|
|
50045
|
-
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
50046
|
-
/**
|
|
50047
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50048
|
-
*/
|
|
50049
|
-
content?: object;
|
|
50050
|
-
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
50051
|
-
}
|
|
50052
|
-
|
|
50053
|
-
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
50054
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
50055
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50056
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50057
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50058
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50059
|
-
readonly LOCALE: "LOCALE";
|
|
50060
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50061
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50062
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50063
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50064
|
-
readonly WEEK_START: "WEEK_START";
|
|
50065
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50066
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50067
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50068
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50069
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50070
|
-
readonly ALERT: "ALERT";
|
|
50071
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
50072
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50073
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50074
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50075
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50076
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50077
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50078
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50079
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50080
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50081
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50082
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50083
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50084
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50085
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50086
|
-
};
|
|
50087
|
-
|
|
50088
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
50089
|
-
|
|
50090
50093
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
50091
50094
|
data: JsonApiOrganizationSettingOut;
|
|
50092
50095
|
links?: ObjectLinks;
|
|
@@ -50098,7 +50101,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
50098
50101
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
50099
50102
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
50100
50103
|
links?: ListLinks;
|
|
50101
|
-
meta?:
|
|
50104
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50102
50105
|
}
|
|
50103
50106
|
|
|
50104
50107
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -50116,7 +50119,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
50116
50119
|
* API identifier of an object
|
|
50117
50120
|
*/
|
|
50118
50121
|
id: string;
|
|
50119
|
-
attributes?:
|
|
50122
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50120
50123
|
links?: ObjectLinks;
|
|
50121
50124
|
}
|
|
50122
50125
|
|
|
@@ -50138,9 +50141,55 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
50138
50141
|
* API identifier of an object
|
|
50139
50142
|
*/
|
|
50140
50143
|
id: string;
|
|
50141
|
-
attributes?:
|
|
50144
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50142
50145
|
}
|
|
50143
50146
|
|
|
50147
|
+
export declare interface JsonApiOrganizationSettingPatchAttributes {
|
|
50148
|
+
/**
|
|
50149
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50150
|
+
*/
|
|
50151
|
+
content?: object;
|
|
50152
|
+
type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
|
|
50153
|
+
}
|
|
50154
|
+
|
|
50155
|
+
export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
|
|
50156
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
50157
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50158
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50159
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50160
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50161
|
+
readonly LOCALE: "LOCALE";
|
|
50162
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50163
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50164
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50165
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50166
|
+
readonly WEEK_START: "WEEK_START";
|
|
50167
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50168
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50169
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50170
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50171
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50172
|
+
readonly ALERT: "ALERT";
|
|
50173
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
50174
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50175
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50176
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50177
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50178
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50179
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50180
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50181
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50182
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50183
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50184
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50185
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50186
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50187
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50188
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50189
|
+
};
|
|
50190
|
+
|
|
50191
|
+
export declare type JsonApiOrganizationSettingPatchAttributesTypeEnum = (typeof JsonApiOrganizationSettingPatchAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
|
|
50192
|
+
|
|
50144
50193
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
50145
50194
|
data: JsonApiOrganizationSettingPatch;
|
|
50146
50195
|
}
|
|
@@ -50202,7 +50251,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
50202
50251
|
export declare interface JsonApiThemeOutList {
|
|
50203
50252
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
50204
50253
|
links?: ListLinks;
|
|
50205
|
-
meta?:
|
|
50254
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50206
50255
|
}
|
|
50207
50256
|
|
|
50208
50257
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -50267,8 +50316,8 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
50267
50316
|
* API identifier of an object
|
|
50268
50317
|
*/
|
|
50269
50318
|
id: string;
|
|
50270
|
-
attributes:
|
|
50271
|
-
relationships?:
|
|
50319
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
50320
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
50272
50321
|
}
|
|
50273
50322
|
|
|
50274
50323
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
@@ -50294,10 +50343,18 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
50294
50343
|
*/
|
|
50295
50344
|
id: string;
|
|
50296
50345
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50297
|
-
attributes:
|
|
50346
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
50298
50347
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50299
50348
|
}
|
|
50300
50349
|
|
|
50350
|
+
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
50351
|
+
title?: string;
|
|
50352
|
+
description?: string;
|
|
50353
|
+
tags?: Array<string>;
|
|
50354
|
+
areRelationsValid?: boolean;
|
|
50355
|
+
maql: string;
|
|
50356
|
+
}
|
|
50357
|
+
|
|
50301
50358
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
50302
50359
|
data: JsonApiUserDataFilterOut;
|
|
50303
50360
|
links?: ObjectLinks;
|
|
@@ -50318,7 +50375,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
50318
50375
|
export declare interface JsonApiUserDataFilterOutList {
|
|
50319
50376
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
50320
50377
|
links?: ListLinks;
|
|
50321
|
-
meta?:
|
|
50378
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50322
50379
|
/**
|
|
50323
50380
|
* Included resources
|
|
50324
50381
|
*/
|
|
@@ -50326,8 +50383,8 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
50326
50383
|
}
|
|
50327
50384
|
|
|
50328
50385
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
50329
|
-
user?:
|
|
50330
|
-
userGroup?:
|
|
50386
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
50387
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
50331
50388
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
50332
50389
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
50333
50390
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -50351,7 +50408,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
50351
50408
|
*/
|
|
50352
50409
|
id: string;
|
|
50353
50410
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
50354
|
-
attributes:
|
|
50411
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
50355
50412
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
50356
50413
|
links?: ObjectLinks;
|
|
50357
50414
|
}
|
|
@@ -50375,7 +50432,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
50375
50432
|
*/
|
|
50376
50433
|
id: string;
|
|
50377
50434
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
50378
|
-
relationships?:
|
|
50435
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
50379
50436
|
}
|
|
50380
50437
|
|
|
50381
50438
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -50390,6 +50447,15 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
50390
50447
|
data: JsonApiUserDataFilterPatch;
|
|
50391
50448
|
}
|
|
50392
50449
|
|
|
50450
|
+
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
50451
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
50452
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
50453
|
+
}
|
|
50454
|
+
|
|
50455
|
+
export declare interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
50456
|
+
data: JsonApiUserGroupLinkage | null;
|
|
50457
|
+
}
|
|
50458
|
+
|
|
50393
50459
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
50394
50460
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50395
50461
|
};
|
|
@@ -50408,27 +50474,14 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
50408
50474
|
* API identifier of an object
|
|
50409
50475
|
*/
|
|
50410
50476
|
id?: string;
|
|
50411
|
-
attributes:
|
|
50412
|
-
relationships?:
|
|
50413
|
-
}
|
|
50414
|
-
|
|
50415
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
50416
|
-
title?: string;
|
|
50417
|
-
description?: string;
|
|
50418
|
-
tags?: Array<string>;
|
|
50419
|
-
areRelationsValid?: boolean;
|
|
50420
|
-
maql: string;
|
|
50477
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
50478
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
50421
50479
|
}
|
|
50422
50480
|
|
|
50423
50481
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
50424
50482
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
50425
50483
|
}
|
|
50426
50484
|
|
|
50427
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
50428
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
50429
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
50430
|
-
}
|
|
50431
|
-
|
|
50432
50485
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
50433
50486
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
50434
50487
|
};
|
|
@@ -50447,8 +50500,8 @@ export declare interface JsonApiUserGroupIn {
|
|
|
50447
50500
|
* API identifier of an object
|
|
50448
50501
|
*/
|
|
50449
50502
|
id: string;
|
|
50450
|
-
attributes?:
|
|
50451
|
-
relationships?:
|
|
50503
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
50504
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
50452
50505
|
}
|
|
50453
50506
|
|
|
50454
50507
|
export declare interface JsonApiUserGroupInDocument {
|
|
@@ -50487,12 +50540,8 @@ export declare interface JsonApiUserGroupOut {
|
|
|
50487
50540
|
* API identifier of an object
|
|
50488
50541
|
*/
|
|
50489
50542
|
id: string;
|
|
50490
|
-
attributes?:
|
|
50491
|
-
relationships?:
|
|
50492
|
-
}
|
|
50493
|
-
|
|
50494
|
-
export declare interface JsonApiUserGroupOutAttributes {
|
|
50495
|
-
name?: string;
|
|
50543
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
50544
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
50496
50545
|
}
|
|
50497
50546
|
|
|
50498
50547
|
export declare interface JsonApiUserGroupOutDocument {
|
|
@@ -50510,24 +50559,13 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
50510
50559
|
export declare interface JsonApiUserGroupOutList {
|
|
50511
50560
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
50512
50561
|
links?: ListLinks;
|
|
50513
|
-
meta?:
|
|
50562
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50514
50563
|
/**
|
|
50515
50564
|
* Included resources
|
|
50516
50565
|
*/
|
|
50517
50566
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50518
50567
|
}
|
|
50519
50568
|
|
|
50520
|
-
export declare interface JsonApiUserGroupOutRelationships {
|
|
50521
|
-
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
50522
|
-
}
|
|
50523
|
-
|
|
50524
|
-
export declare interface JsonApiUserGroupOutRelationshipsParents {
|
|
50525
|
-
/**
|
|
50526
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50527
|
-
*/
|
|
50528
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
50529
|
-
}
|
|
50530
|
-
|
|
50531
50569
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
50532
50570
|
readonly USER_GROUP: "userGroup";
|
|
50533
50571
|
};
|
|
@@ -50543,8 +50581,8 @@ export declare interface JsonApiUserGroupOutWithLinks {
|
|
|
50543
50581
|
* API identifier of an object
|
|
50544
50582
|
*/
|
|
50545
50583
|
id: string;
|
|
50546
|
-
attributes?:
|
|
50547
|
-
relationships?:
|
|
50584
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
50585
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
50548
50586
|
links?: ObjectLinks;
|
|
50549
50587
|
}
|
|
50550
50588
|
|
|
@@ -50566,14 +50604,29 @@ export declare interface JsonApiUserGroupPatch {
|
|
|
50566
50604
|
* API identifier of an object
|
|
50567
50605
|
*/
|
|
50568
50606
|
id: string;
|
|
50569
|
-
attributes?:
|
|
50570
|
-
relationships?:
|
|
50607
|
+
attributes?: JsonApiUserGroupPatchAttributes;
|
|
50608
|
+
relationships?: JsonApiUserGroupPatchRelationships;
|
|
50609
|
+
}
|
|
50610
|
+
|
|
50611
|
+
export declare interface JsonApiUserGroupPatchAttributes {
|
|
50612
|
+
name?: string;
|
|
50571
50613
|
}
|
|
50572
50614
|
|
|
50573
50615
|
export declare interface JsonApiUserGroupPatchDocument {
|
|
50574
50616
|
data: JsonApiUserGroupPatch;
|
|
50575
50617
|
}
|
|
50576
50618
|
|
|
50619
|
+
export declare interface JsonApiUserGroupPatchRelationships {
|
|
50620
|
+
parents?: JsonApiUserGroupPatchRelationshipsParents;
|
|
50621
|
+
}
|
|
50622
|
+
|
|
50623
|
+
export declare interface JsonApiUserGroupPatchRelationshipsParents {
|
|
50624
|
+
/**
|
|
50625
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50626
|
+
*/
|
|
50627
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
50628
|
+
}
|
|
50629
|
+
|
|
50577
50630
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
50578
50631
|
readonly USER_GROUP: "userGroup";
|
|
50579
50632
|
};
|
|
@@ -50626,7 +50679,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
50626
50679
|
export declare interface JsonApiUserIdentifierOutList {
|
|
50627
50680
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
50628
50681
|
links?: ListLinks;
|
|
50629
|
-
meta?:
|
|
50682
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50630
50683
|
}
|
|
50631
50684
|
|
|
50632
50685
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -50666,8 +50719,8 @@ export declare interface JsonApiUserIn {
|
|
|
50666
50719
|
* API identifier of an object
|
|
50667
50720
|
*/
|
|
50668
50721
|
id: string;
|
|
50669
|
-
attributes?:
|
|
50670
|
-
relationships?:
|
|
50722
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
50723
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
50671
50724
|
}
|
|
50672
50725
|
|
|
50673
50726
|
export declare interface JsonApiUserInDocument {
|
|
@@ -50706,15 +50759,8 @@ export declare interface JsonApiUserOut {
|
|
|
50706
50759
|
* API identifier of an object
|
|
50707
50760
|
*/
|
|
50708
50761
|
id: string;
|
|
50709
|
-
attributes?:
|
|
50710
|
-
relationships?:
|
|
50711
|
-
}
|
|
50712
|
-
|
|
50713
|
-
export declare interface JsonApiUserOutAttributes {
|
|
50714
|
-
authenticationId?: string;
|
|
50715
|
-
firstname?: string;
|
|
50716
|
-
lastname?: string;
|
|
50717
|
-
email?: string;
|
|
50762
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
50763
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
50718
50764
|
}
|
|
50719
50765
|
|
|
50720
50766
|
export declare interface JsonApiUserOutDocument {
|
|
@@ -50732,17 +50778,13 @@ export declare interface JsonApiUserOutDocument {
|
|
|
50732
50778
|
export declare interface JsonApiUserOutList {
|
|
50733
50779
|
data: Array<JsonApiUserOutWithLinks>;
|
|
50734
50780
|
links?: ListLinks;
|
|
50735
|
-
meta?:
|
|
50781
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50736
50782
|
/**
|
|
50737
50783
|
* Included resources
|
|
50738
50784
|
*/
|
|
50739
50785
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
50740
50786
|
}
|
|
50741
50787
|
|
|
50742
|
-
export declare interface JsonApiUserOutRelationships {
|
|
50743
|
-
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
50744
|
-
}
|
|
50745
|
-
|
|
50746
50788
|
export declare const JsonApiUserOutTypeEnum: {
|
|
50747
50789
|
readonly USER: "user";
|
|
50748
50790
|
};
|
|
@@ -50758,8 +50800,8 @@ export declare interface JsonApiUserOutWithLinks {
|
|
|
50758
50800
|
* API identifier of an object
|
|
50759
50801
|
*/
|
|
50760
50802
|
id: string;
|
|
50761
|
-
attributes?:
|
|
50762
|
-
relationships?:
|
|
50803
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
50804
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
50763
50805
|
links?: ObjectLinks;
|
|
50764
50806
|
}
|
|
50765
50807
|
|
|
@@ -50781,14 +50823,25 @@ export declare interface JsonApiUserPatch {
|
|
|
50781
50823
|
* API identifier of an object
|
|
50782
50824
|
*/
|
|
50783
50825
|
id: string;
|
|
50784
|
-
attributes?:
|
|
50785
|
-
relationships?:
|
|
50826
|
+
attributes?: JsonApiUserPatchAttributes;
|
|
50827
|
+
relationships?: JsonApiUserPatchRelationships;
|
|
50828
|
+
}
|
|
50829
|
+
|
|
50830
|
+
export declare interface JsonApiUserPatchAttributes {
|
|
50831
|
+
authenticationId?: string;
|
|
50832
|
+
firstname?: string;
|
|
50833
|
+
lastname?: string;
|
|
50834
|
+
email?: string;
|
|
50786
50835
|
}
|
|
50787
50836
|
|
|
50788
50837
|
export declare interface JsonApiUserPatchDocument {
|
|
50789
50838
|
data: JsonApiUserPatch;
|
|
50790
50839
|
}
|
|
50791
50840
|
|
|
50841
|
+
export declare interface JsonApiUserPatchRelationships {
|
|
50842
|
+
userGroups?: JsonApiUserGroupPatchRelationshipsParents;
|
|
50843
|
+
}
|
|
50844
|
+
|
|
50792
50845
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
50793
50846
|
readonly USER: "user";
|
|
50794
50847
|
};
|
|
@@ -50807,7 +50860,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
50807
50860
|
* API identifier of an object
|
|
50808
50861
|
*/
|
|
50809
50862
|
id: string;
|
|
50810
|
-
attributes?:
|
|
50863
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50811
50864
|
}
|
|
50812
50865
|
|
|
50813
50866
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -50832,7 +50885,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
50832
50885
|
* API identifier of an object
|
|
50833
50886
|
*/
|
|
50834
50887
|
id: string;
|
|
50835
|
-
attributes?:
|
|
50888
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50836
50889
|
}
|
|
50837
50890
|
|
|
50838
50891
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -50846,7 +50899,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
50846
50899
|
export declare interface JsonApiUserSettingOutList {
|
|
50847
50900
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
50848
50901
|
links?: ListLinks;
|
|
50849
|
-
meta?:
|
|
50902
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50850
50903
|
}
|
|
50851
50904
|
|
|
50852
50905
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -50864,7 +50917,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
50864
50917
|
* API identifier of an object
|
|
50865
50918
|
*/
|
|
50866
50919
|
id: string;
|
|
50867
|
-
attributes?:
|
|
50920
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
50868
50921
|
links?: ObjectLinks;
|
|
50869
50922
|
}
|
|
50870
50923
|
|
|
@@ -50886,7 +50939,19 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
50886
50939
|
* API identifier of an object
|
|
50887
50940
|
*/
|
|
50888
50941
|
id: string;
|
|
50889
|
-
attributes:
|
|
50942
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
50943
|
+
}
|
|
50944
|
+
|
|
50945
|
+
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
50946
|
+
title?: string;
|
|
50947
|
+
description?: string;
|
|
50948
|
+
tags?: Array<string>;
|
|
50949
|
+
areRelationsValid?: boolean;
|
|
50950
|
+
/**
|
|
50951
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50952
|
+
*/
|
|
50953
|
+
content: object;
|
|
50954
|
+
isHidden?: boolean;
|
|
50890
50955
|
}
|
|
50891
50956
|
|
|
50892
50957
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -50959,7 +51024,7 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
50959
51024
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
50960
51025
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
50961
51026
|
links?: ListLinks;
|
|
50962
|
-
meta?:
|
|
51027
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
50963
51028
|
/**
|
|
50964
51029
|
* Included resources
|
|
50965
51030
|
*/
|
|
@@ -51113,19 +51178,7 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
51113
51178
|
* API identifier of an object
|
|
51114
51179
|
*/
|
|
51115
51180
|
id?: string;
|
|
51116
|
-
attributes:
|
|
51117
|
-
}
|
|
51118
|
-
|
|
51119
|
-
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
51120
|
-
title?: string;
|
|
51121
|
-
description?: string;
|
|
51122
|
-
tags?: Array<string>;
|
|
51123
|
-
areRelationsValid?: boolean;
|
|
51124
|
-
/**
|
|
51125
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51126
|
-
*/
|
|
51127
|
-
content: object;
|
|
51128
|
-
isHidden?: boolean;
|
|
51181
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
51129
51182
|
}
|
|
51130
51183
|
|
|
51131
51184
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -51165,21 +51218,25 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
51165
51218
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
51166
51219
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
51167
51220
|
links?: ListLinks;
|
|
51168
|
-
meta?:
|
|
51221
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
51169
51222
|
/**
|
|
51170
51223
|
* Included resources
|
|
51171
51224
|
*/
|
|
51172
51225
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
51173
51226
|
}
|
|
51174
51227
|
|
|
51228
|
+
export declare interface JsonApiWorkspaceAutomationOutListMeta {
|
|
51229
|
+
page?: PageMetadata;
|
|
51230
|
+
}
|
|
51231
|
+
|
|
51175
51232
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
51176
|
-
workspace?:
|
|
51177
|
-
notificationChannel?:
|
|
51178
|
-
analyticalDashboard?:
|
|
51233
|
+
workspace?: JsonApiWorkspacePatchRelationshipsParent;
|
|
51234
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
51235
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
51179
51236
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
51180
51237
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
51181
|
-
exportDefinitions?:
|
|
51182
|
-
recipients?:
|
|
51238
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
51239
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
51183
51240
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
51184
51241
|
}
|
|
51185
51242
|
|
|
@@ -51287,7 +51344,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
51287
51344
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
51288
51345
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
51289
51346
|
links?: ListLinks;
|
|
51290
|
-
meta?:
|
|
51347
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
51291
51348
|
/**
|
|
51292
51349
|
* Included resources
|
|
51293
51350
|
*/
|
|
@@ -51370,28 +51427,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
51370
51427
|
* API identifier of an object
|
|
51371
51428
|
*/
|
|
51372
51429
|
id: string;
|
|
51373
|
-
attributes?:
|
|
51374
|
-
relationships?:
|
|
51375
|
-
}
|
|
51376
|
-
|
|
51377
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
51378
|
-
title?: string;
|
|
51379
|
-
description?: string;
|
|
51380
|
-
filterValues?: Array<string>;
|
|
51430
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
51431
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
51381
51432
|
}
|
|
51382
51433
|
|
|
51383
51434
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
51384
51435
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
51385
51436
|
}
|
|
51386
51437
|
|
|
51387
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
51388
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
51389
|
-
}
|
|
51390
|
-
|
|
51391
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
51392
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
51393
|
-
}
|
|
51394
|
-
|
|
51395
51438
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
51396
51439
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
51397
51440
|
};
|
|
@@ -51425,8 +51468,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
51425
51468
|
*/
|
|
51426
51469
|
id: string;
|
|
51427
51470
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51428
|
-
attributes?:
|
|
51429
|
-
relationships?:
|
|
51471
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
51472
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
51430
51473
|
}
|
|
51431
51474
|
|
|
51432
51475
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -51444,7 +51487,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
51444
51487
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
51445
51488
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
51446
51489
|
links?: ListLinks;
|
|
51447
|
-
meta?:
|
|
51490
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
51448
51491
|
/**
|
|
51449
51492
|
* Included resources
|
|
51450
51493
|
*/
|
|
@@ -51467,8 +51510,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
51467
51510
|
*/
|
|
51468
51511
|
id: string;
|
|
51469
51512
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51470
|
-
attributes?:
|
|
51471
|
-
relationships?:
|
|
51513
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
51514
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
51472
51515
|
links?: ObjectLinks;
|
|
51473
51516
|
}
|
|
51474
51517
|
|
|
@@ -51490,14 +51533,28 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
51490
51533
|
* API identifier of an object
|
|
51491
51534
|
*/
|
|
51492
51535
|
id: string;
|
|
51493
|
-
attributes?:
|
|
51494
|
-
relationships?:
|
|
51536
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
51537
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
51538
|
+
}
|
|
51539
|
+
|
|
51540
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
51541
|
+
title?: string;
|
|
51542
|
+
description?: string;
|
|
51543
|
+
filterValues?: Array<string>;
|
|
51495
51544
|
}
|
|
51496
51545
|
|
|
51497
51546
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
51498
51547
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
51499
51548
|
}
|
|
51500
51549
|
|
|
51550
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
51551
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
51552
|
+
}
|
|
51553
|
+
|
|
51554
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
51555
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
51556
|
+
}
|
|
51557
|
+
|
|
51501
51558
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
51502
51559
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
51503
51560
|
};
|
|
@@ -51516,8 +51573,8 @@ export declare interface JsonApiWorkspaceIn {
|
|
|
51516
51573
|
* API identifier of an object
|
|
51517
51574
|
*/
|
|
51518
51575
|
id: string;
|
|
51519
|
-
attributes?:
|
|
51520
|
-
relationships?:
|
|
51576
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
51577
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
51521
51578
|
}
|
|
51522
51579
|
|
|
51523
51580
|
export declare interface JsonApiWorkspaceInDocument {
|
|
@@ -51557,42 +51614,8 @@ export declare interface JsonApiWorkspaceOut {
|
|
|
51557
51614
|
*/
|
|
51558
51615
|
id: string;
|
|
51559
51616
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51560
|
-
attributes?:
|
|
51561
|
-
relationships?:
|
|
51562
|
-
}
|
|
51563
|
-
|
|
51564
|
-
export declare interface JsonApiWorkspaceOutAttributes {
|
|
51565
|
-
name?: string | null;
|
|
51566
|
-
/**
|
|
51567
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51568
|
-
* @deprecated
|
|
51569
|
-
*/
|
|
51570
|
-
earlyAccess?: string | null;
|
|
51571
|
-
/**
|
|
51572
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
51573
|
-
*/
|
|
51574
|
-
earlyAccessValues?: Array<string> | null;
|
|
51575
|
-
description?: string | null;
|
|
51576
|
-
/**
|
|
51577
|
-
* Custom prefix of entity identifiers in workspace
|
|
51578
|
-
*/
|
|
51579
|
-
prefix?: string | null;
|
|
51580
|
-
cacheExtraLimit?: number;
|
|
51581
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
51582
|
-
}
|
|
51583
|
-
|
|
51584
|
-
/**
|
|
51585
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51586
|
-
*/
|
|
51587
|
-
export declare interface JsonApiWorkspaceOutAttributesDataSource {
|
|
51588
|
-
/**
|
|
51589
|
-
* The ID of the used data source.
|
|
51590
|
-
*/
|
|
51591
|
-
id: string;
|
|
51592
|
-
/**
|
|
51593
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51594
|
-
*/
|
|
51595
|
-
schemaPath?: Array<string>;
|
|
51617
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
51618
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
51596
51619
|
}
|
|
51597
51620
|
|
|
51598
51621
|
export declare interface JsonApiWorkspaceOutDocument {
|
|
@@ -51610,7 +51633,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
51610
51633
|
export declare interface JsonApiWorkspaceOutList {
|
|
51611
51634
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
51612
51635
|
links?: ListLinks;
|
|
51613
|
-
meta?:
|
|
51636
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
51614
51637
|
/**
|
|
51615
51638
|
* Included resources
|
|
51616
51639
|
*/
|
|
@@ -51670,14 +51693,6 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
51670
51693
|
|
|
51671
51694
|
export declare type JsonApiWorkspaceOutMetaPermissionsEnum = (typeof JsonApiWorkspaceOutMetaPermissionsEnum)[keyof typeof JsonApiWorkspaceOutMetaPermissionsEnum];
|
|
51672
51695
|
|
|
51673
|
-
export declare interface JsonApiWorkspaceOutRelationships {
|
|
51674
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
51675
|
-
}
|
|
51676
|
-
|
|
51677
|
-
export declare interface JsonApiWorkspaceOutRelationshipsParent {
|
|
51678
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
51679
|
-
}
|
|
51680
|
-
|
|
51681
51696
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
51682
51697
|
readonly WORKSPACE: "workspace";
|
|
51683
51698
|
};
|
|
@@ -51694,8 +51709,8 @@ export declare interface JsonApiWorkspaceOutWithLinks {
|
|
|
51694
51709
|
*/
|
|
51695
51710
|
id: string;
|
|
51696
51711
|
meta?: JsonApiWorkspaceOutMeta;
|
|
51697
|
-
attributes?:
|
|
51698
|
-
relationships?:
|
|
51712
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
51713
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
51699
51714
|
links?: ObjectLinks;
|
|
51700
51715
|
}
|
|
51701
51716
|
|
|
@@ -51717,14 +51732,56 @@ export declare interface JsonApiWorkspacePatch {
|
|
|
51717
51732
|
* API identifier of an object
|
|
51718
51733
|
*/
|
|
51719
51734
|
id: string;
|
|
51720
|
-
attributes?:
|
|
51721
|
-
relationships?:
|
|
51735
|
+
attributes?: JsonApiWorkspacePatchAttributes;
|
|
51736
|
+
relationships?: JsonApiWorkspacePatchRelationships;
|
|
51737
|
+
}
|
|
51738
|
+
|
|
51739
|
+
export declare interface JsonApiWorkspacePatchAttributes {
|
|
51740
|
+
name?: string | null;
|
|
51741
|
+
/**
|
|
51742
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
51743
|
+
* @deprecated
|
|
51744
|
+
*/
|
|
51745
|
+
earlyAccess?: string | null;
|
|
51746
|
+
/**
|
|
51747
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
51748
|
+
*/
|
|
51749
|
+
earlyAccessValues?: Array<string> | null;
|
|
51750
|
+
description?: string | null;
|
|
51751
|
+
/**
|
|
51752
|
+
* Custom prefix of entity identifiers in workspace
|
|
51753
|
+
*/
|
|
51754
|
+
prefix?: string | null;
|
|
51755
|
+
cacheExtraLimit?: number;
|
|
51756
|
+
dataSource?: JsonApiWorkspacePatchAttributesDataSource;
|
|
51757
|
+
}
|
|
51758
|
+
|
|
51759
|
+
/**
|
|
51760
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
51761
|
+
*/
|
|
51762
|
+
export declare interface JsonApiWorkspacePatchAttributesDataSource {
|
|
51763
|
+
/**
|
|
51764
|
+
* The ID of the used data source.
|
|
51765
|
+
*/
|
|
51766
|
+
id: string;
|
|
51767
|
+
/**
|
|
51768
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
51769
|
+
*/
|
|
51770
|
+
schemaPath?: Array<string>;
|
|
51722
51771
|
}
|
|
51723
51772
|
|
|
51724
51773
|
export declare interface JsonApiWorkspacePatchDocument {
|
|
51725
51774
|
data: JsonApiWorkspacePatch;
|
|
51726
51775
|
}
|
|
51727
51776
|
|
|
51777
|
+
export declare interface JsonApiWorkspacePatchRelationships {
|
|
51778
|
+
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
51779
|
+
}
|
|
51780
|
+
|
|
51781
|
+
export declare interface JsonApiWorkspacePatchRelationshipsParent {
|
|
51782
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
51783
|
+
}
|
|
51784
|
+
|
|
51728
51785
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
51729
51786
|
readonly WORKSPACE: "workspace";
|
|
51730
51787
|
};
|
|
@@ -51743,7 +51800,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
51743
51800
|
* API identifier of an object
|
|
51744
51801
|
*/
|
|
51745
51802
|
id: string;
|
|
51746
|
-
attributes?:
|
|
51803
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
51747
51804
|
}
|
|
51748
51805
|
|
|
51749
51806
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -51769,7 +51826,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
51769
51826
|
*/
|
|
51770
51827
|
id: string;
|
|
51771
51828
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51772
|
-
attributes?:
|
|
51829
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
51773
51830
|
}
|
|
51774
51831
|
|
|
51775
51832
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -51783,7 +51840,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
51783
51840
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
51784
51841
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
51785
51842
|
links?: ListLinks;
|
|
51786
|
-
meta?:
|
|
51843
|
+
meta?: JsonApiWorkspaceAutomationOutListMeta;
|
|
51787
51844
|
}
|
|
51788
51845
|
|
|
51789
51846
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -51802,7 +51859,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
51802
51859
|
*/
|
|
51803
51860
|
id: string;
|
|
51804
51861
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51805
|
-
attributes?:
|
|
51862
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
51806
51863
|
links?: ObjectLinks;
|
|
51807
51864
|
}
|
|
51808
51865
|
|
|
@@ -51824,7 +51881,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
51824
51881
|
* API identifier of an object
|
|
51825
51882
|
*/
|
|
51826
51883
|
id: string;
|
|
51827
|
-
attributes?:
|
|
51884
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
51828
51885
|
}
|
|
51829
51886
|
|
|
51830
51887
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -51849,7 +51906,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
51849
51906
|
* API identifier of an object
|
|
51850
51907
|
*/
|
|
51851
51908
|
id?: string;
|
|
51852
|
-
attributes?:
|
|
51909
|
+
attributes?: JsonApiOrganizationSettingPatchAttributes;
|
|
51853
51910
|
}
|
|
51854
51911
|
|
|
51855
51912
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -52353,6 +52410,7 @@ export declare const KeyDriversDimensionValueTypeEnum: {
|
|
|
52353
52410
|
readonly GEO: "GEO";
|
|
52354
52411
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
52355
52412
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
52413
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
52356
52414
|
readonly IMAGE: "IMAGE";
|
|
52357
52415
|
};
|
|
52358
52416
|
|
|
@@ -68549,6 +68607,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
68549
68607
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
68550
68608
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
68551
68609
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
68610
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
68552
68611
|
};
|
|
68553
68612
|
|
|
68554
68613
|
export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
@@ -68697,6 +68756,7 @@ export declare const RouteResultUseCaseEnum: {
|
|
|
68697
68756
|
readonly CREATE_VISUALIZATION: "CREATE_VISUALIZATION";
|
|
68698
68757
|
readonly EXTEND_VISUALIZATION: "EXTEND_VISUALIZATION";
|
|
68699
68758
|
readonly HOWTO: "HOWTO";
|
|
68759
|
+
readonly CHANGE_ANALYSIS: "CHANGE_ANALYSIS";
|
|
68700
68760
|
};
|
|
68701
68761
|
|
|
68702
68762
|
export declare type RouteResultUseCaseEnum = (typeof RouteResultUseCaseEnum)[keyof typeof RouteResultUseCaseEnum];
|
|
@@ -68786,10 +68846,6 @@ export declare interface ScanApiSqlColumn {
|
|
|
68786
68846
|
* Column type
|
|
68787
68847
|
*/
|
|
68788
68848
|
dataType: ScanApiSqlColumnDataTypeEnum;
|
|
68789
|
-
/**
|
|
68790
|
-
* Column description/comment from database
|
|
68791
|
-
*/
|
|
68792
|
-
description?: string;
|
|
68793
68849
|
}
|
|
68794
68850
|
|
|
68795
68851
|
export declare const ScanApiSqlColumnDataTypeEnum: {
|
|
@@ -68973,10 +69029,6 @@ export declare interface ScanModelDeclarativeColumn {
|
|
|
68973
69029
|
* Referenced table (Foreign key)
|
|
68974
69030
|
*/
|
|
68975
69031
|
referencedTableColumn?: string;
|
|
68976
|
-
/**
|
|
68977
|
-
* Column description
|
|
68978
|
-
*/
|
|
68979
|
-
description?: string;
|
|
68980
69032
|
}
|
|
68981
69033
|
|
|
68982
69034
|
export declare const ScanModelDeclarativeColumnDataTypeEnum: {
|