@gooddata/api-client-tiger 10.33.0-alpha.82 → 10.33.0-alpha.9
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 +1545 -1983
- package/esm/generated/afm-rest-api/api.d.ts +13 -376
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +4 -305
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +2 -180
- package/esm/generated/automation-json-api/api.d.ts +1 -56
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +0 -17
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -50
- package/esm/generated/export-json-api/api.d.ts +1 -56
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +0 -17
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +1 -50
- package/esm/generated/metadata-json-api/api.d.ts +1375 -1432
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +46 -65
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8420 -8471
- 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,7 +404,6 @@ 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";
|
|
408
407
|
};
|
|
409
408
|
export type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
|
|
410
409
|
/**
|
|
@@ -821,55 +820,6 @@ export interface AvailableAssignees {
|
|
|
821
820
|
*/
|
|
822
821
|
userGroups: Array<UserGroupAssignee>;
|
|
823
822
|
}
|
|
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];
|
|
873
823
|
/**
|
|
874
824
|
* Table column override.
|
|
875
825
|
* @export
|
|
@@ -4915,7 +4865,6 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
|
4915
4865
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
4916
4866
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
4917
4867
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
4918
|
-
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
4919
4868
|
};
|
|
4920
4869
|
export type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
|
|
4921
4870
|
/**
|
|
@@ -5510,52 +5459,15 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
5510
5459
|
id: string;
|
|
5511
5460
|
/**
|
|
5512
5461
|
*
|
|
5513
|
-
* @type {
|
|
5462
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
5514
5463
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
5515
5464
|
*/
|
|
5516
|
-
attributes:
|
|
5465
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
5517
5466
|
}
|
|
5518
5467
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
5519
5468
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5520
5469
|
};
|
|
5521
5470
|
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
|
-
}
|
|
5559
5471
|
/**
|
|
5560
5472
|
*
|
|
5561
5473
|
* @export
|
|
@@ -5683,10 +5595,10 @@ export interface JsonApiAnalyticalDashboardOutList {
|
|
|
5683
5595
|
links?: ListLinks;
|
|
5684
5596
|
/**
|
|
5685
5597
|
*
|
|
5686
|
-
* @type {
|
|
5598
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5687
5599
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
5688
5600
|
*/
|
|
5689
|
-
meta?:
|
|
5601
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5690
5602
|
/**
|
|
5691
5603
|
* Included resources
|
|
5692
5604
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -5997,10 +5909,10 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
5997
5909
|
id?: string;
|
|
5998
5910
|
/**
|
|
5999
5911
|
*
|
|
6000
|
-
* @type {
|
|
5912
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
6001
5913
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
6002
5914
|
*/
|
|
6003
|
-
attributes:
|
|
5915
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
6004
5916
|
}
|
|
6005
5917
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
6006
5918
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -6142,10 +6054,23 @@ export interface JsonApiApiTokenOutList {
|
|
|
6142
6054
|
links?: ListLinks;
|
|
6143
6055
|
/**
|
|
6144
6056
|
*
|
|
6145
|
-
* @type {
|
|
6057
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6146
6058
|
* @memberof JsonApiApiTokenOutList
|
|
6147
6059
|
*/
|
|
6148
|
-
meta?:
|
|
6060
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
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;
|
|
6149
6074
|
}
|
|
6150
6075
|
/**
|
|
6151
6076
|
*
|
|
@@ -6202,52 +6127,15 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
6202
6127
|
id: string;
|
|
6203
6128
|
/**
|
|
6204
6129
|
*
|
|
6205
|
-
* @type {
|
|
6130
|
+
* @type {JsonApiAttributeHierarchyPatchAttributes}
|
|
6206
6131
|
* @memberof JsonApiAttributeHierarchyIn
|
|
6207
6132
|
*/
|
|
6208
|
-
attributes?:
|
|
6133
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
6209
6134
|
}
|
|
6210
6135
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
6211
6136
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
6212
6137
|
};
|
|
6213
6138
|
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
|
-
}
|
|
6251
6139
|
/**
|
|
6252
6140
|
*
|
|
6253
6141
|
* @export
|
|
@@ -6424,10 +6312,10 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
6424
6312
|
links?: ListLinks;
|
|
6425
6313
|
/**
|
|
6426
6314
|
*
|
|
6427
|
-
* @type {
|
|
6315
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6428
6316
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
6429
6317
|
*/
|
|
6430
|
-
meta?:
|
|
6318
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6431
6319
|
/**
|
|
6432
6320
|
* Included resources
|
|
6433
6321
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -6527,15 +6415,52 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
6527
6415
|
id: string;
|
|
6528
6416
|
/**
|
|
6529
6417
|
*
|
|
6530
|
-
* @type {
|
|
6418
|
+
* @type {JsonApiAttributeHierarchyPatchAttributes}
|
|
6531
6419
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
6532
6420
|
*/
|
|
6533
|
-
attributes?:
|
|
6421
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
6534
6422
|
}
|
|
6535
6423
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
6536
6424
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
6537
6425
|
};
|
|
6538
6426
|
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
|
+
}
|
|
6539
6464
|
/**
|
|
6540
6465
|
*
|
|
6541
6466
|
* @export
|
|
@@ -6757,10 +6682,10 @@ export interface JsonApiAttributeOutList {
|
|
|
6757
6682
|
links?: ListLinks;
|
|
6758
6683
|
/**
|
|
6759
6684
|
*
|
|
6760
|
-
* @type {
|
|
6685
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6761
6686
|
* @memberof JsonApiAttributeOutList
|
|
6762
6687
|
*/
|
|
6763
|
-
meta?:
|
|
6688
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6764
6689
|
/**
|
|
6765
6690
|
* Included resources
|
|
6766
6691
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -6911,16 +6836,16 @@ export interface JsonApiAutomationIn {
|
|
|
6911
6836
|
id: string;
|
|
6912
6837
|
/**
|
|
6913
6838
|
*
|
|
6914
|
-
* @type {
|
|
6839
|
+
* @type {JsonApiAutomationPatchAttributes}
|
|
6915
6840
|
* @memberof JsonApiAutomationIn
|
|
6916
6841
|
*/
|
|
6917
|
-
attributes?:
|
|
6842
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
6918
6843
|
/**
|
|
6919
6844
|
*
|
|
6920
|
-
* @type {
|
|
6845
|
+
* @type {JsonApiAutomationPatchRelationships}
|
|
6921
6846
|
* @memberof JsonApiAutomationIn
|
|
6922
6847
|
*/
|
|
6923
|
-
relationships?:
|
|
6848
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
6924
6849
|
}
|
|
6925
6850
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
6926
6851
|
readonly AUTOMATION: "automation";
|
|
@@ -6929,760 +6854,760 @@ export type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[key
|
|
|
6929
6854
|
/**
|
|
6930
6855
|
*
|
|
6931
6856
|
* @export
|
|
6932
|
-
* @interface
|
|
6857
|
+
* @interface JsonApiAutomationInDocument
|
|
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
|
|
6933
6935
|
*/
|
|
6934
|
-
export interface
|
|
6936
|
+
export interface JsonApiAutomationOutAttributes {
|
|
6935
6937
|
/**
|
|
6936
6938
|
*
|
|
6937
6939
|
* @type {string}
|
|
6938
|
-
* @memberof
|
|
6940
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6939
6941
|
*/
|
|
6940
6942
|
title?: string;
|
|
6941
6943
|
/**
|
|
6942
6944
|
*
|
|
6943
6945
|
* @type {string}
|
|
6944
|
-
* @memberof
|
|
6946
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6945
6947
|
*/
|
|
6946
6948
|
description?: string;
|
|
6947
6949
|
/**
|
|
6948
6950
|
*
|
|
6949
6951
|
* @type {Array<string>}
|
|
6950
|
-
* @memberof
|
|
6952
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6951
6953
|
*/
|
|
6952
6954
|
tags?: Array<string>;
|
|
6953
6955
|
/**
|
|
6954
6956
|
*
|
|
6955
6957
|
* @type {boolean}
|
|
6956
|
-
* @memberof
|
|
6958
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6957
6959
|
*/
|
|
6958
6960
|
areRelationsValid?: boolean;
|
|
6959
6961
|
/**
|
|
6960
6962
|
* Additional details to be included in the automated message.
|
|
6961
6963
|
* @type {any}
|
|
6962
|
-
* @memberof
|
|
6964
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6963
6965
|
*/
|
|
6964
6966
|
details?: any;
|
|
6965
6967
|
/**
|
|
6966
6968
|
*
|
|
6967
|
-
* @type {
|
|
6968
|
-
* @memberof
|
|
6969
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
6970
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6969
6971
|
*/
|
|
6970
|
-
metadata?:
|
|
6972
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
6971
6973
|
/**
|
|
6972
6974
|
* Current state of the automation.
|
|
6973
6975
|
* @type {string}
|
|
6974
|
-
* @memberof
|
|
6976
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6975
6977
|
*/
|
|
6976
|
-
state?:
|
|
6978
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6977
6979
|
/**
|
|
6978
6980
|
*
|
|
6979
|
-
* @type {
|
|
6980
|
-
* @memberof
|
|
6981
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
6982
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6981
6983
|
*/
|
|
6982
|
-
schedule?:
|
|
6984
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
6983
6985
|
/**
|
|
6984
6986
|
*
|
|
6985
|
-
* @type {
|
|
6986
|
-
* @memberof
|
|
6987
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
6988
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6987
6989
|
*/
|
|
6988
|
-
alert?:
|
|
6990
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
6989
6991
|
/**
|
|
6990
6992
|
*
|
|
6991
|
-
* @type {Array<
|
|
6992
|
-
* @memberof
|
|
6993
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
6994
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6993
6995
|
*/
|
|
6994
|
-
tabularExports?: Array<
|
|
6996
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
6995
6997
|
/**
|
|
6996
6998
|
*
|
|
6997
|
-
* @type {Array<
|
|
6998
|
-
* @memberof
|
|
6999
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
7000
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6999
7001
|
*/
|
|
7000
|
-
visualExports?: Array<
|
|
7002
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
7001
7003
|
/**
|
|
7002
7004
|
*
|
|
7003
|
-
* @type {Array<
|
|
7004
|
-
* @memberof
|
|
7005
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
7006
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7005
7007
|
*/
|
|
7006
|
-
imageExports?: Array<
|
|
7008
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
7007
7009
|
/**
|
|
7008
7010
|
*
|
|
7009
|
-
* @type {Array<
|
|
7010
|
-
* @memberof
|
|
7011
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
7012
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7011
7013
|
*/
|
|
7012
|
-
rawExports?: Array<
|
|
7014
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
7013
7015
|
/**
|
|
7014
7016
|
*
|
|
7015
|
-
* @type {Array<
|
|
7016
|
-
* @memberof
|
|
7017
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
7018
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7017
7019
|
*/
|
|
7018
|
-
slidesExports?: Array<
|
|
7020
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
7019
7021
|
/**
|
|
7020
7022
|
*
|
|
7021
|
-
* @type {Array<
|
|
7022
|
-
* @memberof
|
|
7023
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
7024
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7023
7025
|
*/
|
|
7024
|
-
dashboardTabularExports?: Array<
|
|
7026
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
7025
7027
|
/**
|
|
7026
7028
|
* External recipients of the automation action results.
|
|
7027
|
-
* @type {Array<
|
|
7028
|
-
* @memberof
|
|
7029
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
7030
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
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
|
|
7029
7043
|
*/
|
|
7030
|
-
|
|
7044
|
+
modifiedAt?: string;
|
|
7031
7045
|
}
|
|
7032
|
-
export declare const
|
|
7046
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
7033
7047
|
readonly ACTIVE: "ACTIVE";
|
|
7034
7048
|
readonly PAUSED: "PAUSED";
|
|
7035
7049
|
};
|
|
7036
|
-
export type
|
|
7050
|
+
export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
7037
7051
|
/**
|
|
7038
7052
|
*
|
|
7039
7053
|
* @export
|
|
7040
|
-
* @interface
|
|
7054
|
+
* @interface JsonApiAutomationOutDocument
|
|
7041
7055
|
*/
|
|
7042
|
-
export interface
|
|
7056
|
+
export interface JsonApiAutomationOutDocument {
|
|
7043
7057
|
/**
|
|
7044
7058
|
*
|
|
7045
|
-
* @type {
|
|
7046
|
-
* @memberof
|
|
7059
|
+
* @type {JsonApiAutomationOut}
|
|
7060
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7047
7061
|
*/
|
|
7048
|
-
|
|
7062
|
+
data: JsonApiAutomationOut;
|
|
7049
7063
|
/**
|
|
7050
7064
|
*
|
|
7051
|
-
* @type {
|
|
7052
|
-
* @memberof
|
|
7065
|
+
* @type {ObjectLinks}
|
|
7066
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7053
7067
|
*/
|
|
7054
|
-
|
|
7055
|
-
/**
|
|
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
|
|
7059
|
-
*/
|
|
7060
|
-
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
7061
|
-
}
|
|
7062
|
-
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
7063
|
-
readonly ALWAYS: "ALWAYS";
|
|
7064
|
-
readonly ONCE: "ONCE";
|
|
7065
|
-
};
|
|
7066
|
-
export type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
7067
|
-
/**
|
|
7068
|
-
*
|
|
7069
|
-
* @export
|
|
7070
|
-
* @interface JsonApiAutomationInAttributesDashboardTabularExports
|
|
7071
|
-
*/
|
|
7072
|
-
export interface JsonApiAutomationInAttributesDashboardTabularExports {
|
|
7073
|
-
/**
|
|
7074
|
-
*
|
|
7075
|
-
* @type {DashboardTabularExportRequestV2}
|
|
7076
|
-
* @memberof JsonApiAutomationInAttributesDashboardTabularExports
|
|
7077
|
-
*/
|
|
7078
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
7079
|
-
}
|
|
7080
|
-
/**
|
|
7081
|
-
*
|
|
7082
|
-
* @export
|
|
7083
|
-
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
7084
|
-
*/
|
|
7085
|
-
export interface JsonApiAutomationInAttributesExternalRecipients {
|
|
7068
|
+
links?: ObjectLinks;
|
|
7086
7069
|
/**
|
|
7087
|
-
*
|
|
7088
|
-
* @type {
|
|
7089
|
-
* @memberof
|
|
7070
|
+
* Included resources
|
|
7071
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7072
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7090
7073
|
*/
|
|
7091
|
-
|
|
7074
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7092
7075
|
}
|
|
7093
7076
|
/**
|
|
7094
|
-
*
|
|
7077
|
+
* @type JsonApiAutomationOutIncludes
|
|
7095
7078
|
* @export
|
|
7096
|
-
* @interface JsonApiAutomationInAttributesImageExports
|
|
7097
7079
|
*/
|
|
7098
|
-
export
|
|
7099
|
-
/**
|
|
7100
|
-
*
|
|
7101
|
-
* @type {ImageExportRequest}
|
|
7102
|
-
* @memberof JsonApiAutomationInAttributesImageExports
|
|
7103
|
-
*/
|
|
7104
|
-
requestPayload: ImageExportRequest;
|
|
7105
|
-
}
|
|
7080
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7106
7081
|
/**
|
|
7107
|
-
*
|
|
7082
|
+
* A JSON:API document with a list of resources
|
|
7108
7083
|
* @export
|
|
7109
|
-
* @interface
|
|
7084
|
+
* @interface JsonApiAutomationOutList
|
|
7110
7085
|
*/
|
|
7111
|
-
export interface
|
|
7112
|
-
/**
|
|
7113
|
-
*
|
|
7114
|
-
* @type {string}
|
|
7115
|
-
* @memberof JsonApiAutomationInAttributesMetadata
|
|
7116
|
-
*/
|
|
7117
|
-
widget?: string;
|
|
7086
|
+
export interface JsonApiAutomationOutList {
|
|
7118
7087
|
/**
|
|
7119
7088
|
*
|
|
7120
|
-
* @type {Array<
|
|
7121
|
-
* @memberof
|
|
7089
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
7090
|
+
* @memberof JsonApiAutomationOutList
|
|
7122
7091
|
*/
|
|
7123
|
-
|
|
7124
|
-
}
|
|
7125
|
-
/**
|
|
7126
|
-
*
|
|
7127
|
-
* @export
|
|
7128
|
-
* @interface JsonApiAutomationInAttributesRawExports
|
|
7129
|
-
*/
|
|
7130
|
-
export interface JsonApiAutomationInAttributesRawExports {
|
|
7092
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
7131
7093
|
/**
|
|
7132
7094
|
*
|
|
7133
|
-
* @type {
|
|
7134
|
-
* @memberof
|
|
7135
|
-
*/
|
|
7136
|
-
requestPayload: RawExportRequest;
|
|
7137
|
-
}
|
|
7138
|
-
/**
|
|
7139
|
-
*
|
|
7140
|
-
* @export
|
|
7141
|
-
* @interface JsonApiAutomationInAttributesSchedule
|
|
7142
|
-
*/
|
|
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
|
|
7095
|
+
* @type {ListLinks}
|
|
7096
|
+
* @memberof JsonApiAutomationOutList
|
|
7166
7097
|
*/
|
|
7167
|
-
|
|
7168
|
-
}
|
|
7169
|
-
/**
|
|
7170
|
-
*
|
|
7171
|
-
* @export
|
|
7172
|
-
* @interface JsonApiAutomationInAttributesSlidesExports
|
|
7173
|
-
*/
|
|
7174
|
-
export interface JsonApiAutomationInAttributesSlidesExports {
|
|
7098
|
+
links?: ListLinks;
|
|
7175
7099
|
/**
|
|
7176
7100
|
*
|
|
7177
|
-
* @type {
|
|
7178
|
-
* @memberof
|
|
7101
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7102
|
+
* @memberof JsonApiAutomationOutList
|
|
7179
7103
|
*/
|
|
7180
|
-
|
|
7181
|
-
}
|
|
7182
|
-
/**
|
|
7183
|
-
*
|
|
7184
|
-
* @export
|
|
7185
|
-
* @interface JsonApiAutomationInAttributesTabularExports
|
|
7186
|
-
*/
|
|
7187
|
-
export interface JsonApiAutomationInAttributesTabularExports {
|
|
7104
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7188
7105
|
/**
|
|
7189
|
-
*
|
|
7190
|
-
* @type {
|
|
7191
|
-
* @memberof
|
|
7106
|
+
* Included resources
|
|
7107
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7108
|
+
* @memberof JsonApiAutomationOutList
|
|
7192
7109
|
*/
|
|
7193
|
-
|
|
7110
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7194
7111
|
}
|
|
7195
7112
|
/**
|
|
7196
7113
|
*
|
|
7197
7114
|
* @export
|
|
7198
|
-
* @interface
|
|
7115
|
+
* @interface JsonApiAutomationOutRelationships
|
|
7199
7116
|
*/
|
|
7200
|
-
export interface
|
|
7117
|
+
export interface JsonApiAutomationOutRelationships {
|
|
7201
7118
|
/**
|
|
7202
7119
|
*
|
|
7203
|
-
* @type {
|
|
7204
|
-
* @memberof
|
|
7120
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
7121
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7205
7122
|
*/
|
|
7206
|
-
|
|
7207
|
-
}
|
|
7208
|
-
/**
|
|
7209
|
-
*
|
|
7210
|
-
* @export
|
|
7211
|
-
* @interface JsonApiAutomationInDocument
|
|
7212
|
-
*/
|
|
7213
|
-
export interface JsonApiAutomationInDocument {
|
|
7123
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
7214
7124
|
/**
|
|
7215
7125
|
*
|
|
7216
|
-
* @type {
|
|
7217
|
-
* @memberof
|
|
7126
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
7127
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7218
7128
|
*/
|
|
7219
|
-
|
|
7220
|
-
}
|
|
7221
|
-
/**
|
|
7222
|
-
*
|
|
7223
|
-
* @export
|
|
7224
|
-
* @interface JsonApiAutomationInRelationships
|
|
7225
|
-
*/
|
|
7226
|
-
export interface JsonApiAutomationInRelationships {
|
|
7129
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
7227
7130
|
/**
|
|
7228
7131
|
*
|
|
7229
|
-
* @type {
|
|
7230
|
-
* @memberof
|
|
7132
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7133
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7231
7134
|
*/
|
|
7232
|
-
|
|
7135
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7233
7136
|
/**
|
|
7234
7137
|
*
|
|
7235
|
-
* @type {
|
|
7236
|
-
* @memberof
|
|
7138
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7139
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7237
7140
|
*/
|
|
7238
|
-
|
|
7141
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7239
7142
|
/**
|
|
7240
7143
|
*
|
|
7241
|
-
* @type {
|
|
7242
|
-
* @memberof
|
|
7144
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
7145
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7243
7146
|
*/
|
|
7244
|
-
exportDefinitions?:
|
|
7147
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
7245
7148
|
/**
|
|
7246
7149
|
*
|
|
7247
|
-
* @type {
|
|
7248
|
-
* @memberof
|
|
7150
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
7151
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7249
7152
|
*/
|
|
7250
|
-
recipients?:
|
|
7153
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
7251
7154
|
}
|
|
7252
7155
|
/**
|
|
7253
7156
|
*
|
|
7254
7157
|
* @export
|
|
7255
|
-
* @interface
|
|
7158
|
+
* @interface JsonApiAutomationOutWithLinks
|
|
7256
7159
|
*/
|
|
7257
|
-
export interface
|
|
7160
|
+
export interface JsonApiAutomationOutWithLinks {
|
|
7258
7161
|
/**
|
|
7259
|
-
*
|
|
7260
|
-
* @type {
|
|
7261
|
-
* @memberof
|
|
7162
|
+
* Object type
|
|
7163
|
+
* @type {string}
|
|
7164
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7262
7165
|
*/
|
|
7263
|
-
|
|
7264
|
-
}
|
|
7265
|
-
/**
|
|
7266
|
-
*
|
|
7267
|
-
* @export
|
|
7268
|
-
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
7269
|
-
*/
|
|
7270
|
-
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
7166
|
+
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
7271
7167
|
/**
|
|
7272
|
-
*
|
|
7273
|
-
* @type {
|
|
7274
|
-
* @memberof
|
|
7168
|
+
* API identifier of an object
|
|
7169
|
+
* @type {string}
|
|
7170
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7275
7171
|
*/
|
|
7276
|
-
|
|
7277
|
-
}
|
|
7278
|
-
/**
|
|
7279
|
-
*
|
|
7280
|
-
* @export
|
|
7281
|
-
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
7282
|
-
*/
|
|
7283
|
-
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
7172
|
+
id: string;
|
|
7284
7173
|
/**
|
|
7285
7174
|
*
|
|
7286
|
-
* @type {
|
|
7287
|
-
* @memberof
|
|
7175
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7176
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7288
7177
|
*/
|
|
7289
|
-
|
|
7290
|
-
}
|
|
7291
|
-
/**
|
|
7292
|
-
*
|
|
7293
|
-
* @export
|
|
7294
|
-
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
7295
|
-
*/
|
|
7296
|
-
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
7178
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7297
7179
|
/**
|
|
7298
|
-
*
|
|
7299
|
-
* @type {
|
|
7300
|
-
* @memberof
|
|
7180
|
+
*
|
|
7181
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7182
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7301
7183
|
*/
|
|
7302
|
-
|
|
7303
|
-
}
|
|
7304
|
-
/**
|
|
7305
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7306
|
-
* @export
|
|
7307
|
-
* @interface JsonApiAutomationLinkage
|
|
7308
|
-
*/
|
|
7309
|
-
export interface JsonApiAutomationLinkage {
|
|
7184
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7310
7185
|
/**
|
|
7311
7186
|
*
|
|
7312
|
-
* @type {
|
|
7313
|
-
* @memberof
|
|
7187
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7188
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7314
7189
|
*/
|
|
7315
|
-
|
|
7190
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7316
7191
|
/**
|
|
7317
7192
|
*
|
|
7318
|
-
* @type {
|
|
7319
|
-
* @memberof
|
|
7193
|
+
* @type {ObjectLinks}
|
|
7194
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7320
7195
|
*/
|
|
7321
|
-
|
|
7196
|
+
links?: ObjectLinks;
|
|
7322
7197
|
}
|
|
7323
|
-
export declare const
|
|
7198
|
+
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
7324
7199
|
readonly AUTOMATION: "automation";
|
|
7325
7200
|
};
|
|
7326
|
-
export type
|
|
7201
|
+
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
7327
7202
|
/**
|
|
7328
|
-
* JSON:API representation of automation entity.
|
|
7203
|
+
* JSON:API representation of patching automation entity.
|
|
7329
7204
|
* @export
|
|
7330
|
-
* @interface
|
|
7205
|
+
* @interface JsonApiAutomationPatch
|
|
7331
7206
|
*/
|
|
7332
|
-
export interface
|
|
7207
|
+
export interface JsonApiAutomationPatch {
|
|
7333
7208
|
/**
|
|
7334
7209
|
* Object type
|
|
7335
7210
|
* @type {string}
|
|
7336
|
-
* @memberof
|
|
7211
|
+
* @memberof JsonApiAutomationPatch
|
|
7337
7212
|
*/
|
|
7338
|
-
type:
|
|
7213
|
+
type: JsonApiAutomationPatchTypeEnum;
|
|
7339
7214
|
/**
|
|
7340
7215
|
* API identifier of an object
|
|
7341
7216
|
* @type {string}
|
|
7342
|
-
* @memberof
|
|
7217
|
+
* @memberof JsonApiAutomationPatch
|
|
7343
7218
|
*/
|
|
7344
7219
|
id: string;
|
|
7345
7220
|
/**
|
|
7346
7221
|
*
|
|
7347
|
-
* @type {
|
|
7348
|
-
* @memberof
|
|
7349
|
-
*/
|
|
7350
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7351
|
-
/**
|
|
7352
|
-
*
|
|
7353
|
-
* @type {JsonApiAutomationOutAttributes}
|
|
7354
|
-
* @memberof JsonApiAutomationOut
|
|
7222
|
+
* @type {JsonApiAutomationPatchAttributes}
|
|
7223
|
+
* @memberof JsonApiAutomationPatch
|
|
7355
7224
|
*/
|
|
7356
|
-
attributes?:
|
|
7225
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
7357
7226
|
/**
|
|
7358
7227
|
*
|
|
7359
|
-
* @type {
|
|
7360
|
-
* @memberof
|
|
7228
|
+
* @type {JsonApiAutomationPatchRelationships}
|
|
7229
|
+
* @memberof JsonApiAutomationPatch
|
|
7361
7230
|
*/
|
|
7362
|
-
relationships?:
|
|
7231
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
7363
7232
|
}
|
|
7364
|
-
export declare const
|
|
7233
|
+
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7365
7234
|
readonly AUTOMATION: "automation";
|
|
7366
7235
|
};
|
|
7367
|
-
export type
|
|
7236
|
+
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7368
7237
|
/**
|
|
7369
7238
|
*
|
|
7370
7239
|
* @export
|
|
7371
|
-
* @interface
|
|
7240
|
+
* @interface JsonApiAutomationPatchAttributes
|
|
7372
7241
|
*/
|
|
7373
|
-
export interface
|
|
7242
|
+
export interface JsonApiAutomationPatchAttributes {
|
|
7374
7243
|
/**
|
|
7375
7244
|
*
|
|
7376
7245
|
* @type {string}
|
|
7377
|
-
* @memberof
|
|
7246
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7378
7247
|
*/
|
|
7379
7248
|
title?: string;
|
|
7380
7249
|
/**
|
|
7381
7250
|
*
|
|
7382
7251
|
* @type {string}
|
|
7383
|
-
* @memberof
|
|
7252
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7384
7253
|
*/
|
|
7385
7254
|
description?: string;
|
|
7386
7255
|
/**
|
|
7387
7256
|
*
|
|
7388
7257
|
* @type {Array<string>}
|
|
7389
|
-
* @memberof
|
|
7258
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7390
7259
|
*/
|
|
7391
7260
|
tags?: Array<string>;
|
|
7392
7261
|
/**
|
|
7393
7262
|
*
|
|
7394
7263
|
* @type {boolean}
|
|
7395
|
-
* @memberof
|
|
7264
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7396
7265
|
*/
|
|
7397
7266
|
areRelationsValid?: boolean;
|
|
7398
7267
|
/**
|
|
7399
7268
|
* Additional details to be included in the automated message.
|
|
7400
7269
|
* @type {any}
|
|
7401
|
-
* @memberof
|
|
7270
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7402
7271
|
*/
|
|
7403
7272
|
details?: any;
|
|
7404
7273
|
/**
|
|
7405
7274
|
*
|
|
7406
|
-
* @type {
|
|
7407
|
-
* @memberof
|
|
7275
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
7276
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7408
7277
|
*/
|
|
7409
|
-
metadata?:
|
|
7278
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
7410
7279
|
/**
|
|
7411
7280
|
* Current state of the automation.
|
|
7412
7281
|
* @type {string}
|
|
7413
|
-
* @memberof
|
|
7282
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7414
7283
|
*/
|
|
7415
|
-
state?:
|
|
7284
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
7416
7285
|
/**
|
|
7417
7286
|
*
|
|
7418
|
-
* @type {
|
|
7419
|
-
* @memberof
|
|
7287
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
7288
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7420
7289
|
*/
|
|
7421
|
-
schedule?:
|
|
7290
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
7422
7291
|
/**
|
|
7423
7292
|
*
|
|
7424
|
-
* @type {
|
|
7425
|
-
* @memberof
|
|
7293
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
7294
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7426
7295
|
*/
|
|
7427
|
-
alert?:
|
|
7296
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
7428
7297
|
/**
|
|
7429
7298
|
*
|
|
7430
|
-
* @type {Array<
|
|
7431
|
-
* @memberof
|
|
7299
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
7300
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7432
7301
|
*/
|
|
7433
|
-
tabularExports?: Array<
|
|
7302
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
7434
7303
|
/**
|
|
7435
7304
|
*
|
|
7436
|
-
* @type {Array<
|
|
7437
|
-
* @memberof
|
|
7305
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
7306
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7438
7307
|
*/
|
|
7439
|
-
visualExports?: Array<
|
|
7308
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
7440
7309
|
/**
|
|
7441
7310
|
*
|
|
7442
|
-
* @type {Array<
|
|
7443
|
-
* @memberof
|
|
7311
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
7312
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7444
7313
|
*/
|
|
7445
|
-
imageExports?: Array<
|
|
7314
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
7446
7315
|
/**
|
|
7447
7316
|
*
|
|
7448
|
-
* @type {Array<
|
|
7449
|
-
* @memberof
|
|
7317
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
7318
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7450
7319
|
*/
|
|
7451
|
-
rawExports?: Array<
|
|
7320
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
7452
7321
|
/**
|
|
7453
7322
|
*
|
|
7454
|
-
* @type {Array<
|
|
7455
|
-
* @memberof
|
|
7323
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
7324
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7456
7325
|
*/
|
|
7457
|
-
slidesExports?: Array<
|
|
7326
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
7458
7327
|
/**
|
|
7459
7328
|
*
|
|
7460
|
-
* @type {Array<
|
|
7461
|
-
* @memberof
|
|
7329
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
7330
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7462
7331
|
*/
|
|
7463
|
-
dashboardTabularExports?: Array<
|
|
7332
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
7464
7333
|
/**
|
|
7465
7334
|
* External recipients of the automation action results.
|
|
7466
|
-
* @type {Array<
|
|
7467
|
-
* @memberof
|
|
7468
|
-
*/
|
|
7469
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
7470
|
-
/**
|
|
7471
|
-
*
|
|
7472
|
-
* @type {string}
|
|
7473
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
7335
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
7336
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7474
7337
|
*/
|
|
7475
|
-
|
|
7476
|
-
/**
|
|
7477
|
-
*
|
|
7478
|
-
* @type {string}
|
|
7479
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
7480
|
-
*/
|
|
7481
|
-
modifiedAt?: string;
|
|
7338
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
7482
7339
|
}
|
|
7483
|
-
export declare const
|
|
7340
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
7484
7341
|
readonly ACTIVE: "ACTIVE";
|
|
7485
7342
|
readonly PAUSED: "PAUSED";
|
|
7486
7343
|
};
|
|
7487
|
-
export type
|
|
7344
|
+
export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
7488
7345
|
/**
|
|
7489
7346
|
*
|
|
7490
7347
|
* @export
|
|
7491
|
-
* @interface
|
|
7348
|
+
* @interface JsonApiAutomationPatchAttributesAlert
|
|
7492
7349
|
*/
|
|
7493
|
-
export interface
|
|
7350
|
+
export interface JsonApiAutomationPatchAttributesAlert {
|
|
7494
7351
|
/**
|
|
7495
7352
|
*
|
|
7496
|
-
* @type {
|
|
7497
|
-
* @memberof
|
|
7353
|
+
* @type {AlertAfm}
|
|
7354
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
7498
7355
|
*/
|
|
7499
|
-
|
|
7356
|
+
execution: AlertAfm;
|
|
7500
7357
|
/**
|
|
7501
7358
|
*
|
|
7502
|
-
* @type {
|
|
7503
|
-
* @memberof
|
|
7359
|
+
* @type {AlertCondition}
|
|
7360
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
7504
7361
|
*/
|
|
7505
|
-
|
|
7362
|
+
condition: AlertCondition;
|
|
7506
7363
|
/**
|
|
7507
|
-
*
|
|
7508
|
-
* @type {
|
|
7509
|
-
* @memberof
|
|
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
|
+
* @type {string}
|
|
7366
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
7510
7367
|
*/
|
|
7511
|
-
|
|
7368
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
7512
7369
|
}
|
|
7370
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
7371
|
+
readonly ALWAYS: "ALWAYS";
|
|
7372
|
+
readonly ONCE: "ONCE";
|
|
7373
|
+
};
|
|
7374
|
+
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
7513
7375
|
/**
|
|
7514
|
-
*
|
|
7376
|
+
*
|
|
7515
7377
|
* @export
|
|
7378
|
+
* @interface JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
7516
7379
|
*/
|
|
7517
|
-
export
|
|
7380
|
+
export interface JsonApiAutomationPatchAttributesDashboardTabularExports {
|
|
7381
|
+
/**
|
|
7382
|
+
*
|
|
7383
|
+
* @type {DashboardTabularExportRequestV2}
|
|
7384
|
+
* @memberof JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
7385
|
+
*/
|
|
7386
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
7387
|
+
}
|
|
7518
7388
|
/**
|
|
7519
|
-
*
|
|
7389
|
+
*
|
|
7520
7390
|
* @export
|
|
7521
|
-
* @interface
|
|
7391
|
+
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
7522
7392
|
*/
|
|
7523
|
-
export interface
|
|
7393
|
+
export interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
7524
7394
|
/**
|
|
7525
|
-
*
|
|
7526
|
-
* @type {
|
|
7527
|
-
* @memberof
|
|
7395
|
+
* E-mail address to send notifications from.
|
|
7396
|
+
* @type {string}
|
|
7397
|
+
* @memberof JsonApiAutomationPatchAttributesExternalRecipients
|
|
7528
7398
|
*/
|
|
7529
|
-
|
|
7399
|
+
email: string;
|
|
7400
|
+
}
|
|
7401
|
+
/**
|
|
7402
|
+
*
|
|
7403
|
+
* @export
|
|
7404
|
+
* @interface JsonApiAutomationPatchAttributesImageExports
|
|
7405
|
+
*/
|
|
7406
|
+
export interface JsonApiAutomationPatchAttributesImageExports {
|
|
7530
7407
|
/**
|
|
7531
7408
|
*
|
|
7532
|
-
* @type {
|
|
7533
|
-
* @memberof
|
|
7409
|
+
* @type {ImageExportRequest}
|
|
7410
|
+
* @memberof JsonApiAutomationPatchAttributesImageExports
|
|
7534
7411
|
*/
|
|
7535
|
-
|
|
7412
|
+
requestPayload: ImageExportRequest;
|
|
7413
|
+
}
|
|
7414
|
+
/**
|
|
7415
|
+
* Additional information for the automation.
|
|
7416
|
+
* @export
|
|
7417
|
+
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
7418
|
+
*/
|
|
7419
|
+
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
7536
7420
|
/**
|
|
7537
7421
|
*
|
|
7538
|
-
* @type {
|
|
7539
|
-
* @memberof
|
|
7422
|
+
* @type {string}
|
|
7423
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
7540
7424
|
*/
|
|
7541
|
-
|
|
7425
|
+
widget?: string;
|
|
7542
7426
|
/**
|
|
7543
|
-
*
|
|
7544
|
-
* @type {Array<
|
|
7545
|
-
* @memberof
|
|
7427
|
+
*
|
|
7428
|
+
* @type {Array<VisibleFilter>}
|
|
7429
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
7546
7430
|
*/
|
|
7547
|
-
|
|
7431
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
7548
7432
|
}
|
|
7549
7433
|
/**
|
|
7550
7434
|
*
|
|
7551
7435
|
* @export
|
|
7552
|
-
* @interface
|
|
7436
|
+
* @interface JsonApiAutomationPatchAttributesRawExports
|
|
7553
7437
|
*/
|
|
7554
|
-
export interface
|
|
7438
|
+
export interface JsonApiAutomationPatchAttributesRawExports {
|
|
7555
7439
|
/**
|
|
7556
7440
|
*
|
|
7557
|
-
* @type {
|
|
7558
|
-
* @memberof
|
|
7441
|
+
* @type {RawExportRequest}
|
|
7442
|
+
* @memberof JsonApiAutomationPatchAttributesRawExports
|
|
7559
7443
|
*/
|
|
7560
|
-
|
|
7444
|
+
requestPayload: RawExportRequest;
|
|
7445
|
+
}
|
|
7446
|
+
/**
|
|
7447
|
+
*
|
|
7448
|
+
* @export
|
|
7449
|
+
* @interface JsonApiAutomationPatchAttributesSchedule
|
|
7450
|
+
*/
|
|
7451
|
+
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
7561
7452
|
/**
|
|
7562
|
-
*
|
|
7563
|
-
* @type {
|
|
7564
|
-
* @memberof
|
|
7453
|
+
* 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.
|
|
7454
|
+
* @type {string}
|
|
7455
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
7565
7456
|
*/
|
|
7566
|
-
|
|
7457
|
+
cron: string;
|
|
7567
7458
|
/**
|
|
7568
|
-
*
|
|
7569
|
-
* @type {
|
|
7570
|
-
* @memberof
|
|
7459
|
+
* Human-readable description of the cron expression.
|
|
7460
|
+
* @type {string}
|
|
7461
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
7571
7462
|
*/
|
|
7572
|
-
|
|
7463
|
+
cronDescription?: string;
|
|
7573
7464
|
/**
|
|
7574
|
-
*
|
|
7575
|
-
* @type {
|
|
7576
|
-
* @memberof
|
|
7465
|
+
* Timezone in which the schedule is defined.
|
|
7466
|
+
* @type {string}
|
|
7467
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
7577
7468
|
*/
|
|
7578
|
-
|
|
7469
|
+
timezone: string;
|
|
7470
|
+
/**
|
|
7471
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
7472
|
+
* @type {string}
|
|
7473
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
7474
|
+
*/
|
|
7475
|
+
firstRun?: string;
|
|
7476
|
+
}
|
|
7477
|
+
/**
|
|
7478
|
+
*
|
|
7479
|
+
* @export
|
|
7480
|
+
* @interface JsonApiAutomationPatchAttributesSlidesExports
|
|
7481
|
+
*/
|
|
7482
|
+
export interface JsonApiAutomationPatchAttributesSlidesExports {
|
|
7579
7483
|
/**
|
|
7580
7484
|
*
|
|
7581
|
-
* @type {
|
|
7582
|
-
* @memberof
|
|
7485
|
+
* @type {SlidesExportRequest}
|
|
7486
|
+
* @memberof JsonApiAutomationPatchAttributesSlidesExports
|
|
7583
7487
|
*/
|
|
7584
|
-
|
|
7488
|
+
requestPayload: SlidesExportRequest;
|
|
7489
|
+
}
|
|
7490
|
+
/**
|
|
7491
|
+
*
|
|
7492
|
+
* @export
|
|
7493
|
+
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
7494
|
+
*/
|
|
7495
|
+
export interface JsonApiAutomationPatchAttributesTabularExports {
|
|
7585
7496
|
/**
|
|
7586
7497
|
*
|
|
7587
|
-
* @type {
|
|
7588
|
-
* @memberof
|
|
7498
|
+
* @type {TabularExportRequest}
|
|
7499
|
+
* @memberof JsonApiAutomationPatchAttributesTabularExports
|
|
7589
7500
|
*/
|
|
7590
|
-
|
|
7501
|
+
requestPayload: TabularExportRequest;
|
|
7591
7502
|
}
|
|
7592
7503
|
/**
|
|
7593
7504
|
*
|
|
7594
7505
|
* @export
|
|
7595
|
-
* @interface
|
|
7506
|
+
* @interface JsonApiAutomationPatchAttributesVisualExports
|
|
7596
7507
|
*/
|
|
7597
|
-
export interface
|
|
7508
|
+
export interface JsonApiAutomationPatchAttributesVisualExports {
|
|
7598
7509
|
/**
|
|
7599
|
-
*
|
|
7600
|
-
* @type {
|
|
7601
|
-
* @memberof
|
|
7510
|
+
*
|
|
7511
|
+
* @type {VisualExportRequest}
|
|
7512
|
+
* @memberof JsonApiAutomationPatchAttributesVisualExports
|
|
7602
7513
|
*/
|
|
7603
|
-
|
|
7514
|
+
requestPayload: VisualExportRequest;
|
|
7515
|
+
}
|
|
7516
|
+
/**
|
|
7517
|
+
*
|
|
7518
|
+
* @export
|
|
7519
|
+
* @interface JsonApiAutomationPatchDocument
|
|
7520
|
+
*/
|
|
7521
|
+
export interface JsonApiAutomationPatchDocument {
|
|
7604
7522
|
/**
|
|
7605
|
-
*
|
|
7606
|
-
* @type {
|
|
7607
|
-
* @memberof
|
|
7523
|
+
*
|
|
7524
|
+
* @type {JsonApiAutomationPatch}
|
|
7525
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
7608
7526
|
*/
|
|
7609
|
-
|
|
7527
|
+
data: JsonApiAutomationPatch;
|
|
7528
|
+
}
|
|
7529
|
+
/**
|
|
7530
|
+
*
|
|
7531
|
+
* @export
|
|
7532
|
+
* @interface JsonApiAutomationPatchRelationships
|
|
7533
|
+
*/
|
|
7534
|
+
export interface JsonApiAutomationPatchRelationships {
|
|
7610
7535
|
/**
|
|
7611
7536
|
*
|
|
7612
|
-
* @type {
|
|
7613
|
-
* @memberof
|
|
7537
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
7538
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
7614
7539
|
*/
|
|
7615
|
-
|
|
7540
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
7616
7541
|
/**
|
|
7617
7542
|
*
|
|
7618
|
-
* @type {
|
|
7619
|
-
* @memberof
|
|
7543
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
7544
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
7620
7545
|
*/
|
|
7621
|
-
|
|
7546
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
7622
7547
|
/**
|
|
7623
7548
|
*
|
|
7624
|
-
* @type {
|
|
7625
|
-
* @memberof
|
|
7549
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
7550
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
7626
7551
|
*/
|
|
7627
|
-
|
|
7552
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
7628
7553
|
/**
|
|
7629
7554
|
*
|
|
7630
|
-
* @type {
|
|
7631
|
-
* @memberof
|
|
7555
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
7556
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
7632
7557
|
*/
|
|
7633
|
-
|
|
7558
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
7634
7559
|
}
|
|
7635
|
-
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
7636
|
-
readonly AUTOMATION: "automation";
|
|
7637
|
-
};
|
|
7638
|
-
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
7639
7560
|
/**
|
|
7640
|
-
*
|
|
7561
|
+
*
|
|
7641
7562
|
* @export
|
|
7642
|
-
* @interface
|
|
7563
|
+
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
7643
7564
|
*/
|
|
7644
|
-
export interface
|
|
7645
|
-
/**
|
|
7646
|
-
* Object type
|
|
7647
|
-
* @type {string}
|
|
7648
|
-
* @memberof JsonApiAutomationPatch
|
|
7649
|
-
*/
|
|
7650
|
-
type: JsonApiAutomationPatchTypeEnum;
|
|
7651
|
-
/**
|
|
7652
|
-
* API identifier of an object
|
|
7653
|
-
* @type {string}
|
|
7654
|
-
* @memberof JsonApiAutomationPatch
|
|
7655
|
-
*/
|
|
7656
|
-
id: string;
|
|
7565
|
+
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
7657
7566
|
/**
|
|
7658
7567
|
*
|
|
7659
|
-
* @type {
|
|
7660
|
-
* @memberof
|
|
7568
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
7569
|
+
* @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
7661
7570
|
*/
|
|
7662
|
-
|
|
7571
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
7572
|
+
}
|
|
7573
|
+
/**
|
|
7574
|
+
*
|
|
7575
|
+
* @export
|
|
7576
|
+
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
7577
|
+
*/
|
|
7578
|
+
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
7663
7579
|
/**
|
|
7664
|
-
*
|
|
7665
|
-
* @type {
|
|
7666
|
-
* @memberof
|
|
7580
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7581
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
7582
|
+
* @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
7667
7583
|
*/
|
|
7668
|
-
|
|
7584
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
7669
7585
|
}
|
|
7670
|
-
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7671
|
-
readonly AUTOMATION: "automation";
|
|
7672
|
-
};
|
|
7673
|
-
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7674
7586
|
/**
|
|
7675
7587
|
*
|
|
7676
7588
|
* @export
|
|
7677
|
-
* @interface
|
|
7589
|
+
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
7678
7590
|
*/
|
|
7679
|
-
export interface
|
|
7591
|
+
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
7680
7592
|
/**
|
|
7681
7593
|
*
|
|
7682
|
-
* @type {
|
|
7683
|
-
* @memberof
|
|
7594
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
7595
|
+
* @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
7596
|
+
*/
|
|
7597
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
7598
|
+
}
|
|
7599
|
+
/**
|
|
7600
|
+
*
|
|
7601
|
+
* @export
|
|
7602
|
+
* @interface JsonApiAutomationPatchRelationshipsRecipients
|
|
7603
|
+
*/
|
|
7604
|
+
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
7605
|
+
/**
|
|
7606
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7607
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
7608
|
+
* @memberof JsonApiAutomationPatchRelationshipsRecipients
|
|
7684
7609
|
*/
|
|
7685
|
-
data:
|
|
7610
|
+
data: Array<JsonApiUserLinkage>;
|
|
7686
7611
|
}
|
|
7687
7612
|
/**
|
|
7688
7613
|
* @type JsonApiAutomationToOneLinkage
|
|
@@ -7819,23 +7744,10 @@ export interface JsonApiColorPaletteOutList {
|
|
|
7819
7744
|
links?: ListLinks;
|
|
7820
7745
|
/**
|
|
7821
7746
|
*
|
|
7822
|
-
* @type {
|
|
7747
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7823
7748
|
* @memberof JsonApiColorPaletteOutList
|
|
7824
7749
|
*/
|
|
7825
|
-
meta?:
|
|
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;
|
|
7750
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7839
7751
|
}
|
|
7840
7752
|
/**
|
|
7841
7753
|
*
|
|
@@ -7953,10 +7865,10 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
7953
7865
|
id: string;
|
|
7954
7866
|
/**
|
|
7955
7867
|
*
|
|
7956
|
-
* @type {
|
|
7868
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
7957
7869
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
7958
7870
|
*/
|
|
7959
|
-
attributes?:
|
|
7871
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
7960
7872
|
}
|
|
7961
7873
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
7962
7874
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -7995,15 +7907,34 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
7995
7907
|
id: string;
|
|
7996
7908
|
/**
|
|
7997
7909
|
*
|
|
7998
|
-
* @type {
|
|
7910
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
7999
7911
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
8000
7912
|
*/
|
|
8001
|
-
attributes?:
|
|
7913
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
8002
7914
|
}
|
|
8003
7915
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
8004
7916
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
8005
7917
|
};
|
|
8006
7918
|
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
|
+
}
|
|
8007
7938
|
/**
|
|
8008
7939
|
*
|
|
8009
7940
|
* @export
|
|
@@ -8043,34 +7974,15 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
8043
7974
|
id: string;
|
|
8044
7975
|
/**
|
|
8045
7976
|
*
|
|
8046
|
-
* @type {
|
|
7977
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
8047
7978
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
8048
7979
|
*/
|
|
8049
|
-
attributes?:
|
|
7980
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
8050
7981
|
}
|
|
8051
7982
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
8052
7983
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
8053
7984
|
};
|
|
8054
7985
|
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
|
-
}
|
|
8074
7986
|
/**
|
|
8075
7987
|
*
|
|
8076
7988
|
* @export
|
|
@@ -8207,10 +8119,10 @@ export interface JsonApiCspDirectiveOutList {
|
|
|
8207
8119
|
links?: ListLinks;
|
|
8208
8120
|
/**
|
|
8209
8121
|
*
|
|
8210
|
-
* @type {
|
|
8122
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8211
8123
|
* @memberof JsonApiCspDirectiveOutList
|
|
8212
8124
|
*/
|
|
8213
|
-
meta?:
|
|
8125
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8214
8126
|
}
|
|
8215
8127
|
/**
|
|
8216
8128
|
*
|
|
@@ -8322,34 +8234,15 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
8322
8234
|
id: string;
|
|
8323
8235
|
/**
|
|
8324
8236
|
*
|
|
8325
|
-
* @type {
|
|
8237
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
8326
8238
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
8327
8239
|
*/
|
|
8328
|
-
attributes:
|
|
8240
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
8329
8241
|
}
|
|
8330
8242
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
8331
8243
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8332
8244
|
};
|
|
8333
8245
|
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
|
-
}
|
|
8353
8246
|
/**
|
|
8354
8247
|
*
|
|
8355
8248
|
* @export
|
|
@@ -8389,15 +8282,34 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
8389
8282
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8390
8283
|
/**
|
|
8391
8284
|
*
|
|
8392
|
-
* @type {
|
|
8285
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
8393
8286
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
8394
8287
|
*/
|
|
8395
|
-
attributes:
|
|
8288
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
8396
8289
|
}
|
|
8397
8290
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
8398
8291
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
8399
8292
|
};
|
|
8400
8293
|
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
|
+
}
|
|
8401
8313
|
/**
|
|
8402
8314
|
*
|
|
8403
8315
|
* @export
|
|
@@ -8437,10 +8349,10 @@ export interface JsonApiCustomApplicationSettingOutList {
|
|
|
8437
8349
|
links?: ListLinks;
|
|
8438
8350
|
/**
|
|
8439
8351
|
*
|
|
8440
|
-
* @type {
|
|
8352
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8441
8353
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
8442
8354
|
*/
|
|
8443
|
-
meta?:
|
|
8355
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8444
8356
|
}
|
|
8445
8357
|
/**
|
|
8446
8358
|
*
|
|
@@ -8468,10 +8380,10 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
8468
8380
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8469
8381
|
/**
|
|
8470
8382
|
*
|
|
8471
|
-
* @type {
|
|
8383
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
8472
8384
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
8473
8385
|
*/
|
|
8474
|
-
attributes:
|
|
8386
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
8475
8387
|
/**
|
|
8476
8388
|
*
|
|
8477
8389
|
* @type {ObjectLinks}
|
|
@@ -8564,10 +8476,10 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
8564
8476
|
id?: string;
|
|
8565
8477
|
/**
|
|
8566
8478
|
*
|
|
8567
|
-
* @type {
|
|
8479
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
8568
8480
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
8569
8481
|
*/
|
|
8570
|
-
attributes:
|
|
8482
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
8571
8483
|
}
|
|
8572
8484
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
8573
8485
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -8606,52 +8518,15 @@ export interface JsonApiDashboardPluginIn {
|
|
|
8606
8518
|
id: string;
|
|
8607
8519
|
/**
|
|
8608
8520
|
*
|
|
8609
|
-
* @type {
|
|
8521
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
8610
8522
|
* @memberof JsonApiDashboardPluginIn
|
|
8611
8523
|
*/
|
|
8612
|
-
attributes?:
|
|
8524
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
8613
8525
|
}
|
|
8614
8526
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
8615
8527
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8616
8528
|
};
|
|
8617
8529
|
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
|
-
}
|
|
8655
8530
|
/**
|
|
8656
8531
|
*
|
|
8657
8532
|
* @export
|
|
@@ -8823,10 +8698,10 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
8823
8698
|
links?: ListLinks;
|
|
8824
8699
|
/**
|
|
8825
8700
|
*
|
|
8826
|
-
* @type {
|
|
8701
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8827
8702
|
* @memberof JsonApiDashboardPluginOutList
|
|
8828
8703
|
*/
|
|
8829
|
-
meta?:
|
|
8704
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8830
8705
|
/**
|
|
8831
8706
|
* Included resources
|
|
8832
8707
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -8920,15 +8795,52 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
8920
8795
|
id: string;
|
|
8921
8796
|
/**
|
|
8922
8797
|
*
|
|
8923
|
-
* @type {
|
|
8798
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
8924
8799
|
* @memberof JsonApiDashboardPluginPatch
|
|
8925
8800
|
*/
|
|
8926
|
-
attributes?:
|
|
8801
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
8927
8802
|
}
|
|
8928
8803
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
8929
8804
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8930
8805
|
};
|
|
8931
8806
|
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
|
+
}
|
|
8932
8844
|
/**
|
|
8933
8845
|
*
|
|
8934
8846
|
* @export
|
|
@@ -8962,10 +8874,10 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
8962
8874
|
id?: string;
|
|
8963
8875
|
/**
|
|
8964
8876
|
*
|
|
8965
|
-
* @type {
|
|
8877
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
8966
8878
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
8967
8879
|
*/
|
|
8968
|
-
attributes?:
|
|
8880
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
8969
8881
|
}
|
|
8970
8882
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
8971
8883
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -9111,10 +9023,10 @@ export interface JsonApiDataSourceIdentifierOutList {
|
|
|
9111
9023
|
links?: ListLinks;
|
|
9112
9024
|
/**
|
|
9113
9025
|
*
|
|
9114
|
-
* @type {
|
|
9026
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9115
9027
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
9116
9028
|
*/
|
|
9117
|
-
meta?:
|
|
9029
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9118
9030
|
}
|
|
9119
9031
|
/**
|
|
9120
9032
|
*
|
|
@@ -9536,10 +9448,10 @@ export interface JsonApiDataSourceOutList {
|
|
|
9536
9448
|
links?: ListLinks;
|
|
9537
9449
|
/**
|
|
9538
9450
|
*
|
|
9539
|
-
* @type {
|
|
9451
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9540
9452
|
* @memberof JsonApiDataSourceOutList
|
|
9541
9453
|
*/
|
|
9542
|
-
meta?:
|
|
9454
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9543
9455
|
}
|
|
9544
9456
|
/**
|
|
9545
9457
|
*
|
|
@@ -10100,10 +10012,10 @@ export interface JsonApiDatasetOutList {
|
|
|
10100
10012
|
links?: ListLinks;
|
|
10101
10013
|
/**
|
|
10102
10014
|
*
|
|
10103
|
-
* @type {
|
|
10015
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10104
10016
|
* @memberof JsonApiDatasetOutList
|
|
10105
10017
|
*/
|
|
10106
|
-
meta?:
|
|
10018
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10107
10019
|
/**
|
|
10108
10020
|
* Included resources
|
|
10109
10021
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -10295,10 +10207,10 @@ export interface JsonApiEntitlementOutList {
|
|
|
10295
10207
|
links?: ListLinks;
|
|
10296
10208
|
/**
|
|
10297
10209
|
*
|
|
10298
|
-
* @type {
|
|
10210
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10299
10211
|
* @memberof JsonApiEntitlementOutList
|
|
10300
10212
|
*/
|
|
10301
|
-
meta?:
|
|
10213
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10302
10214
|
}
|
|
10303
10215
|
/**
|
|
10304
10216
|
*
|
|
@@ -10355,58 +10267,21 @@ export interface JsonApiExportDefinitionIn {
|
|
|
10355
10267
|
id: string;
|
|
10356
10268
|
/**
|
|
10357
10269
|
*
|
|
10358
|
-
* @type {
|
|
10270
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
10359
10271
|
* @memberof JsonApiExportDefinitionIn
|
|
10360
10272
|
*/
|
|
10361
|
-
attributes?:
|
|
10273
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
10362
10274
|
/**
|
|
10363
10275
|
*
|
|
10364
|
-
* @type {
|
|
10276
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
10365
10277
|
* @memberof JsonApiExportDefinitionIn
|
|
10366
10278
|
*/
|
|
10367
|
-
relationships?:
|
|
10279
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
10368
10280
|
}
|
|
10369
10281
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
10370
10282
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10371
10283
|
};
|
|
10372
10284
|
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
|
-
}
|
|
10410
10285
|
/**
|
|
10411
10286
|
*
|
|
10412
10287
|
* @export
|
|
@@ -10420,25 +10295,6 @@ export interface JsonApiExportDefinitionInDocument {
|
|
|
10420
10295
|
*/
|
|
10421
10296
|
data: JsonApiExportDefinitionIn;
|
|
10422
10297
|
}
|
|
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
|
-
}
|
|
10442
10298
|
/**
|
|
10443
10299
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
10444
10300
|
* @export
|
|
@@ -10602,10 +10458,10 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
10602
10458
|
links?: ListLinks;
|
|
10603
10459
|
/**
|
|
10604
10460
|
*
|
|
10605
|
-
* @type {
|
|
10461
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10606
10462
|
* @memberof JsonApiExportDefinitionOutList
|
|
10607
10463
|
*/
|
|
10608
|
-
meta?:
|
|
10464
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10609
10465
|
/**
|
|
10610
10466
|
* Included resources
|
|
10611
10467
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -10627,10 +10483,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10627
10483
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10628
10484
|
/**
|
|
10629
10485
|
*
|
|
10630
|
-
* @type {
|
|
10486
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
10631
10487
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
10632
10488
|
*/
|
|
10633
|
-
analyticalDashboard?:
|
|
10489
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
10634
10490
|
/**
|
|
10635
10491
|
*
|
|
10636
10492
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -10743,21 +10599,58 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
10743
10599
|
id: string;
|
|
10744
10600
|
/**
|
|
10745
10601
|
*
|
|
10746
|
-
* @type {
|
|
10602
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
10747
10603
|
* @memberof JsonApiExportDefinitionPatch
|
|
10748
10604
|
*/
|
|
10749
|
-
attributes?:
|
|
10605
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
10750
10606
|
/**
|
|
10751
10607
|
*
|
|
10752
|
-
* @type {
|
|
10608
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
10753
10609
|
* @memberof JsonApiExportDefinitionPatch
|
|
10754
10610
|
*/
|
|
10755
|
-
relationships?:
|
|
10611
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
10756
10612
|
}
|
|
10757
10613
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
10758
10614
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10759
10615
|
};
|
|
10760
10616
|
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
|
+
}
|
|
10761
10654
|
/**
|
|
10762
10655
|
*
|
|
10763
10656
|
* @export
|
|
@@ -10771,6 +10664,25 @@ export interface JsonApiExportDefinitionPatchDocument {
|
|
|
10771
10664
|
*/
|
|
10772
10665
|
data: JsonApiExportDefinitionPatch;
|
|
10773
10666
|
}
|
|
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
|
+
}
|
|
10774
10686
|
/**
|
|
10775
10687
|
* JSON:API representation of exportDefinition entity.
|
|
10776
10688
|
* @export
|
|
@@ -10791,16 +10703,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
10791
10703
|
id?: string;
|
|
10792
10704
|
/**
|
|
10793
10705
|
*
|
|
10794
|
-
* @type {
|
|
10706
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
10795
10707
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10796
10708
|
*/
|
|
10797
|
-
attributes?:
|
|
10709
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
10798
10710
|
/**
|
|
10799
10711
|
*
|
|
10800
|
-
* @type {
|
|
10712
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
10801
10713
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10802
10714
|
*/
|
|
10803
|
-
relationships?:
|
|
10715
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
10804
10716
|
}
|
|
10805
10717
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
10806
10718
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -11020,10 +10932,10 @@ export interface JsonApiExportTemplateOutList {
|
|
|
11020
10932
|
links?: ListLinks;
|
|
11021
10933
|
/**
|
|
11022
10934
|
*
|
|
11023
|
-
* @type {
|
|
10935
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11024
10936
|
* @memberof JsonApiExportTemplateOutList
|
|
11025
10937
|
*/
|
|
11026
|
-
meta?:
|
|
10938
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11027
10939
|
}
|
|
11028
10940
|
/**
|
|
11029
10941
|
*
|
|
@@ -11348,10 +11260,10 @@ export interface JsonApiFactOutList {
|
|
|
11348
11260
|
links?: ListLinks;
|
|
11349
11261
|
/**
|
|
11350
11262
|
*
|
|
11351
|
-
* @type {
|
|
11263
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11352
11264
|
* @memberof JsonApiFactOutList
|
|
11353
11265
|
*/
|
|
11354
|
-
meta?:
|
|
11266
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11355
11267
|
/**
|
|
11356
11268
|
* Included resources
|
|
11357
11269
|
* @type {Array<JsonApiFactOutIncludes>}
|
|
@@ -11464,10 +11376,10 @@ export interface JsonApiFilterContextIn {
|
|
|
11464
11376
|
id: string;
|
|
11465
11377
|
/**
|
|
11466
11378
|
*
|
|
11467
|
-
* @type {
|
|
11379
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
11468
11380
|
* @memberof JsonApiFilterContextIn
|
|
11469
11381
|
*/
|
|
11470
|
-
attributes:
|
|
11382
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
11471
11383
|
}
|
|
11472
11384
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
11473
11385
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11529,27 +11441,64 @@ export interface JsonApiFilterContextOut {
|
|
|
11529
11441
|
id: string;
|
|
11530
11442
|
/**
|
|
11531
11443
|
*
|
|
11532
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
11533
|
-
* @memberof JsonApiFilterContextOut
|
|
11444
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
11445
|
+
* @memberof JsonApiFilterContextOut
|
|
11446
|
+
*/
|
|
11447
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11448
|
+
/**
|
|
11449
|
+
*
|
|
11450
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
11451
|
+
* @memberof JsonApiFilterContextOut
|
|
11452
|
+
*/
|
|
11453
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
11454
|
+
/**
|
|
11455
|
+
*
|
|
11456
|
+
* @type {JsonApiFilterContextOutRelationships}
|
|
11457
|
+
* @memberof JsonApiFilterContextOut
|
|
11458
|
+
*/
|
|
11459
|
+
relationships?: JsonApiFilterContextOutRelationships;
|
|
11460
|
+
}
|
|
11461
|
+
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
11462
|
+
readonly FILTER_CONTEXT: "filterContext";
|
|
11463
|
+
};
|
|
11464
|
+
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
|
|
11534
11487
|
*/
|
|
11535
|
-
|
|
11488
|
+
tags?: Array<string>;
|
|
11536
11489
|
/**
|
|
11537
11490
|
*
|
|
11538
|
-
* @type {
|
|
11539
|
-
* @memberof
|
|
11491
|
+
* @type {boolean}
|
|
11492
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
11540
11493
|
*/
|
|
11541
|
-
|
|
11494
|
+
areRelationsValid?: boolean;
|
|
11542
11495
|
/**
|
|
11543
|
-
*
|
|
11544
|
-
* @type {
|
|
11545
|
-
* @memberof
|
|
11496
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
11497
|
+
* @type {object}
|
|
11498
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
11546
11499
|
*/
|
|
11547
|
-
|
|
11500
|
+
content: object;
|
|
11548
11501
|
}
|
|
11549
|
-
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
11550
|
-
readonly FILTER_CONTEXT: "filterContext";
|
|
11551
|
-
};
|
|
11552
|
-
export type JsonApiFilterContextOutTypeEnum = typeof JsonApiFilterContextOutTypeEnum[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
11553
11502
|
/**
|
|
11554
11503
|
*
|
|
11555
11504
|
* @export
|
|
@@ -11600,10 +11549,10 @@ export interface JsonApiFilterContextOutList {
|
|
|
11600
11549
|
links?: ListLinks;
|
|
11601
11550
|
/**
|
|
11602
11551
|
*
|
|
11603
|
-
* @type {
|
|
11552
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11604
11553
|
* @memberof JsonApiFilterContextOutList
|
|
11605
11554
|
*/
|
|
11606
|
-
meta?:
|
|
11555
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11607
11556
|
/**
|
|
11608
11557
|
* Included resources
|
|
11609
11558
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -11662,10 +11611,10 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
11662
11611
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11663
11612
|
/**
|
|
11664
11613
|
*
|
|
11665
|
-
* @type {
|
|
11614
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
11666
11615
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
11667
11616
|
*/
|
|
11668
|
-
attributes:
|
|
11617
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
11669
11618
|
/**
|
|
11670
11619
|
*
|
|
11671
11620
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11745,10 +11694,10 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
11745
11694
|
id?: string;
|
|
11746
11695
|
/**
|
|
11747
11696
|
*
|
|
11748
|
-
* @type {
|
|
11697
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
11749
11698
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
11750
11699
|
*/
|
|
11751
|
-
attributes:
|
|
11700
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
11752
11701
|
}
|
|
11753
11702
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
11754
11703
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11787,64 +11736,21 @@ export interface JsonApiFilterViewIn {
|
|
|
11787
11736
|
id: string;
|
|
11788
11737
|
/**
|
|
11789
11738
|
*
|
|
11790
|
-
* @type {
|
|
11739
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
11791
11740
|
* @memberof JsonApiFilterViewIn
|
|
11792
11741
|
*/
|
|
11793
|
-
attributes:
|
|
11742
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
11794
11743
|
/**
|
|
11795
11744
|
*
|
|
11796
|
-
* @type {
|
|
11745
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11797
11746
|
* @memberof JsonApiFilterViewIn
|
|
11798
11747
|
*/
|
|
11799
|
-
relationships?:
|
|
11748
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11800
11749
|
}
|
|
11801
11750
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11802
11751
|
readonly FILTER_VIEW: "filterView";
|
|
11803
11752
|
};
|
|
11804
11753
|
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
|
-
}
|
|
11848
11754
|
/**
|
|
11849
11755
|
*
|
|
11850
11756
|
* @export
|
|
@@ -11858,38 +11764,6 @@ export interface JsonApiFilterViewInDocument {
|
|
|
11858
11764
|
*/
|
|
11859
11765
|
data: JsonApiFilterViewIn;
|
|
11860
11766
|
}
|
|
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
|
-
}
|
|
11893
11767
|
/**
|
|
11894
11768
|
* JSON:API representation of filterView entity.
|
|
11895
11769
|
* @export
|
|
@@ -11910,21 +11784,64 @@ export interface JsonApiFilterViewOut {
|
|
|
11910
11784
|
id: string;
|
|
11911
11785
|
/**
|
|
11912
11786
|
*
|
|
11913
|
-
* @type {
|
|
11787
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
11914
11788
|
* @memberof JsonApiFilterViewOut
|
|
11915
11789
|
*/
|
|
11916
|
-
attributes:
|
|
11790
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
11917
11791
|
/**
|
|
11918
11792
|
*
|
|
11919
|
-
* @type {
|
|
11793
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11920
11794
|
* @memberof JsonApiFilterViewOut
|
|
11921
11795
|
*/
|
|
11922
|
-
relationships?:
|
|
11796
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11923
11797
|
}
|
|
11924
11798
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11925
11799
|
readonly FILTER_VIEW: "filterView";
|
|
11926
11800
|
};
|
|
11927
11801
|
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
|
+
}
|
|
11928
11845
|
/**
|
|
11929
11846
|
*
|
|
11930
11847
|
* @export
|
|
@@ -11975,10 +11892,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
11975
11892
|
links?: ListLinks;
|
|
11976
11893
|
/**
|
|
11977
11894
|
*
|
|
11978
|
-
* @type {
|
|
11895
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11979
11896
|
* @memberof JsonApiFilterViewOutList
|
|
11980
11897
|
*/
|
|
11981
|
-
meta?:
|
|
11898
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11982
11899
|
/**
|
|
11983
11900
|
* Included resources
|
|
11984
11901
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -12006,16 +11923,16 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
12006
11923
|
id: string;
|
|
12007
11924
|
/**
|
|
12008
11925
|
*
|
|
12009
|
-
* @type {
|
|
11926
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
12010
11927
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
12011
11928
|
*/
|
|
12012
|
-
attributes:
|
|
11929
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
12013
11930
|
/**
|
|
12014
11931
|
*
|
|
12015
|
-
* @type {
|
|
11932
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
12016
11933
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
12017
11934
|
*/
|
|
12018
|
-
relationships?:
|
|
11935
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
12019
11936
|
/**
|
|
12020
11937
|
*
|
|
12021
11938
|
* @type {ObjectLinks}
|
|
@@ -12053,10 +11970,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
12053
11970
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
12054
11971
|
/**
|
|
12055
11972
|
*
|
|
12056
|
-
* @type {
|
|
11973
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
12057
11974
|
* @memberof JsonApiFilterViewPatch
|
|
12058
11975
|
*/
|
|
12059
|
-
relationships?:
|
|
11976
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
12060
11977
|
}
|
|
12061
11978
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
12062
11979
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -12118,6 +12035,25 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
12118
12035
|
*/
|
|
12119
12036
|
data: JsonApiFilterViewPatch;
|
|
12120
12037
|
}
|
|
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
|
+
}
|
|
12121
12057
|
/**
|
|
12122
12058
|
* JSON:API representation of identityProvider entity.
|
|
12123
12059
|
* @export
|
|
@@ -12138,98 +12074,15 @@ export interface JsonApiIdentityProviderIn {
|
|
|
12138
12074
|
id: string;
|
|
12139
12075
|
/**
|
|
12140
12076
|
*
|
|
12141
|
-
* @type {
|
|
12077
|
+
* @type {JsonApiIdentityProviderPatchAttributes}
|
|
12142
12078
|
* @memberof JsonApiIdentityProviderIn
|
|
12143
12079
|
*/
|
|
12144
|
-
attributes?:
|
|
12080
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
12145
12081
|
}
|
|
12146
12082
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
12147
12083
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
12148
12084
|
};
|
|
12149
12085
|
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];
|
|
12233
12086
|
/**
|
|
12234
12087
|
*
|
|
12235
12088
|
* @export
|
|
@@ -12405,10 +12258,10 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
12405
12258
|
links?: ListLinks;
|
|
12406
12259
|
/**
|
|
12407
12260
|
*
|
|
12408
|
-
* @type {
|
|
12261
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12409
12262
|
* @memberof JsonApiIdentityProviderOutList
|
|
12410
12263
|
*/
|
|
12411
|
-
meta?:
|
|
12264
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12412
12265
|
}
|
|
12413
12266
|
/**
|
|
12414
12267
|
*
|
|
@@ -12462,18 +12315,101 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
12462
12315
|
* @type {string}
|
|
12463
12316
|
* @memberof JsonApiIdentityProviderPatch
|
|
12464
12317
|
*/
|
|
12465
|
-
id: string;
|
|
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.
|
|
12370
|
+
* @type {string}
|
|
12371
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12372
|
+
*/
|
|
12373
|
+
oauthIssuerLocation?: string;
|
|
12374
|
+
/**
|
|
12375
|
+
* 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.
|
|
12376
|
+
* @type {string}
|
|
12377
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12378
|
+
*/
|
|
12379
|
+
oauthIssuerId?: string;
|
|
12380
|
+
/**
|
|
12381
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
12382
|
+
* @type {string}
|
|
12383
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12384
|
+
*/
|
|
12385
|
+
oauthSubjectIdClaim?: string;
|
|
12386
|
+
/**
|
|
12387
|
+
* 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.
|
|
12388
|
+
* @type {{ [key: string]: string; }}
|
|
12389
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12390
|
+
*/
|
|
12391
|
+
oauthCustomAuthAttributes?: {
|
|
12392
|
+
[key: string]: string;
|
|
12393
|
+
};
|
|
12394
|
+
/**
|
|
12395
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
12396
|
+
* @type {Array<string>}
|
|
12397
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12398
|
+
*/
|
|
12399
|
+
oauthCustomScopes?: Array<string> | null;
|
|
12466
12400
|
/**
|
|
12467
|
-
*
|
|
12468
|
-
* @type {
|
|
12469
|
-
* @memberof
|
|
12401
|
+
* 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.
|
|
12402
|
+
* @type {string}
|
|
12403
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
12470
12404
|
*/
|
|
12471
|
-
|
|
12405
|
+
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
12472
12406
|
}
|
|
12473
|
-
export declare const
|
|
12474
|
-
readonly
|
|
12407
|
+
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
12408
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
12409
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
12410
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
12475
12411
|
};
|
|
12476
|
-
export type
|
|
12412
|
+
export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
12477
12413
|
/**
|
|
12478
12414
|
*
|
|
12479
12415
|
* @export
|
|
@@ -12616,10 +12552,10 @@ export interface JsonApiJwkOutList {
|
|
|
12616
12552
|
links?: ListLinks;
|
|
12617
12553
|
/**
|
|
12618
12554
|
*
|
|
12619
|
-
* @type {
|
|
12555
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12620
12556
|
* @memberof JsonApiJwkOutList
|
|
12621
12557
|
*/
|
|
12622
|
-
meta?:
|
|
12558
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12623
12559
|
}
|
|
12624
12560
|
/**
|
|
12625
12561
|
*
|
|
@@ -12881,10 +12817,10 @@ export interface JsonApiLabelOutList {
|
|
|
12881
12817
|
links?: ListLinks;
|
|
12882
12818
|
/**
|
|
12883
12819
|
*
|
|
12884
|
-
* @type {
|
|
12820
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12885
12821
|
* @memberof JsonApiLabelOutList
|
|
12886
12822
|
*/
|
|
12887
|
-
meta?:
|
|
12823
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12888
12824
|
/**
|
|
12889
12825
|
* Included resources
|
|
12890
12826
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -13171,10 +13107,10 @@ export interface JsonApiLlmEndpointOutList {
|
|
|
13171
13107
|
links?: ListLinks;
|
|
13172
13108
|
/**
|
|
13173
13109
|
*
|
|
13174
|
-
* @type {
|
|
13110
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13175
13111
|
* @memberof JsonApiLlmEndpointOutList
|
|
13176
13112
|
*/
|
|
13177
|
-
meta?:
|
|
13113
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13178
13114
|
}
|
|
13179
13115
|
/**
|
|
13180
13116
|
*
|
|
@@ -13321,52 +13257,15 @@ export interface JsonApiMetricIn {
|
|
|
13321
13257
|
id: string;
|
|
13322
13258
|
/**
|
|
13323
13259
|
*
|
|
13324
|
-
* @type {
|
|
13260
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
13325
13261
|
* @memberof JsonApiMetricIn
|
|
13326
13262
|
*/
|
|
13327
|
-
attributes:
|
|
13263
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
13328
13264
|
}
|
|
13329
13265
|
export declare const JsonApiMetricInTypeEnum: {
|
|
13330
13266
|
readonly METRIC: "metric";
|
|
13331
13267
|
};
|
|
13332
13268
|
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
|
-
}
|
|
13370
13269
|
/**
|
|
13371
13270
|
*
|
|
13372
13271
|
* @export
|
|
@@ -13562,10 +13461,10 @@ export interface JsonApiMetricOutList {
|
|
|
13562
13461
|
links?: ListLinks;
|
|
13563
13462
|
/**
|
|
13564
13463
|
*
|
|
13565
|
-
* @type {
|
|
13464
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13566
13465
|
* @memberof JsonApiMetricOutList
|
|
13567
13466
|
*/
|
|
13568
|
-
meta?:
|
|
13467
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13569
13468
|
/**
|
|
13570
13469
|
* Included resources
|
|
13571
13470
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -13719,15 +13618,52 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
13719
13618
|
id?: string;
|
|
13720
13619
|
/**
|
|
13721
13620
|
*
|
|
13722
|
-
* @type {
|
|
13621
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
13723
13622
|
* @memberof JsonApiMetricPostOptionalId
|
|
13724
13623
|
*/
|
|
13725
|
-
attributes:
|
|
13624
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
13726
13625
|
}
|
|
13727
13626
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
13728
13627
|
readonly METRIC: "metric";
|
|
13729
13628
|
};
|
|
13730
13629
|
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
|
+
}
|
|
13731
13667
|
/**
|
|
13732
13668
|
*
|
|
13733
13669
|
* @export
|
|
@@ -13853,10 +13789,10 @@ export interface JsonApiNotificationChannelIdentifierOutList {
|
|
|
13853
13789
|
links?: ListLinks;
|
|
13854
13790
|
/**
|
|
13855
13791
|
*
|
|
13856
|
-
* @type {
|
|
13792
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13857
13793
|
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
13858
13794
|
*/
|
|
13859
|
-
meta?:
|
|
13795
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13860
13796
|
}
|
|
13861
13797
|
/**
|
|
13862
13798
|
*
|
|
@@ -13913,10 +13849,10 @@ export interface JsonApiNotificationChannelIn {
|
|
|
13913
13849
|
id: string;
|
|
13914
13850
|
/**
|
|
13915
13851
|
*
|
|
13916
|
-
* @type {
|
|
13852
|
+
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
13917
13853
|
* @memberof JsonApiNotificationChannelIn
|
|
13918
13854
|
*/
|
|
13919
|
-
attributes?:
|
|
13855
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
13920
13856
|
}
|
|
13921
13857
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
13922
13858
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -14111,10 +14047,10 @@ export interface JsonApiNotificationChannelOutList {
|
|
|
14111
14047
|
links?: ListLinks;
|
|
14112
14048
|
/**
|
|
14113
14049
|
*
|
|
14114
|
-
* @type {
|
|
14050
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14115
14051
|
* @memberof JsonApiNotificationChannelOutList
|
|
14116
14052
|
*/
|
|
14117
|
-
meta?:
|
|
14053
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14118
14054
|
}
|
|
14119
14055
|
/**
|
|
14120
14056
|
*
|
|
@@ -14171,10 +14107,10 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
14171
14107
|
id: string;
|
|
14172
14108
|
/**
|
|
14173
14109
|
*
|
|
14174
|
-
* @type {
|
|
14110
|
+
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
14175
14111
|
* @memberof JsonApiNotificationChannelPatch
|
|
14176
14112
|
*/
|
|
14177
|
-
attributes?:
|
|
14113
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
14178
14114
|
}
|
|
14179
14115
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
14180
14116
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -14183,117 +14119,117 @@ export type JsonApiNotificationChannelPatchTypeEnum = typeof JsonApiNotification
|
|
|
14183
14119
|
/**
|
|
14184
14120
|
*
|
|
14185
14121
|
* @export
|
|
14186
|
-
* @interface
|
|
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
|
|
14122
|
+
* @interface JsonApiNotificationChannelPatchAttributes
|
|
14229
14123
|
*/
|
|
14230
|
-
export interface
|
|
14124
|
+
export interface JsonApiNotificationChannelPatchAttributes {
|
|
14231
14125
|
/**
|
|
14232
14126
|
*
|
|
14233
14127
|
* @type {string}
|
|
14234
|
-
* @memberof
|
|
14128
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14235
14129
|
*/
|
|
14236
14130
|
name?: string | null;
|
|
14237
14131
|
/**
|
|
14238
14132
|
*
|
|
14239
14133
|
* @type {string}
|
|
14240
|
-
* @memberof
|
|
14134
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14241
14135
|
*/
|
|
14242
14136
|
description?: string | null;
|
|
14243
14137
|
/**
|
|
14244
14138
|
* The destination where the notifications are to be sent.
|
|
14245
14139
|
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
14246
|
-
* @memberof
|
|
14140
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14247
14141
|
*/
|
|
14248
14142
|
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
14249
14143
|
/**
|
|
14250
14144
|
* 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}
|
|
14251
14145
|
* @type {string}
|
|
14252
|
-
* @memberof
|
|
14146
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14253
14147
|
*/
|
|
14254
14148
|
customDashboardUrl?: string;
|
|
14255
14149
|
/**
|
|
14256
14150
|
* 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
|
|
14257
14151
|
* @type {string}
|
|
14258
|
-
* @memberof
|
|
14152
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14259
14153
|
*/
|
|
14260
|
-
dashboardLinkVisibility?:
|
|
14154
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
14261
14155
|
/**
|
|
14262
14156
|
* 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}}
|
|
14263
14157
|
* @type {string}
|
|
14264
|
-
* @memberof
|
|
14158
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14265
14159
|
*/
|
|
14266
14160
|
notificationSource?: string;
|
|
14267
14161
|
/**
|
|
14268
14162
|
* 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
|
|
14269
14163
|
* @type {string}
|
|
14270
|
-
* @memberof
|
|
14164
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14271
14165
|
*/
|
|
14272
|
-
allowedRecipients?:
|
|
14166
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
14273
14167
|
/**
|
|
14274
14168
|
* 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
|
|
14275
14169
|
* @type {string}
|
|
14276
|
-
* @memberof
|
|
14170
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
14277
14171
|
*/
|
|
14278
|
-
inPlatformNotification?:
|
|
14172
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
14279
14173
|
}
|
|
14280
|
-
export declare const
|
|
14174
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
14281
14175
|
readonly HIDDEN: "HIDDEN";
|
|
14282
14176
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
14283
14177
|
readonly ALL: "ALL";
|
|
14284
14178
|
};
|
|
14285
|
-
export type
|
|
14286
|
-
export declare const
|
|
14179
|
+
export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
14180
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
14287
14181
|
readonly CREATOR: "CREATOR";
|
|
14288
14182
|
readonly INTERNAL: "INTERNAL";
|
|
14289
14183
|
readonly EXTERNAL: "EXTERNAL";
|
|
14290
14184
|
};
|
|
14291
|
-
export type
|
|
14292
|
-
export declare const
|
|
14185
|
+
export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
14186
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
14293
14187
|
readonly DISABLED: "DISABLED";
|
|
14294
14188
|
readonly ENABLED: "ENABLED";
|
|
14295
14189
|
};
|
|
14296
|
-
export type
|
|
14190
|
+
export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
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];
|
|
14297
14233
|
/**
|
|
14298
14234
|
*
|
|
14299
14235
|
* @export
|
|
@@ -14564,22 +14500,61 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
14564
14500
|
export interface JsonApiOrganizationOutRelationships {
|
|
14565
14501
|
/**
|
|
14566
14502
|
*
|
|
14567
|
-
* @type {
|
|
14503
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
14568
14504
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14569
14505
|
*/
|
|
14570
|
-
bootstrapUser?:
|
|
14506
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
14571
14507
|
/**
|
|
14572
14508
|
*
|
|
14573
|
-
* @type {
|
|
14509
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
14574
14510
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14575
14511
|
*/
|
|
14576
|
-
bootstrapUserGroup?:
|
|
14512
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14577
14513
|
/**
|
|
14578
14514
|
*
|
|
14579
|
-
* @type {
|
|
14515
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
14580
14516
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14581
14517
|
*/
|
|
14582
|
-
identityProvider?:
|
|
14518
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
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;
|
|
14583
14558
|
}
|
|
14584
14559
|
/**
|
|
14585
14560
|
* JSON:API representation of patching organization entity.
|
|
@@ -14719,23 +14694,10 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
14719
14694
|
export interface JsonApiOrganizationPatchRelationships {
|
|
14720
14695
|
/**
|
|
14721
14696
|
*
|
|
14722
|
-
* @type {
|
|
14697
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
14723
14698
|
* @memberof JsonApiOrganizationPatchRelationships
|
|
14724
14699
|
*/
|
|
14725
|
-
identityProvider?:
|
|
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;
|
|
14700
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
14739
14701
|
}
|
|
14740
14702
|
/**
|
|
14741
14703
|
* JSON:API representation of organizationSetting entity.
|
|
@@ -14757,10 +14719,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
14757
14719
|
id: string;
|
|
14758
14720
|
/**
|
|
14759
14721
|
*
|
|
14760
|
-
* @type {
|
|
14722
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14761
14723
|
* @memberof JsonApiOrganizationSettingIn
|
|
14762
14724
|
*/
|
|
14763
|
-
attributes?:
|
|
14725
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14764
14726
|
}
|
|
14765
14727
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
14766
14728
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14781,80 +14743,33 @@ export interface JsonApiOrganizationSettingInDocument {
|
|
|
14781
14743
|
}
|
|
14782
14744
|
/**
|
|
14783
14745
|
* JSON:API representation of organizationSetting entity.
|
|
14784
|
-
* @export
|
|
14785
|
-
* @interface JsonApiOrganizationSettingOut
|
|
14786
|
-
*/
|
|
14787
|
-
export interface JsonApiOrganizationSettingOut {
|
|
14788
|
-
/**
|
|
14789
|
-
* Object type
|
|
14790
|
-
* @type {string}
|
|
14791
|
-
* @memberof JsonApiOrganizationSettingOut
|
|
14792
|
-
*/
|
|
14793
|
-
type: JsonApiOrganizationSettingOutTypeEnum;
|
|
14794
|
-
/**
|
|
14795
|
-
* API identifier of an object
|
|
14796
|
-
* @type {string}
|
|
14797
|
-
* @memberof JsonApiOrganizationSettingOut
|
|
14798
|
-
*/
|
|
14799
|
-
id: string;
|
|
14800
|
-
/**
|
|
14801
|
-
*
|
|
14802
|
-
* @type {
|
|
14803
|
-
* @memberof JsonApiOrganizationSettingOut
|
|
14804
|
-
*/
|
|
14805
|
-
attributes?:
|
|
14806
|
-
}
|
|
14807
|
-
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14808
|
-
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
14809
|
-
};
|
|
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";
|
|
14746
|
+
* @export
|
|
14747
|
+
* @interface JsonApiOrganizationSettingOut
|
|
14748
|
+
*/
|
|
14749
|
+
export interface JsonApiOrganizationSettingOut {
|
|
14750
|
+
/**
|
|
14751
|
+
* Object type
|
|
14752
|
+
* @type {string}
|
|
14753
|
+
* @memberof JsonApiOrganizationSettingOut
|
|
14754
|
+
*/
|
|
14755
|
+
type: JsonApiOrganizationSettingOutTypeEnum;
|
|
14756
|
+
/**
|
|
14757
|
+
* API identifier of an object
|
|
14758
|
+
* @type {string}
|
|
14759
|
+
* @memberof JsonApiOrganizationSettingOut
|
|
14760
|
+
*/
|
|
14761
|
+
id: string;
|
|
14762
|
+
/**
|
|
14763
|
+
*
|
|
14764
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14765
|
+
* @memberof JsonApiOrganizationSettingOut
|
|
14766
|
+
*/
|
|
14767
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14768
|
+
}
|
|
14769
|
+
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14770
|
+
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
14856
14771
|
};
|
|
14857
|
-
export type
|
|
14772
|
+
export type JsonApiOrganizationSettingOutTypeEnum = typeof JsonApiOrganizationSettingOutTypeEnum[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
14858
14773
|
/**
|
|
14859
14774
|
*
|
|
14860
14775
|
* @export
|
|
@@ -14894,10 +14809,10 @@ export interface JsonApiOrganizationSettingOutList {
|
|
|
14894
14809
|
links?: ListLinks;
|
|
14895
14810
|
/**
|
|
14896
14811
|
*
|
|
14897
|
-
* @type {
|
|
14812
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14898
14813
|
* @memberof JsonApiOrganizationSettingOutList
|
|
14899
14814
|
*/
|
|
14900
|
-
meta?:
|
|
14815
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14901
14816
|
}
|
|
14902
14817
|
/**
|
|
14903
14818
|
*
|
|
@@ -14919,10 +14834,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
14919
14834
|
id: string;
|
|
14920
14835
|
/**
|
|
14921
14836
|
*
|
|
14922
|
-
* @type {
|
|
14837
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14923
14838
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
14924
14839
|
*/
|
|
14925
|
-
attributes?:
|
|
14840
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14926
14841
|
/**
|
|
14927
14842
|
*
|
|
14928
14843
|
* @type {ObjectLinks}
|
|
@@ -14954,10 +14869,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
14954
14869
|
id: string;
|
|
14955
14870
|
/**
|
|
14956
14871
|
*
|
|
14957
|
-
* @type {
|
|
14872
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14958
14873
|
* @memberof JsonApiOrganizationSettingPatch
|
|
14959
14874
|
*/
|
|
14960
|
-
attributes?:
|
|
14875
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14961
14876
|
}
|
|
14962
14877
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
14963
14878
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15086,10 +15001,10 @@ export interface JsonApiThemeOutList {
|
|
|
15086
15001
|
links?: ListLinks;
|
|
15087
15002
|
/**
|
|
15088
15003
|
*
|
|
15089
|
-
* @type {
|
|
15004
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15090
15005
|
* @memberof JsonApiThemeOutList
|
|
15091
15006
|
*/
|
|
15092
|
-
meta?:
|
|
15007
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15093
15008
|
}
|
|
15094
15009
|
/**
|
|
15095
15010
|
*
|
|
@@ -15188,58 +15103,21 @@ export interface JsonApiUserDataFilterIn {
|
|
|
15188
15103
|
id: string;
|
|
15189
15104
|
/**
|
|
15190
15105
|
*
|
|
15191
|
-
* @type {
|
|
15106
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
15192
15107
|
* @memberof JsonApiUserDataFilterIn
|
|
15193
15108
|
*/
|
|
15194
|
-
attributes:
|
|
15109
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
15195
15110
|
/**
|
|
15196
15111
|
*
|
|
15197
|
-
* @type {
|
|
15112
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
15198
15113
|
* @memberof JsonApiUserDataFilterIn
|
|
15199
15114
|
*/
|
|
15200
|
-
relationships?:
|
|
15115
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
15201
15116
|
}
|
|
15202
15117
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
15203
15118
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15204
15119
|
};
|
|
15205
15120
|
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
|
-
}
|
|
15243
15121
|
/**
|
|
15244
15122
|
*
|
|
15245
15123
|
* @export
|
|
@@ -15253,38 +15131,6 @@ export interface JsonApiUserDataFilterInDocument {
|
|
|
15253
15131
|
*/
|
|
15254
15132
|
data: JsonApiUserDataFilterIn;
|
|
15255
15133
|
}
|
|
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
|
-
}
|
|
15288
15134
|
/**
|
|
15289
15135
|
* JSON:API representation of userDataFilter entity.
|
|
15290
15136
|
* @export
|
|
@@ -15311,10 +15157,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
15311
15157
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15312
15158
|
/**
|
|
15313
15159
|
*
|
|
15314
|
-
* @type {
|
|
15160
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
15315
15161
|
* @memberof JsonApiUserDataFilterOut
|
|
15316
15162
|
*/
|
|
15317
|
-
attributes:
|
|
15163
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
15318
15164
|
/**
|
|
15319
15165
|
*
|
|
15320
15166
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15326,6 +15172,43 @@ export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
|
15326
15172
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
15327
15173
|
};
|
|
15328
15174
|
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
|
+
}
|
|
15329
15212
|
/**
|
|
15330
15213
|
*
|
|
15331
15214
|
* @export
|
|
@@ -15376,10 +15259,10 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
15376
15259
|
links?: ListLinks;
|
|
15377
15260
|
/**
|
|
15378
15261
|
*
|
|
15379
|
-
* @type {
|
|
15262
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15380
15263
|
* @memberof JsonApiUserDataFilterOutList
|
|
15381
15264
|
*/
|
|
15382
|
-
meta?:
|
|
15265
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15383
15266
|
/**
|
|
15384
15267
|
* Included resources
|
|
15385
15268
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -15395,16 +15278,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
15395
15278
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
15396
15279
|
/**
|
|
15397
15280
|
*
|
|
15398
|
-
* @type {
|
|
15281
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
15399
15282
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
15400
15283
|
*/
|
|
15401
|
-
user?:
|
|
15284
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
15402
15285
|
/**
|
|
15403
15286
|
*
|
|
15404
|
-
* @type {
|
|
15287
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
15405
15288
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
15406
15289
|
*/
|
|
15407
|
-
userGroup?:
|
|
15290
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
15408
15291
|
/**
|
|
15409
15292
|
*
|
|
15410
15293
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -15462,10 +15345,10 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
15462
15345
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
15463
15346
|
/**
|
|
15464
15347
|
*
|
|
15465
|
-
* @type {
|
|
15348
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
15466
15349
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
15467
15350
|
*/
|
|
15468
|
-
attributes:
|
|
15351
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
15469
15352
|
/**
|
|
15470
15353
|
*
|
|
15471
15354
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -15509,10 +15392,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
15509
15392
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
15510
15393
|
/**
|
|
15511
15394
|
*
|
|
15512
|
-
* @type {
|
|
15395
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
15513
15396
|
* @memberof JsonApiUserDataFilterPatch
|
|
15514
15397
|
*/
|
|
15515
|
-
relationships?:
|
|
15398
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
15516
15399
|
}
|
|
15517
15400
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
15518
15401
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15568,6 +15451,25 @@ export interface JsonApiUserDataFilterPatchDocument {
|
|
|
15568
15451
|
*/
|
|
15569
15452
|
data: JsonApiUserDataFilterPatch;
|
|
15570
15453
|
}
|
|
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
|
+
}
|
|
15571
15473
|
/**
|
|
15572
15474
|
* JSON:API representation of userDataFilter entity.
|
|
15573
15475
|
* @export
|
|
@@ -15588,16 +15490,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
15588
15490
|
id?: string;
|
|
15589
15491
|
/**
|
|
15590
15492
|
*
|
|
15591
|
-
* @type {
|
|
15493
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
15592
15494
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15593
15495
|
*/
|
|
15594
|
-
attributes:
|
|
15496
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
15595
15497
|
/**
|
|
15596
15498
|
*
|
|
15597
|
-
* @type {
|
|
15499
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
15598
15500
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15599
15501
|
*/
|
|
15600
|
-
relationships?:
|
|
15502
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
15601
15503
|
}
|
|
15602
15504
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
15603
15505
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15780,10 +15682,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
15780
15682
|
links?: ListLinks;
|
|
15781
15683
|
/**
|
|
15782
15684
|
*
|
|
15783
|
-
* @type {
|
|
15685
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15784
15686
|
* @memberof JsonApiUserGroupOutList
|
|
15785
15687
|
*/
|
|
15786
|
-
meta?:
|
|
15688
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15787
15689
|
/**
|
|
15788
15690
|
* Included resources
|
|
15789
15691
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -15799,23 +15701,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
15799
15701
|
export interface JsonApiUserGroupOutRelationships {
|
|
15800
15702
|
/**
|
|
15801
15703
|
*
|
|
15802
|
-
* @type {
|
|
15704
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
15803
15705
|
* @memberof JsonApiUserGroupOutRelationships
|
|
15804
15706
|
*/
|
|
15805
|
-
parents?:
|
|
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>;
|
|
15707
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
15819
15708
|
}
|
|
15820
15709
|
/**
|
|
15821
15710
|
*
|
|
@@ -16028,10 +15917,10 @@ export interface JsonApiUserIdentifierOutList {
|
|
|
16028
15917
|
links?: ListLinks;
|
|
16029
15918
|
/**
|
|
16030
15919
|
*
|
|
16031
|
-
* @type {
|
|
15920
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16032
15921
|
* @memberof JsonApiUserIdentifierOutList
|
|
16033
15922
|
*/
|
|
16034
|
-
meta?:
|
|
15923
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16035
15924
|
}
|
|
16036
15925
|
/**
|
|
16037
15926
|
*
|
|
@@ -16256,10 +16145,10 @@ export interface JsonApiUserOutList {
|
|
|
16256
16145
|
links?: ListLinks;
|
|
16257
16146
|
/**
|
|
16258
16147
|
*
|
|
16259
|
-
* @type {
|
|
16148
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16260
16149
|
* @memberof JsonApiUserOutList
|
|
16261
16150
|
*/
|
|
16262
|
-
meta?:
|
|
16151
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16263
16152
|
/**
|
|
16264
16153
|
* Included resources
|
|
16265
16154
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -16275,10 +16164,23 @@ export interface JsonApiUserOutList {
|
|
|
16275
16164
|
export interface JsonApiUserOutRelationships {
|
|
16276
16165
|
/**
|
|
16277
16166
|
*
|
|
16278
|
-
* @type {
|
|
16167
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
16279
16168
|
* @memberof JsonApiUserOutRelationships
|
|
16280
16169
|
*/
|
|
16281
|
-
userGroups?:
|
|
16170
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
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>;
|
|
16282
16184
|
}
|
|
16283
16185
|
/**
|
|
16284
16186
|
*
|
|
@@ -16389,15 +16291,62 @@ export interface JsonApiUserSettingIn {
|
|
|
16389
16291
|
id: string;
|
|
16390
16292
|
/**
|
|
16391
16293
|
*
|
|
16392
|
-
* @type {
|
|
16294
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
16393
16295
|
* @memberof JsonApiUserSettingIn
|
|
16394
16296
|
*/
|
|
16395
|
-
attributes?:
|
|
16297
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
16396
16298
|
}
|
|
16397
16299
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
16398
16300
|
readonly USER_SETTING: "userSetting";
|
|
16399
16301
|
};
|
|
16400
16302
|
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];
|
|
16401
16350
|
/**
|
|
16402
16351
|
*
|
|
16403
16352
|
* @export
|
|
@@ -16431,10 +16380,10 @@ export interface JsonApiUserSettingOut {
|
|
|
16431
16380
|
id: string;
|
|
16432
16381
|
/**
|
|
16433
16382
|
*
|
|
16434
|
-
* @type {
|
|
16383
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
16435
16384
|
* @memberof JsonApiUserSettingOut
|
|
16436
16385
|
*/
|
|
16437
|
-
attributes?:
|
|
16386
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
16438
16387
|
}
|
|
16439
16388
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
16440
16389
|
readonly USER_SETTING: "userSetting";
|
|
@@ -16479,10 +16428,10 @@ export interface JsonApiUserSettingOutList {
|
|
|
16479
16428
|
links?: ListLinks;
|
|
16480
16429
|
/**
|
|
16481
16430
|
*
|
|
16482
|
-
* @type {
|
|
16431
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16483
16432
|
* @memberof JsonApiUserSettingOutList
|
|
16484
16433
|
*/
|
|
16485
|
-
meta?:
|
|
16434
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16486
16435
|
}
|
|
16487
16436
|
/**
|
|
16488
16437
|
*
|
|
@@ -16504,10 +16453,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16504
16453
|
id: string;
|
|
16505
16454
|
/**
|
|
16506
16455
|
*
|
|
16507
|
-
* @type {
|
|
16456
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
16508
16457
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16509
16458
|
*/
|
|
16510
|
-
attributes?:
|
|
16459
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
16511
16460
|
/**
|
|
16512
16461
|
*
|
|
16513
16462
|
* @type {ObjectLinks}
|
|
@@ -16545,10 +16494,10 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
16545
16494
|
id: string;
|
|
16546
16495
|
/**
|
|
16547
16496
|
*
|
|
16548
|
-
* @type {
|
|
16497
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
16549
16498
|
* @memberof JsonApiVisualizationObjectIn
|
|
16550
16499
|
*/
|
|
16551
|
-
attributes:
|
|
16500
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
16552
16501
|
}
|
|
16553
16502
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
16554
16503
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16725,10 +16674,10 @@ export interface JsonApiVisualizationObjectOutList {
|
|
|
16725
16674
|
links?: ListLinks;
|
|
16726
16675
|
/**
|
|
16727
16676
|
*
|
|
16728
|
-
* @type {
|
|
16677
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16729
16678
|
* @memberof JsonApiVisualizationObjectOutList
|
|
16730
16679
|
*/
|
|
16731
|
-
meta?:
|
|
16680
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16732
16681
|
/**
|
|
16733
16682
|
* Included resources
|
|
16734
16683
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -17009,10 +16958,10 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
17009
16958
|
id?: string;
|
|
17010
16959
|
/**
|
|
17011
16960
|
*
|
|
17012
|
-
* @type {
|
|
16961
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
17013
16962
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
17014
16963
|
*/
|
|
17015
|
-
attributes:
|
|
16964
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
17016
16965
|
}
|
|
17017
16966
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
17018
16967
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -17219,10 +17168,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
|
|
|
17219
17168
|
links?: ListLinks;
|
|
17220
17169
|
/**
|
|
17221
17170
|
*
|
|
17222
|
-
* @type {
|
|
17171
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17223
17172
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
17224
17173
|
*/
|
|
17225
|
-
meta?:
|
|
17174
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17226
17175
|
/**
|
|
17227
17176
|
* Included resources
|
|
17228
17177
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -17371,46 +17320,21 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
17371
17320
|
id: string;
|
|
17372
17321
|
/**
|
|
17373
17322
|
*
|
|
17374
|
-
* @type {
|
|
17323
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17375
17324
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17376
17325
|
*/
|
|
17377
|
-
attributes?:
|
|
17326
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17378
17327
|
/**
|
|
17379
17328
|
*
|
|
17380
|
-
* @type {
|
|
17329
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17381
17330
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17382
17331
|
*/
|
|
17383
|
-
relationships?:
|
|
17332
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17384
17333
|
}
|
|
17385
17334
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
17386
17335
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17387
17336
|
};
|
|
17388
17337
|
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
|
-
}
|
|
17414
17338
|
/**
|
|
17415
17339
|
*
|
|
17416
17340
|
* @export
|
|
@@ -17424,32 +17348,6 @@ export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
|
17424
17348
|
*/
|
|
17425
17349
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
17426
17350
|
}
|
|
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
|
-
}
|
|
17453
17351
|
/**
|
|
17454
17352
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
17455
17353
|
* @export
|
|
@@ -17499,16 +17397,16 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
17499
17397
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17500
17398
|
/**
|
|
17501
17399
|
*
|
|
17502
|
-
* @type {
|
|
17400
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17503
17401
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17504
17402
|
*/
|
|
17505
|
-
attributes?:
|
|
17403
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17506
17404
|
/**
|
|
17507
17405
|
*
|
|
17508
|
-
* @type {
|
|
17406
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17509
17407
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17510
17408
|
*/
|
|
17511
|
-
relationships?:
|
|
17409
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17512
17410
|
}
|
|
17513
17411
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
17514
17412
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -17559,10 +17457,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17559
17457
|
links?: ListLinks;
|
|
17560
17458
|
/**
|
|
17561
17459
|
*
|
|
17562
|
-
* @type {
|
|
17460
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17563
17461
|
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
17564
17462
|
*/
|
|
17565
|
-
meta?:
|
|
17463
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17566
17464
|
/**
|
|
17567
17465
|
* Included resources
|
|
17568
17466
|
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
@@ -17596,16 +17494,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
17596
17494
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17597
17495
|
/**
|
|
17598
17496
|
*
|
|
17599
|
-
* @type {
|
|
17497
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17600
17498
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17601
17499
|
*/
|
|
17602
|
-
attributes?:
|
|
17500
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17603
17501
|
/**
|
|
17604
17502
|
*
|
|
17605
|
-
* @type {
|
|
17503
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17606
17504
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17607
17505
|
*/
|
|
17608
|
-
relationships?:
|
|
17506
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17609
17507
|
/**
|
|
17610
17508
|
*
|
|
17611
17509
|
* @type {ObjectLinks}
|
|
@@ -17637,21 +17535,46 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
17637
17535
|
id: string;
|
|
17638
17536
|
/**
|
|
17639
17537
|
*
|
|
17640
|
-
* @type {
|
|
17538
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17641
17539
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17642
17540
|
*/
|
|
17643
|
-
attributes?:
|
|
17541
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17644
17542
|
/**
|
|
17645
17543
|
*
|
|
17646
|
-
* @type {
|
|
17544
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17647
17545
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17648
17546
|
*/
|
|
17649
|
-
relationships?:
|
|
17547
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17650
17548
|
}
|
|
17651
17549
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
17652
17550
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17653
17551
|
};
|
|
17654
17552
|
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
|
+
}
|
|
17655
17578
|
/**
|
|
17656
17579
|
*
|
|
17657
17580
|
* @export
|
|
@@ -17665,6 +17588,32 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
17665
17588
|
*/
|
|
17666
17589
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
17667
17590
|
}
|
|
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
|
+
}
|
|
17668
17617
|
/**
|
|
17669
17618
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
17670
17619
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -17897,10 +17846,10 @@ export interface JsonApiWorkspaceOutList {
|
|
|
17897
17846
|
links?: ListLinks;
|
|
17898
17847
|
/**
|
|
17899
17848
|
*
|
|
17900
|
-
* @type {
|
|
17849
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17901
17850
|
* @memberof JsonApiWorkspaceOutList
|
|
17902
17851
|
*/
|
|
17903
|
-
meta?:
|
|
17852
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17904
17853
|
/**
|
|
17905
17854
|
* Included resources
|
|
17906
17855
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -18143,10 +18092,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
18143
18092
|
id: string;
|
|
18144
18093
|
/**
|
|
18145
18094
|
*
|
|
18146
|
-
* @type {
|
|
18095
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
18147
18096
|
* @memberof JsonApiWorkspaceSettingIn
|
|
18148
18097
|
*/
|
|
18149
|
-
attributes?:
|
|
18098
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
18150
18099
|
}
|
|
18151
18100
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
18152
18101
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18191,10 +18140,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
18191
18140
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18192
18141
|
/**
|
|
18193
18142
|
*
|
|
18194
|
-
* @type {
|
|
18143
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
18195
18144
|
* @memberof JsonApiWorkspaceSettingOut
|
|
18196
18145
|
*/
|
|
18197
|
-
attributes?:
|
|
18146
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
18198
18147
|
}
|
|
18199
18148
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
18200
18149
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18239,10 +18188,10 @@ export interface JsonApiWorkspaceSettingOutList {
|
|
|
18239
18188
|
links?: ListLinks;
|
|
18240
18189
|
/**
|
|
18241
18190
|
*
|
|
18242
|
-
* @type {
|
|
18191
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
18243
18192
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
18244
18193
|
*/
|
|
18245
|
-
meta?:
|
|
18194
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
18246
18195
|
}
|
|
18247
18196
|
/**
|
|
18248
18197
|
*
|
|
@@ -18270,10 +18219,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
18270
18219
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18271
18220
|
/**
|
|
18272
18221
|
*
|
|
18273
|
-
* @type {
|
|
18222
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
18274
18223
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
18275
18224
|
*/
|
|
18276
|
-
attributes?:
|
|
18225
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
18277
18226
|
/**
|
|
18278
18227
|
*
|
|
18279
18228
|
* @type {ObjectLinks}
|
|
@@ -18305,10 +18254,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
18305
18254
|
id: string;
|
|
18306
18255
|
/**
|
|
18307
18256
|
*
|
|
18308
|
-
* @type {
|
|
18257
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
18309
18258
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
18310
18259
|
*/
|
|
18311
|
-
attributes?:
|
|
18260
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
18312
18261
|
}
|
|
18313
18262
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
18314
18263
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18347,10 +18296,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
18347
18296
|
id?: string;
|
|
18348
18297
|
/**
|
|
18349
18298
|
*
|
|
18350
|
-
* @type {
|
|
18299
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
18351
18300
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
18352
18301
|
*/
|
|
18353
|
-
attributes?:
|
|
18302
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
18354
18303
|
}
|
|
18355
18304
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
18356
18305
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -19561,7 +19510,7 @@ export declare const RelativeOperatorEnum: {
|
|
|
19561
19510
|
};
|
|
19562
19511
|
export type RelativeOperatorEnum = typeof RelativeOperatorEnum[keyof typeof RelativeOperatorEnum];
|
|
19563
19512
|
/**
|
|
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.
|
|
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.
|
|
19565
19514
|
* @export
|
|
19566
19515
|
* @interface RelativeDateFilter
|
|
19567
19516
|
*/
|
|
@@ -19609,12 +19558,6 @@ export interface RelativeDateFilterRelativeDateFilter {
|
|
|
19609
19558
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19610
19559
|
*/
|
|
19611
19560
|
applyOnResult?: boolean;
|
|
19612
|
-
/**
|
|
19613
|
-
*
|
|
19614
|
-
* @type {BoundedFilter}
|
|
19615
|
-
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19616
|
-
*/
|
|
19617
|
-
boundedFilter?: BoundedFilter;
|
|
19618
19561
|
/**
|
|
19619
19562
|
*
|
|
19620
19563
|
* @type {AfmObjectIdentifierDataset}
|