@gooddata/api-client-tiger 10.33.0-alpha.9 → 10.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1983 -1545
- package/esm/generated/afm-rest-api/api.d.ts +376 -13
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +305 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
- package/esm/generated/automation-json-api/api.d.ts +56 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +17 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +50 -1
- package/esm/generated/export-json-api/api.d.ts +56 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +17 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +50 -1
- package/esm/generated/metadata-json-api/api.d.ts +1429 -1372
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +65 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +4475 -4424
- package/esm/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -404,6 +404,7 @@ export declare const ApiEntitlementNameEnum: {
|
|
|
404
404
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
405
405
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
406
406
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
407
|
+
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
407
408
|
};
|
|
408
409
|
export type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
|
|
409
410
|
/**
|
|
@@ -820,6 +821,55 @@ export interface AvailableAssignees {
|
|
|
820
821
|
*/
|
|
821
822
|
userGroups: Array<UserGroupAssignee>;
|
|
822
823
|
}
|
|
824
|
+
/**
|
|
825
|
+
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
826
|
+
* @export
|
|
827
|
+
* @interface BoundedFilter
|
|
828
|
+
*/
|
|
829
|
+
export interface BoundedFilter {
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @type {AfmObjectIdentifierDataset}
|
|
833
|
+
* @memberof BoundedFilter
|
|
834
|
+
*/
|
|
835
|
+
dataset: AfmObjectIdentifierDataset;
|
|
836
|
+
/**
|
|
837
|
+
* Date granularity specifying particular date attribute in given dimension.
|
|
838
|
+
* @type {string}
|
|
839
|
+
* @memberof BoundedFilter
|
|
840
|
+
*/
|
|
841
|
+
granularity: BoundedFilterGranularityEnum;
|
|
842
|
+
/**
|
|
843
|
+
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
844
|
+
* @type {number}
|
|
845
|
+
* @memberof BoundedFilter
|
|
846
|
+
*/
|
|
847
|
+
from?: number | null;
|
|
848
|
+
/**
|
|
849
|
+
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
850
|
+
* @type {number}
|
|
851
|
+
* @memberof BoundedFilter
|
|
852
|
+
*/
|
|
853
|
+
to?: number | null;
|
|
854
|
+
}
|
|
855
|
+
export declare const BoundedFilterGranularityEnum: {
|
|
856
|
+
readonly MINUTE: "MINUTE";
|
|
857
|
+
readonly HOUR: "HOUR";
|
|
858
|
+
readonly DAY: "DAY";
|
|
859
|
+
readonly WEEK: "WEEK";
|
|
860
|
+
readonly MONTH: "MONTH";
|
|
861
|
+
readonly QUARTER: "QUARTER";
|
|
862
|
+
readonly YEAR: "YEAR";
|
|
863
|
+
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
864
|
+
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
865
|
+
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
866
|
+
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
867
|
+
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
868
|
+
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
869
|
+
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
870
|
+
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
871
|
+
};
|
|
872
|
+
export type BoundedFilterGranularityEnum = typeof BoundedFilterGranularityEnum[keyof typeof BoundedFilterGranularityEnum];
|
|
823
873
|
/**
|
|
824
874
|
* Table column override.
|
|
825
875
|
* @export
|
|
@@ -4865,6 +4915,7 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
|
4865
4915
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
4866
4916
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
4867
4917
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
4918
|
+
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
4868
4919
|
};
|
|
4869
4920
|
export type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
|
|
4870
4921
|
/**
|
|
@@ -5459,15 +5510,52 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
5459
5510
|
id: string;
|
|
5460
5511
|
/**
|
|
5461
5512
|
*
|
|
5462
|
-
* @type {
|
|
5513
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5463
5514
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
5464
5515
|
*/
|
|
5465
|
-
attributes:
|
|
5516
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5466
5517
|
}
|
|
5467
5518
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
5468
5519
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5469
5520
|
};
|
|
5470
5521
|
export type JsonApiAnalyticalDashboardInTypeEnum = typeof JsonApiAnalyticalDashboardInTypeEnum[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
5522
|
+
/**
|
|
5523
|
+
*
|
|
5524
|
+
* @export
|
|
5525
|
+
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
5526
|
+
*/
|
|
5527
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
5528
|
+
/**
|
|
5529
|
+
*
|
|
5530
|
+
* @type {string}
|
|
5531
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5532
|
+
*/
|
|
5533
|
+
title?: string;
|
|
5534
|
+
/**
|
|
5535
|
+
*
|
|
5536
|
+
* @type {string}
|
|
5537
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5538
|
+
*/
|
|
5539
|
+
description?: string;
|
|
5540
|
+
/**
|
|
5541
|
+
*
|
|
5542
|
+
* @type {Array<string>}
|
|
5543
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5544
|
+
*/
|
|
5545
|
+
tags?: Array<string>;
|
|
5546
|
+
/**
|
|
5547
|
+
*
|
|
5548
|
+
* @type {boolean}
|
|
5549
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5550
|
+
*/
|
|
5551
|
+
areRelationsValid?: boolean;
|
|
5552
|
+
/**
|
|
5553
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5554
|
+
* @type {object}
|
|
5555
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5556
|
+
*/
|
|
5557
|
+
content: object;
|
|
5558
|
+
}
|
|
5471
5559
|
/**
|
|
5472
5560
|
*
|
|
5473
5561
|
* @export
|
|
@@ -5595,10 +5683,10 @@ export interface JsonApiAnalyticalDashboardOutList {
|
|
|
5595
5683
|
links?: ListLinks;
|
|
5596
5684
|
/**
|
|
5597
5685
|
*
|
|
5598
|
-
* @type {
|
|
5686
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
5599
5687
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
5600
5688
|
*/
|
|
5601
|
-
meta?:
|
|
5689
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5602
5690
|
/**
|
|
5603
5691
|
* Included resources
|
|
5604
5692
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -5909,10 +5997,10 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
5909
5997
|
id?: string;
|
|
5910
5998
|
/**
|
|
5911
5999
|
*
|
|
5912
|
-
* @type {
|
|
6000
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5913
6001
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
5914
6002
|
*/
|
|
5915
|
-
attributes:
|
|
6003
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5916
6004
|
}
|
|
5917
6005
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
5918
6006
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -6054,23 +6142,10 @@ export interface JsonApiApiTokenOutList {
|
|
|
6054
6142
|
links?: ListLinks;
|
|
6055
6143
|
/**
|
|
6056
6144
|
*
|
|
6057
|
-
* @type {
|
|
6145
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
6058
6146
|
* @memberof JsonApiApiTokenOutList
|
|
6059
6147
|
*/
|
|
6060
|
-
meta?:
|
|
6061
|
-
}
|
|
6062
|
-
/**
|
|
6063
|
-
*
|
|
6064
|
-
* @export
|
|
6065
|
-
* @interface JsonApiApiTokenOutListMeta
|
|
6066
|
-
*/
|
|
6067
|
-
export interface JsonApiApiTokenOutListMeta {
|
|
6068
|
-
/**
|
|
6069
|
-
*
|
|
6070
|
-
* @type {PageMetadata}
|
|
6071
|
-
* @memberof JsonApiApiTokenOutListMeta
|
|
6072
|
-
*/
|
|
6073
|
-
page?: PageMetadata;
|
|
6148
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6074
6149
|
}
|
|
6075
6150
|
/**
|
|
6076
6151
|
*
|
|
@@ -6127,15 +6202,52 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
6127
6202
|
id: string;
|
|
6128
6203
|
/**
|
|
6129
6204
|
*
|
|
6130
|
-
* @type {
|
|
6205
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
6131
6206
|
* @memberof JsonApiAttributeHierarchyIn
|
|
6132
6207
|
*/
|
|
6133
|
-
attributes?:
|
|
6208
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
6134
6209
|
}
|
|
6135
6210
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
6136
6211
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
6137
6212
|
};
|
|
6138
6213
|
export type JsonApiAttributeHierarchyInTypeEnum = typeof JsonApiAttributeHierarchyInTypeEnum[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
6214
|
+
/**
|
|
6215
|
+
*
|
|
6216
|
+
* @export
|
|
6217
|
+
* @interface JsonApiAttributeHierarchyInAttributes
|
|
6218
|
+
*/
|
|
6219
|
+
export interface JsonApiAttributeHierarchyInAttributes {
|
|
6220
|
+
/**
|
|
6221
|
+
*
|
|
6222
|
+
* @type {string}
|
|
6223
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6224
|
+
*/
|
|
6225
|
+
title?: string;
|
|
6226
|
+
/**
|
|
6227
|
+
*
|
|
6228
|
+
* @type {string}
|
|
6229
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6230
|
+
*/
|
|
6231
|
+
description?: string;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {Array<string>}
|
|
6235
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6236
|
+
*/
|
|
6237
|
+
tags?: Array<string>;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {boolean}
|
|
6241
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6242
|
+
*/
|
|
6243
|
+
areRelationsValid?: boolean;
|
|
6244
|
+
/**
|
|
6245
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
6246
|
+
* @type {object}
|
|
6247
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6248
|
+
*/
|
|
6249
|
+
content?: object;
|
|
6250
|
+
}
|
|
6139
6251
|
/**
|
|
6140
6252
|
*
|
|
6141
6253
|
* @export
|
|
@@ -6312,10 +6424,10 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
6312
6424
|
links?: ListLinks;
|
|
6313
6425
|
/**
|
|
6314
6426
|
*
|
|
6315
|
-
* @type {
|
|
6427
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
6316
6428
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
6317
6429
|
*/
|
|
6318
|
-
meta?:
|
|
6430
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6319
6431
|
/**
|
|
6320
6432
|
* Included resources
|
|
6321
6433
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -6415,52 +6527,15 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
6415
6527
|
id: string;
|
|
6416
6528
|
/**
|
|
6417
6529
|
*
|
|
6418
|
-
* @type {
|
|
6530
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
6419
6531
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
6420
6532
|
*/
|
|
6421
|
-
attributes?:
|
|
6533
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
6422
6534
|
}
|
|
6423
6535
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
6424
6536
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
6425
6537
|
};
|
|
6426
6538
|
export type JsonApiAttributeHierarchyPatchTypeEnum = typeof JsonApiAttributeHierarchyPatchTypeEnum[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
6427
|
-
/**
|
|
6428
|
-
*
|
|
6429
|
-
* @export
|
|
6430
|
-
* @interface JsonApiAttributeHierarchyPatchAttributes
|
|
6431
|
-
*/
|
|
6432
|
-
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
6433
|
-
/**
|
|
6434
|
-
*
|
|
6435
|
-
* @type {string}
|
|
6436
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6437
|
-
*/
|
|
6438
|
-
title?: string;
|
|
6439
|
-
/**
|
|
6440
|
-
*
|
|
6441
|
-
* @type {string}
|
|
6442
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6443
|
-
*/
|
|
6444
|
-
description?: string;
|
|
6445
|
-
/**
|
|
6446
|
-
*
|
|
6447
|
-
* @type {Array<string>}
|
|
6448
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6449
|
-
*/
|
|
6450
|
-
tags?: Array<string>;
|
|
6451
|
-
/**
|
|
6452
|
-
*
|
|
6453
|
-
* @type {boolean}
|
|
6454
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6455
|
-
*/
|
|
6456
|
-
areRelationsValid?: boolean;
|
|
6457
|
-
/**
|
|
6458
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
6459
|
-
* @type {object}
|
|
6460
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6461
|
-
*/
|
|
6462
|
-
content?: object;
|
|
6463
|
-
}
|
|
6464
6539
|
/**
|
|
6465
6540
|
*
|
|
6466
6541
|
* @export
|
|
@@ -6682,10 +6757,10 @@ export interface JsonApiAttributeOutList {
|
|
|
6682
6757
|
links?: ListLinks;
|
|
6683
6758
|
/**
|
|
6684
6759
|
*
|
|
6685
|
-
* @type {
|
|
6760
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
6686
6761
|
* @memberof JsonApiAttributeOutList
|
|
6687
6762
|
*/
|
|
6688
|
-
meta?:
|
|
6763
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6689
6764
|
/**
|
|
6690
6765
|
* Included resources
|
|
6691
6766
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -6836,16 +6911,16 @@ export interface JsonApiAutomationIn {
|
|
|
6836
6911
|
id: string;
|
|
6837
6912
|
/**
|
|
6838
6913
|
*
|
|
6839
|
-
* @type {
|
|
6914
|
+
* @type {JsonApiAutomationInAttributes}
|
|
6840
6915
|
* @memberof JsonApiAutomationIn
|
|
6841
6916
|
*/
|
|
6842
|
-
attributes?:
|
|
6917
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
6843
6918
|
/**
|
|
6844
6919
|
*
|
|
6845
|
-
* @type {
|
|
6920
|
+
* @type {JsonApiAutomationInRelationships}
|
|
6846
6921
|
* @memberof JsonApiAutomationIn
|
|
6847
6922
|
*/
|
|
6848
|
-
relationships?:
|
|
6923
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
6849
6924
|
}
|
|
6850
6925
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
6851
6926
|
readonly AUTOMATION: "automation";
|
|
@@ -6854,760 +6929,760 @@ export type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[key
|
|
|
6854
6929
|
/**
|
|
6855
6930
|
*
|
|
6856
6931
|
* @export
|
|
6857
|
-
* @interface
|
|
6858
|
-
*/
|
|
6859
|
-
export interface JsonApiAutomationInDocument {
|
|
6860
|
-
/**
|
|
6861
|
-
*
|
|
6862
|
-
* @type {JsonApiAutomationIn}
|
|
6863
|
-
* @memberof JsonApiAutomationInDocument
|
|
6864
|
-
*/
|
|
6865
|
-
data: JsonApiAutomationIn;
|
|
6866
|
-
}
|
|
6867
|
-
/**
|
|
6868
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6869
|
-
* @export
|
|
6870
|
-
* @interface JsonApiAutomationLinkage
|
|
6871
|
-
*/
|
|
6872
|
-
export interface JsonApiAutomationLinkage {
|
|
6873
|
-
/**
|
|
6874
|
-
*
|
|
6875
|
-
* @type {string}
|
|
6876
|
-
* @memberof JsonApiAutomationLinkage
|
|
6877
|
-
*/
|
|
6878
|
-
id: string;
|
|
6879
|
-
/**
|
|
6880
|
-
*
|
|
6881
|
-
* @type {string}
|
|
6882
|
-
* @memberof JsonApiAutomationLinkage
|
|
6883
|
-
*/
|
|
6884
|
-
type: JsonApiAutomationLinkageTypeEnum;
|
|
6885
|
-
}
|
|
6886
|
-
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
6887
|
-
readonly AUTOMATION: "automation";
|
|
6888
|
-
};
|
|
6889
|
-
export type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
6890
|
-
/**
|
|
6891
|
-
* JSON:API representation of automation entity.
|
|
6892
|
-
* @export
|
|
6893
|
-
* @interface JsonApiAutomationOut
|
|
6894
|
-
*/
|
|
6895
|
-
export interface JsonApiAutomationOut {
|
|
6896
|
-
/**
|
|
6897
|
-
* Object type
|
|
6898
|
-
* @type {string}
|
|
6899
|
-
* @memberof JsonApiAutomationOut
|
|
6900
|
-
*/
|
|
6901
|
-
type: JsonApiAutomationOutTypeEnum;
|
|
6902
|
-
/**
|
|
6903
|
-
* API identifier of an object
|
|
6904
|
-
* @type {string}
|
|
6905
|
-
* @memberof JsonApiAutomationOut
|
|
6906
|
-
*/
|
|
6907
|
-
id: string;
|
|
6908
|
-
/**
|
|
6909
|
-
*
|
|
6910
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
6911
|
-
* @memberof JsonApiAutomationOut
|
|
6912
|
-
*/
|
|
6913
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6914
|
-
/**
|
|
6915
|
-
*
|
|
6916
|
-
* @type {JsonApiAutomationOutAttributes}
|
|
6917
|
-
* @memberof JsonApiAutomationOut
|
|
6918
|
-
*/
|
|
6919
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
6920
|
-
/**
|
|
6921
|
-
*
|
|
6922
|
-
* @type {JsonApiAutomationOutRelationships}
|
|
6923
|
-
* @memberof JsonApiAutomationOut
|
|
6924
|
-
*/
|
|
6925
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
6926
|
-
}
|
|
6927
|
-
export declare const JsonApiAutomationOutTypeEnum: {
|
|
6928
|
-
readonly AUTOMATION: "automation";
|
|
6929
|
-
};
|
|
6930
|
-
export type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
6931
|
-
/**
|
|
6932
|
-
*
|
|
6933
|
-
* @export
|
|
6934
|
-
* @interface JsonApiAutomationOutAttributes
|
|
6932
|
+
* @interface JsonApiAutomationInAttributes
|
|
6935
6933
|
*/
|
|
6936
|
-
export interface
|
|
6934
|
+
export interface JsonApiAutomationInAttributes {
|
|
6937
6935
|
/**
|
|
6938
6936
|
*
|
|
6939
6937
|
* @type {string}
|
|
6940
|
-
* @memberof
|
|
6938
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6941
6939
|
*/
|
|
6942
6940
|
title?: string;
|
|
6943
6941
|
/**
|
|
6944
6942
|
*
|
|
6945
6943
|
* @type {string}
|
|
6946
|
-
* @memberof
|
|
6944
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6947
6945
|
*/
|
|
6948
6946
|
description?: string;
|
|
6949
6947
|
/**
|
|
6950
6948
|
*
|
|
6951
6949
|
* @type {Array<string>}
|
|
6952
|
-
* @memberof
|
|
6950
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6953
6951
|
*/
|
|
6954
6952
|
tags?: Array<string>;
|
|
6955
6953
|
/**
|
|
6956
6954
|
*
|
|
6957
6955
|
* @type {boolean}
|
|
6958
|
-
* @memberof
|
|
6956
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6959
6957
|
*/
|
|
6960
6958
|
areRelationsValid?: boolean;
|
|
6961
6959
|
/**
|
|
6962
6960
|
* Additional details to be included in the automated message.
|
|
6963
6961
|
* @type {any}
|
|
6964
|
-
* @memberof
|
|
6962
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6965
6963
|
*/
|
|
6966
6964
|
details?: any;
|
|
6967
6965
|
/**
|
|
6968
6966
|
*
|
|
6969
|
-
* @type {
|
|
6970
|
-
* @memberof
|
|
6967
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
6968
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6971
6969
|
*/
|
|
6972
|
-
metadata?:
|
|
6970
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
6973
6971
|
/**
|
|
6974
6972
|
* Current state of the automation.
|
|
6975
6973
|
* @type {string}
|
|
6976
|
-
* @memberof
|
|
6974
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6977
6975
|
*/
|
|
6978
|
-
state?:
|
|
6976
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
6979
6977
|
/**
|
|
6980
6978
|
*
|
|
6981
|
-
* @type {
|
|
6982
|
-
* @memberof
|
|
6979
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
6980
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6983
6981
|
*/
|
|
6984
|
-
schedule?:
|
|
6982
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
6985
6983
|
/**
|
|
6986
6984
|
*
|
|
6987
|
-
* @type {
|
|
6988
|
-
* @memberof
|
|
6985
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
6986
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6989
6987
|
*/
|
|
6990
|
-
alert?:
|
|
6988
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
6991
6989
|
/**
|
|
6992
6990
|
*
|
|
6993
|
-
* @type {Array<
|
|
6994
|
-
* @memberof
|
|
6991
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
6992
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6995
6993
|
*/
|
|
6996
|
-
tabularExports?: Array<
|
|
6994
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
6997
6995
|
/**
|
|
6998
6996
|
*
|
|
6999
|
-
* @type {Array<
|
|
7000
|
-
* @memberof
|
|
6997
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
6998
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7001
6999
|
*/
|
|
7002
|
-
visualExports?: Array<
|
|
7000
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
7003
7001
|
/**
|
|
7004
7002
|
*
|
|
7005
|
-
* @type {Array<
|
|
7006
|
-
* @memberof
|
|
7003
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
7004
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7007
7005
|
*/
|
|
7008
|
-
imageExports?: Array<
|
|
7006
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
7009
7007
|
/**
|
|
7010
7008
|
*
|
|
7011
|
-
* @type {Array<
|
|
7012
|
-
* @memberof
|
|
7009
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
7010
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7013
7011
|
*/
|
|
7014
|
-
rawExports?: Array<
|
|
7012
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
7015
7013
|
/**
|
|
7016
7014
|
*
|
|
7017
|
-
* @type {Array<
|
|
7018
|
-
* @memberof
|
|
7015
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
7016
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7019
7017
|
*/
|
|
7020
|
-
slidesExports?: Array<
|
|
7018
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
7021
7019
|
/**
|
|
7022
7020
|
*
|
|
7023
|
-
* @type {Array<
|
|
7024
|
-
* @memberof
|
|
7021
|
+
* @type {Array<JsonApiAutomationInAttributesDashboardTabularExports>}
|
|
7022
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7025
7023
|
*/
|
|
7026
|
-
dashboardTabularExports?: Array<
|
|
7024
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExports>;
|
|
7027
7025
|
/**
|
|
7028
7026
|
* External recipients of the automation action results.
|
|
7029
|
-
* @type {Array<
|
|
7030
|
-
* @memberof
|
|
7031
|
-
*/
|
|
7032
|
-
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
7033
|
-
/**
|
|
7034
|
-
*
|
|
7035
|
-
* @type {string}
|
|
7036
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
7037
|
-
*/
|
|
7038
|
-
createdAt?: string;
|
|
7039
|
-
/**
|
|
7040
|
-
*
|
|
7041
|
-
* @type {string}
|
|
7042
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
7027
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
7028
|
+
* @memberof JsonApiAutomationInAttributes
|
|
7043
7029
|
*/
|
|
7044
|
-
|
|
7030
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
7045
7031
|
}
|
|
7046
|
-
export declare const
|
|
7032
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
7047
7033
|
readonly ACTIVE: "ACTIVE";
|
|
7048
7034
|
readonly PAUSED: "PAUSED";
|
|
7049
7035
|
};
|
|
7050
|
-
export type
|
|
7036
|
+
export type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
7051
7037
|
/**
|
|
7052
7038
|
*
|
|
7053
7039
|
* @export
|
|
7054
|
-
* @interface
|
|
7040
|
+
* @interface JsonApiAutomationInAttributesAlert
|
|
7055
7041
|
*/
|
|
7056
|
-
export interface
|
|
7042
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
7057
7043
|
/**
|
|
7058
7044
|
*
|
|
7059
|
-
* @type {
|
|
7060
|
-
* @memberof
|
|
7045
|
+
* @type {AlertAfm}
|
|
7046
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
7061
7047
|
*/
|
|
7062
|
-
|
|
7048
|
+
execution: AlertAfm;
|
|
7063
7049
|
/**
|
|
7064
7050
|
*
|
|
7065
|
-
* @type {
|
|
7066
|
-
* @memberof
|
|
7051
|
+
* @type {AlertCondition}
|
|
7052
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
7067
7053
|
*/
|
|
7068
|
-
|
|
7054
|
+
condition: AlertCondition;
|
|
7069
7055
|
/**
|
|
7070
|
-
*
|
|
7071
|
-
* @type {
|
|
7072
|
-
* @memberof
|
|
7056
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
7057
|
+
* @type {string}
|
|
7058
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
7073
7059
|
*/
|
|
7074
|
-
|
|
7060
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
7075
7061
|
}
|
|
7062
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
7063
|
+
readonly ALWAYS: "ALWAYS";
|
|
7064
|
+
readonly ONCE: "ONCE";
|
|
7065
|
+
};
|
|
7066
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
7076
7067
|
/**
|
|
7077
|
-
*
|
|
7068
|
+
*
|
|
7078
7069
|
* @export
|
|
7070
|
+
* @interface JsonApiAutomationInAttributesDashboardTabularExports
|
|
7079
7071
|
*/
|
|
7080
|
-
export
|
|
7072
|
+
export interface JsonApiAutomationInAttributesDashboardTabularExports {
|
|
7073
|
+
/**
|
|
7074
|
+
*
|
|
7075
|
+
* @type {DashboardTabularExportRequestV2}
|
|
7076
|
+
* @memberof JsonApiAutomationInAttributesDashboardTabularExports
|
|
7077
|
+
*/
|
|
7078
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
7079
|
+
}
|
|
7081
7080
|
/**
|
|
7082
|
-
*
|
|
7081
|
+
*
|
|
7083
7082
|
* @export
|
|
7084
|
-
* @interface
|
|
7083
|
+
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
7085
7084
|
*/
|
|
7086
|
-
export interface
|
|
7085
|
+
export interface JsonApiAutomationInAttributesExternalRecipients {
|
|
7086
|
+
/**
|
|
7087
|
+
* E-mail address to send notifications from.
|
|
7088
|
+
* @type {string}
|
|
7089
|
+
* @memberof JsonApiAutomationInAttributesExternalRecipients
|
|
7090
|
+
*/
|
|
7091
|
+
email: string;
|
|
7092
|
+
}
|
|
7093
|
+
/**
|
|
7094
|
+
*
|
|
7095
|
+
* @export
|
|
7096
|
+
* @interface JsonApiAutomationInAttributesImageExports
|
|
7097
|
+
*/
|
|
7098
|
+
export interface JsonApiAutomationInAttributesImageExports {
|
|
7087
7099
|
/**
|
|
7088
7100
|
*
|
|
7089
|
-
* @type {
|
|
7090
|
-
* @memberof
|
|
7101
|
+
* @type {ImageExportRequest}
|
|
7102
|
+
* @memberof JsonApiAutomationInAttributesImageExports
|
|
7091
7103
|
*/
|
|
7092
|
-
|
|
7104
|
+
requestPayload: ImageExportRequest;
|
|
7105
|
+
}
|
|
7106
|
+
/**
|
|
7107
|
+
* Additional information for the automation.
|
|
7108
|
+
* @export
|
|
7109
|
+
* @interface JsonApiAutomationInAttributesMetadata
|
|
7110
|
+
*/
|
|
7111
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
7093
7112
|
/**
|
|
7094
7113
|
*
|
|
7095
|
-
* @type {
|
|
7096
|
-
* @memberof
|
|
7114
|
+
* @type {string}
|
|
7115
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
7097
7116
|
*/
|
|
7098
|
-
|
|
7117
|
+
widget?: string;
|
|
7099
7118
|
/**
|
|
7100
7119
|
*
|
|
7101
|
-
* @type {
|
|
7102
|
-
* @memberof
|
|
7120
|
+
* @type {Array<VisibleFilter>}
|
|
7121
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
7103
7122
|
*/
|
|
7104
|
-
|
|
7123
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
7124
|
+
}
|
|
7125
|
+
/**
|
|
7126
|
+
*
|
|
7127
|
+
* @export
|
|
7128
|
+
* @interface JsonApiAutomationInAttributesRawExports
|
|
7129
|
+
*/
|
|
7130
|
+
export interface JsonApiAutomationInAttributesRawExports {
|
|
7105
7131
|
/**
|
|
7106
|
-
*
|
|
7107
|
-
* @type {
|
|
7108
|
-
* @memberof
|
|
7132
|
+
*
|
|
7133
|
+
* @type {RawExportRequest}
|
|
7134
|
+
* @memberof JsonApiAutomationInAttributesRawExports
|
|
7109
7135
|
*/
|
|
7110
|
-
|
|
7136
|
+
requestPayload: RawExportRequest;
|
|
7111
7137
|
}
|
|
7112
7138
|
/**
|
|
7113
7139
|
*
|
|
7114
7140
|
* @export
|
|
7115
|
-
* @interface
|
|
7141
|
+
* @interface JsonApiAutomationInAttributesSchedule
|
|
7116
7142
|
*/
|
|
7117
|
-
export interface
|
|
7143
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
7144
|
+
/**
|
|
7145
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
7148
|
+
*/
|
|
7149
|
+
cron: string;
|
|
7150
|
+
/**
|
|
7151
|
+
* Human-readable description of the cron expression.
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
7154
|
+
*/
|
|
7155
|
+
cronDescription?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
* Timezone in which the schedule is defined.
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
7160
|
+
*/
|
|
7161
|
+
timezone: string;
|
|
7162
|
+
/**
|
|
7163
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
7164
|
+
* @type {string}
|
|
7165
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
7166
|
+
*/
|
|
7167
|
+
firstRun?: string;
|
|
7168
|
+
}
|
|
7169
|
+
/**
|
|
7170
|
+
*
|
|
7171
|
+
* @export
|
|
7172
|
+
* @interface JsonApiAutomationInAttributesSlidesExports
|
|
7173
|
+
*/
|
|
7174
|
+
export interface JsonApiAutomationInAttributesSlidesExports {
|
|
7118
7175
|
/**
|
|
7119
7176
|
*
|
|
7120
|
-
* @type {
|
|
7121
|
-
* @memberof
|
|
7177
|
+
* @type {SlidesExportRequest}
|
|
7178
|
+
* @memberof JsonApiAutomationInAttributesSlidesExports
|
|
7122
7179
|
*/
|
|
7123
|
-
|
|
7180
|
+
requestPayload: SlidesExportRequest;
|
|
7181
|
+
}
|
|
7182
|
+
/**
|
|
7183
|
+
*
|
|
7184
|
+
* @export
|
|
7185
|
+
* @interface JsonApiAutomationInAttributesTabularExports
|
|
7186
|
+
*/
|
|
7187
|
+
export interface JsonApiAutomationInAttributesTabularExports {
|
|
7124
7188
|
/**
|
|
7125
7189
|
*
|
|
7126
|
-
* @type {
|
|
7127
|
-
* @memberof
|
|
7190
|
+
* @type {TabularExportRequest}
|
|
7191
|
+
* @memberof JsonApiAutomationInAttributesTabularExports
|
|
7128
7192
|
*/
|
|
7129
|
-
|
|
7193
|
+
requestPayload: TabularExportRequest;
|
|
7194
|
+
}
|
|
7195
|
+
/**
|
|
7196
|
+
*
|
|
7197
|
+
* @export
|
|
7198
|
+
* @interface JsonApiAutomationInAttributesVisualExports
|
|
7199
|
+
*/
|
|
7200
|
+
export interface JsonApiAutomationInAttributesVisualExports {
|
|
7130
7201
|
/**
|
|
7131
7202
|
*
|
|
7132
|
-
* @type {
|
|
7133
|
-
* @memberof
|
|
7203
|
+
* @type {VisualExportRequest}
|
|
7204
|
+
* @memberof JsonApiAutomationInAttributesVisualExports
|
|
7134
7205
|
*/
|
|
7135
|
-
|
|
7206
|
+
requestPayload: VisualExportRequest;
|
|
7207
|
+
}
|
|
7208
|
+
/**
|
|
7209
|
+
*
|
|
7210
|
+
* @export
|
|
7211
|
+
* @interface JsonApiAutomationInDocument
|
|
7212
|
+
*/
|
|
7213
|
+
export interface JsonApiAutomationInDocument {
|
|
7136
7214
|
/**
|
|
7137
7215
|
*
|
|
7138
|
-
* @type {
|
|
7139
|
-
* @memberof
|
|
7216
|
+
* @type {JsonApiAutomationIn}
|
|
7217
|
+
* @memberof JsonApiAutomationInDocument
|
|
7140
7218
|
*/
|
|
7141
|
-
|
|
7219
|
+
data: JsonApiAutomationIn;
|
|
7220
|
+
}
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @export
|
|
7224
|
+
* @interface JsonApiAutomationInRelationships
|
|
7225
|
+
*/
|
|
7226
|
+
export interface JsonApiAutomationInRelationships {
|
|
7142
7227
|
/**
|
|
7143
7228
|
*
|
|
7144
|
-
* @type {
|
|
7145
|
-
* @memberof
|
|
7229
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
7230
|
+
* @memberof JsonApiAutomationInRelationships
|
|
7146
7231
|
*/
|
|
7147
|
-
|
|
7232
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
7148
7233
|
/**
|
|
7149
7234
|
*
|
|
7150
|
-
* @type {
|
|
7151
|
-
* @memberof
|
|
7235
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
7236
|
+
* @memberof JsonApiAutomationInRelationships
|
|
7152
7237
|
*/
|
|
7153
|
-
|
|
7238
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
7239
|
+
/**
|
|
7240
|
+
*
|
|
7241
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
7242
|
+
* @memberof JsonApiAutomationInRelationships
|
|
7243
|
+
*/
|
|
7244
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
7245
|
+
/**
|
|
7246
|
+
*
|
|
7247
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
7248
|
+
* @memberof JsonApiAutomationInRelationships
|
|
7249
|
+
*/
|
|
7250
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
7154
7251
|
}
|
|
7155
7252
|
/**
|
|
7156
7253
|
*
|
|
7157
7254
|
* @export
|
|
7158
|
-
* @interface
|
|
7255
|
+
* @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
7159
7256
|
*/
|
|
7160
|
-
export interface
|
|
7257
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
7161
7258
|
/**
|
|
7162
|
-
*
|
|
7163
|
-
* @type {
|
|
7164
|
-
* @memberof
|
|
7259
|
+
*
|
|
7260
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
7261
|
+
* @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
7165
7262
|
*/
|
|
7166
|
-
|
|
7263
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
7264
|
+
}
|
|
7265
|
+
/**
|
|
7266
|
+
*
|
|
7267
|
+
* @export
|
|
7268
|
+
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
7269
|
+
*/
|
|
7270
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
7167
7271
|
/**
|
|
7168
|
-
*
|
|
7169
|
-
* @type {
|
|
7170
|
-
* @memberof
|
|
7272
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7273
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
7274
|
+
* @memberof JsonApiAutomationInRelationshipsExportDefinitions
|
|
7171
7275
|
*/
|
|
7172
|
-
|
|
7276
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
7277
|
+
}
|
|
7278
|
+
/**
|
|
7279
|
+
*
|
|
7280
|
+
* @export
|
|
7281
|
+
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
7282
|
+
*/
|
|
7283
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
7173
7284
|
/**
|
|
7174
7285
|
*
|
|
7175
|
-
* @type {
|
|
7176
|
-
* @memberof
|
|
7286
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
7287
|
+
* @memberof JsonApiAutomationInRelationshipsNotificationChannel
|
|
7177
7288
|
*/
|
|
7178
|
-
|
|
7289
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
7290
|
+
}
|
|
7291
|
+
/**
|
|
7292
|
+
*
|
|
7293
|
+
* @export
|
|
7294
|
+
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
7295
|
+
*/
|
|
7296
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
7179
7297
|
/**
|
|
7180
|
-
*
|
|
7181
|
-
* @type {
|
|
7182
|
-
* @memberof
|
|
7298
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7299
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
7300
|
+
* @memberof JsonApiAutomationInRelationshipsRecipients
|
|
7183
7301
|
*/
|
|
7184
|
-
|
|
7302
|
+
data: Array<JsonApiUserLinkage>;
|
|
7303
|
+
}
|
|
7304
|
+
/**
|
|
7305
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7306
|
+
* @export
|
|
7307
|
+
* @interface JsonApiAutomationLinkage
|
|
7308
|
+
*/
|
|
7309
|
+
export interface JsonApiAutomationLinkage {
|
|
7185
7310
|
/**
|
|
7186
7311
|
*
|
|
7187
|
-
* @type {
|
|
7188
|
-
* @memberof
|
|
7312
|
+
* @type {string}
|
|
7313
|
+
* @memberof JsonApiAutomationLinkage
|
|
7189
7314
|
*/
|
|
7190
|
-
|
|
7315
|
+
id: string;
|
|
7191
7316
|
/**
|
|
7192
7317
|
*
|
|
7193
|
-
* @type {
|
|
7194
|
-
* @memberof
|
|
7318
|
+
* @type {string}
|
|
7319
|
+
* @memberof JsonApiAutomationLinkage
|
|
7195
7320
|
*/
|
|
7196
|
-
|
|
7321
|
+
type: JsonApiAutomationLinkageTypeEnum;
|
|
7197
7322
|
}
|
|
7198
|
-
export declare const
|
|
7323
|
+
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
7199
7324
|
readonly AUTOMATION: "automation";
|
|
7200
7325
|
};
|
|
7201
|
-
export type
|
|
7326
|
+
export type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
7202
7327
|
/**
|
|
7203
|
-
* JSON:API representation of
|
|
7328
|
+
* JSON:API representation of automation entity.
|
|
7204
7329
|
* @export
|
|
7205
|
-
* @interface
|
|
7330
|
+
* @interface JsonApiAutomationOut
|
|
7206
7331
|
*/
|
|
7207
|
-
export interface
|
|
7332
|
+
export interface JsonApiAutomationOut {
|
|
7208
7333
|
/**
|
|
7209
7334
|
* Object type
|
|
7210
7335
|
* @type {string}
|
|
7211
|
-
* @memberof
|
|
7336
|
+
* @memberof JsonApiAutomationOut
|
|
7212
7337
|
*/
|
|
7213
|
-
type:
|
|
7338
|
+
type: JsonApiAutomationOutTypeEnum;
|
|
7214
7339
|
/**
|
|
7215
7340
|
* API identifier of an object
|
|
7216
7341
|
* @type {string}
|
|
7217
|
-
* @memberof
|
|
7342
|
+
* @memberof JsonApiAutomationOut
|
|
7218
7343
|
*/
|
|
7219
7344
|
id: string;
|
|
7220
7345
|
/**
|
|
7221
7346
|
*
|
|
7222
|
-
* @type {
|
|
7223
|
-
* @memberof
|
|
7347
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7348
|
+
* @memberof JsonApiAutomationOut
|
|
7224
7349
|
*/
|
|
7225
|
-
|
|
7350
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7226
7351
|
/**
|
|
7227
7352
|
*
|
|
7228
|
-
* @type {
|
|
7229
|
-
* @memberof
|
|
7353
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7354
|
+
* @memberof JsonApiAutomationOut
|
|
7355
|
+
*/
|
|
7356
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7357
|
+
/**
|
|
7358
|
+
*
|
|
7359
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7360
|
+
* @memberof JsonApiAutomationOut
|
|
7230
7361
|
*/
|
|
7231
|
-
relationships?:
|
|
7362
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7232
7363
|
}
|
|
7233
|
-
export declare const
|
|
7364
|
+
export declare const JsonApiAutomationOutTypeEnum: {
|
|
7234
7365
|
readonly AUTOMATION: "automation";
|
|
7235
7366
|
};
|
|
7236
|
-
export type
|
|
7367
|
+
export type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
7237
7368
|
/**
|
|
7238
7369
|
*
|
|
7239
7370
|
* @export
|
|
7240
|
-
* @interface
|
|
7371
|
+
* @interface JsonApiAutomationOutAttributes
|
|
7241
7372
|
*/
|
|
7242
|
-
export interface
|
|
7373
|
+
export interface JsonApiAutomationOutAttributes {
|
|
7243
7374
|
/**
|
|
7244
7375
|
*
|
|
7245
7376
|
* @type {string}
|
|
7246
|
-
* @memberof
|
|
7377
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7247
7378
|
*/
|
|
7248
7379
|
title?: string;
|
|
7249
7380
|
/**
|
|
7250
7381
|
*
|
|
7251
7382
|
* @type {string}
|
|
7252
|
-
* @memberof
|
|
7383
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7253
7384
|
*/
|
|
7254
7385
|
description?: string;
|
|
7255
7386
|
/**
|
|
7256
7387
|
*
|
|
7257
7388
|
* @type {Array<string>}
|
|
7258
|
-
* @memberof
|
|
7389
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7259
7390
|
*/
|
|
7260
7391
|
tags?: Array<string>;
|
|
7261
7392
|
/**
|
|
7262
7393
|
*
|
|
7263
7394
|
* @type {boolean}
|
|
7264
|
-
* @memberof
|
|
7395
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7265
7396
|
*/
|
|
7266
7397
|
areRelationsValid?: boolean;
|
|
7267
7398
|
/**
|
|
7268
7399
|
* Additional details to be included in the automated message.
|
|
7269
7400
|
* @type {any}
|
|
7270
|
-
* @memberof
|
|
7401
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7271
7402
|
*/
|
|
7272
7403
|
details?: any;
|
|
7273
7404
|
/**
|
|
7274
7405
|
*
|
|
7275
|
-
* @type {
|
|
7276
|
-
* @memberof
|
|
7406
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
7407
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7277
7408
|
*/
|
|
7278
|
-
metadata?:
|
|
7409
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
7279
7410
|
/**
|
|
7280
7411
|
* Current state of the automation.
|
|
7281
7412
|
* @type {string}
|
|
7282
|
-
* @memberof
|
|
7413
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7283
7414
|
*/
|
|
7284
|
-
state?:
|
|
7415
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
7285
7416
|
/**
|
|
7286
7417
|
*
|
|
7287
|
-
* @type {
|
|
7288
|
-
* @memberof
|
|
7418
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
7419
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7289
7420
|
*/
|
|
7290
|
-
schedule?:
|
|
7421
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
7291
7422
|
/**
|
|
7292
7423
|
*
|
|
7293
|
-
* @type {
|
|
7294
|
-
* @memberof
|
|
7424
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
7425
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7295
7426
|
*/
|
|
7296
|
-
alert?:
|
|
7427
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
7297
7428
|
/**
|
|
7298
7429
|
*
|
|
7299
|
-
* @type {Array<
|
|
7300
|
-
* @memberof
|
|
7430
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
7431
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7301
7432
|
*/
|
|
7302
|
-
tabularExports?: Array<
|
|
7433
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
7303
7434
|
/**
|
|
7304
7435
|
*
|
|
7305
|
-
* @type {Array<
|
|
7306
|
-
* @memberof
|
|
7436
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
7437
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7307
7438
|
*/
|
|
7308
|
-
visualExports?: Array<
|
|
7439
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
7309
7440
|
/**
|
|
7310
7441
|
*
|
|
7311
|
-
* @type {Array<
|
|
7312
|
-
* @memberof
|
|
7442
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
7443
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7313
7444
|
*/
|
|
7314
|
-
imageExports?: Array<
|
|
7445
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
7315
7446
|
/**
|
|
7316
7447
|
*
|
|
7317
|
-
* @type {Array<
|
|
7318
|
-
* @memberof
|
|
7448
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
7449
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7319
7450
|
*/
|
|
7320
|
-
rawExports?: Array<
|
|
7451
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
7321
7452
|
/**
|
|
7322
7453
|
*
|
|
7323
|
-
* @type {Array<
|
|
7324
|
-
* @memberof
|
|
7454
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
7455
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7325
7456
|
*/
|
|
7326
|
-
slidesExports?: Array<
|
|
7457
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
7327
7458
|
/**
|
|
7328
7459
|
*
|
|
7329
|
-
* @type {Array<
|
|
7330
|
-
* @memberof
|
|
7460
|
+
* @type {Array<JsonApiAutomationInAttributesDashboardTabularExports>}
|
|
7461
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7331
7462
|
*/
|
|
7332
|
-
dashboardTabularExports?: Array<
|
|
7463
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExports>;
|
|
7333
7464
|
/**
|
|
7334
7465
|
* External recipients of the automation action results.
|
|
7335
|
-
* @type {Array<
|
|
7336
|
-
* @memberof
|
|
7466
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
7467
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7337
7468
|
*/
|
|
7338
|
-
externalRecipients?: Array<
|
|
7339
|
-
}
|
|
7340
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
7341
|
-
readonly ACTIVE: "ACTIVE";
|
|
7342
|
-
readonly PAUSED: "PAUSED";
|
|
7343
|
-
};
|
|
7344
|
-
export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
7345
|
-
/**
|
|
7346
|
-
*
|
|
7347
|
-
* @export
|
|
7348
|
-
* @interface JsonApiAutomationPatchAttributesAlert
|
|
7349
|
-
*/
|
|
7350
|
-
export interface JsonApiAutomationPatchAttributesAlert {
|
|
7469
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
7351
7470
|
/**
|
|
7352
7471
|
*
|
|
7353
|
-
* @type {
|
|
7354
|
-
* @memberof
|
|
7472
|
+
* @type {string}
|
|
7473
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7355
7474
|
*/
|
|
7356
|
-
|
|
7475
|
+
createdAt?: string;
|
|
7357
7476
|
/**
|
|
7358
7477
|
*
|
|
7359
|
-
* @type {AlertCondition}
|
|
7360
|
-
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
7361
|
-
*/
|
|
7362
|
-
condition: AlertCondition;
|
|
7363
|
-
/**
|
|
7364
|
-
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
7365
7478
|
* @type {string}
|
|
7366
|
-
* @memberof
|
|
7479
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7367
7480
|
*/
|
|
7368
|
-
|
|
7481
|
+
modifiedAt?: string;
|
|
7369
7482
|
}
|
|
7370
|
-
export declare const
|
|
7371
|
-
readonly
|
|
7372
|
-
readonly
|
|
7483
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
7484
|
+
readonly ACTIVE: "ACTIVE";
|
|
7485
|
+
readonly PAUSED: "PAUSED";
|
|
7373
7486
|
};
|
|
7374
|
-
export type
|
|
7487
|
+
export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
7375
7488
|
/**
|
|
7376
7489
|
*
|
|
7377
7490
|
* @export
|
|
7378
|
-
* @interface
|
|
7491
|
+
* @interface JsonApiAutomationOutDocument
|
|
7379
7492
|
*/
|
|
7380
|
-
export interface
|
|
7493
|
+
export interface JsonApiAutomationOutDocument {
|
|
7381
7494
|
/**
|
|
7382
7495
|
*
|
|
7383
|
-
* @type {
|
|
7384
|
-
* @memberof
|
|
7496
|
+
* @type {JsonApiAutomationOut}
|
|
7497
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7385
7498
|
*/
|
|
7386
|
-
|
|
7387
|
-
}
|
|
7388
|
-
/**
|
|
7389
|
-
*
|
|
7390
|
-
* @export
|
|
7391
|
-
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
7392
|
-
*/
|
|
7393
|
-
export interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
7499
|
+
data: JsonApiAutomationOut;
|
|
7394
7500
|
/**
|
|
7395
|
-
*
|
|
7396
|
-
* @type {
|
|
7397
|
-
* @memberof
|
|
7501
|
+
*
|
|
7502
|
+
* @type {ObjectLinks}
|
|
7503
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7398
7504
|
*/
|
|
7399
|
-
|
|
7505
|
+
links?: ObjectLinks;
|
|
7506
|
+
/**
|
|
7507
|
+
* Included resources
|
|
7508
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7509
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7510
|
+
*/
|
|
7511
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7400
7512
|
}
|
|
7401
7513
|
/**
|
|
7402
|
-
*
|
|
7514
|
+
* @type JsonApiAutomationOutIncludes
|
|
7403
7515
|
* @export
|
|
7404
|
-
* @interface JsonApiAutomationPatchAttributesImageExports
|
|
7405
7516
|
*/
|
|
7406
|
-
export
|
|
7407
|
-
/**
|
|
7408
|
-
*
|
|
7409
|
-
* @type {ImageExportRequest}
|
|
7410
|
-
* @memberof JsonApiAutomationPatchAttributesImageExports
|
|
7411
|
-
*/
|
|
7412
|
-
requestPayload: ImageExportRequest;
|
|
7413
|
-
}
|
|
7517
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7414
7518
|
/**
|
|
7415
|
-
*
|
|
7519
|
+
* A JSON:API document with a list of resources
|
|
7416
7520
|
* @export
|
|
7417
|
-
* @interface
|
|
7521
|
+
* @interface JsonApiAutomationOutList
|
|
7418
7522
|
*/
|
|
7419
|
-
export interface
|
|
7523
|
+
export interface JsonApiAutomationOutList {
|
|
7420
7524
|
/**
|
|
7421
7525
|
*
|
|
7422
|
-
* @type {
|
|
7423
|
-
* @memberof
|
|
7526
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
7527
|
+
* @memberof JsonApiAutomationOutList
|
|
7424
7528
|
*/
|
|
7425
|
-
|
|
7529
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
7426
7530
|
/**
|
|
7427
7531
|
*
|
|
7428
|
-
* @type {
|
|
7429
|
-
* @memberof
|
|
7532
|
+
* @type {ListLinks}
|
|
7533
|
+
* @memberof JsonApiAutomationOutList
|
|
7430
7534
|
*/
|
|
7431
|
-
|
|
7432
|
-
}
|
|
7433
|
-
/**
|
|
7434
|
-
*
|
|
7435
|
-
* @export
|
|
7436
|
-
* @interface JsonApiAutomationPatchAttributesRawExports
|
|
7437
|
-
*/
|
|
7438
|
-
export interface JsonApiAutomationPatchAttributesRawExports {
|
|
7535
|
+
links?: ListLinks;
|
|
7439
7536
|
/**
|
|
7440
7537
|
*
|
|
7441
|
-
* @type {
|
|
7442
|
-
* @memberof
|
|
7538
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7539
|
+
* @memberof JsonApiAutomationOutList
|
|
7443
7540
|
*/
|
|
7444
|
-
|
|
7541
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7542
|
+
/**
|
|
7543
|
+
* Included resources
|
|
7544
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7545
|
+
* @memberof JsonApiAutomationOutList
|
|
7546
|
+
*/
|
|
7547
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7445
7548
|
}
|
|
7446
7549
|
/**
|
|
7447
7550
|
*
|
|
7448
7551
|
* @export
|
|
7449
|
-
* @interface
|
|
7552
|
+
* @interface JsonApiAutomationOutRelationships
|
|
7450
7553
|
*/
|
|
7451
|
-
export interface
|
|
7554
|
+
export interface JsonApiAutomationOutRelationships {
|
|
7452
7555
|
/**
|
|
7453
|
-
*
|
|
7454
|
-
* @type {
|
|
7455
|
-
* @memberof
|
|
7556
|
+
*
|
|
7557
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
7558
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7456
7559
|
*/
|
|
7457
|
-
|
|
7560
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
7458
7561
|
/**
|
|
7459
|
-
*
|
|
7460
|
-
* @type {
|
|
7461
|
-
* @memberof
|
|
7562
|
+
*
|
|
7563
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
7564
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7462
7565
|
*/
|
|
7463
|
-
|
|
7566
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
7464
7567
|
/**
|
|
7465
|
-
*
|
|
7466
|
-
* @type {
|
|
7467
|
-
* @memberof
|
|
7568
|
+
*
|
|
7569
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7570
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7468
7571
|
*/
|
|
7469
|
-
|
|
7572
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7470
7573
|
/**
|
|
7471
|
-
*
|
|
7472
|
-
* @type {
|
|
7473
|
-
* @memberof
|
|
7574
|
+
*
|
|
7575
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7576
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7474
7577
|
*/
|
|
7475
|
-
|
|
7476
|
-
}
|
|
7477
|
-
/**
|
|
7478
|
-
*
|
|
7479
|
-
* @export
|
|
7480
|
-
* @interface JsonApiAutomationPatchAttributesSlidesExports
|
|
7481
|
-
*/
|
|
7482
|
-
export interface JsonApiAutomationPatchAttributesSlidesExports {
|
|
7578
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7483
7579
|
/**
|
|
7484
7580
|
*
|
|
7485
|
-
* @type {
|
|
7486
|
-
* @memberof
|
|
7581
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
7582
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7487
7583
|
*/
|
|
7488
|
-
|
|
7489
|
-
}
|
|
7490
|
-
/**
|
|
7491
|
-
*
|
|
7492
|
-
* @export
|
|
7493
|
-
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
7494
|
-
*/
|
|
7495
|
-
export interface JsonApiAutomationPatchAttributesTabularExports {
|
|
7584
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
7496
7585
|
/**
|
|
7497
7586
|
*
|
|
7498
|
-
* @type {
|
|
7499
|
-
* @memberof
|
|
7587
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
7588
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7500
7589
|
*/
|
|
7501
|
-
|
|
7590
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
7502
7591
|
}
|
|
7503
7592
|
/**
|
|
7504
7593
|
*
|
|
7505
7594
|
* @export
|
|
7506
|
-
* @interface
|
|
7595
|
+
* @interface JsonApiAutomationOutWithLinks
|
|
7507
7596
|
*/
|
|
7508
|
-
export interface
|
|
7597
|
+
export interface JsonApiAutomationOutWithLinks {
|
|
7509
7598
|
/**
|
|
7510
|
-
*
|
|
7511
|
-
* @type {
|
|
7512
|
-
* @memberof
|
|
7599
|
+
* Object type
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7513
7602
|
*/
|
|
7514
|
-
|
|
7515
|
-
}
|
|
7516
|
-
/**
|
|
7517
|
-
*
|
|
7518
|
-
* @export
|
|
7519
|
-
* @interface JsonApiAutomationPatchDocument
|
|
7520
|
-
*/
|
|
7521
|
-
export interface JsonApiAutomationPatchDocument {
|
|
7603
|
+
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
7522
7604
|
/**
|
|
7523
|
-
*
|
|
7524
|
-
* @type {
|
|
7525
|
-
* @memberof
|
|
7605
|
+
* API identifier of an object
|
|
7606
|
+
* @type {string}
|
|
7607
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7526
7608
|
*/
|
|
7527
|
-
|
|
7528
|
-
}
|
|
7529
|
-
/**
|
|
7530
|
-
*
|
|
7531
|
-
* @export
|
|
7532
|
-
* @interface JsonApiAutomationPatchRelationships
|
|
7533
|
-
*/
|
|
7534
|
-
export interface JsonApiAutomationPatchRelationships {
|
|
7609
|
+
id: string;
|
|
7535
7610
|
/**
|
|
7536
7611
|
*
|
|
7537
|
-
* @type {
|
|
7538
|
-
* @memberof
|
|
7612
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7613
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7539
7614
|
*/
|
|
7540
|
-
|
|
7615
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7541
7616
|
/**
|
|
7542
7617
|
*
|
|
7543
|
-
* @type {
|
|
7544
|
-
* @memberof
|
|
7618
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7619
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7545
7620
|
*/
|
|
7546
|
-
|
|
7621
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7547
7622
|
/**
|
|
7548
7623
|
*
|
|
7549
|
-
* @type {
|
|
7550
|
-
* @memberof
|
|
7624
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7625
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7551
7626
|
*/
|
|
7552
|
-
|
|
7627
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7553
7628
|
/**
|
|
7554
7629
|
*
|
|
7555
|
-
* @type {
|
|
7556
|
-
* @memberof
|
|
7630
|
+
* @type {ObjectLinks}
|
|
7631
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7557
7632
|
*/
|
|
7558
|
-
|
|
7633
|
+
links?: ObjectLinks;
|
|
7559
7634
|
}
|
|
7635
|
+
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
7636
|
+
readonly AUTOMATION: "automation";
|
|
7637
|
+
};
|
|
7638
|
+
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
7560
7639
|
/**
|
|
7561
|
-
*
|
|
7640
|
+
* JSON:API representation of patching automation entity.
|
|
7562
7641
|
* @export
|
|
7563
|
-
* @interface
|
|
7642
|
+
* @interface JsonApiAutomationPatch
|
|
7564
7643
|
*/
|
|
7565
|
-
export interface
|
|
7644
|
+
export interface JsonApiAutomationPatch {
|
|
7566
7645
|
/**
|
|
7567
|
-
*
|
|
7568
|
-
* @type {
|
|
7569
|
-
* @memberof
|
|
7646
|
+
* Object type
|
|
7647
|
+
* @type {string}
|
|
7648
|
+
* @memberof JsonApiAutomationPatch
|
|
7570
7649
|
*/
|
|
7571
|
-
|
|
7572
|
-
}
|
|
7573
|
-
/**
|
|
7574
|
-
*
|
|
7575
|
-
* @export
|
|
7576
|
-
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
7577
|
-
*/
|
|
7578
|
-
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
7650
|
+
type: JsonApiAutomationPatchTypeEnum;
|
|
7579
7651
|
/**
|
|
7580
|
-
*
|
|
7581
|
-
* @type {
|
|
7582
|
-
* @memberof
|
|
7652
|
+
* API identifier of an object
|
|
7653
|
+
* @type {string}
|
|
7654
|
+
* @memberof JsonApiAutomationPatch
|
|
7583
7655
|
*/
|
|
7584
|
-
|
|
7585
|
-
}
|
|
7586
|
-
/**
|
|
7587
|
-
*
|
|
7588
|
-
* @export
|
|
7589
|
-
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
7590
|
-
*/
|
|
7591
|
-
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
7656
|
+
id: string;
|
|
7592
7657
|
/**
|
|
7593
7658
|
*
|
|
7594
|
-
* @type {
|
|
7595
|
-
* @memberof
|
|
7659
|
+
* @type {JsonApiAutomationInAttributes}
|
|
7660
|
+
* @memberof JsonApiAutomationPatch
|
|
7596
7661
|
*/
|
|
7597
|
-
|
|
7662
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
7663
|
+
/**
|
|
7664
|
+
*
|
|
7665
|
+
* @type {JsonApiAutomationInRelationships}
|
|
7666
|
+
* @memberof JsonApiAutomationPatch
|
|
7667
|
+
*/
|
|
7668
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
7598
7669
|
}
|
|
7670
|
+
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7671
|
+
readonly AUTOMATION: "automation";
|
|
7672
|
+
};
|
|
7673
|
+
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7599
7674
|
/**
|
|
7600
7675
|
*
|
|
7601
7676
|
* @export
|
|
7602
|
-
* @interface
|
|
7677
|
+
* @interface JsonApiAutomationPatchDocument
|
|
7603
7678
|
*/
|
|
7604
|
-
export interface
|
|
7679
|
+
export interface JsonApiAutomationPatchDocument {
|
|
7605
7680
|
/**
|
|
7606
|
-
*
|
|
7607
|
-
* @type {
|
|
7608
|
-
* @memberof
|
|
7681
|
+
*
|
|
7682
|
+
* @type {JsonApiAutomationPatch}
|
|
7683
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
7609
7684
|
*/
|
|
7610
|
-
data:
|
|
7685
|
+
data: JsonApiAutomationPatch;
|
|
7611
7686
|
}
|
|
7612
7687
|
/**
|
|
7613
7688
|
* @type JsonApiAutomationToOneLinkage
|
|
@@ -7744,10 +7819,23 @@ export interface JsonApiColorPaletteOutList {
|
|
|
7744
7819
|
links?: ListLinks;
|
|
7745
7820
|
/**
|
|
7746
7821
|
*
|
|
7747
|
-
* @type {
|
|
7822
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7748
7823
|
* @memberof JsonApiColorPaletteOutList
|
|
7749
7824
|
*/
|
|
7750
|
-
meta?:
|
|
7825
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7826
|
+
}
|
|
7827
|
+
/**
|
|
7828
|
+
*
|
|
7829
|
+
* @export
|
|
7830
|
+
* @interface JsonApiColorPaletteOutListMeta
|
|
7831
|
+
*/
|
|
7832
|
+
export interface JsonApiColorPaletteOutListMeta {
|
|
7833
|
+
/**
|
|
7834
|
+
*
|
|
7835
|
+
* @type {PageMetadata}
|
|
7836
|
+
* @memberof JsonApiColorPaletteOutListMeta
|
|
7837
|
+
*/
|
|
7838
|
+
page?: PageMetadata;
|
|
7751
7839
|
}
|
|
7752
7840
|
/**
|
|
7753
7841
|
*
|
|
@@ -7865,10 +7953,10 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
7865
7953
|
id: string;
|
|
7866
7954
|
/**
|
|
7867
7955
|
*
|
|
7868
|
-
* @type {
|
|
7956
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7869
7957
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
7870
7958
|
*/
|
|
7871
|
-
attributes?:
|
|
7959
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7872
7960
|
}
|
|
7873
7961
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
7874
7962
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -7907,34 +7995,15 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
7907
7995
|
id: string;
|
|
7908
7996
|
/**
|
|
7909
7997
|
*
|
|
7910
|
-
* @type {
|
|
7998
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7911
7999
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
7912
8000
|
*/
|
|
7913
|
-
attributes?:
|
|
8001
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7914
8002
|
}
|
|
7915
8003
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
7916
8004
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7917
8005
|
};
|
|
7918
8006
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = typeof JsonApiCookieSecurityConfigurationOutTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
7919
|
-
/**
|
|
7920
|
-
*
|
|
7921
|
-
* @export
|
|
7922
|
-
* @interface JsonApiCookieSecurityConfigurationOutAttributes
|
|
7923
|
-
*/
|
|
7924
|
-
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
7925
|
-
/**
|
|
7926
|
-
*
|
|
7927
|
-
* @type {string}
|
|
7928
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7929
|
-
*/
|
|
7930
|
-
lastRotation?: string;
|
|
7931
|
-
/**
|
|
7932
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7933
|
-
* @type {string}
|
|
7934
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7935
|
-
*/
|
|
7936
|
-
rotationInterval?: string;
|
|
7937
|
-
}
|
|
7938
8007
|
/**
|
|
7939
8008
|
*
|
|
7940
8009
|
* @export
|
|
@@ -7974,15 +8043,34 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
7974
8043
|
id: string;
|
|
7975
8044
|
/**
|
|
7976
8045
|
*
|
|
7977
|
-
* @type {
|
|
8046
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7978
8047
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
7979
8048
|
*/
|
|
7980
|
-
attributes?:
|
|
8049
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7981
8050
|
}
|
|
7982
8051
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
7983
8052
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7984
8053
|
};
|
|
7985
8054
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = typeof JsonApiCookieSecurityConfigurationPatchTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
8055
|
+
/**
|
|
8056
|
+
*
|
|
8057
|
+
* @export
|
|
8058
|
+
* @interface JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8059
|
+
*/
|
|
8060
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
8061
|
+
/**
|
|
8062
|
+
*
|
|
8063
|
+
* @type {string}
|
|
8064
|
+
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8065
|
+
*/
|
|
8066
|
+
lastRotation?: string;
|
|
8067
|
+
/**
|
|
8068
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
8069
|
+
* @type {string}
|
|
8070
|
+
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
8071
|
+
*/
|
|
8072
|
+
rotationInterval?: string;
|
|
8073
|
+
}
|
|
7986
8074
|
/**
|
|
7987
8075
|
*
|
|
7988
8076
|
* @export
|
|
@@ -8119,10 +8207,10 @@ export interface JsonApiCspDirectiveOutList {
|
|
|
8119
8207
|
links?: ListLinks;
|
|
8120
8208
|
/**
|
|
8121
8209
|
*
|
|
8122
|
-
* @type {
|
|
8210
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
8123
8211
|
* @memberof JsonApiCspDirectiveOutList
|
|
8124
8212
|
*/
|
|
8125
|
-
meta?:
|
|
8213
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8126
8214
|
}
|
|
8127
8215
|
/**
|
|
8128
8216
|
*
|
|
@@ -8234,15 +8322,34 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
8234
8322
|
id: string;
|
|
8235
8323
|
/**
|
|
8236
8324
|
*
|
|
8237
|
-
* @type {
|
|
8325
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8238
8326
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
8239
8327
|
*/
|
|
8240
|
-
attributes:
|
|
8328
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8241
8329
|
}
|
|
8242
8330
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
8243
8331
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8244
8332
|
};
|
|
8245
8333
|
export type JsonApiCustomApplicationSettingInTypeEnum = typeof JsonApiCustomApplicationSettingInTypeEnum[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
8334
|
+
/**
|
|
8335
|
+
*
|
|
8336
|
+
* @export
|
|
8337
|
+
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
8338
|
+
*/
|
|
8339
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
8340
|
+
/**
|
|
8341
|
+
*
|
|
8342
|
+
* @type {string}
|
|
8343
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8344
|
+
*/
|
|
8345
|
+
applicationName: string;
|
|
8346
|
+
/**
|
|
8347
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8348
|
+
* @type {object}
|
|
8349
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8350
|
+
*/
|
|
8351
|
+
content: object;
|
|
8352
|
+
}
|
|
8246
8353
|
/**
|
|
8247
8354
|
*
|
|
8248
8355
|
* @export
|
|
@@ -8282,34 +8389,15 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
8282
8389
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8283
8390
|
/**
|
|
8284
8391
|
*
|
|
8285
|
-
* @type {
|
|
8392
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8286
8393
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
8287
8394
|
*/
|
|
8288
|
-
attributes:
|
|
8395
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8289
8396
|
}
|
|
8290
8397
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
8291
8398
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8292
8399
|
};
|
|
8293
8400
|
export type JsonApiCustomApplicationSettingOutTypeEnum = typeof JsonApiCustomApplicationSettingOutTypeEnum[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
8294
|
-
/**
|
|
8295
|
-
*
|
|
8296
|
-
* @export
|
|
8297
|
-
* @interface JsonApiCustomApplicationSettingOutAttributes
|
|
8298
|
-
*/
|
|
8299
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
8300
|
-
/**
|
|
8301
|
-
*
|
|
8302
|
-
* @type {string}
|
|
8303
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
8304
|
-
*/
|
|
8305
|
-
applicationName: string;
|
|
8306
|
-
/**
|
|
8307
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8308
|
-
* @type {object}
|
|
8309
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
8310
|
-
*/
|
|
8311
|
-
content: object;
|
|
8312
|
-
}
|
|
8313
8401
|
/**
|
|
8314
8402
|
*
|
|
8315
8403
|
* @export
|
|
@@ -8349,10 +8437,10 @@ export interface JsonApiCustomApplicationSettingOutList {
|
|
|
8349
8437
|
links?: ListLinks;
|
|
8350
8438
|
/**
|
|
8351
8439
|
*
|
|
8352
|
-
* @type {
|
|
8440
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
8353
8441
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
8354
8442
|
*/
|
|
8355
|
-
meta?:
|
|
8443
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8356
8444
|
}
|
|
8357
8445
|
/**
|
|
8358
8446
|
*
|
|
@@ -8380,10 +8468,10 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
8380
8468
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8381
8469
|
/**
|
|
8382
8470
|
*
|
|
8383
|
-
* @type {
|
|
8471
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8384
8472
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
8385
8473
|
*/
|
|
8386
|
-
attributes:
|
|
8474
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8387
8475
|
/**
|
|
8388
8476
|
*
|
|
8389
8477
|
* @type {ObjectLinks}
|
|
@@ -8476,10 +8564,10 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
8476
8564
|
id?: string;
|
|
8477
8565
|
/**
|
|
8478
8566
|
*
|
|
8479
|
-
* @type {
|
|
8567
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8480
8568
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
8481
8569
|
*/
|
|
8482
|
-
attributes:
|
|
8570
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8483
8571
|
}
|
|
8484
8572
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
8485
8573
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -8518,15 +8606,52 @@ export interface JsonApiDashboardPluginIn {
|
|
|
8518
8606
|
id: string;
|
|
8519
8607
|
/**
|
|
8520
8608
|
*
|
|
8521
|
-
* @type {
|
|
8609
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8522
8610
|
* @memberof JsonApiDashboardPluginIn
|
|
8523
8611
|
*/
|
|
8524
|
-
attributes?:
|
|
8612
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8525
8613
|
}
|
|
8526
8614
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
8527
8615
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8528
8616
|
};
|
|
8529
8617
|
export type JsonApiDashboardPluginInTypeEnum = typeof JsonApiDashboardPluginInTypeEnum[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
8618
|
+
/**
|
|
8619
|
+
*
|
|
8620
|
+
* @export
|
|
8621
|
+
* @interface JsonApiDashboardPluginInAttributes
|
|
8622
|
+
*/
|
|
8623
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
8624
|
+
/**
|
|
8625
|
+
*
|
|
8626
|
+
* @type {string}
|
|
8627
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8628
|
+
*/
|
|
8629
|
+
title?: string;
|
|
8630
|
+
/**
|
|
8631
|
+
*
|
|
8632
|
+
* @type {string}
|
|
8633
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8634
|
+
*/
|
|
8635
|
+
description?: string;
|
|
8636
|
+
/**
|
|
8637
|
+
*
|
|
8638
|
+
* @type {Array<string>}
|
|
8639
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8640
|
+
*/
|
|
8641
|
+
tags?: Array<string>;
|
|
8642
|
+
/**
|
|
8643
|
+
*
|
|
8644
|
+
* @type {boolean}
|
|
8645
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8646
|
+
*/
|
|
8647
|
+
areRelationsValid?: boolean;
|
|
8648
|
+
/**
|
|
8649
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8650
|
+
* @type {object}
|
|
8651
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8652
|
+
*/
|
|
8653
|
+
content?: object;
|
|
8654
|
+
}
|
|
8530
8655
|
/**
|
|
8531
8656
|
*
|
|
8532
8657
|
* @export
|
|
@@ -8698,10 +8823,10 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
8698
8823
|
links?: ListLinks;
|
|
8699
8824
|
/**
|
|
8700
8825
|
*
|
|
8701
|
-
* @type {
|
|
8826
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
8702
8827
|
* @memberof JsonApiDashboardPluginOutList
|
|
8703
8828
|
*/
|
|
8704
|
-
meta?:
|
|
8829
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8705
8830
|
/**
|
|
8706
8831
|
* Included resources
|
|
8707
8832
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -8795,52 +8920,15 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
8795
8920
|
id: string;
|
|
8796
8921
|
/**
|
|
8797
8922
|
*
|
|
8798
|
-
* @type {
|
|
8923
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8799
8924
|
* @memberof JsonApiDashboardPluginPatch
|
|
8800
8925
|
*/
|
|
8801
|
-
attributes?:
|
|
8926
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8802
8927
|
}
|
|
8803
8928
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
8804
8929
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8805
8930
|
};
|
|
8806
8931
|
export type JsonApiDashboardPluginPatchTypeEnum = typeof JsonApiDashboardPluginPatchTypeEnum[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
8807
|
-
/**
|
|
8808
|
-
*
|
|
8809
|
-
* @export
|
|
8810
|
-
* @interface JsonApiDashboardPluginPatchAttributes
|
|
8811
|
-
*/
|
|
8812
|
-
export interface JsonApiDashboardPluginPatchAttributes {
|
|
8813
|
-
/**
|
|
8814
|
-
*
|
|
8815
|
-
* @type {string}
|
|
8816
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8817
|
-
*/
|
|
8818
|
-
title?: string;
|
|
8819
|
-
/**
|
|
8820
|
-
*
|
|
8821
|
-
* @type {string}
|
|
8822
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8823
|
-
*/
|
|
8824
|
-
description?: string;
|
|
8825
|
-
/**
|
|
8826
|
-
*
|
|
8827
|
-
* @type {Array<string>}
|
|
8828
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8829
|
-
*/
|
|
8830
|
-
tags?: Array<string>;
|
|
8831
|
-
/**
|
|
8832
|
-
*
|
|
8833
|
-
* @type {boolean}
|
|
8834
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8835
|
-
*/
|
|
8836
|
-
areRelationsValid?: boolean;
|
|
8837
|
-
/**
|
|
8838
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8839
|
-
* @type {object}
|
|
8840
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8841
|
-
*/
|
|
8842
|
-
content?: object;
|
|
8843
|
-
}
|
|
8844
8932
|
/**
|
|
8845
8933
|
*
|
|
8846
8934
|
* @export
|
|
@@ -8874,10 +8962,10 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
8874
8962
|
id?: string;
|
|
8875
8963
|
/**
|
|
8876
8964
|
*
|
|
8877
|
-
* @type {
|
|
8965
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8878
8966
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
8879
8967
|
*/
|
|
8880
|
-
attributes?:
|
|
8968
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8881
8969
|
}
|
|
8882
8970
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
8883
8971
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -9023,10 +9111,10 @@ export interface JsonApiDataSourceIdentifierOutList {
|
|
|
9023
9111
|
links?: ListLinks;
|
|
9024
9112
|
/**
|
|
9025
9113
|
*
|
|
9026
|
-
* @type {
|
|
9114
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
9027
9115
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
9028
9116
|
*/
|
|
9029
|
-
meta?:
|
|
9117
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
9030
9118
|
}
|
|
9031
9119
|
/**
|
|
9032
9120
|
*
|
|
@@ -9448,10 +9536,10 @@ export interface JsonApiDataSourceOutList {
|
|
|
9448
9536
|
links?: ListLinks;
|
|
9449
9537
|
/**
|
|
9450
9538
|
*
|
|
9451
|
-
* @type {
|
|
9539
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
9452
9540
|
* @memberof JsonApiDataSourceOutList
|
|
9453
9541
|
*/
|
|
9454
|
-
meta?:
|
|
9542
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
9455
9543
|
}
|
|
9456
9544
|
/**
|
|
9457
9545
|
*
|
|
@@ -10012,10 +10100,10 @@ export interface JsonApiDatasetOutList {
|
|
|
10012
10100
|
links?: ListLinks;
|
|
10013
10101
|
/**
|
|
10014
10102
|
*
|
|
10015
|
-
* @type {
|
|
10103
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10016
10104
|
* @memberof JsonApiDatasetOutList
|
|
10017
10105
|
*/
|
|
10018
|
-
meta?:
|
|
10106
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10019
10107
|
/**
|
|
10020
10108
|
* Included resources
|
|
10021
10109
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -10207,10 +10295,10 @@ export interface JsonApiEntitlementOutList {
|
|
|
10207
10295
|
links?: ListLinks;
|
|
10208
10296
|
/**
|
|
10209
10297
|
*
|
|
10210
|
-
* @type {
|
|
10298
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10211
10299
|
* @memberof JsonApiEntitlementOutList
|
|
10212
10300
|
*/
|
|
10213
|
-
meta?:
|
|
10301
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10214
10302
|
}
|
|
10215
10303
|
/**
|
|
10216
10304
|
*
|
|
@@ -10267,21 +10355,58 @@ export interface JsonApiExportDefinitionIn {
|
|
|
10267
10355
|
id: string;
|
|
10268
10356
|
/**
|
|
10269
10357
|
*
|
|
10270
|
-
* @type {
|
|
10358
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10271
10359
|
* @memberof JsonApiExportDefinitionIn
|
|
10272
10360
|
*/
|
|
10273
|
-
attributes?:
|
|
10361
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10274
10362
|
/**
|
|
10275
10363
|
*
|
|
10276
|
-
* @type {
|
|
10364
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10277
10365
|
* @memberof JsonApiExportDefinitionIn
|
|
10278
10366
|
*/
|
|
10279
|
-
relationships?:
|
|
10367
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10280
10368
|
}
|
|
10281
10369
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
10282
10370
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10283
10371
|
};
|
|
10284
10372
|
export type JsonApiExportDefinitionInTypeEnum = typeof JsonApiExportDefinitionInTypeEnum[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
10373
|
+
/**
|
|
10374
|
+
*
|
|
10375
|
+
* @export
|
|
10376
|
+
* @interface JsonApiExportDefinitionInAttributes
|
|
10377
|
+
*/
|
|
10378
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
10379
|
+
/**
|
|
10380
|
+
*
|
|
10381
|
+
* @type {string}
|
|
10382
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10383
|
+
*/
|
|
10384
|
+
title?: string;
|
|
10385
|
+
/**
|
|
10386
|
+
*
|
|
10387
|
+
* @type {string}
|
|
10388
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10389
|
+
*/
|
|
10390
|
+
description?: string;
|
|
10391
|
+
/**
|
|
10392
|
+
*
|
|
10393
|
+
* @type {Array<string>}
|
|
10394
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10395
|
+
*/
|
|
10396
|
+
tags?: Array<string>;
|
|
10397
|
+
/**
|
|
10398
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
10399
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
10400
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10401
|
+
*/
|
|
10402
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
10403
|
+
/**
|
|
10404
|
+
*
|
|
10405
|
+
* @type {boolean}
|
|
10406
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10407
|
+
*/
|
|
10408
|
+
areRelationsValid?: boolean;
|
|
10409
|
+
}
|
|
10285
10410
|
/**
|
|
10286
10411
|
*
|
|
10287
10412
|
* @export
|
|
@@ -10295,6 +10420,25 @@ export interface JsonApiExportDefinitionInDocument {
|
|
|
10295
10420
|
*/
|
|
10296
10421
|
data: JsonApiExportDefinitionIn;
|
|
10297
10422
|
}
|
|
10423
|
+
/**
|
|
10424
|
+
*
|
|
10425
|
+
* @export
|
|
10426
|
+
* @interface JsonApiExportDefinitionInRelationships
|
|
10427
|
+
*/
|
|
10428
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
10429
|
+
/**
|
|
10430
|
+
*
|
|
10431
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10432
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10433
|
+
*/
|
|
10434
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10435
|
+
/**
|
|
10436
|
+
*
|
|
10437
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
10438
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10439
|
+
*/
|
|
10440
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
10441
|
+
}
|
|
10298
10442
|
/**
|
|
10299
10443
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
10300
10444
|
* @export
|
|
@@ -10458,10 +10602,10 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
10458
10602
|
links?: ListLinks;
|
|
10459
10603
|
/**
|
|
10460
10604
|
*
|
|
10461
|
-
* @type {
|
|
10605
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10462
10606
|
* @memberof JsonApiExportDefinitionOutList
|
|
10463
10607
|
*/
|
|
10464
|
-
meta?:
|
|
10608
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10465
10609
|
/**
|
|
10466
10610
|
* Included resources
|
|
10467
10611
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -10483,10 +10627,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10483
10627
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10484
10628
|
/**
|
|
10485
10629
|
*
|
|
10486
|
-
* @type {
|
|
10630
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
10487
10631
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
10488
10632
|
*/
|
|
10489
|
-
analyticalDashboard?:
|
|
10633
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
10490
10634
|
/**
|
|
10491
10635
|
*
|
|
10492
10636
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -10599,58 +10743,21 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
10599
10743
|
id: string;
|
|
10600
10744
|
/**
|
|
10601
10745
|
*
|
|
10602
|
-
* @type {
|
|
10746
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10603
10747
|
* @memberof JsonApiExportDefinitionPatch
|
|
10604
10748
|
*/
|
|
10605
|
-
attributes?:
|
|
10749
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10606
10750
|
/**
|
|
10607
10751
|
*
|
|
10608
|
-
* @type {
|
|
10752
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10609
10753
|
* @memberof JsonApiExportDefinitionPatch
|
|
10610
10754
|
*/
|
|
10611
|
-
relationships?:
|
|
10755
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10612
10756
|
}
|
|
10613
10757
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
10614
10758
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10615
10759
|
};
|
|
10616
10760
|
export type JsonApiExportDefinitionPatchTypeEnum = typeof JsonApiExportDefinitionPatchTypeEnum[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
10617
|
-
/**
|
|
10618
|
-
*
|
|
10619
|
-
* @export
|
|
10620
|
-
* @interface JsonApiExportDefinitionPatchAttributes
|
|
10621
|
-
*/
|
|
10622
|
-
export interface JsonApiExportDefinitionPatchAttributes {
|
|
10623
|
-
/**
|
|
10624
|
-
*
|
|
10625
|
-
* @type {string}
|
|
10626
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10627
|
-
*/
|
|
10628
|
-
title?: string;
|
|
10629
|
-
/**
|
|
10630
|
-
*
|
|
10631
|
-
* @type {string}
|
|
10632
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10633
|
-
*/
|
|
10634
|
-
description?: string;
|
|
10635
|
-
/**
|
|
10636
|
-
*
|
|
10637
|
-
* @type {Array<string>}
|
|
10638
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10639
|
-
*/
|
|
10640
|
-
tags?: Array<string>;
|
|
10641
|
-
/**
|
|
10642
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
10643
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
10644
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10645
|
-
*/
|
|
10646
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
10647
|
-
/**
|
|
10648
|
-
*
|
|
10649
|
-
* @type {boolean}
|
|
10650
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10651
|
-
*/
|
|
10652
|
-
areRelationsValid?: boolean;
|
|
10653
|
-
}
|
|
10654
10761
|
/**
|
|
10655
10762
|
*
|
|
10656
10763
|
* @export
|
|
@@ -10664,25 +10771,6 @@ export interface JsonApiExportDefinitionPatchDocument {
|
|
|
10664
10771
|
*/
|
|
10665
10772
|
data: JsonApiExportDefinitionPatch;
|
|
10666
10773
|
}
|
|
10667
|
-
/**
|
|
10668
|
-
*
|
|
10669
|
-
* @export
|
|
10670
|
-
* @interface JsonApiExportDefinitionPatchRelationships
|
|
10671
|
-
*/
|
|
10672
|
-
export interface JsonApiExportDefinitionPatchRelationships {
|
|
10673
|
-
/**
|
|
10674
|
-
*
|
|
10675
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10676
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10677
|
-
*/
|
|
10678
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10679
|
-
/**
|
|
10680
|
-
*
|
|
10681
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
10682
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10683
|
-
*/
|
|
10684
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
10685
|
-
}
|
|
10686
10774
|
/**
|
|
10687
10775
|
* JSON:API representation of exportDefinition entity.
|
|
10688
10776
|
* @export
|
|
@@ -10703,16 +10791,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
10703
10791
|
id?: string;
|
|
10704
10792
|
/**
|
|
10705
10793
|
*
|
|
10706
|
-
* @type {
|
|
10794
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10707
10795
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10708
10796
|
*/
|
|
10709
|
-
attributes?:
|
|
10797
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10710
10798
|
/**
|
|
10711
10799
|
*
|
|
10712
|
-
* @type {
|
|
10800
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10713
10801
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10714
10802
|
*/
|
|
10715
|
-
relationships?:
|
|
10803
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10716
10804
|
}
|
|
10717
10805
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
10718
10806
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -10932,10 +11020,10 @@ export interface JsonApiExportTemplateOutList {
|
|
|
10932
11020
|
links?: ListLinks;
|
|
10933
11021
|
/**
|
|
10934
11022
|
*
|
|
10935
|
-
* @type {
|
|
11023
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10936
11024
|
* @memberof JsonApiExportTemplateOutList
|
|
10937
11025
|
*/
|
|
10938
|
-
meta?:
|
|
11026
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10939
11027
|
}
|
|
10940
11028
|
/**
|
|
10941
11029
|
*
|
|
@@ -11260,10 +11348,10 @@ export interface JsonApiFactOutList {
|
|
|
11260
11348
|
links?: ListLinks;
|
|
11261
11349
|
/**
|
|
11262
11350
|
*
|
|
11263
|
-
* @type {
|
|
11351
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11264
11352
|
* @memberof JsonApiFactOutList
|
|
11265
11353
|
*/
|
|
11266
|
-
meta?:
|
|
11354
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11267
11355
|
/**
|
|
11268
11356
|
* Included resources
|
|
11269
11357
|
* @type {Array<JsonApiFactOutIncludes>}
|
|
@@ -11376,10 +11464,10 @@ export interface JsonApiFilterContextIn {
|
|
|
11376
11464
|
id: string;
|
|
11377
11465
|
/**
|
|
11378
11466
|
*
|
|
11379
|
-
* @type {
|
|
11467
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11380
11468
|
* @memberof JsonApiFilterContextIn
|
|
11381
11469
|
*/
|
|
11382
|
-
attributes:
|
|
11470
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11383
11471
|
}
|
|
11384
11472
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
11385
11473
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11447,10 +11535,10 @@ export interface JsonApiFilterContextOut {
|
|
|
11447
11535
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11448
11536
|
/**
|
|
11449
11537
|
*
|
|
11450
|
-
* @type {
|
|
11538
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11451
11539
|
* @memberof JsonApiFilterContextOut
|
|
11452
11540
|
*/
|
|
11453
|
-
attributes:
|
|
11541
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11454
11542
|
/**
|
|
11455
11543
|
*
|
|
11456
11544
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11462,43 +11550,6 @@ export declare const JsonApiFilterContextOutTypeEnum: {
|
|
|
11462
11550
|
readonly FILTER_CONTEXT: "filterContext";
|
|
11463
11551
|
};
|
|
11464
11552
|
export type JsonApiFilterContextOutTypeEnum = typeof JsonApiFilterContextOutTypeEnum[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
11465
|
-
/**
|
|
11466
|
-
*
|
|
11467
|
-
* @export
|
|
11468
|
-
* @interface JsonApiFilterContextOutAttributes
|
|
11469
|
-
*/
|
|
11470
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
11471
|
-
/**
|
|
11472
|
-
*
|
|
11473
|
-
* @type {string}
|
|
11474
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11475
|
-
*/
|
|
11476
|
-
title?: string;
|
|
11477
|
-
/**
|
|
11478
|
-
*
|
|
11479
|
-
* @type {string}
|
|
11480
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11481
|
-
*/
|
|
11482
|
-
description?: string;
|
|
11483
|
-
/**
|
|
11484
|
-
*
|
|
11485
|
-
* @type {Array<string>}
|
|
11486
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11487
|
-
*/
|
|
11488
|
-
tags?: Array<string>;
|
|
11489
|
-
/**
|
|
11490
|
-
*
|
|
11491
|
-
* @type {boolean}
|
|
11492
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11493
|
-
*/
|
|
11494
|
-
areRelationsValid?: boolean;
|
|
11495
|
-
/**
|
|
11496
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
11497
|
-
* @type {object}
|
|
11498
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11499
|
-
*/
|
|
11500
|
-
content: object;
|
|
11501
|
-
}
|
|
11502
11553
|
/**
|
|
11503
11554
|
*
|
|
11504
11555
|
* @export
|
|
@@ -11549,10 +11600,10 @@ export interface JsonApiFilterContextOutList {
|
|
|
11549
11600
|
links?: ListLinks;
|
|
11550
11601
|
/**
|
|
11551
11602
|
*
|
|
11552
|
-
* @type {
|
|
11603
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11553
11604
|
* @memberof JsonApiFilterContextOutList
|
|
11554
11605
|
*/
|
|
11555
|
-
meta?:
|
|
11606
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11556
11607
|
/**
|
|
11557
11608
|
* Included resources
|
|
11558
11609
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -11611,10 +11662,10 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
11611
11662
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11612
11663
|
/**
|
|
11613
11664
|
*
|
|
11614
|
-
* @type {
|
|
11665
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11615
11666
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
11616
11667
|
*/
|
|
11617
|
-
attributes:
|
|
11668
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11618
11669
|
/**
|
|
11619
11670
|
*
|
|
11620
11671
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11694,10 +11745,10 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
11694
11745
|
id?: string;
|
|
11695
11746
|
/**
|
|
11696
11747
|
*
|
|
11697
|
-
* @type {
|
|
11748
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11698
11749
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
11699
11750
|
*/
|
|
11700
|
-
attributes:
|
|
11751
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11701
11752
|
}
|
|
11702
11753
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
11703
11754
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11736,21 +11787,64 @@ export interface JsonApiFilterViewIn {
|
|
|
11736
11787
|
id: string;
|
|
11737
11788
|
/**
|
|
11738
11789
|
*
|
|
11739
|
-
* @type {
|
|
11790
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11740
11791
|
* @memberof JsonApiFilterViewIn
|
|
11741
11792
|
*/
|
|
11742
|
-
attributes:
|
|
11793
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11743
11794
|
/**
|
|
11744
11795
|
*
|
|
11745
|
-
* @type {
|
|
11796
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11746
11797
|
* @memberof JsonApiFilterViewIn
|
|
11747
11798
|
*/
|
|
11748
|
-
relationships?:
|
|
11799
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11749
11800
|
}
|
|
11750
11801
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11751
11802
|
readonly FILTER_VIEW: "filterView";
|
|
11752
11803
|
};
|
|
11753
11804
|
export type JsonApiFilterViewInTypeEnum = typeof JsonApiFilterViewInTypeEnum[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
11805
|
+
/**
|
|
11806
|
+
*
|
|
11807
|
+
* @export
|
|
11808
|
+
* @interface JsonApiFilterViewInAttributes
|
|
11809
|
+
*/
|
|
11810
|
+
export interface JsonApiFilterViewInAttributes {
|
|
11811
|
+
/**
|
|
11812
|
+
*
|
|
11813
|
+
* @type {string}
|
|
11814
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11815
|
+
*/
|
|
11816
|
+
title: string;
|
|
11817
|
+
/**
|
|
11818
|
+
*
|
|
11819
|
+
* @type {string}
|
|
11820
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11821
|
+
*/
|
|
11822
|
+
description?: string;
|
|
11823
|
+
/**
|
|
11824
|
+
*
|
|
11825
|
+
* @type {Array<string>}
|
|
11826
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11827
|
+
*/
|
|
11828
|
+
tags?: Array<string>;
|
|
11829
|
+
/**
|
|
11830
|
+
*
|
|
11831
|
+
* @type {boolean}
|
|
11832
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11833
|
+
*/
|
|
11834
|
+
areRelationsValid?: boolean;
|
|
11835
|
+
/**
|
|
11836
|
+
* Indicator whether the filter view should by applied by default.
|
|
11837
|
+
* @type {boolean}
|
|
11838
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11839
|
+
*/
|
|
11840
|
+
isDefault?: boolean;
|
|
11841
|
+
/**
|
|
11842
|
+
* The respective filter context.
|
|
11843
|
+
* @type {object}
|
|
11844
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11845
|
+
*/
|
|
11846
|
+
content: object;
|
|
11847
|
+
}
|
|
11754
11848
|
/**
|
|
11755
11849
|
*
|
|
11756
11850
|
* @export
|
|
@@ -11764,6 +11858,38 @@ export interface JsonApiFilterViewInDocument {
|
|
|
11764
11858
|
*/
|
|
11765
11859
|
data: JsonApiFilterViewIn;
|
|
11766
11860
|
}
|
|
11861
|
+
/**
|
|
11862
|
+
*
|
|
11863
|
+
* @export
|
|
11864
|
+
* @interface JsonApiFilterViewInRelationships
|
|
11865
|
+
*/
|
|
11866
|
+
export interface JsonApiFilterViewInRelationships {
|
|
11867
|
+
/**
|
|
11868
|
+
*
|
|
11869
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
11870
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11871
|
+
*/
|
|
11872
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
11876
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11877
|
+
*/
|
|
11878
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
11879
|
+
}
|
|
11880
|
+
/**
|
|
11881
|
+
*
|
|
11882
|
+
* @export
|
|
11883
|
+
* @interface JsonApiFilterViewInRelationshipsUser
|
|
11884
|
+
*/
|
|
11885
|
+
export interface JsonApiFilterViewInRelationshipsUser {
|
|
11886
|
+
/**
|
|
11887
|
+
*
|
|
11888
|
+
* @type {JsonApiUserToOneLinkage}
|
|
11889
|
+
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
11890
|
+
*/
|
|
11891
|
+
data: JsonApiUserToOneLinkage | null;
|
|
11892
|
+
}
|
|
11767
11893
|
/**
|
|
11768
11894
|
* JSON:API representation of filterView entity.
|
|
11769
11895
|
* @export
|
|
@@ -11784,64 +11910,21 @@ export interface JsonApiFilterViewOut {
|
|
|
11784
11910
|
id: string;
|
|
11785
11911
|
/**
|
|
11786
11912
|
*
|
|
11787
|
-
* @type {
|
|
11913
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11788
11914
|
* @memberof JsonApiFilterViewOut
|
|
11789
11915
|
*/
|
|
11790
|
-
attributes:
|
|
11916
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11791
11917
|
/**
|
|
11792
11918
|
*
|
|
11793
|
-
* @type {
|
|
11919
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11794
11920
|
* @memberof JsonApiFilterViewOut
|
|
11795
11921
|
*/
|
|
11796
|
-
relationships?:
|
|
11922
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11797
11923
|
}
|
|
11798
11924
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11799
11925
|
readonly FILTER_VIEW: "filterView";
|
|
11800
11926
|
};
|
|
11801
11927
|
export type JsonApiFilterViewOutTypeEnum = typeof JsonApiFilterViewOutTypeEnum[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
11802
|
-
/**
|
|
11803
|
-
*
|
|
11804
|
-
* @export
|
|
11805
|
-
* @interface JsonApiFilterViewOutAttributes
|
|
11806
|
-
*/
|
|
11807
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
11808
|
-
/**
|
|
11809
|
-
*
|
|
11810
|
-
* @type {string}
|
|
11811
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11812
|
-
*/
|
|
11813
|
-
title: string;
|
|
11814
|
-
/**
|
|
11815
|
-
*
|
|
11816
|
-
* @type {string}
|
|
11817
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11818
|
-
*/
|
|
11819
|
-
description?: string;
|
|
11820
|
-
/**
|
|
11821
|
-
*
|
|
11822
|
-
* @type {Array<string>}
|
|
11823
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11824
|
-
*/
|
|
11825
|
-
tags?: Array<string>;
|
|
11826
|
-
/**
|
|
11827
|
-
*
|
|
11828
|
-
* @type {boolean}
|
|
11829
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11830
|
-
*/
|
|
11831
|
-
areRelationsValid?: boolean;
|
|
11832
|
-
/**
|
|
11833
|
-
* Indicator whether the filter view should by applied by default.
|
|
11834
|
-
* @type {boolean}
|
|
11835
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11836
|
-
*/
|
|
11837
|
-
isDefault?: boolean;
|
|
11838
|
-
/**
|
|
11839
|
-
* The respective filter context.
|
|
11840
|
-
* @type {object}
|
|
11841
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11842
|
-
*/
|
|
11843
|
-
content: object;
|
|
11844
|
-
}
|
|
11845
11928
|
/**
|
|
11846
11929
|
*
|
|
11847
11930
|
* @export
|
|
@@ -11892,10 +11975,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
11892
11975
|
links?: ListLinks;
|
|
11893
11976
|
/**
|
|
11894
11977
|
*
|
|
11895
|
-
* @type {
|
|
11978
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11896
11979
|
* @memberof JsonApiFilterViewOutList
|
|
11897
11980
|
*/
|
|
11898
|
-
meta?:
|
|
11981
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11899
11982
|
/**
|
|
11900
11983
|
* Included resources
|
|
11901
11984
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -11923,16 +12006,16 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11923
12006
|
id: string;
|
|
11924
12007
|
/**
|
|
11925
12008
|
*
|
|
11926
|
-
* @type {
|
|
12009
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11927
12010
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11928
12011
|
*/
|
|
11929
|
-
attributes:
|
|
12012
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11930
12013
|
/**
|
|
11931
12014
|
*
|
|
11932
|
-
* @type {
|
|
12015
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11933
12016
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11934
12017
|
*/
|
|
11935
|
-
relationships?:
|
|
12018
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11936
12019
|
/**
|
|
11937
12020
|
*
|
|
11938
12021
|
* @type {ObjectLinks}
|
|
@@ -11970,10 +12053,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11970
12053
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11971
12054
|
/**
|
|
11972
12055
|
*
|
|
11973
|
-
* @type {
|
|
12056
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11974
12057
|
* @memberof JsonApiFilterViewPatch
|
|
11975
12058
|
*/
|
|
11976
|
-
relationships?:
|
|
12059
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11977
12060
|
}
|
|
11978
12061
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11979
12062
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -12035,25 +12118,6 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
12035
12118
|
*/
|
|
12036
12119
|
data: JsonApiFilterViewPatch;
|
|
12037
12120
|
}
|
|
12038
|
-
/**
|
|
12039
|
-
*
|
|
12040
|
-
* @export
|
|
12041
|
-
* @interface JsonApiFilterViewPatchRelationships
|
|
12042
|
-
*/
|
|
12043
|
-
export interface JsonApiFilterViewPatchRelationships {
|
|
12044
|
-
/**
|
|
12045
|
-
*
|
|
12046
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
12047
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
12048
|
-
*/
|
|
12049
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
12050
|
-
/**
|
|
12051
|
-
*
|
|
12052
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
12053
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
12054
|
-
*/
|
|
12055
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
12056
|
-
}
|
|
12057
12121
|
/**
|
|
12058
12122
|
* JSON:API representation of identityProvider entity.
|
|
12059
12123
|
* @export
|
|
@@ -12074,15 +12138,98 @@ export interface JsonApiIdentityProviderIn {
|
|
|
12074
12138
|
id: string;
|
|
12075
12139
|
/**
|
|
12076
12140
|
*
|
|
12077
|
-
* @type {
|
|
12141
|
+
* @type {JsonApiIdentityProviderInAttributes}
|
|
12078
12142
|
* @memberof JsonApiIdentityProviderIn
|
|
12079
12143
|
*/
|
|
12080
|
-
attributes?:
|
|
12144
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
12081
12145
|
}
|
|
12082
12146
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
12083
12147
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12084
12148
|
};
|
|
12085
12149
|
export type JsonApiIdentityProviderInTypeEnum = typeof JsonApiIdentityProviderInTypeEnum[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
12150
|
+
/**
|
|
12151
|
+
*
|
|
12152
|
+
* @export
|
|
12153
|
+
* @interface JsonApiIdentityProviderInAttributes
|
|
12154
|
+
*/
|
|
12155
|
+
export interface JsonApiIdentityProviderInAttributes {
|
|
12156
|
+
/**
|
|
12157
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
12158
|
+
* @type {Array<string>}
|
|
12159
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12160
|
+
*/
|
|
12161
|
+
identifiers?: Array<string>;
|
|
12162
|
+
/**
|
|
12163
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
12164
|
+
* @type {{ [key: string]: string; }}
|
|
12165
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12166
|
+
*/
|
|
12167
|
+
customClaimMapping?: {
|
|
12168
|
+
[key: string]: string;
|
|
12169
|
+
};
|
|
12170
|
+
/**
|
|
12171
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
12172
|
+
* @type {string}
|
|
12173
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12174
|
+
*/
|
|
12175
|
+
samlMetadata?: string;
|
|
12176
|
+
/**
|
|
12177
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12178
|
+
* @type {string}
|
|
12179
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12180
|
+
*/
|
|
12181
|
+
oauthClientId?: string;
|
|
12182
|
+
/**
|
|
12183
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12184
|
+
* @type {string}
|
|
12185
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12186
|
+
*/
|
|
12187
|
+
oauthClientSecret?: string;
|
|
12188
|
+
/**
|
|
12189
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12190
|
+
* @type {string}
|
|
12191
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12192
|
+
*/
|
|
12193
|
+
oauthIssuerLocation?: string;
|
|
12194
|
+
/**
|
|
12195
|
+
* 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.
|
|
12196
|
+
* @type {string}
|
|
12197
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12198
|
+
*/
|
|
12199
|
+
oauthIssuerId?: string;
|
|
12200
|
+
/**
|
|
12201
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
12202
|
+
* @type {string}
|
|
12203
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12204
|
+
*/
|
|
12205
|
+
oauthSubjectIdClaim?: string;
|
|
12206
|
+
/**
|
|
12207
|
+
* 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.
|
|
12208
|
+
* @type {{ [key: string]: string; }}
|
|
12209
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12210
|
+
*/
|
|
12211
|
+
oauthCustomAuthAttributes?: {
|
|
12212
|
+
[key: string]: string;
|
|
12213
|
+
};
|
|
12214
|
+
/**
|
|
12215
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
12216
|
+
* @type {Array<string>}
|
|
12217
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12218
|
+
*/
|
|
12219
|
+
oauthCustomScopes?: Array<string> | null;
|
|
12220
|
+
/**
|
|
12221
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
12222
|
+
* @type {string}
|
|
12223
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12224
|
+
*/
|
|
12225
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
12226
|
+
}
|
|
12227
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
12228
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
12229
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
12230
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
12231
|
+
};
|
|
12232
|
+
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = typeof JsonApiIdentityProviderInAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
12086
12233
|
/**
|
|
12087
12234
|
*
|
|
12088
12235
|
* @export
|
|
@@ -12258,10 +12405,10 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
12258
12405
|
links?: ListLinks;
|
|
12259
12406
|
/**
|
|
12260
12407
|
*
|
|
12261
|
-
* @type {
|
|
12408
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12262
12409
|
* @memberof JsonApiIdentityProviderOutList
|
|
12263
12410
|
*/
|
|
12264
|
-
meta?:
|
|
12411
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12265
12412
|
}
|
|
12266
12413
|
/**
|
|
12267
12414
|
*
|
|
@@ -12270,146 +12417,63 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
12270
12417
|
*/
|
|
12271
12418
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
12272
12419
|
/**
|
|
12273
|
-
* Object type
|
|
12274
|
-
* @type {string}
|
|
12275
|
-
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12276
|
-
*/
|
|
12277
|
-
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
12278
|
-
/**
|
|
12279
|
-
* API identifier of an object
|
|
12280
|
-
* @type {string}
|
|
12281
|
-
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12282
|
-
*/
|
|
12283
|
-
id: string;
|
|
12284
|
-
/**
|
|
12285
|
-
*
|
|
12286
|
-
* @type {JsonApiIdentityProviderOutAttributes}
|
|
12287
|
-
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12288
|
-
*/
|
|
12289
|
-
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
12290
|
-
/**
|
|
12291
|
-
*
|
|
12292
|
-
* @type {ObjectLinks}
|
|
12293
|
-
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12294
|
-
*/
|
|
12295
|
-
links?: ObjectLinks;
|
|
12296
|
-
}
|
|
12297
|
-
export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
|
|
12298
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12299
|
-
};
|
|
12300
|
-
export type JsonApiIdentityProviderOutWithLinksTypeEnum = typeof JsonApiIdentityProviderOutWithLinksTypeEnum[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
|
|
12301
|
-
/**
|
|
12302
|
-
* JSON:API representation of patching identityProvider entity.
|
|
12303
|
-
* @export
|
|
12304
|
-
* @interface JsonApiIdentityProviderPatch
|
|
12305
|
-
*/
|
|
12306
|
-
export interface JsonApiIdentityProviderPatch {
|
|
12307
|
-
/**
|
|
12308
|
-
* Object type
|
|
12309
|
-
* @type {string}
|
|
12310
|
-
* @memberof JsonApiIdentityProviderPatch
|
|
12311
|
-
*/
|
|
12312
|
-
type: JsonApiIdentityProviderPatchTypeEnum;
|
|
12313
|
-
/**
|
|
12314
|
-
* API identifier of an object
|
|
12315
|
-
* @type {string}
|
|
12316
|
-
* @memberof JsonApiIdentityProviderPatch
|
|
12317
|
-
*/
|
|
12318
|
-
id: string;
|
|
12319
|
-
/**
|
|
12320
|
-
*
|
|
12321
|
-
* @type {JsonApiIdentityProviderPatchAttributes}
|
|
12322
|
-
* @memberof JsonApiIdentityProviderPatch
|
|
12323
|
-
*/
|
|
12324
|
-
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
12325
|
-
}
|
|
12326
|
-
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
12327
|
-
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12328
|
-
};
|
|
12329
|
-
export type JsonApiIdentityProviderPatchTypeEnum = typeof JsonApiIdentityProviderPatchTypeEnum[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
|
|
12330
|
-
/**
|
|
12331
|
-
*
|
|
12332
|
-
* @export
|
|
12333
|
-
* @interface JsonApiIdentityProviderPatchAttributes
|
|
12334
|
-
*/
|
|
12335
|
-
export interface JsonApiIdentityProviderPatchAttributes {
|
|
12336
|
-
/**
|
|
12337
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
12338
|
-
* @type {Array<string>}
|
|
12339
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12340
|
-
*/
|
|
12341
|
-
identifiers?: Array<string>;
|
|
12342
|
-
/**
|
|
12343
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
12344
|
-
* @type {{ [key: string]: string; }}
|
|
12345
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12346
|
-
*/
|
|
12347
|
-
customClaimMapping?: {
|
|
12348
|
-
[key: string]: string;
|
|
12349
|
-
};
|
|
12350
|
-
/**
|
|
12351
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
12352
|
-
* @type {string}
|
|
12353
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12354
|
-
*/
|
|
12355
|
-
samlMetadata?: string;
|
|
12356
|
-
/**
|
|
12357
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12358
|
-
* @type {string}
|
|
12359
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12360
|
-
*/
|
|
12361
|
-
oauthClientId?: string;
|
|
12362
|
-
/**
|
|
12363
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12364
|
-
* @type {string}
|
|
12365
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12366
|
-
*/
|
|
12367
|
-
oauthClientSecret?: string;
|
|
12368
|
-
/**
|
|
12369
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12420
|
+
* Object type
|
|
12370
12421
|
* @type {string}
|
|
12371
|
-
* @memberof
|
|
12422
|
+
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12372
12423
|
*/
|
|
12373
|
-
|
|
12424
|
+
type: JsonApiIdentityProviderOutWithLinksTypeEnum;
|
|
12374
12425
|
/**
|
|
12375
|
-
*
|
|
12426
|
+
* API identifier of an object
|
|
12376
12427
|
* @type {string}
|
|
12377
|
-
* @memberof
|
|
12428
|
+
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12378
12429
|
*/
|
|
12379
|
-
|
|
12430
|
+
id: string;
|
|
12380
12431
|
/**
|
|
12381
|
-
*
|
|
12382
|
-
* @type {
|
|
12383
|
-
* @memberof
|
|
12432
|
+
*
|
|
12433
|
+
* @type {JsonApiIdentityProviderOutAttributes}
|
|
12434
|
+
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12384
12435
|
*/
|
|
12385
|
-
|
|
12436
|
+
attributes?: JsonApiIdentityProviderOutAttributes;
|
|
12386
12437
|
/**
|
|
12387
|
-
*
|
|
12388
|
-
* @type {
|
|
12389
|
-
* @memberof
|
|
12438
|
+
*
|
|
12439
|
+
* @type {ObjectLinks}
|
|
12440
|
+
* @memberof JsonApiIdentityProviderOutWithLinks
|
|
12390
12441
|
*/
|
|
12391
|
-
|
|
12392
|
-
|
|
12393
|
-
|
|
12442
|
+
links?: ObjectLinks;
|
|
12443
|
+
}
|
|
12444
|
+
export declare const JsonApiIdentityProviderOutWithLinksTypeEnum: {
|
|
12445
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12446
|
+
};
|
|
12447
|
+
export type JsonApiIdentityProviderOutWithLinksTypeEnum = typeof JsonApiIdentityProviderOutWithLinksTypeEnum[keyof typeof JsonApiIdentityProviderOutWithLinksTypeEnum];
|
|
12448
|
+
/**
|
|
12449
|
+
* JSON:API representation of patching identityProvider entity.
|
|
12450
|
+
* @export
|
|
12451
|
+
* @interface JsonApiIdentityProviderPatch
|
|
12452
|
+
*/
|
|
12453
|
+
export interface JsonApiIdentityProviderPatch {
|
|
12394
12454
|
/**
|
|
12395
|
-
*
|
|
12396
|
-
* @type {
|
|
12397
|
-
* @memberof
|
|
12455
|
+
* Object type
|
|
12456
|
+
* @type {string}
|
|
12457
|
+
* @memberof JsonApiIdentityProviderPatch
|
|
12398
12458
|
*/
|
|
12399
|
-
|
|
12459
|
+
type: JsonApiIdentityProviderPatchTypeEnum;
|
|
12400
12460
|
/**
|
|
12401
|
-
*
|
|
12461
|
+
* API identifier of an object
|
|
12402
12462
|
* @type {string}
|
|
12403
|
-
* @memberof
|
|
12463
|
+
* @memberof JsonApiIdentityProviderPatch
|
|
12464
|
+
*/
|
|
12465
|
+
id: string;
|
|
12466
|
+
/**
|
|
12467
|
+
*
|
|
12468
|
+
* @type {JsonApiIdentityProviderInAttributes}
|
|
12469
|
+
* @memberof JsonApiIdentityProviderPatch
|
|
12404
12470
|
*/
|
|
12405
|
-
|
|
12471
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
12406
12472
|
}
|
|
12407
|
-
export declare const
|
|
12408
|
-
readonly
|
|
12409
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
12410
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
12473
|
+
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
12474
|
+
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12411
12475
|
};
|
|
12412
|
-
export type
|
|
12476
|
+
export type JsonApiIdentityProviderPatchTypeEnum = typeof JsonApiIdentityProviderPatchTypeEnum[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
|
|
12413
12477
|
/**
|
|
12414
12478
|
*
|
|
12415
12479
|
* @export
|
|
@@ -12552,10 +12616,10 @@ export interface JsonApiJwkOutList {
|
|
|
12552
12616
|
links?: ListLinks;
|
|
12553
12617
|
/**
|
|
12554
12618
|
*
|
|
12555
|
-
* @type {
|
|
12619
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12556
12620
|
* @memberof JsonApiJwkOutList
|
|
12557
12621
|
*/
|
|
12558
|
-
meta?:
|
|
12622
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12559
12623
|
}
|
|
12560
12624
|
/**
|
|
12561
12625
|
*
|
|
@@ -12817,10 +12881,10 @@ export interface JsonApiLabelOutList {
|
|
|
12817
12881
|
links?: ListLinks;
|
|
12818
12882
|
/**
|
|
12819
12883
|
*
|
|
12820
|
-
* @type {
|
|
12884
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12821
12885
|
* @memberof JsonApiLabelOutList
|
|
12822
12886
|
*/
|
|
12823
|
-
meta?:
|
|
12887
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12824
12888
|
/**
|
|
12825
12889
|
* Included resources
|
|
12826
12890
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -13107,10 +13171,10 @@ export interface JsonApiLlmEndpointOutList {
|
|
|
13107
13171
|
links?: ListLinks;
|
|
13108
13172
|
/**
|
|
13109
13173
|
*
|
|
13110
|
-
* @type {
|
|
13174
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13111
13175
|
* @memberof JsonApiLlmEndpointOutList
|
|
13112
13176
|
*/
|
|
13113
|
-
meta?:
|
|
13177
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13114
13178
|
}
|
|
13115
13179
|
/**
|
|
13116
13180
|
*
|
|
@@ -13257,15 +13321,52 @@ export interface JsonApiMetricIn {
|
|
|
13257
13321
|
id: string;
|
|
13258
13322
|
/**
|
|
13259
13323
|
*
|
|
13260
|
-
* @type {
|
|
13324
|
+
* @type {JsonApiMetricInAttributes}
|
|
13261
13325
|
* @memberof JsonApiMetricIn
|
|
13262
13326
|
*/
|
|
13263
|
-
attributes:
|
|
13327
|
+
attributes: JsonApiMetricInAttributes;
|
|
13264
13328
|
}
|
|
13265
13329
|
export declare const JsonApiMetricInTypeEnum: {
|
|
13266
13330
|
readonly METRIC: "metric";
|
|
13267
13331
|
};
|
|
13268
13332
|
export type JsonApiMetricInTypeEnum = typeof JsonApiMetricInTypeEnum[keyof typeof JsonApiMetricInTypeEnum];
|
|
13333
|
+
/**
|
|
13334
|
+
*
|
|
13335
|
+
* @export
|
|
13336
|
+
* @interface JsonApiMetricInAttributes
|
|
13337
|
+
*/
|
|
13338
|
+
export interface JsonApiMetricInAttributes {
|
|
13339
|
+
/**
|
|
13340
|
+
*
|
|
13341
|
+
* @type {string}
|
|
13342
|
+
* @memberof JsonApiMetricInAttributes
|
|
13343
|
+
*/
|
|
13344
|
+
title?: string;
|
|
13345
|
+
/**
|
|
13346
|
+
*
|
|
13347
|
+
* @type {string}
|
|
13348
|
+
* @memberof JsonApiMetricInAttributes
|
|
13349
|
+
*/
|
|
13350
|
+
description?: string;
|
|
13351
|
+
/**
|
|
13352
|
+
*
|
|
13353
|
+
* @type {Array<string>}
|
|
13354
|
+
* @memberof JsonApiMetricInAttributes
|
|
13355
|
+
*/
|
|
13356
|
+
tags?: Array<string>;
|
|
13357
|
+
/**
|
|
13358
|
+
*
|
|
13359
|
+
* @type {boolean}
|
|
13360
|
+
* @memberof JsonApiMetricInAttributes
|
|
13361
|
+
*/
|
|
13362
|
+
areRelationsValid?: boolean;
|
|
13363
|
+
/**
|
|
13364
|
+
*
|
|
13365
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
13366
|
+
* @memberof JsonApiMetricInAttributes
|
|
13367
|
+
*/
|
|
13368
|
+
content: JsonApiMetricOutAttributesContent;
|
|
13369
|
+
}
|
|
13269
13370
|
/**
|
|
13270
13371
|
*
|
|
13271
13372
|
* @export
|
|
@@ -13461,10 +13562,10 @@ export interface JsonApiMetricOutList {
|
|
|
13461
13562
|
links?: ListLinks;
|
|
13462
13563
|
/**
|
|
13463
13564
|
*
|
|
13464
|
-
* @type {
|
|
13565
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13465
13566
|
* @memberof JsonApiMetricOutList
|
|
13466
13567
|
*/
|
|
13467
|
-
meta?:
|
|
13568
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13468
13569
|
/**
|
|
13469
13570
|
* Included resources
|
|
13470
13571
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -13618,52 +13719,15 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
13618
13719
|
id?: string;
|
|
13619
13720
|
/**
|
|
13620
13721
|
*
|
|
13621
|
-
* @type {
|
|
13722
|
+
* @type {JsonApiMetricInAttributes}
|
|
13622
13723
|
* @memberof JsonApiMetricPostOptionalId
|
|
13623
13724
|
*/
|
|
13624
|
-
attributes:
|
|
13725
|
+
attributes: JsonApiMetricInAttributes;
|
|
13625
13726
|
}
|
|
13626
13727
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
13627
13728
|
readonly METRIC: "metric";
|
|
13628
13729
|
};
|
|
13629
13730
|
export type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
13630
|
-
/**
|
|
13631
|
-
*
|
|
13632
|
-
* @export
|
|
13633
|
-
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
13634
|
-
*/
|
|
13635
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
13636
|
-
/**
|
|
13637
|
-
*
|
|
13638
|
-
* @type {string}
|
|
13639
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13640
|
-
*/
|
|
13641
|
-
title?: string;
|
|
13642
|
-
/**
|
|
13643
|
-
*
|
|
13644
|
-
* @type {string}
|
|
13645
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13646
|
-
*/
|
|
13647
|
-
description?: string;
|
|
13648
|
-
/**
|
|
13649
|
-
*
|
|
13650
|
-
* @type {Array<string>}
|
|
13651
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13652
|
-
*/
|
|
13653
|
-
tags?: Array<string>;
|
|
13654
|
-
/**
|
|
13655
|
-
*
|
|
13656
|
-
* @type {boolean}
|
|
13657
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13658
|
-
*/
|
|
13659
|
-
areRelationsValid?: boolean;
|
|
13660
|
-
/**
|
|
13661
|
-
*
|
|
13662
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
13663
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13664
|
-
*/
|
|
13665
|
-
content: JsonApiMetricOutAttributesContent;
|
|
13666
|
-
}
|
|
13667
13731
|
/**
|
|
13668
13732
|
*
|
|
13669
13733
|
* @export
|
|
@@ -13789,10 +13853,10 @@ export interface JsonApiNotificationChannelIdentifierOutList {
|
|
|
13789
13853
|
links?: ListLinks;
|
|
13790
13854
|
/**
|
|
13791
13855
|
*
|
|
13792
|
-
* @type {
|
|
13856
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13793
13857
|
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
13794
13858
|
*/
|
|
13795
|
-
meta?:
|
|
13859
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13796
13860
|
}
|
|
13797
13861
|
/**
|
|
13798
13862
|
*
|
|
@@ -13849,10 +13913,10 @@ export interface JsonApiNotificationChannelIn {
|
|
|
13849
13913
|
id: string;
|
|
13850
13914
|
/**
|
|
13851
13915
|
*
|
|
13852
|
-
* @type {
|
|
13916
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
13853
13917
|
* @memberof JsonApiNotificationChannelIn
|
|
13854
13918
|
*/
|
|
13855
|
-
attributes?:
|
|
13919
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
13856
13920
|
}
|
|
13857
13921
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
13858
13922
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -14047,10 +14111,10 @@ export interface JsonApiNotificationChannelOutList {
|
|
|
14047
14111
|
links?: ListLinks;
|
|
14048
14112
|
/**
|
|
14049
14113
|
*
|
|
14050
|
-
* @type {
|
|
14114
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
14051
14115
|
* @memberof JsonApiNotificationChannelOutList
|
|
14052
14116
|
*/
|
|
14053
|
-
meta?:
|
|
14117
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
14054
14118
|
}
|
|
14055
14119
|
/**
|
|
14056
14120
|
*
|
|
@@ -14107,10 +14171,10 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
14107
14171
|
id: string;
|
|
14108
14172
|
/**
|
|
14109
14173
|
*
|
|
14110
|
-
* @type {
|
|
14174
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
14111
14175
|
* @memberof JsonApiNotificationChannelPatch
|
|
14112
14176
|
*/
|
|
14113
|
-
attributes?:
|
|
14177
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
14114
14178
|
}
|
|
14115
14179
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
14116
14180
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -14119,117 +14183,117 @@ export type JsonApiNotificationChannelPatchTypeEnum = typeof JsonApiNotification
|
|
|
14119
14183
|
/**
|
|
14120
14184
|
*
|
|
14121
14185
|
* @export
|
|
14122
|
-
* @interface
|
|
14186
|
+
* @interface JsonApiNotificationChannelPatchDocument
|
|
14187
|
+
*/
|
|
14188
|
+
export interface JsonApiNotificationChannelPatchDocument {
|
|
14189
|
+
/**
|
|
14190
|
+
*
|
|
14191
|
+
* @type {JsonApiNotificationChannelPatch}
|
|
14192
|
+
* @memberof JsonApiNotificationChannelPatchDocument
|
|
14193
|
+
*/
|
|
14194
|
+
data: JsonApiNotificationChannelPatch;
|
|
14195
|
+
}
|
|
14196
|
+
/**
|
|
14197
|
+
* JSON:API representation of notificationChannel entity.
|
|
14198
|
+
* @export
|
|
14199
|
+
* @interface JsonApiNotificationChannelPostOptionalId
|
|
14200
|
+
*/
|
|
14201
|
+
export interface JsonApiNotificationChannelPostOptionalId {
|
|
14202
|
+
/**
|
|
14203
|
+
* Object type
|
|
14204
|
+
* @type {string}
|
|
14205
|
+
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14206
|
+
*/
|
|
14207
|
+
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
14208
|
+
/**
|
|
14209
|
+
* API identifier of an object
|
|
14210
|
+
* @type {string}
|
|
14211
|
+
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14212
|
+
*/
|
|
14213
|
+
id?: string;
|
|
14214
|
+
/**
|
|
14215
|
+
*
|
|
14216
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
14217
|
+
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14218
|
+
*/
|
|
14219
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
14220
|
+
}
|
|
14221
|
+
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
14222
|
+
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
14223
|
+
};
|
|
14224
|
+
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = typeof JsonApiNotificationChannelPostOptionalIdTypeEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
14225
|
+
/**
|
|
14226
|
+
*
|
|
14227
|
+
* @export
|
|
14228
|
+
* @interface JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14123
14229
|
*/
|
|
14124
|
-
export interface
|
|
14230
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
14125
14231
|
/**
|
|
14126
14232
|
*
|
|
14127
14233
|
* @type {string}
|
|
14128
|
-
* @memberof
|
|
14234
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14129
14235
|
*/
|
|
14130
14236
|
name?: string | null;
|
|
14131
14237
|
/**
|
|
14132
14238
|
*
|
|
14133
14239
|
* @type {string}
|
|
14134
|
-
* @memberof
|
|
14240
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14135
14241
|
*/
|
|
14136
14242
|
description?: string | null;
|
|
14137
14243
|
/**
|
|
14138
14244
|
* The destination where the notifications are to be sent.
|
|
14139
14245
|
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
14140
|
-
* @memberof
|
|
14246
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14141
14247
|
*/
|
|
14142
14248
|
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
14143
14249
|
/**
|
|
14144
14250
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
14145
14251
|
* @type {string}
|
|
14146
|
-
* @memberof
|
|
14252
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14147
14253
|
*/
|
|
14148
14254
|
customDashboardUrl?: string;
|
|
14149
14255
|
/**
|
|
14150
14256
|
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
14151
14257
|
* @type {string}
|
|
14152
|
-
* @memberof
|
|
14258
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14153
14259
|
*/
|
|
14154
|
-
dashboardLinkVisibility?:
|
|
14260
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
14155
14261
|
/**
|
|
14156
14262
|
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
14157
14263
|
* @type {string}
|
|
14158
|
-
* @memberof
|
|
14264
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14159
14265
|
*/
|
|
14160
14266
|
notificationSource?: string;
|
|
14161
14267
|
/**
|
|
14162
14268
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
14163
14269
|
* @type {string}
|
|
14164
|
-
* @memberof
|
|
14270
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14165
14271
|
*/
|
|
14166
|
-
allowedRecipients?:
|
|
14272
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
14167
14273
|
/**
|
|
14168
14274
|
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
14169
14275
|
* @type {string}
|
|
14170
|
-
* @memberof
|
|
14276
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
14171
14277
|
*/
|
|
14172
|
-
inPlatformNotification?:
|
|
14278
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
14173
14279
|
}
|
|
14174
|
-
export declare const
|
|
14280
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
14175
14281
|
readonly HIDDEN: "HIDDEN";
|
|
14176
14282
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
14177
14283
|
readonly ALL: "ALL";
|
|
14178
14284
|
};
|
|
14179
|
-
export type
|
|
14180
|
-
export declare const
|
|
14285
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
14286
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
14181
14287
|
readonly CREATOR: "CREATOR";
|
|
14182
14288
|
readonly INTERNAL: "INTERNAL";
|
|
14183
14289
|
readonly EXTERNAL: "EXTERNAL";
|
|
14184
14290
|
};
|
|
14185
|
-
export type
|
|
14186
|
-
export declare const
|
|
14291
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
14292
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
14187
14293
|
readonly DISABLED: "DISABLED";
|
|
14188
14294
|
readonly ENABLED: "ENABLED";
|
|
14189
14295
|
};
|
|
14190
|
-
export type
|
|
14191
|
-
/**
|
|
14192
|
-
*
|
|
14193
|
-
* @export
|
|
14194
|
-
* @interface JsonApiNotificationChannelPatchDocument
|
|
14195
|
-
*/
|
|
14196
|
-
export interface JsonApiNotificationChannelPatchDocument {
|
|
14197
|
-
/**
|
|
14198
|
-
*
|
|
14199
|
-
* @type {JsonApiNotificationChannelPatch}
|
|
14200
|
-
* @memberof JsonApiNotificationChannelPatchDocument
|
|
14201
|
-
*/
|
|
14202
|
-
data: JsonApiNotificationChannelPatch;
|
|
14203
|
-
}
|
|
14204
|
-
/**
|
|
14205
|
-
* JSON:API representation of notificationChannel entity.
|
|
14206
|
-
* @export
|
|
14207
|
-
* @interface JsonApiNotificationChannelPostOptionalId
|
|
14208
|
-
*/
|
|
14209
|
-
export interface JsonApiNotificationChannelPostOptionalId {
|
|
14210
|
-
/**
|
|
14211
|
-
* Object type
|
|
14212
|
-
* @type {string}
|
|
14213
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14214
|
-
*/
|
|
14215
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
14216
|
-
/**
|
|
14217
|
-
* API identifier of an object
|
|
14218
|
-
* @type {string}
|
|
14219
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14220
|
-
*/
|
|
14221
|
-
id?: string;
|
|
14222
|
-
/**
|
|
14223
|
-
*
|
|
14224
|
-
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
14225
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
14226
|
-
*/
|
|
14227
|
-
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
14228
|
-
}
|
|
14229
|
-
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
14230
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
14231
|
-
};
|
|
14232
|
-
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = typeof JsonApiNotificationChannelPostOptionalIdTypeEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
14296
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
14233
14297
|
/**
|
|
14234
14298
|
*
|
|
14235
14299
|
* @export
|
|
@@ -14500,61 +14564,22 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
14500
14564
|
export interface JsonApiOrganizationOutRelationships {
|
|
14501
14565
|
/**
|
|
14502
14566
|
*
|
|
14503
|
-
* @type {
|
|
14567
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
14504
14568
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14505
14569
|
*/
|
|
14506
|
-
bootstrapUser?:
|
|
14570
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
14507
14571
|
/**
|
|
14508
14572
|
*
|
|
14509
|
-
* @type {
|
|
14573
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14510
14574
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14511
14575
|
*/
|
|
14512
|
-
bootstrapUserGroup?:
|
|
14576
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14513
14577
|
/**
|
|
14514
14578
|
*
|
|
14515
|
-
* @type {
|
|
14579
|
+
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
14516
14580
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14517
14581
|
*/
|
|
14518
|
-
identityProvider?:
|
|
14519
|
-
}
|
|
14520
|
-
/**
|
|
14521
|
-
*
|
|
14522
|
-
* @export
|
|
14523
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
14524
|
-
*/
|
|
14525
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
14526
|
-
/**
|
|
14527
|
-
*
|
|
14528
|
-
* @type {JsonApiUserToOneLinkage}
|
|
14529
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
14530
|
-
*/
|
|
14531
|
-
data: JsonApiUserToOneLinkage | null;
|
|
14532
|
-
}
|
|
14533
|
-
/**
|
|
14534
|
-
*
|
|
14535
|
-
* @export
|
|
14536
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
14537
|
-
*/
|
|
14538
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
14539
|
-
/**
|
|
14540
|
-
*
|
|
14541
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
14542
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
14543
|
-
*/
|
|
14544
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
14545
|
-
}
|
|
14546
|
-
/**
|
|
14547
|
-
*
|
|
14548
|
-
* @export
|
|
14549
|
-
* @interface JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
14550
|
-
*/
|
|
14551
|
-
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
14552
|
-
/**
|
|
14553
|
-
*
|
|
14554
|
-
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
14555
|
-
* @memberof JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
14556
|
-
*/
|
|
14557
|
-
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
14582
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
14558
14583
|
}
|
|
14559
14584
|
/**
|
|
14560
14585
|
* JSON:API representation of patching organization entity.
|
|
@@ -14694,10 +14719,23 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
14694
14719
|
export interface JsonApiOrganizationPatchRelationships {
|
|
14695
14720
|
/**
|
|
14696
14721
|
*
|
|
14697
|
-
* @type {
|
|
14722
|
+
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
14698
14723
|
* @memberof JsonApiOrganizationPatchRelationships
|
|
14699
14724
|
*/
|
|
14700
|
-
identityProvider?:
|
|
14725
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
14726
|
+
}
|
|
14727
|
+
/**
|
|
14728
|
+
*
|
|
14729
|
+
* @export
|
|
14730
|
+
* @interface JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
14731
|
+
*/
|
|
14732
|
+
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
14733
|
+
/**
|
|
14734
|
+
*
|
|
14735
|
+
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
14736
|
+
* @memberof JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
14737
|
+
*/
|
|
14738
|
+
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
14701
14739
|
}
|
|
14702
14740
|
/**
|
|
14703
14741
|
* JSON:API representation of organizationSetting entity.
|
|
@@ -14719,10 +14757,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
14719
14757
|
id: string;
|
|
14720
14758
|
/**
|
|
14721
14759
|
*
|
|
14722
|
-
* @type {
|
|
14760
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14723
14761
|
* @memberof JsonApiOrganizationSettingIn
|
|
14724
14762
|
*/
|
|
14725
|
-
attributes?:
|
|
14763
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14726
14764
|
}
|
|
14727
14765
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
14728
14766
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14761,15 +14799,62 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
14761
14799
|
id: string;
|
|
14762
14800
|
/**
|
|
14763
14801
|
*
|
|
14764
|
-
* @type {
|
|
14802
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14765
14803
|
* @memberof JsonApiOrganizationSettingOut
|
|
14766
14804
|
*/
|
|
14767
|
-
attributes?:
|
|
14805
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14768
14806
|
}
|
|
14769
14807
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14770
14808
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
14771
14809
|
};
|
|
14772
|
-
export type JsonApiOrganizationSettingOutTypeEnum = typeof JsonApiOrganizationSettingOutTypeEnum[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
14810
|
+
export type JsonApiOrganizationSettingOutTypeEnum = typeof JsonApiOrganizationSettingOutTypeEnum[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
14811
|
+
/**
|
|
14812
|
+
*
|
|
14813
|
+
* @export
|
|
14814
|
+
* @interface JsonApiOrganizationSettingOutAttributes
|
|
14815
|
+
*/
|
|
14816
|
+
export interface JsonApiOrganizationSettingOutAttributes {
|
|
14817
|
+
/**
|
|
14818
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
14819
|
+
* @type {object}
|
|
14820
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
14821
|
+
*/
|
|
14822
|
+
content?: object;
|
|
14823
|
+
/**
|
|
14824
|
+
*
|
|
14825
|
+
* @type {string}
|
|
14826
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
14827
|
+
*/
|
|
14828
|
+
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
14829
|
+
}
|
|
14830
|
+
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
14831
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
14832
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
14833
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
14834
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
14835
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
14836
|
+
readonly LOCALE: "LOCALE";
|
|
14837
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
14838
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
14839
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
14840
|
+
readonly WEEK_START: "WEEK_START";
|
|
14841
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
14842
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
14843
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
14844
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
14845
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
14846
|
+
readonly ALERT: "ALERT";
|
|
14847
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
14848
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
14849
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
14850
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
14851
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
14852
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
14853
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
14854
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
14855
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
14856
|
+
};
|
|
14857
|
+
export type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
14773
14858
|
/**
|
|
14774
14859
|
*
|
|
14775
14860
|
* @export
|
|
@@ -14809,10 +14894,10 @@ export interface JsonApiOrganizationSettingOutList {
|
|
|
14809
14894
|
links?: ListLinks;
|
|
14810
14895
|
/**
|
|
14811
14896
|
*
|
|
14812
|
-
* @type {
|
|
14897
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
14813
14898
|
* @memberof JsonApiOrganizationSettingOutList
|
|
14814
14899
|
*/
|
|
14815
|
-
meta?:
|
|
14900
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
14816
14901
|
}
|
|
14817
14902
|
/**
|
|
14818
14903
|
*
|
|
@@ -14834,10 +14919,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
14834
14919
|
id: string;
|
|
14835
14920
|
/**
|
|
14836
14921
|
*
|
|
14837
|
-
* @type {
|
|
14922
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14838
14923
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
14839
14924
|
*/
|
|
14840
|
-
attributes?:
|
|
14925
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14841
14926
|
/**
|
|
14842
14927
|
*
|
|
14843
14928
|
* @type {ObjectLinks}
|
|
@@ -14869,10 +14954,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
14869
14954
|
id: string;
|
|
14870
14955
|
/**
|
|
14871
14956
|
*
|
|
14872
|
-
* @type {
|
|
14957
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14873
14958
|
* @memberof JsonApiOrganizationSettingPatch
|
|
14874
14959
|
*/
|
|
14875
|
-
attributes?:
|
|
14960
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14876
14961
|
}
|
|
14877
14962
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
14878
14963
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15001,10 +15086,10 @@ export interface JsonApiThemeOutList {
|
|
|
15001
15086
|
links?: ListLinks;
|
|
15002
15087
|
/**
|
|
15003
15088
|
*
|
|
15004
|
-
* @type {
|
|
15089
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15005
15090
|
* @memberof JsonApiThemeOutList
|
|
15006
15091
|
*/
|
|
15007
|
-
meta?:
|
|
15092
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15008
15093
|
}
|
|
15009
15094
|
/**
|
|
15010
15095
|
*
|
|
@@ -15103,21 +15188,58 @@ export interface JsonApiUserDataFilterIn {
|
|
|
15103
15188
|
id: string;
|
|
15104
15189
|
/**
|
|
15105
15190
|
*
|
|
15106
|
-
* @type {
|
|
15191
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15107
15192
|
* @memberof JsonApiUserDataFilterIn
|
|
15108
15193
|
*/
|
|
15109
|
-
attributes:
|
|
15194
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15110
15195
|
/**
|
|
15111
15196
|
*
|
|
15112
|
-
* @type {
|
|
15197
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15113
15198
|
* @memberof JsonApiUserDataFilterIn
|
|
15114
15199
|
*/
|
|
15115
|
-
relationships?:
|
|
15200
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15116
15201
|
}
|
|
15117
15202
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
15118
15203
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15119
15204
|
};
|
|
15120
15205
|
export type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
15206
|
+
/**
|
|
15207
|
+
*
|
|
15208
|
+
* @export
|
|
15209
|
+
* @interface JsonApiUserDataFilterInAttributes
|
|
15210
|
+
*/
|
|
15211
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
15212
|
+
/**
|
|
15213
|
+
*
|
|
15214
|
+
* @type {string}
|
|
15215
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15216
|
+
*/
|
|
15217
|
+
title?: string;
|
|
15218
|
+
/**
|
|
15219
|
+
*
|
|
15220
|
+
* @type {string}
|
|
15221
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15222
|
+
*/
|
|
15223
|
+
description?: string;
|
|
15224
|
+
/**
|
|
15225
|
+
*
|
|
15226
|
+
* @type {Array<string>}
|
|
15227
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15228
|
+
*/
|
|
15229
|
+
tags?: Array<string>;
|
|
15230
|
+
/**
|
|
15231
|
+
*
|
|
15232
|
+
* @type {boolean}
|
|
15233
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15234
|
+
*/
|
|
15235
|
+
areRelationsValid?: boolean;
|
|
15236
|
+
/**
|
|
15237
|
+
*
|
|
15238
|
+
* @type {string}
|
|
15239
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15240
|
+
*/
|
|
15241
|
+
maql: string;
|
|
15242
|
+
}
|
|
15121
15243
|
/**
|
|
15122
15244
|
*
|
|
15123
15245
|
* @export
|
|
@@ -15131,6 +15253,38 @@ export interface JsonApiUserDataFilterInDocument {
|
|
|
15131
15253
|
*/
|
|
15132
15254
|
data: JsonApiUserDataFilterIn;
|
|
15133
15255
|
}
|
|
15256
|
+
/**
|
|
15257
|
+
*
|
|
15258
|
+
* @export
|
|
15259
|
+
* @interface JsonApiUserDataFilterInRelationships
|
|
15260
|
+
*/
|
|
15261
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
15262
|
+
/**
|
|
15263
|
+
*
|
|
15264
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
15265
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15266
|
+
*/
|
|
15267
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15268
|
+
/**
|
|
15269
|
+
*
|
|
15270
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
15271
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15272
|
+
*/
|
|
15273
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
15274
|
+
}
|
|
15275
|
+
/**
|
|
15276
|
+
*
|
|
15277
|
+
* @export
|
|
15278
|
+
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15279
|
+
*/
|
|
15280
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
15281
|
+
/**
|
|
15282
|
+
*
|
|
15283
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
15284
|
+
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15285
|
+
*/
|
|
15286
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
15287
|
+
}
|
|
15134
15288
|
/**
|
|
15135
15289
|
* JSON:API representation of userDataFilter entity.
|
|
15136
15290
|
* @export
|
|
@@ -15157,10 +15311,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
15157
15311
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15158
15312
|
/**
|
|
15159
15313
|
*
|
|
15160
|
-
* @type {
|
|
15314
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15161
15315
|
* @memberof JsonApiUserDataFilterOut
|
|
15162
15316
|
*/
|
|
15163
|
-
attributes:
|
|
15317
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15164
15318
|
/**
|
|
15165
15319
|
*
|
|
15166
15320
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15172,43 +15326,6 @@ export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
|
15172
15326
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15173
15327
|
};
|
|
15174
15328
|
export type JsonApiUserDataFilterOutTypeEnum = typeof JsonApiUserDataFilterOutTypeEnum[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
15175
|
-
/**
|
|
15176
|
-
*
|
|
15177
|
-
* @export
|
|
15178
|
-
* @interface JsonApiUserDataFilterOutAttributes
|
|
15179
|
-
*/
|
|
15180
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
15181
|
-
/**
|
|
15182
|
-
*
|
|
15183
|
-
* @type {string}
|
|
15184
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
15185
|
-
*/
|
|
15186
|
-
title?: string;
|
|
15187
|
-
/**
|
|
15188
|
-
*
|
|
15189
|
-
* @type {string}
|
|
15190
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
15191
|
-
*/
|
|
15192
|
-
description?: string;
|
|
15193
|
-
/**
|
|
15194
|
-
*
|
|
15195
|
-
* @type {Array<string>}
|
|
15196
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
15197
|
-
*/
|
|
15198
|
-
tags?: Array<string>;
|
|
15199
|
-
/**
|
|
15200
|
-
*
|
|
15201
|
-
* @type {boolean}
|
|
15202
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
15203
|
-
*/
|
|
15204
|
-
areRelationsValid?: boolean;
|
|
15205
|
-
/**
|
|
15206
|
-
*
|
|
15207
|
-
* @type {string}
|
|
15208
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
15209
|
-
*/
|
|
15210
|
-
maql: string;
|
|
15211
|
-
}
|
|
15212
15329
|
/**
|
|
15213
15330
|
*
|
|
15214
15331
|
* @export
|
|
@@ -15259,10 +15376,10 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
15259
15376
|
links?: ListLinks;
|
|
15260
15377
|
/**
|
|
15261
15378
|
*
|
|
15262
|
-
* @type {
|
|
15379
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15263
15380
|
* @memberof JsonApiUserDataFilterOutList
|
|
15264
15381
|
*/
|
|
15265
|
-
meta?:
|
|
15382
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15266
15383
|
/**
|
|
15267
15384
|
* Included resources
|
|
15268
15385
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -15278,16 +15395,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
15278
15395
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
15279
15396
|
/**
|
|
15280
15397
|
*
|
|
15281
|
-
* @type {
|
|
15398
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
15282
15399
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
15283
15400
|
*/
|
|
15284
|
-
user?:
|
|
15401
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15285
15402
|
/**
|
|
15286
15403
|
*
|
|
15287
|
-
* @type {
|
|
15404
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
15288
15405
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
15289
15406
|
*/
|
|
15290
|
-
userGroup?:
|
|
15407
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
15291
15408
|
/**
|
|
15292
15409
|
*
|
|
15293
15410
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -15345,10 +15462,10 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
15345
15462
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15346
15463
|
/**
|
|
15347
15464
|
*
|
|
15348
|
-
* @type {
|
|
15465
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15349
15466
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
15350
15467
|
*/
|
|
15351
|
-
attributes:
|
|
15468
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15352
15469
|
/**
|
|
15353
15470
|
*
|
|
15354
15471
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15392,10 +15509,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
15392
15509
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
15393
15510
|
/**
|
|
15394
15511
|
*
|
|
15395
|
-
* @type {
|
|
15512
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15396
15513
|
* @memberof JsonApiUserDataFilterPatch
|
|
15397
15514
|
*/
|
|
15398
|
-
relationships?:
|
|
15515
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15399
15516
|
}
|
|
15400
15517
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
15401
15518
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15451,25 +15568,6 @@ export interface JsonApiUserDataFilterPatchDocument {
|
|
|
15451
15568
|
*/
|
|
15452
15569
|
data: JsonApiUserDataFilterPatch;
|
|
15453
15570
|
}
|
|
15454
|
-
/**
|
|
15455
|
-
*
|
|
15456
|
-
* @export
|
|
15457
|
-
* @interface JsonApiUserDataFilterPatchRelationships
|
|
15458
|
-
*/
|
|
15459
|
-
export interface JsonApiUserDataFilterPatchRelationships {
|
|
15460
|
-
/**
|
|
15461
|
-
*
|
|
15462
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
15463
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
15464
|
-
*/
|
|
15465
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
15466
|
-
/**
|
|
15467
|
-
*
|
|
15468
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
15469
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
15470
|
-
*/
|
|
15471
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
15472
|
-
}
|
|
15473
15571
|
/**
|
|
15474
15572
|
* JSON:API representation of userDataFilter entity.
|
|
15475
15573
|
* @export
|
|
@@ -15490,16 +15588,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
15490
15588
|
id?: string;
|
|
15491
15589
|
/**
|
|
15492
15590
|
*
|
|
15493
|
-
* @type {
|
|
15591
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15494
15592
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15495
15593
|
*/
|
|
15496
|
-
attributes:
|
|
15594
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15497
15595
|
/**
|
|
15498
15596
|
*
|
|
15499
|
-
* @type {
|
|
15597
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15500
15598
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15501
15599
|
*/
|
|
15502
|
-
relationships?:
|
|
15600
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15503
15601
|
}
|
|
15504
15602
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
15505
15603
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15682,10 +15780,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
15682
15780
|
links?: ListLinks;
|
|
15683
15781
|
/**
|
|
15684
15782
|
*
|
|
15685
|
-
* @type {
|
|
15783
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15686
15784
|
* @memberof JsonApiUserGroupOutList
|
|
15687
15785
|
*/
|
|
15688
|
-
meta?:
|
|
15786
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15689
15787
|
/**
|
|
15690
15788
|
* Included resources
|
|
15691
15789
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -15701,10 +15799,23 @@ export interface JsonApiUserGroupOutList {
|
|
|
15701
15799
|
export interface JsonApiUserGroupOutRelationships {
|
|
15702
15800
|
/**
|
|
15703
15801
|
*
|
|
15704
|
-
* @type {
|
|
15802
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
15705
15803
|
* @memberof JsonApiUserGroupOutRelationships
|
|
15706
15804
|
*/
|
|
15707
|
-
parents?:
|
|
15805
|
+
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
15806
|
+
}
|
|
15807
|
+
/**
|
|
15808
|
+
*
|
|
15809
|
+
* @export
|
|
15810
|
+
* @interface JsonApiUserGroupOutRelationshipsParents
|
|
15811
|
+
*/
|
|
15812
|
+
export interface JsonApiUserGroupOutRelationshipsParents {
|
|
15813
|
+
/**
|
|
15814
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
15815
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
15816
|
+
* @memberof JsonApiUserGroupOutRelationshipsParents
|
|
15817
|
+
*/
|
|
15818
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
15708
15819
|
}
|
|
15709
15820
|
/**
|
|
15710
15821
|
*
|
|
@@ -15917,10 +16028,10 @@ export interface JsonApiUserIdentifierOutList {
|
|
|
15917
16028
|
links?: ListLinks;
|
|
15918
16029
|
/**
|
|
15919
16030
|
*
|
|
15920
|
-
* @type {
|
|
16031
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15921
16032
|
* @memberof JsonApiUserIdentifierOutList
|
|
15922
16033
|
*/
|
|
15923
|
-
meta?:
|
|
16034
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15924
16035
|
}
|
|
15925
16036
|
/**
|
|
15926
16037
|
*
|
|
@@ -16145,10 +16256,10 @@ export interface JsonApiUserOutList {
|
|
|
16145
16256
|
links?: ListLinks;
|
|
16146
16257
|
/**
|
|
16147
16258
|
*
|
|
16148
|
-
* @type {
|
|
16259
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16149
16260
|
* @memberof JsonApiUserOutList
|
|
16150
16261
|
*/
|
|
16151
|
-
meta?:
|
|
16262
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16152
16263
|
/**
|
|
16153
16264
|
* Included resources
|
|
16154
16265
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -16164,23 +16275,10 @@ export interface JsonApiUserOutList {
|
|
|
16164
16275
|
export interface JsonApiUserOutRelationships {
|
|
16165
16276
|
/**
|
|
16166
16277
|
*
|
|
16167
|
-
* @type {
|
|
16278
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
16168
16279
|
* @memberof JsonApiUserOutRelationships
|
|
16169
16280
|
*/
|
|
16170
|
-
userGroups?:
|
|
16171
|
-
}
|
|
16172
|
-
/**
|
|
16173
|
-
*
|
|
16174
|
-
* @export
|
|
16175
|
-
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
16176
|
-
*/
|
|
16177
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
16178
|
-
/**
|
|
16179
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
16180
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
16181
|
-
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
16182
|
-
*/
|
|
16183
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
16281
|
+
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
16184
16282
|
}
|
|
16185
16283
|
/**
|
|
16186
16284
|
*
|
|
@@ -16291,62 +16389,15 @@ export interface JsonApiUserSettingIn {
|
|
|
16291
16389
|
id: string;
|
|
16292
16390
|
/**
|
|
16293
16391
|
*
|
|
16294
|
-
* @type {
|
|
16392
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
16295
16393
|
* @memberof JsonApiUserSettingIn
|
|
16296
16394
|
*/
|
|
16297
|
-
attributes?:
|
|
16395
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
16298
16396
|
}
|
|
16299
16397
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
16300
16398
|
readonly USER_SETTING: "userSetting";
|
|
16301
16399
|
};
|
|
16302
16400
|
export type JsonApiUserSettingInTypeEnum = typeof JsonApiUserSettingInTypeEnum[keyof typeof JsonApiUserSettingInTypeEnum];
|
|
16303
|
-
/**
|
|
16304
|
-
*
|
|
16305
|
-
* @export
|
|
16306
|
-
* @interface JsonApiUserSettingInAttributes
|
|
16307
|
-
*/
|
|
16308
|
-
export interface JsonApiUserSettingInAttributes {
|
|
16309
|
-
/**
|
|
16310
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
16311
|
-
* @type {object}
|
|
16312
|
-
* @memberof JsonApiUserSettingInAttributes
|
|
16313
|
-
*/
|
|
16314
|
-
content?: object;
|
|
16315
|
-
/**
|
|
16316
|
-
*
|
|
16317
|
-
* @type {string}
|
|
16318
|
-
* @memberof JsonApiUserSettingInAttributes
|
|
16319
|
-
*/
|
|
16320
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
16321
|
-
}
|
|
16322
|
-
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
16323
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
16324
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
16325
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
16326
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
16327
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
16328
|
-
readonly LOCALE: "LOCALE";
|
|
16329
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
16330
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
16331
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
16332
|
-
readonly WEEK_START: "WEEK_START";
|
|
16333
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
16334
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
16335
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
16336
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
16337
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
16338
|
-
readonly ALERT: "ALERT";
|
|
16339
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
16340
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
16341
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
16342
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
16343
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
16344
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
16345
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
16346
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
16347
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
16348
|
-
};
|
|
16349
|
-
export type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
16350
16401
|
/**
|
|
16351
16402
|
*
|
|
16352
16403
|
* @export
|
|
@@ -16380,10 +16431,10 @@ export interface JsonApiUserSettingOut {
|
|
|
16380
16431
|
id: string;
|
|
16381
16432
|
/**
|
|
16382
16433
|
*
|
|
16383
|
-
* @type {
|
|
16434
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
16384
16435
|
* @memberof JsonApiUserSettingOut
|
|
16385
16436
|
*/
|
|
16386
|
-
attributes?:
|
|
16437
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
16387
16438
|
}
|
|
16388
16439
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
16389
16440
|
readonly USER_SETTING: "userSetting";
|
|
@@ -16428,10 +16479,10 @@ export interface JsonApiUserSettingOutList {
|
|
|
16428
16479
|
links?: ListLinks;
|
|
16429
16480
|
/**
|
|
16430
16481
|
*
|
|
16431
|
-
* @type {
|
|
16482
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16432
16483
|
* @memberof JsonApiUserSettingOutList
|
|
16433
16484
|
*/
|
|
16434
|
-
meta?:
|
|
16485
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16435
16486
|
}
|
|
16436
16487
|
/**
|
|
16437
16488
|
*
|
|
@@ -16453,10 +16504,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16453
16504
|
id: string;
|
|
16454
16505
|
/**
|
|
16455
16506
|
*
|
|
16456
|
-
* @type {
|
|
16507
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
16457
16508
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16458
16509
|
*/
|
|
16459
|
-
attributes?:
|
|
16510
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
16460
16511
|
/**
|
|
16461
16512
|
*
|
|
16462
16513
|
* @type {ObjectLinks}
|
|
@@ -16494,10 +16545,10 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
16494
16545
|
id: string;
|
|
16495
16546
|
/**
|
|
16496
16547
|
*
|
|
16497
|
-
* @type {
|
|
16548
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
16498
16549
|
* @memberof JsonApiVisualizationObjectIn
|
|
16499
16550
|
*/
|
|
16500
|
-
attributes:
|
|
16551
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
16501
16552
|
}
|
|
16502
16553
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
16503
16554
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16674,10 +16725,10 @@ export interface JsonApiVisualizationObjectOutList {
|
|
|
16674
16725
|
links?: ListLinks;
|
|
16675
16726
|
/**
|
|
16676
16727
|
*
|
|
16677
|
-
* @type {
|
|
16728
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16678
16729
|
* @memberof JsonApiVisualizationObjectOutList
|
|
16679
16730
|
*/
|
|
16680
|
-
meta?:
|
|
16731
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16681
16732
|
/**
|
|
16682
16733
|
* Included resources
|
|
16683
16734
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -16958,10 +17009,10 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
16958
17009
|
id?: string;
|
|
16959
17010
|
/**
|
|
16960
17011
|
*
|
|
16961
|
-
* @type {
|
|
17012
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
16962
17013
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
16963
17014
|
*/
|
|
16964
|
-
attributes:
|
|
17015
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
16965
17016
|
}
|
|
16966
17017
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
16967
17018
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -17168,10 +17219,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
|
|
|
17168
17219
|
links?: ListLinks;
|
|
17169
17220
|
/**
|
|
17170
17221
|
*
|
|
17171
|
-
* @type {
|
|
17222
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17172
17223
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
17173
17224
|
*/
|
|
17174
|
-
meta?:
|
|
17225
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17175
17226
|
/**
|
|
17176
17227
|
* Included resources
|
|
17177
17228
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -17320,21 +17371,46 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
17320
17371
|
id: string;
|
|
17321
17372
|
/**
|
|
17322
17373
|
*
|
|
17323
|
-
* @type {
|
|
17374
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17324
17375
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17325
17376
|
*/
|
|
17326
|
-
attributes?:
|
|
17377
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17327
17378
|
/**
|
|
17328
17379
|
*
|
|
17329
|
-
* @type {
|
|
17380
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17330
17381
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17331
17382
|
*/
|
|
17332
|
-
relationships?:
|
|
17383
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17333
17384
|
}
|
|
17334
17385
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
17335
17386
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17336
17387
|
};
|
|
17337
17388
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = typeof JsonApiWorkspaceDataFilterSettingInTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
17389
|
+
/**
|
|
17390
|
+
*
|
|
17391
|
+
* @export
|
|
17392
|
+
* @interface JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17393
|
+
*/
|
|
17394
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
17395
|
+
/**
|
|
17396
|
+
*
|
|
17397
|
+
* @type {string}
|
|
17398
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17399
|
+
*/
|
|
17400
|
+
title?: string;
|
|
17401
|
+
/**
|
|
17402
|
+
*
|
|
17403
|
+
* @type {string}
|
|
17404
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17405
|
+
*/
|
|
17406
|
+
description?: string;
|
|
17407
|
+
/**
|
|
17408
|
+
*
|
|
17409
|
+
* @type {Array<string>}
|
|
17410
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17411
|
+
*/
|
|
17412
|
+
filterValues?: Array<string>;
|
|
17413
|
+
}
|
|
17338
17414
|
/**
|
|
17339
17415
|
*
|
|
17340
17416
|
* @export
|
|
@@ -17348,6 +17424,32 @@ export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
|
17348
17424
|
*/
|
|
17349
17425
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
17350
17426
|
}
|
|
17427
|
+
/**
|
|
17428
|
+
*
|
|
17429
|
+
* @export
|
|
17430
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationships
|
|
17431
|
+
*/
|
|
17432
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
17433
|
+
/**
|
|
17434
|
+
*
|
|
17435
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
|
|
17436
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationships
|
|
17437
|
+
*/
|
|
17438
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
17439
|
+
}
|
|
17440
|
+
/**
|
|
17441
|
+
*
|
|
17442
|
+
* @export
|
|
17443
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
17444
|
+
*/
|
|
17445
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
17446
|
+
/**
|
|
17447
|
+
*
|
|
17448
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17449
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
17450
|
+
*/
|
|
17451
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17452
|
+
}
|
|
17351
17453
|
/**
|
|
17352
17454
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
17353
17455
|
* @export
|
|
@@ -17397,16 +17499,16 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
17397
17499
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17398
17500
|
/**
|
|
17399
17501
|
*
|
|
17400
|
-
* @type {
|
|
17502
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17401
17503
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17402
17504
|
*/
|
|
17403
|
-
attributes?:
|
|
17505
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17404
17506
|
/**
|
|
17405
17507
|
*
|
|
17406
|
-
* @type {
|
|
17508
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17407
17509
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17408
17510
|
*/
|
|
17409
|
-
relationships?:
|
|
17511
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17410
17512
|
}
|
|
17411
17513
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
17412
17514
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -17457,10 +17559,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17457
17559
|
links?: ListLinks;
|
|
17458
17560
|
/**
|
|
17459
17561
|
*
|
|
17460
|
-
* @type {
|
|
17562
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17461
17563
|
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
17462
17564
|
*/
|
|
17463
|
-
meta?:
|
|
17565
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17464
17566
|
/**
|
|
17465
17567
|
* Included resources
|
|
17466
17568
|
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
@@ -17494,16 +17596,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
17494
17596
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17495
17597
|
/**
|
|
17496
17598
|
*
|
|
17497
|
-
* @type {
|
|
17599
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17498
17600
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17499
17601
|
*/
|
|
17500
|
-
attributes?:
|
|
17602
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17501
17603
|
/**
|
|
17502
17604
|
*
|
|
17503
|
-
* @type {
|
|
17605
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17504
17606
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17505
17607
|
*/
|
|
17506
|
-
relationships?:
|
|
17608
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17507
17609
|
/**
|
|
17508
17610
|
*
|
|
17509
17611
|
* @type {ObjectLinks}
|
|
@@ -17535,46 +17637,21 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
17535
17637
|
id: string;
|
|
17536
17638
|
/**
|
|
17537
17639
|
*
|
|
17538
|
-
* @type {
|
|
17640
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17539
17641
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17540
17642
|
*/
|
|
17541
|
-
attributes?:
|
|
17643
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17542
17644
|
/**
|
|
17543
17645
|
*
|
|
17544
|
-
* @type {
|
|
17646
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17545
17647
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17546
17648
|
*/
|
|
17547
|
-
relationships?:
|
|
17649
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17548
17650
|
}
|
|
17549
17651
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
17550
17652
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17551
17653
|
};
|
|
17552
17654
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
17553
|
-
/**
|
|
17554
|
-
*
|
|
17555
|
-
* @export
|
|
17556
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17557
|
-
*/
|
|
17558
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
17559
|
-
/**
|
|
17560
|
-
*
|
|
17561
|
-
* @type {string}
|
|
17562
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17563
|
-
*/
|
|
17564
|
-
title?: string;
|
|
17565
|
-
/**
|
|
17566
|
-
*
|
|
17567
|
-
* @type {string}
|
|
17568
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17569
|
-
*/
|
|
17570
|
-
description?: string;
|
|
17571
|
-
/**
|
|
17572
|
-
*
|
|
17573
|
-
* @type {Array<string>}
|
|
17574
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17575
|
-
*/
|
|
17576
|
-
filterValues?: Array<string>;
|
|
17577
|
-
}
|
|
17578
17655
|
/**
|
|
17579
17656
|
*
|
|
17580
17657
|
* @export
|
|
@@ -17588,32 +17665,6 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
17588
17665
|
*/
|
|
17589
17666
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
17590
17667
|
}
|
|
17591
|
-
/**
|
|
17592
|
-
*
|
|
17593
|
-
* @export
|
|
17594
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17595
|
-
*/
|
|
17596
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
17597
|
-
/**
|
|
17598
|
-
*
|
|
17599
|
-
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
17600
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17601
|
-
*/
|
|
17602
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
17603
|
-
}
|
|
17604
|
-
/**
|
|
17605
|
-
*
|
|
17606
|
-
* @export
|
|
17607
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17608
|
-
*/
|
|
17609
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
17610
|
-
/**
|
|
17611
|
-
*
|
|
17612
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17613
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17614
|
-
*/
|
|
17615
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17616
|
-
}
|
|
17617
17668
|
/**
|
|
17618
17669
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
17619
17670
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -17846,10 +17897,10 @@ export interface JsonApiWorkspaceOutList {
|
|
|
17846
17897
|
links?: ListLinks;
|
|
17847
17898
|
/**
|
|
17848
17899
|
*
|
|
17849
|
-
* @type {
|
|
17900
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17850
17901
|
* @memberof JsonApiWorkspaceOutList
|
|
17851
17902
|
*/
|
|
17852
|
-
meta?:
|
|
17903
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17853
17904
|
/**
|
|
17854
17905
|
* Included resources
|
|
17855
17906
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -18092,10 +18143,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
18092
18143
|
id: string;
|
|
18093
18144
|
/**
|
|
18094
18145
|
*
|
|
18095
|
-
* @type {
|
|
18146
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
18096
18147
|
* @memberof JsonApiWorkspaceSettingIn
|
|
18097
18148
|
*/
|
|
18098
|
-
attributes?:
|
|
18149
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
18099
18150
|
}
|
|
18100
18151
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
18101
18152
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18140,10 +18191,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
18140
18191
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18141
18192
|
/**
|
|
18142
18193
|
*
|
|
18143
|
-
* @type {
|
|
18194
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
18144
18195
|
* @memberof JsonApiWorkspaceSettingOut
|
|
18145
18196
|
*/
|
|
18146
|
-
attributes?:
|
|
18197
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
18147
18198
|
}
|
|
18148
18199
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
18149
18200
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18188,10 +18239,10 @@ export interface JsonApiWorkspaceSettingOutList {
|
|
|
18188
18239
|
links?: ListLinks;
|
|
18189
18240
|
/**
|
|
18190
18241
|
*
|
|
18191
|
-
* @type {
|
|
18242
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
18192
18243
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
18193
18244
|
*/
|
|
18194
|
-
meta?:
|
|
18245
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
18195
18246
|
}
|
|
18196
18247
|
/**
|
|
18197
18248
|
*
|
|
@@ -18219,10 +18270,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
18219
18270
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18220
18271
|
/**
|
|
18221
18272
|
*
|
|
18222
|
-
* @type {
|
|
18273
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
18223
18274
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
18224
18275
|
*/
|
|
18225
|
-
attributes?:
|
|
18276
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
18226
18277
|
/**
|
|
18227
18278
|
*
|
|
18228
18279
|
* @type {ObjectLinks}
|
|
@@ -18254,10 +18305,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
18254
18305
|
id: string;
|
|
18255
18306
|
/**
|
|
18256
18307
|
*
|
|
18257
|
-
* @type {
|
|
18308
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
18258
18309
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
18259
18310
|
*/
|
|
18260
|
-
attributes?:
|
|
18311
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
18261
18312
|
}
|
|
18262
18313
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
18263
18314
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18296,10 +18347,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
18296
18347
|
id?: string;
|
|
18297
18348
|
/**
|
|
18298
18349
|
*
|
|
18299
|
-
* @type {
|
|
18350
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
18300
18351
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
18301
18352
|
*/
|
|
18302
|
-
attributes?:
|
|
18353
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
18303
18354
|
}
|
|
18304
18355
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
18305
18356
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -19510,7 +19561,7 @@ export declare const RelativeOperatorEnum: {
|
|
|
19510
19561
|
};
|
|
19511
19562
|
export type RelativeOperatorEnum = typeof RelativeOperatorEnum[keyof typeof RelativeOperatorEnum];
|
|
19512
19563
|
/**
|
|
19513
|
-
* 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.
|
|
19564
|
+
* 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.
|
|
19514
19565
|
* @export
|
|
19515
19566
|
* @interface RelativeDateFilter
|
|
19516
19567
|
*/
|
|
@@ -19558,6 +19609,12 @@ export interface RelativeDateFilterRelativeDateFilter {
|
|
|
19558
19609
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19559
19610
|
*/
|
|
19560
19611
|
applyOnResult?: boolean;
|
|
19612
|
+
/**
|
|
19613
|
+
*
|
|
19614
|
+
* @type {BoundedFilter}
|
|
19615
|
+
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19616
|
+
*/
|
|
19617
|
+
boundedFilter?: BoundedFilter;
|
|
19561
19618
|
/**
|
|
19562
19619
|
*
|
|
19563
19620
|
* @type {AfmObjectIdentifierDataset}
|