@gooddata/api-client-tiger 10.38.0-alpha.2 → 10.39.0-alpha.1
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 +1393 -730
- package/esm/generated/afm-rest-api/api.d.ts +16 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +9 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +13 -0
- package/esm/generated/automation-json-api/api.d.ts +58 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +26 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +46 -0
- package/esm/generated/export-json-api/api.d.ts +58 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +26 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +46 -0
- package/esm/generated/metadata-json-api/api.d.ts +1212 -713
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +424 -57
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +4558 -4311
- package/esm/generated/scan-json-api/api.d.ts +1 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +1 -0
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/scan-json-api/configuration.js +2 -14
- package/esm/generated/scan-json-api/configuration.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +2 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1273,6 +1273,12 @@ export interface DashboardDateFilterDateFilter {
|
|
|
1273
1273
|
* @memberof DashboardDateFilterDateFilter
|
|
1274
1274
|
*/
|
|
1275
1275
|
attribute?: IdentifierRef;
|
|
1276
|
+
/**
|
|
1277
|
+
*
|
|
1278
|
+
* @type {RelativeBoundedDateFilter}
|
|
1279
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1280
|
+
*/
|
|
1281
|
+
boundedFilter?: RelativeBoundedDateFilter;
|
|
1276
1282
|
/**
|
|
1277
1283
|
*
|
|
1278
1284
|
* @type {string}
|
|
@@ -2554,6 +2560,7 @@ export declare const DeclarativeDataSourceTypeEnum: {
|
|
|
2554
2560
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
2555
2561
|
readonly STARROCKS: "STARROCKS";
|
|
2556
2562
|
readonly ATHENA: "ATHENA";
|
|
2563
|
+
readonly MONGODB: "MONGODB";
|
|
2557
2564
|
};
|
|
2558
2565
|
export type DeclarativeDataSourceTypeEnum = (typeof DeclarativeDataSourceTypeEnum)[keyof typeof DeclarativeDataSourceTypeEnum];
|
|
2559
2566
|
export declare const DeclarativeDataSourceCacheStrategyEnum: {
|
|
@@ -3934,6 +3941,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
3934
3941
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
3935
3942
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
3936
3943
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
3944
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
3937
3945
|
};
|
|
3938
3946
|
export type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
3939
3947
|
/**
|
|
@@ -5355,6 +5363,7 @@ export declare const IdentifierRefIdentifierTypeEnum: {
|
|
|
5355
5363
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
5356
5364
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5357
5365
|
readonly AUTOMATION: "automation";
|
|
5366
|
+
readonly AUTOMATION_RESULT: "automationResult";
|
|
5358
5367
|
readonly PROMPT: "prompt";
|
|
5359
5368
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
5360
5369
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5714,10 +5723,10 @@ export interface JsonApiAggregatedFactOutList {
|
|
|
5714
5723
|
links?: ListLinks;
|
|
5715
5724
|
/**
|
|
5716
5725
|
*
|
|
5717
|
-
* @type {
|
|
5726
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5718
5727
|
* @memberof JsonApiAggregatedFactOutList
|
|
5719
5728
|
*/
|
|
5720
|
-
meta?:
|
|
5729
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5721
5730
|
/**
|
|
5722
5731
|
* Included resources
|
|
5723
5732
|
* @type {Array<JsonApiAggregatedFactOutIncludes>}
|
|
@@ -5725,19 +5734,6 @@ export interface JsonApiAggregatedFactOutList {
|
|
|
5725
5734
|
*/
|
|
5726
5735
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
5727
5736
|
}
|
|
5728
|
-
/**
|
|
5729
|
-
*
|
|
5730
|
-
* @export
|
|
5731
|
-
* @interface JsonApiAggregatedFactOutListMeta
|
|
5732
|
-
*/
|
|
5733
|
-
export interface JsonApiAggregatedFactOutListMeta {
|
|
5734
|
-
/**
|
|
5735
|
-
*
|
|
5736
|
-
* @type {PageMetadata}
|
|
5737
|
-
* @memberof JsonApiAggregatedFactOutListMeta
|
|
5738
|
-
*/
|
|
5739
|
-
page?: PageMetadata;
|
|
5740
|
-
}
|
|
5741
5737
|
/**
|
|
5742
5738
|
*
|
|
5743
5739
|
* @export
|
|
@@ -5837,15 +5833,52 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
5837
5833
|
id: string;
|
|
5838
5834
|
/**
|
|
5839
5835
|
*
|
|
5840
|
-
* @type {
|
|
5836
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5841
5837
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
5842
5838
|
*/
|
|
5843
|
-
attributes:
|
|
5839
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5844
5840
|
}
|
|
5845
5841
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
5846
5842
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5847
5843
|
};
|
|
5848
5844
|
export type JsonApiAnalyticalDashboardInTypeEnum = (typeof JsonApiAnalyticalDashboardInTypeEnum)[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
5845
|
+
/**
|
|
5846
|
+
*
|
|
5847
|
+
* @export
|
|
5848
|
+
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
5849
|
+
*/
|
|
5850
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
5851
|
+
/**
|
|
5852
|
+
*
|
|
5853
|
+
* @type {string}
|
|
5854
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5855
|
+
*/
|
|
5856
|
+
title?: string;
|
|
5857
|
+
/**
|
|
5858
|
+
*
|
|
5859
|
+
* @type {string}
|
|
5860
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5861
|
+
*/
|
|
5862
|
+
description?: string;
|
|
5863
|
+
/**
|
|
5864
|
+
*
|
|
5865
|
+
* @type {Array<string>}
|
|
5866
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5867
|
+
*/
|
|
5868
|
+
tags?: Array<string>;
|
|
5869
|
+
/**
|
|
5870
|
+
*
|
|
5871
|
+
* @type {boolean}
|
|
5872
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5873
|
+
*/
|
|
5874
|
+
areRelationsValid?: boolean;
|
|
5875
|
+
/**
|
|
5876
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5877
|
+
* @type {object}
|
|
5878
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5879
|
+
*/
|
|
5880
|
+
content: object;
|
|
5881
|
+
}
|
|
5849
5882
|
/**
|
|
5850
5883
|
*
|
|
5851
5884
|
* @export
|
|
@@ -5973,10 +6006,10 @@ export interface JsonApiAnalyticalDashboardOutList {
|
|
|
5973
6006
|
links?: ListLinks;
|
|
5974
6007
|
/**
|
|
5975
6008
|
*
|
|
5976
|
-
* @type {
|
|
6009
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5977
6010
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
5978
6011
|
*/
|
|
5979
|
-
meta?:
|
|
6012
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5980
6013
|
/**
|
|
5981
6014
|
* Included resources
|
|
5982
6015
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -6287,52 +6320,15 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
6287
6320
|
id?: string;
|
|
6288
6321
|
/**
|
|
6289
6322
|
*
|
|
6290
|
-
* @type {
|
|
6323
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
6291
6324
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
6292
6325
|
*/
|
|
6293
|
-
attributes:
|
|
6326
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
6294
6327
|
}
|
|
6295
6328
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
6296
6329
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
6297
6330
|
};
|
|
6298
6331
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
|
|
6299
|
-
/**
|
|
6300
|
-
*
|
|
6301
|
-
* @export
|
|
6302
|
-
* @interface JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6303
|
-
*/
|
|
6304
|
-
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
6305
|
-
/**
|
|
6306
|
-
*
|
|
6307
|
-
* @type {string}
|
|
6308
|
-
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6309
|
-
*/
|
|
6310
|
-
title?: string;
|
|
6311
|
-
/**
|
|
6312
|
-
*
|
|
6313
|
-
* @type {string}
|
|
6314
|
-
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6315
|
-
*/
|
|
6316
|
-
description?: string;
|
|
6317
|
-
/**
|
|
6318
|
-
*
|
|
6319
|
-
* @type {Array<string>}
|
|
6320
|
-
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6321
|
-
*/
|
|
6322
|
-
tags?: Array<string>;
|
|
6323
|
-
/**
|
|
6324
|
-
*
|
|
6325
|
-
* @type {boolean}
|
|
6326
|
-
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6327
|
-
*/
|
|
6328
|
-
areRelationsValid?: boolean;
|
|
6329
|
-
/**
|
|
6330
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
6331
|
-
* @type {object}
|
|
6332
|
-
* @memberof JsonApiAnalyticalDashboardPostOptionalIdAttributes
|
|
6333
|
-
*/
|
|
6334
|
-
content: object;
|
|
6335
|
-
}
|
|
6336
6332
|
/**
|
|
6337
6333
|
*
|
|
6338
6334
|
* @export
|
|
@@ -6469,10 +6465,23 @@ export interface JsonApiApiTokenOutList {
|
|
|
6469
6465
|
links?: ListLinks;
|
|
6470
6466
|
/**
|
|
6471
6467
|
*
|
|
6472
|
-
* @type {
|
|
6468
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6473
6469
|
* @memberof JsonApiApiTokenOutList
|
|
6474
6470
|
*/
|
|
6475
|
-
meta?:
|
|
6471
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6472
|
+
}
|
|
6473
|
+
/**
|
|
6474
|
+
*
|
|
6475
|
+
* @export
|
|
6476
|
+
* @interface JsonApiApiTokenOutListMeta
|
|
6477
|
+
*/
|
|
6478
|
+
export interface JsonApiApiTokenOutListMeta {
|
|
6479
|
+
/**
|
|
6480
|
+
*
|
|
6481
|
+
* @type {PageMetadata}
|
|
6482
|
+
* @memberof JsonApiApiTokenOutListMeta
|
|
6483
|
+
*/
|
|
6484
|
+
page?: PageMetadata;
|
|
6476
6485
|
}
|
|
6477
6486
|
/**
|
|
6478
6487
|
*
|
|
@@ -6751,10 +6760,10 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
6751
6760
|
links?: ListLinks;
|
|
6752
6761
|
/**
|
|
6753
6762
|
*
|
|
6754
|
-
* @type {
|
|
6763
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6755
6764
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
6756
6765
|
*/
|
|
6757
|
-
meta?:
|
|
6766
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6758
6767
|
/**
|
|
6759
6768
|
* Included resources
|
|
6760
6769
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -7085,10 +7094,10 @@ export interface JsonApiAttributeOutList {
|
|
|
7085
7094
|
links?: ListLinks;
|
|
7086
7095
|
/**
|
|
7087
7096
|
*
|
|
7088
|
-
* @type {
|
|
7097
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7089
7098
|
* @memberof JsonApiAttributeOutList
|
|
7090
7099
|
*/
|
|
7091
|
-
meta?:
|
|
7100
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7092
7101
|
/**
|
|
7093
7102
|
* Included resources
|
|
7094
7103
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -7842,7 +7851,7 @@ export interface JsonApiAutomationOutDocument {
|
|
|
7842
7851
|
* @type JsonApiAutomationOutIncludes
|
|
7843
7852
|
* @export
|
|
7844
7853
|
*/
|
|
7845
|
-
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7854
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiAutomationResultOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7846
7855
|
/**
|
|
7847
7856
|
* A JSON:API document with a list of resources
|
|
7848
7857
|
* @export
|
|
@@ -7863,10 +7872,10 @@ export interface JsonApiAutomationOutList {
|
|
|
7863
7872
|
links?: ListLinks;
|
|
7864
7873
|
/**
|
|
7865
7874
|
*
|
|
7866
|
-
* @type {
|
|
7875
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7867
7876
|
* @memberof JsonApiAutomationOutList
|
|
7868
7877
|
*/
|
|
7869
|
-
meta?:
|
|
7878
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7870
7879
|
/**
|
|
7871
7880
|
* Included resources
|
|
7872
7881
|
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
@@ -7916,6 +7925,25 @@ export interface JsonApiAutomationOutRelationships {
|
|
|
7916
7925
|
* @memberof JsonApiAutomationOutRelationships
|
|
7917
7926
|
*/
|
|
7918
7927
|
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
7928
|
+
/**
|
|
7929
|
+
*
|
|
7930
|
+
* @type {JsonApiAutomationOutRelationshipsAutomationResult}
|
|
7931
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7932
|
+
*/
|
|
7933
|
+
automationResult?: JsonApiAutomationOutRelationshipsAutomationResult;
|
|
7934
|
+
}
|
|
7935
|
+
/**
|
|
7936
|
+
*
|
|
7937
|
+
* @export
|
|
7938
|
+
* @interface JsonApiAutomationOutRelationshipsAutomationResult
|
|
7939
|
+
*/
|
|
7940
|
+
export interface JsonApiAutomationOutRelationshipsAutomationResult {
|
|
7941
|
+
/**
|
|
7942
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7943
|
+
* @type {Array<JsonApiAutomationResultLinkage>}
|
|
7944
|
+
* @memberof JsonApiAutomationOutRelationshipsAutomationResult
|
|
7945
|
+
*/
|
|
7946
|
+
data: Array<JsonApiAutomationResultLinkage>;
|
|
7919
7947
|
}
|
|
7920
7948
|
/**
|
|
7921
7949
|
*
|
|
@@ -8012,6 +8040,142 @@ export interface JsonApiAutomationPatchDocument {
|
|
|
8012
8040
|
*/
|
|
8013
8041
|
data: JsonApiAutomationPatch;
|
|
8014
8042
|
}
|
|
8043
|
+
/**
|
|
8044
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8045
|
+
* @export
|
|
8046
|
+
* @interface JsonApiAutomationResultLinkage
|
|
8047
|
+
*/
|
|
8048
|
+
export interface JsonApiAutomationResultLinkage {
|
|
8049
|
+
/**
|
|
8050
|
+
*
|
|
8051
|
+
* @type {string}
|
|
8052
|
+
* @memberof JsonApiAutomationResultLinkage
|
|
8053
|
+
*/
|
|
8054
|
+
id: string;
|
|
8055
|
+
/**
|
|
8056
|
+
*
|
|
8057
|
+
* @type {string}
|
|
8058
|
+
* @memberof JsonApiAutomationResultLinkage
|
|
8059
|
+
*/
|
|
8060
|
+
type: JsonApiAutomationResultLinkageTypeEnum;
|
|
8061
|
+
}
|
|
8062
|
+
export declare const JsonApiAutomationResultLinkageTypeEnum: {
|
|
8063
|
+
readonly AUTOMATION_RESULT: "automationResult";
|
|
8064
|
+
};
|
|
8065
|
+
export type JsonApiAutomationResultLinkageTypeEnum = (typeof JsonApiAutomationResultLinkageTypeEnum)[keyof typeof JsonApiAutomationResultLinkageTypeEnum];
|
|
8066
|
+
/**
|
|
8067
|
+
* JSON:API representation of automationResult entity.
|
|
8068
|
+
* @export
|
|
8069
|
+
* @interface JsonApiAutomationResultOut
|
|
8070
|
+
*/
|
|
8071
|
+
export interface JsonApiAutomationResultOut {
|
|
8072
|
+
/**
|
|
8073
|
+
* Object type
|
|
8074
|
+
* @type {string}
|
|
8075
|
+
* @memberof JsonApiAutomationResultOut
|
|
8076
|
+
*/
|
|
8077
|
+
type: JsonApiAutomationResultOutTypeEnum;
|
|
8078
|
+
/**
|
|
8079
|
+
* API identifier of an object
|
|
8080
|
+
* @type {string}
|
|
8081
|
+
* @memberof JsonApiAutomationResultOut
|
|
8082
|
+
*/
|
|
8083
|
+
id: string;
|
|
8084
|
+
/**
|
|
8085
|
+
*
|
|
8086
|
+
* @type {JsonApiAutomationResultOutAttributes}
|
|
8087
|
+
* @memberof JsonApiAutomationResultOut
|
|
8088
|
+
*/
|
|
8089
|
+
attributes: JsonApiAutomationResultOutAttributes;
|
|
8090
|
+
/**
|
|
8091
|
+
*
|
|
8092
|
+
* @type {JsonApiAutomationResultOutRelationships}
|
|
8093
|
+
* @memberof JsonApiAutomationResultOut
|
|
8094
|
+
*/
|
|
8095
|
+
relationships?: JsonApiAutomationResultOutRelationships;
|
|
8096
|
+
}
|
|
8097
|
+
export declare const JsonApiAutomationResultOutTypeEnum: {
|
|
8098
|
+
readonly AUTOMATION_RESULT: "automationResult";
|
|
8099
|
+
};
|
|
8100
|
+
export type JsonApiAutomationResultOutTypeEnum = (typeof JsonApiAutomationResultOutTypeEnum)[keyof typeof JsonApiAutomationResultOutTypeEnum];
|
|
8101
|
+
/**
|
|
8102
|
+
*
|
|
8103
|
+
* @export
|
|
8104
|
+
* @interface JsonApiAutomationResultOutAttributes
|
|
8105
|
+
*/
|
|
8106
|
+
export interface JsonApiAutomationResultOutAttributes {
|
|
8107
|
+
/**
|
|
8108
|
+
* Status of the last automation run.
|
|
8109
|
+
* @type {string}
|
|
8110
|
+
* @memberof JsonApiAutomationResultOutAttributes
|
|
8111
|
+
*/
|
|
8112
|
+
status: JsonApiAutomationResultOutAttributesStatusEnum;
|
|
8113
|
+
/**
|
|
8114
|
+
* Timestamp of the last automation run.
|
|
8115
|
+
* @type {string}
|
|
8116
|
+
* @memberof JsonApiAutomationResultOutAttributes
|
|
8117
|
+
*/
|
|
8118
|
+
executedAt: string;
|
|
8119
|
+
}
|
|
8120
|
+
export declare const JsonApiAutomationResultOutAttributesStatusEnum: {
|
|
8121
|
+
readonly SUCCESS: "SUCCESS";
|
|
8122
|
+
readonly FAILED: "FAILED";
|
|
8123
|
+
};
|
|
8124
|
+
export type JsonApiAutomationResultOutAttributesStatusEnum = (typeof JsonApiAutomationResultOutAttributesStatusEnum)[keyof typeof JsonApiAutomationResultOutAttributesStatusEnum];
|
|
8125
|
+
/**
|
|
8126
|
+
*
|
|
8127
|
+
* @export
|
|
8128
|
+
* @interface JsonApiAutomationResultOutRelationships
|
|
8129
|
+
*/
|
|
8130
|
+
export interface JsonApiAutomationResultOutRelationships {
|
|
8131
|
+
/**
|
|
8132
|
+
*
|
|
8133
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
8134
|
+
* @memberof JsonApiAutomationResultOutRelationships
|
|
8135
|
+
*/
|
|
8136
|
+
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
8137
|
+
}
|
|
8138
|
+
/**
|
|
8139
|
+
*
|
|
8140
|
+
* @export
|
|
8141
|
+
* @interface JsonApiAutomationResultOutWithLinks
|
|
8142
|
+
*/
|
|
8143
|
+
export interface JsonApiAutomationResultOutWithLinks {
|
|
8144
|
+
/**
|
|
8145
|
+
* Object type
|
|
8146
|
+
* @type {string}
|
|
8147
|
+
* @memberof JsonApiAutomationResultOutWithLinks
|
|
8148
|
+
*/
|
|
8149
|
+
type: JsonApiAutomationResultOutWithLinksTypeEnum;
|
|
8150
|
+
/**
|
|
8151
|
+
* API identifier of an object
|
|
8152
|
+
* @type {string}
|
|
8153
|
+
* @memberof JsonApiAutomationResultOutWithLinks
|
|
8154
|
+
*/
|
|
8155
|
+
id: string;
|
|
8156
|
+
/**
|
|
8157
|
+
*
|
|
8158
|
+
* @type {JsonApiAutomationResultOutAttributes}
|
|
8159
|
+
* @memberof JsonApiAutomationResultOutWithLinks
|
|
8160
|
+
*/
|
|
8161
|
+
attributes: JsonApiAutomationResultOutAttributes;
|
|
8162
|
+
/**
|
|
8163
|
+
*
|
|
8164
|
+
* @type {JsonApiAutomationResultOutRelationships}
|
|
8165
|
+
* @memberof JsonApiAutomationResultOutWithLinks
|
|
8166
|
+
*/
|
|
8167
|
+
relationships?: JsonApiAutomationResultOutRelationships;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @type {ObjectLinks}
|
|
8171
|
+
* @memberof JsonApiAutomationResultOutWithLinks
|
|
8172
|
+
*/
|
|
8173
|
+
links?: ObjectLinks;
|
|
8174
|
+
}
|
|
8175
|
+
export declare const JsonApiAutomationResultOutWithLinksTypeEnum: {
|
|
8176
|
+
readonly AUTOMATION_RESULT: "automationResult";
|
|
8177
|
+
};
|
|
8178
|
+
export type JsonApiAutomationResultOutWithLinksTypeEnum = (typeof JsonApiAutomationResultOutWithLinksTypeEnum)[keyof typeof JsonApiAutomationResultOutWithLinksTypeEnum];
|
|
8015
8179
|
/**
|
|
8016
8180
|
* @type JsonApiAutomationToOneLinkage
|
|
8017
8181
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -8147,10 +8311,10 @@ export interface JsonApiColorPaletteOutList {
|
|
|
8147
8311
|
links?: ListLinks;
|
|
8148
8312
|
/**
|
|
8149
8313
|
*
|
|
8150
|
-
* @type {
|
|
8314
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8151
8315
|
* @memberof JsonApiColorPaletteOutList
|
|
8152
8316
|
*/
|
|
8153
|
-
meta?:
|
|
8317
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8154
8318
|
}
|
|
8155
8319
|
/**
|
|
8156
8320
|
*
|
|
@@ -8268,15 +8432,34 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
8268
8432
|
id: string;
|
|
8269
8433
|
/**
|
|
8270
8434
|
*
|
|
8271
|
-
* @type {
|
|
8435
|
+
* @type {JsonApiCookieSecurityConfigurationInAttributes}
|
|
8272
8436
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
8273
8437
|
*/
|
|
8274
|
-
attributes?:
|
|
8438
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
8275
8439
|
}
|
|
8276
8440
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
8277
8441
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
8278
8442
|
};
|
|
8279
8443
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
8444
|
+
/**
|
|
8445
|
+
*
|
|
8446
|
+
* @export
|
|
8447
|
+
* @interface JsonApiCookieSecurityConfigurationInAttributes
|
|
8448
|
+
*/
|
|
8449
|
+
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
8450
|
+
/**
|
|
8451
|
+
*
|
|
8452
|
+
* @type {string}
|
|
8453
|
+
* @memberof JsonApiCookieSecurityConfigurationInAttributes
|
|
8454
|
+
*/
|
|
8455
|
+
lastRotation?: string;
|
|
8456
|
+
/**
|
|
8457
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
8458
|
+
* @type {string}
|
|
8459
|
+
* @memberof JsonApiCookieSecurityConfigurationInAttributes
|
|
8460
|
+
*/
|
|
8461
|
+
rotationInterval?: string;
|
|
8462
|
+
}
|
|
8280
8463
|
/**
|
|
8281
8464
|
*
|
|
8282
8465
|
* @export
|
|
@@ -8310,10 +8493,10 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
8310
8493
|
id: string;
|
|
8311
8494
|
/**
|
|
8312
8495
|
*
|
|
8313
|
-
* @type {
|
|
8496
|
+
* @type {JsonApiCookieSecurityConfigurationInAttributes}
|
|
8314
8497
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
8315
8498
|
*/
|
|
8316
|
-
attributes?:
|
|
8499
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
8317
8500
|
}
|
|
8318
8501
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
8319
8502
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -8358,34 +8541,15 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
8358
8541
|
id: string;
|
|
8359
8542
|
/**
|
|
8360
8543
|
*
|
|
8361
|
-
* @type {
|
|
8544
|
+
* @type {JsonApiCookieSecurityConfigurationInAttributes}
|
|
8362
8545
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
8363
8546
|
*/
|
|
8364
|
-
attributes?:
|
|
8547
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
8365
8548
|
}
|
|
8366
8549
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
8367
8550
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
8368
8551
|
};
|
|
8369
8552
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
8370
|
-
/**
|
|
8371
|
-
*
|
|
8372
|
-
* @export
|
|
8373
|
-
* @interface JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8374
|
-
*/
|
|
8375
|
-
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
8376
|
-
/**
|
|
8377
|
-
*
|
|
8378
|
-
* @type {string}
|
|
8379
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8380
|
-
*/
|
|
8381
|
-
lastRotation?: string;
|
|
8382
|
-
/**
|
|
8383
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
8384
|
-
* @type {string}
|
|
8385
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8386
|
-
*/
|
|
8387
|
-
rotationInterval?: string;
|
|
8388
|
-
}
|
|
8389
8553
|
/**
|
|
8390
8554
|
*
|
|
8391
8555
|
* @export
|
|
@@ -8522,10 +8686,10 @@ export interface JsonApiCspDirectiveOutList {
|
|
|
8522
8686
|
links?: ListLinks;
|
|
8523
8687
|
/**
|
|
8524
8688
|
*
|
|
8525
|
-
* @type {
|
|
8689
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8526
8690
|
* @memberof JsonApiCspDirectiveOutList
|
|
8527
8691
|
*/
|
|
8528
|
-
meta?:
|
|
8692
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8529
8693
|
}
|
|
8530
8694
|
/**
|
|
8531
8695
|
*
|
|
@@ -8637,15 +8801,34 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
8637
8801
|
id: string;
|
|
8638
8802
|
/**
|
|
8639
8803
|
*
|
|
8640
|
-
* @type {
|
|
8804
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8641
8805
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
8642
8806
|
*/
|
|
8643
|
-
attributes:
|
|
8807
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8644
8808
|
}
|
|
8645
8809
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
8646
8810
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8647
8811
|
};
|
|
8648
8812
|
export type JsonApiCustomApplicationSettingInTypeEnum = (typeof JsonApiCustomApplicationSettingInTypeEnum)[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
8813
|
+
/**
|
|
8814
|
+
*
|
|
8815
|
+
* @export
|
|
8816
|
+
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
8817
|
+
*/
|
|
8818
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
8819
|
+
/**
|
|
8820
|
+
*
|
|
8821
|
+
* @type {string}
|
|
8822
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8823
|
+
*/
|
|
8824
|
+
applicationName: string;
|
|
8825
|
+
/**
|
|
8826
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8827
|
+
* @type {object}
|
|
8828
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8829
|
+
*/
|
|
8830
|
+
content: object;
|
|
8831
|
+
}
|
|
8649
8832
|
/**
|
|
8650
8833
|
*
|
|
8651
8834
|
* @export
|
|
@@ -8685,10 +8868,10 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
8685
8868
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8686
8869
|
/**
|
|
8687
8870
|
*
|
|
8688
|
-
* @type {
|
|
8871
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8689
8872
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
8690
8873
|
*/
|
|
8691
|
-
attributes:
|
|
8874
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8692
8875
|
}
|
|
8693
8876
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
8694
8877
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -8733,10 +8916,10 @@ export interface JsonApiCustomApplicationSettingOutList {
|
|
|
8733
8916
|
links?: ListLinks;
|
|
8734
8917
|
/**
|
|
8735
8918
|
*
|
|
8736
|
-
* @type {
|
|
8919
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8737
8920
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
8738
8921
|
*/
|
|
8739
|
-
meta?:
|
|
8922
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8740
8923
|
}
|
|
8741
8924
|
/**
|
|
8742
8925
|
*
|
|
@@ -8764,10 +8947,10 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
8764
8947
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8765
8948
|
/**
|
|
8766
8949
|
*
|
|
8767
|
-
* @type {
|
|
8950
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8768
8951
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
8769
8952
|
*/
|
|
8770
|
-
attributes:
|
|
8953
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8771
8954
|
/**
|
|
8772
8955
|
*
|
|
8773
8956
|
* @type {ObjectLinks}
|
|
@@ -8860,34 +9043,15 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
8860
9043
|
id?: string;
|
|
8861
9044
|
/**
|
|
8862
9045
|
*
|
|
8863
|
-
* @type {
|
|
9046
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8864
9047
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
8865
9048
|
*/
|
|
8866
|
-
attributes:
|
|
9049
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8867
9050
|
}
|
|
8868
9051
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
8869
9052
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8870
9053
|
};
|
|
8871
9054
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
|
|
8872
|
-
/**
|
|
8873
|
-
*
|
|
8874
|
-
* @export
|
|
8875
|
-
* @interface JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
8876
|
-
*/
|
|
8877
|
-
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
8878
|
-
/**
|
|
8879
|
-
*
|
|
8880
|
-
* @type {string}
|
|
8881
|
-
* @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
8882
|
-
*/
|
|
8883
|
-
applicationName: string;
|
|
8884
|
-
/**
|
|
8885
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8886
|
-
* @type {object}
|
|
8887
|
-
* @memberof JsonApiCustomApplicationSettingPostOptionalIdAttributes
|
|
8888
|
-
*/
|
|
8889
|
-
content: object;
|
|
8890
|
-
}
|
|
8891
9055
|
/**
|
|
8892
9056
|
*
|
|
8893
9057
|
* @export
|
|
@@ -8921,15 +9085,52 @@ export interface JsonApiDashboardPluginIn {
|
|
|
8921
9085
|
id: string;
|
|
8922
9086
|
/**
|
|
8923
9087
|
*
|
|
8924
|
-
* @type {
|
|
9088
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8925
9089
|
* @memberof JsonApiDashboardPluginIn
|
|
8926
9090
|
*/
|
|
8927
|
-
attributes?:
|
|
9091
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8928
9092
|
}
|
|
8929
9093
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
8930
9094
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8931
9095
|
};
|
|
8932
9096
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
9097
|
+
/**
|
|
9098
|
+
*
|
|
9099
|
+
* @export
|
|
9100
|
+
* @interface JsonApiDashboardPluginInAttributes
|
|
9101
|
+
*/
|
|
9102
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
9103
|
+
/**
|
|
9104
|
+
*
|
|
9105
|
+
* @type {string}
|
|
9106
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
9107
|
+
*/
|
|
9108
|
+
title?: string;
|
|
9109
|
+
/**
|
|
9110
|
+
*
|
|
9111
|
+
* @type {string}
|
|
9112
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
9113
|
+
*/
|
|
9114
|
+
description?: string;
|
|
9115
|
+
/**
|
|
9116
|
+
*
|
|
9117
|
+
* @type {Array<string>}
|
|
9118
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
9119
|
+
*/
|
|
9120
|
+
tags?: Array<string>;
|
|
9121
|
+
/**
|
|
9122
|
+
*
|
|
9123
|
+
* @type {boolean}
|
|
9124
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
9125
|
+
*/
|
|
9126
|
+
areRelationsValid?: boolean;
|
|
9127
|
+
/**
|
|
9128
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
9129
|
+
* @type {object}
|
|
9130
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
9131
|
+
*/
|
|
9132
|
+
content?: object;
|
|
9133
|
+
}
|
|
8933
9134
|
/**
|
|
8934
9135
|
*
|
|
8935
9136
|
* @export
|
|
@@ -9101,10 +9302,10 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
9101
9302
|
links?: ListLinks;
|
|
9102
9303
|
/**
|
|
9103
9304
|
*
|
|
9104
|
-
* @type {
|
|
9305
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9105
9306
|
* @memberof JsonApiDashboardPluginOutList
|
|
9106
9307
|
*/
|
|
9107
|
-
meta?:
|
|
9308
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9108
9309
|
/**
|
|
9109
9310
|
* Included resources
|
|
9110
9311
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -9198,10 +9399,10 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
9198
9399
|
id: string;
|
|
9199
9400
|
/**
|
|
9200
9401
|
*
|
|
9201
|
-
* @type {
|
|
9402
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
9202
9403
|
* @memberof JsonApiDashboardPluginPatch
|
|
9203
9404
|
*/
|
|
9204
|
-
attributes?:
|
|
9405
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
9205
9406
|
}
|
|
9206
9407
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
9207
9408
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -9240,52 +9441,15 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
9240
9441
|
id?: string;
|
|
9241
9442
|
/**
|
|
9242
9443
|
*
|
|
9243
|
-
* @type {
|
|
9444
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
9244
9445
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
9245
9446
|
*/
|
|
9246
|
-
attributes?:
|
|
9447
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
9247
9448
|
}
|
|
9248
9449
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
9249
9450
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
9250
9451
|
};
|
|
9251
9452
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
9252
|
-
/**
|
|
9253
|
-
*
|
|
9254
|
-
* @export
|
|
9255
|
-
* @interface JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9256
|
-
*/
|
|
9257
|
-
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
9258
|
-
/**
|
|
9259
|
-
*
|
|
9260
|
-
* @type {string}
|
|
9261
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9262
|
-
*/
|
|
9263
|
-
title?: string;
|
|
9264
|
-
/**
|
|
9265
|
-
*
|
|
9266
|
-
* @type {string}
|
|
9267
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9268
|
-
*/
|
|
9269
|
-
description?: string;
|
|
9270
|
-
/**
|
|
9271
|
-
*
|
|
9272
|
-
* @type {Array<string>}
|
|
9273
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9274
|
-
*/
|
|
9275
|
-
tags?: Array<string>;
|
|
9276
|
-
/**
|
|
9277
|
-
*
|
|
9278
|
-
* @type {boolean}
|
|
9279
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9280
|
-
*/
|
|
9281
|
-
areRelationsValid?: boolean;
|
|
9282
|
-
/**
|
|
9283
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
9284
|
-
* @type {object}
|
|
9285
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
9286
|
-
*/
|
|
9287
|
-
content?: object;
|
|
9288
|
-
}
|
|
9289
9453
|
/**
|
|
9290
9454
|
*
|
|
9291
9455
|
* @export
|
|
@@ -9385,6 +9549,7 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
|
|
|
9385
9549
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
9386
9550
|
readonly STARROCKS: "STARROCKS";
|
|
9387
9551
|
readonly ATHENA: "ATHENA";
|
|
9552
|
+
readonly MONGODB: "MONGODB";
|
|
9388
9553
|
};
|
|
9389
9554
|
export type JsonApiDataSourceIdentifierOutAttributesTypeEnum = (typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum)[keyof typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum];
|
|
9390
9555
|
/**
|
|
@@ -9426,10 +9591,10 @@ export interface JsonApiDataSourceIdentifierOutList {
|
|
|
9426
9591
|
links?: ListLinks;
|
|
9427
9592
|
/**
|
|
9428
9593
|
*
|
|
9429
|
-
* @type {
|
|
9594
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9430
9595
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
9431
9596
|
*/
|
|
9432
|
-
meta?:
|
|
9597
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9433
9598
|
}
|
|
9434
9599
|
/**
|
|
9435
9600
|
*
|
|
@@ -9612,6 +9777,7 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
|
|
|
9612
9777
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
9613
9778
|
readonly STARROCKS: "STARROCKS";
|
|
9614
9779
|
readonly ATHENA: "ATHENA";
|
|
9780
|
+
readonly MONGODB: "MONGODB";
|
|
9615
9781
|
};
|
|
9616
9782
|
export type JsonApiDataSourceInAttributesTypeEnum = (typeof JsonApiDataSourceInAttributesTypeEnum)[keyof typeof JsonApiDataSourceInAttributesTypeEnum];
|
|
9617
9783
|
export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
@@ -9779,6 +9945,7 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
|
9779
9945
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
9780
9946
|
readonly STARROCKS: "STARROCKS";
|
|
9781
9947
|
readonly ATHENA: "ATHENA";
|
|
9948
|
+
readonly MONGODB: "MONGODB";
|
|
9782
9949
|
};
|
|
9783
9950
|
export type JsonApiDataSourceOutAttributesTypeEnum = (typeof JsonApiDataSourceOutAttributesTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesTypeEnum];
|
|
9784
9951
|
export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
@@ -9833,10 +10000,10 @@ export interface JsonApiDataSourceOutList {
|
|
|
9833
10000
|
links?: ListLinks;
|
|
9834
10001
|
/**
|
|
9835
10002
|
*
|
|
9836
|
-
* @type {
|
|
10003
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9837
10004
|
* @memberof JsonApiDataSourceOutList
|
|
9838
10005
|
*/
|
|
9839
|
-
meta?:
|
|
10006
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9840
10007
|
}
|
|
9841
10008
|
/**
|
|
9842
10009
|
*
|
|
@@ -10037,6 +10204,7 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
|
10037
10204
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
10038
10205
|
readonly STARROCKS: "STARROCKS";
|
|
10039
10206
|
readonly ATHENA: "ATHENA";
|
|
10207
|
+
readonly MONGODB: "MONGODB";
|
|
10040
10208
|
};
|
|
10041
10209
|
export type JsonApiDataSourcePatchAttributesTypeEnum = (typeof JsonApiDataSourcePatchAttributesTypeEnum)[keyof typeof JsonApiDataSourcePatchAttributesTypeEnum];
|
|
10042
10210
|
export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
@@ -10415,10 +10583,10 @@ export interface JsonApiDatasetOutList {
|
|
|
10415
10583
|
links?: ListLinks;
|
|
10416
10584
|
/**
|
|
10417
10585
|
*
|
|
10418
|
-
* @type {
|
|
10586
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10419
10587
|
* @memberof JsonApiDatasetOutList
|
|
10420
10588
|
*/
|
|
10421
|
-
meta?:
|
|
10589
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10422
10590
|
/**
|
|
10423
10591
|
* Included resources
|
|
10424
10592
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -10629,10 +10797,10 @@ export interface JsonApiEntitlementOutList {
|
|
|
10629
10797
|
links?: ListLinks;
|
|
10630
10798
|
/**
|
|
10631
10799
|
*
|
|
10632
|
-
* @type {
|
|
10800
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10633
10801
|
* @memberof JsonApiEntitlementOutList
|
|
10634
10802
|
*/
|
|
10635
|
-
meta?:
|
|
10803
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10636
10804
|
}
|
|
10637
10805
|
/**
|
|
10638
10806
|
*
|
|
@@ -10689,21 +10857,58 @@ export interface JsonApiExportDefinitionIn {
|
|
|
10689
10857
|
id: string;
|
|
10690
10858
|
/**
|
|
10691
10859
|
*
|
|
10692
|
-
* @type {
|
|
10860
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10693
10861
|
* @memberof JsonApiExportDefinitionIn
|
|
10694
10862
|
*/
|
|
10695
|
-
attributes?:
|
|
10863
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10696
10864
|
/**
|
|
10697
10865
|
*
|
|
10698
|
-
* @type {
|
|
10866
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10699
10867
|
* @memberof JsonApiExportDefinitionIn
|
|
10700
10868
|
*/
|
|
10701
|
-
relationships?:
|
|
10869
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10702
10870
|
}
|
|
10703
10871
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
10704
10872
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10705
10873
|
};
|
|
10706
10874
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
10875
|
+
/**
|
|
10876
|
+
*
|
|
10877
|
+
* @export
|
|
10878
|
+
* @interface JsonApiExportDefinitionInAttributes
|
|
10879
|
+
*/
|
|
10880
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
10881
|
+
/**
|
|
10882
|
+
*
|
|
10883
|
+
* @type {string}
|
|
10884
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10885
|
+
*/
|
|
10886
|
+
title?: string;
|
|
10887
|
+
/**
|
|
10888
|
+
*
|
|
10889
|
+
* @type {string}
|
|
10890
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10891
|
+
*/
|
|
10892
|
+
description?: string;
|
|
10893
|
+
/**
|
|
10894
|
+
*
|
|
10895
|
+
* @type {Array<string>}
|
|
10896
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10897
|
+
*/
|
|
10898
|
+
tags?: Array<string>;
|
|
10899
|
+
/**
|
|
10900
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
10901
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
10902
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10903
|
+
*/
|
|
10904
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
10905
|
+
/**
|
|
10906
|
+
*
|
|
10907
|
+
* @type {boolean}
|
|
10908
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10909
|
+
*/
|
|
10910
|
+
areRelationsValid?: boolean;
|
|
10911
|
+
}
|
|
10707
10912
|
/**
|
|
10708
10913
|
*
|
|
10709
10914
|
* @export
|
|
@@ -10717,6 +10922,25 @@ export interface JsonApiExportDefinitionInDocument {
|
|
|
10717
10922
|
*/
|
|
10718
10923
|
data: JsonApiExportDefinitionIn;
|
|
10719
10924
|
}
|
|
10925
|
+
/**
|
|
10926
|
+
*
|
|
10927
|
+
* @export
|
|
10928
|
+
* @interface JsonApiExportDefinitionInRelationships
|
|
10929
|
+
*/
|
|
10930
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
10931
|
+
/**
|
|
10932
|
+
*
|
|
10933
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10934
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10935
|
+
*/
|
|
10936
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10937
|
+
/**
|
|
10938
|
+
*
|
|
10939
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
10940
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10941
|
+
*/
|
|
10942
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
10943
|
+
}
|
|
10720
10944
|
/**
|
|
10721
10945
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
10722
10946
|
* @export
|
|
@@ -10880,10 +11104,10 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
10880
11104
|
links?: ListLinks;
|
|
10881
11105
|
/**
|
|
10882
11106
|
*
|
|
10883
|
-
* @type {
|
|
11107
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10884
11108
|
* @memberof JsonApiExportDefinitionOutList
|
|
10885
11109
|
*/
|
|
10886
|
-
meta?:
|
|
11110
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10887
11111
|
/**
|
|
10888
11112
|
* Included resources
|
|
10889
11113
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -11021,16 +11245,16 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
11021
11245
|
id: string;
|
|
11022
11246
|
/**
|
|
11023
11247
|
*
|
|
11024
|
-
* @type {
|
|
11248
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
11025
11249
|
* @memberof JsonApiExportDefinitionPatch
|
|
11026
11250
|
*/
|
|
11027
|
-
attributes?:
|
|
11251
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
11028
11252
|
/**
|
|
11029
11253
|
*
|
|
11030
|
-
* @type {
|
|
11254
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
11031
11255
|
* @memberof JsonApiExportDefinitionPatch
|
|
11032
11256
|
*/
|
|
11033
|
-
relationships?:
|
|
11257
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
11034
11258
|
}
|
|
11035
11259
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
11036
11260
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -11069,58 +11293,21 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
11069
11293
|
id?: string;
|
|
11070
11294
|
/**
|
|
11071
11295
|
*
|
|
11072
|
-
* @type {
|
|
11296
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
11073
11297
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
11074
11298
|
*/
|
|
11075
|
-
attributes?:
|
|
11299
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
11076
11300
|
/**
|
|
11077
11301
|
*
|
|
11078
|
-
* @type {
|
|
11302
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
11079
11303
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
11080
11304
|
*/
|
|
11081
|
-
relationships?:
|
|
11305
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
11082
11306
|
}
|
|
11083
11307
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
11084
11308
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
11085
11309
|
};
|
|
11086
11310
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
11087
|
-
/**
|
|
11088
|
-
*
|
|
11089
|
-
* @export
|
|
11090
|
-
* @interface JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11091
|
-
*/
|
|
11092
|
-
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
11093
|
-
/**
|
|
11094
|
-
*
|
|
11095
|
-
* @type {string}
|
|
11096
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11097
|
-
*/
|
|
11098
|
-
title?: string;
|
|
11099
|
-
/**
|
|
11100
|
-
*
|
|
11101
|
-
* @type {string}
|
|
11102
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11103
|
-
*/
|
|
11104
|
-
description?: string;
|
|
11105
|
-
/**
|
|
11106
|
-
*
|
|
11107
|
-
* @type {Array<string>}
|
|
11108
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11109
|
-
*/
|
|
11110
|
-
tags?: Array<string>;
|
|
11111
|
-
/**
|
|
11112
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
11113
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
11114
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11115
|
-
*/
|
|
11116
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
11117
|
-
/**
|
|
11118
|
-
*
|
|
11119
|
-
* @type {boolean}
|
|
11120
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
11121
|
-
*/
|
|
11122
|
-
areRelationsValid?: boolean;
|
|
11123
|
-
}
|
|
11124
11311
|
/**
|
|
11125
11312
|
*
|
|
11126
11313
|
* @export
|
|
@@ -11134,25 +11321,6 @@ export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
|
11134
11321
|
*/
|
|
11135
11322
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
11136
11323
|
}
|
|
11137
|
-
/**
|
|
11138
|
-
*
|
|
11139
|
-
* @export
|
|
11140
|
-
* @interface JsonApiExportDefinitionPostOptionalIdRelationships
|
|
11141
|
-
*/
|
|
11142
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
11143
|
-
/**
|
|
11144
|
-
*
|
|
11145
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
11146
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
11147
|
-
*/
|
|
11148
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
11149
|
-
/**
|
|
11150
|
-
*
|
|
11151
|
-
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
11152
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
11153
|
-
*/
|
|
11154
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
11155
|
-
}
|
|
11156
11324
|
/**
|
|
11157
11325
|
* JSON:API representation of exportTemplate entity.
|
|
11158
11326
|
* @export
|
|
@@ -11263,10 +11431,10 @@ export interface JsonApiExportTemplateOutList {
|
|
|
11263
11431
|
links?: ListLinks;
|
|
11264
11432
|
/**
|
|
11265
11433
|
*
|
|
11266
|
-
* @type {
|
|
11434
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11267
11435
|
* @memberof JsonApiExportTemplateOutList
|
|
11268
11436
|
*/
|
|
11269
|
-
meta?:
|
|
11437
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11270
11438
|
}
|
|
11271
11439
|
/**
|
|
11272
11440
|
*
|
|
@@ -11665,10 +11833,10 @@ export interface JsonApiFactOutList {
|
|
|
11665
11833
|
links?: ListLinks;
|
|
11666
11834
|
/**
|
|
11667
11835
|
*
|
|
11668
|
-
* @type {
|
|
11836
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11669
11837
|
* @memberof JsonApiFactOutList
|
|
11670
11838
|
*/
|
|
11671
|
-
meta?:
|
|
11839
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11672
11840
|
/**
|
|
11673
11841
|
* Included resources
|
|
11674
11842
|
* @type {Array<JsonApiDatasetOutWithLinks>}
|
|
@@ -11762,10 +11930,10 @@ export interface JsonApiFilterContextIn {
|
|
|
11762
11930
|
id: string;
|
|
11763
11931
|
/**
|
|
11764
11932
|
*
|
|
11765
|
-
* @type {
|
|
11933
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11766
11934
|
* @memberof JsonApiFilterContextIn
|
|
11767
11935
|
*/
|
|
11768
|
-
attributes:
|
|
11936
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11769
11937
|
}
|
|
11770
11938
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
11771
11939
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11833,10 +12001,10 @@ export interface JsonApiFilterContextOut {
|
|
|
11833
12001
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11834
12002
|
/**
|
|
11835
12003
|
*
|
|
11836
|
-
* @type {
|
|
12004
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11837
12005
|
* @memberof JsonApiFilterContextOut
|
|
11838
12006
|
*/
|
|
11839
|
-
attributes:
|
|
12007
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11840
12008
|
/**
|
|
11841
12009
|
*
|
|
11842
12010
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11898,10 +12066,10 @@ export interface JsonApiFilterContextOutList {
|
|
|
11898
12066
|
links?: ListLinks;
|
|
11899
12067
|
/**
|
|
11900
12068
|
*
|
|
11901
|
-
* @type {
|
|
12069
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11902
12070
|
* @memberof JsonApiFilterContextOutList
|
|
11903
12071
|
*/
|
|
11904
|
-
meta?:
|
|
12072
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11905
12073
|
/**
|
|
11906
12074
|
* Included resources
|
|
11907
12075
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -11960,10 +12128,10 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
11960
12128
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11961
12129
|
/**
|
|
11962
12130
|
*
|
|
11963
|
-
* @type {
|
|
12131
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11964
12132
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
11965
12133
|
*/
|
|
11966
|
-
attributes:
|
|
12134
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11967
12135
|
/**
|
|
11968
12136
|
*
|
|
11969
12137
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -12043,10 +12211,10 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
12043
12211
|
id?: string;
|
|
12044
12212
|
/**
|
|
12045
12213
|
*
|
|
12046
|
-
* @type {
|
|
12214
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
12047
12215
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
12048
12216
|
*/
|
|
12049
|
-
attributes:
|
|
12217
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
12050
12218
|
}
|
|
12051
12219
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
12052
12220
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -12273,10 +12441,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
12273
12441
|
links?: ListLinks;
|
|
12274
12442
|
/**
|
|
12275
12443
|
*
|
|
12276
|
-
* @type {
|
|
12444
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12277
12445
|
* @memberof JsonApiFilterViewOutList
|
|
12278
12446
|
*/
|
|
12279
|
-
meta?:
|
|
12447
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12280
12448
|
/**
|
|
12281
12449
|
* Included resources
|
|
12282
12450
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -12705,10 +12873,10 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
12705
12873
|
links?: ListLinks;
|
|
12706
12874
|
/**
|
|
12707
12875
|
*
|
|
12708
|
-
* @type {
|
|
12876
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12709
12877
|
* @memberof JsonApiIdentityProviderOutList
|
|
12710
12878
|
*/
|
|
12711
|
-
meta?:
|
|
12879
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12712
12880
|
}
|
|
12713
12881
|
/**
|
|
12714
12882
|
*
|
|
@@ -12916,10 +13084,10 @@ export interface JsonApiJwkOutList {
|
|
|
12916
13084
|
links?: ListLinks;
|
|
12917
13085
|
/**
|
|
12918
13086
|
*
|
|
12919
|
-
* @type {
|
|
13087
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12920
13088
|
* @memberof JsonApiJwkOutList
|
|
12921
13089
|
*/
|
|
12922
|
-
meta?:
|
|
13090
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12923
13091
|
}
|
|
12924
13092
|
/**
|
|
12925
13093
|
*
|
|
@@ -13181,10 +13349,10 @@ export interface JsonApiLabelOutList {
|
|
|
13181
13349
|
links?: ListLinks;
|
|
13182
13350
|
/**
|
|
13183
13351
|
*
|
|
13184
|
-
* @type {
|
|
13352
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13185
13353
|
* @memberof JsonApiLabelOutList
|
|
13186
13354
|
*/
|
|
13187
|
-
meta?:
|
|
13355
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13188
13356
|
/**
|
|
13189
13357
|
* Included resources
|
|
13190
13358
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -13471,10 +13639,10 @@ export interface JsonApiLlmEndpointOutList {
|
|
|
13471
13639
|
links?: ListLinks;
|
|
13472
13640
|
/**
|
|
13473
13641
|
*
|
|
13474
|
-
* @type {
|
|
13642
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13475
13643
|
* @memberof JsonApiLlmEndpointOutList
|
|
13476
13644
|
*/
|
|
13477
|
-
meta?:
|
|
13645
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13478
13646
|
}
|
|
13479
13647
|
/**
|
|
13480
13648
|
*
|
|
@@ -13621,15 +13789,52 @@ export interface JsonApiMetricIn {
|
|
|
13621
13789
|
id: string;
|
|
13622
13790
|
/**
|
|
13623
13791
|
*
|
|
13624
|
-
* @type {
|
|
13792
|
+
* @type {JsonApiMetricInAttributes}
|
|
13625
13793
|
* @memberof JsonApiMetricIn
|
|
13626
13794
|
*/
|
|
13627
|
-
attributes:
|
|
13795
|
+
attributes: JsonApiMetricInAttributes;
|
|
13628
13796
|
}
|
|
13629
13797
|
export declare const JsonApiMetricInTypeEnum: {
|
|
13630
13798
|
readonly METRIC: "metric";
|
|
13631
13799
|
};
|
|
13632
13800
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
13801
|
+
/**
|
|
13802
|
+
*
|
|
13803
|
+
* @export
|
|
13804
|
+
* @interface JsonApiMetricInAttributes
|
|
13805
|
+
*/
|
|
13806
|
+
export interface JsonApiMetricInAttributes {
|
|
13807
|
+
/**
|
|
13808
|
+
*
|
|
13809
|
+
* @type {string}
|
|
13810
|
+
* @memberof JsonApiMetricInAttributes
|
|
13811
|
+
*/
|
|
13812
|
+
title?: string;
|
|
13813
|
+
/**
|
|
13814
|
+
*
|
|
13815
|
+
* @type {string}
|
|
13816
|
+
* @memberof JsonApiMetricInAttributes
|
|
13817
|
+
*/
|
|
13818
|
+
description?: string;
|
|
13819
|
+
/**
|
|
13820
|
+
*
|
|
13821
|
+
* @type {Array<string>}
|
|
13822
|
+
* @memberof JsonApiMetricInAttributes
|
|
13823
|
+
*/
|
|
13824
|
+
tags?: Array<string>;
|
|
13825
|
+
/**
|
|
13826
|
+
*
|
|
13827
|
+
* @type {boolean}
|
|
13828
|
+
* @memberof JsonApiMetricInAttributes
|
|
13829
|
+
*/
|
|
13830
|
+
areRelationsValid?: boolean;
|
|
13831
|
+
/**
|
|
13832
|
+
*
|
|
13833
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
13834
|
+
* @memberof JsonApiMetricInAttributes
|
|
13835
|
+
*/
|
|
13836
|
+
content: JsonApiMetricOutAttributesContent;
|
|
13837
|
+
}
|
|
13633
13838
|
/**
|
|
13634
13839
|
*
|
|
13635
13840
|
* @export
|
|
@@ -13825,10 +14030,10 @@ export interface JsonApiMetricOutList {
|
|
|
13825
14030
|
links?: ListLinks;
|
|
13826
14031
|
/**
|
|
13827
14032
|
*
|
|
13828
|
-
* @type {
|
|
14033
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13829
14034
|
* @memberof JsonApiMetricOutList
|
|
13830
14035
|
*/
|
|
13831
|
-
meta?:
|
|
14036
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13832
14037
|
/**
|
|
13833
14038
|
* Included resources
|
|
13834
14039
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -13982,52 +14187,15 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
13982
14187
|
id?: string;
|
|
13983
14188
|
/**
|
|
13984
14189
|
*
|
|
13985
|
-
* @type {
|
|
14190
|
+
* @type {JsonApiMetricInAttributes}
|
|
13986
14191
|
* @memberof JsonApiMetricPostOptionalId
|
|
13987
14192
|
*/
|
|
13988
|
-
attributes:
|
|
14193
|
+
attributes: JsonApiMetricInAttributes;
|
|
13989
14194
|
}
|
|
13990
14195
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
13991
14196
|
readonly METRIC: "metric";
|
|
13992
14197
|
};
|
|
13993
14198
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
13994
|
-
/**
|
|
13995
|
-
*
|
|
13996
|
-
* @export
|
|
13997
|
-
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
13998
|
-
*/
|
|
13999
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
14000
|
-
/**
|
|
14001
|
-
*
|
|
14002
|
-
* @type {string}
|
|
14003
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
14004
|
-
*/
|
|
14005
|
-
title?: string;
|
|
14006
|
-
/**
|
|
14007
|
-
*
|
|
14008
|
-
* @type {string}
|
|
14009
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
14010
|
-
*/
|
|
14011
|
-
description?: string;
|
|
14012
|
-
/**
|
|
14013
|
-
*
|
|
14014
|
-
* @type {Array<string>}
|
|
14015
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
14016
|
-
*/
|
|
14017
|
-
tags?: Array<string>;
|
|
14018
|
-
/**
|
|
14019
|
-
*
|
|
14020
|
-
* @type {boolean}
|
|
14021
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
14022
|
-
*/
|
|
14023
|
-
areRelationsValid?: boolean;
|
|
14024
|
-
/**
|
|
14025
|
-
*
|
|
14026
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
14027
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
14028
|
-
*/
|
|
14029
|
-
content: JsonApiMetricOutAttributesContent;
|
|
14030
|
-
}
|
|
14031
14199
|
/**
|
|
14032
14200
|
*
|
|
14033
14201
|
* @export
|
|
@@ -14153,10 +14321,10 @@ export interface JsonApiNotificationChannelIdentifierOutList {
|
|
|
14153
14321
|
links?: ListLinks;
|
|
14154
14322
|
/**
|
|
14155
14323
|
*
|
|
14156
|
-
* @type {
|
|
14324
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14157
14325
|
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
14158
14326
|
*/
|
|
14159
|
-
meta?:
|
|
14327
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14160
14328
|
}
|
|
14161
14329
|
/**
|
|
14162
14330
|
*
|
|
@@ -14411,10 +14579,10 @@ export interface JsonApiNotificationChannelOutList {
|
|
|
14411
14579
|
links?: ListLinks;
|
|
14412
14580
|
/**
|
|
14413
14581
|
*
|
|
14414
|
-
* @type {
|
|
14582
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14415
14583
|
* @memberof JsonApiNotificationChannelOutList
|
|
14416
14584
|
*/
|
|
14417
|
-
meta?:
|
|
14585
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14418
14586
|
}
|
|
14419
14587
|
/**
|
|
14420
14588
|
*
|
|
@@ -14633,21 +14801,103 @@ export interface JsonApiOrganizationIn {
|
|
|
14633
14801
|
id: string;
|
|
14634
14802
|
/**
|
|
14635
14803
|
*
|
|
14636
|
-
* @type {
|
|
14804
|
+
* @type {JsonApiOrganizationInAttributes}
|
|
14637
14805
|
* @memberof JsonApiOrganizationIn
|
|
14638
14806
|
*/
|
|
14639
|
-
attributes?:
|
|
14807
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
14640
14808
|
/**
|
|
14641
14809
|
*
|
|
14642
|
-
* @type {
|
|
14810
|
+
* @type {JsonApiOrganizationInRelationships}
|
|
14643
14811
|
* @memberof JsonApiOrganizationIn
|
|
14644
14812
|
*/
|
|
14645
|
-
relationships?:
|
|
14813
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
14646
14814
|
}
|
|
14647
14815
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
14648
14816
|
readonly ORGANIZATION: "organization";
|
|
14649
14817
|
};
|
|
14650
14818
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
14819
|
+
/**
|
|
14820
|
+
*
|
|
14821
|
+
* @export
|
|
14822
|
+
* @interface JsonApiOrganizationInAttributes
|
|
14823
|
+
*/
|
|
14824
|
+
export interface JsonApiOrganizationInAttributes {
|
|
14825
|
+
/**
|
|
14826
|
+
*
|
|
14827
|
+
* @type {string}
|
|
14828
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14829
|
+
*/
|
|
14830
|
+
name?: string | null;
|
|
14831
|
+
/**
|
|
14832
|
+
*
|
|
14833
|
+
* @type {string}
|
|
14834
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14835
|
+
*/
|
|
14836
|
+
hostname?: string;
|
|
14837
|
+
/**
|
|
14838
|
+
*
|
|
14839
|
+
* @type {Array<string>}
|
|
14840
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14841
|
+
*/
|
|
14842
|
+
allowedOrigins?: Array<string>;
|
|
14843
|
+
/**
|
|
14844
|
+
*
|
|
14845
|
+
* @type {string}
|
|
14846
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14847
|
+
*/
|
|
14848
|
+
oauthIssuerLocation?: string;
|
|
14849
|
+
/**
|
|
14850
|
+
*
|
|
14851
|
+
* @type {string}
|
|
14852
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14853
|
+
*/
|
|
14854
|
+
oauthClientId?: string;
|
|
14855
|
+
/**
|
|
14856
|
+
*
|
|
14857
|
+
* @type {string}
|
|
14858
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14859
|
+
*/
|
|
14860
|
+
oauthClientSecret?: string;
|
|
14861
|
+
/**
|
|
14862
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
14863
|
+
* @type {string}
|
|
14864
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14865
|
+
* @deprecated
|
|
14866
|
+
*/
|
|
14867
|
+
earlyAccess?: string | null;
|
|
14868
|
+
/**
|
|
14869
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
14870
|
+
* @type {Array<string>}
|
|
14871
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14872
|
+
*/
|
|
14873
|
+
earlyAccessValues?: Array<string> | null;
|
|
14874
|
+
/**
|
|
14875
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
14876
|
+
* @type {string}
|
|
14877
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14878
|
+
*/
|
|
14879
|
+
oauthIssuerId?: string;
|
|
14880
|
+
/**
|
|
14881
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
14882
|
+
* @type {string}
|
|
14883
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14884
|
+
*/
|
|
14885
|
+
oauthSubjectIdClaim?: string;
|
|
14886
|
+
/**
|
|
14887
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
14888
|
+
* @type {{ [key: string]: string; }}
|
|
14889
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14890
|
+
*/
|
|
14891
|
+
oauthCustomAuthAttributes?: {
|
|
14892
|
+
[key: string]: string;
|
|
14893
|
+
};
|
|
14894
|
+
/**
|
|
14895
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
14896
|
+
* @type {Array<string>}
|
|
14897
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
14898
|
+
*/
|
|
14899
|
+
oauthCustomScopes?: Array<string> | null;
|
|
14900
|
+
}
|
|
14651
14901
|
/**
|
|
14652
14902
|
*
|
|
14653
14903
|
* @export
|
|
@@ -14661,6 +14911,32 @@ export interface JsonApiOrganizationInDocument {
|
|
|
14661
14911
|
*/
|
|
14662
14912
|
data: JsonApiOrganizationIn;
|
|
14663
14913
|
}
|
|
14914
|
+
/**
|
|
14915
|
+
*
|
|
14916
|
+
* @export
|
|
14917
|
+
* @interface JsonApiOrganizationInRelationships
|
|
14918
|
+
*/
|
|
14919
|
+
export interface JsonApiOrganizationInRelationships {
|
|
14920
|
+
/**
|
|
14921
|
+
*
|
|
14922
|
+
* @type {JsonApiOrganizationInRelationshipsIdentityProvider}
|
|
14923
|
+
* @memberof JsonApiOrganizationInRelationships
|
|
14924
|
+
*/
|
|
14925
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
14926
|
+
}
|
|
14927
|
+
/**
|
|
14928
|
+
*
|
|
14929
|
+
* @export
|
|
14930
|
+
* @interface JsonApiOrganizationInRelationshipsIdentityProvider
|
|
14931
|
+
*/
|
|
14932
|
+
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
14933
|
+
/**
|
|
14934
|
+
*
|
|
14935
|
+
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
14936
|
+
* @memberof JsonApiOrganizationInRelationshipsIdentityProvider
|
|
14937
|
+
*/
|
|
14938
|
+
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
14939
|
+
}
|
|
14664
14940
|
/**
|
|
14665
14941
|
* JSON:API representation of organization entity.
|
|
14666
14942
|
* @export
|
|
@@ -14870,16 +15146,16 @@ export interface JsonApiOrganizationOutRelationships {
|
|
|
14870
15146
|
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
14871
15147
|
/**
|
|
14872
15148
|
*
|
|
14873
|
-
* @type {
|
|
15149
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14874
15150
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14875
15151
|
*/
|
|
14876
|
-
bootstrapUserGroup?:
|
|
15152
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14877
15153
|
/**
|
|
14878
15154
|
*
|
|
14879
|
-
* @type {
|
|
15155
|
+
* @type {JsonApiOrganizationInRelationshipsIdentityProvider}
|
|
14880
15156
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14881
15157
|
*/
|
|
14882
|
-
identityProvider?:
|
|
15158
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
14883
15159
|
}
|
|
14884
15160
|
/**
|
|
14885
15161
|
* JSON:API representation of patching organization entity.
|
|
@@ -14901,103 +15177,21 @@ export interface JsonApiOrganizationPatch {
|
|
|
14901
15177
|
id: string;
|
|
14902
15178
|
/**
|
|
14903
15179
|
*
|
|
14904
|
-
* @type {
|
|
15180
|
+
* @type {JsonApiOrganizationInAttributes}
|
|
14905
15181
|
* @memberof JsonApiOrganizationPatch
|
|
14906
15182
|
*/
|
|
14907
|
-
attributes?:
|
|
15183
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
14908
15184
|
/**
|
|
14909
15185
|
*
|
|
14910
|
-
* @type {
|
|
15186
|
+
* @type {JsonApiOrganizationInRelationships}
|
|
14911
15187
|
* @memberof JsonApiOrganizationPatch
|
|
14912
15188
|
*/
|
|
14913
|
-
relationships?:
|
|
15189
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
14914
15190
|
}
|
|
14915
15191
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
14916
15192
|
readonly ORGANIZATION: "organization";
|
|
14917
15193
|
};
|
|
14918
15194
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
14919
|
-
/**
|
|
14920
|
-
*
|
|
14921
|
-
* @export
|
|
14922
|
-
* @interface JsonApiOrganizationPatchAttributes
|
|
14923
|
-
*/
|
|
14924
|
-
export interface JsonApiOrganizationPatchAttributes {
|
|
14925
|
-
/**
|
|
14926
|
-
*
|
|
14927
|
-
* @type {string}
|
|
14928
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14929
|
-
*/
|
|
14930
|
-
name?: string | null;
|
|
14931
|
-
/**
|
|
14932
|
-
*
|
|
14933
|
-
* @type {string}
|
|
14934
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14935
|
-
*/
|
|
14936
|
-
hostname?: string;
|
|
14937
|
-
/**
|
|
14938
|
-
*
|
|
14939
|
-
* @type {Array<string>}
|
|
14940
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14941
|
-
*/
|
|
14942
|
-
allowedOrigins?: Array<string>;
|
|
14943
|
-
/**
|
|
14944
|
-
*
|
|
14945
|
-
* @type {string}
|
|
14946
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14947
|
-
*/
|
|
14948
|
-
oauthIssuerLocation?: string;
|
|
14949
|
-
/**
|
|
14950
|
-
*
|
|
14951
|
-
* @type {string}
|
|
14952
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14953
|
-
*/
|
|
14954
|
-
oauthClientId?: string;
|
|
14955
|
-
/**
|
|
14956
|
-
*
|
|
14957
|
-
* @type {string}
|
|
14958
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14959
|
-
*/
|
|
14960
|
-
oauthClientSecret?: string;
|
|
14961
|
-
/**
|
|
14962
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
14963
|
-
* @type {string}
|
|
14964
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14965
|
-
* @deprecated
|
|
14966
|
-
*/
|
|
14967
|
-
earlyAccess?: string | null;
|
|
14968
|
-
/**
|
|
14969
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
14970
|
-
* @type {Array<string>}
|
|
14971
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14972
|
-
*/
|
|
14973
|
-
earlyAccessValues?: Array<string> | null;
|
|
14974
|
-
/**
|
|
14975
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
14976
|
-
* @type {string}
|
|
14977
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14978
|
-
*/
|
|
14979
|
-
oauthIssuerId?: string;
|
|
14980
|
-
/**
|
|
14981
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
14982
|
-
* @type {string}
|
|
14983
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14984
|
-
*/
|
|
14985
|
-
oauthSubjectIdClaim?: string;
|
|
14986
|
-
/**
|
|
14987
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
14988
|
-
* @type {{ [key: string]: string; }}
|
|
14989
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14990
|
-
*/
|
|
14991
|
-
oauthCustomAuthAttributes?: {
|
|
14992
|
-
[key: string]: string;
|
|
14993
|
-
};
|
|
14994
|
-
/**
|
|
14995
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
14996
|
-
* @type {Array<string>}
|
|
14997
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
14998
|
-
*/
|
|
14999
|
-
oauthCustomScopes?: Array<string> | null;
|
|
15000
|
-
}
|
|
15001
15195
|
/**
|
|
15002
15196
|
*
|
|
15003
15197
|
* @export
|
|
@@ -15011,32 +15205,6 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
15011
15205
|
*/
|
|
15012
15206
|
data: JsonApiOrganizationPatch;
|
|
15013
15207
|
}
|
|
15014
|
-
/**
|
|
15015
|
-
*
|
|
15016
|
-
* @export
|
|
15017
|
-
* @interface JsonApiOrganizationPatchRelationships
|
|
15018
|
-
*/
|
|
15019
|
-
export interface JsonApiOrganizationPatchRelationships {
|
|
15020
|
-
/**
|
|
15021
|
-
*
|
|
15022
|
-
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
15023
|
-
* @memberof JsonApiOrganizationPatchRelationships
|
|
15024
|
-
*/
|
|
15025
|
-
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
15026
|
-
}
|
|
15027
|
-
/**
|
|
15028
|
-
*
|
|
15029
|
-
* @export
|
|
15030
|
-
* @interface JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
15031
|
-
*/
|
|
15032
|
-
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
15033
|
-
/**
|
|
15034
|
-
*
|
|
15035
|
-
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
15036
|
-
* @memberof JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
15037
|
-
*/
|
|
15038
|
-
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
15039
|
-
}
|
|
15040
15208
|
/**
|
|
15041
15209
|
* JSON:API representation of organizationSetting entity.
|
|
15042
15210
|
* @export
|
|
@@ -15057,10 +15225,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
15057
15225
|
id: string;
|
|
15058
15226
|
/**
|
|
15059
15227
|
*
|
|
15060
|
-
* @type {
|
|
15228
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15061
15229
|
* @memberof JsonApiOrganizationSettingIn
|
|
15062
15230
|
*/
|
|
15063
|
-
attributes?:
|
|
15231
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15064
15232
|
}
|
|
15065
15233
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
15066
15234
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15099,10 +15267,10 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
15099
15267
|
id: string;
|
|
15100
15268
|
/**
|
|
15101
15269
|
*
|
|
15102
|
-
* @type {
|
|
15270
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15103
15271
|
* @memberof JsonApiOrganizationSettingOut
|
|
15104
15272
|
*/
|
|
15105
|
-
attributes?:
|
|
15273
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15106
15274
|
}
|
|
15107
15275
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
15108
15276
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15147,10 +15315,10 @@ export interface JsonApiOrganizationSettingOutList {
|
|
|
15147
15315
|
links?: ListLinks;
|
|
15148
15316
|
/**
|
|
15149
15317
|
*
|
|
15150
|
-
* @type {
|
|
15318
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15151
15319
|
* @memberof JsonApiOrganizationSettingOutList
|
|
15152
15320
|
*/
|
|
15153
|
-
meta?:
|
|
15321
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15154
15322
|
}
|
|
15155
15323
|
/**
|
|
15156
15324
|
*
|
|
@@ -15172,10 +15340,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
15172
15340
|
id: string;
|
|
15173
15341
|
/**
|
|
15174
15342
|
*
|
|
15175
|
-
* @type {
|
|
15343
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15176
15344
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
15177
15345
|
*/
|
|
15178
|
-
attributes?:
|
|
15346
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15179
15347
|
/**
|
|
15180
15348
|
*
|
|
15181
15349
|
* @type {ObjectLinks}
|
|
@@ -15207,10 +15375,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
15207
15375
|
id: string;
|
|
15208
15376
|
/**
|
|
15209
15377
|
*
|
|
15210
|
-
* @type {
|
|
15378
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15211
15379
|
* @memberof JsonApiOrganizationSettingPatch
|
|
15212
15380
|
*/
|
|
15213
|
-
attributes?:
|
|
15381
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15214
15382
|
}
|
|
15215
15383
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
15216
15384
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15339,10 +15507,10 @@ export interface JsonApiThemeOutList {
|
|
|
15339
15507
|
links?: ListLinks;
|
|
15340
15508
|
/**
|
|
15341
15509
|
*
|
|
15342
|
-
* @type {
|
|
15510
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15343
15511
|
* @memberof JsonApiThemeOutList
|
|
15344
15512
|
*/
|
|
15345
|
-
meta?:
|
|
15513
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15346
15514
|
}
|
|
15347
15515
|
/**
|
|
15348
15516
|
*
|
|
@@ -15441,21 +15609,58 @@ export interface JsonApiUserDataFilterIn {
|
|
|
15441
15609
|
id: string;
|
|
15442
15610
|
/**
|
|
15443
15611
|
*
|
|
15444
|
-
* @type {
|
|
15612
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15445
15613
|
* @memberof JsonApiUserDataFilterIn
|
|
15446
15614
|
*/
|
|
15447
|
-
attributes:
|
|
15615
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15448
15616
|
/**
|
|
15449
15617
|
*
|
|
15450
|
-
* @type {
|
|
15618
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15451
15619
|
* @memberof JsonApiUserDataFilterIn
|
|
15452
15620
|
*/
|
|
15453
|
-
relationships?:
|
|
15621
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15454
15622
|
}
|
|
15455
15623
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
15456
15624
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15457
15625
|
};
|
|
15458
15626
|
export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTypeEnum)[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
15627
|
+
/**
|
|
15628
|
+
*
|
|
15629
|
+
* @export
|
|
15630
|
+
* @interface JsonApiUserDataFilterInAttributes
|
|
15631
|
+
*/
|
|
15632
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
15633
|
+
/**
|
|
15634
|
+
*
|
|
15635
|
+
* @type {string}
|
|
15636
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15637
|
+
*/
|
|
15638
|
+
title?: string;
|
|
15639
|
+
/**
|
|
15640
|
+
*
|
|
15641
|
+
* @type {string}
|
|
15642
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15643
|
+
*/
|
|
15644
|
+
description?: string;
|
|
15645
|
+
/**
|
|
15646
|
+
*
|
|
15647
|
+
* @type {Array<string>}
|
|
15648
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15649
|
+
*/
|
|
15650
|
+
tags?: Array<string>;
|
|
15651
|
+
/**
|
|
15652
|
+
*
|
|
15653
|
+
* @type {boolean}
|
|
15654
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15655
|
+
*/
|
|
15656
|
+
areRelationsValid?: boolean;
|
|
15657
|
+
/**
|
|
15658
|
+
*
|
|
15659
|
+
* @type {string}
|
|
15660
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15661
|
+
*/
|
|
15662
|
+
maql: string;
|
|
15663
|
+
}
|
|
15459
15664
|
/**
|
|
15460
15665
|
*
|
|
15461
15666
|
* @export
|
|
@@ -15469,6 +15674,38 @@ export interface JsonApiUserDataFilterInDocument {
|
|
|
15469
15674
|
*/
|
|
15470
15675
|
data: JsonApiUserDataFilterIn;
|
|
15471
15676
|
}
|
|
15677
|
+
/**
|
|
15678
|
+
*
|
|
15679
|
+
* @export
|
|
15680
|
+
* @interface JsonApiUserDataFilterInRelationships
|
|
15681
|
+
*/
|
|
15682
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
15683
|
+
/**
|
|
15684
|
+
*
|
|
15685
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
15686
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15687
|
+
*/
|
|
15688
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15689
|
+
/**
|
|
15690
|
+
*
|
|
15691
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
15692
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15693
|
+
*/
|
|
15694
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
15695
|
+
}
|
|
15696
|
+
/**
|
|
15697
|
+
*
|
|
15698
|
+
* @export
|
|
15699
|
+
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15700
|
+
*/
|
|
15701
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
15702
|
+
/**
|
|
15703
|
+
*
|
|
15704
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
15705
|
+
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15706
|
+
*/
|
|
15707
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
15708
|
+
}
|
|
15472
15709
|
/**
|
|
15473
15710
|
* JSON:API representation of userDataFilter entity.
|
|
15474
15711
|
* @export
|
|
@@ -15495,10 +15732,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
15495
15732
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15496
15733
|
/**
|
|
15497
15734
|
*
|
|
15498
|
-
* @type {
|
|
15735
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15499
15736
|
* @memberof JsonApiUserDataFilterOut
|
|
15500
15737
|
*/
|
|
15501
|
-
attributes:
|
|
15738
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15502
15739
|
/**
|
|
15503
15740
|
*
|
|
15504
15741
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15560,10 +15797,10 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
15560
15797
|
links?: ListLinks;
|
|
15561
15798
|
/**
|
|
15562
15799
|
*
|
|
15563
|
-
* @type {
|
|
15800
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15564
15801
|
* @memberof JsonApiUserDataFilterOutList
|
|
15565
15802
|
*/
|
|
15566
|
-
meta?:
|
|
15803
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15567
15804
|
/**
|
|
15568
15805
|
* Included resources
|
|
15569
15806
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -15585,10 +15822,10 @@ export interface JsonApiUserDataFilterOutRelationships {
|
|
|
15585
15822
|
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15586
15823
|
/**
|
|
15587
15824
|
*
|
|
15588
|
-
* @type {
|
|
15825
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
15589
15826
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
15590
15827
|
*/
|
|
15591
|
-
userGroup?:
|
|
15828
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
15592
15829
|
/**
|
|
15593
15830
|
*
|
|
15594
15831
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -15646,10 +15883,10 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
15646
15883
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15647
15884
|
/**
|
|
15648
15885
|
*
|
|
15649
|
-
* @type {
|
|
15886
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15650
15887
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
15651
15888
|
*/
|
|
15652
|
-
attributes:
|
|
15889
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15653
15890
|
/**
|
|
15654
15891
|
*
|
|
15655
15892
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15693,10 +15930,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
15693
15930
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
15694
15931
|
/**
|
|
15695
15932
|
*
|
|
15696
|
-
* @type {
|
|
15933
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15697
15934
|
* @memberof JsonApiUserDataFilterPatch
|
|
15698
15935
|
*/
|
|
15699
|
-
relationships?:
|
|
15936
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15700
15937
|
}
|
|
15701
15938
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
15702
15939
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15772,58 +16009,21 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
15772
16009
|
id?: string;
|
|
15773
16010
|
/**
|
|
15774
16011
|
*
|
|
15775
|
-
* @type {
|
|
16012
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15776
16013
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15777
16014
|
*/
|
|
15778
|
-
attributes:
|
|
16015
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15779
16016
|
/**
|
|
15780
16017
|
*
|
|
15781
|
-
* @type {
|
|
16018
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15782
16019
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15783
16020
|
*/
|
|
15784
|
-
relationships?:
|
|
16021
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15785
16022
|
}
|
|
15786
16023
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
15787
16024
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15788
16025
|
};
|
|
15789
16026
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
|
|
15790
|
-
/**
|
|
15791
|
-
*
|
|
15792
|
-
* @export
|
|
15793
|
-
* @interface JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15794
|
-
*/
|
|
15795
|
-
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
15796
|
-
/**
|
|
15797
|
-
*
|
|
15798
|
-
* @type {string}
|
|
15799
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15800
|
-
*/
|
|
15801
|
-
title?: string;
|
|
15802
|
-
/**
|
|
15803
|
-
*
|
|
15804
|
-
* @type {string}
|
|
15805
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15806
|
-
*/
|
|
15807
|
-
description?: string;
|
|
15808
|
-
/**
|
|
15809
|
-
*
|
|
15810
|
-
* @type {Array<string>}
|
|
15811
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15812
|
-
*/
|
|
15813
|
-
tags?: Array<string>;
|
|
15814
|
-
/**
|
|
15815
|
-
*
|
|
15816
|
-
* @type {boolean}
|
|
15817
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15818
|
-
*/
|
|
15819
|
-
areRelationsValid?: boolean;
|
|
15820
|
-
/**
|
|
15821
|
-
*
|
|
15822
|
-
* @type {string}
|
|
15823
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdAttributes
|
|
15824
|
-
*/
|
|
15825
|
-
maql: string;
|
|
15826
|
-
}
|
|
15827
16027
|
/**
|
|
15828
16028
|
*
|
|
15829
16029
|
* @export
|
|
@@ -15837,38 +16037,6 @@ export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
15837
16037
|
*/
|
|
15838
16038
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
15839
16039
|
}
|
|
15840
|
-
/**
|
|
15841
|
-
*
|
|
15842
|
-
* @export
|
|
15843
|
-
* @interface JsonApiUserDataFilterPostOptionalIdRelationships
|
|
15844
|
-
*/
|
|
15845
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
15846
|
-
/**
|
|
15847
|
-
*
|
|
15848
|
-
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
15849
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
15850
|
-
*/
|
|
15851
|
-
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15852
|
-
/**
|
|
15853
|
-
*
|
|
15854
|
-
* @type {JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup}
|
|
15855
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
15856
|
-
*/
|
|
15857
|
-
userGroup?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
|
|
15858
|
-
}
|
|
15859
|
-
/**
|
|
15860
|
-
*
|
|
15861
|
-
* @export
|
|
15862
|
-
* @interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
|
|
15863
|
-
*/
|
|
15864
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
|
|
15865
|
-
/**
|
|
15866
|
-
*
|
|
15867
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
15868
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup
|
|
15869
|
-
*/
|
|
15870
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
15871
|
-
}
|
|
15872
16040
|
/**
|
|
15873
16041
|
* JSON:API representation of userGroup entity.
|
|
15874
16042
|
* @export
|
|
@@ -16033,10 +16201,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
16033
16201
|
links?: ListLinks;
|
|
16034
16202
|
/**
|
|
16035
16203
|
*
|
|
16036
|
-
* @type {
|
|
16204
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16037
16205
|
* @memberof JsonApiUserGroupOutList
|
|
16038
16206
|
*/
|
|
16039
|
-
meta?:
|
|
16207
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16040
16208
|
/**
|
|
16041
16209
|
* Included resources
|
|
16042
16210
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -16268,10 +16436,10 @@ export interface JsonApiUserIdentifierOutList {
|
|
|
16268
16436
|
links?: ListLinks;
|
|
16269
16437
|
/**
|
|
16270
16438
|
*
|
|
16271
|
-
* @type {
|
|
16439
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16272
16440
|
* @memberof JsonApiUserIdentifierOutList
|
|
16273
16441
|
*/
|
|
16274
|
-
meta?:
|
|
16442
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16275
16443
|
}
|
|
16276
16444
|
/**
|
|
16277
16445
|
*
|
|
@@ -16496,10 +16664,10 @@ export interface JsonApiUserOutList {
|
|
|
16496
16664
|
links?: ListLinks;
|
|
16497
16665
|
/**
|
|
16498
16666
|
*
|
|
16499
|
-
* @type {
|
|
16667
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16500
16668
|
* @memberof JsonApiUserOutList
|
|
16501
16669
|
*/
|
|
16502
|
-
meta?:
|
|
16670
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16503
16671
|
/**
|
|
16504
16672
|
* Included resources
|
|
16505
16673
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -16642,10 +16810,10 @@ export interface JsonApiUserSettingIn {
|
|
|
16642
16810
|
id: string;
|
|
16643
16811
|
/**
|
|
16644
16812
|
*
|
|
16645
|
-
* @type {
|
|
16813
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16646
16814
|
* @memberof JsonApiUserSettingIn
|
|
16647
16815
|
*/
|
|
16648
|
-
attributes?:
|
|
16816
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16649
16817
|
}
|
|
16650
16818
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
16651
16819
|
readonly USER_SETTING: "userSetting";
|
|
@@ -16684,15 +16852,63 @@ export interface JsonApiUserSettingOut {
|
|
|
16684
16852
|
id: string;
|
|
16685
16853
|
/**
|
|
16686
16854
|
*
|
|
16687
|
-
* @type {
|
|
16855
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16688
16856
|
* @memberof JsonApiUserSettingOut
|
|
16689
16857
|
*/
|
|
16690
|
-
attributes?:
|
|
16858
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16691
16859
|
}
|
|
16692
16860
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
16693
16861
|
readonly USER_SETTING: "userSetting";
|
|
16694
16862
|
};
|
|
16695
16863
|
export type JsonApiUserSettingOutTypeEnum = (typeof JsonApiUserSettingOutTypeEnum)[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
16864
|
+
/**
|
|
16865
|
+
*
|
|
16866
|
+
* @export
|
|
16867
|
+
* @interface JsonApiUserSettingOutAttributes
|
|
16868
|
+
*/
|
|
16869
|
+
export interface JsonApiUserSettingOutAttributes {
|
|
16870
|
+
/**
|
|
16871
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
16872
|
+
* @type {object}
|
|
16873
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
16874
|
+
*/
|
|
16875
|
+
content?: object;
|
|
16876
|
+
/**
|
|
16877
|
+
*
|
|
16878
|
+
* @type {string}
|
|
16879
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
16880
|
+
*/
|
|
16881
|
+
type?: JsonApiUserSettingOutAttributesTypeEnum;
|
|
16882
|
+
}
|
|
16883
|
+
export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
16884
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
16885
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
16886
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
16887
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
16888
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
16889
|
+
readonly LOCALE: "LOCALE";
|
|
16890
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
16891
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
16892
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
16893
|
+
readonly WEEK_START: "WEEK_START";
|
|
16894
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
16895
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
16896
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
16897
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
16898
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
16899
|
+
readonly ALERT: "ALERT";
|
|
16900
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
16901
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
16902
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
16903
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
16904
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
16905
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
16906
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
16907
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
16908
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
16909
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
16910
|
+
};
|
|
16911
|
+
export type JsonApiUserSettingOutAttributesTypeEnum = (typeof JsonApiUserSettingOutAttributesTypeEnum)[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
16696
16912
|
/**
|
|
16697
16913
|
*
|
|
16698
16914
|
* @export
|
|
@@ -16732,10 +16948,10 @@ export interface JsonApiUserSettingOutList {
|
|
|
16732
16948
|
links?: ListLinks;
|
|
16733
16949
|
/**
|
|
16734
16950
|
*
|
|
16735
|
-
* @type {
|
|
16951
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16736
16952
|
* @memberof JsonApiUserSettingOutList
|
|
16737
16953
|
*/
|
|
16738
|
-
meta?:
|
|
16954
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16739
16955
|
}
|
|
16740
16956
|
/**
|
|
16741
16957
|
*
|
|
@@ -16757,10 +16973,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16757
16973
|
id: string;
|
|
16758
16974
|
/**
|
|
16759
16975
|
*
|
|
16760
|
-
* @type {
|
|
16976
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16761
16977
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16762
16978
|
*/
|
|
16763
|
-
attributes?:
|
|
16979
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16764
16980
|
/**
|
|
16765
16981
|
*
|
|
16766
16982
|
* @type {ObjectLinks}
|
|
@@ -16798,10 +17014,10 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
16798
17014
|
id: string;
|
|
16799
17015
|
/**
|
|
16800
17016
|
*
|
|
16801
|
-
* @type {
|
|
17017
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
16802
17018
|
* @memberof JsonApiVisualizationObjectIn
|
|
16803
17019
|
*/
|
|
16804
|
-
attributes:
|
|
17020
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
16805
17021
|
}
|
|
16806
17022
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
16807
17023
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16978,10 +17194,10 @@ export interface JsonApiVisualizationObjectOutList {
|
|
|
16978
17194
|
links?: ListLinks;
|
|
16979
17195
|
/**
|
|
16980
17196
|
*
|
|
16981
|
-
* @type {
|
|
17197
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16982
17198
|
* @memberof JsonApiVisualizationObjectOutList
|
|
16983
17199
|
*/
|
|
16984
|
-
meta?:
|
|
17200
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16985
17201
|
/**
|
|
16986
17202
|
* Included resources
|
|
16987
17203
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -17262,10 +17478,10 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
17262
17478
|
id?: string;
|
|
17263
17479
|
/**
|
|
17264
17480
|
*
|
|
17265
|
-
* @type {
|
|
17481
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
17266
17482
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
17267
17483
|
*/
|
|
17268
|
-
attributes:
|
|
17484
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
17269
17485
|
}
|
|
17270
17486
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
17271
17487
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -17472,10 +17688,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
|
|
|
17472
17688
|
links?: ListLinks;
|
|
17473
17689
|
/**
|
|
17474
17690
|
*
|
|
17475
|
-
* @type {
|
|
17691
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17476
17692
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
17477
17693
|
*/
|
|
17478
|
-
meta?:
|
|
17694
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17479
17695
|
/**
|
|
17480
17696
|
* Included resources
|
|
17481
17697
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -17812,10 +18028,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17812
18028
|
links?: ListLinks;
|
|
17813
18029
|
/**
|
|
17814
18030
|
*
|
|
17815
|
-
* @type {
|
|
18031
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17816
18032
|
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
17817
18033
|
*/
|
|
17818
|
-
meta?:
|
|
18034
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17819
18035
|
/**
|
|
17820
18036
|
* Included resources
|
|
17821
18037
|
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
@@ -18176,10 +18392,10 @@ export interface JsonApiWorkspaceOutList {
|
|
|
18176
18392
|
links?: ListLinks;
|
|
18177
18393
|
/**
|
|
18178
18394
|
*
|
|
18179
|
-
* @type {
|
|
18395
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
18180
18396
|
* @memberof JsonApiWorkspaceOutList
|
|
18181
18397
|
*/
|
|
18182
|
-
meta?:
|
|
18398
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
18183
18399
|
/**
|
|
18184
18400
|
* Included resources
|
|
18185
18401
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -18396,10 +18612,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
18396
18612
|
id: string;
|
|
18397
18613
|
/**
|
|
18398
18614
|
*
|
|
18399
|
-
* @type {
|
|
18615
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18400
18616
|
* @memberof JsonApiWorkspaceSettingIn
|
|
18401
18617
|
*/
|
|
18402
|
-
attributes?:
|
|
18618
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18403
18619
|
}
|
|
18404
18620
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
18405
18621
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18444,10 +18660,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
18444
18660
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18445
18661
|
/**
|
|
18446
18662
|
*
|
|
18447
|
-
* @type {
|
|
18663
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18448
18664
|
* @memberof JsonApiWorkspaceSettingOut
|
|
18449
18665
|
*/
|
|
18450
|
-
attributes?:
|
|
18666
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18451
18667
|
}
|
|
18452
18668
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
18453
18669
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18492,10 +18708,10 @@ export interface JsonApiWorkspaceSettingOutList {
|
|
|
18492
18708
|
links?: ListLinks;
|
|
18493
18709
|
/**
|
|
18494
18710
|
*
|
|
18495
|
-
* @type {
|
|
18711
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
18496
18712
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
18497
18713
|
*/
|
|
18498
|
-
meta?:
|
|
18714
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
18499
18715
|
}
|
|
18500
18716
|
/**
|
|
18501
18717
|
*
|
|
@@ -18523,10 +18739,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
18523
18739
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18524
18740
|
/**
|
|
18525
18741
|
*
|
|
18526
|
-
* @type {
|
|
18742
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18527
18743
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
18528
18744
|
*/
|
|
18529
|
-
attributes?:
|
|
18745
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18530
18746
|
/**
|
|
18531
18747
|
*
|
|
18532
18748
|
* @type {ObjectLinks}
|
|
@@ -18558,10 +18774,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
18558
18774
|
id: string;
|
|
18559
18775
|
/**
|
|
18560
18776
|
*
|
|
18561
|
-
* @type {
|
|
18777
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18562
18778
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
18563
18779
|
*/
|
|
18564
|
-
attributes?:
|
|
18780
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18565
18781
|
}
|
|
18566
18782
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
18567
18783
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18600,62 +18816,15 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
18600
18816
|
id?: string;
|
|
18601
18817
|
/**
|
|
18602
18818
|
*
|
|
18603
|
-
* @type {
|
|
18819
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18604
18820
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
18605
18821
|
*/
|
|
18606
|
-
attributes?:
|
|
18822
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18607
18823
|
}
|
|
18608
18824
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
18609
18825
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
18610
18826
|
};
|
|
18611
18827
|
export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = (typeof JsonApiWorkspaceSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiWorkspaceSettingPostOptionalIdTypeEnum];
|
|
18612
|
-
/**
|
|
18613
|
-
*
|
|
18614
|
-
* @export
|
|
18615
|
-
* @interface JsonApiWorkspaceSettingPostOptionalIdAttributes
|
|
18616
|
-
*/
|
|
18617
|
-
export interface JsonApiWorkspaceSettingPostOptionalIdAttributes {
|
|
18618
|
-
/**
|
|
18619
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
18620
|
-
* @type {object}
|
|
18621
|
-
* @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
|
|
18622
|
-
*/
|
|
18623
|
-
content?: object;
|
|
18624
|
-
/**
|
|
18625
|
-
*
|
|
18626
|
-
* @type {string}
|
|
18627
|
-
* @memberof JsonApiWorkspaceSettingPostOptionalIdAttributes
|
|
18628
|
-
*/
|
|
18629
|
-
type?: JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum;
|
|
18630
|
-
}
|
|
18631
|
-
export declare const JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum: {
|
|
18632
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
18633
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
18634
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
18635
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
18636
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
18637
|
-
readonly LOCALE: "LOCALE";
|
|
18638
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
18639
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
18640
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
18641
|
-
readonly WEEK_START: "WEEK_START";
|
|
18642
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
18643
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
18644
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
18645
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
18646
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
18647
|
-
readonly ALERT: "ALERT";
|
|
18648
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
18649
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
18650
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
18651
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
18652
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
18653
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
18654
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
18655
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
18656
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
18657
|
-
};
|
|
18658
|
-
export type JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum = (typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum)[keyof typeof JsonApiWorkspaceSettingPostOptionalIdAttributesTypeEnum];
|
|
18659
18828
|
/**
|
|
18660
18829
|
*
|
|
18661
18830
|
* @export
|
|
@@ -19866,6 +20035,57 @@ export declare const RelativeOperatorEnum: {
|
|
|
19866
20035
|
readonly CHANGES_BY: "CHANGES_BY";
|
|
19867
20036
|
};
|
|
19868
20037
|
export type RelativeOperatorEnum = (typeof RelativeOperatorEnum)[keyof typeof RelativeOperatorEnum];
|
|
20038
|
+
/**
|
|
20039
|
+
*
|
|
20040
|
+
* @export
|
|
20041
|
+
* @interface RelativeBoundedDateFilter
|
|
20042
|
+
*/
|
|
20043
|
+
export interface RelativeBoundedDateFilter {
|
|
20044
|
+
/**
|
|
20045
|
+
*
|
|
20046
|
+
* @type {string}
|
|
20047
|
+
* @memberof RelativeBoundedDateFilter
|
|
20048
|
+
*/
|
|
20049
|
+
granularity: RelativeBoundedDateFilterGranularityEnum;
|
|
20050
|
+
/**
|
|
20051
|
+
*
|
|
20052
|
+
* @type {number}
|
|
20053
|
+
* @memberof RelativeBoundedDateFilter
|
|
20054
|
+
*/
|
|
20055
|
+
from?: number;
|
|
20056
|
+
/**
|
|
20057
|
+
*
|
|
20058
|
+
* @type {number}
|
|
20059
|
+
* @memberof RelativeBoundedDateFilter
|
|
20060
|
+
*/
|
|
20061
|
+
to?: number;
|
|
20062
|
+
}
|
|
20063
|
+
export declare const RelativeBoundedDateFilterGranularityEnum: {
|
|
20064
|
+
readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
|
|
20065
|
+
readonly GDC_TIME_YEAR: "GDC.time.year";
|
|
20066
|
+
readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
|
|
20067
|
+
readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
|
|
20068
|
+
readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
|
|
20069
|
+
readonly GDC_TIME_WEEK: "GDC.time.week";
|
|
20070
|
+
readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
|
|
20071
|
+
readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
|
|
20072
|
+
readonly GDC_TIME_QUARTER: "GDC.time.quarter";
|
|
20073
|
+
readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
|
|
20074
|
+
readonly GDC_TIME_MONTH: "GDC.time.month";
|
|
20075
|
+
readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
|
|
20076
|
+
readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
|
|
20077
|
+
readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
|
|
20078
|
+
readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
|
|
20079
|
+
readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
|
|
20080
|
+
readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
|
|
20081
|
+
readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
|
|
20082
|
+
readonly GDC_TIME_DATE: "GDC.time.date";
|
|
20083
|
+
readonly GDC_TIME_HOUR: "GDC.time.hour";
|
|
20084
|
+
readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
|
|
20085
|
+
readonly GDC_TIME_MINUTE: "GDC.time.minute";
|
|
20086
|
+
readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
|
|
20087
|
+
};
|
|
20088
|
+
export type RelativeBoundedDateFilterGranularityEnum = (typeof RelativeBoundedDateFilterGranularityEnum)[keyof typeof RelativeBoundedDateFilterGranularityEnum];
|
|
19869
20089
|
/**
|
|
19870
20090
|
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
|
|
19871
20091
|
* @export
|
|
@@ -20025,6 +20245,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
20025
20245
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
20026
20246
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
20027
20247
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
20248
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
20028
20249
|
};
|
|
20029
20250
|
export type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
20030
20251
|
/**
|
|
@@ -21127,6 +21348,32 @@ export declare const WidgetSlidesTemplateAppliedOnEnum: {
|
|
|
21127
21348
|
readonly PPTX: "PPTX";
|
|
21128
21349
|
};
|
|
21129
21350
|
export type WidgetSlidesTemplateAppliedOnEnum = (typeof WidgetSlidesTemplateAppliedOnEnum)[keyof typeof WidgetSlidesTemplateAppliedOnEnum];
|
|
21351
|
+
/**
|
|
21352
|
+
*
|
|
21353
|
+
* @export
|
|
21354
|
+
* @interface WorkspaceAutomationIdentifier
|
|
21355
|
+
*/
|
|
21356
|
+
export interface WorkspaceAutomationIdentifier {
|
|
21357
|
+
/**
|
|
21358
|
+
*
|
|
21359
|
+
* @type {string}
|
|
21360
|
+
* @memberof WorkspaceAutomationIdentifier
|
|
21361
|
+
*/
|
|
21362
|
+
id: string;
|
|
21363
|
+
}
|
|
21364
|
+
/**
|
|
21365
|
+
*
|
|
21366
|
+
* @export
|
|
21367
|
+
* @interface WorkspaceAutomationManagementBulkRequest
|
|
21368
|
+
*/
|
|
21369
|
+
export interface WorkspaceAutomationManagementBulkRequest {
|
|
21370
|
+
/**
|
|
21371
|
+
*
|
|
21372
|
+
* @type {Array<WorkspaceAutomationIdentifier>}
|
|
21373
|
+
* @memberof WorkspaceAutomationManagementBulkRequest
|
|
21374
|
+
*/
|
|
21375
|
+
automations: Array<WorkspaceAutomationIdentifier>;
|
|
21376
|
+
}
|
|
21130
21377
|
/**
|
|
21131
21378
|
* 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.
|
|
21132
21379
|
* @export
|
|
@@ -21851,6 +22098,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
21851
22098
|
* @throws {RequiredError}
|
|
21852
22099
|
*/
|
|
21853
22100
|
dashboardPermissions: (workspaceId: string, dashboardId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22101
|
+
/**
|
|
22102
|
+
*
|
|
22103
|
+
* @summary Delete selected automations in the workspace
|
|
22104
|
+
* @param {string} workspaceId
|
|
22105
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
22106
|
+
* @param {*} [options] Override http request option.
|
|
22107
|
+
* @throws {RequiredError}
|
|
22108
|
+
*/
|
|
22109
|
+
deleteWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21854
22110
|
/**
|
|
21855
22111
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
21856
22112
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -22068,6 +22324,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
22068
22324
|
* @throws {RequiredError}
|
|
22069
22325
|
*/
|
|
22070
22326
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22327
|
+
/**
|
|
22328
|
+
*
|
|
22329
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
22330
|
+
* @param {string} workspaceId
|
|
22331
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
22332
|
+
* @param {*} [options] Override http request option.
|
|
22333
|
+
* @throws {RequiredError}
|
|
22334
|
+
*/
|
|
22335
|
+
unsubscribeSelectedWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22071
22336
|
/**
|
|
22072
22337
|
*
|
|
22073
22338
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -22142,6 +22407,15 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
22142
22407
|
* @throws {RequiredError}
|
|
22143
22408
|
*/
|
|
22144
22409
|
dashboardPermissions(workspaceId: string, dashboardId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DashboardPermissions>>;
|
|
22410
|
+
/**
|
|
22411
|
+
*
|
|
22412
|
+
* @summary Delete selected automations in the workspace
|
|
22413
|
+
* @param {string} workspaceId
|
|
22414
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
22415
|
+
* @param {*} [options] Override http request option.
|
|
22416
|
+
* @throws {RequiredError}
|
|
22417
|
+
*/
|
|
22418
|
+
deleteWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22145
22419
|
/**
|
|
22146
22420
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
22147
22421
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -22359,6 +22633,15 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
22359
22633
|
* @throws {RequiredError}
|
|
22360
22634
|
*/
|
|
22361
22635
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22636
|
+
/**
|
|
22637
|
+
*
|
|
22638
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
22639
|
+
* @param {string} workspaceId
|
|
22640
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
22641
|
+
* @param {*} [options] Override http request option.
|
|
22642
|
+
* @throws {RequiredError}
|
|
22643
|
+
*/
|
|
22644
|
+
unsubscribeSelectedWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22362
22645
|
/**
|
|
22363
22646
|
*
|
|
22364
22647
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -22429,6 +22712,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
22429
22712
|
* @throws {RequiredError}
|
|
22430
22713
|
*/
|
|
22431
22714
|
dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
|
|
22715
|
+
/**
|
|
22716
|
+
*
|
|
22717
|
+
* @summary Delete selected automations in the workspace
|
|
22718
|
+
* @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
22719
|
+
* @param {*} [options] Override http request option.
|
|
22720
|
+
* @throws {RequiredError}
|
|
22721
|
+
*/
|
|
22722
|
+
deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22432
22723
|
/**
|
|
22433
22724
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
22434
22725
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -22631,6 +22922,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
22631
22922
|
* @throws {RequiredError}
|
|
22632
22923
|
*/
|
|
22633
22924
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22925
|
+
/**
|
|
22926
|
+
*
|
|
22927
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
22928
|
+
* @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
22929
|
+
* @param {*} [options] Override http request option.
|
|
22930
|
+
* @throws {RequiredError}
|
|
22931
|
+
*/
|
|
22932
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22634
22933
|
/**
|
|
22635
22934
|
*
|
|
22636
22935
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -22706,6 +23005,15 @@ export interface ActionsApiInterface {
|
|
|
22706
23005
|
* @memberof ActionsApiInterface
|
|
22707
23006
|
*/
|
|
22708
23007
|
dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
|
|
23008
|
+
/**
|
|
23009
|
+
*
|
|
23010
|
+
* @summary Delete selected automations in the workspace
|
|
23011
|
+
* @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
23012
|
+
* @param {*} [options] Override http request option.
|
|
23013
|
+
* @throws {RequiredError}
|
|
23014
|
+
* @memberof ActionsApiInterface
|
|
23015
|
+
*/
|
|
23016
|
+
deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22709
23017
|
/**
|
|
22710
23018
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
22711
23019
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -22934,6 +23242,15 @@ export interface ActionsApiInterface {
|
|
|
22934
23242
|
* @memberof ActionsApiInterface
|
|
22935
23243
|
*/
|
|
22936
23244
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
23245
|
+
/**
|
|
23246
|
+
*
|
|
23247
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
23248
|
+
* @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
23249
|
+
* @param {*} [options] Override http request option.
|
|
23250
|
+
* @throws {RequiredError}
|
|
23251
|
+
* @memberof ActionsApiInterface
|
|
23252
|
+
*/
|
|
23253
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22937
23254
|
/**
|
|
22938
23255
|
*
|
|
22939
23256
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -23038,6 +23355,25 @@ export interface ActionsApiDashboardPermissionsRequest {
|
|
|
23038
23355
|
*/
|
|
23039
23356
|
readonly dashboardId: string;
|
|
23040
23357
|
}
|
|
23358
|
+
/**
|
|
23359
|
+
* Request parameters for deleteWorkspaceAutomations operation in ActionsApi.
|
|
23360
|
+
* @export
|
|
23361
|
+
* @interface ActionsApiDeleteWorkspaceAutomationsRequest
|
|
23362
|
+
*/
|
|
23363
|
+
export interface ActionsApiDeleteWorkspaceAutomationsRequest {
|
|
23364
|
+
/**
|
|
23365
|
+
*
|
|
23366
|
+
* @type {string}
|
|
23367
|
+
* @memberof ActionsApiDeleteWorkspaceAutomations
|
|
23368
|
+
*/
|
|
23369
|
+
readonly workspaceId: string;
|
|
23370
|
+
/**
|
|
23371
|
+
*
|
|
23372
|
+
* @type {WorkspaceAutomationManagementBulkRequest}
|
|
23373
|
+
* @memberof ActionsApiDeleteWorkspaceAutomations
|
|
23374
|
+
*/
|
|
23375
|
+
readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
|
|
23376
|
+
}
|
|
23041
23377
|
/**
|
|
23042
23378
|
* Request parameters for generateLogicalModel operation in ActionsApi.
|
|
23043
23379
|
* @export
|
|
@@ -23414,6 +23750,25 @@ export interface ActionsApiUnsubscribeAutomationRequest {
|
|
|
23414
23750
|
*/
|
|
23415
23751
|
readonly automationId: string;
|
|
23416
23752
|
}
|
|
23753
|
+
/**
|
|
23754
|
+
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in ActionsApi.
|
|
23755
|
+
* @export
|
|
23756
|
+
* @interface ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest
|
|
23757
|
+
*/
|
|
23758
|
+
export interface ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest {
|
|
23759
|
+
/**
|
|
23760
|
+
*
|
|
23761
|
+
* @type {string}
|
|
23762
|
+
* @memberof ActionsApiUnsubscribeSelectedWorkspaceAutomations
|
|
23763
|
+
*/
|
|
23764
|
+
readonly workspaceId: string;
|
|
23765
|
+
/**
|
|
23766
|
+
*
|
|
23767
|
+
* @type {WorkspaceAutomationManagementBulkRequest}
|
|
23768
|
+
* @memberof ActionsApiUnsubscribeSelectedWorkspaceAutomations
|
|
23769
|
+
*/
|
|
23770
|
+
readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
|
|
23771
|
+
}
|
|
23417
23772
|
/**
|
|
23418
23773
|
* Request parameters for unsubscribeWorkspaceAutomations operation in ActionsApi.
|
|
23419
23774
|
* @export
|
|
@@ -23510,6 +23865,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
23510
23865
|
* @memberof ActionsApi
|
|
23511
23866
|
*/
|
|
23512
23867
|
dashboardPermissions(requestParameters: ActionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DashboardPermissions, any>>;
|
|
23868
|
+
/**
|
|
23869
|
+
*
|
|
23870
|
+
* @summary Delete selected automations in the workspace
|
|
23871
|
+
* @param {ActionsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
23872
|
+
* @param {*} [options] Override http request option.
|
|
23873
|
+
* @throws {RequiredError}
|
|
23874
|
+
* @memberof ActionsApi
|
|
23875
|
+
*/
|
|
23876
|
+
deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23513
23877
|
/**
|
|
23514
23878
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
23515
23879
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -23738,6 +24102,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
23738
24102
|
* @memberof ActionsApi
|
|
23739
24103
|
*/
|
|
23740
24104
|
unsubscribeAutomation(requestParameters: ActionsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
24105
|
+
/**
|
|
24106
|
+
*
|
|
24107
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
24108
|
+
* @param {ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
24109
|
+
* @param {*} [options] Override http request option.
|
|
24110
|
+
* @throws {RequiredError}
|
|
24111
|
+
* @memberof ActionsApi
|
|
24112
|
+
*/
|
|
24113
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: ActionsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23741
24114
|
/**
|
|
23742
24115
|
*
|
|
23743
24116
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -25606,12 +25979,12 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25606
25979
|
* @summary Post Automations
|
|
25607
25980
|
* @param {string} workspaceId
|
|
25608
25981
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
25609
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25982
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25610
25983
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25611
25984
|
* @param {*} [options] Override http request option.
|
|
25612
25985
|
* @throws {RequiredError}
|
|
25613
25986
|
*/
|
|
25614
|
-
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25987
|
+
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25615
25988
|
/**
|
|
25616
25989
|
*
|
|
25617
25990
|
* @summary Delete an Automation
|
|
@@ -25622,13 +25995,22 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25622
25995
|
* @throws {RequiredError}
|
|
25623
25996
|
*/
|
|
25624
25997
|
deleteEntityAutomations: (workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25998
|
+
/**
|
|
25999
|
+
*
|
|
26000
|
+
* @summary Delete selected automations in the workspace
|
|
26001
|
+
* @param {string} workspaceId
|
|
26002
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
26003
|
+
* @param {*} [options] Override http request option.
|
|
26004
|
+
* @throws {RequiredError}
|
|
26005
|
+
*/
|
|
26006
|
+
deleteWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25625
26007
|
/**
|
|
25626
26008
|
*
|
|
25627
26009
|
* @summary Get all Automations
|
|
25628
26010
|
* @param {string} workspaceId
|
|
25629
26011
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
25630
26012
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25631
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26013
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25632
26014
|
* @param {number} [page] Zero-based page index (0..N)
|
|
25633
26015
|
* @param {number} [size] The size of the page to be returned
|
|
25634
26016
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -25637,7 +26019,7 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25637
26019
|
* @param {*} [options] Override http request option.
|
|
25638
26020
|
* @throws {RequiredError}
|
|
25639
26021
|
*/
|
|
25640
|
-
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26022
|
+
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25641
26023
|
/**
|
|
25642
26024
|
* Retrieve automations for the specific workspace
|
|
25643
26025
|
* @summary Get automations
|
|
@@ -25653,13 +26035,13 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25653
26035
|
* @param {string} workspaceId
|
|
25654
26036
|
* @param {string} objectId
|
|
25655
26037
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25656
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26038
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25657
26039
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
25658
26040
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25659
26041
|
* @param {*} [options] Override http request option.
|
|
25660
26042
|
* @throws {RequiredError}
|
|
25661
26043
|
*/
|
|
25662
|
-
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26044
|
+
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25663
26045
|
/**
|
|
25664
26046
|
*
|
|
25665
26047
|
* @summary Patch an Automation
|
|
@@ -25667,11 +26049,11 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25667
26049
|
* @param {string} objectId
|
|
25668
26050
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
25669
26051
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25670
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26052
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25671
26053
|
* @param {*} [options] Override http request option.
|
|
25672
26054
|
* @throws {RequiredError}
|
|
25673
26055
|
*/
|
|
25674
|
-
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26056
|
+
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25675
26057
|
/**
|
|
25676
26058
|
* Set automations for the specific workspace.
|
|
25677
26059
|
* @summary Set automations
|
|
@@ -25697,6 +26079,15 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25697
26079
|
* @throws {RequiredError}
|
|
25698
26080
|
*/
|
|
25699
26081
|
unsubscribeAutomation: (workspaceId: string, automationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26082
|
+
/**
|
|
26083
|
+
*
|
|
26084
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
26085
|
+
* @param {string} workspaceId
|
|
26086
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
26087
|
+
* @param {*} [options] Override http request option.
|
|
26088
|
+
* @throws {RequiredError}
|
|
26089
|
+
*/
|
|
26090
|
+
unsubscribeSelectedWorkspaceAutomations: (workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25700
26091
|
/**
|
|
25701
26092
|
*
|
|
25702
26093
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -25712,11 +26103,11 @@ export declare const AutomationsApiAxiosParamCreator: (configuration?: Configura
|
|
|
25712
26103
|
* @param {string} objectId
|
|
25713
26104
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
25714
26105
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25715
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26106
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25716
26107
|
* @param {*} [options] Override http request option.
|
|
25717
26108
|
* @throws {RequiredError}
|
|
25718
26109
|
*/
|
|
25719
|
-
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26110
|
+
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25720
26111
|
};
|
|
25721
26112
|
/**
|
|
25722
26113
|
* AutomationsApi - functional programming interface
|
|
@@ -25728,12 +26119,12 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25728
26119
|
* @summary Post Automations
|
|
25729
26120
|
* @param {string} workspaceId
|
|
25730
26121
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
25731
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26122
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25732
26123
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25733
26124
|
* @param {*} [options] Override http request option.
|
|
25734
26125
|
* @throws {RequiredError}
|
|
25735
26126
|
*/
|
|
25736
|
-
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
26127
|
+
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
25737
26128
|
/**
|
|
25738
26129
|
*
|
|
25739
26130
|
* @summary Delete an Automation
|
|
@@ -25744,13 +26135,22 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25744
26135
|
* @throws {RequiredError}
|
|
25745
26136
|
*/
|
|
25746
26137
|
deleteEntityAutomations(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
26138
|
+
/**
|
|
26139
|
+
*
|
|
26140
|
+
* @summary Delete selected automations in the workspace
|
|
26141
|
+
* @param {string} workspaceId
|
|
26142
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
26143
|
+
* @param {*} [options] Override http request option.
|
|
26144
|
+
* @throws {RequiredError}
|
|
26145
|
+
*/
|
|
26146
|
+
deleteWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
25747
26147
|
/**
|
|
25748
26148
|
*
|
|
25749
26149
|
* @summary Get all Automations
|
|
25750
26150
|
* @param {string} workspaceId
|
|
25751
26151
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
25752
26152
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25753
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26153
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25754
26154
|
* @param {number} [page] Zero-based page index (0..N)
|
|
25755
26155
|
* @param {number} [size] The size of the page to be returned
|
|
25756
26156
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -25759,7 +26159,7 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25759
26159
|
* @param {*} [options] Override http request option.
|
|
25760
26160
|
* @throws {RequiredError}
|
|
25761
26161
|
*/
|
|
25762
|
-
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
26162
|
+
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
25763
26163
|
/**
|
|
25764
26164
|
* Retrieve automations for the specific workspace
|
|
25765
26165
|
* @summary Get automations
|
|
@@ -25775,13 +26175,13 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25775
26175
|
* @param {string} workspaceId
|
|
25776
26176
|
* @param {string} objectId
|
|
25777
26177
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25778
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26178
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25779
26179
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
25780
26180
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25781
26181
|
* @param {*} [options] Override http request option.
|
|
25782
26182
|
* @throws {RequiredError}
|
|
25783
26183
|
*/
|
|
25784
|
-
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
26184
|
+
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
25785
26185
|
/**
|
|
25786
26186
|
*
|
|
25787
26187
|
* @summary Patch an Automation
|
|
@@ -25789,11 +26189,11 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25789
26189
|
* @param {string} objectId
|
|
25790
26190
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
25791
26191
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25792
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26192
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25793
26193
|
* @param {*} [options] Override http request option.
|
|
25794
26194
|
* @throws {RequiredError}
|
|
25795
26195
|
*/
|
|
25796
|
-
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
26196
|
+
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
25797
26197
|
/**
|
|
25798
26198
|
* Set automations for the specific workspace.
|
|
25799
26199
|
* @summary Set automations
|
|
@@ -25819,6 +26219,15 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25819
26219
|
* @throws {RequiredError}
|
|
25820
26220
|
*/
|
|
25821
26221
|
unsubscribeAutomation(workspaceId: string, automationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
26222
|
+
/**
|
|
26223
|
+
*
|
|
26224
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
26225
|
+
* @param {string} workspaceId
|
|
26226
|
+
* @param {WorkspaceAutomationManagementBulkRequest} workspaceAutomationManagementBulkRequest
|
|
26227
|
+
* @param {*} [options] Override http request option.
|
|
26228
|
+
* @throws {RequiredError}
|
|
26229
|
+
*/
|
|
26230
|
+
unsubscribeSelectedWorkspaceAutomations(workspaceId: string, workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
25822
26231
|
/**
|
|
25823
26232
|
*
|
|
25824
26233
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -25834,11 +26243,11 @@ export declare const AutomationsApiFp: (configuration?: Configuration) => {
|
|
|
25834
26243
|
* @param {string} objectId
|
|
25835
26244
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
25836
26245
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25837
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26246
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25838
26247
|
* @param {*} [options] Override http request option.
|
|
25839
26248
|
* @throws {RequiredError}
|
|
25840
26249
|
*/
|
|
25841
|
-
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
26250
|
+
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
25842
26251
|
};
|
|
25843
26252
|
/**
|
|
25844
26253
|
* AutomationsApi - factory interface
|
|
@@ -25861,6 +26270,14 @@ export declare const AutomationsApiFactory: (configuration?: Configuration, base
|
|
|
25861
26270
|
* @throws {RequiredError}
|
|
25862
26271
|
*/
|
|
25863
26272
|
deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26273
|
+
/**
|
|
26274
|
+
*
|
|
26275
|
+
* @summary Delete selected automations in the workspace
|
|
26276
|
+
* @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26277
|
+
* @param {*} [options] Override http request option.
|
|
26278
|
+
* @throws {RequiredError}
|
|
26279
|
+
*/
|
|
26280
|
+
deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
25864
26281
|
/**
|
|
25865
26282
|
*
|
|
25866
26283
|
* @summary Get all Automations
|
|
@@ -25916,6 +26333,14 @@ export declare const AutomationsApiFactory: (configuration?: Configuration, base
|
|
|
25916
26333
|
* @throws {RequiredError}
|
|
25917
26334
|
*/
|
|
25918
26335
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26336
|
+
/**
|
|
26337
|
+
*
|
|
26338
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
26339
|
+
* @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26340
|
+
* @param {*} [options] Override http request option.
|
|
26341
|
+
* @throws {RequiredError}
|
|
26342
|
+
*/
|
|
26343
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
25919
26344
|
/**
|
|
25920
26345
|
*
|
|
25921
26346
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -25957,6 +26382,15 @@ export interface AutomationsApiInterface {
|
|
|
25957
26382
|
* @memberof AutomationsApiInterface
|
|
25958
26383
|
*/
|
|
25959
26384
|
deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26385
|
+
/**
|
|
26386
|
+
*
|
|
26387
|
+
* @summary Delete selected automations in the workspace
|
|
26388
|
+
* @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26389
|
+
* @param {*} [options] Override http request option.
|
|
26390
|
+
* @throws {RequiredError}
|
|
26391
|
+
* @memberof AutomationsApiInterface
|
|
26392
|
+
*/
|
|
26393
|
+
deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
25960
26394
|
/**
|
|
25961
26395
|
*
|
|
25962
26396
|
* @summary Get all Automations
|
|
@@ -26019,6 +26453,15 @@ export interface AutomationsApiInterface {
|
|
|
26019
26453
|
* @memberof AutomationsApiInterface
|
|
26020
26454
|
*/
|
|
26021
26455
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26456
|
+
/**
|
|
26457
|
+
*
|
|
26458
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
26459
|
+
* @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26460
|
+
* @param {*} [options] Override http request option.
|
|
26461
|
+
* @throws {RequiredError}
|
|
26462
|
+
* @memberof AutomationsApiInterface
|
|
26463
|
+
*/
|
|
26464
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26022
26465
|
/**
|
|
26023
26466
|
*
|
|
26024
26467
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -26058,10 +26501,10 @@ export interface AutomationsApiCreateEntityAutomationsRequest {
|
|
|
26058
26501
|
readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
|
|
26059
26502
|
/**
|
|
26060
26503
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26061
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
26504
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
26062
26505
|
* @memberof AutomationsApiCreateEntityAutomations
|
|
26063
26506
|
*/
|
|
26064
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
26507
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
26065
26508
|
/**
|
|
26066
26509
|
* Include Meta objects.
|
|
26067
26510
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -26094,6 +26537,25 @@ export interface AutomationsApiDeleteEntityAutomationsRequest {
|
|
|
26094
26537
|
*/
|
|
26095
26538
|
readonly filter?: string;
|
|
26096
26539
|
}
|
|
26540
|
+
/**
|
|
26541
|
+
* Request parameters for deleteWorkspaceAutomations operation in AutomationsApi.
|
|
26542
|
+
* @export
|
|
26543
|
+
* @interface AutomationsApiDeleteWorkspaceAutomationsRequest
|
|
26544
|
+
*/
|
|
26545
|
+
export interface AutomationsApiDeleteWorkspaceAutomationsRequest {
|
|
26546
|
+
/**
|
|
26547
|
+
*
|
|
26548
|
+
* @type {string}
|
|
26549
|
+
* @memberof AutomationsApiDeleteWorkspaceAutomations
|
|
26550
|
+
*/
|
|
26551
|
+
readonly workspaceId: string;
|
|
26552
|
+
/**
|
|
26553
|
+
*
|
|
26554
|
+
* @type {WorkspaceAutomationManagementBulkRequest}
|
|
26555
|
+
* @memberof AutomationsApiDeleteWorkspaceAutomations
|
|
26556
|
+
*/
|
|
26557
|
+
readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
|
|
26558
|
+
}
|
|
26097
26559
|
/**
|
|
26098
26560
|
* Request parameters for getAllEntitiesAutomations operation in AutomationsApi.
|
|
26099
26561
|
* @export
|
|
@@ -26120,10 +26582,10 @@ export interface AutomationsApiGetAllEntitiesAutomationsRequest {
|
|
|
26120
26582
|
readonly filter?: string;
|
|
26121
26583
|
/**
|
|
26122
26584
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26123
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
26585
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
26124
26586
|
* @memberof AutomationsApiGetAllEntitiesAutomations
|
|
26125
26587
|
*/
|
|
26126
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
26588
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
26127
26589
|
/**
|
|
26128
26590
|
* Zero-based page index (0..N)
|
|
26129
26591
|
* @type {number}
|
|
@@ -26200,10 +26662,10 @@ export interface AutomationsApiGetEntityAutomationsRequest {
|
|
|
26200
26662
|
readonly filter?: string;
|
|
26201
26663
|
/**
|
|
26202
26664
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26203
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
26665
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
26204
26666
|
* @memberof AutomationsApiGetEntityAutomations
|
|
26205
26667
|
*/
|
|
26206
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
26668
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
26207
26669
|
/**
|
|
26208
26670
|
*
|
|
26209
26671
|
* @type {boolean}
|
|
@@ -26249,10 +26711,10 @@ export interface AutomationsApiPatchEntityAutomationsRequest {
|
|
|
26249
26711
|
readonly filter?: string;
|
|
26250
26712
|
/**
|
|
26251
26713
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26252
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
26714
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
26253
26715
|
* @memberof AutomationsApiPatchEntityAutomations
|
|
26254
26716
|
*/
|
|
26255
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
26717
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
26256
26718
|
}
|
|
26257
26719
|
/**
|
|
26258
26720
|
* Request parameters for setAutomations operation in AutomationsApi.
|
|
@@ -26292,6 +26754,25 @@ export interface AutomationsApiUnsubscribeAutomationRequest {
|
|
|
26292
26754
|
*/
|
|
26293
26755
|
readonly automationId: string;
|
|
26294
26756
|
}
|
|
26757
|
+
/**
|
|
26758
|
+
* Request parameters for unsubscribeSelectedWorkspaceAutomations operation in AutomationsApi.
|
|
26759
|
+
* @export
|
|
26760
|
+
* @interface AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest
|
|
26761
|
+
*/
|
|
26762
|
+
export interface AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest {
|
|
26763
|
+
/**
|
|
26764
|
+
*
|
|
26765
|
+
* @type {string}
|
|
26766
|
+
* @memberof AutomationsApiUnsubscribeSelectedWorkspaceAutomations
|
|
26767
|
+
*/
|
|
26768
|
+
readonly workspaceId: string;
|
|
26769
|
+
/**
|
|
26770
|
+
*
|
|
26771
|
+
* @type {WorkspaceAutomationManagementBulkRequest}
|
|
26772
|
+
* @memberof AutomationsApiUnsubscribeSelectedWorkspaceAutomations
|
|
26773
|
+
*/
|
|
26774
|
+
readonly workspaceAutomationManagementBulkRequest: WorkspaceAutomationManagementBulkRequest;
|
|
26775
|
+
}
|
|
26295
26776
|
/**
|
|
26296
26777
|
* Request parameters for unsubscribeWorkspaceAutomations operation in AutomationsApi.
|
|
26297
26778
|
* @export
|
|
@@ -26337,10 +26818,10 @@ export interface AutomationsApiUpdateEntityAutomationsRequest {
|
|
|
26337
26818
|
readonly filter?: string;
|
|
26338
26819
|
/**
|
|
26339
26820
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
26340
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
26821
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
26341
26822
|
* @memberof AutomationsApiUpdateEntityAutomations
|
|
26342
26823
|
*/
|
|
26343
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
26824
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
26344
26825
|
}
|
|
26345
26826
|
/**
|
|
26346
26827
|
* AutomationsApi - object-oriented interface
|
|
@@ -26367,6 +26848,15 @@ export declare class AutomationsApi extends BaseAPI implements AutomationsApiInt
|
|
|
26367
26848
|
* @memberof AutomationsApi
|
|
26368
26849
|
*/
|
|
26369
26850
|
deleteEntityAutomations(requestParameters: AutomationsApiDeleteEntityAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
26851
|
+
/**
|
|
26852
|
+
*
|
|
26853
|
+
* @summary Delete selected automations in the workspace
|
|
26854
|
+
* @param {AutomationsApiDeleteWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26855
|
+
* @param {*} [options] Override http request option.
|
|
26856
|
+
* @throws {RequiredError}
|
|
26857
|
+
* @memberof AutomationsApi
|
|
26858
|
+
*/
|
|
26859
|
+
deleteWorkspaceAutomations(requestParameters: AutomationsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
26370
26860
|
/**
|
|
26371
26861
|
*
|
|
26372
26862
|
* @summary Get all Automations
|
|
@@ -26429,6 +26919,15 @@ export declare class AutomationsApi extends BaseAPI implements AutomationsApiInt
|
|
|
26429
26919
|
* @memberof AutomationsApi
|
|
26430
26920
|
*/
|
|
26431
26921
|
unsubscribeAutomation(requestParameters: AutomationsApiUnsubscribeAutomationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
26922
|
+
/**
|
|
26923
|
+
*
|
|
26924
|
+
* @summary Unsubscribe from selected automations in the workspace
|
|
26925
|
+
* @param {AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest} requestParameters Request parameters.
|
|
26926
|
+
* @param {*} [options] Override http request option.
|
|
26927
|
+
* @throws {RequiredError}
|
|
26928
|
+
* @memberof AutomationsApi
|
|
26929
|
+
*/
|
|
26930
|
+
unsubscribeSelectedWorkspaceAutomations(requestParameters: AutomationsApiUnsubscribeSelectedWorkspaceAutomationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
26432
26931
|
/**
|
|
26433
26932
|
*
|
|
26434
26933
|
* @summary Unsubscribe from all automations in the workspace
|
|
@@ -31269,12 +31768,12 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
31269
31768
|
* @summary Post Automations
|
|
31270
31769
|
* @param {string} workspaceId
|
|
31271
31770
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
31272
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
31771
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
31273
31772
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
31274
31773
|
* @param {*} [options] Override http request option.
|
|
31275
31774
|
* @throws {RequiredError}
|
|
31276
31775
|
*/
|
|
31277
|
-
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31776
|
+
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31278
31777
|
/**
|
|
31279
31778
|
*
|
|
31280
31779
|
* @summary Post Color Pallettes
|
|
@@ -31869,7 +32368,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
31869
32368
|
* @param {string} workspaceId
|
|
31870
32369
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
31871
32370
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
31872
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
32371
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
31873
32372
|
* @param {number} [page] Zero-based page index (0..N)
|
|
31874
32373
|
* @param {number} [size] The size of the page to be returned
|
|
31875
32374
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -31878,7 +32377,7 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
31878
32377
|
* @param {*} [options] Override http request option.
|
|
31879
32378
|
* @throws {RequiredError}
|
|
31880
32379
|
*/
|
|
31881
|
-
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32380
|
+
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31882
32381
|
/**
|
|
31883
32382
|
*
|
|
31884
32383
|
* @summary Get all Color Pallettes
|
|
@@ -32401,13 +32900,13 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
32401
32900
|
* @param {string} workspaceId
|
|
32402
32901
|
* @param {string} objectId
|
|
32403
32902
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
32404
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
32903
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
32405
32904
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
32406
32905
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32407
32906
|
* @param {*} [options] Override http request option.
|
|
32408
32907
|
* @throws {RequiredError}
|
|
32409
32908
|
*/
|
|
32410
|
-
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32909
|
+
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32411
32910
|
/**
|
|
32412
32911
|
*
|
|
32413
32912
|
* @summary Get Color Pallette
|
|
@@ -32814,11 +33313,11 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
32814
33313
|
* @param {string} objectId
|
|
32815
33314
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
32816
33315
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
32817
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33316
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
32818
33317
|
* @param {*} [options] Override http request option.
|
|
32819
33318
|
* @throws {RequiredError}
|
|
32820
33319
|
*/
|
|
32821
|
-
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33320
|
+
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32822
33321
|
/**
|
|
32823
33322
|
*
|
|
32824
33323
|
* @summary Patch Color Pallette
|
|
@@ -33134,11 +33633,11 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
33134
33633
|
* @param {string} objectId
|
|
33135
33634
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
33136
33635
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33137
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33636
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33138
33637
|
* @param {*} [options] Override http request option.
|
|
33139
33638
|
* @throws {RequiredError}
|
|
33140
33639
|
*/
|
|
33141
|
-
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33640
|
+
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33142
33641
|
/**
|
|
33143
33642
|
*
|
|
33144
33643
|
* @summary Put Color Pallette
|
|
@@ -33476,12 +33975,12 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
33476
33975
|
* @summary Post Automations
|
|
33477
33976
|
* @param {string} workspaceId
|
|
33478
33977
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
33479
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33978
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33480
33979
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
33481
33980
|
* @param {*} [options] Override http request option.
|
|
33482
33981
|
* @throws {RequiredError}
|
|
33483
33982
|
*/
|
|
33484
|
-
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
33983
|
+
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
33485
33984
|
/**
|
|
33486
33985
|
*
|
|
33487
33986
|
* @summary Post Color Pallettes
|
|
@@ -34076,7 +34575,7 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
34076
34575
|
* @param {string} workspaceId
|
|
34077
34576
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
34078
34577
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34079
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
34578
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
34080
34579
|
* @param {number} [page] Zero-based page index (0..N)
|
|
34081
34580
|
* @param {number} [size] The size of the page to be returned
|
|
34082
34581
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -34085,7 +34584,7 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
34085
34584
|
* @param {*} [options] Override http request option.
|
|
34086
34585
|
* @throws {RequiredError}
|
|
34087
34586
|
*/
|
|
34088
|
-
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
34587
|
+
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
34089
34588
|
/**
|
|
34090
34589
|
*
|
|
34091
34590
|
* @summary Get all Color Pallettes
|
|
@@ -34610,13 +35109,13 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
34610
35109
|
* @param {string} workspaceId
|
|
34611
35110
|
* @param {string} objectId
|
|
34612
35111
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34613
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35112
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
34614
35113
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
34615
35114
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
34616
35115
|
* @param {*} [options] Override http request option.
|
|
34617
35116
|
* @throws {RequiredError}
|
|
34618
35117
|
*/
|
|
34619
|
-
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
35118
|
+
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
34620
35119
|
/**
|
|
34621
35120
|
*
|
|
34622
35121
|
* @summary Get Color Pallette
|
|
@@ -35023,11 +35522,11 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
35023
35522
|
* @param {string} objectId
|
|
35024
35523
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
35025
35524
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35026
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35525
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35027
35526
|
* @param {*} [options] Override http request option.
|
|
35028
35527
|
* @throws {RequiredError}
|
|
35029
35528
|
*/
|
|
35030
|
-
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
35529
|
+
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
35031
35530
|
/**
|
|
35032
35531
|
*
|
|
35033
35532
|
* @summary Patch Color Pallette
|
|
@@ -35343,11 +35842,11 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
35343
35842
|
* @param {string} objectId
|
|
35344
35843
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
35345
35844
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35346
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35845
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35347
35846
|
* @param {*} [options] Override http request option.
|
|
35348
35847
|
* @throws {RequiredError}
|
|
35349
35848
|
*/
|
|
35350
|
-
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
35849
|
+
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
35351
35850
|
/**
|
|
35352
35851
|
*
|
|
35353
35852
|
* @summary Put Color Pallette
|
|
@@ -39114,10 +39613,10 @@ export interface EntitiesApiCreateEntityAutomationsRequest {
|
|
|
39114
39613
|
readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
|
|
39115
39614
|
/**
|
|
39116
39615
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
39117
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
39616
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
39118
39617
|
* @memberof EntitiesApiCreateEntityAutomations
|
|
39119
39618
|
*/
|
|
39120
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
39619
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
39121
39620
|
/**
|
|
39122
39621
|
* Include Meta objects.
|
|
39123
39622
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -40626,10 +41125,10 @@ export interface EntitiesApiGetAllEntitiesAutomationsRequest {
|
|
|
40626
41125
|
readonly filter?: string;
|
|
40627
41126
|
/**
|
|
40628
41127
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
40629
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
41128
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
40630
41129
|
* @memberof EntitiesApiGetAllEntitiesAutomations
|
|
40631
41130
|
*/
|
|
40632
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
41131
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
40633
41132
|
/**
|
|
40634
41133
|
* Zero-based page index (0..N)
|
|
40635
41134
|
* @type {number}
|
|
@@ -42416,10 +42915,10 @@ export interface EntitiesApiGetEntityAutomationsRequest {
|
|
|
42416
42915
|
readonly filter?: string;
|
|
42417
42916
|
/**
|
|
42418
42917
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
42419
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
42918
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
42420
42919
|
* @memberof EntitiesApiGetEntityAutomations
|
|
42421
42920
|
*/
|
|
42422
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
42921
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
42423
42922
|
/**
|
|
42424
42923
|
*
|
|
42425
42924
|
* @type {boolean}
|
|
@@ -43570,10 +44069,10 @@ export interface EntitiesApiPatchEntityAutomationsRequest {
|
|
|
43570
44069
|
readonly filter?: string;
|
|
43571
44070
|
/**
|
|
43572
44071
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
43573
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
44072
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
43574
44073
|
* @memberof EntitiesApiPatchEntityAutomations
|
|
43575
44074
|
*/
|
|
43576
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
44075
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
43577
44076
|
}
|
|
43578
44077
|
/**
|
|
43579
44078
|
* Request parameters for patchEntityColorPalettes operation in EntitiesApi.
|
|
@@ -44475,10 +44974,10 @@ export interface EntitiesApiUpdateEntityAutomationsRequest {
|
|
|
44475
44974
|
readonly filter?: string;
|
|
44476
44975
|
/**
|
|
44477
44976
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
44478
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
44977
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
44479
44978
|
* @memberof EntitiesApiUpdateEntityAutomations
|
|
44480
44979
|
*/
|
|
44481
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
44980
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
44482
44981
|
}
|
|
44483
44982
|
/**
|
|
44484
44983
|
* Request parameters for updateEntityColorPalettes operation in EntitiesApi.
|
|
@@ -69232,12 +69731,12 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
69232
69731
|
* @summary Post Automations
|
|
69233
69732
|
* @param {string} workspaceId
|
|
69234
69733
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
69235
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
69734
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
69236
69735
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
69237
69736
|
* @param {*} [options] Override http request option.
|
|
69238
69737
|
* @throws {RequiredError}
|
|
69239
69738
|
*/
|
|
69240
|
-
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69739
|
+
createEntityAutomations: (workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69241
69740
|
/**
|
|
69242
69741
|
*
|
|
69243
69742
|
* @summary Post Custom Application Settings
|
|
@@ -69565,7 +70064,7 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
69565
70064
|
* @param {string} workspaceId
|
|
69566
70065
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
69567
70066
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
69568
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70067
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
69569
70068
|
* @param {number} [page] Zero-based page index (0..N)
|
|
69570
70069
|
* @param {number} [size] The size of the page to be returned
|
|
69571
70070
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -69574,7 +70073,7 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
69574
70073
|
* @param {*} [options] Override http request option.
|
|
69575
70074
|
* @throws {RequiredError}
|
|
69576
70075
|
*/
|
|
69577
|
-
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70076
|
+
getAllEntitiesAutomations: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69578
70077
|
/**
|
|
69579
70078
|
*
|
|
69580
70079
|
* @summary Get all Custom Application Settings
|
|
@@ -69854,13 +70353,13 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
69854
70353
|
* @param {string} workspaceId
|
|
69855
70354
|
* @param {string} objectId
|
|
69856
70355
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
69857
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70356
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
69858
70357
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
69859
70358
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
69860
70359
|
* @param {*} [options] Override http request option.
|
|
69861
70360
|
* @throws {RequiredError}
|
|
69862
70361
|
*/
|
|
69863
|
-
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70362
|
+
getEntityAutomations: (workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69864
70363
|
/**
|
|
69865
70364
|
*
|
|
69866
70365
|
* @summary Get a Custom Application Setting
|
|
@@ -70071,11 +70570,11 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
70071
70570
|
* @param {string} objectId
|
|
70072
70571
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
70073
70572
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
70074
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70573
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70075
70574
|
* @param {*} [options] Override http request option.
|
|
70076
70575
|
* @throws {RequiredError}
|
|
70077
70576
|
*/
|
|
70078
|
-
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70577
|
+
patchEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70079
70578
|
/**
|
|
70080
70579
|
*
|
|
70081
70580
|
* @summary Patch a Custom Application Setting
|
|
@@ -70237,11 +70736,11 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
70237
70736
|
* @param {string} objectId
|
|
70238
70737
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
70239
70738
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
70240
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70739
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70241
70740
|
* @param {*} [options] Override http request option.
|
|
70242
70741
|
* @throws {RequiredError}
|
|
70243
70742
|
*/
|
|
70244
|
-
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70743
|
+
updateEntityAutomations: (workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70245
70744
|
/**
|
|
70246
70745
|
*
|
|
70247
70746
|
* @summary Put a Custom Application Setting
|
|
@@ -70405,12 +70904,12 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
70405
70904
|
* @summary Post Automations
|
|
70406
70905
|
* @param {string} workspaceId
|
|
70407
70906
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
70408
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70907
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70409
70908
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
70410
70909
|
* @param {*} [options] Override http request option.
|
|
70411
70910
|
* @throws {RequiredError}
|
|
70412
70911
|
*/
|
|
70413
|
-
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
70912
|
+
createEntityAutomations(workspaceId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
70414
70913
|
/**
|
|
70415
70914
|
*
|
|
70416
70915
|
* @summary Post Custom Application Settings
|
|
@@ -70738,7 +71237,7 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
70738
71237
|
* @param {string} workspaceId
|
|
70739
71238
|
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
70740
71239
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
70741
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71240
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
70742
71241
|
* @param {number} [page] Zero-based page index (0..N)
|
|
70743
71242
|
* @param {number} [size] The size of the page to be returned
|
|
70744
71243
|
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
@@ -70747,7 +71246,7 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
70747
71246
|
* @param {*} [options] Override http request option.
|
|
70748
71247
|
* @throws {RequiredError}
|
|
70749
71248
|
*/
|
|
70750
|
-
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
71249
|
+
getAllEntitiesAutomations(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutList>>;
|
|
70751
71250
|
/**
|
|
70752
71251
|
*
|
|
70753
71252
|
* @summary Get all Custom Application Settings
|
|
@@ -71027,13 +71526,13 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
71027
71526
|
* @param {string} workspaceId
|
|
71028
71527
|
* @param {string} objectId
|
|
71029
71528
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
71030
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71529
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71031
71530
|
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
71032
71531
|
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
71033
71532
|
* @param {*} [options] Override http request option.
|
|
71034
71533
|
* @throws {RequiredError}
|
|
71035
71534
|
*/
|
|
71036
|
-
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71535
|
+
getEntityAutomations(workspaceId: string, objectId: string, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71037
71536
|
/**
|
|
71038
71537
|
*
|
|
71039
71538
|
* @summary Get a Custom Application Setting
|
|
@@ -71244,11 +71743,11 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
71244
71743
|
* @param {string} objectId
|
|
71245
71744
|
* @param {JsonApiAutomationPatchDocument} jsonApiAutomationPatchDocument
|
|
71246
71745
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
71247
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71746
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71248
71747
|
* @param {*} [options] Override http request option.
|
|
71249
71748
|
* @throws {RequiredError}
|
|
71250
71749
|
*/
|
|
71251
|
-
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71750
|
+
patchEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationPatchDocument: JsonApiAutomationPatchDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71252
71751
|
/**
|
|
71253
71752
|
*
|
|
71254
71753
|
* @summary Patch a Custom Application Setting
|
|
@@ -71410,11 +71909,11 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
71410
71909
|
* @param {string} objectId
|
|
71411
71910
|
* @param {JsonApiAutomationInDocument} jsonApiAutomationInDocument
|
|
71412
71911
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
71413
|
-
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71912
|
+
* @param {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
71414
71913
|
* @param {*} [options] Override http request option.
|
|
71415
71914
|
* @throws {RequiredError}
|
|
71416
71915
|
*/
|
|
71417
|
-
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71916
|
+
updateEntityAutomations(workspaceId: string, objectId: string, jsonApiAutomationInDocument: JsonApiAutomationInDocument, filter?: string, include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiAutomationOutDocument>>;
|
|
71418
71917
|
/**
|
|
71419
71918
|
*
|
|
71420
71919
|
* @summary Put a Custom Application Setting
|
|
@@ -73235,10 +73734,10 @@ export interface WorkspaceObjectControllerApiCreateEntityAutomationsRequest {
|
|
|
73235
73734
|
readonly jsonApiAutomationInDocument: JsonApiAutomationInDocument;
|
|
73236
73735
|
/**
|
|
73237
73736
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
73238
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
73737
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
73239
73738
|
* @memberof WorkspaceObjectControllerApiCreateEntityAutomations
|
|
73240
73739
|
*/
|
|
73241
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
73740
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
73242
73741
|
/**
|
|
73243
73742
|
* Include Meta objects.
|
|
73244
73743
|
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
@@ -74189,10 +74688,10 @@ export interface WorkspaceObjectControllerApiGetAllEntitiesAutomationsRequest {
|
|
|
74189
74688
|
readonly filter?: string;
|
|
74190
74689
|
/**
|
|
74191
74690
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
74192
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
74691
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
74193
74692
|
* @memberof WorkspaceObjectControllerApiGetAllEntitiesAutomations
|
|
74194
74693
|
*/
|
|
74195
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
74694
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
74196
74695
|
/**
|
|
74197
74696
|
* Zero-based page index (0..N)
|
|
74198
74697
|
* @type {number}
|
|
@@ -75264,10 +75763,10 @@ export interface WorkspaceObjectControllerApiGetEntityAutomationsRequest {
|
|
|
75264
75763
|
readonly filter?: string;
|
|
75265
75764
|
/**
|
|
75266
75765
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
75267
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
75766
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
75268
75767
|
* @memberof WorkspaceObjectControllerApiGetEntityAutomations
|
|
75269
75768
|
*/
|
|
75270
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
75769
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
75271
75770
|
/**
|
|
75272
75771
|
*
|
|
75273
75772
|
* @type {boolean}
|
|
@@ -75971,10 +76470,10 @@ export interface WorkspaceObjectControllerApiPatchEntityAutomationsRequest {
|
|
|
75971
76470
|
readonly filter?: string;
|
|
75972
76471
|
/**
|
|
75973
76472
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
75974
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
76473
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
75975
76474
|
* @memberof WorkspaceObjectControllerApiPatchEntityAutomations
|
|
75976
76475
|
*/
|
|
75977
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
76476
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
75978
76477
|
}
|
|
75979
76478
|
/**
|
|
75980
76479
|
* Request parameters for patchEntityCustomApplicationSettings operation in WorkspaceObjectControllerApi.
|
|
@@ -76477,10 +76976,10 @@ export interface WorkspaceObjectControllerApiUpdateEntityAutomationsRequest {
|
|
|
76477
76976
|
readonly filter?: string;
|
|
76478
76977
|
/**
|
|
76479
76978
|
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
76480
|
-
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'ALL'>}
|
|
76979
|
+
* @type {Array<'notificationChannels' | 'analyticalDashboards' | 'userIdentifiers' | 'exportDefinitions' | 'users' | 'automationResults' | 'notificationChannel' | 'analyticalDashboard' | 'createdBy' | 'modifiedBy' | 'recipients' | 'automationResult' | 'ALL'>}
|
|
76481
76980
|
* @memberof WorkspaceObjectControllerApiUpdateEntityAutomations
|
|
76482
76981
|
*/
|
|
76483
|
-
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "ALL">;
|
|
76982
|
+
readonly include?: Array<"notificationChannels" | "analyticalDashboards" | "userIdentifiers" | "exportDefinitions" | "users" | "automationResults" | "notificationChannel" | "analyticalDashboard" | "createdBy" | "modifiedBy" | "recipients" | "automationResult" | "ALL">;
|
|
76484
76983
|
}
|
|
76485
76984
|
/**
|
|
76486
76985
|
* Request parameters for updateEntityCustomApplicationSettings operation in WorkspaceObjectControllerApi.
|